diff --git a/grammar.js b/grammar.js index 88e7e1a..10ecf45 100644 --- a/grammar.js +++ b/grammar.js @@ -2026,6 +2026,19 @@ module.exports = grammar({ ) }, + // Assignment to a property of an implicit object + // `&.foo = a = b` + implicit_object_assign: $ => { + const chained_lhs = field('lhs', + alias($.implicit_call_chainable, $.implicit_object_call), + ) + const rhs = field('rhs', $._expression) + + return prec('assignment_operator', + seq(chained_lhs, '=', rhs), + ) + }, + implicit_object_tuple: $ => seq( alias($._start_of_hash_or_tuple, '{'), optional(seq( @@ -2462,6 +2475,7 @@ module.exports = grammar({ choice( $._expression, $._implicit_object_call, + $.implicit_object_assign, ), )) }, diff --git a/src/grammar.json b/src/grammar.json index 9442ad6..4a050fe 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -9055,6 +9055,40 @@ } ] }, + "implicit_object_assign": { + "type": "PREC", + "value": "assignment_operator", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "lhs", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "implicit_call_chainable" + }, + "named": true, + "value": "implicit_object_call" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "rhs", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, "implicit_object_tuple": { "type": "SEQ", "members": [ @@ -11420,6 +11454,10 @@ { "type": "SYMBOL", "name": "_implicit_object_call" + }, + { + "type": "SYMBOL", + "name": "implicit_object_assign" } ] } diff --git a/src/node-types.json b/src/node-types.json index 1c4aa42..8bf9b8d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3220,6 +3220,10 @@ "type": "if", "named": true }, + { + "type": "implicit_object_assign", + "named": true + }, { "type": "implicit_object_call", "named": true @@ -9814,6 +9818,336 @@ } } }, + { + "type": "implicit_object_assign", + "named": true, + "fields": { + "lhs": { + "multiple": false, + "required": true, + "types": [ + { + "type": "implicit_object_call", + "named": true + } + ] + }, + "rhs": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "abstract_method_def", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "and", + "named": true + }, + { + "type": "annotation", + "named": true + }, + { + "type": "annotation_def", + "named": true + }, + { + "type": "array", + "named": true + }, + { + "type": "asm", + "named": true + }, + { + "type": "assign", + "named": true + }, + { + "type": "begin_block", + "named": true + }, + { + "type": "break", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "case", + "named": true + }, + { + "type": "chained_string", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "class_def", + "named": true + }, + { + "type": "class_var", + "named": true + }, + { + "type": "command", + "named": true + }, + { + "type": "conditional", + "named": true + }, + { + "type": "const_assign", + "named": true + }, + { + "type": "constant", + "named": true + }, + { + "type": "enum_def", + "named": true + }, + { + "type": "expressions", + "named": true + }, + { + "type": "extend", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "fun_def", + "named": true + }, + { + "type": "generic_instance_type", + "named": true + }, + { + "type": "hash", + "named": true + }, + { + "type": "heredoc_start", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": true + }, + { + "type": "include", + "named": true + }, + { + "type": "index_call", + "named": true + }, + { + "type": "instance_sizeof", + "named": true + }, + { + "type": "instance_var", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "lib_def", + "named": true + }, + { + "type": "method_def", + "named": true + }, + { + "type": "method_proc", + "named": true + }, + { + "type": "modifier_ensure", + "named": true + }, + { + "type": "modifier_if", + "named": true + }, + { + "type": "modifier_rescue", + "named": true + }, + { + "type": "modifier_unless", + "named": true + }, + { + "type": "module_def", + "named": true + }, + { + "type": "multi_assign", + "named": true + }, + { + "type": "named_tuple", + "named": true + }, + { + "type": "next", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "not", + "named": true + }, + { + "type": "offsetof", + "named": true + }, + { + "type": "op_assign", + "named": true + }, + { + "type": "op_call", + "named": true + }, + { + "type": "or", + "named": true + }, + { + "type": "proc", + "named": true + }, + { + "type": "pseudo_constant", + "named": true + }, + { + "type": "range", + "named": true + }, + { + "type": "regex", + "named": true + }, + { + "type": "require", + "named": true + }, + { + "type": "return", + "named": true + }, + { + "type": "select", + "named": true + }, + { + "type": "self", + "named": true + }, + { + "type": "sizeof", + "named": true + }, + { + "type": "special_variable", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "struct_def", + "named": true + }, + { + "type": "symbol", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "type_declaration", + "named": true + }, + { + "type": "typeof", + "named": true + }, + { + "type": "unless", + "named": true + }, + { + "type": "until", + "named": true + }, + { + "type": "while", + "named": true + }, + { + "type": "yield", + "named": true + } + ] + } + } + }, { "type": "implicit_object_call", "named": true, diff --git a/src/parser.c b/src/parser.c index c14ab71..ac74622 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 12349 -#define LARGE_STATE_COUNT 2272 -#define SYMBOL_COUNT 449 +#define STATE_COUNT 12397 +#define LARGE_STATE_COUNT 2295 +#define SYMBOL_COUNT 450 #define ALIAS_COUNT 1 #define TOKEN_COUNT 215 #define EXTERNAL_TOKEN_COUNT 55 @@ -357,122 +357,123 @@ enum ts_symbol_identifiers { sym__implicit_ivar_call = 331, sym__implicit_index_call = 332, sym__implicit_index_operator = 333, - sym_implicit_object_tuple = 334, - sym_assign_call = 335, - sym_index_operator = 336, - sym_index_call = 337, - sym_not = 338, - sym_and = 339, - sym_or = 340, - sym_additive_operator = 341, - sym_unary_additive_operator = 342, - sym_multiplicative_operator = 343, - sym_exponential_operator = 344, - sym_shift_operator = 345, - sym_complement_operator = 346, - sym_binary_and_operator = 347, - sym_binary_or_operator = 348, - sym_equality_operator = 349, - sym_comparison_operator = 350, - sym_splat = 351, - sym_double_splat = 352, - sym_named_expr = 353, - sym_argument_list_no_parens = 354, - sym_argument_list_no_parens_with_block = 355, - sym_argument_list_with_parens = 356, - sym_argument_list_with_parens_and_block = 357, - sym_assign = 358, - sym_const_assign = 359, - sym_operator_assign = 360, - sym_lhs_splat = 361, - sym_multi_assign = 362, - sym_type_declaration = 363, - sym_alias = 364, - sym_block_body_param = 365, - sym_block_body_splat_param = 366, - sym__block_body_nested_param = 367, - sym_block_param_list = 368, - sym_do_end_block = 369, - sym_brace_block = 370, - sym_block_argument = 371, - sym_begin_block = 372, - sym_rescue_block = 373, - sym_ensure = 374, - sym_modifier_rescue = 375, - sym_modifier_ensure = 376, - sym__rescue_else_ensure = 377, - sym_while = 378, - sym_until = 379, - sym_if = 380, - sym_unless = 381, - sym_then = 382, - sym_elsif = 383, - sym_else = 384, - sym_conditional = 385, - sym_modifier_if = 386, - sym_modifier_unless = 387, - sym_require = 388, - sym_when = 389, - sym_case = 390, - sym_select = 391, - sym_in = 392, - sym_exhaustive_case = 393, - sym_asm = 394, - sym__asm_outputs = 395, - sym__asm_inputs = 396, - sym__asm_clobbers = 397, - sym__asm_options = 398, - sym_asm_operands = 399, - sym_asm_operand = 400, - sym_asm_clobbers = 401, - sym_asm_options = 402, - aux_sym__statements_repeat1 = 403, - aux_sym__lib_statements_repeat1 = 404, - aux_sym__enum_statements_repeat1 = 405, - aux_sym_string_repeat1 = 406, - aux_sym_chained_string_repeat1 = 407, - aux_sym_string_percent_literal_repeat1 = 408, - aux_sym_string_array_percent_literal_repeat1 = 409, - aux_sym_symbol_array_percent_literal_repeat1 = 410, - aux_sym_percent_literal_array_word_repeat1 = 411, - aux_sym_heredoc_body_repeat1 = 412, - aux_sym_quoted_symbol_repeat1 = 413, - aux_sym_command_repeat1 = 414, - aux_sym_regex_repeat1 = 415, - aux_sym_regex_percent_literal_repeat1 = 416, - aux_sym_array_repeat1 = 417, - aux_sym_hash_repeat1 = 418, - aux_sym_named_tuple_repeat1 = 419, - aux_sym_proc_param_list_repeat1 = 420, - aux_sym_annotation_def_repeat1 = 421, - aux_sym_annotation_argument_list_repeat1 = 422, - aux_sym_fun_param_list_repeat1 = 423, - aux_sym_fun_type_param_list_repeat1 = 424, - aux_sym__c_struct_expressions_repeat1 = 425, - aux_sym_c_struct_fields_repeat1 = 426, - aux_sym__union_expressions_repeat1 = 427, - aux_sym_method_def_repeat1 = 428, - aux_sym_forall_repeat1 = 429, - aux_sym_param_list_repeat1 = 430, - aux_sym_param_repeat1 = 431, - aux_sym_constant_repeat1 = 432, - aux_sym_union_type_repeat1 = 433, - aux_sym_proc_type_repeat1 = 434, - aux_sym_named_tuple_type_repeat1 = 435, - aux_sym_type_param_list_repeat1 = 436, - aux_sym_implicit_object_tuple_repeat1 = 437, - aux_sym_argument_list_no_parens_repeat1 = 438, - aux_sym_multi_assign_repeat1 = 439, - aux_sym_multi_assign_repeat2 = 440, - aux_sym__block_body_nested_param_repeat1 = 441, - aux_sym_block_param_list_repeat1 = 442, - aux_sym_when_repeat1 = 443, - aux_sym_case_repeat1 = 444, - aux_sym_in_repeat1 = 445, - aux_sym_exhaustive_case_repeat1 = 446, - aux_sym_asm_operands_repeat1 = 447, - aux_sym_asm_clobbers_repeat1 = 448, - anon_alias_sym_callwithoutvisibility = 449, + sym_implicit_object_assign = 334, + sym_implicit_object_tuple = 335, + sym_assign_call = 336, + sym_index_operator = 337, + sym_index_call = 338, + sym_not = 339, + sym_and = 340, + sym_or = 341, + sym_additive_operator = 342, + sym_unary_additive_operator = 343, + sym_multiplicative_operator = 344, + sym_exponential_operator = 345, + sym_shift_operator = 346, + sym_complement_operator = 347, + sym_binary_and_operator = 348, + sym_binary_or_operator = 349, + sym_equality_operator = 350, + sym_comparison_operator = 351, + sym_splat = 352, + sym_double_splat = 353, + sym_named_expr = 354, + sym_argument_list_no_parens = 355, + sym_argument_list_no_parens_with_block = 356, + sym_argument_list_with_parens = 357, + sym_argument_list_with_parens_and_block = 358, + sym_assign = 359, + sym_const_assign = 360, + sym_operator_assign = 361, + sym_lhs_splat = 362, + sym_multi_assign = 363, + sym_type_declaration = 364, + sym_alias = 365, + sym_block_body_param = 366, + sym_block_body_splat_param = 367, + sym__block_body_nested_param = 368, + sym_block_param_list = 369, + sym_do_end_block = 370, + sym_brace_block = 371, + sym_block_argument = 372, + sym_begin_block = 373, + sym_rescue_block = 374, + sym_ensure = 375, + sym_modifier_rescue = 376, + sym_modifier_ensure = 377, + sym__rescue_else_ensure = 378, + sym_while = 379, + sym_until = 380, + sym_if = 381, + sym_unless = 382, + sym_then = 383, + sym_elsif = 384, + sym_else = 385, + sym_conditional = 386, + sym_modifier_if = 387, + sym_modifier_unless = 388, + sym_require = 389, + sym_when = 390, + sym_case = 391, + sym_select = 392, + sym_in = 393, + sym_exhaustive_case = 394, + sym_asm = 395, + sym__asm_outputs = 396, + sym__asm_inputs = 397, + sym__asm_clobbers = 398, + sym__asm_options = 399, + sym_asm_operands = 400, + sym_asm_operand = 401, + sym_asm_clobbers = 402, + sym_asm_options = 403, + aux_sym__statements_repeat1 = 404, + aux_sym__lib_statements_repeat1 = 405, + aux_sym__enum_statements_repeat1 = 406, + aux_sym_string_repeat1 = 407, + aux_sym_chained_string_repeat1 = 408, + aux_sym_string_percent_literal_repeat1 = 409, + aux_sym_string_array_percent_literal_repeat1 = 410, + aux_sym_symbol_array_percent_literal_repeat1 = 411, + aux_sym_percent_literal_array_word_repeat1 = 412, + aux_sym_heredoc_body_repeat1 = 413, + aux_sym_quoted_symbol_repeat1 = 414, + aux_sym_command_repeat1 = 415, + aux_sym_regex_repeat1 = 416, + aux_sym_regex_percent_literal_repeat1 = 417, + aux_sym_array_repeat1 = 418, + aux_sym_hash_repeat1 = 419, + aux_sym_named_tuple_repeat1 = 420, + aux_sym_proc_param_list_repeat1 = 421, + aux_sym_annotation_def_repeat1 = 422, + aux_sym_annotation_argument_list_repeat1 = 423, + aux_sym_fun_param_list_repeat1 = 424, + aux_sym_fun_type_param_list_repeat1 = 425, + aux_sym__c_struct_expressions_repeat1 = 426, + aux_sym_c_struct_fields_repeat1 = 427, + aux_sym__union_expressions_repeat1 = 428, + aux_sym_method_def_repeat1 = 429, + aux_sym_forall_repeat1 = 430, + aux_sym_param_list_repeat1 = 431, + aux_sym_param_repeat1 = 432, + aux_sym_constant_repeat1 = 433, + aux_sym_union_type_repeat1 = 434, + aux_sym_proc_type_repeat1 = 435, + aux_sym_named_tuple_type_repeat1 = 436, + aux_sym_type_param_list_repeat1 = 437, + aux_sym_implicit_object_tuple_repeat1 = 438, + aux_sym_argument_list_no_parens_repeat1 = 439, + aux_sym_multi_assign_repeat1 = 440, + aux_sym_multi_assign_repeat2 = 441, + aux_sym__block_body_nested_param_repeat1 = 442, + aux_sym_block_param_list_repeat1 = 443, + aux_sym_when_repeat1 = 444, + aux_sym_case_repeat1 = 445, + aux_sym_in_repeat1 = 446, + aux_sym_exhaustive_case_repeat1 = 447, + aux_sym_asm_operands_repeat1 = 448, + aux_sym_asm_clobbers_repeat1 = 449, + anon_alias_sym_callwithoutvisibility = 450, }; static const char * const ts_symbol_names[] = { @@ -810,6 +811,7 @@ static const char * const ts_symbol_names[] = { [sym__implicit_ivar_call] = "_implicit_ivar_call", [sym__implicit_index_call] = "_implicit_index_call", [sym__implicit_index_operator] = "_implicit_index_operator", + [sym_implicit_object_assign] = "implicit_object_assign", [sym_implicit_object_tuple] = "tuple", [sym_assign_call] = "assign_call", [sym_index_operator] = "index_call", @@ -1263,6 +1265,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__implicit_ivar_call] = sym__implicit_ivar_call, [sym__implicit_index_call] = sym__implicit_index_call, [sym__implicit_index_operator] = sym__implicit_index_operator, + [sym_implicit_object_assign] = sym_implicit_object_assign, [sym_implicit_object_tuple] = sym_tuple, [sym_assign_call] = sym_assign_call, [sym_index_operator] = sym_index_call, @@ -2718,6 +2721,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_implicit_object_assign] = { + .visible = true, + .named = true, + }, [sym_implicit_object_tuple] = { .visible = true, .named = true, @@ -4586,45 +4593,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, + [3] = 2, [4] = 2, - [5] = 2, - [6] = 3, - [7] = 3, + [5] = 5, + [6] = 5, + [7] = 5, [8] = 8, [9] = 8, [10] = 10, - [11] = 11, - [12] = 10, + [11] = 10, + [12] = 12, [13] = 10, [14] = 8, [15] = 8, - [16] = 11, - [17] = 10, + [16] = 10, + [17] = 12, [18] = 10, [19] = 8, - [20] = 8, - [21] = 10, + [20] = 10, + [21] = 8, [22] = 8, [23] = 8, [24] = 10, [25] = 10, - [26] = 11, - [27] = 10, + [26] = 12, + [27] = 27, [28] = 10, - [29] = 29, + [29] = 10, [30] = 10, [31] = 10, [32] = 8, [33] = 8, - [34] = 8, + [34] = 10, [35] = 8, - [36] = 10, + [36] = 8, [37] = 10, [38] = 10, - [39] = 10, + [39] = 8, [40] = 8, - [41] = 8, + [41] = 10, [42] = 8, [43] = 8, [44] = 10, @@ -4632,13 +4639,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [46] = 10, [47] = 10, [48] = 10, - [49] = 49, - [50] = 49, + [49] = 10, + [50] = 50, [51] = 51, [52] = 51, - [53] = 51, - [54] = 11, - [55] = 10, + [53] = 50, + [54] = 50, + [55] = 12, [56] = 10, [57] = 10, [58] = 10, @@ -4663,1259 +4670,1259 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [77] = 10, [78] = 10, [79] = 79, - [80] = 79, - [81] = 81, - [82] = 82, + [80] = 80, + [81] = 79, + [82] = 80, [83] = 83, - [84] = 81, + [84] = 83, [85] = 85, - [86] = 83, - [87] = 85, - [88] = 82, - [89] = 82, - [90] = 81, + [86] = 85, + [87] = 87, + [88] = 87, + [89] = 80, + [90] = 87, [91] = 85, [92] = 83, - [93] = 79, + [93] = 80, [94] = 79, - [95] = 85, - [96] = 83, - [97] = 81, - [98] = 82, + [95] = 79, + [96] = 80, + [97] = 80, + [98] = 87, [99] = 85, [100] = 83, - [101] = 82, - [102] = 81, - [103] = 103, - [104] = 85, - [105] = 79, - [106] = 83, + [101] = 85, + [102] = 83, + [103] = 87, + [104] = 80, + [105] = 83, + [106] = 79, [107] = 79, - [108] = 79, - [109] = 79, - [110] = 110, - [111] = 82, - [112] = 81, - [113] = 83, - [114] = 83, - [115] = 85, - [116] = 82, + [108] = 80, + [109] = 109, + [110] = 85, + [111] = 80, + [112] = 112, + [113] = 80, + [114] = 79, + [115] = 87, + [116] = 79, [117] = 117, [118] = 117, [119] = 117, [120] = 117, - [121] = 117, - [122] = 82, + [121] = 80, + [122] = 117, [123] = 117, - [124] = 83, - [125] = 85, - [126] = 83, + [124] = 85, + [125] = 117, + [126] = 87, [127] = 117, - [128] = 81, - [129] = 82, + [128] = 117, + [129] = 83, [130] = 117, - [131] = 81, - [132] = 117, - [133] = 117, + [131] = 117, + [132] = 83, + [133] = 85, [134] = 117, - [135] = 81, - [136] = 82, - [137] = 117, - [138] = 85, - [139] = 117, - [140] = 81, + [135] = 85, + [136] = 83, + [137] = 85, + [138] = 87, + [139] = 87, + [140] = 117, [141] = 117, - [142] = 85, - [143] = 103, - [144] = 82, - [145] = 145, - [146] = 145, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 145, - [151] = 147, - [152] = 148, - [153] = 149, - [154] = 145, - [155] = 147, - [156] = 148, - [157] = 149, - [158] = 147, - [159] = 83, - [160] = 81, - [161] = 147, - [162] = 147, - [163] = 147, - [164] = 147, - [165] = 110, - [166] = 147, - [167] = 147, - [168] = 148, - [169] = 149, - [170] = 147, - [171] = 147, - [172] = 147, - [173] = 147, - [174] = 147, - [175] = 85, - [176] = 147, - [177] = 177, + [142] = 83, + [143] = 87, + [144] = 144, + [145] = 144, + [146] = 83, + [147] = 144, + [148] = 144, + [149] = 144, + [150] = 144, + [151] = 151, + [152] = 151, + [153] = 144, + [154] = 154, + [155] = 80, + [156] = 156, + [157] = 144, + [158] = 144, + [159] = 144, + [160] = 87, + [161] = 151, + [162] = 144, + [163] = 144, + [164] = 154, + [165] = 156, + [166] = 144, + [167] = 144, + [168] = 112, + [169] = 85, + [170] = 151, + [171] = 154, + [172] = 144, + [173] = 154, + [174] = 156, + [175] = 144, + [176] = 156, + [177] = 109, [178] = 178, - [179] = 177, + [179] = 179, [180] = 178, - [181] = 177, + [181] = 179, [182] = 178, - [183] = 178, - [184] = 177, - [185] = 178, - [186] = 177, - [187] = 178, - [188] = 177, - [189] = 177, - [190] = 177, - [191] = 178, - [192] = 177, - [193] = 178, - [194] = 177, - [195] = 177, + [183] = 179, + [184] = 178, + [185] = 179, + [186] = 178, + [187] = 87, + [188] = 178, + [189] = 179, + [190] = 178, + [191] = 179, + [192] = 178, + [193] = 179, + [194] = 178, + [195] = 179, [196] = 178, - [197] = 177, + [197] = 179, [198] = 178, - [199] = 178, - [200] = 178, - [201] = 177, - [202] = 178, - [203] = 177, - [204] = 177, - [205] = 82, - [206] = 177, - [207] = 81, - [208] = 85, - [209] = 83, - [210] = 178, - [211] = 211, + [199] = 179, + [200] = 179, + [201] = 178, + [202] = 179, + [203] = 178, + [204] = 179, + [205] = 178, + [206] = 178, + [207] = 178, + [208] = 83, + [209] = 85, + [210] = 179, + [211] = 109, [212] = 212, [213] = 212, [214] = 214, [215] = 214, - [216] = 103, - [217] = 212, - [218] = 211, - [219] = 211, - [220] = 212, - [221] = 110, + [216] = 212, + [217] = 112, + [218] = 218, + [219] = 212, + [220] = 218, + [221] = 214, [222] = 214, - [223] = 214, - [224] = 211, + [223] = 218, + [224] = 218, [225] = 225, - [226] = 226, - [227] = 79, - [228] = 79, - [229] = 229, - [230] = 79, - [231] = 229, - [232] = 103, - [233] = 229, - [234] = 110, - [235] = 110, - [236] = 229, - [237] = 229, - [238] = 229, - [239] = 239, - [240] = 229, - [241] = 103, - [242] = 79, - [243] = 229, - [244] = 85, - [245] = 83, - [246] = 103, - [247] = 110, - [248] = 229, - [249] = 229, - [250] = 81, - [251] = 229, - [252] = 229, - [253] = 82, - [254] = 229, - [255] = 82, - [256] = 81, - [257] = 85, - [258] = 83, - [259] = 229, - [260] = 82, - [261] = 85, - [262] = 82, - [263] = 79, - [264] = 81, - [265] = 79, - [266] = 81, - [267] = 83, + [226] = 79, + [227] = 80, + [228] = 228, + [229] = 79, + [230] = 80, + [231] = 231, + [232] = 83, + [233] = 231, + [234] = 231, + [235] = 231, + [236] = 231, + [237] = 112, + [238] = 231, + [239] = 79, + [240] = 112, + [241] = 231, + [242] = 242, + [243] = 85, + [244] = 231, + [245] = 231, + [246] = 231, + [247] = 231, + [248] = 109, + [249] = 109, + [250] = 231, + [251] = 231, + [252] = 79, + [253] = 112, + [254] = 80, + [255] = 231, + [256] = 87, + [257] = 83, + [258] = 85, + [259] = 87, + [260] = 109, + [261] = 80, + [262] = 83, + [263] = 80, + [264] = 79, + [265] = 80, + [266] = 80, + [267] = 79, [268] = 85, - [269] = 79, - [270] = 83, - [271] = 79, - [272] = 83, - [273] = 273, - [274] = 110, - [275] = 273, - [276] = 276, - [277] = 273, - [278] = 82, - [279] = 279, - [280] = 81, - [281] = 273, - [282] = 282, - [283] = 273, - [284] = 85, - [285] = 83, - [286] = 273, - [287] = 273, - [288] = 273, - [289] = 273, + [269] = 87, + [270] = 80, + [271] = 83, + [272] = 85, + [273] = 87, + [274] = 79, + [275] = 79, + [276] = 80, + [277] = 277, + [278] = 112, + [279] = 277, + [280] = 277, + [281] = 281, + [282] = 277, + [283] = 277, + [284] = 277, + [285] = 109, + [286] = 85, + [287] = 287, + [288] = 109, + [289] = 83, [290] = 85, - [291] = 273, - [292] = 273, - [293] = 273, - [294] = 81, - [295] = 82, - [296] = 273, - [297] = 103, - [298] = 273, - [299] = 110, - [300] = 81, - [301] = 301, - [302] = 82, - [303] = 81, - [304] = 85, - [305] = 83, - [306] = 85, - [307] = 103, - [308] = 82, - [309] = 81, - [310] = 85, + [291] = 87, + [292] = 292, + [293] = 87, + [294] = 294, + [295] = 277, + [296] = 277, + [297] = 277, + [298] = 112, + [299] = 277, + [300] = 80, + [301] = 83, + [302] = 85, + [303] = 87, + [304] = 83, + [305] = 85, + [306] = 87, + [307] = 80, + [308] = 277, + [309] = 277, + [310] = 277, [311] = 83, - [312] = 82, - [313] = 83, - [314] = 314, - [315] = 315, - [316] = 226, + [312] = 85, + [313] = 87, + [314] = 277, + [315] = 83, + [316] = 316, [317] = 317, [318] = 318, [319] = 319, [320] = 320, - [321] = 321, - [322] = 82, + [321] = 318, + [322] = 228, [323] = 323, - [324] = 315, + [324] = 87, [325] = 325, - [326] = 318, - [327] = 318, - [328] = 225, - [329] = 314, + [326] = 326, + [327] = 323, + [328] = 328, + [329] = 317, [330] = 330, - [331] = 320, - [332] = 82, - [333] = 333, - [334] = 317, - [335] = 319, - [336] = 333, - [337] = 333, - [338] = 321, - [339] = 319, - [340] = 340, - [341] = 83, - [342] = 85, - [343] = 320, - [344] = 330, - [345] = 83, - [346] = 346, + [331] = 331, + [332] = 225, + [333] = 325, + [334] = 326, + [335] = 335, + [336] = 87, + [337] = 318, + [338] = 338, + [339] = 339, + [340] = 83, + [341] = 323, + [342] = 319, + [343] = 325, + [344] = 328, + [345] = 328, + [346] = 83, [347] = 347, - [348] = 323, - [349] = 85, - [350] = 350, - [351] = 314, - [352] = 352, - [353] = 81, - [354] = 354, - [355] = 330, - [356] = 352, - [357] = 352, - [358] = 317, - [359] = 321, - [360] = 315, + [348] = 320, + [349] = 331, + [350] = 320, + [351] = 85, + [352] = 330, + [353] = 326, + [354] = 339, + [355] = 339, + [356] = 317, + [357] = 331, + [358] = 358, + [359] = 330, + [360] = 360, [361] = 361, - [362] = 81, - [363] = 323, + [362] = 85, + [363] = 319, [364] = 364, [365] = 365, [366] = 366, [367] = 367, [368] = 368, [369] = 369, - [370] = 370, + [370] = 366, [371] = 371, - [372] = 372, + [372] = 371, [373] = 373, [374] = 374, [375] = 375, [376] = 376, - [377] = 370, - [378] = 372, - [379] = 371, + [377] = 377, + [378] = 378, + [379] = 379, [380] = 380, - [381] = 373, - [382] = 374, - [383] = 380, - [384] = 384, - [385] = 384, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 365, + [385] = 368, [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, + [387] = 377, + [388] = 382, + [389] = 386, [390] = 390, - [391] = 391, + [391] = 364, [392] = 392, [393] = 393, [394] = 394, [395] = 395, - [396] = 364, - [397] = 397, + [396] = 373, + [397] = 367, [398] = 369, - [399] = 375, - [400] = 376, - [401] = 370, - [402] = 372, - [403] = 371, + [399] = 366, + [400] = 390, + [401] = 371, + [402] = 374, + [403] = 367, [404] = 373, [405] = 374, - [406] = 380, - [407] = 384, - [408] = 397, - [409] = 387, - [410] = 386, - [411] = 388, - [412] = 389, - [413] = 390, - [414] = 391, - [415] = 392, - [416] = 393, - [417] = 394, - [418] = 395, - [419] = 364, - [420] = 397, - [421] = 369, - [422] = 375, - [423] = 387, - [424] = 388, - [425] = 425, - [426] = 375, - [427] = 427, - [428] = 375, - [429] = 375, - [430] = 389, - [431] = 390, - [432] = 375, + [406] = 375, + [407] = 376, + [408] = 383, + [409] = 378, + [410] = 380, + [411] = 381, + [412] = 383, + [413] = 413, + [414] = 365, + [415] = 368, + [416] = 377, + [417] = 382, + [418] = 386, + [419] = 390, + [420] = 364, + [421] = 392, + [422] = 393, + [423] = 394, + [424] = 367, + [425] = 392, + [426] = 393, + [427] = 367, + [428] = 376, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 367, [433] = 433, - [434] = 375, - [435] = 375, - [436] = 375, - [437] = 391, - [438] = 375, - [439] = 375, - [440] = 392, - [441] = 375, - [442] = 393, - [443] = 375, - [444] = 375, - [445] = 375, - [446] = 394, - [447] = 395, - [448] = 376, + [434] = 367, + [435] = 394, + [436] = 367, + [437] = 367, + [438] = 378, + [439] = 367, + [440] = 369, + [441] = 367, + [442] = 367, + [443] = 367, + [444] = 380, + [445] = 367, + [446] = 367, + [447] = 367, + [448] = 381, [449] = 449, - [450] = 386, + [450] = 375, [451] = 451, [452] = 452, [453] = 453, - [454] = 454, + [454] = 452, [455] = 455, [456] = 456, [457] = 457, [458] = 458, [459] = 459, [460] = 460, - [461] = 461, - [462] = 452, - [463] = 451, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 456, - [468] = 225, + [461] = 452, + [462] = 462, + [463] = 460, + [464] = 453, + [465] = 455, + [466] = 462, + [467] = 455, + [468] = 460, [469] = 469, - [470] = 464, + [470] = 469, [471] = 471, [472] = 472, - [473] = 473, - [474] = 471, - [475] = 472, + [473] = 472, + [474] = 474, + [475] = 471, [476] = 476, - [477] = 459, - [478] = 453, - [479] = 433, - [480] = 454, - [481] = 455, - [482] = 457, - [483] = 458, - [484] = 484, - [485] = 460, - [486] = 461, - [487] = 473, - [488] = 452, - [489] = 456, - [490] = 451, - [491] = 464, - [492] = 465, - [493] = 466, - [494] = 456, - [495] = 476, - [496] = 459, - [497] = 453, - [498] = 471, - [499] = 472, - [500] = 454, - [501] = 469, - [502] = 456, - [503] = 471, - [504] = 472, - [505] = 454, - [506] = 456, - [507] = 471, - [508] = 472, - [509] = 454, - [510] = 456, - [511] = 511, - [512] = 471, - [513] = 472, - [514] = 454, - [515] = 456, - [516] = 471, - [517] = 472, - [518] = 454, - [519] = 456, - [520] = 471, - [521] = 472, - [522] = 454, - [523] = 456, - [524] = 454, - [525] = 471, - [526] = 472, - [527] = 454, - [528] = 456, - [529] = 465, - [530] = 455, - [531] = 466, - [532] = 471, - [533] = 472, - [534] = 454, - [535] = 456, - [536] = 473, - [537] = 471, - [538] = 472, - [539] = 454, - [540] = 456, - [541] = 110, - [542] = 457, - [543] = 471, - [544] = 472, - [545] = 454, - [546] = 456, - [547] = 471, - [548] = 472, - [549] = 454, - [550] = 454, - [551] = 103, - [552] = 226, - [553] = 454, - [554] = 350, - [555] = 471, - [556] = 458, - [557] = 472, - [558] = 484, - [559] = 346, - [560] = 469, - [561] = 476, - [562] = 460, - [563] = 461, - [564] = 484, - [565] = 110, - [566] = 346, - [567] = 350, - [568] = 427, - [569] = 425, - [570] = 103, - [571] = 103, - [572] = 110, - [573] = 103, - [574] = 425, - [575] = 427, - [576] = 110, - [577] = 110, - [578] = 103, - [579] = 346, - [580] = 350, - [581] = 427, - [582] = 110, - [583] = 103, - [584] = 425, - [585] = 103, - [586] = 350, - [587] = 346, - [588] = 350, - [589] = 350, + [477] = 472, + [478] = 478, + [479] = 479, + [480] = 474, + [481] = 481, + [482] = 482, + [483] = 451, + [484] = 474, + [485] = 476, + [486] = 476, + [487] = 457, + [488] = 458, + [489] = 460, + [490] = 225, + [491] = 109, + [492] = 453, + [493] = 478, + [494] = 478, + [495] = 479, + [496] = 457, + [497] = 458, + [498] = 460, + [499] = 481, + [500] = 451, + [501] = 482, + [502] = 112, + [503] = 457, + [504] = 458, + [505] = 460, + [506] = 451, + [507] = 451, + [508] = 451, + [509] = 479, + [510] = 462, + [511] = 457, + [512] = 458, + [513] = 460, + [514] = 481, + [515] = 451, + [516] = 482, + [517] = 457, + [518] = 458, + [519] = 460, + [520] = 451, + [521] = 457, + [522] = 458, + [523] = 460, + [524] = 451, + [525] = 456, + [526] = 457, + [527] = 451, + [528] = 457, + [529] = 458, + [530] = 460, + [531] = 458, + [532] = 451, + [533] = 533, + [534] = 457, + [535] = 457, + [536] = 458, + [537] = 460, + [538] = 451, + [539] = 469, + [540] = 458, + [541] = 457, + [542] = 458, + [543] = 460, + [544] = 451, + [545] = 449, + [546] = 457, + [547] = 458, + [548] = 460, + [549] = 451, + [550] = 471, + [551] = 457, + [552] = 458, + [553] = 460, + [554] = 459, + [555] = 460, + [556] = 459, + [557] = 460, + [558] = 335, + [559] = 347, + [560] = 560, + [561] = 560, + [562] = 456, + [563] = 228, + [564] = 560, + [565] = 112, + [566] = 379, + [567] = 395, + [568] = 335, + [569] = 347, + [570] = 109, + [571] = 109, + [572] = 112, + [573] = 379, + [574] = 395, + [575] = 347, + [576] = 112, + [577] = 109, + [578] = 112, + [579] = 109, + [580] = 335, + [581] = 109, + [582] = 395, + [583] = 379, + [584] = 112, + [585] = 335, + [586] = 586, + [587] = 112, + [588] = 586, + [589] = 347, [590] = 590, - [591] = 110, + [591] = 590, [592] = 590, - [593] = 593, - [594] = 346, - [595] = 103, - [596] = 593, - [597] = 590, - [598] = 593, - [599] = 346, - [600] = 110, - [601] = 350, - [602] = 425, - [603] = 427, - [604] = 425, - [605] = 427, - [606] = 346, - [607] = 427, - [608] = 425, - [609] = 425, - [610] = 427, - [611] = 350, - [612] = 346, - [613] = 346, - [614] = 350, - [615] = 350, - [616] = 427, - [617] = 425, - [618] = 427, - [619] = 425, - [620] = 346, - [621] = 427, - [622] = 346, - [623] = 350, - [624] = 425, - [625] = 427, - [626] = 346, - [627] = 425, - [628] = 350, - [629] = 350, - [630] = 346, - [631] = 425, - [632] = 427, - [633] = 346, - [634] = 350, - [635] = 425, - [636] = 346, - [637] = 350, - [638] = 346, - [639] = 427, - [640] = 350, - [641] = 427, - [642] = 425, - [643] = 427, - [644] = 427, - [645] = 350, - [646] = 425, - [647] = 425, - [648] = 346, - [649] = 350, - [650] = 346, - [651] = 350, - [652] = 350, - [653] = 427, - [654] = 346, - [655] = 425, - [656] = 346, - [657] = 346, - [658] = 425, - [659] = 427, - [660] = 346, - [661] = 427, - [662] = 427, - [663] = 425, - [664] = 350, - [665] = 425, - [666] = 350, - [667] = 427, - [668] = 425, - [669] = 425, - [670] = 427, - [671] = 671, + [593] = 109, + [594] = 109, + [595] = 335, + [596] = 347, + [597] = 586, + [598] = 112, + [599] = 347, + [600] = 335, + [601] = 379, + [602] = 395, + [603] = 347, + [604] = 335, + [605] = 395, + [606] = 379, + [607] = 379, + [608] = 395, + [609] = 335, + [610] = 347, + [611] = 395, + [612] = 379, + [613] = 347, + [614] = 335, + [615] = 335, + [616] = 379, + [617] = 395, + [618] = 347, + [619] = 379, + [620] = 395, + [621] = 395, + [622] = 379, + [623] = 335, + [624] = 347, + [625] = 395, + [626] = 335, + [627] = 347, + [628] = 379, + [629] = 379, + [630] = 335, + [631] = 395, + [632] = 347, + [633] = 335, + [634] = 347, + [635] = 379, + [636] = 335, + [637] = 347, + [638] = 347, + [639] = 335, + [640] = 395, + [641] = 395, + [642] = 395, + [643] = 379, + [644] = 379, + [645] = 379, + [646] = 395, + [647] = 347, + [648] = 335, + [649] = 347, + [650] = 335, + [651] = 379, + [652] = 395, + [653] = 335, + [654] = 347, + [655] = 335, + [656] = 347, + [657] = 379, + [658] = 335, + [659] = 395, + [660] = 395, + [661] = 347, + [662] = 379, + [663] = 379, + [664] = 335, + [665] = 395, + [666] = 347, + [667] = 395, + [668] = 379, + [669] = 395, + [670] = 379, + [671] = 80, [672] = 672, [673] = 673, - [674] = 82, - [675] = 82, - [676] = 82, - [677] = 673, + [674] = 674, + [675] = 80, + [676] = 80, + [677] = 674, [678] = 672, - [679] = 671, - [680] = 673, - [681] = 671, - [682] = 672, + [679] = 673, + [680] = 672, + [681] = 673, + [682] = 674, [683] = 683, [684] = 683, [685] = 683, [686] = 686, - [687] = 687, + [687] = 686, [688] = 688, [689] = 686, - [690] = 687, - [691] = 688, + [690] = 688, + [691] = 691, [692] = 688, - [693] = 687, - [694] = 687, - [695] = 688, - [696] = 686, - [697] = 687, - [698] = 688, - [699] = 688, - [700] = 686, - [701] = 687, - [702] = 688, - [703] = 686, - [704] = 687, - [705] = 687, - [706] = 687, - [707] = 688, - [708] = 687, + [693] = 691, + [694] = 686, + [695] = 691, + [696] = 688, + [697] = 691, + [698] = 686, + [699] = 691, + [700] = 688, + [701] = 691, + [702] = 686, + [703] = 688, + [704] = 691, + [705] = 686, + [706] = 686, + [707] = 691, + [708] = 686, [709] = 688, - [710] = 686, - [711] = 688, + [710] = 691, + [711] = 686, [712] = 686, [713] = 688, [714] = 686, - [715] = 686, - [716] = 687, + [715] = 691, + [716] = 688, [717] = 688, - [718] = 687, - [719] = 687, - [720] = 686, - [721] = 687, - [722] = 686, - [723] = 687, - [724] = 688, - [725] = 687, - [726] = 688, - [727] = 686, - [728] = 686, - [729] = 686, - [730] = 688, - [731] = 686, - [732] = 686, + [718] = 686, + [719] = 686, + [720] = 691, + [721] = 691, + [722] = 688, + [723] = 686, + [724] = 686, + [725] = 688, + [726] = 691, + [727] = 691, + [728] = 691, + [729] = 688, + [730] = 691, + [731] = 688, + [732] = 688, [733] = 688, [734] = 734, [735] = 735, - [736] = 736, - [737] = 736, - [738] = 736, - [739] = 734, + [736] = 735, + [737] = 737, + [738] = 734, + [739] = 739, [740] = 740, [741] = 734, - [742] = 735, - [743] = 740, - [744] = 734, - [745] = 736, - [746] = 740, + [742] = 737, + [743] = 737, + [744] = 735, + [745] = 735, + [746] = 734, [747] = 734, - [748] = 740, - [749] = 749, - [750] = 750, - [751] = 734, - [752] = 736, + [748] = 734, + [749] = 740, + [750] = 737, + [751] = 740, + [752] = 737, [753] = 735, - [754] = 735, - [755] = 736, + [754] = 734, + [755] = 735, [756] = 735, - [757] = 736, - [758] = 735, + [757] = 740, + [758] = 740, [759] = 740, [760] = 734, - [761] = 740, - [762] = 736, - [763] = 740, - [764] = 735, - [765] = 735, - [766] = 735, - [767] = 734, - [768] = 740, - [769] = 735, - [770] = 735, - [771] = 740, - [772] = 736, - [773] = 736, - [774] = 736, - [775] = 736, - [776] = 734, - [777] = 734, - [778] = 740, + [761] = 737, + [762] = 735, + [763] = 763, + [764] = 740, + [765] = 737, + [766] = 737, + [767] = 735, + [768] = 737, + [769] = 734, + [770] = 740, + [771] = 737, + [772] = 735, + [773] = 735, + [774] = 734, + [775] = 734, + [776] = 740, + [777] = 737, + [778] = 735, [779] = 740, - [780] = 735, - [781] = 734, - [782] = 736, + [780] = 737, + [781] = 735, + [782] = 735, [783] = 740, - [784] = 734, + [784] = 784, [785] = 740, - [786] = 735, + [786] = 740, [787] = 735, - [788] = 736, - [789] = 736, - [790] = 734, - [791] = 740, - [792] = 735, - [793] = 734, - [794] = 736, - [795] = 734, - [796] = 740, + [788] = 740, + [789] = 737, + [790] = 737, + [791] = 734, + [792] = 734, + [793] = 740, + [794] = 740, + [795] = 735, + [796] = 734, [797] = 735, - [798] = 736, - [799] = 734, - [800] = 740, - [801] = 735, - [802] = 735, - [803] = 736, - [804] = 734, - [805] = 740, + [798] = 737, + [799] = 735, + [800] = 737, + [801] = 734, + [802] = 737, + [803] = 734, + [804] = 739, + [805] = 737, [806] = 735, [807] = 740, - [808] = 735, - [809] = 736, + [808] = 740, + [809] = 734, [810] = 734, [811] = 740, - [812] = 736, - [813] = 735, + [812] = 734, + [813] = 737, [814] = 735, - [815] = 736, + [815] = 737, [816] = 734, - [817] = 740, - [818] = 735, - [819] = 736, - [820] = 736, - [821] = 734, - [822] = 740, - [823] = 734, - [824] = 740, - [825] = 749, - [826] = 826, + [817] = 735, + [818] = 740, + [819] = 734, + [820] = 737, + [821] = 735, + [822] = 734, + [823] = 735, + [824] = 734, + [825] = 740, + [826] = 740, [827] = 734, - [828] = 735, - [829] = 736, + [828] = 734, + [829] = 737, [830] = 735, - [831] = 736, + [831] = 740, [832] = 740, [833] = 734, - [834] = 740, - [835] = 735, - [836] = 736, - [837] = 734, - [838] = 740, - [839] = 734, - [840] = 740, - [841] = 734, + [834] = 735, + [835] = 737, + [836] = 735, + [837] = 740, + [838] = 737, + [839] = 740, + [840] = 737, + [841] = 737, [842] = 842, [843] = 843, - [844] = 843, + [844] = 844, [845] = 845, - [846] = 845, - [847] = 847, - [848] = 842, + [846] = 846, + [847] = 843, + [848] = 844, [849] = 845, - [850] = 843, - [851] = 851, - [852] = 845, - [853] = 847, - [854] = 845, - [855] = 842, - [856] = 847, - [857] = 845, + [850] = 846, + [851] = 846, + [852] = 843, + [853] = 844, + [854] = 854, + [855] = 845, + [856] = 843, + [857] = 846, [858] = 843, - [859] = 859, + [859] = 844, [860] = 845, - [861] = 842, - [862] = 843, - [863] = 845, - [864] = 847, - [865] = 847, - [866] = 842, + [861] = 846, + [862] = 845, + [863] = 843, + [864] = 844, + [865] = 845, + [866] = 846, [867] = 843, - [868] = 845, - [869] = 842, - [870] = 843, - [871] = 845, - [872] = 842, - [873] = 842, - [874] = 874, - [875] = 847, - [876] = 859, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 843, - [881] = 847, - [882] = 845, + [868] = 844, + [869] = 846, + [870] = 845, + [871] = 844, + [872] = 846, + [873] = 843, + [874] = 846, + [875] = 844, + [876] = 845, + [877] = 843, + [878] = 844, + [879] = 845, + [880] = 845, + [881] = 843, + [882] = 844, [883] = 843, - [884] = 847, - [885] = 842, - [886] = 845, - [887] = 842, - [888] = 874, - [889] = 889, - [890] = 843, - [891] = 847, - [892] = 843, + [884] = 845, + [885] = 843, + [886] = 844, + [887] = 845, + [888] = 888, + [889] = 842, + [890] = 890, + [891] = 891, + [892] = 846, [893] = 843, - [894] = 842, - [895] = 845, - [896] = 847, - [897] = 842, - [898] = 877, - [899] = 842, - [900] = 843, - [901] = 845, - [902] = 843, - [903] = 847, - [904] = 874, - [905] = 859, - [906] = 877, - [907] = 879, - [908] = 874, - [909] = 859, - [910] = 877, - [911] = 879, - [912] = 874, - [913] = 859, - [914] = 877, - [915] = 879, - [916] = 874, - [917] = 859, - [918] = 877, - [919] = 879, - [920] = 874, - [921] = 859, - [922] = 877, - [923] = 879, - [924] = 874, - [925] = 859, - [926] = 877, - [927] = 879, - [928] = 874, - [929] = 859, - [930] = 877, - [931] = 879, - [932] = 874, - [933] = 859, - [934] = 877, - [935] = 879, - [936] = 874, - [937] = 859, - [938] = 877, - [939] = 879, - [940] = 874, - [941] = 859, - [942] = 877, - [943] = 879, - [944] = 874, - [945] = 859, - [946] = 877, - [947] = 879, - [948] = 874, - [949] = 859, - [950] = 877, - [951] = 879, - [952] = 877, - [953] = 879, - [954] = 877, - [955] = 879, - [956] = 843, + [894] = 843, + [895] = 844, + [896] = 890, + [897] = 844, + [898] = 898, + [899] = 845, + [900] = 891, + [901] = 846, + [902] = 902, + [903] = 844, + [904] = 843, + [905] = 888, + [906] = 844, + [907] = 907, + [908] = 845, + [909] = 846, + [910] = 845, + [911] = 888, + [912] = 842, + [913] = 890, + [914] = 846, + [915] = 843, + [916] = 888, + [917] = 842, + [918] = 890, + [919] = 891, + [920] = 888, + [921] = 842, + [922] = 890, + [923] = 891, + [924] = 888, + [925] = 842, + [926] = 890, + [927] = 891, + [928] = 888, + [929] = 842, + [930] = 890, + [931] = 891, + [932] = 888, + [933] = 842, + [934] = 890, + [935] = 891, + [936] = 888, + [937] = 842, + [938] = 890, + [939] = 891, + [940] = 888, + [941] = 842, + [942] = 890, + [943] = 891, + [944] = 888, + [945] = 842, + [946] = 890, + [947] = 891, + [948] = 888, + [949] = 842, + [950] = 890, + [951] = 891, + [952] = 888, + [953] = 842, + [954] = 890, + [955] = 891, + [956] = 888, [957] = 842, - [958] = 879, - [959] = 845, - [960] = 960, - [961] = 843, - [962] = 847, - [963] = 842, - [964] = 845, - [965] = 842, - [966] = 847, + [958] = 890, + [959] = 891, + [960] = 890, + [961] = 891, + [962] = 890, + [963] = 891, + [964] = 844, + [965] = 845, + [966] = 846, [967] = 843, - [968] = 847, - [969] = 842, - [970] = 845, + [968] = 844, + [969] = 845, + [970] = 891, [971] = 971, - [972] = 972, - [973] = 971, + [972] = 971, + [973] = 973, [974] = 974, - [975] = 975, - [976] = 975, - [977] = 975, - [978] = 978, - [979] = 979, - [980] = 975, - [981] = 971, - [982] = 975, - [983] = 975, - [984] = 984, - [985] = 971, - [986] = 986, - [987] = 971, - [988] = 988, - [989] = 975, - [990] = 975, - [991] = 971, - [992] = 975, - [993] = 975, - [994] = 975, - [995] = 971, - [996] = 975, - [997] = 997, + [975] = 973, + [976] = 976, + [977] = 973, + [978] = 973, + [979] = 971, + [980] = 974, + [981] = 973, + [982] = 982, + [983] = 971, + [984] = 974, + [985] = 973, + [986] = 973, + [987] = 973, + [988] = 971, + [989] = 973, + [990] = 974, + [991] = 974, + [992] = 974, + [993] = 973, + [994] = 971, + [995] = 973, + [996] = 971, + [997] = 974, [998] = 971, - [999] = 975, - [1000] = 971, - [1001] = 971, - [1002] = 975, - [1003] = 975, - [1004] = 971, - [1005] = 975, - [1006] = 971, - [1007] = 971, - [1008] = 971, - [1009] = 971, + [999] = 971, + [1000] = 974, + [1001] = 974, + [1002] = 971, + [1003] = 974, + [1004] = 973, + [1005] = 1005, + [1006] = 974, + [1007] = 974, + [1008] = 974, + [1009] = 973, [1010] = 971, - [1011] = 971, - [1012] = 975, - [1013] = 975, + [1011] = 974, + [1012] = 971, + [1013] = 971, [1014] = 971, [1015] = 971, - [1016] = 971, - [1017] = 1017, - [1018] = 1018, - [1019] = 997, - [1020] = 971, - [1021] = 975, - [1022] = 1022, - [1023] = 1022, - [1024] = 1022, - [1025] = 1022, - [1026] = 1022, - [1027] = 1022, - [1028] = 1022, - [1029] = 1022, - [1030] = 1022, - [1031] = 1022, - [1032] = 1022, - [1033] = 1022, - [1034] = 1022, - [1035] = 1022, - [1036] = 1022, + [1016] = 974, + [1017] = 971, + [1018] = 974, + [1019] = 973, + [1020] = 973, + [1021] = 974, + [1022] = 1005, + [1023] = 971, + [1024] = 974, + [1025] = 974, + [1026] = 1026, + [1027] = 971, + [1028] = 974, + [1029] = 1029, + [1030] = 971, + [1031] = 973, + [1032] = 1032, + [1033] = 971, + [1034] = 1034, + [1035] = 973, + [1036] = 974, [1037] = 1037, - [1038] = 1022, - [1039] = 1022, - [1040] = 1022, - [1041] = 1022, - [1042] = 1022, - [1043] = 1022, - [1044] = 1022, - [1045] = 1022, - [1046] = 1022, - [1047] = 1022, - [1048] = 1022, + [1038] = 1038, + [1039] = 974, + [1040] = 973, + [1041] = 971, + [1042] = 1042, + [1043] = 974, + [1044] = 973, + [1045] = 974, + [1046] = 974, + [1047] = 974, + [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 1049, + [1051] = 1050, [1052] = 1050, - [1053] = 1053, - [1054] = 1050, - [1055] = 749, - [1056] = 1049, - [1057] = 749, + [1053] = 739, + [1054] = 739, + [1055] = 1049, + [1056] = 1056, + [1057] = 1049, [1058] = 1058, [1059] = 1059, - [1060] = 1058, - [1061] = 1059, - [1062] = 1058, - [1063] = 1063, - [1064] = 1058, + [1060] = 1060, + [1061] = 1060, + [1062] = 1060, + [1063] = 1058, + [1064] = 1060, [1065] = 1065, - [1066] = 1058, - [1067] = 1059, - [1068] = 1065, + [1066] = 1060, + [1067] = 1065, + [1068] = 1058, [1069] = 1065, - [1070] = 1059, - [1071] = 1059, - [1072] = 1065, - [1073] = 1058, - [1074] = 1059, - [1075] = 1059, - [1076] = 1059, - [1077] = 1063, + [1070] = 1065, + [1071] = 1060, + [1072] = 1058, + [1073] = 1060, + [1074] = 1060, + [1075] = 1058, + [1076] = 1060, + [1077] = 1065, [1078] = 1058, - [1079] = 1063, - [1080] = 1059, - [1081] = 1059, - [1082] = 1059, - [1083] = 1063, - [1084] = 1063, + [1079] = 1065, + [1080] = 1065, + [1081] = 1058, + [1082] = 1058, + [1083] = 1058, + [1084] = 1058, [1085] = 1058, [1086] = 1059, - [1087] = 1059, + [1087] = 1058, [1088] = 1065, - [1089] = 1063, - [1090] = 1063, - [1091] = 1065, - [1092] = 1065, - [1093] = 1058, + [1089] = 1060, + [1090] = 1059, + [1091] = 1059, + [1092] = 1058, + [1093] = 1065, [1094] = 1059, - [1095] = 1059, - [1096] = 1065, - [1097] = 1065, - [1098] = 1058, - [1099] = 1063, + [1095] = 1065, + [1096] = 1059, + [1097] = 1058, + [1098] = 1059, + [1099] = 1058, [1100] = 1059, [1101] = 1059, [1102] = 1065, - [1103] = 1058, - [1104] = 1059, - [1105] = 1059, - [1106] = 1058, - [1107] = 1059, - [1108] = 1065, - [1109] = 1063, - [1110] = 1063, - [1111] = 1058, - [1112] = 1063, - [1113] = 1065, - [1114] = 1063, - [1115] = 1065, - [1116] = 1058, - [1117] = 1063, - [1118] = 1065, - [1119] = 1063, - [1120] = 1065, - [1121] = 1063, - [1122] = 1065, - [1123] = 1063, - [1124] = 1063, - [1125] = 1065, - [1126] = 1059, - [1127] = 1065, - [1128] = 1058, - [1129] = 1063, - [1130] = 1058, - [1131] = 1058, - [1132] = 1058, - [1133] = 1063, - [1134] = 1065, + [1103] = 1060, + [1104] = 739, + [1105] = 1058, + [1106] = 1059, + [1107] = 1065, + [1108] = 1059, + [1109] = 1059, + [1110] = 1058, + [1111] = 1059, + [1112] = 1058, + [1113] = 1060, + [1114] = 1059, + [1115] = 1058, + [1116] = 1065, + [1117] = 1065, + [1118] = 1058, + [1119] = 1058, + [1120] = 1058, + [1121] = 1060, + [1122] = 1060, + [1123] = 1065, + [1124] = 1065, + [1125] = 1060, + [1126] = 1065, + [1127] = 1060, + [1128] = 1065, + [1129] = 1060, + [1130] = 1065, + [1131] = 1060, + [1132] = 1065, + [1133] = 1058, + [1134] = 1059, [1135] = 1059, - [1136] = 1058, - [1137] = 749, + [1136] = 1059, + [1137] = 1059, [1138] = 1059, - [1139] = 1058, - [1140] = 1063, - [1141] = 1065, + [1139] = 1059, + [1140] = 1060, + [1141] = 1060, [1142] = 1142, [1143] = 1143, [1144] = 1144, [1145] = 1145, - [1146] = 1146, - [1147] = 1147, - [1148] = 1148, + [1146] = 1145, + [1147] = 1142, + [1148] = 1145, [1149] = 1149, - [1150] = 1150, + [1150] = 1149, [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, + [1152] = 1143, + [1153] = 1149, + [1154] = 1142, [1155] = 1155, - [1156] = 1148, - [1157] = 1149, - [1158] = 1150, - [1159] = 1152, - [1160] = 1153, - [1161] = 1154, - [1162] = 1162, + [1156] = 1155, + [1157] = 1142, + [1158] = 1145, + [1159] = 1159, + [1160] = 1160, + [1161] = 1142, + [1162] = 1151, [1163] = 1163, [1164] = 1164, - [1165] = 1165, - [1166] = 1166, + [1165] = 1142, + [1166] = 1145, [1167] = 1167, [1168] = 1168, [1169] = 1169, [1170] = 1170, - [1171] = 1162, - [1172] = 1163, - [1173] = 1145, - [1174] = 1143, - [1175] = 1144, - [1176] = 1146, - [1177] = 1145, - [1178] = 1146, - [1179] = 1147, - [1180] = 1151, + [1171] = 1170, + [1172] = 1155, + [1173] = 1173, + [1174] = 1145, + [1175] = 1164, + [1176] = 1176, + [1177] = 1159, + [1178] = 1168, + [1179] = 1155, + [1180] = 1168, [1181] = 1142, - [1182] = 1143, - [1183] = 1144, - [1184] = 1145, - [1185] = 1146, - [1186] = 1147, - [1187] = 1151, - [1188] = 1143, - [1189] = 1144, - [1190] = 1147, - [1191] = 1145, - [1192] = 1146, - [1193] = 1147, - [1194] = 1151, - [1195] = 1143, - [1196] = 1144, - [1197] = 1145, - [1198] = 1146, - [1199] = 1147, - [1200] = 1151, - [1201] = 1143, - [1202] = 1144, - [1203] = 1145, - [1204] = 1146, - [1205] = 1147, - [1206] = 1151, - [1207] = 1155, - [1208] = 1143, - [1209] = 1144, - [1210] = 1145, - [1211] = 1146, - [1212] = 1147, - [1213] = 1151, - [1214] = 1155, - [1215] = 749, - [1216] = 1143, - [1217] = 1144, - [1218] = 1145, - [1219] = 1146, - [1220] = 1147, - [1221] = 1151, - [1222] = 1143, - [1223] = 1148, - [1224] = 1149, - [1225] = 1150, - [1226] = 1143, - [1227] = 1152, - [1228] = 1153, - [1229] = 1144, - [1230] = 1154, - [1231] = 1162, - [1232] = 1145, - [1233] = 1146, - [1234] = 1147, - [1235] = 1151, - [1236] = 1163, - [1237] = 1143, - [1238] = 1146, - [1239] = 1144, - [1240] = 1145, - [1241] = 1146, - [1242] = 1164, - [1243] = 1147, - [1244] = 1151, - [1245] = 1165, - [1246] = 1166, - [1247] = 1167, - [1248] = 1143, + [1182] = 1170, + [1183] = 1145, + [1184] = 1168, + [1185] = 1169, + [1186] = 1170, + [1187] = 1149, + [1188] = 1145, + [1189] = 1170, + [1190] = 1168, + [1191] = 1191, + [1192] = 1149, + [1193] = 1164, + [1194] = 1145, + [1195] = 1195, + [1196] = 1168, + [1197] = 1197, + [1198] = 1155, + [1199] = 1176, + [1200] = 739, + [1201] = 1149, + [1202] = 1168, + [1203] = 1203, + [1204] = 1204, + [1205] = 1149, + [1206] = 1142, + [1207] = 1164, + [1208] = 1168, + [1209] = 1149, + [1210] = 1143, + [1211] = 1164, + [1212] = 1164, + [1213] = 1155, + [1214] = 1168, + [1215] = 1170, + [1216] = 1155, + [1217] = 1160, + [1218] = 1170, + [1219] = 1195, + [1220] = 1168, + [1221] = 1203, + [1222] = 1167, + [1223] = 1170, + [1224] = 1145, + [1225] = 1142, + [1226] = 1168, + [1227] = 1145, + [1228] = 1159, + [1229] = 1149, + [1230] = 1197, + [1231] = 1149, + [1232] = 1168, + [1233] = 1204, + [1234] = 1160, + [1235] = 1155, + [1236] = 1145, + [1237] = 1163, + [1238] = 1149, + [1239] = 1239, + [1240] = 1195, + [1241] = 1241, + [1242] = 1142, + [1243] = 1168, + [1244] = 1197, + [1245] = 1149, + [1246] = 1168, + [1247] = 1155, + [1248] = 1155, [1249] = 1168, - [1250] = 1169, - [1251] = 1144, - [1252] = 1170, - [1253] = 1253, - [1254] = 1145, - [1255] = 1146, - [1256] = 1147, + [1250] = 1168, + [1251] = 1168, + [1252] = 1142, + [1253] = 1170, + [1254] = 1168, + [1255] = 1155, + [1256] = 1164, [1257] = 1164, - [1258] = 1165, - [1259] = 1151, - [1260] = 1143, - [1261] = 1144, - [1262] = 1145, - [1263] = 1146, - [1264] = 1147, - [1265] = 1151, - [1266] = 1166, - [1267] = 1167, - [1268] = 1168, - [1269] = 1143, + [1258] = 1142, + [1259] = 1145, + [1260] = 1155, + [1261] = 1241, + [1262] = 1142, + [1263] = 1144, + [1264] = 1164, + [1265] = 1170, + [1266] = 1168, + [1267] = 1145, + [1268] = 1145, + [1269] = 1149, [1270] = 1169, - [1271] = 1170, - [1272] = 1144, - [1273] = 1145, - [1274] = 1146, - [1275] = 1147, - [1276] = 1151, - [1277] = 1147, - [1278] = 1151, - [1279] = 1279, - [1280] = 1147, - [1281] = 1151, - [1282] = 1147, - [1283] = 1151, - [1284] = 1147, - [1285] = 1151, - [1286] = 1147, - [1287] = 1151, - [1288] = 1147, - [1289] = 1151, - [1290] = 1147, - [1291] = 1151, - [1292] = 1147, - [1293] = 1151, - [1294] = 1142, - [1295] = 1144, - [1296] = 1144, - [1297] = 1146, - [1298] = 1144, - [1299] = 1146, - [1300] = 1144, - [1301] = 1146, - [1302] = 1151, - [1303] = 1144, - [1304] = 1146, - [1305] = 1144, - [1306] = 1146, - [1307] = 1142, - [1308] = 1142, - [1309] = 1142, - [1310] = 1142, - [1311] = 1142, - [1312] = 1142, + [1271] = 1203, + [1272] = 1167, + [1273] = 1149, + [1274] = 1155, + [1275] = 1149, + [1276] = 1155, + [1277] = 1277, + [1278] = 1142, + [1279] = 1239, + [1280] = 1176, + [1281] = 1155, + [1282] = 1155, + [1283] = 1163, + [1284] = 1145, + [1285] = 1149, + [1286] = 1204, + [1287] = 1155, + [1288] = 1164, + [1289] = 1164, + [1290] = 1149, + [1291] = 1155, + [1292] = 1142, + [1293] = 1173, + [1294] = 1149, + [1295] = 1170, + [1296] = 1241, + [1297] = 1164, + [1298] = 1239, + [1299] = 1145, + [1300] = 1155, + [1301] = 1144, + [1302] = 1149, + [1303] = 1142, + [1304] = 1145, + [1305] = 1142, + [1306] = 1164, + [1307] = 1149, + [1308] = 1170, + [1309] = 739, + [1310] = 1173, + [1311] = 1149, + [1312] = 1170, [1313] = 1142, [1314] = 1142, - [1315] = 1142, - [1316] = 1142, - [1317] = 1142, - [1318] = 1142, - [1319] = 1142, - [1320] = 1142, - [1321] = 1142, + [1315] = 1164, + [1316] = 1145, + [1317] = 1155, + [1318] = 1151, + [1319] = 1149, + [1320] = 1155, + [1321] = 1155, [1322] = 1142, - [1323] = 1142, - [1324] = 1144, - [1325] = 749, + [1323] = 1145, + [1324] = 1170, + [1325] = 1168, [1326] = 1326, [1327] = 1327, [1328] = 1328, [1329] = 1329, [1330] = 1330, [1331] = 1331, - [1332] = 1332, + [1332] = 1331, [1333] = 1333, [1334] = 1334, [1335] = 1335, @@ -5924,676 +5931,676 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1338] = 1338, [1339] = 1339, [1340] = 1340, - [1341] = 1334, + [1341] = 1341, [1342] = 1342, [1343] = 1343, [1344] = 1344, [1345] = 1345, [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 1353, - [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1326, - [1358] = 1358, - [1359] = 1330, - [1360] = 1335, - [1361] = 1330, - [1362] = 1335, - [1363] = 1345, - [1364] = 1346, - [1365] = 1347, - [1366] = 1340, - [1367] = 1348, - [1368] = 1327, - [1369] = 1328, - [1370] = 1337, - [1371] = 1338, - [1372] = 1339, - [1373] = 1344, - [1374] = 1345, - [1375] = 1346, - [1376] = 1347, - [1377] = 1343, - [1378] = 1348, - [1379] = 1350, - [1380] = 1351, - [1381] = 1352, - [1382] = 1353, - [1383] = 1354, - [1384] = 1355, - [1385] = 1350, - [1386] = 1351, - [1387] = 1326, - [1388] = 1327, - [1389] = 1328, - [1390] = 1337, - [1391] = 1338, - [1392] = 1339, - [1393] = 1358, - [1394] = 1343, - [1395] = 1343, - [1396] = 1330, - [1397] = 1335, - [1398] = 1352, - [1399] = 1327, - [1400] = 1328, - [1401] = 1353, - [1402] = 1327, - [1403] = 1328, - [1404] = 1337, - [1405] = 1338, - [1406] = 1406, - [1407] = 1339, - [1408] = 1340, - [1409] = 1354, - [1410] = 1344, - [1411] = 1343, - [1412] = 1345, - [1413] = 1346, - [1414] = 1347, - [1415] = 1348, - [1416] = 1350, - [1417] = 1351, - [1418] = 1352, - [1419] = 1353, - [1420] = 1354, - [1421] = 1355, - [1422] = 1340, - [1423] = 1355, - [1424] = 1344, - [1425] = 1327, - [1426] = 1328, - [1427] = 1337, - [1428] = 1338, - [1429] = 1339, - [1430] = 1430, - [1431] = 1331, - [1432] = 1326, - [1433] = 1343, - [1434] = 1332, - [1435] = 1358, - [1436] = 1333, - [1437] = 1330, - [1438] = 1335, - [1439] = 1334, - [1440] = 1345, - [1441] = 1346, - [1442] = 1347, - [1443] = 1327, - [1444] = 1328, - [1445] = 1337, - [1446] = 1338, - [1447] = 1339, - [1448] = 1348, - [1449] = 1350, - [1450] = 1343, - [1451] = 1351, - [1452] = 1340, - [1453] = 1352, - [1454] = 1353, - [1455] = 1344, - [1456] = 1345, - [1457] = 1346, - [1458] = 1347, - [1459] = 1348, - [1460] = 1354, - [1461] = 1350, - [1462] = 1351, - [1463] = 1352, - [1464] = 1353, - [1465] = 1354, - [1466] = 1327, - [1467] = 1328, - [1468] = 1337, - [1469] = 1338, - [1470] = 1355, - [1471] = 1339, - [1472] = 1355, - [1473] = 1343, - [1474] = 1337, - [1475] = 1338, - [1476] = 1326, - [1477] = 1358, - [1478] = 1330, - [1479] = 1335, - [1480] = 1327, - [1481] = 1328, - [1482] = 1337, - [1483] = 1338, - [1484] = 1339, - [1485] = 1485, - [1486] = 1343, - [1487] = 1340, - [1488] = 1339, - [1489] = 1326, + [1347] = 1328, + [1348] = 1329, + [1349] = 1333, + [1350] = 1331, + [1351] = 1333, + [1352] = 1334, + [1353] = 1335, + [1354] = 1336, + [1355] = 1337, + [1356] = 1338, + [1357] = 1339, + [1358] = 1340, + [1359] = 1341, + [1360] = 1342, + [1361] = 1343, + [1362] = 1344, + [1363] = 1344, + [1364] = 1345, + [1365] = 1346, + [1366] = 1328, + [1367] = 1329, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1331, + [1372] = 1333, + [1373] = 1334, + [1374] = 1335, + [1375] = 1336, + [1376] = 1337, + [1377] = 1338, + [1378] = 1339, + [1379] = 1340, + [1380] = 1341, + [1381] = 1342, + [1382] = 1343, + [1383] = 1344, + [1384] = 1345, + [1385] = 1346, + [1386] = 1328, + [1387] = 1329, + [1388] = 1345, + [1389] = 1389, + [1390] = 1331, + [1391] = 1333, + [1392] = 1334, + [1393] = 1335, + [1394] = 1336, + [1395] = 1337, + [1396] = 1338, + [1397] = 1339, + [1398] = 1340, + [1399] = 1341, + [1400] = 1342, + [1401] = 1343, + [1402] = 1402, + [1403] = 1403, + [1404] = 1344, + [1405] = 1405, + [1406] = 1345, + [1407] = 1346, + [1408] = 1408, + [1409] = 1328, + [1410] = 1329, + [1411] = 1411, + [1412] = 1331, + [1413] = 1413, + [1414] = 1333, + [1415] = 1334, + [1416] = 1335, + [1417] = 1336, + [1418] = 1337, + [1419] = 1338, + [1420] = 1339, + [1421] = 1340, + [1422] = 1341, + [1423] = 1342, + [1424] = 1343, + [1425] = 1425, + [1426] = 1334, + [1427] = 1344, + [1428] = 1345, + [1429] = 1335, + [1430] = 1346, + [1431] = 1336, + [1432] = 1328, + [1433] = 1329, + [1434] = 1337, + [1435] = 1338, + [1436] = 1339, + [1437] = 1331, + [1438] = 1340, + [1439] = 1333, + [1440] = 1334, + [1441] = 1335, + [1442] = 1336, + [1443] = 1337, + [1444] = 1338, + [1445] = 1339, + [1446] = 1340, + [1447] = 1341, + [1448] = 1342, + [1449] = 1343, + [1450] = 1341, + [1451] = 1344, + [1452] = 1345, + [1453] = 1346, + [1454] = 1328, + [1455] = 1329, + [1456] = 1456, + [1457] = 1342, + [1458] = 1346, + [1459] = 1343, + [1460] = 1331, + [1461] = 1333, + [1462] = 1334, + [1463] = 1335, + [1464] = 1336, + [1465] = 1337, + [1466] = 1338, + [1467] = 1339, + [1468] = 1340, + [1469] = 1341, + [1470] = 1342, + [1471] = 1343, + [1472] = 1344, + [1473] = 1345, + [1474] = 1346, + [1475] = 1328, + [1476] = 1329, + [1477] = 1477, + [1478] = 1331, + [1479] = 1333, + [1480] = 1334, + [1481] = 1335, + [1482] = 1336, + [1483] = 1337, + [1484] = 1338, + [1485] = 1339, + [1486] = 1340, + [1487] = 1341, + [1488] = 1342, + [1489] = 1343, [1490] = 1344, - [1491] = 1430, - [1492] = 1345, - [1493] = 1346, - [1494] = 1347, - [1495] = 1348, - [1496] = 1327, - [1497] = 1328, - [1498] = 1337, - [1499] = 1338, - [1500] = 1339, - [1501] = 1350, - [1502] = 1351, - [1503] = 1352, - [1504] = 1353, - [1505] = 1343, - [1506] = 1354, - [1507] = 1355, - [1508] = 1326, - [1509] = 1343, - [1510] = 1358, - [1511] = 1326, - [1512] = 1326, - [1513] = 1327, - [1514] = 1328, - [1515] = 1337, - [1516] = 1338, - [1517] = 1517, - [1518] = 1339, - [1519] = 1358, - [1520] = 1343, - [1521] = 1330, - [1522] = 1330, - [1523] = 1335, - [1524] = 1335, - [1525] = 1525, - [1526] = 1358, - [1527] = 1327, - [1528] = 1328, - [1529] = 1337, - [1530] = 1338, - [1531] = 1340, - [1532] = 1339, - [1533] = 1330, - [1534] = 1344, - [1535] = 1345, - [1536] = 1343, - [1537] = 1346, - [1538] = 1347, - [1539] = 1348, - [1540] = 1335, - [1541] = 1350, - [1542] = 1351, - [1543] = 1352, - [1544] = 1353, - [1545] = 1354, - [1546] = 1355, + [1491] = 1345, + [1492] = 1346, + [1493] = 1328, + [1494] = 1329, + [1495] = 1495, + [1496] = 1496, + [1497] = 1331, + [1498] = 1333, + [1499] = 1334, + [1500] = 1335, + [1501] = 1336, + [1502] = 1337, + [1503] = 1338, + [1504] = 1339, + [1505] = 1340, + [1506] = 1341, + [1507] = 1342, + [1508] = 1343, + [1509] = 1344, + [1510] = 1345, + [1511] = 1346, + [1512] = 1328, + [1513] = 1329, + [1514] = 1331, + [1515] = 1333, + [1516] = 1334, + [1517] = 1335, + [1518] = 1336, + [1519] = 1337, + [1520] = 1338, + [1521] = 1339, + [1522] = 1340, + [1523] = 1341, + [1524] = 1342, + [1525] = 1343, + [1526] = 1526, + [1527] = 1344, + [1528] = 1345, + [1529] = 1529, + [1530] = 1346, + [1531] = 1328, + [1532] = 1329, + [1533] = 1533, + [1534] = 1534, + [1535] = 1331, + [1536] = 1333, + [1537] = 1334, + [1538] = 1335, + [1539] = 1336, + [1540] = 1337, + [1541] = 1338, + [1542] = 1339, + [1543] = 1340, + [1544] = 1341, + [1545] = 1342, + [1546] = 1343, [1547] = 1547, - [1548] = 1327, - [1549] = 1328, - [1550] = 1340, - [1551] = 1339, - [1552] = 1552, - [1553] = 1331, - [1554] = 1343, - [1555] = 1344, - [1556] = 1345, - [1557] = 1346, + [1548] = 1344, + [1549] = 1345, + [1550] = 1550, + [1551] = 1346, + [1552] = 1369, + [1553] = 1553, + [1554] = 1389, + [1555] = 1328, + [1556] = 1329, + [1557] = 1389, [1558] = 1558, - [1559] = 1347, - [1560] = 1326, - [1561] = 1348, - [1562] = 1332, - [1563] = 1350, - [1564] = 1351, - [1565] = 1339, - [1566] = 1343, - [1567] = 1358, - [1568] = 1352, - [1569] = 1353, - [1570] = 1339, - [1571] = 1330, - [1572] = 1354, + [1559] = 1559, + [1560] = 1331, + [1561] = 1333, + [1562] = 1558, + [1563] = 1559, + [1564] = 1402, + [1565] = 1403, + [1566] = 1405, + [1567] = 1411, + [1568] = 1402, + [1569] = 1403, + [1570] = 1405, + [1571] = 1411, + [1572] = 1334, [1573] = 1335, - [1574] = 1327, - [1575] = 1575, - [1576] = 1576, - [1577] = 1355, - [1578] = 1337, - [1579] = 1338, - [1580] = 1333, - [1581] = 1581, - [1582] = 1337, - [1583] = 1583, - [1584] = 1340, - [1585] = 1327, - [1586] = 1344, - [1587] = 1340, - [1588] = 1345, - [1589] = 1346, - [1590] = 1347, - [1591] = 1348, - [1592] = 1328, - [1593] = 1350, - [1594] = 1351, - [1595] = 1352, - [1596] = 1353, - [1597] = 1406, - [1598] = 1354, - [1599] = 1355, - [1600] = 1338, - [1601] = 1344, - [1602] = 1345, - [1603] = 1346, - [1604] = 1347, - [1605] = 1348, - [1606] = 1350, - [1607] = 1351, - [1608] = 1339, - [1609] = 1352, - [1610] = 1353, - [1611] = 1354, - [1612] = 1358, - [1613] = 1355, - [1614] = 1330, - [1615] = 1335, - [1616] = 1328, - [1617] = 1340, - [1618] = 1340, - [1619] = 1619, - [1620] = 1345, - [1621] = 1346, - [1622] = 1347, - [1623] = 1348, - [1624] = 1330, - [1625] = 1350, - [1626] = 1351, - [1627] = 1352, - [1628] = 1353, - [1629] = 1354, - [1630] = 1355, - [1631] = 1344, - [1632] = 1326, - [1633] = 1326, - [1634] = 1358, - [1635] = 1340, - [1636] = 1358, - [1637] = 1344, - [1638] = 1345, - [1639] = 1346, - [1640] = 1347, - [1641] = 1348, - [1642] = 1345, - [1643] = 1350, - [1644] = 1351, - [1645] = 1352, - [1646] = 1353, - [1647] = 1354, - [1648] = 1355, - [1649] = 1330, - [1650] = 1335, - [1651] = 1346, - [1652] = 1347, - [1653] = 1326, - [1654] = 1348, - [1655] = 1358, - [1656] = 1350, - [1657] = 1340, - [1658] = 1344, - [1659] = 1345, - [1660] = 1346, - [1661] = 1347, - [1662] = 1348, - [1663] = 1351, - [1664] = 1350, - [1665] = 1351, - [1666] = 1352, - [1667] = 1353, - [1668] = 1354, - [1669] = 1355, - [1670] = 1352, - [1671] = 1353, - [1672] = 1354, - [1673] = 1340, - [1674] = 1326, - [1675] = 1355, - [1676] = 1358, - [1677] = 1581, - [1678] = 1344, - [1679] = 1345, - [1680] = 1340, - [1681] = 1346, - [1682] = 1347, - [1683] = 1344, - [1684] = 1345, - [1685] = 1346, - [1686] = 1347, - [1687] = 1348, - [1688] = 1348, - [1689] = 1350, - [1690] = 1351, - [1691] = 1352, - [1692] = 1353, - [1693] = 1354, - [1694] = 1355, - [1695] = 1350, - [1696] = 1351, - [1697] = 1326, - [1698] = 1352, - [1699] = 1358, - [1700] = 1353, - [1701] = 1354, - [1702] = 1355, - [1703] = 1339, - [1704] = 1337, - [1705] = 1338, - [1706] = 1326, - [1707] = 1339, - [1708] = 1358, - [1709] = 1339, - [1710] = 1330, - [1711] = 1335, - [1712] = 1339, - [1713] = 1326, - [1714] = 1583, - [1715] = 1358, - [1716] = 1343, - [1717] = 1340, - [1718] = 1339, - [1719] = 1330, - [1720] = 1335, - [1721] = 1581, - [1722] = 1344, - [1723] = 1583, + [1574] = 1336, + [1575] = 1337, + [1576] = 1338, + [1577] = 1339, + [1578] = 1340, + [1579] = 1341, + [1580] = 1342, + [1581] = 1343, + [1582] = 1534, + [1583] = 1547, + [1584] = 1369, + [1585] = 1389, + [1586] = 1534, + [1587] = 1547, + [1588] = 1558, + [1589] = 1559, + [1590] = 1534, + [1591] = 1547, + [1592] = 1369, + [1593] = 1389, + [1594] = 1558, + [1595] = 1559, + [1596] = 1534, + [1597] = 1547, + [1598] = 1369, + [1599] = 1389, + [1600] = 1344, + [1601] = 1345, + [1602] = 1558, + [1603] = 1559, + [1604] = 1534, + [1605] = 1547, + [1606] = 1369, + [1607] = 1389, + [1608] = 1558, + [1609] = 1559, + [1610] = 1534, + [1611] = 1547, + [1612] = 1369, + [1613] = 1389, + [1614] = 1346, + [1615] = 1615, + [1616] = 1558, + [1617] = 1559, + [1618] = 1534, + [1619] = 1547, + [1620] = 1369, + [1621] = 1389, + [1622] = 1553, + [1623] = 1328, + [1624] = 1329, + [1625] = 1328, + [1626] = 1326, + [1627] = 1627, + [1628] = 1329, + [1629] = 1558, + [1630] = 1559, + [1631] = 1534, + [1632] = 1547, + [1633] = 1369, + [1634] = 1389, + [1635] = 1558, + [1636] = 1559, + [1637] = 1331, + [1638] = 1333, + [1639] = 1558, + [1640] = 1559, + [1641] = 1534, + [1642] = 1547, + [1643] = 1334, + [1644] = 1369, + [1645] = 1335, + [1646] = 1336, + [1647] = 1337, + [1648] = 1389, + [1649] = 1338, + [1650] = 1339, + [1651] = 1340, + [1652] = 1341, + [1653] = 1342, + [1654] = 1343, + [1655] = 1456, + [1656] = 1547, + [1657] = 1558, + [1658] = 1559, + [1659] = 1534, + [1660] = 1547, + [1661] = 1369, + [1662] = 1389, + [1663] = 1344, + [1664] = 1345, + [1665] = 1558, + [1666] = 1559, + [1667] = 1534, + [1668] = 1547, + [1669] = 1369, + [1670] = 1389, + [1671] = 1346, + [1672] = 1558, + [1673] = 1559, + [1674] = 1534, + [1675] = 1547, + [1676] = 1369, + [1677] = 1389, + [1678] = 1328, + [1679] = 1329, + [1680] = 1558, + [1681] = 1558, + [1682] = 1559, + [1683] = 1559, + [1684] = 1369, + [1685] = 1389, + [1686] = 1331, + [1687] = 1333, + [1688] = 1334, + [1689] = 1335, + [1690] = 1336, + [1691] = 1337, + [1692] = 1338, + [1693] = 1339, + [1694] = 1340, + [1695] = 1341, + [1696] = 1342, + [1697] = 1343, + [1698] = 1534, + [1699] = 1547, + [1700] = 1369, + [1701] = 1389, + [1702] = 1558, + [1703] = 1369, + [1704] = 1559, + [1705] = 1344, + [1706] = 1345, + [1707] = 1370, + [1708] = 1330, + [1709] = 1331, + [1710] = 1346, + [1711] = 1333, + [1712] = 1334, + [1713] = 1335, + [1714] = 1336, + [1715] = 1337, + [1716] = 1338, + [1717] = 1339, + [1718] = 1340, + [1719] = 1341, + [1720] = 1456, + [1721] = 1342, + [1722] = 1343, + [1723] = 1344, [1724] = 1345, - [1725] = 1406, + [1725] = 1725, [1726] = 1346, - [1727] = 1347, - [1728] = 1348, - [1729] = 1350, - [1730] = 1351, - [1731] = 1326, - [1732] = 1581, - [1733] = 1583, - [1734] = 1352, - [1735] = 1406, - [1736] = 1353, - [1737] = 1354, - [1738] = 1355, - [1739] = 1581, - [1740] = 1583, - [1741] = 1406, - [1742] = 1358, - [1743] = 1581, - [1744] = 1583, - [1745] = 1406, - [1746] = 1326, - [1747] = 1583, - [1748] = 1406, - [1749] = 1358, - [1750] = 1583, - [1751] = 1406, - [1752] = 1330, - [1753] = 1335, - [1754] = 1583, - [1755] = 1406, - [1756] = 1327, - [1757] = 1328, - [1758] = 1340, - [1759] = 1343, - [1760] = 1583, - [1761] = 1406, - [1762] = 1340, - [1763] = 1583, + [1727] = 1328, + [1728] = 1329, + [1729] = 1328, + [1730] = 1329, + [1731] = 1331, + [1732] = 1333, + [1733] = 1334, + [1734] = 1335, + [1735] = 1336, + [1736] = 1337, + [1737] = 1338, + [1738] = 1339, + [1739] = 1340, + [1740] = 1341, + [1741] = 1342, + [1742] = 1343, + [1743] = 1344, + [1744] = 1345, + [1745] = 1346, + [1746] = 1331, + [1747] = 1333, + [1748] = 1334, + [1749] = 1335, + [1750] = 1336, + [1751] = 1337, + [1752] = 1338, + [1753] = 1339, + [1754] = 1340, + [1755] = 1341, + [1756] = 1342, + [1757] = 1343, + [1758] = 1344, + [1759] = 1345, + [1760] = 1346, + [1761] = 1331, + [1762] = 1333, + [1763] = 1334, [1764] = 1335, - [1765] = 1406, - [1766] = 1340, - [1767] = 1344, - [1768] = 1345, - [1769] = 1344, - [1770] = 1583, - [1771] = 1345, - [1772] = 1406, - [1773] = 1346, - [1774] = 1347, - [1775] = 1348, - [1776] = 1346, - [1777] = 1583, - [1778] = 1350, - [1779] = 1406, - [1780] = 1351, - [1781] = 1352, - [1782] = 1353, - [1783] = 1354, - [1784] = 1358, - [1785] = 1583, - [1786] = 1355, - [1787] = 1406, - [1788] = 1347, - [1789] = 1348, - [1790] = 1344, - [1791] = 1583, - [1792] = 1406, - [1793] = 1350, - [1794] = 1583, - [1795] = 1406, - [1796] = 1351, - [1797] = 1583, - [1798] = 1406, - [1799] = 1583, - [1800] = 1406, - [1801] = 1583, - [1802] = 1406, - [1803] = 1583, - [1804] = 1406, - [1805] = 1583, - [1806] = 1583, - [1807] = 1352, - [1808] = 1339, - [1809] = 1326, - [1810] = 1547, - [1811] = 1811, - [1812] = 1330, - [1813] = 1335, - [1814] = 1552, - [1815] = 1517, - [1816] = 1525, - [1817] = 1353, - [1818] = 1343, - [1819] = 1358, - [1820] = 1354, - [1821] = 1343, + [1765] = 1336, + [1766] = 1337, + [1767] = 1338, + [1768] = 1339, + [1769] = 1340, + [1770] = 1341, + [1771] = 1342, + [1772] = 1343, + [1773] = 1344, + [1774] = 1345, + [1775] = 1346, + [1776] = 1331, + [1777] = 1333, + [1778] = 1334, + [1779] = 1335, + [1780] = 1336, + [1781] = 1337, + [1782] = 1338, + [1783] = 1339, + [1784] = 1340, + [1785] = 1341, + [1786] = 1342, + [1787] = 1343, + [1788] = 1344, + [1789] = 1345, + [1790] = 1346, + [1791] = 1331, + [1792] = 1369, + [1793] = 1333, + [1794] = 1369, + [1795] = 1334, + [1796] = 1335, + [1797] = 1336, + [1798] = 1337, + [1799] = 1799, + [1800] = 1338, + [1801] = 1339, + [1802] = 1369, + [1803] = 1340, + [1804] = 1341, + [1805] = 1342, + [1806] = 1343, + [1807] = 1369, + [1808] = 1389, + [1809] = 1369, + [1810] = 1534, + [1811] = 1547, + [1812] = 1370, + [1813] = 1330, + [1814] = 1456, + [1815] = 1370, + [1816] = 1330, + [1817] = 1456, + [1818] = 1370, + [1819] = 1330, + [1820] = 1456, + [1821] = 1370, [1822] = 1330, - [1823] = 1330, - [1824] = 1335, - [1825] = 1335, - [1826] = 1355, - [1827] = 1337, + [1823] = 1456, + [1824] = 1330, + [1825] = 1456, + [1826] = 1330, + [1827] = 1456, [1828] = 1330, - [1829] = 1335, - [1830] = 1338, - [1831] = 1330, - [1832] = 1335, - [1833] = 1340, + [1829] = 1456, + [1830] = 1330, + [1831] = 1456, + [1832] = 1330, + [1833] = 1456, [1834] = 1330, - [1835] = 1335, - [1836] = 1836, - [1837] = 1340, - [1838] = 1811, - [1839] = 1344, - [1840] = 1344, - [1841] = 1345, - [1842] = 1346, - [1843] = 1347, - [1844] = 1348, - [1845] = 1345, - [1846] = 1350, - [1847] = 1351, - [1848] = 1352, - [1849] = 1353, - [1850] = 1354, - [1851] = 1355, - [1852] = 1346, - [1853] = 1347, - [1854] = 1348, - [1855] = 1326, - [1856] = 1358, - [1857] = 1350, - [1858] = 1330, - [1859] = 1335, - [1860] = 1351, - [1861] = 1340, - [1862] = 1352, - [1863] = 1353, - [1864] = 1344, - [1865] = 1345, - [1866] = 1346, - [1867] = 1347, - [1868] = 1348, - [1869] = 1354, - [1870] = 1350, - [1871] = 1351, - [1872] = 1352, - [1873] = 1353, - [1874] = 1354, - [1875] = 1355, - [1876] = 1355, - [1877] = 1326, - [1878] = 1358, - [1879] = 1343, - [1880] = 1343, - [1881] = 1326, - [1882] = 1358, - [1883] = 1343, - [1884] = 1343, - [1885] = 1339, - [1886] = 1886, - [1887] = 1406, - [1888] = 1406, - [1889] = 1547, - [1890] = 1811, - [1891] = 1552, - [1892] = 1517, - [1893] = 1525, - [1894] = 1547, - [1895] = 1811, - [1896] = 1552, - [1897] = 1517, - [1898] = 1525, - [1899] = 1547, - [1900] = 1811, - [1901] = 1552, - [1902] = 1517, - [1903] = 1525, - [1904] = 1547, - [1905] = 1811, - [1906] = 1552, - [1907] = 1517, - [1908] = 1525, - [1909] = 1547, - [1910] = 1811, - [1911] = 1552, - [1912] = 1517, - [1913] = 1525, - [1914] = 1547, - [1915] = 1811, - [1916] = 1552, - [1917] = 1517, - [1918] = 1525, - [1919] = 1547, - [1920] = 1811, - [1921] = 1552, - [1922] = 1517, - [1923] = 1525, - [1924] = 1547, - [1925] = 1811, - [1926] = 1552, - [1927] = 1517, - [1928] = 1525, - [1929] = 1547, - [1930] = 1811, - [1931] = 1552, - [1932] = 1517, - [1933] = 1525, - [1934] = 1547, - [1935] = 1811, - [1936] = 1552, - [1937] = 1517, - [1938] = 1525, - [1939] = 1547, - [1940] = 1811, - [1941] = 1552, - [1942] = 1517, - [1943] = 1525, - [1944] = 1547, - [1945] = 1811, - [1946] = 1552, - [1947] = 1517, - [1948] = 1525, - [1949] = 1552, - [1950] = 1552, - [1951] = 1406, - [1952] = 1344, - [1953] = 749, - [1954] = 749, - [1955] = 749, - [1956] = 749, - [1957] = 1957, - [1958] = 1958, - [1959] = 1959, - [1960] = 1959, - [1961] = 1958, - [1962] = 1957, - [1963] = 1957, - [1964] = 1959, - [1965] = 1958, - [1966] = 1959, - [1967] = 1958, - [1968] = 1957, - [1969] = 1969, - [1970] = 1970, - [1971] = 1971, - [1972] = 1958, - [1973] = 1959, - [1974] = 1957, - [1975] = 1959, - [1976] = 1958, - [1977] = 1957, - [1978] = 1959, - [1979] = 1958, + [1835] = 1456, + [1836] = 1330, + [1837] = 1456, + [1838] = 1330, + [1839] = 1456, + [1840] = 1330, + [1841] = 1456, + [1842] = 1330, + [1843] = 1456, + [1844] = 1330, + [1845] = 1456, + [1846] = 1330, + [1847] = 1456, + [1848] = 1330, + [1849] = 1456, + [1850] = 1330, + [1851] = 1456, + [1852] = 1330, + [1853] = 1330, + [1854] = 1369, + [1855] = 1615, + [1856] = 1725, + [1857] = 1328, + [1858] = 1329, + [1859] = 1368, + [1860] = 1326, + [1861] = 1627, + [1862] = 1389, + [1863] = 1344, + [1864] = 1389, + [1865] = 1328, + [1866] = 1329, + [1867] = 1328, + [1868] = 1329, + [1869] = 1328, + [1870] = 1329, + [1871] = 1328, + [1872] = 1329, + [1873] = 1331, + [1874] = 1333, + [1875] = 1334, + [1876] = 1335, + [1877] = 1336, + [1878] = 1337, + [1879] = 1345, + [1880] = 1338, + [1881] = 1339, + [1882] = 1340, + [1883] = 1341, + [1884] = 1342, + [1885] = 1343, + [1886] = 1344, + [1887] = 1345, + [1888] = 1346, + [1889] = 1328, + [1890] = 1329, + [1891] = 1331, + [1892] = 1333, + [1893] = 1334, + [1894] = 1335, + [1895] = 1336, + [1896] = 1337, + [1897] = 1338, + [1898] = 1339, + [1899] = 1340, + [1900] = 1341, + [1901] = 1342, + [1902] = 1343, + [1903] = 1344, + [1904] = 1345, + [1905] = 1346, + [1906] = 1389, + [1907] = 1389, + [1908] = 1346, + [1909] = 1389, + [1910] = 1389, + [1911] = 1369, + [1912] = 1456, + [1913] = 1456, + [1914] = 1615, + [1915] = 1725, + [1916] = 1368, + [1917] = 1326, + [1918] = 1627, + [1919] = 1615, + [1920] = 1725, + [1921] = 1368, + [1922] = 1627, + [1923] = 1615, + [1924] = 1725, + [1925] = 1368, + [1926] = 1326, + [1927] = 1627, + [1928] = 1615, + [1929] = 1725, + [1930] = 1368, + [1931] = 1326, + [1932] = 1627, + [1933] = 1615, + [1934] = 1725, + [1935] = 1368, + [1936] = 1326, + [1937] = 1627, + [1938] = 1615, + [1939] = 1725, + [1940] = 1368, + [1941] = 1326, + [1942] = 1627, + [1943] = 1615, + [1944] = 1725, + [1945] = 1368, + [1946] = 1326, + [1947] = 1627, + [1948] = 1615, + [1949] = 1725, + [1950] = 1368, + [1951] = 1326, + [1952] = 1627, + [1953] = 1615, + [1954] = 1725, + [1955] = 1368, + [1956] = 1326, + [1957] = 1627, + [1958] = 1615, + [1959] = 1725, + [1960] = 1368, + [1961] = 1326, + [1962] = 1627, + [1963] = 1615, + [1964] = 1725, + [1965] = 1368, + [1966] = 1326, + [1967] = 1627, + [1968] = 1615, + [1969] = 1725, + [1970] = 1368, + [1971] = 1326, + [1972] = 1627, + [1973] = 1368, + [1974] = 1368, + [1975] = 1534, + [1976] = 739, + [1977] = 739, + [1978] = 739, + [1979] = 739, [1980] = 1980, [1981] = 1981, - [1982] = 1957, - [1983] = 1970, - [1984] = 1971, - [1985] = 1969, + [1982] = 1982, + [1983] = 1980, + [1984] = 1980, + [1985] = 1982, [1986] = 1981, [1987] = 1980, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, + [1988] = 1981, + [1989] = 1982, + [1990] = 1981, + [1991] = 1982, [1992] = 1992, [1993] = 1993, [1994] = 1994, - [1995] = 1995, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, + [1995] = 1980, + [1996] = 1981, + [1997] = 1980, + [1998] = 1982, + [1999] = 1982, + [2000] = 1981, + [2001] = 1980, [2002] = 2002, [2003] = 2003, - [2004] = 2004, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 2010, + [2004] = 1981, + [2005] = 1982, + [2006] = 1994, + [2007] = 1992, + [2008] = 1993, + [2009] = 2002, + [2010] = 2003, [2011] = 2011, [2012] = 2012, [2013] = 2013, @@ -6611,14 +6618,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2025] = 2025, [2026] = 2026, [2027] = 2027, - [2028] = 1992, - [2029] = 1989, - [2030] = 1991, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, [2031] = 2031, [2032] = 2032, [2033] = 2033, - [2034] = 1990, - [2035] = 1988, + [2034] = 2034, + [2035] = 2035, [2036] = 2036, [2037] = 2037, [2038] = 2038, @@ -6626,513 +6633,513 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2040] = 2040, [2041] = 2041, [2042] = 2042, - [2043] = 1994, - [2044] = 1958, - [2045] = 2045, + [2043] = 2043, + [2044] = 2044, + [2045] = 2015, [2046] = 2046, - [2047] = 2047, + [2047] = 2012, [2048] = 2048, - [2049] = 1995, - [2050] = 1999, - [2051] = 1993, - [2052] = 2002, + [2049] = 2049, + [2050] = 2014, + [2051] = 2051, + [2052] = 2052, [2053] = 2053, [2054] = 2054, - [2055] = 1996, - [2056] = 2001, - [2057] = 1998, - [2058] = 2000, - [2059] = 1997, + [2055] = 2055, + [2056] = 2056, + [2057] = 2011, + [2058] = 2013, + [2059] = 2059, [2060] = 2060, [2061] = 2061, - [2062] = 2019, - [2063] = 2020, - [2064] = 2005, - [2065] = 2009, - [2066] = 2066, - [2067] = 2016, - [2068] = 2021, - [2069] = 2004, - [2070] = 2018, - [2071] = 2010, - [2072] = 2007, - [2073] = 2015, - [2074] = 2074, - [2075] = 2008, - [2076] = 2076, - [2077] = 2013, - [2078] = 2078, - [2079] = 2011, - [2080] = 2006, + [2062] = 2062, + [2063] = 2063, + [2064] = 1980, + [2065] = 2065, + [2066] = 2017, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 2071, + [2072] = 2018, + [2073] = 2073, + [2074] = 2022, + [2075] = 2016, + [2076] = 2025, + [2077] = 2024, + [2078] = 2023, + [2079] = 2019, + [2080] = 2021, [2081] = 2081, - [2082] = 2082, + [2082] = 2020, [2083] = 2083, - [2084] = 2017, + [2084] = 2033, [2085] = 2085, - [2086] = 2012, - [2087] = 2087, - [2088] = 2003, - [2089] = 2014, + [2086] = 2036, + [2087] = 2037, + [2088] = 2027, + [2089] = 2089, [2090] = 2090, - [2091] = 2022, - [2092] = 2026, - [2093] = 2093, - [2094] = 2033, - [2095] = 2027, - [2096] = 1992, - [2097] = 1988, - [2098] = 1989, - [2099] = 1990, - [2100] = 1991, - [2101] = 2101, + [2091] = 2091, + [2092] = 2034, + [2093] = 2035, + [2094] = 2094, + [2095] = 2031, + [2096] = 2096, + [2097] = 2032, + [2098] = 2098, + [2099] = 2038, + [2100] = 2044, + [2101] = 2026, [2102] = 2102, - [2103] = 2026, - [2104] = 2022, - [2105] = 2047, - [2106] = 2033, - [2107] = 1994, - [2108] = 2108, - [2109] = 2109, - [2110] = 2110, - [2111] = 2110, - [2112] = 2053, - [2113] = 2110, - [2114] = 2110, - [2115] = 2110, - [2116] = 2110, - [2117] = 2110, - [2118] = 2110, - [2119] = 2110, - [2120] = 2110, - [2121] = 2110, - [2122] = 2110, - [2123] = 2110, - [2124] = 2110, - [2125] = 1970, - [2126] = 1969, - [2127] = 1971, - [2128] = 1971, - [2129] = 1970, - [2130] = 1969, - [2131] = 1969, - [2132] = 1970, - [2133] = 1980, - [2134] = 1970, - [2135] = 1971, - [2136] = 1981, - [2137] = 1969, - [2138] = 1971, - [2139] = 1969, - [2140] = 1971, - [2141] = 1969, - [2142] = 1971, - [2143] = 1970, - [2144] = 1958, - [2145] = 1980, - [2146] = 1981, - [2147] = 1970, - [2148] = 1970, - [2149] = 1969, - [2150] = 1971, - [2151] = 1971, - [2152] = 1970, - [2153] = 1969, - [2154] = 1958, - [2155] = 1981, - [2156] = 1971, - [2157] = 1969, - [2158] = 1980, - [2159] = 1969, - [2160] = 1969, - [2161] = 1970, - [2162] = 1970, - [2163] = 1971, - [2164] = 1970, - [2165] = 1970, - [2166] = 1971, - [2167] = 1971, - [2168] = 1969, - [2169] = 2169, - [2170] = 1980, - [2171] = 1969, - [2172] = 1971, - [2173] = 1970, - [2174] = 1970, - [2175] = 1981, - [2176] = 1971, - [2177] = 1969, - [2178] = 1980, - [2179] = 1971, - [2180] = 2180, - [2181] = 2181, - [2182] = 1970, - [2183] = 1969, - [2184] = 1970, - [2185] = 2185, - [2186] = 1981, - [2187] = 1981, - [2188] = 1980, - [2189] = 1971, - [2190] = 1969, - [2191] = 2169, - [2192] = 1981, - [2193] = 1980, - [2194] = 2194, - [2195] = 2180, - [2196] = 2181, - [2197] = 1981, - [2198] = 2185, - [2199] = 1980, - [2200] = 2169, - [2201] = 2201, - [2202] = 1970, - [2203] = 1971, - [2204] = 2181, - [2205] = 2169, - [2206] = 1969, - [2207] = 1969, - [2208] = 1970, - [2209] = 1971, - [2210] = 2181, - [2211] = 2185, - [2212] = 1969, - [2213] = 1971, - [2214] = 1969, - [2215] = 1970, - [2216] = 1970, - [2217] = 1971, - [2218] = 2180, - [2219] = 1970, - [2220] = 1971, - [2221] = 1971, - [2222] = 1971, - [2223] = 1981, - [2224] = 1980, - [2225] = 2169, - [2226] = 1969, - [2227] = 1970, - [2228] = 1971, - [2229] = 2169, - [2230] = 1969, - [2231] = 2185, - [2232] = 2169, - [2233] = 1969, - [2234] = 2180, - [2235] = 1969, - [2236] = 1970, - [2237] = 1970, - [2238] = 2194, - [2239] = 2169, - [2240] = 1969, - [2241] = 2185, - [2242] = 1969, - [2243] = 1971, - [2244] = 2180, - [2245] = 1971, - [2246] = 2181, - [2247] = 2181, - [2248] = 2201, - [2249] = 1970, - [2250] = 2181, - [2251] = 1980, - [2252] = 2180, - [2253] = 2185, - [2254] = 1970, - [2255] = 1981, - [2256] = 2185, - [2257] = 2169, - [2258] = 1981, - [2259] = 2181, - [2260] = 2169, - [2261] = 1980, - [2262] = 1970, - [2263] = 1981, - [2264] = 2180, - [2265] = 1969, - [2266] = 2194, - [2267] = 1971, - [2268] = 1980, - [2269] = 1969, - [2270] = 1971, - [2271] = 1970, - [2272] = 2180, - [2273] = 1980, - [2274] = 2201, - [2275] = 1981, - [2276] = 2185, - [2277] = 2169, - [2278] = 2278, - [2279] = 2181, - [2280] = 2181, - [2281] = 2281, - [2282] = 2169, - [2283] = 1980, - [2284] = 2181, - [2285] = 1981, - [2286] = 2169, - [2287] = 2181, - [2288] = 1991, - [2289] = 2185, - [2290] = 2181, - [2291] = 1990, - [2292] = 2180, - [2293] = 1988, - [2294] = 1989, - [2295] = 2169, - [2296] = 1992, - [2297] = 1994, - [2298] = 2169, - [2299] = 2181, - [2300] = 2185, - [2301] = 1989, - [2302] = 1991, - [2303] = 1990, - [2304] = 1988, - [2305] = 2180, - [2306] = 1992, - [2307] = 2169, - [2308] = 2181, - [2309] = 1997, - [2310] = 1994, - [2311] = 2181, - [2312] = 1999, - [2313] = 2181, - [2314] = 2180, - [2315] = 2180, - [2316] = 2001, - [2317] = 2185, - [2318] = 2002, - [2319] = 2185, - [2320] = 1993, - [2321] = 1996, - [2322] = 1995, - [2323] = 2169, - [2324] = 2169, - [2325] = 1998, - [2326] = 2000, - [2327] = 2011, - [2328] = 1997, - [2329] = 2016, - [2330] = 2330, - [2331] = 2019, - [2332] = 2020, - [2333] = 2180, - [2334] = 2169, - [2335] = 2021, - [2336] = 2001, - [2337] = 2010, - [2338] = 2004, - [2339] = 2181, - [2340] = 2003, - [2341] = 2014, - [2342] = 2017, - [2343] = 1998, - [2344] = 1995, - [2345] = 1996, - [2346] = 2012, - [2347] = 1999, - [2348] = 2169, - [2349] = 2013, - [2350] = 2007, + [2103] = 2103, + [2104] = 2104, + [2105] = 2039, + [2106] = 2040, + [2107] = 2041, + [2108] = 2043, + [2109] = 2028, + [2110] = 2042, + [2111] = 2029, + [2112] = 2030, + [2113] = 2113, + [2114] = 2114, + [2115] = 2046, + [2116] = 2056, + [2117] = 2051, + [2118] = 2015, + [2119] = 2055, + [2120] = 2012, + [2121] = 2011, + [2122] = 2014, + [2123] = 2013, + [2124] = 2046, + [2125] = 2125, + [2126] = 2070, + [2127] = 2017, + [2128] = 2128, + [2129] = 2129, + [2130] = 2130, + [2131] = 2056, + [2132] = 2051, + [2133] = 2133, + [2134] = 2133, + [2135] = 2133, + [2136] = 2133, + [2137] = 2133, + [2138] = 2133, + [2139] = 2133, + [2140] = 2133, + [2141] = 2133, + [2142] = 2133, + [2143] = 2133, + [2144] = 2133, + [2145] = 2133, + [2146] = 2081, + [2147] = 2133, + [2148] = 1994, + [2149] = 1992, + [2150] = 1994, + [2151] = 1993, + [2152] = 1992, + [2153] = 1993, + [2154] = 1994, + [2155] = 1993, + [2156] = 1992, + [2157] = 2002, + [2158] = 1993, + [2159] = 1994, + [2160] = 1992, + [2161] = 2003, + [2162] = 1980, + [2163] = 1980, + [2164] = 1994, + [2165] = 1993, + [2166] = 2002, + [2167] = 1993, + [2168] = 1994, + [2169] = 1992, + [2170] = 2003, + [2171] = 1992, + [2172] = 1994, + [2173] = 1993, + [2174] = 1993, + [2175] = 1994, + [2176] = 1992, + [2177] = 1992, + [2178] = 2002, + [2179] = 1992, + [2180] = 1993, + [2181] = 1994, + [2182] = 1992, + [2183] = 1993, + [2184] = 1993, + [2185] = 1994, + [2186] = 1992, + [2187] = 1993, + [2188] = 1994, + [2189] = 1994, + [2190] = 1992, + [2191] = 2003, + [2192] = 2002, + [2193] = 1993, + [2194] = 1994, + [2195] = 1992, + [2196] = 2196, + [2197] = 2003, + [2198] = 1992, + [2199] = 1993, + [2200] = 1994, + [2201] = 1992, + [2202] = 2003, + [2203] = 2002, + [2204] = 2002, + [2205] = 2003, + [2206] = 1993, + [2207] = 2207, + [2208] = 1994, + [2209] = 1993, + [2210] = 2210, + [2211] = 1992, + [2212] = 2212, + [2213] = 1994, + [2214] = 2003, + [2215] = 2002, + [2216] = 2216, + [2217] = 2196, + [2218] = 2218, + [2219] = 2002, + [2220] = 2210, + [2221] = 2196, + [2222] = 2003, + [2223] = 2212, + [2224] = 2207, + [2225] = 1994, + [2226] = 1992, + [2227] = 1993, + [2228] = 2212, + [2229] = 1993, + [2230] = 2196, + [2231] = 1994, + [2232] = 1992, + [2233] = 1994, + [2234] = 1994, + [2235] = 1993, + [2236] = 2212, + [2237] = 1992, + [2238] = 2207, + [2239] = 1992, + [2240] = 2210, + [2241] = 1993, + [2242] = 1993, + [2243] = 1992, + [2244] = 1994, + [2245] = 2216, + [2246] = 2210, + [2247] = 1992, + [2248] = 1993, + [2249] = 1993, + [2250] = 2196, + [2251] = 2196, + [2252] = 1994, + [2253] = 1992, + [2254] = 2196, + [2255] = 2002, + [2256] = 2003, + [2257] = 1994, + [2258] = 1994, + [2259] = 1992, + [2260] = 1993, + [2261] = 2207, + [2262] = 2212, + [2263] = 2210, + [2264] = 1994, + [2265] = 1993, + [2266] = 1994, + [2267] = 1992, + [2268] = 1992, + [2269] = 2218, + [2270] = 2212, + [2271] = 1993, + [2272] = 2212, + [2273] = 2207, + [2274] = 2207, + [2275] = 2196, + [2276] = 2210, + [2277] = 2002, + [2278] = 2003, + [2279] = 2002, + [2280] = 2003, + [2281] = 2210, + [2282] = 1992, + [2283] = 1993, + [2284] = 1994, + [2285] = 1993, + [2286] = 2207, + [2287] = 2196, + [2288] = 1994, + [2289] = 2216, + [2290] = 2002, + [2291] = 2196, + [2292] = 2212, + [2293] = 1992, + [2294] = 2003, + [2295] = 2002, + [2296] = 2212, + [2297] = 2297, + [2298] = 2003, + [2299] = 2210, + [2300] = 2196, + [2301] = 2218, + [2302] = 2207, + [2303] = 2212, + [2304] = 2002, + [2305] = 2305, + [2306] = 2196, + [2307] = 2212, + [2308] = 2003, + [2309] = 2212, + [2310] = 2196, + [2311] = 2012, + [2312] = 2196, + [2313] = 2210, + [2314] = 2011, + [2315] = 2015, + [2316] = 2014, + [2317] = 2212, + [2318] = 2013, + [2319] = 2207, + [2320] = 2210, + [2321] = 2212, + [2322] = 2196, + [2323] = 2017, + [2324] = 2207, + [2325] = 2014, + [2326] = 2012, + [2327] = 2196, + [2328] = 2015, + [2329] = 2011, + [2330] = 2013, + [2331] = 2025, + [2332] = 2024, + [2333] = 2196, + [2334] = 2016, + [2335] = 2020, + [2336] = 2212, + [2337] = 2207, + [2338] = 2196, + [2339] = 2019, + [2340] = 2210, + [2341] = 2212, + [2342] = 2018, + [2343] = 2207, + [2344] = 2212, + [2345] = 2023, + [2346] = 2210, + [2347] = 2021, + [2348] = 2017, + [2349] = 2022, + [2350] = 2032, [2351] = 2351, - [2352] = 2185, - [2353] = 2015, - [2354] = 2009, - [2355] = 2008, - [2356] = 2018, - [2357] = 2005, - [2358] = 2006, - [2359] = 2359, - [2360] = 2360, - [2361] = 2180, - [2362] = 1992, - [2363] = 2363, - [2364] = 1991, - [2365] = 2181, - [2366] = 1995, - [2367] = 2367, - [2368] = 1988, - [2369] = 1997, - [2370] = 2185, - [2371] = 2371, - [2372] = 2372, - [2373] = 2001, - [2374] = 2002, - [2375] = 2367, - [2376] = 1996, - [2377] = 2181, - [2378] = 2000, - [2379] = 2363, - [2380] = 2194, - [2381] = 2363, - [2382] = 1993, - [2383] = 2181, - [2384] = 2027, - [2385] = 1999, - [2386] = 2169, - [2387] = 1989, - [2388] = 2360, - [2389] = 1990, - [2390] = 2360, - [2391] = 1998, - [2392] = 2169, - [2393] = 2393, - [2394] = 2351, - [2395] = 2017, - [2396] = 2018, - [2397] = 1998, - [2398] = 1996, - [2399] = 2005, - [2400] = 2006, - [2401] = 2008, - [2402] = 2003, - [2403] = 2009, - [2404] = 2010, - [2405] = 2011, - [2406] = 2012, - [2407] = 2013, - [2408] = 2019, - [2409] = 2020, - [2410] = 2021, - [2411] = 2004, + [2352] = 2020, + [2353] = 2021, + [2354] = 2022, + [2355] = 2036, + [2356] = 2027, + [2357] = 2038, + [2358] = 2358, + [2359] = 2044, + [2360] = 2026, + [2361] = 2023, + [2362] = 2212, + [2363] = 2039, + [2364] = 2040, + [2365] = 2037, + [2366] = 2041, + [2367] = 2043, + [2368] = 2196, + [2369] = 2028, + [2370] = 2196, + [2371] = 2207, + [2372] = 2042, + [2373] = 2029, + [2374] = 2030, + [2375] = 2031, + [2376] = 2033, + [2377] = 2210, + [2378] = 2035, + [2379] = 2024, + [2380] = 2018, + [2381] = 2034, + [2382] = 2212, + [2383] = 2014, + [2384] = 2384, + [2385] = 2019, + [2386] = 2025, + [2387] = 2012, + [2388] = 2055, + [2389] = 2018, + [2390] = 2212, + [2391] = 2015, + [2392] = 2013, + [2393] = 2021, + [2394] = 2212, + [2395] = 2395, + [2396] = 2396, + [2397] = 2397, + [2398] = 2016, + [2399] = 2399, + [2400] = 2020, + [2401] = 2401, + [2402] = 2022, + [2403] = 2024, + [2404] = 2207, + [2405] = 2395, + [2406] = 2399, + [2407] = 2011, + [2408] = 2384, + [2409] = 2397, + [2410] = 2395, + [2411] = 2216, [2412] = 2412, - [2413] = 2413, - [2414] = 2007, - [2415] = 2169, - [2416] = 1990, - [2417] = 1988, - [2418] = 2418, + [2413] = 2196, + [2414] = 2196, + [2415] = 2397, + [2416] = 2023, + [2417] = 2210, + [2418] = 2040, [2419] = 2419, [2420] = 2420, [2421] = 2421, - [2422] = 1989, - [2423] = 1991, - [2424] = 2419, - [2425] = 2420, - [2426] = 2426, - [2427] = 2427, - [2428] = 2426, - [2429] = 2427, - [2430] = 1992, - [2431] = 2431, - [2432] = 2412, - [2433] = 2413, - [2434] = 2418, - [2435] = 2014, - [2436] = 2109, - [2437] = 2102, - [2438] = 1994, - [2439] = 2015, - [2440] = 1997, - [2441] = 1995, - [2442] = 1999, - [2443] = 2001, - [2444] = 2431, - [2445] = 2181, - [2446] = 2016, - [2447] = 2421, - [2448] = 2412, - [2449] = 2413, - [2450] = 2330, - [2451] = 2201, - [2452] = 2181, - [2453] = 2393, - [2454] = 2047, - [2455] = 1989, - [2456] = 2456, - [2457] = 2359, - [2458] = 1992, - [2459] = 2053, - [2460] = 1994, - [2461] = 2461, - [2462] = 1990, - [2463] = 2463, - [2464] = 1988, - [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2027, - [2469] = 2469, - [2470] = 2027, - [2471] = 1957, - [2472] = 2472, - [2473] = 2473, - [2474] = 2474, - [2475] = 2475, - [2476] = 2476, - [2477] = 1958, - [2478] = 2478, - [2479] = 2371, + [2422] = 2218, + [2423] = 2034, + [2424] = 2212, + [2425] = 2038, + [2426] = 2044, + [2427] = 2026, + [2428] = 2351, + [2429] = 2429, + [2430] = 2039, + [2431] = 2041, + [2432] = 2043, + [2433] = 2028, + [2434] = 2042, + [2435] = 2029, + [2436] = 2030, + [2437] = 2031, + [2438] = 2032, + [2439] = 2033, + [2440] = 2020, + [2441] = 2021, + [2442] = 2358, + [2443] = 2212, + [2444] = 2022, + [2445] = 2035, + [2446] = 2446, + [2447] = 2446, + [2448] = 2421, + [2449] = 2449, + [2450] = 2429, + [2451] = 2420, + [2452] = 2452, + [2453] = 2453, + [2454] = 2454, + [2455] = 2027, + [2456] = 2419, + [2457] = 2130, + [2458] = 2196, + [2459] = 2459, + [2460] = 2014, + [2461] = 2015, + [2462] = 2012, + [2463] = 2037, + [2464] = 2453, + [2465] = 2017, + [2466] = 2070, + [2467] = 2011, + [2468] = 2013, + [2469] = 2459, + [2470] = 2024, + [2471] = 2018, + [2472] = 2452, + [2473] = 2446, + [2474] = 2449, + [2475] = 2449, + [2476] = 2129, + [2477] = 2036, + [2478] = 2023, + [2479] = 2479, [2480] = 2480, - [2481] = 2372, + [2481] = 2481, [2482] = 2482, [2483] = 2483, - [2484] = 2484, + [2484] = 2014, [2485] = 2485, [2486] = 2486, [2487] = 2487, [2488] = 2488, - [2489] = 2489, + [2489] = 2015, [2490] = 2490, [2491] = 2491, - [2492] = 2492, + [2492] = 2401, [2493] = 2493, [2494] = 2494, [2495] = 2495, - [2496] = 1993, - [2497] = 1998, - [2498] = 2000, - [2499] = 1996, - [2500] = 1991, - [2501] = 1992, - [2502] = 1990, - [2503] = 1988, - [2504] = 1989, - [2505] = 1991, - [2506] = 1997, - [2507] = 1995, - [2508] = 1999, - [2509] = 2001, - [2510] = 2482, - [2511] = 2484, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2012, + [2500] = 2055, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 2011, + [2508] = 2508, + [2509] = 2013, + [2510] = 2506, + [2511] = 2511, [2512] = 2512, - [2513] = 2513, + [2513] = 2396, [2514] = 2514, - [2515] = 2489, + [2515] = 2515, [2516] = 2516, - [2517] = 2512, - [2518] = 2513, - [2519] = 2482, - [2520] = 2484, - [2521] = 2521, - [2522] = 2512, - [2523] = 2513, - [2524] = 2514, - [2525] = 2525, - [2526] = 2514, - [2527] = 2489, - [2528] = 2528, - [2529] = 2002, + [2517] = 2011, + [2518] = 2518, + [2519] = 2013, + [2520] = 2520, + [2521] = 2018, + [2522] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 2015, + [2526] = 2012, + [2527] = 2527, + [2528] = 2480, + [2529] = 2482, [2530] = 2530, - [2531] = 2531, - [2532] = 2532, - [2533] = 2533, - [2534] = 2534, - [2535] = 2535, + [2531] = 2501, + [2532] = 2502, + [2533] = 2506, + [2534] = 2515, + [2535] = 2482, [2536] = 2536, [2537] = 2537, [2538] = 2538, [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, + [2540] = 1981, + [2541] = 2020, + [2542] = 2021, + [2543] = 2081, [2544] = 2544, [2545] = 2545, - [2546] = 2546, + [2546] = 2017, [2547] = 2547, - [2548] = 2047, - [2549] = 2549, + [2548] = 2548, + [2549] = 2014, [2550] = 2550, [2551] = 2551, [2552] = 2552, @@ -7140,155 +7147,155 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2554] = 2554, [2555] = 2555, [2556] = 2556, - [2557] = 2557, - [2558] = 2558, + [2557] = 2022, + [2558] = 2023, [2559] = 2559, - [2560] = 2560, + [2560] = 1980, [2561] = 2561, [2562] = 2562, [2563] = 2563, [2564] = 2564, - [2565] = 2014, + [2565] = 2565, [2566] = 2566, - [2567] = 2330, + [2567] = 2567, [2568] = 2568, [2569] = 2569, - [2570] = 2016, + [2570] = 2570, [2571] = 2571, [2572] = 2572, [2573] = 2573, - [2574] = 2018, - [2575] = 2575, + [2574] = 2501, + [2575] = 2025, [2576] = 2576, - [2577] = 2577, - [2578] = 2578, - [2579] = 2579, - [2580] = 2580, - [2581] = 2581, + [2577] = 2480, + [2578] = 2502, + [2579] = 2412, + [2580] = 2515, + [2581] = 2016, [2582] = 2582, - [2583] = 2583, - [2584] = 1998, - [2585] = 2585, + [2583] = 2055, + [2584] = 2024, + [2585] = 2019, [2586] = 2586, - [2587] = 2587, - [2588] = 2588, - [2589] = 2589, - [2590] = 2590, + [2587] = 2013, + [2588] = 2017, + [2589] = 2042, + [2590] = 2034, [2591] = 2591, [2592] = 2592, [2593] = 2593, [2594] = 2594, [2595] = 2595, [2596] = 2596, - [2597] = 2597, + [2597] = 2022, [2598] = 2598, [2599] = 2599, [2600] = 2600, [2601] = 2601, [2602] = 2602, - [2603] = 2002, - [2604] = 1993, + [2603] = 2603, + [2604] = 2604, [2605] = 2605, [2606] = 2606, [2607] = 2607, - [2608] = 1998, - [2609] = 2000, + [2608] = 2608, + [2609] = 2609, [2610] = 2610, [2611] = 2611, [2612] = 2612, [2613] = 2613, [2614] = 2614, - [2615] = 2615, - [2616] = 1996, + [2615] = 2019, + [2616] = 2616, [2617] = 2617, [2618] = 2618, - [2619] = 2351, + [2619] = 2619, [2620] = 2620, - [2621] = 1996, + [2621] = 2621, [2622] = 2622, - [2623] = 1990, + [2623] = 2623, [2624] = 2624, [2625] = 2625, [2626] = 2626, [2627] = 2627, [2628] = 2628, [2629] = 2629, - [2630] = 2630, + [2630] = 2070, [2631] = 2631, - [2632] = 1988, + [2632] = 2632, [2633] = 2633, [2634] = 2634, - [2635] = 2635, + [2635] = 2022, [2636] = 2636, [2637] = 2637, [2638] = 2638, - [2639] = 2639, - [2640] = 2640, - [2641] = 2007, + [2639] = 2023, + [2640] = 2029, + [2641] = 2641, [2642] = 2642, [2643] = 2643, - [2644] = 2015, + [2644] = 2644, [2645] = 2645, [2646] = 2646, [2647] = 2647, - [2648] = 2102, + [2648] = 2648, [2649] = 2649, [2650] = 2650, [2651] = 2651, - [2652] = 1989, - [2653] = 2653, + [2652] = 2652, + [2653] = 2023, [2654] = 2654, [2655] = 2655, - [2656] = 2656, + [2656] = 2018, [2657] = 2657, - [2658] = 2658, + [2658] = 2043, [2659] = 2659, - [2660] = 2017, + [2660] = 2660, [2661] = 2661, [2662] = 2662, [2663] = 2663, - [2664] = 2664, - [2665] = 2005, - [2666] = 2006, - [2667] = 2667, + [2664] = 2030, + [2665] = 2031, + [2666] = 2666, + [2667] = 2454, [2668] = 2668, - [2669] = 2008, - [2670] = 2003, - [2671] = 2009, - [2672] = 2010, + [2669] = 2669, + [2670] = 2670, + [2671] = 2671, + [2672] = 2032, [2673] = 2673, - [2674] = 2011, - [2675] = 2675, - [2676] = 2012, - [2677] = 2013, - [2678] = 2019, - [2679] = 2020, - [2680] = 2021, - [2681] = 2004, + [2674] = 2129, + [2675] = 2035, + [2676] = 2015, + [2677] = 2677, + [2678] = 2678, + [2679] = 2679, + [2680] = 2680, + [2681] = 2012, [2682] = 2682, [2683] = 2683, - [2684] = 2684, + [2684] = 2033, [2685] = 2685, - [2686] = 1997, - [2687] = 1995, + [2686] = 2686, + [2687] = 2687, [2688] = 2688, - [2689] = 1999, - [2690] = 2001, - [2691] = 2691, + [2689] = 2689, + [2690] = 2690, + [2691] = 2041, [2692] = 2692, [2693] = 2693, [2694] = 2694, - [2695] = 2695, - [2696] = 2696, + [2695] = 2039, + [2696] = 2027, [2697] = 2697, - [2698] = 2698, - [2699] = 1994, + [2698] = 2036, + [2699] = 2699, [2700] = 2700, - [2701] = 2701, + [2701] = 2025, [2702] = 2702, [2703] = 2703, [2704] = 2704, - [2705] = 1994, + [2705] = 2705, [2706] = 2706, [2707] = 2707, [2708] = 2708, @@ -7299,17 +7306,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2713] = 2713, [2714] = 2714, [2715] = 2715, - [2716] = 2716, - [2717] = 2717, - [2718] = 2718, - [2719] = 2719, + [2716] = 2351, + [2717] = 2020, + [2718] = 2016, + [2719] = 2130, [2720] = 2720, [2721] = 2721, - [2722] = 1997, - [2723] = 1995, - [2724] = 1999, - [2725] = 2001, - [2726] = 1992, + [2722] = 2722, + [2723] = 2017, + [2724] = 2024, + [2725] = 2018, + [2726] = 2726, [2727] = 2727, [2728] = 2728, [2729] = 2729, @@ -7317,7 +7324,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2731] = 2731, [2732] = 2732, [2733] = 2733, - [2734] = 2734, + [2734] = 2358, [2735] = 2735, [2736] = 2736, [2737] = 2737, @@ -7330,5333 +7337,5333 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2744] = 2744, [2745] = 2745, [2746] = 2746, - [2747] = 2109, + [2747] = 2747, [2748] = 2748, [2749] = 2749, [2750] = 2750, [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 1991, - [2755] = 2007, - [2756] = 2000, - [2757] = 2485, - [2758] = 1996, - [2759] = 2015, - [2760] = 2478, - [2761] = 1997, - [2762] = 1995, - [2763] = 2466, - [2764] = 1999, - [2765] = 1996, - [2766] = 2001, - [2767] = 1990, - [2768] = 1988, - [2769] = 2053, - [2770] = 1998, - [2771] = 2495, - [2772] = 2027, - [2773] = 1989, - [2774] = 1991, - [2775] = 2483, - [2776] = 2005, - [2777] = 2480, - [2778] = 2006, - [2779] = 2486, - [2780] = 2493, - [2781] = 1998, - [2782] = 2528, - [2783] = 2474, - [2784] = 2000, - [2785] = 2475, - [2786] = 2786, - [2787] = 1997, - [2788] = 1995, - [2789] = 1999, - [2790] = 2001, - [2791] = 1997, - [2792] = 1995, - [2793] = 1999, - [2794] = 2001, - [2795] = 2467, - [2796] = 2008, - [2797] = 2003, - [2798] = 2461, - [2799] = 1998, - [2800] = 2009, - [2801] = 2014, - [2802] = 2371, - [2803] = 2010, - [2804] = 2011, - [2805] = 2016, - [2806] = 2372, - [2807] = 2456, - [2808] = 2018, - [2809] = 1958, - [2810] = 2002, - [2811] = 1992, - [2812] = 1996, - [2813] = 2473, - [2814] = 2465, - [2815] = 2494, - [2816] = 2012, - [2817] = 2469, - [2818] = 2525, - [2819] = 2490, - [2820] = 2013, - [2821] = 2019, - [2822] = 2359, - [2823] = 2020, - [2824] = 2491, - [2825] = 2492, - [2826] = 2516, - [2827] = 1994, - [2828] = 2021, - [2829] = 2487, - [2830] = 2004, - [2831] = 2017, - [2832] = 2521, - [2833] = 1957, - [2834] = 2488, - [2835] = 1993, - [2836] = 2463, - [2837] = 2472, - [2838] = 2476, - [2839] = 2002, - [2840] = 1993, - [2841] = 2456, - [2842] = 2469, - [2843] = 2717, - [2844] = 2628, - [2845] = 2629, - [2846] = 2739, - [2847] = 2740, - [2848] = 2351, - [2849] = 2741, - [2850] = 2017, - [2851] = 2851, - [2852] = 2630, - [2853] = 2555, - [2854] = 2005, - [2855] = 2006, - [2856] = 2631, - [2857] = 2473, - [2858] = 2418, - [2859] = 2008, - [2860] = 2003, - [2861] = 2009, - [2862] = 2010, - [2863] = 2011, - [2864] = 2012, - [2865] = 2013, - [2866] = 2019, - [2867] = 2020, - [2868] = 2021, - [2869] = 2004, - [2870] = 2557, - [2871] = 2633, - [2872] = 2634, - [2873] = 2635, - [2874] = 2539, - [2875] = 2540, - [2876] = 2109, - [2877] = 2330, - [2878] = 2351, - [2879] = 2419, - [2880] = 2420, - [2881] = 2426, - [2882] = 2558, - [2883] = 2640, - [2884] = 2559, - [2885] = 2427, - [2886] = 2102, - [2887] = 2561, - [2888] = 2562, - [2889] = 2643, - [2890] = 2645, - [2891] = 2688, - [2892] = 2701, - [2893] = 2651, - [2894] = 2560, - [2895] = 2541, - [2896] = 2654, - [2897] = 2647, - [2898] = 1997, - [2899] = 2646, - [2900] = 2624, - [2901] = 2463, - [2902] = 2685, - [2903] = 2653, - [2904] = 2563, - [2905] = 2564, - [2906] = 2661, - [2907] = 2655, - [2908] = 2667, - [2909] = 2668, - [2910] = 2673, - [2911] = 2682, - [2912] = 2708, - [2913] = 2709, - [2914] = 2683, - [2915] = 2684, - [2916] = 2659, - [2917] = 2566, - [2918] = 2475, - [2919] = 2568, - [2920] = 2700, - [2921] = 2418, - [2922] = 2712, - [2923] = 2662, - [2924] = 2663, - [2925] = 2419, - [2926] = 2420, - [2927] = 2426, - [2928] = 2427, - [2929] = 2710, - [2930] = 1995, - [2931] = 2733, - [2932] = 2569, - [2933] = 2393, - [2934] = 2421, - [2935] = 2571, - [2936] = 2572, - [2937] = 2573, - [2938] = 2575, - [2939] = 2664, - [2940] = 2675, - [2941] = 2576, - [2942] = 2577, - [2943] = 2578, - [2944] = 2579, - [2945] = 2580, - [2946] = 2702, - [2947] = 2027, - [2948] = 2047, - [2949] = 1994, - [2950] = 2014, - [2951] = 2736, - [2952] = 1999, - [2953] = 2001, - [2954] = 2542, - [2955] = 2543, - [2956] = 2544, - [2957] = 2545, - [2958] = 2737, - [2959] = 2738, - [2960] = 2742, - [2961] = 2330, - [2962] = 2636, - [2963] = 2014, - [2964] = 2703, - [2965] = 2546, - [2966] = 2016, - [2967] = 2018, - [2968] = 2711, - [2969] = 2969, - [2970] = 2480, - [2971] = 2637, - [2972] = 2016, - [2973] = 2625, - [2974] = 1998, - [2975] = 1996, - [2976] = 2976, - [2977] = 2977, - [2978] = 2978, - [2979] = 2704, - [2980] = 2980, - [2981] = 2017, - [2982] = 2351, - [2983] = 2007, - [2984] = 2005, - [2985] = 2006, - [2986] = 2015, - [2987] = 2008, - [2988] = 2003, - [2989] = 2009, - [2990] = 2011, - [2991] = 1998, - [2992] = 1996, - [2993] = 2012, - [2994] = 2013, - [2995] = 2020, - [2996] = 2021, - [2997] = 2004, - [2998] = 2706, - [2999] = 2626, + [2752] = 2011, + [2753] = 2028, + [2754] = 2754, + [2755] = 2755, + [2756] = 2756, + [2757] = 2757, + [2758] = 2038, + [2759] = 2021, + [2760] = 2760, + [2761] = 2761, + [2762] = 2762, + [2763] = 2763, + [2764] = 2764, + [2765] = 2040, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, + [2769] = 2769, + [2770] = 2770, + [2771] = 2771, + [2772] = 2772, + [2773] = 2020, + [2774] = 2021, + [2775] = 2024, + [2776] = 2037, + [2777] = 2044, + [2778] = 2026, + [2779] = 2014, + [2780] = 2041, + [2781] = 2504, + [2782] = 2572, + [2783] = 2483, + [2784] = 2454, + [2785] = 2582, + [2786] = 2018, + [2787] = 2548, + [2788] = 2576, + [2789] = 2038, + [2790] = 2570, + [2791] = 2571, + [2792] = 2522, + [2793] = 2539, + [2794] = 2523, + [2795] = 2024, + [2796] = 2412, + [2797] = 1981, + [2798] = 2044, + [2799] = 2025, + [2800] = 2081, + [2801] = 2016, + [2802] = 2024, + [2803] = 2019, + [2804] = 2026, + [2805] = 2018, + [2806] = 2550, + [2807] = 2497, + [2808] = 2039, + [2809] = 2040, + [2810] = 2479, + [2811] = 2043, + [2812] = 2028, + [2813] = 2551, + [2814] = 2552, + [2815] = 2815, + [2816] = 2055, + [2817] = 2562, + [2818] = 2481, + [2819] = 2396, + [2820] = 2042, + [2821] = 2029, + [2822] = 2030, + [2823] = 2031, + [2824] = 2032, + [2825] = 2033, + [2826] = 2530, + [2827] = 2019, + [2828] = 2553, + [2829] = 2014, + [2830] = 2554, + [2831] = 2486, + [2832] = 2556, + [2833] = 2020, + [2834] = 2021, + [2835] = 2022, + [2836] = 2023, + [2837] = 2037, + [2838] = 2020, + [2839] = 2021, + [2840] = 2565, + [2841] = 2527, + [2842] = 2023, + [2843] = 2399, + [2844] = 2516, + [2845] = 2034, + [2846] = 2561, + [2847] = 2027, + [2848] = 2538, + [2849] = 2520, + [2850] = 2495, + [2851] = 2481, + [2852] = 2567, + [2853] = 2035, + [2854] = 2496, + [2855] = 2504, + [2856] = 2401, + [2857] = 2555, + [2858] = 2545, + [2859] = 2536, + [2860] = 2487, + [2861] = 2511, + [2862] = 2020, + [2863] = 2498, + [2864] = 2503, + [2865] = 2493, + [2866] = 2021, + [2867] = 2566, + [2868] = 2518, + [2869] = 2022, + [2870] = 2023, + [2871] = 2563, + [2872] = 1980, + [2873] = 2568, + [2874] = 2564, + [2875] = 2015, + [2876] = 2012, + [2877] = 2399, + [2878] = 2490, + [2879] = 2024, + [2880] = 2018, + [2881] = 2491, + [2882] = 2569, + [2883] = 2559, + [2884] = 2537, + [2885] = 2011, + [2886] = 2488, + [2887] = 2013, + [2888] = 2036, + [2889] = 2573, + [2890] = 2586, + [2891] = 2025, + [2892] = 2016, + [2893] = 2494, + [2894] = 2508, + [2895] = 2544, + [2896] = 2512, + [2897] = 2514, + [2898] = 2017, + [2899] = 2022, + [2900] = 2900, + [2901] = 2596, + [2902] = 2453, + [2903] = 2680, + [2904] = 2042, + [2905] = 2621, + [2906] = 2693, + [2907] = 2429, + [2908] = 2420, + [2909] = 2622, + [2910] = 2351, + [2911] = 2623, + [2912] = 2624, + [2913] = 2358, + [2914] = 2028, + [2915] = 2625, + [2916] = 2626, + [2917] = 2452, + [2918] = 2029, + [2919] = 2453, + [2920] = 2627, + [2921] = 2030, + [2922] = 2642, + [2923] = 2038, + [2924] = 2651, + [2925] = 2739, + [2926] = 2628, + [2927] = 2927, + [2928] = 2034, + [2929] = 2547, + [2930] = 2742, + [2931] = 2044, + [2932] = 2026, + [2933] = 2677, + [2934] = 2035, + [2935] = 2039, + [2936] = 2040, + [2937] = 2041, + [2938] = 2028, + [2939] = 2660, + [2940] = 2031, + [2941] = 2042, + [2942] = 2029, + [2943] = 2031, + [2944] = 2647, + [2945] = 2649, + [2946] = 2669, + [2947] = 2670, + [2948] = 2032, + [2949] = 2033, + [2950] = 2643, + [2951] = 2682, + [2952] = 2952, + [2953] = 2683, + [2954] = 2041, + [2955] = 2598, + [2956] = 2671, + [2957] = 2043, + [2958] = 2729, + [2959] = 2030, + [2960] = 2708, + [2961] = 2032, + [2962] = 2592, + [2963] = 2629, + [2964] = 2600, + [2965] = 2033, + [2966] = 2508, + [2967] = 2601, + [2968] = 2043, + [2969] = 2668, + [2970] = 2593, + [2971] = 2712, + [2972] = 2485, + [2973] = 2700, + [2974] = 2726, + [2975] = 2673, + [2976] = 2727, + [2977] = 2020, + [2978] = 2591, + [2979] = 2731, + [2980] = 2654, + [2981] = 2631, + [2982] = 2620, + [2983] = 2728, + [2984] = 2743, + [2985] = 2632, + [2986] = 2633, + [2987] = 2044, + [2988] = 2026, + [2989] = 2505, + [2990] = 2130, + [2991] = 2351, + [2992] = 2421, + [2993] = 2020, + [2994] = 2021, + [2995] = 2021, + [2996] = 2996, + [2997] = 2022, + [2998] = 2744, + [2999] = 2023, [3000] = 3000, - [3001] = 2638, - [3002] = 2751, - [3003] = 2595, - [3004] = 1996, - [3005] = 2556, - [3006] = 2707, - [3007] = 2010, - [3008] = 2018, - [3009] = 2019, - [3010] = 3010, - [3011] = 2639, - [3012] = 2714, - [3013] = 2745, - [3014] = 2600, - [3015] = 2602, - [3016] = 3016, - [3017] = 2547, - [3018] = 2467, - [3019] = 3019, - [3020] = 2746, - [3021] = 2713, - [3022] = 3022, - [3023] = 2715, - [3024] = 3024, - [3025] = 3025, - [3026] = 2611, - [3027] = 3027, - [3028] = 2613, - [3029] = 2749, - [3030] = 2472, - [3031] = 3031, - [3032] = 2750, - [3033] = 2583, - [3034] = 2594, - [3035] = 2476, - [3036] = 2581, - [3037] = 2585, - [3038] = 2586, - [3039] = 2588, - [3040] = 2589, - [3041] = 2590, - [3042] = 1997, - [3043] = 1995, - [3044] = 2591, - [3045] = 1999, - [3046] = 2478, - [3047] = 2001, - [3048] = 2642, - [3049] = 2614, - [3050] = 2716, - [3051] = 2593, - [3052] = 2656, - [3053] = 2596, - [3054] = 2597, - [3055] = 2598, - [3056] = 2615, - [3057] = 2617, - [3058] = 2618, - [3059] = 2649, - [3060] = 2650, - [3061] = 2530, - [3062] = 2744, - [3063] = 1997, - [3064] = 1995, - [3065] = 2587, - [3066] = 1999, - [3067] = 2001, - [3068] = 2007, - [3069] = 2532, - [3070] = 2549, - [3071] = 3071, - [3072] = 2719, - [3073] = 2493, - [3074] = 2658, - [3075] = 2735, - [3076] = 2015, - [3077] = 2622, - [3078] = 2330, - [3079] = 2393, - [3080] = 2421, - [3081] = 2599, - [3082] = 2720, - [3083] = 2691, - [3084] = 2692, - [3085] = 2693, - [3086] = 2694, - [3087] = 2695, - [3088] = 2696, - [3089] = 2657, - [3090] = 2697, - [3091] = 2698, - [3092] = 2601, - [3093] = 2550, - [3094] = 2551, - [3095] = 2627, - [3096] = 2718, - [3097] = 2721, - [3098] = 2620, - [3099] = 2552, - [3100] = 2553, - [3101] = 2727, - [3102] = 2728, - [3103] = 2743, - [3104] = 2748, - [3105] = 2752, - [3106] = 2753, - [3107] = 2531, - [3108] = 2533, - [3109] = 2534, - [3110] = 2535, - [3111] = 2536, - [3112] = 2537, - [3113] = 2538, - [3114] = 2554, - [3115] = 2605, - [3116] = 2606, - [3117] = 2607, - [3118] = 2729, - [3119] = 2002, - [3120] = 1993, - [3121] = 2732, - [3122] = 2734, - [3123] = 2582, - [3124] = 1998, - [3125] = 2000, - [3126] = 2610, - [3127] = 2730, - [3128] = 2731, - [3129] = 2612, - [3130] = 2592, - [3131] = 1998, - [3132] = 3132, - [3133] = 2419, - [3134] = 2487, - [3135] = 2420, - [3136] = 2482, - [3137] = 2484, - [3138] = 2426, - [3139] = 2427, - [3140] = 2469, - [3141] = 2482, - [3142] = 2484, - [3143] = 2512, - [3144] = 2513, - [3145] = 2514, - [3146] = 2489, - [3147] = 2533, - [3148] = 2421, - [3149] = 2534, - [3150] = 1957, - [3151] = 2015, - [3152] = 2478, - [3153] = 2688, - [3154] = 2359, - [3155] = 2019, - [3156] = 2535, - [3157] = 2020, - [3158] = 2359, - [3159] = 2419, - [3160] = 2420, - [3161] = 2426, - [3162] = 2427, - [3163] = 2021, - [3164] = 2480, - [3165] = 2752, - [3166] = 3166, - [3167] = 2485, - [3168] = 2482, - [3169] = 2484, - [3170] = 2461, - [3171] = 2047, - [3172] = 2512, - [3173] = 2472, - [3174] = 2371, - [3175] = 2473, - [3176] = 2513, - [3177] = 2753, - [3178] = 2007, - [3179] = 2717, - [3180] = 2474, - [3181] = 2718, - [3182] = 2371, - [3183] = 3183, - [3184] = 2514, - [3185] = 2489, - [3186] = 2491, - [3187] = 2475, - [3188] = 2627, - [3189] = 2536, - [3190] = 2494, - [3191] = 2525, - [3192] = 2053, - [3193] = 2486, - [3194] = 3194, - [3195] = 2537, - [3196] = 2721, - [3197] = 2418, - [3198] = 2538, - [3199] = 2492, - [3200] = 1958, - [3201] = 2027, - [3202] = 2516, - [3203] = 2109, - [3204] = 2490, - [3205] = 2743, - [3206] = 2418, - [3207] = 2456, - [3208] = 2012, - [3209] = 1996, - [3210] = 2016, - [3211] = 2651, - [3212] = 2013, - [3213] = 2372, - [3214] = 2493, - [3215] = 2027, - [3216] = 2372, - [3217] = 2463, - [3218] = 2531, - [3219] = 3219, - [3220] = 2002, - [3221] = 2521, - [3222] = 1997, - [3223] = 1995, - [3224] = 2560, - [3225] = 2701, - [3226] = 2393, - [3227] = 2421, - [3228] = 1993, - [3229] = 1999, - [3230] = 2018, - [3231] = 2001, - [3232] = 2359, - [3233] = 2027, - [3234] = 2004, - [3235] = 2489, - [3236] = 1998, - [3237] = 1997, - [3238] = 1995, - [3239] = 1999, - [3240] = 2001, - [3241] = 2000, - [3242] = 2465, - [3243] = 2657, - [3244] = 2017, - [3245] = 2102, - [3246] = 2582, - [3247] = 2488, - [3248] = 2014, - [3249] = 2476, - [3250] = 1996, - [3251] = 2466, - [3252] = 2467, - [3253] = 2005, - [3254] = 2006, - [3255] = 2612, - [3256] = 2393, - [3257] = 2371, - [3258] = 2528, - [3259] = 2512, - [3260] = 2513, - [3261] = 2495, - [3262] = 2483, - [3263] = 2514, - [3264] = 2008, - [3265] = 2003, - [3266] = 2009, - [3267] = 2748, - [3268] = 2010, - [3269] = 2011, - [3270] = 2372, - [3271] = 2012, - [3272] = 2569, - [3273] = 2571, - [3274] = 2572, - [3275] = 2573, - [3276] = 2575, - [3277] = 2576, - [3278] = 2577, + [3001] = 2358, + [3002] = 2544, + [3003] = 3003, + [3004] = 2025, + [3005] = 2703, + [3006] = 2704, + [3007] = 2494, + [3008] = 3008, + [3009] = 2459, + [3010] = 2650, + [3011] = 2706, + [3012] = 2694, + [3013] = 2016, + [3014] = 2602, + [3015] = 2713, + [3016] = 2536, + [3017] = 2685, + [3018] = 2036, + [3019] = 2634, + [3020] = 2770, + [3021] = 2686, + [3022] = 2687, + [3023] = 2603, + [3024] = 2636, + [3025] = 2020, + [3026] = 2021, + [3027] = 2648, + [3028] = 2022, + [3029] = 2023, + [3030] = 2036, + [3031] = 2024, + [3032] = 2637, + [3033] = 2638, + [3034] = 2756, + [3035] = 2666, + [3036] = 2645, + [3037] = 2019, + [3038] = 2652, + [3039] = 2646, + [3040] = 2655, + [3041] = 2129, + [3042] = 2688, + [3043] = 2709, + [3044] = 2604, + [3045] = 2690, + [3046] = 2037, + [3047] = 2760, + [3048] = 2751, + [3049] = 2022, + [3050] = 3050, + [3051] = 3051, + [3052] = 2763, + [3053] = 2764, + [3054] = 2755, + [3055] = 2023, + [3056] = 2605, + [3057] = 2766, + [3058] = 2767, + [3059] = 2747, + [3060] = 2594, + [3061] = 2595, + [3062] = 2599, + [3063] = 2732, + [3064] = 2768, + [3065] = 2769, + [3066] = 2748, + [3067] = 3067, + [3068] = 2606, + [3069] = 2608, + [3070] = 2609, + [3071] = 2607, + [3072] = 2479, + [3073] = 2733, + [3074] = 2610, + [3075] = 2611, + [3076] = 2612, + [3077] = 2613, + [3078] = 2614, + [3079] = 2616, + [3080] = 2617, + [3081] = 2618, + [3082] = 2619, + [3083] = 2771, + [3084] = 2689, + [3085] = 2657, + [3086] = 2692, + [3087] = 2749, + [3088] = 2497, + [3089] = 2754, + [3090] = 2018, + [3091] = 2735, + [3092] = 2730, + [3093] = 2746, + [3094] = 2722, + [3095] = 2699, + [3096] = 3096, + [3097] = 2710, + [3098] = 2659, + [3099] = 2714, + [3100] = 2351, + [3101] = 3101, + [3102] = 2358, + [3103] = 2661, + [3104] = 2711, + [3105] = 3105, + [3106] = 2750, + [3107] = 2454, + [3108] = 2663, + [3109] = 2702, + [3110] = 2551, + [3111] = 2027, + [3112] = 3112, + [3113] = 2662, + [3114] = 2035, + [3115] = 2429, + [3116] = 2420, + [3117] = 2762, + [3118] = 2452, + [3119] = 2715, + [3120] = 2545, + [3121] = 2399, + [3122] = 2678, + [3123] = 2641, + [3124] = 2459, + [3125] = 2037, + [3126] = 2721, + [3127] = 2024, + [3128] = 2018, + [3129] = 2705, + [3130] = 2055, + [3131] = 2740, + [3132] = 2024, + [3133] = 2018, + [3134] = 2027, + [3135] = 2679, + [3136] = 2697, + [3137] = 2421, + [3138] = 2736, + [3139] = 2070, + [3140] = 2017, + [3141] = 2034, + [3142] = 3142, + [3143] = 3143, + [3144] = 2399, + [3145] = 2644, + [3146] = 2707, + [3147] = 2039, + [3148] = 2038, + [3149] = 2741, + [3150] = 2772, + [3151] = 2720, + [3152] = 2738, + [3153] = 2737, + [3154] = 2757, + [3155] = 2040, + [3156] = 2524, + [3157] = 2745, + [3158] = 2761, + [3159] = 2516, + [3160] = 2130, + [3161] = 2041, + [3162] = 2505, + [3163] = 2503, + [3164] = 2571, + [3165] = 2490, + [3166] = 2562, + [3167] = 2491, + [3168] = 2520, + [3169] = 2504, + [3170] = 2027, + [3171] = 2412, + [3172] = 2029, + [3173] = 2033, + [3174] = 2038, + [3175] = 2429, + [3176] = 2420, + [3177] = 2055, + [3178] = 2024, + [3179] = 2019, + [3180] = 2034, + [3181] = 2545, + [3182] = 2508, + [3183] = 2617, + [3184] = 2550, + [3185] = 2647, + [3186] = 2496, + [3187] = 2485, + [3188] = 2020, + [3189] = 3189, + [3190] = 3190, + [3191] = 2021, + [3192] = 2452, + [3193] = 3193, + [3194] = 2453, + [3195] = 2515, + [3196] = 2036, + [3197] = 2022, + [3198] = 2479, + [3199] = 2566, + [3200] = 2043, + [3201] = 2511, + [3202] = 2028, + [3203] = 2569, + [3204] = 2480, + [3205] = 2482, + [3206] = 2501, + [3207] = 2502, + [3208] = 2506, + [3209] = 2515, + [3210] = 2037, + [3211] = 2548, + [3212] = 2023, + [3213] = 2572, + [3214] = 2552, + [3215] = 2576, + [3216] = 2573, + [3217] = 2518, + [3218] = 2522, + [3219] = 2567, + [3220] = 3220, + [3221] = 2523, + [3222] = 2025, + [3223] = 2483, + [3224] = 2421, + [3225] = 2501, + [3226] = 2502, + [3227] = 2055, + [3228] = 2399, + [3229] = 2618, + [3230] = 2539, + [3231] = 2527, + [3232] = 2506, + [3233] = 2016, + [3234] = 2486, + [3235] = 2494, + [3236] = 2020, + [3237] = 2412, + [3238] = 2021, + [3239] = 2495, + [3240] = 2555, + [3241] = 2559, + [3242] = 2481, + [3243] = 2022, + [3244] = 2692, + [3245] = 2755, + [3246] = 2608, + [3247] = 2568, + [3248] = 2023, + [3249] = 2609, + [3250] = 2421, + [3251] = 2570, + [3252] = 2586, + [3253] = 2536, + [3254] = 2530, + [3255] = 2599, + [3256] = 2459, + [3257] = 2669, + [3258] = 2429, + [3259] = 2699, + [3260] = 2610, + [3261] = 2480, + [3262] = 2482, + [3263] = 2501, + [3264] = 2502, + [3265] = 1981, + [3266] = 2506, + [3267] = 2515, + [3268] = 2420, + [3269] = 2129, + [3270] = 2488, + [3271] = 2024, + [3272] = 2018, + [3273] = 2399, + [3274] = 2452, + [3275] = 2564, + [3276] = 2649, + [3277] = 2561, + [3278] = 1980, [3279] = 2611, - [3280] = 2578, - [3281] = 2579, - [3282] = 2692, - [3283] = 2419, - [3284] = 2693, - [3285] = 2694, - [3286] = 2620, - [3287] = 2695, - [3288] = 2696, - [3289] = 2420, - [3290] = 2640, - [3291] = 2426, - [3292] = 2427, - [3293] = 2643, - [3294] = 2645, - [3295] = 2486, - [3296] = 2697, - [3297] = 2698, - [3298] = 2580, - [3299] = 2714, - [3300] = 2582, - [3301] = 2647, - [3302] = 2716, - [3303] = 2744, - [3304] = 1989, - [3305] = 2583, - [3306] = 2655, - [3307] = 2585, - [3308] = 1991, - [3309] = 2586, - [3310] = 2588, - [3311] = 2657, - [3312] = 2659, - [3313] = 2738, - [3314] = 2742, - [3315] = 2662, - [3316] = 2663, - [3317] = 2516, - [3318] = 2664, - [3319] = 2675, - [3320] = 2746, - [3321] = 2109, - [3322] = 2702, - [3323] = 2521, - [3324] = 2589, - [3325] = 2528, - [3326] = 2590, - [3327] = 2703, - [3328] = 2495, - [3329] = 2704, - [3330] = 2421, - [3331] = 2719, - [3332] = 2706, - [3333] = 2483, - [3334] = 2591, - [3335] = 2707, - [3336] = 2708, - [3337] = 2713, - [3338] = 2709, - [3339] = 2715, - [3340] = 2649, - [3341] = 2593, - [3342] = 2710, - [3343] = 2650, - [3344] = 2711, - [3345] = 2419, - [3346] = 2596, - [3347] = 2597, - [3348] = 2598, - [3349] = 2599, - [3350] = 2601, - [3351] = 2658, - [3352] = 2556, - [3353] = 2532, - [3354] = 2667, - [3355] = 2668, - [3356] = 2605, - [3357] = 2007, - [3358] = 2606, - [3359] = 2607, - [3360] = 2673, - [3361] = 2717, - [3362] = 2718, - [3363] = 2720, - [3364] = 2721, - [3365] = 2587, - [3366] = 2015, - [3367] = 2682, - [3368] = 2610, - [3369] = 2727, - [3370] = 2594, - [3371] = 2581, - [3372] = 2683, - [3373] = 2728, - [3374] = 2461, - [3375] = 2730, - [3376] = 2027, - [3377] = 2612, - [3378] = 2613, - [3379] = 2614, - [3380] = 2684, - [3381] = 2463, - [3382] = 2465, - [3383] = 2109, - [3384] = 2595, - [3385] = 2102, - [3386] = 2615, - [3387] = 2466, - [3388] = 2617, - [3389] = 2467, - [3390] = 1997, - [3391] = 1995, - [3392] = 2330, - [3393] = 1999, - [3394] = 2102, - [3395] = 2001, - [3396] = 2618, - [3397] = 2351, - [3398] = 2530, - [3399] = 2731, - [3400] = 2622, - [3401] = 2735, - [3402] = 2739, - [3403] = 2740, - [3404] = 2624, - [3405] = 2625, - [3406] = 2741, - [3407] = 2651, - [3408] = 2473, - [3409] = 2626, - [3410] = 2627, - [3411] = 2474, - [3412] = 2743, - [3413] = 2628, - [3414] = 2629, - [3415] = 2630, - [3416] = 2631, - [3417] = 2748, - [3418] = 2633, - [3419] = 2634, - [3420] = 2476, - [3421] = 2478, - [3422] = 2635, - [3423] = 2636, - [3424] = 2637, - [3425] = 2752, - [3426] = 2753, - [3427] = 2638, - [3428] = 2639, - [3429] = 2420, - [3430] = 2393, - [3431] = 2642, - [3432] = 2656, - [3433] = 2688, - [3434] = 2531, - [3435] = 2653, - [3436] = 2661, - [3437] = 2533, - [3438] = 2053, - [3439] = 2017, - [3440] = 2701, - [3441] = 2047, - [3442] = 2534, - [3443] = 2421, - [3444] = 2535, - [3445] = 2536, - [3446] = 2537, - [3447] = 2538, - [3448] = 2426, - [3449] = 2539, - [3450] = 2005, + [3280] = 2538, + [3281] = 2670, + [3282] = 2612, + [3283] = 2044, + [3284] = 2026, + [3285] = 3285, + [3286] = 2553, + [3287] = 2081, + [3288] = 2453, + [3289] = 2055, + [3290] = 2487, + [3291] = 2396, + [3292] = 2480, + [3293] = 2482, + [3294] = 2401, + [3295] = 2537, + [3296] = 2735, + [3297] = 2554, + [3298] = 2582, + [3299] = 2547, + [3300] = 2042, + [3301] = 2493, + [3302] = 2563, + [3303] = 2396, + [3304] = 2396, + [3305] = 2746, + [3306] = 2459, + [3307] = 2030, + [3308] = 2616, + [3309] = 2035, + [3310] = 2613, + [3311] = 2031, + [3312] = 2565, + [3313] = 2412, + [3314] = 2497, + [3315] = 2039, + [3316] = 2544, + [3317] = 2551, + [3318] = 2512, + [3319] = 2524, + [3320] = 2040, + [3321] = 2514, + [3322] = 2401, + [3323] = 2594, + [3324] = 2401, + [3325] = 2556, + [3326] = 2032, + [3327] = 2498, + [3328] = 2619, + [3329] = 2595, + [3330] = 2614, + [3331] = 2070, + [3332] = 2018, + [3333] = 2748, + [3334] = 2629, + [3335] = 2663, + [3336] = 2642, + [3337] = 2651, + [3338] = 2631, + [3339] = 2742, + [3340] = 2730, + [3341] = 2744, + [3342] = 2130, + [3343] = 2632, + [3344] = 2754, + [3345] = 2693, + [3346] = 2633, + [3347] = 2755, + [3348] = 2454, + [3349] = 2634, + [3350] = 2013, + [3351] = 2756, + [3352] = 2591, + [3353] = 2636, + [3354] = 2666, + [3355] = 2592, + [3356] = 2566, + [3357] = 2637, + [3358] = 2638, + [3359] = 2760, + [3360] = 2569, + [3361] = 2641, + [3362] = 2761, + [3363] = 2645, + [3364] = 2572, + [3365] = 2030, + [3366] = 2031, + [3367] = 2593, + [3368] = 2032, + [3369] = 2033, + [3370] = 2763, + [3371] = 2764, + [3372] = 2762, + [3373] = 2039, + [3374] = 2488, + [3375] = 2766, + [3376] = 2014, + [3377] = 2671, + [3378] = 2070, + [3379] = 2570, + [3380] = 2547, + [3381] = 2561, + [3382] = 2702, + [3383] = 2673, + [3384] = 2705, + [3385] = 2707, + [3386] = 2649, + [3387] = 2767, + [3388] = 2708, + [3389] = 2677, + [3390] = 2678, + [3391] = 2679, + [3392] = 2680, + [3393] = 2682, + [3394] = 2683, + [3395] = 2685, + [3396] = 2768, + [3397] = 2712, + [3398] = 2686, + [3399] = 2713, + [3400] = 2687, + [3401] = 2688, + [3402] = 2690, + [3403] = 2421, + [3404] = 2454, + [3405] = 2769, + [3406] = 2494, + [3407] = 2714, + [3408] = 2715, + [3409] = 2576, + [3410] = 2034, + [3411] = 2562, + [3412] = 2495, + [3413] = 2129, + [3414] = 2563, + [3415] = 2692, + [3416] = 2568, + [3417] = 2490, + [3418] = 2351, + [3419] = 2551, + [3420] = 2771, + [3421] = 2040, + [3422] = 1980, + [3423] = 2491, + [3424] = 2620, + [3425] = 2358, + [3426] = 2652, + [3427] = 2496, + [3428] = 2655, + [3429] = 2700, + [3430] = 2559, + [3431] = 2757, + [3432] = 2703, + [3433] = 2497, + [3434] = 2704, + [3435] = 2498, + [3436] = 2706, + [3437] = 2035, + [3438] = 2709, + [3439] = 2538, + [3440] = 2429, + [3441] = 2420, + [3442] = 2452, + [3443] = 2453, + [3444] = 2710, + [3445] = 2711, + [3446] = 2038, + [3447] = 2720, + [3448] = 2657, + [3449] = 2459, + [3450] = 2041, [3451] = 2729, - [3452] = 2732, - [3453] = 2487, - [3454] = 2006, - [3455] = 2540, - [3456] = 2541, - [3457] = 2542, - [3458] = 2014, - [3459] = 2734, - [3460] = 2008, - [3461] = 2003, - [3462] = 2009, - [3463] = 2010, - [3464] = 2543, - [3465] = 2011, - [3466] = 2544, - [3467] = 2545, - [3468] = 2546, - [3469] = 2749, - [3470] = 2547, - [3471] = 2013, - [3472] = 2019, - [3473] = 2020, - [3474] = 2733, - [3475] = 2021, - [3476] = 2004, - [3477] = 2736, - [3478] = 2737, - [3479] = 2549, - [3480] = 2550, - [3481] = 2551, - [3482] = 1958, - [3483] = 2016, - [3484] = 2552, - [3485] = 2553, - [3486] = 2330, - [3487] = 2554, - [3488] = 2750, - [3489] = 2751, - [3490] = 2490, - [3491] = 2555, - [3492] = 2427, - [3493] = 2557, - [3494] = 2558, - [3495] = 2351, - [3496] = 2018, - [3497] = 2559, - [3498] = 2700, - [3499] = 2646, - [3500] = 1990, - [3501] = 2560, - [3502] = 2712, - [3503] = 1957, - [3504] = 2393, - [3505] = 2047, - [3506] = 2561, - [3507] = 1988, - [3508] = 2418, - [3509] = 1998, - [3510] = 2562, - [3511] = 2685, - [3512] = 1996, - [3513] = 2745, - [3514] = 2563, - [3515] = 2418, - [3516] = 2654, - [3517] = 1992, - [3518] = 2564, - [3519] = 2592, - [3520] = 2691, - [3521] = 2566, - [3522] = 2600, - [3523] = 2568, - [3524] = 2602, - [3525] = 2472, - [3526] = 2514, - [3527] = 2480, - [3528] = 2486, - [3529] = 2516, - [3530] = 2521, - [3531] = 2528, - [3532] = 2495, - [3533] = 2483, - [3534] = 2456, - [3535] = 2738, - [3536] = 2742, - [3537] = 2525, - [3538] = 2461, - [3539] = 2463, - [3540] = 2465, - [3541] = 2466, - [3542] = 2467, - [3543] = 2053, - [3544] = 1994, - [3545] = 2359, - [3546] = 2472, - [3547] = 2473, - [3548] = 2474, - [3549] = 2475, - [3550] = 2476, - [3551] = 2478, - [3552] = 2745, - [3553] = 2746, - [3554] = 2487, - [3555] = 2485, - [3556] = 2490, - [3557] = 2516, - [3558] = 2521, - [3559] = 2528, - [3560] = 2495, - [3561] = 2483, - [3562] = 2456, - [3563] = 2482, - [3564] = 2484, - [3565] = 2469, - [3566] = 2493, - [3567] = 2461, - [3568] = 2465, - [3569] = 2466, - [3570] = 2469, - [3571] = 2525, - [3572] = 2512, - [3573] = 2513, - [3574] = 2102, - [3575] = 2514, - [3576] = 1958, - [3577] = 2474, - [3578] = 2488, - [3579] = 2491, - [3580] = 2492, - [3581] = 2489, - [3582] = 2494, - [3583] = 1957, - [3584] = 2053, - [3585] = 2587, - [3586] = 2594, - [3587] = 2581, - [3588] = 2595, - [3589] = 2480, - [3590] = 2372, - [3591] = 2642, - [3592] = 2656, - [3593] = 2688, - [3594] = 2487, - [3595] = 2729, - [3596] = 1958, - [3597] = 2732, - [3598] = 2027, - [3599] = 2734, - [3600] = 2749, - [3601] = 2750, - [3602] = 2751, - [3603] = 1992, - [3604] = 1990, - [3605] = 1988, - [3606] = 1989, - [3607] = 1991, - [3608] = 2654, - [3609] = 2651, - [3610] = 2560, - [3611] = 2027, - [3612] = 2456, - [3613] = 2556, - [3614] = 2653, - [3615] = 2661, - [3616] = 2700, - [3617] = 2712, - [3618] = 2714, - [3619] = 2716, - [3620] = 2744, - [3621] = 2532, - [3622] = 2592, - [3623] = 2600, - [3624] = 2602, - [3625] = 2611, - [3626] = 2620, - [3627] = 2640, - [3628] = 2643, - [3629] = 2645, - [3630] = 2647, - [3631] = 2655, - [3632] = 2659, - [3633] = 2490, - [3634] = 2662, - [3635] = 2663, - [3636] = 2664, - [3637] = 2675, - [3638] = 2702, - [3639] = 2703, - [3640] = 2704, - [3641] = 2706, - [3642] = 2707, - [3643] = 2713, - [3644] = 2715, - [3645] = 2469, - [3646] = 2720, - [3647] = 2727, - [3648] = 2728, - [3649] = 2730, - [3650] = 2731, - [3651] = 2735, - [3652] = 2739, - [3653] = 2740, - [3654] = 2741, - [3655] = 2539, - [3656] = 2540, - [3657] = 2541, - [3658] = 2542, - [3659] = 2543, - [3660] = 2544, - [3661] = 2545, - [3662] = 2546, - [3663] = 2547, - [3664] = 2549, - [3665] = 2550, - [3666] = 2551, - [3667] = 2552, - [3668] = 2553, - [3669] = 2554, - [3670] = 2555, - [3671] = 2557, - [3672] = 2558, - [3673] = 2559, - [3674] = 2561, - [3675] = 2562, - [3676] = 2563, - [3677] = 2564, - [3678] = 2566, - [3679] = 2475, - [3680] = 2568, - [3681] = 2569, - [3682] = 2525, - [3683] = 2572, - [3684] = 2573, - [3685] = 2575, - [3686] = 2576, - [3687] = 2577, - [3688] = 2578, - [3689] = 2579, - [3690] = 2580, - [3691] = 2372, - [3692] = 2583, - [3693] = 2585, - [3694] = 2586, - [3695] = 2588, - [3696] = 2589, - [3697] = 2590, - [3698] = 2591, - [3699] = 2786, - [3700] = 2593, - [3701] = 2596, - [3702] = 2597, - [3703] = 2598, - [3704] = 2599, - [3705] = 2601, - [3706] = 2605, - [3707] = 2606, - [3708] = 2607, - [3709] = 2610, - [3710] = 2613, - [3711] = 2614, - [3712] = 2615, - [3713] = 2617, - [3714] = 2618, - [3715] = 2530, - [3716] = 2622, - [3717] = 2624, - [3718] = 2625, - [3719] = 2626, - [3720] = 2628, - [3721] = 2629, - [3722] = 2630, - [3723] = 2631, - [3724] = 2633, - [3725] = 2634, - [3726] = 2635, - [3727] = 2482, - [3728] = 2484, - [3729] = 2636, - [3730] = 2637, - [3731] = 2638, - [3732] = 2512, - [3733] = 2513, - [3734] = 2639, - [3735] = 2514, - [3736] = 2489, - [3737] = 2456, - [3738] = 2482, - [3739] = 2484, - [3740] = 2469, - [3741] = 2512, - [3742] = 2513, - [3743] = 2514, - [3744] = 2489, - [3745] = 2488, - [3746] = 2512, - [3747] = 2513, - [3748] = 2514, - [3749] = 2485, - [3750] = 2047, - [3751] = 2491, - [3752] = 2492, - [3753] = 2719, - [3754] = 2494, - [3755] = 2486, - [3756] = 2485, - [3757] = 2488, - [3758] = 2646, - [3759] = 2491, - [3760] = 2492, - [3761] = 2493, - [3762] = 2658, - [3763] = 2494, - [3764] = 2667, - [3765] = 2668, - [3766] = 2673, - [3767] = 2682, - [3768] = 2683, - [3769] = 2684, - [3770] = 2691, - [3771] = 2692, - [3772] = 2693, - [3773] = 2694, - [3774] = 2695, - [3775] = 2696, - [3776] = 2697, - [3777] = 2698, - [3778] = 2708, - [3779] = 2709, - [3780] = 2710, - [3781] = 2711, - [3782] = 2371, - [3783] = 2109, - [3784] = 2467, - [3785] = 2473, - [3786] = 2478, - [3787] = 2489, - [3788] = 2480, - [3789] = 2463, - [3790] = 2472, - [3791] = 2475, - [3792] = 2476, - [3793] = 2493, - [3794] = 1957, - [3795] = 2359, - [3796] = 2733, - [3797] = 2027, - [3798] = 2482, - [3799] = 2484, - [3800] = 2371, - [3801] = 2482, - [3802] = 2484, - [3803] = 2512, - [3804] = 2513, - [3805] = 2489, - [3806] = 2571, - [3807] = 2647, - [3808] = 2692, - [3809] = 2693, - [3810] = 2694, - [3811] = 2695, - [3812] = 2696, - [3813] = 2697, - [3814] = 2698, - [3815] = 2592, - [3816] = 2612, - [3817] = 2600, - [3818] = 2602, - [3819] = 2611, - [3820] = 2620, - [3821] = 2708, - [3822] = 2709, - [3823] = 2710, - [3824] = 2711, - [3825] = 2627, - [3826] = 2640, - [3827] = 2643, - [3828] = 2645, - [3829] = 2647, - [3830] = 2463, - [3831] = 2655, - [3832] = 2659, - [3833] = 2662, - [3834] = 2663, - [3835] = 2664, - [3836] = 2675, - [3837] = 2653, - [3838] = 2702, - [3839] = 2703, - [3840] = 2704, - [3841] = 2706, - [3842] = 2646, - [3843] = 2707, - [3844] = 2467, - [3845] = 2713, - [3846] = 2715, - [3847] = 2661, - [3848] = 2002, - [3849] = 1993, - [3850] = 2733, - [3851] = 1998, - [3852] = 2000, - [3853] = 2738, - [3854] = 2742, - [3855] = 2700, - [3856] = 2465, - [3857] = 2712, - [3858] = 2714, - [3859] = 2720, - [3860] = 1996, - [3861] = 2745, - [3862] = 2716, - [3863] = 2744, - [3864] = 2746, - [3865] = 2727, - [3866] = 2728, - [3867] = 2730, - [3868] = 2731, - [3869] = 2735, - [3870] = 2739, - [3871] = 2740, - [3872] = 2741, - [3873] = 2532, - [3874] = 2490, - [3875] = 2539, - [3876] = 2540, - [3877] = 2541, - [3878] = 2542, - [3879] = 2543, - [3880] = 2544, - [3881] = 2545, - [3882] = 2546, - [3883] = 2547, - [3884] = 2472, - [3885] = 2549, - [3886] = 2550, - [3887] = 2551, - [3888] = 2552, - [3889] = 2553, - [3890] = 2554, - [3891] = 2555, - [3892] = 2473, - [3893] = 2557, - [3894] = 2558, - [3895] = 2559, - [3896] = 2595, - [3897] = 2561, - [3898] = 2562, - [3899] = 2563, - [3900] = 2564, - [3901] = 2642, - [3902] = 2592, - [3903] = 2566, - [3904] = 2475, - [3905] = 2568, - [3906] = 2569, - [3907] = 2600, - [3908] = 2571, - [3909] = 2572, - [3910] = 2573, - [3911] = 2575, - [3912] = 2576, - [3913] = 2577, - [3914] = 2578, - [3915] = 2579, - [3916] = 2580, - [3917] = 2583, - [3918] = 2476, - [3919] = 1992, - [3920] = 2585, - [3921] = 2586, - [3922] = 2588, - [3923] = 2602, - [3924] = 2589, - [3925] = 2590, - [3926] = 2591, - [3927] = 2478, - [3928] = 2047, - [3929] = 2593, - [3930] = 2466, - [3931] = 2596, - [3932] = 2597, - [3933] = 2598, - [3934] = 2599, - [3935] = 2601, - [3936] = 2605, - [3937] = 2606, - [3938] = 2607, - [3939] = 2610, - [3940] = 2613, - [3941] = 2614, - [3942] = 2615, - [3943] = 2617, - [3944] = 2618, - [3945] = 2530, - [3946] = 2622, - [3947] = 1997, - [3948] = 1995, - [3949] = 2624, - [3950] = 1999, - [3951] = 2001, - [3952] = 2625, - [3953] = 2611, - [3954] = 2626, - [3955] = 2628, - [3956] = 2629, - [3957] = 2630, - [3958] = 2631, - [3959] = 2633, - [3960] = 2634, - [3961] = 2635, - [3962] = 2636, - [3963] = 2637, - [3964] = 2638, - [3965] = 2639, - [3966] = 2620, - [3967] = 2640, - [3968] = 2643, - [3969] = 2645, - [3970] = 2656, - [3971] = 2655, - [3972] = 2659, - [3973] = 2688, - [3974] = 2701, - [3975] = 2662, - [3976] = 2663, - [3977] = 2664, - [3978] = 2675, - [3979] = 2701, - [3980] = 2702, - [3981] = 2703, - [3982] = 2704, - [3983] = 2706, - [3984] = 2707, - [3985] = 1994, - [3986] = 2713, - [3987] = 2715, - [3988] = 2729, - [3989] = 2461, - [3990] = 2732, - [3991] = 2467, - [3992] = 2720, - [3993] = 2727, - [3994] = 1957, - [3995] = 2728, - [3996] = 2730, - [3997] = 2731, - [3998] = 2735, - [3999] = 2739, - [4000] = 2740, - [4001] = 2741, - [4002] = 2539, - [4003] = 2540, - [4004] = 2541, - [4005] = 2542, - [4006] = 2543, - [4007] = 2544, - [4008] = 2545, - [4009] = 2546, - [4010] = 2547, - [4011] = 2734, - [4012] = 2657, - [4013] = 2736, - [4014] = 2737, - [4015] = 2549, - [4016] = 2550, - [4017] = 2551, - [4018] = 2552, - [4019] = 2553, - [4020] = 2554, - [4021] = 2555, - [4022] = 2745, - [4023] = 2557, - [4024] = 2558, - [4025] = 2559, - [4026] = 2717, - [4027] = 2718, - [4028] = 2719, - [4029] = 2721, - [4030] = 2749, - [4031] = 2561, - [4032] = 2562, - [4033] = 2685, - [4034] = 2743, - [4035] = 2748, - [4036] = 2752, - [4037] = 2753, - [4038] = 2531, - [4039] = 2533, - [4040] = 2534, - [4041] = 2535, - [4042] = 2536, - [4043] = 2537, - [4044] = 2538, - [4045] = 2563, - [4046] = 2564, - [4047] = 2566, - [4048] = 2750, - [4049] = 2568, - [4050] = 2569, - [4051] = 2571, - [4052] = 2572, - [4053] = 2573, - [4054] = 2575, - [4055] = 2576, - [4056] = 2577, - [4057] = 2578, - [4058] = 2579, - [4059] = 2580, - [4060] = 2583, - [4061] = 2751, - [4062] = 2585, - [4063] = 2586, - [4064] = 2588, - [4065] = 2589, - [4066] = 2590, - [4067] = 2591, - [4068] = 2746, - [4069] = 2593, - [4070] = 2587, - [4071] = 2596, - [4072] = 2597, - [4073] = 2599, - [4074] = 2601, - [4075] = 2605, - [4076] = 2606, - [4077] = 2607, - [4078] = 2582, - [4079] = 2610, - [4080] = 2613, - [4081] = 2614, - [4082] = 2615, - [4083] = 2617, - [4084] = 2618, - [4085] = 2530, - [4086] = 2622, - [4087] = 2624, - [4088] = 2625, - [4089] = 2626, - [4090] = 2628, - [4091] = 2629, - [4092] = 2630, - [4093] = 2631, - [4094] = 2633, - [4095] = 2634, - [4096] = 2635, - [4097] = 2612, - [4098] = 2636, - [4099] = 2637, - [4100] = 2638, - [4101] = 2639, - [4102] = 2594, - [4103] = 2654, - [4104] = 2651, - [4105] = 2627, - [4106] = 1989, - [4107] = 1991, - [4108] = 2587, - [4109] = 2560, - [4110] = 2594, - [4111] = 2649, - [4112] = 2650, - [4113] = 2581, - [4114] = 2719, - [4115] = 2595, - [4116] = 2480, - [4117] = 2463, - [4118] = 2642, - [4119] = 2656, - [4120] = 2486, + [3452] = 2036, + [3453] = 2745, + [3454] = 2503, + [3455] = 2751, + [3456] = 2556, + [3457] = 2659, + [3458] = 2661, + [3459] = 2662, + [3460] = 2550, + [3461] = 2596, + [3462] = 2552, + [3463] = 2594, + [3464] = 1981, + [3465] = 2595, + [3466] = 2567, + [3467] = 2598, + [3468] = 2599, + [3469] = 2539, + [3470] = 2487, + [3471] = 2731, + [3472] = 2668, + [3473] = 2733, + [3474] = 2735, + [3475] = 2736, + [3476] = 2130, + [3477] = 2628, + [3478] = 2669, + [3479] = 2697, + [3480] = 2555, + [3481] = 2670, + [3482] = 2043, + [3483] = 2055, + [3484] = 2527, + [3485] = 2738, + [3486] = 2520, + [3487] = 2553, + [3488] = 2044, + [3489] = 2600, + [3490] = 2721, + [3491] = 2485, + [3492] = 2601, + [3493] = 2554, + [3494] = 2740, + [3495] = 2741, + [3496] = 2726, + [3497] = 2743, + [3498] = 2602, + [3499] = 2026, + [3500] = 2129, + [3501] = 2660, + [3502] = 2603, + [3503] = 2454, + [3504] = 2746, + [3505] = 2747, + [3506] = 2459, + [3507] = 2604, + [3508] = 2011, + [3509] = 2749, + [3510] = 2020, + [3511] = 2021, + [3512] = 2605, + [3513] = 2022, + [3514] = 2750, + [3515] = 2037, + [3516] = 2524, + [3517] = 2772, + [3518] = 2644, + [3519] = 2024, + [3520] = 2018, + [3521] = 2606, + [3522] = 2023, + [3523] = 2607, + [3524] = 2028, + [3525] = 2646, + [3526] = 2608, + [3527] = 2643, + [3528] = 2609, + [3529] = 2610, + [3530] = 2573, + [3531] = 2611, + [3532] = 2612, + [3533] = 2654, + [3534] = 2727, + [3535] = 2647, + [3536] = 2613, + [3537] = 2508, + [3538] = 2351, + [3539] = 2479, + [3540] = 2511, + [3541] = 2358, + [3542] = 2614, + [3543] = 2722, + [3544] = 2015, + [3545] = 2012, + [3546] = 2616, + [3547] = 2483, + [3548] = 2617, + [3549] = 2699, + [3550] = 2518, + [3551] = 2421, + [3552] = 2522, + [3553] = 2523, + [3554] = 2618, + [3555] = 2650, + [3556] = 2537, + [3557] = 2728, + [3558] = 2619, + [3559] = 2571, + [3560] = 2586, + [3561] = 2544, + [3562] = 2689, + [3563] = 2694, + [3564] = 2429, + [3565] = 2420, + [3566] = 2452, + [3567] = 2453, + [3568] = 2564, + [3569] = 2621, + [3570] = 2486, + [3571] = 2732, + [3572] = 2070, + [3573] = 2770, + [3574] = 2042, + [3575] = 2029, + [3576] = 2622, + [3577] = 2516, + [3578] = 2648, + [3579] = 2737, + [3580] = 2739, + [3581] = 2565, + [3582] = 2623, + [3583] = 2624, + [3584] = 2625, + [3585] = 2626, + [3586] = 2627, + [3587] = 2027, + [3588] = 2505, + [3589] = 2081, + [3590] = 2768, + [3591] = 2495, + [3592] = 2496, + [3593] = 2497, + [3594] = 2498, + [3595] = 2715, + [3596] = 2697, + [3597] = 2081, + [3598] = 2503, + [3599] = 2480, + [3600] = 2482, + [3601] = 2017, + [3602] = 2480, + [3603] = 2482, + [3604] = 2501, + [3605] = 2502, + [3606] = 2506, + [3607] = 2515, + [3608] = 2412, + [3609] = 2508, + [3610] = 2479, + [3611] = 2511, + [3612] = 2481, + [3613] = 2480, + [3614] = 2482, + [3615] = 2504, + [3616] = 2501, + [3617] = 2502, + [3618] = 2506, + [3619] = 2515, + [3620] = 2721, + [3621] = 2518, + [3622] = 2522, + [3623] = 2523, + [3624] = 2726, + [3625] = 2727, + [3626] = 2728, + [3627] = 2732, + [3628] = 2737, + [3629] = 2739, + [3630] = 2742, + [3631] = 2744, + [3632] = 2754, + [3633] = 2756, + [3634] = 2586, + [3635] = 2129, + [3636] = 2536, + [3637] = 2501, + [3638] = 2502, + [3639] = 2506, + [3640] = 2544, + [3641] = 2396, + [3642] = 2551, + [3643] = 2567, + [3644] = 2760, + [3645] = 2761, + [3646] = 2763, + [3647] = 2764, + [3648] = 2766, + [3649] = 2562, + [3650] = 2767, + [3651] = 2769, + [3652] = 2771, + [3653] = 2504, + [3654] = 2515, + [3655] = 2573, + [3656] = 2454, + [3657] = 2598, + [3658] = 2483, + [3659] = 2600, + [3660] = 2601, + [3661] = 2602, + [3662] = 2486, + [3663] = 2516, + [3664] = 2603, + [3665] = 2604, + [3666] = 2561, + [3667] = 2538, + [3668] = 2487, + [3669] = 2565, + [3670] = 2605, + [3671] = 2606, + [3672] = 2607, + [3673] = 2520, + [3674] = 2530, + [3675] = 2621, + [3676] = 2622, + [3677] = 2623, + [3678] = 2624, + [3679] = 2625, + [3680] = 2626, + [3681] = 2627, + [3682] = 2628, + [3683] = 2629, + [3684] = 2511, + [3685] = 2631, + [3686] = 2632, + [3687] = 2633, + [3688] = 2634, + [3689] = 2636, + [3690] = 2637, + [3691] = 2567, + [3692] = 2638, + [3693] = 2641, + [3694] = 2645, + [3695] = 2569, + [3696] = 2518, + [3697] = 2522, + [3698] = 2671, + [3699] = 2673, + [3700] = 2523, + [3701] = 2572, + [3702] = 2576, + [3703] = 2536, + [3704] = 2677, + [3705] = 2678, + [3706] = 2679, + [3707] = 2680, + [3708] = 2682, + [3709] = 2683, + [3710] = 2685, + [3711] = 2686, + [3712] = 2687, + [3713] = 2688, + [3714] = 2690, + [3715] = 2700, + [3716] = 2703, + [3717] = 2704, + [3718] = 2706, + [3719] = 2709, + [3720] = 2710, + [3721] = 2711, + [3722] = 2720, + [3723] = 2488, + [3724] = 2729, + [3725] = 2731, + [3726] = 2733, + [3727] = 2736, + [3728] = 2515, + [3729] = 2586, + [3730] = 2738, + [3731] = 2504, + [3732] = 2740, + [3733] = 2741, + [3734] = 2530, + [3735] = 2743, + [3736] = 2747, + [3737] = 2748, + [3738] = 2749, + [3739] = 2750, + [3740] = 2772, + [3741] = 2570, + [3742] = 2571, + [3743] = 2539, + [3744] = 2527, + [3745] = 2564, + [3746] = 2643, + [3747] = 2654, + [3748] = 2650, + [3749] = 2694, + [3750] = 2770, + [3751] = 2648, + [3752] = 2563, + [3753] = 2568, + [3754] = 2490, + [3755] = 2491, + [3756] = 2559, + [3757] = 2537, + [3758] = 2494, + [3759] = 2666, + [3760] = 2550, + [3761] = 2552, + [3762] = 2553, + [3763] = 2554, + [3764] = 2481, + [3765] = 2493, + [3766] = 2562, + [3767] = 2495, + [3768] = 2524, + [3769] = 2547, + [3770] = 2548, + [3771] = 2130, + [3772] = 2070, + [3773] = 2512, + [3774] = 2514, + [3775] = 2485, + [3776] = 2596, + [3777] = 2505, + [3778] = 2496, + [3779] = 2573, + [3780] = 1980, + [3781] = 2582, + [3782] = 2570, + [3783] = 2571, + [3784] = 2539, + [3785] = 2527, + [3786] = 2564, + [3787] = 2483, + [3788] = 2498, + [3789] = 2497, + [3790] = 2479, + [3791] = 2551, + [3792] = 2486, + [3793] = 1981, + [3794] = 2563, + [3795] = 2493, + [3796] = 2568, + [3797] = 2490, + [3798] = 2512, + [3799] = 2514, + [3800] = 2491, + [3801] = 2559, + [3802] = 2537, + [3803] = 2516, + [3804] = 2582, + [3805] = 2556, + [3806] = 2561, + [3807] = 2412, + [3808] = 2550, + [3809] = 2552, + [3810] = 2553, + [3811] = 1981, + [3812] = 2554, + [3813] = 2538, + [3814] = 2487, + [3815] = 2055, + [3816] = 2565, + [3817] = 2591, + [3818] = 2592, + [3819] = 2593, + [3820] = 2503, + [3821] = 2504, + [3822] = 2620, + [3823] = 2545, + [3824] = 2396, + [3825] = 2081, + [3826] = 2401, + [3827] = 2555, + [3828] = 2548, + [3829] = 2480, + [3830] = 2482, + [3831] = 2566, + [3832] = 2644, + [3833] = 2660, + [3834] = 2548, + [3835] = 1980, + [3836] = 2055, + [3837] = 2646, + [3838] = 2647, + [3839] = 2014, + [3840] = 2015, + [3841] = 2012, + [3842] = 2011, + [3843] = 2013, + [3844] = 2055, + [3845] = 2530, + [3846] = 2493, + [3847] = 2722, + [3848] = 2545, + [3849] = 2494, + [3850] = 2508, + [3851] = 2536, + [3852] = 2544, + [3853] = 2520, + [3854] = 2652, + [3855] = 2655, + [3856] = 2657, + [3857] = 2501, + [3858] = 2659, + [3859] = 2661, + [3860] = 2662, + [3861] = 2502, + [3862] = 2668, + [3863] = 2545, + [3864] = 2669, + [3865] = 2512, + [3866] = 2670, + [3867] = 2555, + [3868] = 2514, + [3869] = 2556, + [3870] = 2566, + [3871] = 2569, + [3872] = 2572, + [3873] = 2576, + [3874] = 2506, + [3875] = 2693, + [3876] = 2481, + [3877] = 2481, + [3878] = 2689, + [3879] = 2582, + [3880] = 2401, + [3881] = 2815, + [3882] = 2757, + [3883] = 2702, + [3884] = 2705, + [3885] = 2707, + [3886] = 2708, + [3887] = 2712, + [3888] = 2488, + [3889] = 2713, + [3890] = 2663, + [3891] = 2714, + [3892] = 2480, + [3893] = 2482, + [3894] = 2501, + [3895] = 2502, + [3896] = 2506, + [3897] = 2515, + [3898] = 2730, + [3899] = 2764, + [3900] = 2772, + [3901] = 2595, + [3902] = 2596, + [3903] = 3096, + [3904] = 2601, + [3905] = 2602, + [3906] = 3101, + [3907] = 2599, + [3908] = 3105, + [3909] = 2643, + [3910] = 2633, + [3911] = 3112, + [3912] = 2603, + [3913] = 3143, + [3914] = 2604, + [3915] = 2952, + [3916] = 2605, + [3917] = 3142, + [3918] = 2654, + [3919] = 2606, + [3920] = 2544, + [3921] = 2551, + [3922] = 2562, + [3923] = 2650, + [3924] = 2694, + [3925] = 2607, + [3926] = 2770, + [3927] = 1994, + [3928] = 2648, + [3929] = 1992, + [3930] = 2621, + [3931] = 2622, + [3932] = 2730, + [3933] = 2996, + [3934] = 3000, + [3935] = 2623, + [3936] = 3003, + [3937] = 3008, + [3938] = 2900, + [3939] = 3050, + [3940] = 3051, + [3941] = 2573, + [3942] = 2483, + [3943] = 2666, + [3944] = 2624, + [3945] = 2625, + [3946] = 2626, + [3947] = 2608, + [3948] = 2609, + [3949] = 2610, + [3950] = 2611, + [3951] = 2486, + [3952] = 2634, + [3953] = 2516, + [3954] = 2561, + [3955] = 2538, + [3956] = 2487, + [3957] = 2612, + [3958] = 2565, + [3959] = 2636, + [3960] = 2637, + [3961] = 2613, + [3962] = 2614, + [3963] = 2627, + [3964] = 2616, + [3965] = 2617, + [3966] = 2618, + [3967] = 2014, + [3968] = 2619, + [3969] = 2638, + [3970] = 2488, + [3971] = 2479, + [3972] = 2628, + [3973] = 2629, + [3974] = 2764, + [3975] = 2642, + [3976] = 2651, + [3977] = 2631, + [3978] = 2632, + [3979] = 2633, + [3980] = 2634, + [3981] = 2636, + [3982] = 2637, + [3983] = 2638, + [3984] = 2766, + [3985] = 2641, + [3986] = 2745, + [3987] = 2751, + [3988] = 2641, + [3989] = 2596, + [3990] = 2015, + [3991] = 2012, + [3992] = 2715, + [3993] = 2767, + [3994] = 2768, + [3995] = 2659, + [3996] = 2645, + [3997] = 2661, + [3998] = 2662, + [3999] = 2769, + [4000] = 2771, + [4001] = 2566, + [4002] = 2011, + [4003] = 2013, + [4004] = 2645, + [4005] = 2713, + [4006] = 2671, + [4007] = 2692, + [4008] = 2570, + [4009] = 2571, + [4010] = 2539, + [4011] = 2527, + [4012] = 2673, + [4013] = 2564, + [4014] = 2130, + [4015] = 2668, + [4016] = 2015, + [4017] = 2012, + [4018] = 2762, + [4019] = 2714, + [4020] = 2563, + [4021] = 2568, + [4022] = 2490, + [4023] = 2491, + [4024] = 2559, + [4025] = 2537, + [4026] = 2593, + [4027] = 2555, + [4028] = 2671, + [4029] = 2673, + [4030] = 2591, + [4031] = 2621, + [4032] = 2550, + [4033] = 2552, + [4034] = 2553, + [4035] = 2554, + [4036] = 2755, + [4037] = 2129, + [4038] = 2721, + [4039] = 2644, + [4040] = 2735, + [4041] = 2707, + [4042] = 2011, + [4043] = 2013, + [4044] = 2594, + [4045] = 2595, + [4046] = 2693, + [4047] = 2599, + [4048] = 2608, + [4049] = 2609, + [4050] = 2610, + [4051] = 2611, + [4052] = 2612, + [4053] = 2613, + [4054] = 2614, + [4055] = 2616, + [4056] = 2617, + [4057] = 2618, + [4058] = 2619, + [4059] = 2536, + [4060] = 2746, + [4061] = 2622, + [4062] = 2708, + [4063] = 2755, + [4064] = 2677, + [4065] = 2494, + [4066] = 2569, + [4067] = 2572, + [4068] = 2757, + [4069] = 2678, + [4070] = 2745, + [4071] = 2751, + [4072] = 2679, + [4073] = 2495, + [4074] = 2692, + [4075] = 2576, + [4076] = 2680, + [4077] = 2699, + [4078] = 2642, + [4079] = 2651, + [4080] = 2567, + [4081] = 2682, + [4082] = 2683, + [4083] = 2762, + [4084] = 2663, + [4085] = 2496, + [4086] = 2697, + [4087] = 2677, + [4088] = 2678, + [4089] = 2735, + [4090] = 2685, + [4091] = 2686, + [4092] = 2687, + [4093] = 2746, + [4094] = 2679, + [4095] = 2688, + [4096] = 2690, + [4097] = 2726, + [4098] = 2680, + [4099] = 2699, + [4100] = 2727, + [4101] = 2728, + [4102] = 2700, + [4103] = 2544, + [4104] = 2703, + [4105] = 2704, + [4106] = 2706, + [4107] = 2709, + [4108] = 2710, + [4109] = 2711, + [4110] = 2551, + [4111] = 2720, + [4112] = 2646, + [4113] = 2732, + [4114] = 2737, + [4115] = 2497, + [4116] = 2722, + [4117] = 2722, + [4118] = 2739, + [4119] = 2742, + [4120] = 2744, [4121] = 2729, - [4122] = 2732, - [4123] = 2734, - [4124] = 2749, - [4125] = 2750, - [4126] = 2646, - [4127] = 2751, - [4128] = 2109, - [4129] = 2581, - [4130] = 2053, - [4131] = 2654, - [4132] = 1990, - [4133] = 2493, - [4134] = 2658, - [4135] = 1988, - [4136] = 2667, - [4137] = 2668, - [4138] = 2673, - [4139] = 2682, - [4140] = 2683, - [4141] = 2684, - [4142] = 2691, - [4143] = 2692, - [4144] = 2693, - [4145] = 2694, - [4146] = 2695, - [4147] = 2696, - [4148] = 2697, - [4149] = 2698, - [4150] = 2708, - [4151] = 2709, - [4152] = 2710, - [4153] = 2711, - [4154] = 2556, - [4155] = 2649, - [4156] = 2650, - [4157] = 1969, - [4158] = 2649, - [4159] = 2650, - [4160] = 2556, - [4161] = 2657, - [4162] = 2736, - [4163] = 2737, - [4164] = 2102, - [4165] = 2685, - [4166] = 1990, - [4167] = 1989, - [4168] = 1991, - [4169] = 2717, - [4170] = 2718, - [4171] = 1988, - [4172] = 2658, - [4173] = 2721, - [4174] = 2653, - [4175] = 2743, - [4176] = 2748, - [4177] = 2752, - [4178] = 2753, - [4179] = 1970, - [4180] = 1971, - [4181] = 2661, - [4182] = 2736, - [4183] = 2737, - [4184] = 2685, - [4185] = 2969, - [4186] = 2688, - [4187] = 2701, - [4188] = 2651, - [4189] = 2560, - [4190] = 2516, - [4191] = 2531, - [4192] = 2487, - [4193] = 2657, - [4194] = 2533, - [4195] = 2717, - [4196] = 2718, - [4197] = 2721, - [4198] = 2743, - [4199] = 2748, - [4200] = 2752, - [4201] = 2753, - [4202] = 2531, - [4203] = 2533, - [4204] = 2534, - [4205] = 2535, - [4206] = 2536, - [4207] = 2537, - [4208] = 2538, - [4209] = 2534, - [4210] = 2472, - [4211] = 2582, - [4212] = 2535, - [4213] = 2612, - [4214] = 2627, - [4215] = 2521, - [4216] = 2473, - [4217] = 2474, - [4218] = 2528, - [4219] = 2495, - [4220] = 2483, - [4221] = 2536, - [4222] = 2978, - [4223] = 2980, - [4224] = 3000, - [4225] = 3010, - [4226] = 3016, - [4227] = 3019, - [4228] = 3022, - [4229] = 3024, - [4230] = 2476, - [4231] = 2478, - [4232] = 3031, - [4233] = 3071, - [4234] = 2851, - [4235] = 2976, - [4236] = 2977, - [4237] = 3025, - [4238] = 3027, - [4239] = 2482, - [4240] = 2484, - [4241] = 2512, - [4242] = 2513, - [4243] = 2514, - [4244] = 2489, - [4245] = 1958, - [4246] = 2537, - [4247] = 2538, - [4248] = 2700, - [4249] = 2712, - [4250] = 2714, - [4251] = 2716, - [4252] = 2744, - [4253] = 2532, - [4254] = 2733, - [4255] = 2667, - [4256] = 2668, - [4257] = 1992, - [4258] = 2673, - [4259] = 2682, - [4260] = 2683, - [4261] = 2684, - [4262] = 2582, - [4263] = 2738, - [4264] = 2742, - [4265] = 2691, - [4266] = 2598, - [4267] = 2475, - [4268] = 2741, - [4269] = 2014, - [4270] = 3183, - [4271] = 1993, - [4272] = 1989, - [4273] = 1991, - [4274] = 1998, - [4275] = 2000, - [4276] = 2053, - [4277] = 3194, - [4278] = 3219, - [4279] = 3132, - [4280] = 2016, - [4281] = 2697, - [4282] = 1996, - [4283] = 2663, - [4284] = 2698, - [4285] = 1958, - [4286] = 1969, - [4287] = 2490, - [4288] = 2667, - [4289] = 2018, - [4290] = 1970, - [4291] = 1971, - [4292] = 2675, - [4293] = 2748, + [4122] = 2498, + [4123] = 2731, + [4124] = 2733, + [4125] = 2494, + [4126] = 2754, + [4127] = 2756, + [4128] = 2503, + [4129] = 2025, + [4130] = 2760, + [4131] = 2016, + [4132] = 2682, + [4133] = 2761, + [4134] = 2736, + [4135] = 2024, + [4136] = 2019, + [4137] = 2763, + [4138] = 2683, + [4139] = 2660, + [4140] = 2685, + [4141] = 2081, + [4142] = 2686, + [4143] = 2687, + [4144] = 2738, + [4145] = 2688, + [4146] = 2018, + [4147] = 2690, + [4148] = 2623, + [4149] = 2740, + [4150] = 2693, + [4151] = 2624, + [4152] = 2741, + [4153] = 2743, + [4154] = 2747, + [4155] = 2748, + [4156] = 2749, + [4157] = 2750, + [4158] = 2454, + [4159] = 2772, + [4160] = 2766, + [4161] = 2757, + [4162] = 2767, + [4163] = 2700, + [4164] = 2768, + [4165] = 2769, + [4166] = 2771, + [4167] = 2643, + [4168] = 2647, + [4169] = 2497, + [4170] = 2649, + [4171] = 2669, + [4172] = 2670, + [4173] = 2620, + [4174] = 2755, + [4175] = 2594, + [4176] = 2595, + [4177] = 2599, + [4178] = 2608, + [4179] = 2609, + [4180] = 2610, + [4181] = 2611, + [4182] = 2612, + [4183] = 2613, + [4184] = 2614, + [4185] = 2616, + [4186] = 2617, + [4187] = 2618, + [4188] = 2619, + [4189] = 2712, + [4190] = 2692, + [4191] = 2735, + [4192] = 2746, + [4193] = 2699, + [4194] = 1980, + [4195] = 2689, + [4196] = 2654, + [4197] = 2663, + [4198] = 2650, + [4199] = 2697, + [4200] = 2694, + [4201] = 2770, + [4202] = 2703, + [4203] = 2648, + [4204] = 2704, + [4205] = 2706, + [4206] = 2014, + [4207] = 2070, + [4208] = 2730, + [4209] = 2709, + [4210] = 2666, + [4211] = 2545, + [4212] = 2524, + [4213] = 2592, + [4214] = 2710, + [4215] = 2711, + [4216] = 2720, + [4217] = 2020, + [4218] = 2021, + [4219] = 2022, + [4220] = 2023, + [4221] = 2652, + [4222] = 2655, + [4223] = 2657, + [4224] = 2547, + [4225] = 2660, + [4226] = 2927, + [4227] = 2625, + [4228] = 2598, + [4229] = 2729, + [4230] = 2731, + [4231] = 2480, + [4232] = 2482, + [4233] = 2501, + [4234] = 2502, + [4235] = 2506, + [4236] = 2515, + [4237] = 2017, + [4238] = 2508, + [4239] = 2733, + [4240] = 2626, + [4241] = 2649, + [4242] = 2702, + [4243] = 2485, + [4244] = 2479, + [4245] = 2511, + [4246] = 2518, + [4247] = 2522, + [4248] = 2505, + [4249] = 2454, + [4250] = 2523, + [4251] = 2760, + [4252] = 2761, + [4253] = 2598, + [4254] = 2591, + [4255] = 2592, + [4256] = 2593, + [4257] = 2627, + [4258] = 1993, + [4259] = 2620, + [4260] = 2628, + [4261] = 2629, + [4262] = 2745, + [4263] = 2751, + [4264] = 2508, + [4265] = 2631, + [4266] = 2736, + [4267] = 2600, + [4268] = 2644, + [4269] = 2646, + [4270] = 2647, + [4271] = 2705, + [4272] = 2649, + [4273] = 2632, + [4274] = 2652, + [4275] = 2655, + [4276] = 2657, + [4277] = 2738, + [4278] = 2659, + [4279] = 2661, + [4280] = 2662, + [4281] = 2740, + [4282] = 2741, + [4283] = 2668, + [4284] = 2669, + [4285] = 2670, + [4286] = 2600, + [4287] = 2743, + [4288] = 2601, + [4289] = 2594, + [4290] = 2747, + [4291] = 2763, + [4292] = 2689, + [4293] = 2642, [4294] = 2651, - [4295] = 2560, - [4296] = 2330, - [4297] = 2668, - [4298] = 2642, - [4299] = 2673, - [4300] = 2706, - [4301] = 2733, - [4302] = 2682, - [4303] = 2011, - [4304] = 2752, - [4305] = 2351, - [4306] = 2707, - [4307] = 2655, - [4308] = 2753, - [4309] = 2007, - [4310] = 2683, - [4311] = 2532, - [4312] = 2715, - [4313] = 2716, - [4314] = 2488, - [4315] = 2646, - [4316] = 2684, - [4317] = 2491, - [4318] = 2492, - [4319] = 1994, - [4320] = 2015, - [4321] = 2487, - [4322] = 2612, - [4323] = 1957, - [4324] = 2659, - [4325] = 2640, - [4326] = 2531, - [4327] = 2664, - [4328] = 2744, - [4329] = 2714, - [4330] = 2643, - [4331] = 2662, - [4332] = 2533, - [4333] = 2534, - [4334] = 2535, - [4335] = 2536, - [4336] = 2656, - [4337] = 3166, - [4338] = 2537, - [4339] = 2539, - [4340] = 2540, - [4341] = 2541, - [4342] = 2542, - [4343] = 2543, - [4344] = 2544, - [4345] = 2738, - [4346] = 2469, - [4347] = 2742, - [4348] = 2525, - [4349] = 2545, - [4350] = 2546, - [4351] = 2538, - [4352] = 2688, - [4353] = 4353, - [4354] = 2645, - [4355] = 2581, - [4356] = 2721, - [4357] = 2592, - [4358] = 2713, - [4359] = 2708, - [4360] = 2709, - [4361] = 2729, - [4362] = 2710, - [4363] = 2017, - [4364] = 2711, - [4365] = 2627, - [4366] = 1997, - [4367] = 2732, - [4368] = 1995, - [4369] = 2717, - [4370] = 1999, - [4371] = 2012, - [4372] = 2547, - [4373] = 2001, - [4374] = 2013, - [4375] = 2019, - [4376] = 2702, - [4377] = 2020, - [4378] = 2718, - [4379] = 1997, - [4380] = 1995, - [4381] = 2582, - [4382] = 2491, - [4383] = 1999, - [4384] = 2492, - [4385] = 1994, - [4386] = 2745, - [4387] = 2467, - [4388] = 2473, - [4389] = 2478, - [4390] = 2734, - [4391] = 2657, - [4392] = 2549, - [4393] = 2550, - [4394] = 2551, - [4395] = 2552, - [4396] = 2553, - [4397] = 2746, - [4398] = 2554, - [4399] = 2555, - [4400] = 2001, - [4401] = 2557, - [4402] = 2558, - [4403] = 2559, - [4404] = 2021, - [4405] = 2561, - [4406] = 2562, - [4407] = 2749, - [4408] = 2750, - [4409] = 2751, - [4410] = 2493, - [4411] = 2658, - [4412] = 2004, - [4413] = 2654, - [4414] = 2563, - [4415] = 2564, - [4416] = 2494, - [4417] = 2566, - [4418] = 2740, - [4419] = 2743, - [4420] = 2569, - [4421] = 2571, - [4422] = 2572, - [4423] = 2573, - [4424] = 2575, - [4425] = 2576, - [4426] = 2577, - [4427] = 2578, - [4428] = 2579, - [4429] = 2580, - [4430] = 2651, - [4431] = 2560, - [4432] = 2005, - [4433] = 2008, - [4434] = 2003, - [4435] = 2703, - [4436] = 2691, - [4437] = 2647, - [4438] = 2009, - [4439] = 2786, - [4440] = 2456, - [4441] = 2583, - [4442] = 2704, - [4443] = 2585, - [4444] = 2586, - [4445] = 2588, - [4446] = 2589, - [4447] = 2590, - [4448] = 2591, - [4449] = 2010, - [4450] = 2593, - [4451] = 2596, - [4452] = 2597, - [4453] = 2598, - [4454] = 2599, - [4455] = 2601, - [4456] = 2605, - [4457] = 2606, - [4458] = 2607, - [4459] = 2610, - [4460] = 2556, - [4461] = 2600, - [4462] = 2688, - [4463] = 2701, - [4464] = 2692, - [4465] = 2693, - [4466] = 2694, - [4467] = 2695, - [4468] = 2613, - [4469] = 2614, - [4470] = 2615, - [4471] = 2617, - [4472] = 2618, - [4473] = 2530, - [4474] = 2622, - [4475] = 2486, - [4476] = 2587, - [4477] = 2602, - [4478] = 2719, - [4479] = 2456, - [4480] = 2469, - [4481] = 1992, - [4482] = 2516, - [4483] = 2521, - [4484] = 2528, - [4485] = 2495, - [4486] = 2483, - [4487] = 2611, - [4488] = 2624, - [4489] = 2696, - [4490] = 1998, - [4491] = 1996, - [4492] = 1990, - [4493] = 2720, - [4494] = 2456, - [4495] = 1988, - [4496] = 2625, - [4497] = 2626, - [4498] = 2485, - [4499] = 2628, - [4500] = 2629, - [4501] = 2630, - [4502] = 2631, - [4503] = 2463, - [4504] = 2472, - [4505] = 2633, - [4506] = 2476, - [4507] = 2634, - [4508] = 2635, - [4509] = 2636, - [4510] = 2637, - [4511] = 2638, - [4512] = 2639, - [4513] = 2461, - [4514] = 2494, - [4515] = 2465, - [4516] = 2466, - [4517] = 2525, - [4518] = 2727, - [4519] = 2469, - [4520] = 2728, - [4521] = 2730, - [4522] = 2731, - [4523] = 2653, - [4524] = 2595, - [4525] = 2485, - [4526] = 2661, - [4527] = 2700, - [4528] = 2712, - [4529] = 2474, - [4530] = 2620, - [4531] = 2488, - [4532] = 2006, - [4533] = 2480, - [4534] = 2594, - [4535] = 2002, - [4536] = 2480, - [4537] = 2735, - [4538] = 2739, - [4539] = 2475, - [4540] = 2493, - [4541] = 2568, - [4542] = 2476, - [4543] = 2685, - [4544] = 2601, - [4545] = 2605, - [4546] = 2606, - [4547] = 2607, + [4295] = 1981, + [4296] = 2762, + [4297] = 2602, + [4298] = 2702, + [4299] = 2705, + [4300] = 2707, + [4301] = 2708, + [4302] = 2712, + [4303] = 2713, + [4304] = 2714, + [4305] = 2715, + [4306] = 2603, + [4307] = 2586, + [4308] = 2604, + [4309] = 2605, + [4310] = 2606, + [4311] = 2748, + [4312] = 2607, + [4313] = 2721, + [4314] = 2726, + [4315] = 2727, + [4316] = 2728, + [4317] = 2732, + [4318] = 2749, + [4319] = 2750, + [4320] = 2737, + [4321] = 2739, + [4322] = 2742, + [4323] = 2744, + [4324] = 3067, + [4325] = 2754, + [4326] = 2756, + [4327] = 2556, + [4328] = 2520, + [4329] = 2548, + [4330] = 2040, + [4331] = 2041, + [4332] = 2043, + [4333] = 2028, + [4334] = 2770, + [4335] = 2648, + [4336] = 2042, + [4337] = 2029, + [4338] = 2030, + [4339] = 2031, + [4340] = 2032, + [4341] = 2033, + [4342] = 2746, + [4343] = 2530, + [4344] = 2493, + [4345] = 2722, + [4346] = 2596, + [4347] = 2351, + [4348] = 2036, + [4349] = 2700, + [4350] = 2705, + [4351] = 2707, + [4352] = 2731, + [4353] = 2598, + [4354] = 2730, + [4355] = 2611, + [4356] = 2708, + [4357] = 2555, + [4358] = 2732, + [4359] = 2703, + [4360] = 2512, + [4361] = 2612, + [4362] = 2600, + [4363] = 2556, + [4364] = 2514, + [4365] = 2566, + [4366] = 2017, + [4367] = 2601, + [4368] = 2666, + [4369] = 2704, + [4370] = 2706, + [4371] = 2669, + [4372] = 2570, + [4373] = 2571, + [4374] = 2737, + [4375] = 2539, + [4376] = 2527, + [4377] = 2733, + [4378] = 2739, + [4379] = 2742, + [4380] = 2564, + [4381] = 2569, + [4382] = 2747, + [4383] = 2572, + [4384] = 2602, + [4385] = 2617, + [4386] = 2576, + [4387] = 2657, + [4388] = 2748, + [4389] = 2481, + [4390] = 2497, + [4391] = 2479, + [4392] = 2551, + [4393] = 2603, + [4394] = 2481, + [4395] = 2037, + [4396] = 2699, + [4397] = 2604, + [4398] = 2563, + [4399] = 2568, + [4400] = 2605, + [4401] = 2606, + [4402] = 2607, + [4403] = 3189, + [4404] = 1981, + [4405] = 3190, + [4406] = 3193, + [4407] = 3220, + [4408] = 2490, + [4409] = 2491, + [4410] = 2582, + [4411] = 2649, + [4412] = 2488, + [4413] = 2548, + [4414] = 2027, + [4415] = 2744, + [4416] = 2495, + [4417] = 2081, + [4418] = 2559, + [4419] = 2496, + [4420] = 2498, + [4421] = 2537, + [4422] = 2613, + [4423] = 2754, + [4424] = 2503, + [4425] = 2504, + [4426] = 2621, + [4427] = 2622, + [4428] = 2623, + [4429] = 2512, + [4430] = 2624, + [4431] = 2756, + [4432] = 4432, + [4433] = 2712, + [4434] = 2659, + [4435] = 2524, + [4436] = 2514, + [4437] = 2017, + [4438] = 2749, + [4439] = 2625, + [4440] = 2511, + [4441] = 2750, + [4442] = 2626, + [4443] = 2693, + [4444] = 2726, + [4445] = 2518, + [4446] = 2522, + [4447] = 2523, + [4448] = 2618, + [4449] = 2550, + [4450] = 2627, + [4451] = 2628, + [4452] = 2552, + [4453] = 2668, + [4454] = 2014, + [4455] = 2567, + [4456] = 2015, + [4457] = 2012, + [4458] = 2586, + [4459] = 2025, + [4460] = 2016, + [4461] = 2011, + [4462] = 2013, + [4463] = 2024, + [4464] = 2019, + [4465] = 2018, + [4466] = 2454, + [4467] = 1980, + [4468] = 2614, + [4469] = 1993, + [4470] = 1994, + [4471] = 1992, + [4472] = 2760, + [4473] = 2553, + [4474] = 2761, + [4475] = 2616, + [4476] = 2554, + [4477] = 2547, + [4478] = 2709, + [4479] = 2660, + [4480] = 2729, + [4481] = 2039, + [4482] = 2629, + [4483] = 2727, + [4484] = 2713, + [4485] = 2764, + [4486] = 2631, + [4487] = 2619, + [4488] = 2632, + [4489] = 2594, + [4490] = 2702, + [4491] = 2595, + [4492] = 2608, + [4493] = 2562, + [4494] = 2633, + [4495] = 2772, + [4496] = 2634, + [4497] = 2636, + [4498] = 2637, + [4499] = 2638, + [4500] = 2609, + [4501] = 2573, + [4502] = 2641, + [4503] = 2645, + [4504] = 2728, + [4505] = 2582, + [4506] = 2483, + [4507] = 2494, + [4508] = 2508, + [4509] = 2486, + [4510] = 2544, + [4511] = 2516, + [4512] = 2481, + [4513] = 2020, + [4514] = 2021, + [4515] = 2022, + [4516] = 2023, + [4517] = 2485, + [4518] = 2504, + [4519] = 2561, + [4520] = 2538, + [4521] = 2487, + [4522] = 2020, + [4523] = 2021, + [4524] = 2661, + [4525] = 2022, + [4526] = 2565, + [4527] = 2023, + [4528] = 2599, + [4529] = 2662, + [4530] = 2766, + [4531] = 2767, + [4532] = 2768, + [4533] = 2769, + [4534] = 2710, + [4535] = 2692, + [4536] = 2736, + [4537] = 2711, + [4538] = 2757, + [4539] = 2715, + [4540] = 2670, + [4541] = 2815, + [4542] = 2720, + [4543] = 2738, + [4544] = 2740, + [4545] = 2520, + [4546] = 2689, + [4547] = 2669, [4548] = 2610, - [4549] = 2002, - [4550] = 1993, - [4551] = 2613, - [4552] = 2614, - [4553] = 1998, - [4554] = 2000, - [4555] = 1996, - [4556] = 2615, - [4557] = 2649, - [4558] = 2650, - [4559] = 2617, - [4560] = 2618, - [4561] = 2530, - [4562] = 2978, - [4563] = 2980, - [4564] = 3000, - [4565] = 3010, - [4566] = 3016, - [4567] = 3019, - [4568] = 3022, - [4569] = 3024, - [4570] = 2564, - [4571] = 2027, - [4572] = 2622, - [4573] = 2475, - [4574] = 2624, - [4575] = 2493, - [4576] = 2658, - [4577] = 2017, - [4578] = 2625, - [4579] = 1994, - [4580] = 2007, - [4581] = 2005, - [4582] = 2006, - [4583] = 1997, - [4584] = 2014, - [4585] = 2015, - [4586] = 2008, - [4587] = 2003, - [4588] = 2009, - [4589] = 2010, - [4590] = 2011, - [4591] = 1995, - [4592] = 2016, - [4593] = 2012, - [4594] = 2013, - [4595] = 2019, - [4596] = 2020, - [4597] = 2018, - [4598] = 2021, - [4599] = 2004, - [4600] = 1999, - [4601] = 2001, - [4602] = 3031, - [4603] = 3071, - [4604] = 2851, - [4605] = 2976, - [4606] = 2977, - [4607] = 3025, - [4608] = 3027, - [4609] = 2626, - [4610] = 2667, - [4611] = 2668, - [4612] = 2673, - [4613] = 2682, - [4614] = 2683, - [4615] = 2684, - [4616] = 1997, - [4617] = 1995, - [4618] = 2691, - [4619] = 1999, - [4620] = 2692, - [4621] = 2001, - [4622] = 2693, - [4623] = 2694, - [4624] = 2695, - [4625] = 2696, - [4626] = 2697, - [4627] = 2698, - [4628] = 2708, - [4629] = 2709, - [4630] = 4630, - [4631] = 2710, - [4632] = 2711, - [4633] = 2628, - [4634] = 2629, - [4635] = 2649, - [4636] = 2650, - [4637] = 2630, - [4638] = 2646, - [4639] = 2719, - [4640] = 2631, - [4641] = 2717, - [4642] = 1992, - [4643] = 2633, - [4644] = 2718, - [4645] = 1990, - [4646] = 1988, - [4647] = 2721, - [4648] = 1998, - [4649] = 1996, - [4650] = 2634, - [4651] = 2359, - [4652] = 4630, - [4653] = 2635, - [4654] = 1989, - [4655] = 1991, - [4656] = 2371, - [4657] = 4630, - [4658] = 2636, - [4659] = 2637, - [4660] = 4630, - [4661] = 1999, - [4662] = 2743, - [4663] = 2748, - [4664] = 2752, - [4665] = 4630, - [4666] = 2733, - [4667] = 4630, - [4668] = 2753, - [4669] = 4630, - [4670] = 2372, - [4671] = 4630, - [4672] = 2531, - [4673] = 2533, - [4674] = 2534, - [4675] = 2535, - [4676] = 2536, - [4677] = 4630, - [4678] = 4630, - [4679] = 2002, - [4680] = 1993, - [4681] = 2638, - [4682] = 2639, - [4683] = 2001, - [4684] = 2537, - [4685] = 2568, - [4686] = 2569, - [4687] = 4630, - [4688] = 2571, - [4689] = 4630, - [4690] = 1998, - [4691] = 2000, - [4692] = 4630, - [4693] = 1996, - [4694] = 2538, - [4695] = 2572, - [4696] = 2573, - [4697] = 2467, - [4698] = 2473, - [4699] = 2738, - [4700] = 2742, - [4701] = 2575, - [4702] = 2576, - [4703] = 2577, - [4704] = 2578, - [4705] = 2701, - [4706] = 2688, - [4707] = 2701, - [4708] = 2651, - [4709] = 2560, - [4710] = 2657, - [4711] = 2717, - [4712] = 2718, - [4713] = 2721, - [4714] = 2743, - [4715] = 2748, - [4716] = 2752, - [4717] = 2753, - [4718] = 2531, - [4719] = 2533, - [4720] = 2534, - [4721] = 2535, - [4722] = 2536, - [4723] = 2537, - [4724] = 2538, - [4725] = 2582, - [4726] = 2612, - [4727] = 2627, - [4728] = 2969, - [4729] = 2579, - [4730] = 2745, - [4731] = 2580, - [4732] = 2583, - [4733] = 2657, - [4734] = 2585, - [4735] = 2586, - [4736] = 2588, - [4737] = 2746, - [4738] = 2582, - [4739] = 2589, - [4740] = 2590, - [4741] = 2591, - [4742] = 2478, - [4743] = 2593, - [4744] = 4630, - [4745] = 2736, - [4746] = 2330, - [4747] = 2612, - [4748] = 2351, - [4749] = 2587, - [4750] = 2594, - [4751] = 2581, - [4752] = 2595, - [4753] = 2480, - [4754] = 2463, - [4755] = 2472, - [4756] = 1995, - [4757] = 2476, - [4758] = 2642, - [4759] = 2656, - [4760] = 2737, - [4761] = 2729, - [4762] = 2732, - [4763] = 2734, - [4764] = 2749, - [4765] = 2750, - [4766] = 2751, - [4767] = 2654, - [4768] = 2596, - [4769] = 2556, - [4770] = 2597, - [4771] = 2627, - [4772] = 2653, - [4773] = 2661, - [4774] = 2700, - [4775] = 2712, - [4776] = 2714, - [4777] = 2716, - [4778] = 2744, - [4779] = 2532, - [4780] = 2592, - [4781] = 2600, - [4782] = 2602, - [4783] = 2611, - [4784] = 2620, - [4785] = 2640, - [4786] = 2643, - [4787] = 2645, - [4788] = 2647, - [4789] = 2463, - [4790] = 2655, - [4791] = 2659, - [4792] = 2662, - [4793] = 2663, - [4794] = 2664, - [4795] = 2675, - [4796] = 2702, - [4797] = 2703, - [4798] = 2704, - [4799] = 2706, - [4800] = 2707, - [4801] = 2467, - [4802] = 2713, - [4803] = 2715, - [4804] = 2598, - [4805] = 2720, - [4806] = 2727, - [4807] = 2728, - [4808] = 2730, - [4809] = 2731, - [4810] = 2735, - [4811] = 2739, - [4812] = 2740, - [4813] = 2741, - [4814] = 2566, - [4815] = 2539, - [4816] = 2540, - [4817] = 2541, - [4818] = 2542, - [4819] = 2543, - [4820] = 2544, - [4821] = 2545, - [4822] = 2546, - [4823] = 2547, - [4824] = 2472, - [4825] = 2736, - [4826] = 2737, - [4827] = 2549, - [4828] = 2550, - [4829] = 2551, - [4830] = 2552, - [4831] = 2553, - [4832] = 2554, - [4833] = 2555, - [4834] = 2473, - [4835] = 2557, - [4836] = 2558, - [4837] = 2559, - [4838] = 1997, - [4839] = 2561, - [4840] = 2562, - [4841] = 2599, - [4842] = 2685, - [4843] = 2563, - [4844] = 2478, - [4845] = 4845, - [4846] = 1997, - [4847] = 4845, - [4848] = 4848, - [4849] = 4845, - [4850] = 1995, - [4851] = 4845, - [4852] = 2582, - [4853] = 4848, - [4854] = 2015, - [4855] = 1999, - [4856] = 4845, - [4857] = 2014, - [4858] = 4848, - [4859] = 4848, - [4860] = 2001, - [4861] = 4848, - [4862] = 2008, - [4863] = 2003, - [4864] = 2419, - [4865] = 2420, - [4866] = 2009, - [4867] = 2330, - [4868] = 4848, - [4869] = 2426, - [4870] = 2351, - [4871] = 2016, - [4872] = 4845, - [4873] = 2010, - [4874] = 2011, - [4875] = 4845, - [4876] = 2014, - [4877] = 2018, - [4878] = 4848, - [4879] = 2612, - [4880] = 4845, - [4881] = 2427, - [4882] = 2012, - [4883] = 2013, - [4884] = 4845, - [4885] = 2019, - [4886] = 3183, - [4887] = 4845, - [4888] = 4848, - [4889] = 2016, - [4890] = 2480, - [4891] = 2002, - [4892] = 4845, - [4893] = 1993, - [4894] = 2475, - [4895] = 2017, - [4896] = 2020, - [4897] = 4845, - [4898] = 2688, - [4899] = 2701, - [4900] = 2109, - [4901] = 2493, - [4902] = 1997, - [4903] = 3194, - [4904] = 4845, - [4905] = 1995, - [4906] = 3219, - [4907] = 3132, - [4908] = 4848, - [4909] = 2372, - [4910] = 2651, - [4911] = 2560, - [4912] = 4845, - [4913] = 2047, - [4914] = 4848, - [4915] = 1999, - [4916] = 2001, - [4917] = 4845, - [4918] = 2027, - [4919] = 1998, - [4920] = 2005, - [4921] = 2006, - [4922] = 2371, - [4923] = 2000, - [4924] = 4848, - [4925] = 4845, - [4926] = 4845, - [4927] = 4845, - [4928] = 2008, - [4929] = 2003, - [4930] = 2009, - [4931] = 2010, - [4932] = 2011, - [4933] = 1996, - [4934] = 4845, - [4935] = 4848, - [4936] = 4845, - [4937] = 4845, - [4938] = 2657, - [4939] = 2013, - [4940] = 4848, - [4941] = 2102, - [4942] = 2019, - [4943] = 2020, - [4944] = 2021, - [4945] = 2004, - [4946] = 4848, - [4947] = 2021, - [4948] = 1997, - [4949] = 1995, - [4950] = 2393, - [4951] = 2421, - [4952] = 4848, - [4953] = 4845, - [4954] = 2004, - [4955] = 4845, - [4956] = 4845, - [4957] = 2359, - [4958] = 2717, - [4959] = 2718, - [4960] = 4848, - [4961] = 2721, - [4962] = 2330, - [4963] = 2351, - [4964] = 4848, - [4965] = 4848, - [4966] = 2007, - [4967] = 4848, - [4968] = 2330, - [4969] = 1999, - [4970] = 2743, - [4971] = 2748, - [4972] = 2752, - [4973] = 2753, - [4974] = 2531, - [4975] = 2533, - [4976] = 2534, - [4977] = 2535, - [4978] = 2536, - [4979] = 2537, - [4980] = 2538, - [4981] = 2351, - [4982] = 2007, - [4983] = 1998, - [4984] = 1996, - [4985] = 4848, - [4986] = 4848, - [4987] = 2001, - [4988] = 2017, - [4989] = 1998, - [4990] = 1996, - [4991] = 4848, - [4992] = 2418, - [4993] = 2018, - [4994] = 2418, - [4995] = 2627, - [4996] = 4848, - [4997] = 2419, - [4998] = 2420, - [4999] = 4848, - [5000] = 2426, - [5001] = 2427, - [5002] = 4845, - [5003] = 2005, - [5004] = 1994, - [5005] = 2006, - [5006] = 3166, - [5007] = 4848, - [5008] = 4848, - [5009] = 2015, - [5010] = 2393, - [5011] = 2421, - [5012] = 4845, - [5013] = 2012, - [5014] = 2102, - [5015] = 2463, - [5016] = 2465, - [5017] = 2013, - [5018] = 2466, - [5019] = 2467, - [5020] = 2486, - [5021] = 2469, - [5022] = 2020, - [5023] = 2018, - [5024] = 2021, - [5025] = 2482, - [5026] = 2512, - [5027] = 2004, - [5028] = 2472, - [5029] = 2473, - [5030] = 2474, - [5031] = 2047, - [5032] = 2475, - [5033] = 2476, - [5034] = 2478, - [5035] = 2487, - [5036] = 2359, - [5037] = 2490, - [5038] = 2109, - [5039] = 2102, - [5040] = 2371, - [5041] = 1969, - [5042] = 1997, - [5043] = 2393, - [5044] = 2421, - [5045] = 1970, - [5046] = 1971, - [5047] = 2418, - [5048] = 2027, - [5049] = 2372, - [5050] = 2657, - [5051] = 2717, - [5052] = 2718, - [5053] = 2721, - [5054] = 2743, - [5055] = 2748, - [5056] = 2752, - [5057] = 2753, - [5058] = 2531, - [5059] = 2533, - [5060] = 2534, - [5061] = 2535, - [5062] = 2536, - [5063] = 2537, - [5064] = 2538, - [5065] = 2582, - [5066] = 2612, - [5067] = 2627, - [5068] = 2488, - [5069] = 2371, - [5070] = 1997, - [5071] = 1995, - [5072] = 1995, - [5073] = 1999, - [5074] = 2001, - [5075] = 2359, - [5076] = 2371, - [5077] = 2372, - [5078] = 2109, - [5079] = 2419, - [5080] = 2420, - [5081] = 1999, - [5082] = 2001, - [5083] = 2525, - [5084] = 2002, - [5085] = 1993, - [5086] = 2372, - [5087] = 2492, - [5088] = 2493, - [5089] = 2426, - [5090] = 1958, - [5091] = 2427, - [5092] = 1998, - [5093] = 2000, - [5094] = 2494, - [5095] = 2359, - [5096] = 1996, - [5097] = 2010, - [5098] = 1957, - [5099] = 2019, - [5100] = 2418, - [5101] = 2701, - [5102] = 2485, - [5103] = 2482, - [5104] = 2484, - [5105] = 2512, - [5106] = 2513, - [5107] = 2514, - [5108] = 2489, - [5109] = 2480, - [5110] = 2482, - [5111] = 2484, - [5112] = 2512, - [5113] = 2513, - [5114] = 2514, - [5115] = 2330, - [5116] = 2489, - [5117] = 2053, - [5118] = 2516, - [5119] = 2351, - [5120] = 2521, - [5121] = 2528, - [5122] = 2495, - [5123] = 2483, - [5124] = 2017, - [5125] = 2419, - [5126] = 2027, - [5127] = 2420, - [5128] = 2456, - [5129] = 2393, - [5130] = 2421, - [5131] = 2426, - [5132] = 2007, - [5133] = 2427, - [5134] = 2005, - [5135] = 2006, - [5136] = 1998, - [5137] = 1996, - [5138] = 2014, - [5139] = 2015, - [5140] = 2008, - [5141] = 2461, - [5142] = 2003, - [5143] = 2009, - [5144] = 2011, - [5145] = 2012, - [5146] = 2016, - [5147] = 2491, - [5148] = 2738, - [5149] = 2737, - [5150] = 2625, - [5151] = 2626, - [5152] = 2627, - [5153] = 2628, - [5154] = 2629, - [5155] = 2630, - [5156] = 2631, - [5157] = 2633, - [5158] = 2634, - [5159] = 2635, - [5160] = 2636, - [5161] = 2637, - [5162] = 2638, - [5163] = 2639, - [5164] = 2102, - [5165] = 2713, - [5166] = 2484, - [5167] = 2418, - [5168] = 2493, - [5169] = 2418, - [5170] = 2419, - [5171] = 2420, - [5172] = 2426, - [5173] = 2427, - [5174] = 2659, - [5175] = 2490, - [5176] = 2715, - [5177] = 2514, - [5178] = 2371, - [5179] = 2330, - [5180] = 2047, - [5181] = 1958, - [5182] = 2719, - [5183] = 2513, - [5184] = 2514, - [5185] = 2351, - [5186] = 2647, - [5187] = 2685, - [5188] = 2487, - [5189] = 2490, - [5190] = 2482, - [5191] = 2027, - [5192] = 2465, - [5193] = 2489, - [5194] = 2489, - [5195] = 1997, - [5196] = 1995, - [5197] = 1999, - [5198] = 2001, - [5199] = 2645, - [5200] = 1969, - [5201] = 2662, - [5202] = 2717, - [5203] = 2472, - [5204] = 1970, - [5205] = 1971, - [5206] = 2718, - [5207] = 2466, - [5208] = 2488, - [5209] = 2473, - [5210] = 2102, - [5211] = 2720, - [5212] = 2721, - [5213] = 2727, - [5214] = 2728, - [5215] = 2491, - [5216] = 2730, - [5217] = 2731, - [5218] = 2735, - [5219] = 2739, - [5220] = 2740, - [5221] = 2741, - [5222] = 2743, - [5223] = 2748, - [5224] = 2752, - [5225] = 2753, - [5226] = 2531, - [5227] = 2533, - [5228] = 2534, - [5229] = 2663, - [5230] = 2492, - [5231] = 2535, - [5232] = 2494, - [5233] = 2536, - [5234] = 2664, - [5235] = 2474, - [5236] = 2537, - [5237] = 2646, - [5238] = 2538, - [5239] = 2014, - [5240] = 2675, - [5241] = 2539, - [5242] = 2540, - [5243] = 2541, - [5244] = 2542, - [5245] = 2733, - [5246] = 2512, - [5247] = 2475, - [5248] = 5248, - [5249] = 2476, - [5250] = 2478, - [5251] = 2543, - [5252] = 2544, - [5253] = 2545, - [5254] = 2393, - [5255] = 2016, - [5256] = 2512, - [5257] = 2513, - [5258] = 2546, - [5259] = 2359, - [5260] = 2547, - [5261] = 2655, - [5262] = 2549, - [5263] = 2550, - [5264] = 2640, - [5265] = 2742, - [5266] = 2551, - [5267] = 2017, - [5268] = 2552, - [5269] = 2027, - [5270] = 2553, - [5271] = 2554, - [5272] = 2555, - [5273] = 2702, - [5274] = 2658, - [5275] = 2557, - [5276] = 2480, - [5277] = 2558, - [5278] = 2018, - [5279] = 2559, - [5280] = 2109, - [5281] = 2015, - [5282] = 2525, - [5283] = 2486, - [5284] = 2703, - [5285] = 2561, - [5286] = 2005, - [5287] = 2006, - [5288] = 2516, - [5289] = 2562, - [5290] = 2487, - [5291] = 2667, - [5292] = 2668, - [5293] = 2673, - [5294] = 2682, - [5295] = 2683, - [5296] = 2684, - [5297] = 2467, - [5298] = 2521, - [5299] = 2528, - [5300] = 2495, - [5301] = 2483, - [5302] = 2008, - [5303] = 2003, - [5304] = 2009, - [5305] = 2010, - [5306] = 2011, - [5307] = 2563, - [5308] = 2643, - [5309] = 2691, - [5310] = 2692, - [5311] = 2693, - [5312] = 2694, - [5313] = 2695, - [5314] = 2696, - [5315] = 2697, - [5316] = 2698, - [5317] = 2330, - [5318] = 2456, - [5319] = 2351, - [5320] = 2012, - [5321] = 2013, - [5322] = 2019, - [5323] = 2020, - [5324] = 2564, - [5325] = 2708, - [5326] = 2709, - [5327] = 2710, - [5328] = 2711, - [5329] = 2021, - [5330] = 2004, - [5331] = 2746, - [5332] = 2482, - [5333] = 2053, - [5334] = 2704, - [5335] = 2007, - [5336] = 2485, - [5337] = 2566, - [5338] = 2484, - [5339] = 2706, - [5340] = 2649, - [5341] = 2650, - [5342] = 2568, - [5343] = 2109, - [5344] = 2587, - [5345] = 2594, - [5346] = 2581, - [5347] = 2569, - [5348] = 2571, - [5349] = 2595, - [5350] = 2572, - [5351] = 2573, - [5352] = 2575, - [5353] = 2576, - [5354] = 2577, - [5355] = 2578, - [5356] = 2579, - [5357] = 2642, - [5358] = 2656, - [5359] = 2580, - [5360] = 2582, - [5361] = 2688, - [5362] = 2583, - [5363] = 2707, - [5364] = 2585, - [5365] = 2586, - [5366] = 2701, - [5367] = 2469, - [5368] = 2588, - [5369] = 2589, - [5370] = 2729, - [5371] = 2732, - [5372] = 1957, - [5373] = 2734, - [5374] = 2590, - [5375] = 2749, - [5376] = 2750, - [5377] = 2751, - [5378] = 2591, - [5379] = 2393, - [5380] = 2421, - [5381] = 2657, - [5382] = 2593, - [5383] = 2654, - [5384] = 2461, - [5385] = 2047, - [5386] = 2419, - [5387] = 2482, - [5388] = 2651, - [5389] = 2512, - [5390] = 2560, - [5391] = 2420, - [5392] = 2596, - [5393] = 2597, - [5394] = 2372, - [5395] = 2484, - [5396] = 2513, - [5397] = 2514, - [5398] = 2489, - [5399] = 2421, - [5400] = 2598, - [5401] = 2599, - [5402] = 1998, - [5403] = 1996, - [5404] = 2601, - [5405] = 2556, - [5406] = 2426, - [5407] = 2605, - [5408] = 2606, - [5409] = 2607, - [5410] = 2653, - [5411] = 2661, - [5412] = 2610, - [5413] = 2612, - [5414] = 2613, - [5415] = 2614, - [5416] = 2700, - [5417] = 2712, - [5418] = 2714, - [5419] = 2716, - [5420] = 2744, - [5421] = 2532, - [5422] = 2463, - [5423] = 2615, - [5424] = 2617, - [5425] = 2618, - [5426] = 2530, - [5427] = 2592, - [5428] = 2427, - [5429] = 2600, - [5430] = 2602, - [5431] = 2736, - [5432] = 2611, - [5433] = 2622, - [5434] = 2624, - [5435] = 2620, - [5436] = 2745, - [5437] = 2685, - [5438] = 2469, - [5439] = 1971, - [5440] = 2494, - [5441] = 2587, - [5442] = 2738, - [5443] = 2581, - [5444] = 2742, - [5445] = 2513, - [5446] = 1981, - [5447] = 2702, - [5448] = 2635, - [5449] = 2636, - [5450] = 2703, - [5451] = 2514, - [5452] = 2704, - [5453] = 2638, - [5454] = 2745, - [5455] = 2746, - [5456] = 2484, - [5457] = 2664, - [5458] = 2650, - [5459] = 2595, - [5460] = 2472, - [5461] = 2482, - [5462] = 2512, - [5463] = 2596, - [5464] = 2598, - [5465] = 2525, - [5466] = 2599, - [5467] = 2528, - [5468] = 2027, - [5469] = 2495, - [5470] = 2692, - [5471] = 2473, - [5472] = 2646, - [5473] = 2720, - [5474] = 2656, - [5475] = 2688, - [5476] = 2701, - [5477] = 2697, - [5478] = 2698, - [5479] = 2605, - [5480] = 2606, - [5481] = 2474, - [5482] = 2483, - [5483] = 2607, - [5484] = 2610, - [5485] = 2706, - [5486] = 2461, - [5487] = 2525, - [5488] = 2613, - [5489] = 2614, - [5490] = 2727, - [5491] = 2372, - [5492] = 2539, - [5493] = 2540, - [5494] = 2541, - [5495] = 2542, - [5496] = 2543, - [5497] = 2729, - [5498] = 2612, - [5499] = 2615, - [5500] = 2617, - [5501] = 2530, - [5502] = 2482, - [5503] = 2732, - [5504] = 2734, - [5505] = 2544, - [5506] = 2749, - [5507] = 2750, - [5508] = 2751, - [5509] = 2484, - [5510] = 2628, - [5511] = 2629, - [5512] = 2631, - [5513] = 2475, - [5514] = 2557, - [5515] = 2545, - [5516] = 2476, - [5517] = 2478, - [5518] = 2582, - [5519] = 2482, - [5520] = 2512, - [5521] = 2654, - [5522] = 2512, - [5523] = 2485, - [5524] = 2651, - [5525] = 2513, - [5526] = 2469, - [5527] = 2514, - [5528] = 2712, - [5529] = 2466, - [5530] = 2489, - [5531] = 2546, - [5532] = 2707, - [5533] = 2633, - [5534] = 2637, - [5535] = 2560, - [5536] = 2639, - [5537] = 2713, - [5538] = 2547, - [5539] = 2594, - [5540] = 2675, - [5541] = 2736, - [5542] = 1958, - [5543] = 2737, - [5544] = 2549, - [5545] = 2550, - [5546] = 2551, - [5547] = 2482, - [5548] = 2556, - [5549] = 2601, - [5550] = 5550, - [5551] = 2359, - [5552] = 2552, - [5553] = 2642, - [5554] = 2553, - [5555] = 2554, - [5556] = 2555, - [5557] = 2456, - [5558] = 2486, - [5559] = 1980, - [5560] = 2624, - [5561] = 2622, - [5562] = 2516, - [5563] = 2558, - [5564] = 2490, - [5565] = 2653, - [5566] = 2480, - [5567] = 1957, - [5568] = 2661, - [5569] = 2700, - [5570] = 2714, - [5571] = 2716, - [5572] = 2708, - [5573] = 2744, - [5574] = 2372, - [5575] = 2709, - [5576] = 2532, - [5577] = 2521, - [5578] = 2371, - [5579] = 2559, - [5580] = 2487, - [5581] = 2359, - [5582] = 2728, - [5583] = 2480, - [5584] = 2516, - [5585] = 2109, - [5586] = 2694, - [5587] = 2521, - [5588] = 2463, - [5589] = 2528, - [5590] = 2487, - [5591] = 2495, - [5592] = 2483, - [5593] = 2472, - [5594] = 2710, - [5595] = 2475, - [5596] = 2476, - [5597] = 2711, - [5598] = 2486, - [5599] = 2456, - [5600] = 2730, - [5601] = 2657, - [5602] = 2731, - [5603] = 2625, - [5604] = 2482, - [5605] = 2484, - [5606] = 2493, - [5607] = 2512, - [5608] = 2513, - [5609] = 1970, - [5610] = 2489, - [5611] = 2735, - [5612] = 2739, - [5613] = 2626, - [5614] = 2371, - [5615] = 2630, - [5616] = 2719, - [5617] = 2740, - [5618] = 2715, - [5619] = 2695, - [5620] = 2741, - [5621] = 2627, - [5622] = 2488, - [5623] = 2482, - [5624] = 2484, - [5625] = 2512, - [5626] = 2717, - [5627] = 2718, - [5628] = 2513, - [5629] = 2514, - [5630] = 2494, - [5631] = 2489, - [5632] = 2491, - [5633] = 1958, - [5634] = 2484, - [5635] = 2467, - [5636] = 2721, - [5637] = 2474, - [5638] = 2743, - [5639] = 2748, - [5640] = 2752, - [5641] = 2753, - [5642] = 2531, - [5643] = 2533, - [5644] = 2534, - [5645] = 2561, - [5646] = 2473, - [5647] = 2562, - [5648] = 2492, - [5649] = 2525, - [5650] = 2478, - [5651] = 2658, - [5652] = 2461, - [5653] = 2512, - [5654] = 2485, - [5655] = 2102, - [5656] = 2649, - [5657] = 2489, - [5658] = 2634, - [5659] = 2535, - [5660] = 2513, - [5661] = 2592, - [5662] = 2480, - [5663] = 2456, - [5664] = 2618, - [5665] = 2469, - [5666] = 2536, - [5667] = 2667, - [5668] = 2475, - [5669] = 2668, - [5670] = 2482, - [5671] = 2484, - [5672] = 2512, - [5673] = 2513, - [5674] = 2514, - [5675] = 2489, - [5676] = 2465, - [5677] = 2673, - [5678] = 2682, - [5679] = 2683, - [5680] = 5550, - [5681] = 2537, - [5682] = 2538, - [5683] = 2463, - [5684] = 2493, - [5685] = 2490, - [5686] = 2491, - [5687] = 2569, - [5688] = 2492, - [5689] = 2047, - [5690] = 2571, - [5691] = 2493, - [5692] = 2572, - [5693] = 2573, - [5694] = 2575, - [5695] = 2576, - [5696] = 2577, - [5697] = 2485, - [5698] = 2600, - [5699] = 2602, - [5700] = 2611, - [5701] = 2578, - [5702] = 2579, - [5703] = 2027, - [5704] = 2580, - [5705] = 1957, - [5706] = 2620, - [5707] = 2465, - [5708] = 2640, - [5709] = 2053, - [5710] = 2597, - [5711] = 2643, - [5712] = 2645, - [5713] = 2583, - [5714] = 2693, - [5715] = 2585, - [5716] = 2586, - [5717] = 2588, - [5718] = 2589, - [5719] = 2590, - [5720] = 2591, - [5721] = 2466, - [5722] = 2593, - [5723] = 2514, - [5724] = 5550, - [5725] = 2467, - [5726] = 2489, - [5727] = 2482, - [5728] = 2647, - [5729] = 2696, - [5730] = 2488, - [5731] = 2655, - [5732] = 2684, - [5733] = 2659, - [5734] = 2512, - [5735] = 2662, - [5736] = 5550, - [5737] = 2053, - [5738] = 2663, - [5739] = 2691, - [5740] = 2488, - [5741] = 1969, - [5742] = 2566, - [5743] = 2568, - [5744] = 2494, - [5745] = 2563, - [5746] = 2491, - [5747] = 2564, - [5748] = 2733, - [5749] = 2492, - [5750] = 2514, - [5751] = 5751, - [5752] = 2536, - [5753] = 5751, - [5754] = 2587, - [5755] = 2594, - [5756] = 2581, - [5757] = 2653, - [5758] = 5758, - [5759] = 2595, - [5760] = 2537, - [5761] = 2642, - [5762] = 2656, - [5763] = 2688, - [5764] = 2701, - [5765] = 2719, - [5766] = 2729, - [5767] = 2732, - [5768] = 2734, - [5769] = 2749, - [5770] = 2750, - [5771] = 2751, - [5772] = 2583, - [5773] = 2654, - [5774] = 5751, - [5775] = 2651, - [5776] = 2560, - [5777] = 5758, - [5778] = 2661, - [5779] = 2732, - [5780] = 2734, - [5781] = 2556, - [5782] = 2538, - [5783] = 2585, - [5784] = 2653, - [5785] = 2661, - [5786] = 2700, - [5787] = 2712, - [5788] = 2714, - [5789] = 2716, - [5790] = 2744, - [5791] = 2532, - [5792] = 2720, - [5793] = 5751, - [5794] = 2700, - [5795] = 2461, - [5796] = 5758, - [5797] = 2658, - [5798] = 2695, - [5799] = 2592, - [5800] = 2469, - [5801] = 2600, - [5802] = 2602, - [5803] = 2611, - [5804] = 2620, - [5805] = 2712, - [5806] = 2640, - [5807] = 2643, - [5808] = 2645, - [5809] = 2647, - [5810] = 2655, - [5811] = 2657, - [5812] = 2659, - [5813] = 2662, - [5814] = 2663, - [5815] = 2664, - [5816] = 2675, - [5817] = 5751, - [5818] = 2702, - [5819] = 2703, - [5820] = 2704, - [5821] = 2706, - [5822] = 2586, - [5823] = 5758, - [5824] = 2707, - [5825] = 2714, - [5826] = 2713, - [5827] = 2588, - [5828] = 2716, - [5829] = 2706, - [5830] = 2715, - [5831] = 2589, - [5832] = 2590, - [5833] = 2746, - [5834] = 2733, - [5835] = 2751, - [5836] = 2525, - [5837] = 2717, - [5838] = 2718, - [5839] = 2707, - [5840] = 2720, - [5841] = 2682, - [5842] = 2721, - [5843] = 2591, - [5844] = 2727, - [5845] = 2713, - [5846] = 5758, - [5847] = 2728, - [5848] = 2730, - [5849] = 2731, - [5850] = 2735, - [5851] = 2739, - [5852] = 2740, - [5853] = 2741, - [5854] = 2743, - [5855] = 2748, - [5856] = 2752, - [5857] = 2753, - [5858] = 2531, - [5859] = 2533, - [5860] = 2534, - [5861] = 2535, - [5862] = 2536, - [5863] = 2537, - [5864] = 2538, - [5865] = 2539, - [5866] = 2540, - [5867] = 2541, - [5868] = 2542, - [5869] = 2543, - [5870] = 2544, - [5871] = 5751, - [5872] = 2545, - [5873] = 2546, - [5874] = 2547, - [5875] = 5758, - [5876] = 2549, - [5877] = 2550, - [5878] = 2551, - [5879] = 2552, - [5880] = 2744, - [5881] = 2553, - [5882] = 2554, - [5883] = 2555, - [5884] = 2557, - [5885] = 2558, - [5886] = 2532, - [5887] = 2559, - [5888] = 2561, + [4549] = 2493, + [4550] = 2771, + [4551] = 2505, + [4552] = 2671, + [4553] = 2741, + [4554] = 2673, + [4555] = 2591, + [4556] = 2592, + [4557] = 2593, + [4558] = 2530, + [4559] = 2643, + [4560] = 2034, + [4561] = 2654, + [4562] = 2620, + [4563] = 2545, + [4564] = 2652, + [4565] = 2755, + [4566] = 2663, + [4567] = 2358, + [4568] = 2647, + [4569] = 2038, + [4570] = 2743, + [4571] = 2024, + [4572] = 3285, + [4573] = 2536, + [4574] = 2650, + [4575] = 2677, + [4576] = 2735, + [4577] = 2678, + [4578] = 2697, + [4579] = 2679, + [4580] = 2680, + [4581] = 2682, + [4582] = 2683, + [4583] = 2035, + [4584] = 2685, + [4585] = 2655, + [4586] = 2018, + [4587] = 2644, + [4588] = 2646, + [4589] = 2647, + [4590] = 2044, + [4591] = 2026, + [4592] = 2686, + [4593] = 2687, + [4594] = 2688, + [4595] = 2690, + [4596] = 2670, + [4597] = 2714, + [4598] = 2504, + [4599] = 2545, + [4600] = 2721, + [4601] = 2536, + [4602] = 2694, + [4603] = 2763, + [4604] = 2551, + [4605] = 2619, + [4606] = 2900, + [4607] = 2692, + [4608] = 2591, + [4609] = 2735, + [4610] = 2746, + [4611] = 2699, + [4612] = 2038, + [4613] = 2651, + [4614] = 2536, + [4615] = 2652, + [4616] = 2017, + [4617] = 2689, + [4618] = 2655, + [4619] = 2034, + [4620] = 2024, + [4621] = 2019, + [4622] = 2677, + [4623] = 2044, + [4624] = 2026, + [4625] = 2020, + [4626] = 2036, + [4627] = 2035, + [4628] = 2039, + [4629] = 2040, + [4630] = 2041, + [4631] = 2043, + [4632] = 2678, + [4633] = 2028, + [4634] = 2657, + [4635] = 2021, + [4636] = 2037, + [4637] = 2042, + [4638] = 2029, + [4639] = 2030, + [4640] = 2031, + [4641] = 2027, + [4642] = 2032, + [4643] = 2033, + [4644] = 2679, + [4645] = 2022, + [4646] = 2680, + [4647] = 2592, + [4648] = 2023, + [4649] = 2593, + [4650] = 2746, + [4651] = 3050, + [4652] = 2682, + [4653] = 2683, + [4654] = 2685, + [4655] = 2599, + [4656] = 3051, + [4657] = 2702, + [4658] = 2686, + [4659] = 2705, + [4660] = 2687, + [4661] = 2688, + [4662] = 2690, + [4663] = 2707, + [4664] = 2708, + [4665] = 2700, + [4666] = 2712, + [4667] = 2544, + [4668] = 2485, + [4669] = 2713, + [4670] = 2494, + [4671] = 2454, + [4672] = 2714, + [4673] = 2659, + [4674] = 2620, + [4675] = 2508, + [4676] = 2715, + [4677] = 2544, + [4678] = 4678, + [4679] = 2545, + [4680] = 2703, + [4681] = 2693, + [4682] = 4678, + [4683] = 2608, + [4684] = 2704, + [4685] = 2706, + [4686] = 2709, + [4687] = 2710, + [4688] = 2711, + [4689] = 2551, + [4690] = 2609, + [4691] = 2720, + [4692] = 4678, + [4693] = 2610, + [4694] = 2661, + [4695] = 2757, + [4696] = 2611, + [4697] = 2547, + [4698] = 2660, + [4699] = 2021, + [4700] = 2729, + [4701] = 2612, + [4702] = 4678, + [4703] = 2731, + [4704] = 2595, + [4705] = 2024, + [4706] = 2721, + [4707] = 2018, + [4708] = 2726, + [4709] = 2733, + [4710] = 2736, + [4711] = 4678, + [4712] = 2927, + [4713] = 2738, + [4714] = 2740, + [4715] = 2741, + [4716] = 2743, + [4717] = 2727, + [4718] = 2747, + [4719] = 2748, + [4720] = 2749, + [4721] = 2750, + [4722] = 2728, + [4723] = 2772, + [4724] = 2613, + [4725] = 2732, + [4726] = 2614, + [4727] = 2737, + [4728] = 2697, + [4729] = 2739, + [4730] = 4678, + [4731] = 2643, + [4732] = 2742, + [4733] = 2654, + [4734] = 2744, + [4735] = 2650, + [4736] = 2616, + [4737] = 2694, + [4738] = 2494, + [4739] = 2754, + [4740] = 2756, + [4741] = 3008, + [4742] = 2770, + [4743] = 4678, + [4744] = 2762, + [4745] = 4678, + [4746] = 2617, + [4747] = 2760, + [4748] = 2648, + [4749] = 2761, + [4750] = 2763, + [4751] = 2764, + [4752] = 2730, + [4753] = 2022, + [4754] = 2662, + [4755] = 2766, + [4756] = 2011, + [4757] = 2768, + [4758] = 2769, + [4759] = 2771, + [4760] = 2666, + [4761] = 2023, + [4762] = 2497, + [4763] = 2399, + [4764] = 2013, + [4765] = 2505, + [4766] = 2618, + [4767] = 2619, + [4768] = 2025, + [4769] = 2751, + [4770] = 2524, + [4771] = 2745, + [4772] = 2016, + [4773] = 2735, + [4774] = 2751, + [4775] = 2594, + [4776] = 2025, + [4777] = 2016, + [4778] = 2755, + [4779] = 2014, + [4780] = 2668, + [4781] = 2642, + [4782] = 2644, + [4783] = 2646, + [4784] = 2018, + [4785] = 2663, + [4786] = 2598, + [4787] = 2401, + [4788] = 2020, + [4789] = 2021, + [4790] = 2600, + [4791] = 2022, + [4792] = 2601, + [4793] = 2023, + [4794] = 2722, + [4795] = 2602, + [4796] = 2603, + [4797] = 3067, + [4798] = 2604, + [4799] = 2605, + [4800] = 2351, + [4801] = 3096, + [4802] = 2015, + [4803] = 2606, + [4804] = 2358, + [4805] = 3101, + [4806] = 2012, + [4807] = 3105, + [4808] = 2607, + [4809] = 3112, + [4810] = 2055, + [4811] = 4678, + [4812] = 2647, + [4813] = 2649, + [4814] = 2621, + [4815] = 3143, + [4816] = 2952, + [4817] = 3142, + [4818] = 2024, + [4819] = 2019, + [4820] = 2669, + [4821] = 4678, + [4822] = 4678, + [4823] = 2622, + [4824] = 2670, + [4825] = 4678, + [4826] = 2623, + [4827] = 2755, + [4828] = 2624, + [4829] = 2399, + [4830] = 2396, + [4831] = 2625, + [4832] = 2626, + [4833] = 2627, + [4834] = 2628, + [4835] = 2699, + [4836] = 2594, + [4837] = 4678, + [4838] = 2629, + [4839] = 2412, + [4840] = 2508, + [4841] = 2642, + [4842] = 2651, + [4843] = 2631, + [4844] = 2632, + [4845] = 2633, + [4846] = 2634, + [4847] = 2636, + [4848] = 4678, + [4849] = 2637, + [4850] = 2638, + [4851] = 2479, + [4852] = 2595, + [4853] = 2018, + [4854] = 2641, + [4855] = 2599, + [4856] = 2596, + [4857] = 2645, + [4858] = 2608, + [4859] = 2609, + [4860] = 2610, + [4861] = 2497, + [4862] = 2020, + [4863] = 2611, + [4864] = 2612, + [4865] = 2613, + [4866] = 2692, + [4867] = 2745, + [4868] = 2614, + [4869] = 2479, + [4870] = 2762, + [4871] = 2616, + [4872] = 2996, + [4873] = 3000, + [4874] = 2617, + [4875] = 3003, + [4876] = 2618, + [4877] = 2671, + [4878] = 2649, + [4879] = 2673, + [4880] = 2767, + [4881] = 2021, + [4882] = 3285, + [4883] = 2036, + [4884] = 4884, + [4885] = 2421, + [4886] = 2429, + [4887] = 2420, + [4888] = 2037, + [4889] = 2452, + [4890] = 2453, + [4891] = 2027, + [4892] = 2647, + [4893] = 2649, + [4894] = 2130, + [4895] = 2669, + [4896] = 2670, + [4897] = 3189, + [4898] = 3190, + [4899] = 3193, + [4900] = 3220, + [4901] = 2034, + [4902] = 2755, + [4903] = 2129, + [4904] = 2594, + [4905] = 2595, + [4906] = 2599, + [4907] = 2608, + [4908] = 2609, + [4909] = 2610, + [4910] = 2611, + [4911] = 2612, + [4912] = 2613, + [4913] = 2614, + [4914] = 2616, + [4915] = 2617, + [4916] = 2618, + [4917] = 2619, + [4918] = 2034, + [4919] = 2036, + [4920] = 4884, + [4921] = 4884, + [4922] = 2692, + [4923] = 2035, + [4924] = 2035, + [4925] = 2735, + [4926] = 2746, + [4927] = 2699, + [4928] = 2037, + [4929] = 2027, + [4930] = 4884, + [4931] = 4884, + [4932] = 2401, + [4933] = 2412, + [4934] = 2396, + [4935] = 4884, + [4936] = 4884, + [4937] = 2459, + [4938] = 2070, + [4939] = 4884, + [4940] = 2038, + [4941] = 2044, + [4942] = 2026, + [4943] = 4884, + [4944] = 2039, + [4945] = 2040, + [4946] = 2041, + [4947] = 2043, + [4948] = 2028, + [4949] = 2042, + [4950] = 2029, + [4951] = 2030, + [4952] = 2031, + [4953] = 2032, + [4954] = 2033, + [4955] = 4884, + [4956] = 4884, + [4957] = 2351, + [4958] = 2358, + [4959] = 2025, + [4960] = 2016, + [4961] = 2024, + [4962] = 2019, + [4963] = 2018, + [4964] = 4964, + [4965] = 2020, + [4966] = 2021, + [4967] = 2022, + [4968] = 2023, + [4969] = 2055, + [4970] = 2020, + [4971] = 2022, + [4972] = 2023, + [4973] = 2033, + [4974] = 2020, + [4975] = 2021, + [4976] = 2022, + [4977] = 2023, + [4978] = 4964, + [4979] = 2459, + [4980] = 2024, + [4981] = 2018, + [4982] = 2399, + [4983] = 2024, + [4984] = 2018, + [4985] = 4964, + [4986] = 4884, + [4987] = 4964, + [4988] = 4964, + [4989] = 4964, + [4990] = 4964, + [4991] = 4964, + [4992] = 4964, + [4993] = 4964, + [4994] = 4964, + [4995] = 4884, + [4996] = 4964, + [4997] = 4964, + [4998] = 4884, + [4999] = 4964, + [5000] = 4884, + [5001] = 4964, + [5002] = 4964, + [5003] = 4964, + [5004] = 4964, + [5005] = 2351, + [5006] = 2358, + [5007] = 2421, + [5008] = 4884, + [5009] = 2429, + [5010] = 2420, + [5011] = 2452, + [5012] = 2453, + [5013] = 2017, + [5014] = 4884, + [5015] = 2351, + [5016] = 2358, + [5017] = 4884, + [5018] = 4884, + [5019] = 4884, + [5020] = 4884, + [5021] = 4964, + [5022] = 4964, + [5023] = 4964, + [5024] = 4964, + [5025] = 2038, + [5026] = 4964, + [5027] = 2545, + [5028] = 2454, + [5029] = 2536, + [5030] = 4884, + [5031] = 2044, + [5032] = 2026, + [5033] = 4884, + [5034] = 4884, + [5035] = 4884, + [5036] = 2039, + [5037] = 2040, + [5038] = 2041, + [5039] = 2043, + [5040] = 2028, + [5041] = 4964, + [5042] = 4964, + [5043] = 4964, + [5044] = 2399, + [5045] = 2042, + [5046] = 2029, + [5047] = 2030, + [5048] = 2031, + [5049] = 2032, + [5050] = 4884, + [5051] = 2515, + [5052] = 2429, + [5053] = 2420, + [5054] = 2452, + [5055] = 2453, + [5056] = 2020, + [5057] = 2490, + [5058] = 2021, + [5059] = 2022, + [5060] = 2023, + [5061] = 2491, + [5062] = 1981, + [5063] = 2421, + [5064] = 2429, + [5065] = 2420, + [5066] = 2452, + [5067] = 2453, + [5068] = 2559, + [5069] = 2537, + [5070] = 2514, + [5071] = 2081, + [5072] = 2454, + [5073] = 2401, + [5074] = 2550, + [5075] = 2552, + [5076] = 2553, + [5077] = 2554, + [5078] = 1993, + [5079] = 1994, + [5080] = 1992, + [5081] = 2055, + [5082] = 2130, + [5083] = 2129, + [5084] = 1980, + [5085] = 2043, + [5086] = 2030, + [5087] = 2038, + [5088] = 2055, + [5089] = 2034, + [5090] = 2351, + [5091] = 2044, + [5092] = 2026, + [5093] = 2036, + [5094] = 2035, + [5095] = 2039, + [5096] = 2040, + [5097] = 2041, + [5098] = 2028, + [5099] = 2358, + [5100] = 2037, + [5101] = 2042, + [5102] = 2029, + [5103] = 2031, + [5104] = 2027, + [5105] = 2032, + [5106] = 2033, + [5107] = 2070, + [5108] = 2130, + [5109] = 2129, + [5110] = 2396, + [5111] = 2024, + [5112] = 2019, + [5113] = 2020, + [5114] = 2021, + [5115] = 2022, + [5116] = 2023, + [5117] = 2399, + [5118] = 2530, + [5119] = 2480, + [5120] = 2482, + [5121] = 2501, + [5122] = 2502, + [5123] = 2506, + [5124] = 2582, + [5125] = 2399, + [5126] = 2459, + [5127] = 2570, + [5128] = 2571, + [5129] = 2024, + [5130] = 2018, + [5131] = 2539, + [5132] = 2527, + [5133] = 2480, + [5134] = 2501, + [5135] = 2564, + [5136] = 2555, + [5137] = 2025, + [5138] = 2524, + [5139] = 2412, + [5140] = 2547, + [5141] = 2548, + [5142] = 2485, + [5143] = 2421, + [5144] = 2545, + [5145] = 2556, + [5146] = 2566, + [5147] = 2569, + [5148] = 2572, + [5149] = 2576, + [5150] = 2481, + [5151] = 2018, + [5152] = 2488, + [5153] = 2494, + [5154] = 2495, + [5155] = 2755, + [5156] = 2594, + [5157] = 2595, + [5158] = 2599, + [5159] = 2608, + [5160] = 2609, + [5161] = 2610, + [5162] = 2611, + [5163] = 2496, + [5164] = 2612, + [5165] = 2613, + [5166] = 2614, + [5167] = 2616, + [5168] = 2617, + [5169] = 2618, + [5170] = 2619, + [5171] = 2692, + [5172] = 2735, + [5173] = 2497, + [5174] = 2498, + [5175] = 2746, + [5176] = 2699, + [5177] = 2503, + [5178] = 2504, + [5179] = 2016, + [5180] = 2508, + [5181] = 2479, + [5182] = 2511, + [5183] = 2518, + [5184] = 2522, + [5185] = 2523, + [5186] = 2412, + [5187] = 2396, + [5188] = 2401, + [5189] = 2586, + [5190] = 2536, + [5191] = 2544, + [5192] = 2551, + [5193] = 2562, + [5194] = 2512, + [5195] = 2573, + [5196] = 2483, + [5197] = 2486, + [5198] = 2516, + [5199] = 2561, + [5200] = 2538, + [5201] = 2487, + [5202] = 2565, + [5203] = 2520, + [5204] = 2412, + [5205] = 2401, + [5206] = 2567, + [5207] = 2563, + [5208] = 2649, + [5209] = 2480, + [5210] = 2482, + [5211] = 2501, + [5212] = 2502, + [5213] = 2506, + [5214] = 2515, + [5215] = 2396, + [5216] = 2568, + [5217] = 2459, + [5218] = 2493, + [5219] = 2505, + [5220] = 2452, + [5221] = 2586, + [5222] = 2545, + [5223] = 2396, + [5224] = 2488, + [5225] = 2697, + [5226] = 2459, + [5227] = 2562, + [5228] = 2745, + [5229] = 2751, + [5230] = 2480, + [5231] = 2501, + [5232] = 2482, + [5233] = 2502, + [5234] = 2506, + [5235] = 2515, + [5236] = 2563, + [5237] = 2568, + [5238] = 2024, + [5239] = 2018, + [5240] = 5240, + [5241] = 2454, + [5242] = 2490, + [5243] = 2757, + [5244] = 2491, + [5245] = 2559, + [5246] = 2642, + [5247] = 2651, + [5248] = 2537, + [5249] = 2762, + [5250] = 2573, + [5251] = 2032, + [5252] = 2033, + [5253] = 2038, + [5254] = 2483, + [5255] = 2550, + [5256] = 2480, + [5257] = 2351, + [5258] = 2358, + [5259] = 2480, + [5260] = 2482, + [5261] = 2552, + [5262] = 2553, + [5263] = 2501, + [5264] = 2554, + [5265] = 2486, + [5266] = 2039, + [5267] = 2660, + [5268] = 2516, + [5269] = 2040, + [5270] = 2515, + [5271] = 2454, + [5272] = 2561, + [5273] = 2591, + [5274] = 2592, + [5275] = 2593, + [5276] = 2620, + [5277] = 2538, + [5278] = 2041, + [5279] = 2644, + [5280] = 2646, + [5281] = 2647, + [5282] = 2649, + [5283] = 2487, + [5284] = 2652, + [5285] = 2655, + [5286] = 2657, + [5287] = 2565, + [5288] = 2659, + [5289] = 2661, + [5290] = 2662, + [5291] = 2520, + [5292] = 2567, + [5293] = 2555, + [5294] = 2668, + [5295] = 2669, + [5296] = 2670, + [5297] = 2043, + [5298] = 2693, + [5299] = 2028, + [5300] = 2689, + [5301] = 2556, + [5302] = 2702, + [5303] = 2705, + [5304] = 2707, + [5305] = 2708, + [5306] = 2712, + [5307] = 2713, + [5308] = 2714, + [5309] = 2715, + [5310] = 2520, + [5311] = 2721, + [5312] = 2726, + [5313] = 2727, + [5314] = 2728, + [5315] = 2732, + [5316] = 2737, + [5317] = 2739, + [5318] = 2742, + [5319] = 2744, + [5320] = 2493, + [5321] = 2754, + [5322] = 2755, + [5323] = 2756, + [5324] = 2566, + [5325] = 2760, + [5326] = 2761, + [5327] = 2512, + [5328] = 2763, + [5329] = 2514, + [5330] = 2582, + [5331] = 2494, + [5332] = 2764, + [5333] = 2501, + [5334] = 2495, + [5335] = 2502, + [5336] = 2524, + [5337] = 2547, + [5338] = 2485, + [5339] = 2505, + [5340] = 2567, + [5341] = 2548, + [5342] = 2496, + [5343] = 2497, + [5344] = 1981, + [5345] = 2766, + [5346] = 2767, + [5347] = 2768, + [5348] = 2569, + [5349] = 2769, + [5350] = 2771, + [5351] = 2508, + [5352] = 2479, + [5353] = 2518, + [5354] = 2506, + [5355] = 2036, + [5356] = 2572, + [5357] = 2576, + [5358] = 2594, + [5359] = 2595, + [5360] = 2055, + [5361] = 2598, + [5362] = 2599, + [5363] = 2536, + [5364] = 2600, + [5365] = 2601, + [5366] = 2602, + [5367] = 2603, + [5368] = 2604, + [5369] = 2605, + [5370] = 2606, + [5371] = 2607, + [5372] = 2608, + [5373] = 2609, + [5374] = 2610, + [5375] = 2611, + [5376] = 2612, + [5377] = 2613, + [5378] = 2614, + [5379] = 2616, + [5380] = 2412, + [5381] = 2618, + [5382] = 2619, + [5383] = 2621, + [5384] = 2622, + [5385] = 2623, + [5386] = 2624, + [5387] = 2625, + [5388] = 2626, + [5389] = 2627, + [5390] = 2628, + [5391] = 2629, + [5392] = 2544, + [5393] = 2631, + [5394] = 2632, + [5395] = 2633, + [5396] = 2634, + [5397] = 2636, + [5398] = 2637, + [5399] = 2638, + [5400] = 2551, + [5401] = 2530, + [5402] = 2641, + [5403] = 2645, + [5404] = 2037, + [5405] = 2722, + [5406] = 2351, + [5407] = 2671, + [5408] = 2673, + [5409] = 2042, + [5410] = 2504, + [5411] = 2481, + [5412] = 2029, + [5413] = 2027, + [5414] = 2677, + [5415] = 2678, + [5416] = 2679, + [5417] = 2680, + [5418] = 2682, + [5419] = 2683, + [5420] = 2685, + [5421] = 2686, + [5422] = 2687, + [5423] = 2688, + [5424] = 2690, + [5425] = 2692, + [5426] = 2700, + [5427] = 2498, + [5428] = 2703, + [5429] = 2704, + [5430] = 2706, + [5431] = 2709, + [5432] = 2710, + [5433] = 2711, + [5434] = 2081, + [5435] = 2720, + [5436] = 2729, + [5437] = 2030, + [5438] = 2731, + [5439] = 2733, + [5440] = 2070, + [5441] = 2735, + [5442] = 2736, + [5443] = 2738, + [5444] = 2663, + [5445] = 2740, + [5446] = 2741, + [5447] = 2743, + [5448] = 2130, + [5449] = 2746, + [5450] = 2747, + [5451] = 2748, + [5452] = 2749, + [5453] = 2750, + [5454] = 2503, + [5455] = 2772, + [5456] = 1980, + [5457] = 2643, + [5458] = 2654, + [5459] = 2034, + [5460] = 2699, + [5461] = 2650, + [5462] = 2694, + [5463] = 2511, + [5464] = 2770, + [5465] = 2648, + [5466] = 2055, + [5467] = 2031, + [5468] = 2358, + [5469] = 2730, + [5470] = 2044, + [5471] = 2666, + [5472] = 2020, + [5473] = 2482, + [5474] = 2421, + [5475] = 2021, + [5476] = 2429, + [5477] = 2420, + [5478] = 2022, + [5479] = 2453, + [5480] = 2023, + [5481] = 2070, + [5482] = 1993, + [5483] = 2596, + [5484] = 2129, + [5485] = 2502, + [5486] = 1994, + [5487] = 2506, + [5488] = 1992, + [5489] = 2035, + [5490] = 2454, + [5491] = 2522, + [5492] = 2523, + [5493] = 2570, + [5494] = 2571, + [5495] = 2459, + [5496] = 2515, + [5497] = 2539, + [5498] = 2130, + [5499] = 2026, + [5500] = 2421, + [5501] = 2401, + [5502] = 2429, + [5503] = 2420, + [5504] = 2452, + [5505] = 2453, + [5506] = 2527, + [5507] = 2564, + [5508] = 2129, + [5509] = 2617, + [5510] = 2505, + [5511] = 2586, + [5512] = 2582, + [5513] = 2504, + [5514] = 2570, + [5515] = 2571, + [5516] = 2539, + [5517] = 2596, + [5518] = 2454, + [5519] = 2693, + [5520] = 2598, + [5521] = 2652, + [5522] = 2527, + [5523] = 2555, + [5524] = 2726, + [5525] = 2727, + [5526] = 2728, + [5527] = 2655, + [5528] = 2564, + [5529] = 2732, + [5530] = 2657, + [5531] = 2757, + [5532] = 2737, + [5533] = 2739, + [5534] = 2495, + [5535] = 2742, + [5536] = 2744, + [5537] = 2677, + [5538] = 2506, + [5539] = 2754, + [5540] = 2756, + [5541] = 2659, + [5542] = 2496, + [5543] = 2661, + [5544] = 2663, + [5545] = 2760, + [5546] = 2761, + [5547] = 2530, + [5548] = 2763, + [5549] = 1981, + [5550] = 2764, + [5551] = 2697, + [5552] = 2662, + [5553] = 2766, + [5554] = 2736, + [5555] = 2767, + [5556] = 2768, + [5557] = 2769, + [5558] = 2498, + [5559] = 2563, + [5560] = 2503, + [5561] = 2568, + [5562] = 2771, + [5563] = 2490, + [5564] = 2401, + [5565] = 2591, + [5566] = 2745, + [5567] = 2751, + [5568] = 2491, + [5569] = 2600, + [5570] = 2559, + [5571] = 2654, + [5572] = 2601, + [5573] = 2602, + [5574] = 2504, + [5575] = 2603, + [5576] = 2604, + [5577] = 2605, + [5578] = 2606, + [5579] = 2607, + [5580] = 2593, + [5581] = 2722, + [5582] = 2412, + [5583] = 2621, + [5584] = 2622, + [5585] = 2623, + [5586] = 2624, + [5587] = 2625, + [5588] = 2626, + [5589] = 2627, + [5590] = 2628, + [5591] = 2629, + [5592] = 2620, + [5593] = 2555, + [5594] = 2642, + [5595] = 2651, + [5596] = 2493, + [5597] = 2631, + [5598] = 2632, + [5599] = 2530, + [5600] = 2512, + [5601] = 2396, + [5602] = 2633, + [5603] = 2514, + [5604] = 2582, + [5605] = 2634, + [5606] = 2660, + [5607] = 2636, + [5608] = 2637, + [5609] = 2638, + [5610] = 2055, + [5611] = 2668, + [5612] = 2641, + [5613] = 2645, + [5614] = 2130, + [5615] = 2537, + [5616] = 2497, + [5617] = 1980, + [5618] = 2479, + [5619] = 2582, + [5620] = 2129, + [5621] = 2551, + [5622] = 2669, + [5623] = 2556, + [5624] = 2670, + [5625] = 2562, + [5626] = 2530, + [5627] = 2566, + [5628] = 2070, + [5629] = 2570, + [5630] = 2571, + [5631] = 2539, + [5632] = 2514, + [5633] = 2527, + [5634] = 2501, + [5635] = 2502, + [5636] = 2678, + [5637] = 2679, + [5638] = 2680, + [5639] = 2682, + [5640] = 2683, + [5641] = 2685, + [5642] = 2686, + [5643] = 2550, + [5644] = 2687, + [5645] = 2688, + [5646] = 2690, + [5647] = 2564, + [5648] = 2552, + [5649] = 2515, + [5650] = 2700, + [5651] = 2689, + [5652] = 2493, + [5653] = 2703, + [5654] = 2704, + [5655] = 1993, + [5656] = 1994, + [5657] = 1992, + [5658] = 2706, + [5659] = 2569, + [5660] = 2572, + [5661] = 2709, + [5662] = 2576, + [5663] = 2481, + [5664] = 2710, + [5665] = 2711, + [5666] = 2646, + [5667] = 2720, + [5668] = 2729, + [5669] = 2002, + [5670] = 2731, + [5671] = 2733, + [5672] = 2738, + [5673] = 2740, + [5674] = 2741, + [5675] = 2553, + [5676] = 2743, + [5677] = 2747, + [5678] = 2511, + [5679] = 2554, + [5680] = 2512, + [5681] = 2514, + [5682] = 2518, + [5683] = 2522, + [5684] = 2748, + [5685] = 2749, + [5686] = 2750, + [5687] = 2772, + [5688] = 2650, + [5689] = 5689, + [5690] = 2694, + [5691] = 2770, + [5692] = 2648, + [5693] = 2730, + [5694] = 2666, + [5695] = 2592, + [5696] = 2644, + [5697] = 2647, + [5698] = 2567, + [5699] = 2520, + [5700] = 2480, + [5701] = 2482, + [5702] = 2501, + [5703] = 2502, + [5704] = 2003, + [5705] = 2506, + [5706] = 2515, + [5707] = 2702, + [5708] = 2548, + [5709] = 2705, + [5710] = 2755, + [5711] = 2563, + [5712] = 2568, + [5713] = 2545, + [5714] = 2481, + [5715] = 2707, + [5716] = 2712, + [5717] = 2536, + [5718] = 2713, + [5719] = 2490, + [5720] = 2480, + [5721] = 2501, + [5722] = 2491, + [5723] = 2523, + [5724] = 2594, + [5725] = 2567, + [5726] = 2595, + [5727] = 2714, + [5728] = 1980, + [5729] = 2599, + [5730] = 2608, + [5731] = 2609, + [5732] = 2610, + [5733] = 2611, + [5734] = 2559, + [5735] = 2612, + [5736] = 2613, + [5737] = 5689, + [5738] = 2614, + [5739] = 2616, + [5740] = 2617, + [5741] = 2618, + [5742] = 2548, + [5743] = 2619, + [5744] = 2545, + [5745] = 2556, + [5746] = 2480, + [5747] = 2566, + [5748] = 2569, + [5749] = 2572, + [5750] = 2576, + [5751] = 2481, + [5752] = 2482, + [5753] = 2501, + [5754] = 2488, + [5755] = 2502, + [5756] = 2506, + [5757] = 2515, + [5758] = 2537, + [5759] = 2762, + [5760] = 2494, + [5761] = 2495, + [5762] = 5689, + [5763] = 2496, + [5764] = 2497, + [5765] = 2498, + [5766] = 2573, + [5767] = 2081, + [5768] = 2671, + [5769] = 2503, + [5770] = 2504, + [5771] = 2524, + [5772] = 2483, + [5773] = 2480, + [5774] = 2482, + [5775] = 2501, + [5776] = 2502, + [5777] = 2506, + [5778] = 2515, + [5779] = 2486, + [5780] = 2545, + [5781] = 2673, + [5782] = 2480, + [5783] = 2494, + [5784] = 2501, + [5785] = 2715, + [5786] = 2692, + [5787] = 2735, + [5788] = 2508, + [5789] = 2746, + [5790] = 2536, + [5791] = 2544, + [5792] = 2480, + [5793] = 2482, + [5794] = 2501, + [5795] = 2502, + [5796] = 2506, + [5797] = 2515, + [5798] = 2643, + [5799] = 2508, + [5800] = 2516, + [5801] = 2479, + [5802] = 2511, + [5803] = 2561, + [5804] = 2538, + [5805] = 2518, + [5806] = 2522, + [5807] = 2523, + [5808] = 2547, + [5809] = 2548, + [5810] = 2487, + [5811] = 2699, + [5812] = 2586, + [5813] = 2536, + [5814] = 2565, + [5815] = 2544, + [5816] = 5689, + [5817] = 2551, + [5818] = 2401, + [5819] = 2708, + [5820] = 2520, + [5821] = 2480, + [5822] = 2482, + [5823] = 2501, + [5824] = 2502, + [5825] = 2506, + [5826] = 2515, + [5827] = 2493, + [5828] = 2480, + [5829] = 2482, + [5830] = 2562, + [5831] = 2485, + [5832] = 2396, + [5833] = 2488, + [5834] = 2550, + [5835] = 2412, + [5836] = 2573, + [5837] = 2649, + [5838] = 2552, + [5839] = 2055, + [5840] = 2553, + [5841] = 2483, + [5842] = 2554, + [5843] = 2486, + [5844] = 2516, + [5845] = 2081, + [5846] = 2512, + [5847] = 2561, + [5848] = 2538, + [5849] = 2487, + [5850] = 2565, + [5851] = 2721, + [5852] = 1981, + [5853] = 2592, + [5854] = 2666, + [5855] = 2493, + [5856] = 2733, + [5857] = 2754, + [5858] = 2567, + [5859] = 2498, + [5860] = 2663, + [5861] = 2736, + [5862] = 2503, + [5863] = 2512, + [5864] = 2514, + [5865] = 2738, + [5866] = 2740, + [5867] = 2657, + [5868] = 2741, + [5869] = 2697, + [5870] = 2743, + [5871] = 2747, + [5872] = 2748, + [5873] = 2749, + [5874] = 2750, + [5875] = 2511, + [5876] = 2522, + [5877] = 2523, + [5878] = 2582, + [5879] = 2772, + [5880] = 2659, + [5881] = 2661, + [5882] = 2570, + [5883] = 2571, + [5884] = 2539, + [5885] = 2527, + [5886] = 2643, + [5887] = 2564, + [5888] = 2586, [5889] = 2562, - [5890] = 2738, - [5891] = 2742, - [5892] = 5751, - [5893] = 2563, - [5894] = 2564, - [5895] = 5758, - [5896] = 1957, - [5897] = 2593, - [5898] = 2596, - [5899] = 2597, - [5900] = 2688, - [5901] = 2566, - [5902] = 2568, - [5903] = 2569, - [5904] = 2571, - [5905] = 2572, - [5906] = 2573, - [5907] = 2575, - [5908] = 2576, - [5909] = 2577, - [5910] = 2578, - [5911] = 2579, - [5912] = 2580, - [5913] = 2582, - [5914] = 5758, - [5915] = 2583, - [5916] = 2585, - [5917] = 2586, - [5918] = 2588, - [5919] = 2589, - [5920] = 2590, - [5921] = 2591, - [5922] = 2593, - [5923] = 5758, - [5924] = 2463, - [5925] = 5758, - [5926] = 2598, - [5927] = 2596, - [5928] = 2597, - [5929] = 2598, - [5930] = 2745, - [5931] = 5758, - [5932] = 2599, - [5933] = 5758, - [5934] = 5758, - [5935] = 5758, - [5936] = 5758, - [5937] = 2465, - [5938] = 2601, - [5939] = 2605, - [5940] = 2606, - [5941] = 2607, - [5942] = 2610, - [5943] = 2612, - [5944] = 2613, - [5945] = 2614, - [5946] = 2615, - [5947] = 2617, - [5948] = 2618, - [5949] = 2530, - [5950] = 2622, - [5951] = 2746, - [5952] = 2624, - [5953] = 2625, - [5954] = 2626, - [5955] = 2627, - [5956] = 2628, - [5957] = 2629, - [5958] = 2630, - [5959] = 2631, - [5960] = 2633, - [5961] = 2634, - [5962] = 2635, - [5963] = 2636, - [5964] = 2637, - [5965] = 2638, - [5966] = 2639, - [5967] = 2599, - [5968] = 2466, - [5969] = 2582, - [5970] = 2480, - [5971] = 2649, - [5972] = 2650, - [5973] = 2467, - [5974] = 2736, - [5975] = 2737, - [5976] = 2685, - [5977] = 2654, - [5978] = 2651, - [5979] = 2560, - [5980] = 2736, - [5981] = 2655, - [5982] = 2053, - [5983] = 2657, - [5984] = 2717, - [5985] = 2718, - [5986] = 2721, - [5987] = 2743, - [5988] = 2748, - [5989] = 2752, - [5990] = 2753, - [5991] = 2715, - [5992] = 2531, - [5993] = 2533, - [5994] = 2534, - [5995] = 2535, - [5996] = 2536, - [5997] = 2537, - [5998] = 2538, - [5999] = 2659, - [6000] = 2737, - [6001] = 2708, - [6002] = 6002, - [6003] = 2582, - [6004] = 2612, - [6005] = 2627, - [6006] = 2667, - [6007] = 2668, - [6008] = 2662, - [6009] = 2668, - [6010] = 2673, - [6011] = 2682, - [6012] = 2683, - [6013] = 2684, - [6014] = 2749, - [6015] = 2663, - [6016] = 2664, - [6017] = 2710, - [6018] = 2701, - [6019] = 2675, - [6020] = 2539, - [6021] = 2612, - [6022] = 2696, - [6023] = 2486, - [6024] = 2540, - [6025] = 2541, - [6026] = 2711, - [6027] = 2563, - [6028] = 2564, - [6029] = 2542, - [6030] = 2543, - [6031] = 2702, - [6032] = 2627, - [6033] = 2703, - [6034] = 2544, - [6035] = 2657, - [6036] = 2738, - [6037] = 2742, - [6038] = 2545, - [6039] = 2691, - [6040] = 2692, - [6041] = 2516, - [6042] = 2047, - [6043] = 2693, - [6044] = 2694, - [6045] = 2695, - [6046] = 2696, - [6047] = 2697, - [6048] = 5751, - [6049] = 2698, - [6050] = 2546, - [6051] = 2719, - [6052] = 2646, - [6053] = 2601, - [6054] = 2547, - [6055] = 2708, - [6056] = 2709, - [6057] = 2710, - [6058] = 2711, - [6059] = 5758, - [6060] = 2673, - [6061] = 2566, - [6062] = 2605, - [6063] = 2606, - [6064] = 6064, - [6065] = 2472, - [6066] = 2607, - [6067] = 2610, - [6068] = 1958, - [6069] = 2568, - [6070] = 2109, - [6071] = 2592, - [6072] = 2569, - [6073] = 2600, - [6074] = 2602, - [6075] = 2611, - [6076] = 2549, - [6077] = 2571, - [6078] = 2649, - [6079] = 2650, - [6080] = 2572, - [6081] = 2521, - [6082] = 2528, - [6083] = 2495, - [6084] = 2483, - [6085] = 6085, - [6086] = 5758, - [6087] = 2620, - [6088] = 2473, - [6089] = 2550, - [6090] = 2573, - [6091] = 2551, - [6092] = 2727, - [6093] = 2575, - [6094] = 2474, - [6095] = 2684, - [6096] = 2576, - [6097] = 2683, - [6098] = 2613, - [6099] = 2614, - [6100] = 2615, - [6101] = 2487, - [6102] = 2617, - [6103] = 2618, - [6104] = 2530, - [6105] = 2622, - [6106] = 2728, - [6107] = 2456, - [6108] = 6108, - [6109] = 2488, - [6110] = 2697, - [6111] = 2694, - [6112] = 2624, - [6113] = 5751, - [6114] = 2642, - [6115] = 2552, - [6116] = 2553, - [6117] = 2554, - [6118] = 2555, - [6119] = 2717, - [6120] = 2557, - [6121] = 2656, - [6122] = 2718, - [6123] = 2698, - [6124] = 2736, - [6125] = 2729, - [6126] = 2737, - [6127] = 5758, - [6128] = 2558, - [6129] = 2475, - [6130] = 2701, - [6131] = 2625, - [6132] = 2626, - [6133] = 2730, - [6134] = 2731, - [6135] = 2685, - [6136] = 2685, - [6137] = 2490, - [6138] = 2628, - [6139] = 2556, - [6140] = 2629, - [6141] = 2733, - [6142] = 2102, - [6143] = 2476, - [6144] = 2491, - [6145] = 2485, - [6146] = 2646, - [6147] = 2559, - [6148] = 2492, - [6149] = 5751, - [6150] = 2493, - [6151] = 2630, - [6152] = 5758, - [6153] = 2478, - [6154] = 2631, - [6155] = 2735, - [6156] = 2561, - [6157] = 1969, - [6158] = 2587, - [6159] = 5751, - [6160] = 1970, - [6161] = 2649, - [6162] = 1971, - [6163] = 2650, - [6164] = 2633, - [6165] = 2721, - [6166] = 2577, - [6167] = 2578, - [6168] = 2634, - [6169] = 2594, - [6170] = 2739, - [6171] = 2579, - [6172] = 2580, - [6173] = 2635, - [6174] = 2743, - [6175] = 5751, - [6176] = 2745, - [6177] = 2748, - [6178] = 2581, - [6179] = 5758, - [6180] = 2562, - [6181] = 2740, - [6182] = 2741, - [6183] = 2640, - [6184] = 5751, - [6185] = 2658, - [6186] = 2643, - [6187] = 2750, - [6188] = 2645, - [6189] = 2595, - [6190] = 2636, - [6191] = 2752, - [6192] = 2637, - [6193] = 5751, - [6194] = 2638, - [6195] = 2639, - [6196] = 2753, - [6197] = 5758, + [5890] = 2563, + [5891] = 2568, + [5892] = 2490, + [5893] = 2491, + [5894] = 2559, + [5895] = 2537, + [5896] = 2756, + [5897] = 2654, + [5898] = 2573, + [5899] = 2483, + [5900] = 2662, + [5901] = 2550, + [5902] = 2552, + [5903] = 2553, + [5904] = 2554, + [5905] = 2486, + [5906] = 2516, + [5907] = 2561, + [5908] = 2538, + [5909] = 2487, + [5910] = 2565, + [5911] = 2755, + [5912] = 2504, + [5913] = 2650, + [5914] = 2694, + [5915] = 2770, + [5916] = 2594, + [5917] = 2595, + [5918] = 2648, + [5919] = 2599, + [5920] = 2608, + [5921] = 2609, + [5922] = 2610, + [5923] = 2611, + [5924] = 2612, + [5925] = 2613, + [5926] = 2614, + [5927] = 2616, + [5928] = 2617, + [5929] = 2618, + [5930] = 2619, + [5931] = 2548, + [5932] = 2668, + [5933] = 2730, + [5934] = 2692, + [5935] = 2669, + [5936] = 2760, + [5937] = 2666, + [5938] = 2735, + [5939] = 2746, + [5940] = 2761, + [5941] = 2763, + [5942] = 2764, + [5943] = 2699, + [5944] = 2130, + [5945] = 2670, + [5946] = 2722, + [5947] = 2766, + [5948] = 5948, + [5949] = 1981, + [5950] = 2081, + [5951] = 2545, + [5952] = 2767, + [5953] = 2555, + [5954] = 2768, + [5955] = 2556, + [5956] = 2769, + [5957] = 2566, + [5958] = 2569, + [5959] = 2129, + [5960] = 2572, + [5961] = 2576, + [5962] = 2745, + [5963] = 2751, + [5964] = 1980, + [5965] = 2771, + [5966] = 2481, + [5967] = 2642, + [5968] = 2651, + [5969] = 2762, + [5970] = 1993, + [5971] = 1994, + [5972] = 1992, + [5973] = 2488, + [5974] = 5974, + [5975] = 5975, + [5976] = 2745, + [5977] = 2751, + [5978] = 2494, + [5979] = 2642, + [5980] = 2651, + [5981] = 2762, + [5982] = 2495, + [5983] = 2524, + [5984] = 2649, + [5985] = 2496, + [5986] = 2497, + [5987] = 5974, + [5988] = 5975, + [5989] = 2547, + [5990] = 2660, + [5991] = 5991, + [5992] = 5974, + [5993] = 2485, + [5994] = 5975, + [5995] = 2505, + [5996] = 5974, + [5997] = 5975, + [5998] = 5998, + [5999] = 5974, + [6000] = 5975, + [6001] = 5975, + [6002] = 5974, + [6003] = 5975, + [6004] = 5974, + [6005] = 5975, + [6006] = 5974, + [6007] = 5975, + [6008] = 2508, + [6009] = 5974, + [6010] = 5975, + [6011] = 5974, + [6012] = 5975, + [6013] = 5974, + [6014] = 5975, + [6015] = 5974, + [6016] = 5975, + [6017] = 2479, + [6018] = 5974, + [6019] = 5975, + [6020] = 5974, + [6021] = 5975, + [6022] = 2591, + [6023] = 5975, + [6024] = 2518, + [6025] = 5975, + [6026] = 5975, + [6027] = 2536, + [6028] = 5975, + [6029] = 5975, + [6030] = 5975, + [6031] = 5975, + [6032] = 2544, + [6033] = 2551, + [6034] = 2596, + [6035] = 2454, + [6036] = 2693, + [6037] = 2593, + [6038] = 2689, + [6039] = 2598, + [6040] = 2745, + [6041] = 2751, + [6042] = 2755, + [6043] = 2594, + [6044] = 2595, + [6045] = 2599, + [6046] = 2608, + [6047] = 2609, + [6048] = 2610, + [6049] = 2611, + [6050] = 2612, + [6051] = 2520, + [6052] = 2614, + [6053] = 2616, + [6054] = 2617, + [6055] = 2618, + [6056] = 2619, + [6057] = 2692, + [6058] = 2735, + [6059] = 2530, + [6060] = 2746, + [6061] = 2699, + [6062] = 2722, + [6063] = 2600, + [6064] = 2601, + [6065] = 2602, + [6066] = 2603, + [6067] = 2604, + [6068] = 2605, + [6069] = 2606, + [6070] = 2607, + [6071] = 2642, + [6072] = 2651, + [6073] = 2621, + [6074] = 2622, + [6075] = 2762, + [6076] = 2623, + [6077] = 2624, + [6078] = 2625, + [6079] = 2626, + [6080] = 2627, + [6081] = 2628, + [6082] = 2629, + [6083] = 2631, + [6084] = 2632, + [6085] = 2633, + [6086] = 2634, + [6087] = 2636, + [6088] = 2637, + [6089] = 2638, + [6090] = 2070, + [6091] = 2641, + [6092] = 2645, + [6093] = 2620, + [6094] = 2702, + [6095] = 2705, + [6096] = 2707, + [6097] = 2708, + [6098] = 2712, + [6099] = 2693, + [6100] = 2713, + [6101] = 2714, + [6102] = 2715, + [6103] = 2591, + [6104] = 2592, + [6105] = 2593, + [6106] = 2620, + [6107] = 2644, + [6108] = 2646, + [6109] = 2647, + [6110] = 2649, + [6111] = 2652, + [6112] = 2655, + [6113] = 2657, + [6114] = 2659, + [6115] = 2661, + [6116] = 2662, + [6117] = 2671, + [6118] = 2673, + [6119] = 2668, + [6120] = 2669, + [6121] = 2670, + [6122] = 2596, + [6123] = 2689, + [6124] = 2702, + [6125] = 2705, + [6126] = 2707, + [6127] = 2708, + [6128] = 2712, + [6129] = 2713, + [6130] = 2714, + [6131] = 2715, + [6132] = 2677, + [6133] = 2721, + [6134] = 2726, + [6135] = 2727, + [6136] = 2728, + [6137] = 2721, + [6138] = 2732, + [6139] = 2737, + [6140] = 2739, + [6141] = 2742, + [6142] = 2744, + [6143] = 2754, + [6144] = 2755, + [6145] = 2756, + [6146] = 2760, + [6147] = 2761, + [6148] = 2763, + [6149] = 2764, + [6150] = 2726, + [6151] = 2766, + [6152] = 2767, + [6153] = 2768, + [6154] = 2769, + [6155] = 2771, + [6156] = 2757, + [6157] = 6157, + [6158] = 2594, + [6159] = 2595, + [6160] = 2757, + [6161] = 2678, + [6162] = 2679, + [6163] = 2598, + [6164] = 2599, + [6165] = 2680, + [6166] = 2600, + [6167] = 2601, + [6168] = 2602, + [6169] = 2603, + [6170] = 2604, + [6171] = 2682, + [6172] = 2605, + [6173] = 2606, + [6174] = 2607, + [6175] = 2608, + [6176] = 2683, + [6177] = 2609, + [6178] = 2610, + [6179] = 2611, + [6180] = 2649, + [6181] = 2685, + [6182] = 2686, + [6183] = 2687, + [6184] = 2688, + [6185] = 2690, + [6186] = 2644, + [6187] = 2646, + [6188] = 2647, + [6189] = 2612, + [6190] = 2613, + [6191] = 2614, + [6192] = 2616, + [6193] = 2617, + [6194] = 2618, + [6195] = 2454, + [6196] = 2700, + [6197] = 2703, [6198] = 2704, - [6199] = 2531, - [6200] = 2494, - [6201] = 2647, - [6202] = 2533, - [6203] = 2691, - [6204] = 2692, - [6205] = 2693, - [6206] = 2534, - [6207] = 5758, - [6208] = 2535, - [6209] = 2667, - [6210] = 2709, - [6211] = 6211, - [6212] = 2707, - [6213] = 2537, - [6214] = 2638, - [6215] = 6215, - [6216] = 2466, - [6217] = 6217, - [6218] = 6218, - [6219] = 2568, - [6220] = 2474, - [6221] = 6221, - [6222] = 6222, - [6223] = 2493, - [6224] = 6217, - [6225] = 2633, - [6226] = 2708, - [6227] = 2709, - [6228] = 2486, - [6229] = 2566, - [6230] = 6230, - [6231] = 6221, - [6232] = 6232, - [6233] = 6221, - [6234] = 6232, - [6235] = 2563, - [6236] = 2637, - [6237] = 2611, - [6238] = 6232, - [6239] = 2581, - [6240] = 2630, - [6241] = 2628, - [6242] = 2564, - [6243] = 2467, - [6244] = 2473, - [6245] = 2478, - [6246] = 2488, - [6247] = 2646, - [6248] = 2469, - [6249] = 2478, - [6250] = 2594, - [6251] = 2620, - [6252] = 2629, - [6253] = 2597, - [6254] = 2627, - [6255] = 2485, - [6256] = 6217, - [6257] = 2717, - [6258] = 2642, - [6259] = 2109, - [6260] = 6217, - [6261] = 2102, - [6262] = 2691, - [6263] = 2631, - [6264] = 2727, - [6265] = 2692, - [6266] = 2728, - [6267] = 2730, - [6268] = 2592, - [6269] = 2731, - [6270] = 2735, - [6271] = 2718, - [6272] = 2739, - [6273] = 2693, - [6274] = 2656, - [6275] = 2740, - [6276] = 2694, - [6277] = 2741, - [6278] = 2695, - [6279] = 2696, - [6280] = 2688, - [6281] = 2697, - [6282] = 2698, - [6283] = 6221, - [6284] = 6217, - [6285] = 2701, - [6286] = 6232, - [6287] = 6287, - [6288] = 2053, - [6289] = 2465, - [6290] = 2456, - [6291] = 6217, - [6292] = 6217, - [6293] = 6217, - [6294] = 6217, - [6295] = 2601, - [6296] = 6217, - [6297] = 6222, - [6298] = 6221, - [6299] = 6217, - [6300] = 2476, - [6301] = 2684, - [6302] = 6222, - [6303] = 6222, - [6304] = 6217, - [6305] = 6305, - [6306] = 6230, - [6307] = 6287, - [6308] = 6211, - [6309] = 6222, - [6310] = 6310, - [6311] = 6311, - [6312] = 6312, - [6313] = 6222, - [6314] = 6222, - [6315] = 6305, - [6316] = 6230, - [6317] = 6287, - [6318] = 6211, - [6319] = 6310, - [6320] = 6311, - [6321] = 2472, - [6322] = 6312, - [6323] = 6305, - [6324] = 6230, - [6325] = 2539, - [6326] = 6287, - [6327] = 6211, - [6328] = 2540, - [6329] = 2541, - [6330] = 6310, - [6331] = 6311, - [6332] = 2542, - [6333] = 2543, - [6334] = 6215, - [6335] = 6312, - [6336] = 2544, - [6337] = 2545, - [6338] = 6305, - [6339] = 6230, - [6340] = 6221, - [6341] = 6287, - [6342] = 2683, - [6343] = 2546, - [6344] = 6211, - [6345] = 6310, - [6346] = 6311, - [6347] = 6221, - [6348] = 6232, - [6349] = 6232, - [6350] = 6312, - [6351] = 2547, - [6352] = 6215, - [6353] = 6305, - [6354] = 6230, - [6355] = 6287, - [6356] = 6211, - [6357] = 2736, - [6358] = 2737, - [6359] = 6310, - [6360] = 6311, - [6361] = 2549, - [6362] = 6312, - [6363] = 2475, - [6364] = 2640, - [6365] = 6305, - [6366] = 6230, - [6367] = 2538, - [6368] = 6287, - [6369] = 6211, - [6370] = 2550, - [6371] = 6310, - [6372] = 6311, - [6373] = 2729, - [6374] = 2643, - [6375] = 2487, - [6376] = 6312, - [6377] = 2732, - [6378] = 2624, - [6379] = 6305, - [6380] = 6230, - [6381] = 2710, - [6382] = 6287, - [6383] = 6211, - [6384] = 6310, - [6385] = 6311, - [6386] = 6221, - [6387] = 6387, - [6388] = 2551, - [6389] = 6312, - [6390] = 6232, - [6391] = 6305, - [6392] = 6230, - [6393] = 6287, - [6394] = 6211, - [6395] = 2491, - [6396] = 6310, - [6397] = 6311, - [6398] = 6312, - [6399] = 2552, - [6400] = 2711, - [6401] = 6305, - [6402] = 6230, - [6403] = 2639, - [6404] = 6287, - [6405] = 6211, - [6406] = 6221, - [6407] = 2734, - [6408] = 6310, - [6409] = 6311, - [6410] = 6312, - [6411] = 6232, - [6412] = 2485, - [6413] = 6305, - [6414] = 6230, - [6415] = 2749, - [6416] = 6287, - [6417] = 6211, - [6418] = 2488, - [6419] = 6310, - [6420] = 6311, - [6421] = 2553, - [6422] = 2554, - [6423] = 2750, - [6424] = 6312, - [6425] = 2751, - [6426] = 2645, - [6427] = 6305, - [6428] = 6230, - [6429] = 2525, - [6430] = 6287, - [6431] = 6211, - [6432] = 6310, - [6433] = 6311, - [6434] = 6232, - [6435] = 2647, - [6436] = 6312, - [6437] = 2456, - [6438] = 2654, - [6439] = 6305, - [6440] = 6230, - [6441] = 6287, - [6442] = 6211, - [6443] = 2651, - [6444] = 6310, - [6445] = 6311, - [6446] = 2560, - [6447] = 2555, - [6448] = 1958, - [6449] = 6312, - [6450] = 2558, - [6451] = 2706, - [6452] = 2492, - [6453] = 2559, - [6454] = 2625, - [6455] = 6221, - [6456] = 2618, - [6457] = 6232, - [6458] = 2626, - [6459] = 2685, - [6460] = 6311, - [6461] = 2746, - [6462] = 6221, - [6463] = 2494, - [6464] = 6232, - [6465] = 6232, - [6466] = 2634, - [6467] = 2600, - [6468] = 6232, - [6469] = 2516, - [6470] = 2582, - [6471] = 6215, - [6472] = 6232, - [6473] = 2721, - [6474] = 6217, - [6475] = 6222, - [6476] = 2657, - [6477] = 6310, - [6478] = 6232, - [6479] = 6217, - [6480] = 6215, - [6481] = 1969, - [6482] = 2712, - [6483] = 2659, - [6484] = 2556, - [6485] = 6232, - [6486] = 1970, - [6487] = 2473, - [6488] = 2635, - [6489] = 6489, - [6490] = 2494, - [6491] = 6305, - [6492] = 6222, - [6493] = 2745, - [6494] = 2622, - [6495] = 6305, - [6496] = 6230, - [6497] = 2569, - [6498] = 2571, - [6499] = 6221, - [6500] = 6232, - [6501] = 2467, - [6502] = 6215, - [6503] = 2572, - [6504] = 2573, - [6505] = 2575, - [6506] = 2576, - [6507] = 2480, - [6508] = 2577, - [6509] = 2578, - [6510] = 2579, - [6511] = 2580, - [6512] = 2463, - [6513] = 1957, - [6514] = 2472, - [6515] = 2475, - [6516] = 2476, - [6517] = 6217, - [6518] = 2713, - [6519] = 2493, - [6520] = 2653, - [6521] = 2661, - [6522] = 2602, - [6523] = 2595, - [6524] = 6287, - [6525] = 6211, - [6526] = 2490, - [6527] = 2700, - [6528] = 2583, - [6529] = 2715, - [6530] = 2525, - [6531] = 2585, - [6532] = 2586, - [6533] = 2588, - [6534] = 2719, - [6535] = 2636, - [6536] = 6217, - [6537] = 2589, - [6538] = 2590, - [6539] = 2658, - [6540] = 2591, - [6541] = 6222, - [6542] = 2720, - [6543] = 2587, - [6544] = 2593, - [6545] = 6221, - [6546] = 6310, - [6547] = 6311, - [6548] = 6221, - [6549] = 6232, - [6550] = 6232, - [6551] = 6215, - [6552] = 2662, - [6553] = 2663, - [6554] = 2521, - [6555] = 6221, - [6556] = 2733, - [6557] = 2612, - [6558] = 2714, - [6559] = 6232, - [6560] = 2596, - [6561] = 6217, - [6562] = 6215, - [6563] = 6222, - [6564] = 2598, - [6565] = 6215, - [6566] = 2599, - [6567] = 2480, - [6568] = 6312, - [6569] = 2475, - [6570] = 2493, - [6571] = 2716, - [6572] = 6222, - [6573] = 6215, - [6574] = 2744, - [6575] = 2532, - [6576] = 2738, - [6577] = 2742, - [6578] = 6215, - [6579] = 6217, - [6580] = 6215, - [6581] = 6222, - [6582] = 2461, - [6583] = 6215, - [6584] = 6222, - [6585] = 6215, - [6586] = 6222, - [6587] = 6222, - [6588] = 6222, - [6589] = 2491, - [6590] = 2528, - [6591] = 6222, - [6592] = 2495, - [6593] = 2492, - [6594] = 6222, - [6595] = 6222, - [6596] = 2649, - [6597] = 2650, - [6598] = 1971, - [6599] = 2557, - [6600] = 2605, - [6601] = 6222, - [6602] = 6222, - [6603] = 6222, - [6604] = 6222, - [6605] = 6222, - [6606] = 6312, - [6607] = 6217, - [6608] = 2483, - [6609] = 6221, - [6610] = 6232, - [6611] = 2606, - [6612] = 6215, - [6613] = 2664, - [6614] = 2607, - [6615] = 2743, - [6616] = 2748, - [6617] = 2752, - [6618] = 2753, - [6619] = 2531, - [6620] = 2610, - [6621] = 2613, - [6622] = 2614, - [6623] = 2615, - [6624] = 2617, - [6625] = 2530, - [6626] = 6217, - [6627] = 6222, - [6628] = 2533, - [6629] = 2480, - [6630] = 2561, - [6631] = 2562, - [6632] = 2675, - [6633] = 2534, - [6634] = 6221, - [6635] = 6232, - [6636] = 6215, - [6637] = 2463, - [6638] = 2535, - [6639] = 2469, - [6640] = 2536, - [6641] = 6222, - [6642] = 2702, - [6643] = 2667, - [6644] = 2703, - [6645] = 2668, - [6646] = 2673, - [6647] = 2682, - [6648] = 2704, - [6649] = 2655, - [6650] = 2480, - [6651] = 2739, - [6652] = 2566, - [6653] = 2475, - [6654] = 2743, - [6655] = 2737, - [6656] = 2568, - [6657] = 2601, - [6658] = 6658, - [6659] = 2569, - [6660] = 2700, - [6661] = 2605, - [6662] = 2571, - [6663] = 2572, - [6664] = 2606, - [6665] = 2573, - [6666] = 2607, - [6667] = 2610, - [6668] = 2556, - [6669] = 2613, - [6670] = 2614, - [6671] = 2657, - [6672] = 2697, - [6673] = 2710, - [6674] = 2711, - [6675] = 2615, - [6676] = 2617, - [6677] = 2709, - [6678] = 2562, - [6679] = 2712, - [6680] = 2618, - [6681] = 2714, - [6682] = 2530, - [6683] = 2717, - [6684] = 2698, - [6685] = 2706, - [6686] = 6658, - [6687] = 6687, - [6688] = 2622, - [6689] = 2707, - [6690] = 6687, - [6691] = 2624, - [6692] = 6692, - [6693] = 2467, - [6694] = 2685, - [6695] = 2718, - [6696] = 2721, - [6697] = 2575, - [6698] = 2743, - [6699] = 2752, - [6700] = 2748, - [6701] = 2625, - [6702] = 2716, - [6703] = 2753, - [6704] = 2626, - [6705] = 2720, - [6706] = 2628, - [6707] = 2629, - [6708] = 2630, - [6709] = 2631, - [6710] = 2752, - [6711] = 2753, - [6712] = 2576, - [6713] = 2531, - [6714] = 6714, - [6715] = 2662, - [6716] = 2533, - [6717] = 2534, - [6718] = 2535, - [6719] = 2736, - [6720] = 2633, - [6721] = 2634, - [6722] = 2635, - [6723] = 2636, - [6724] = 2536, - [6725] = 6725, - [6726] = 2637, - [6727] = 2537, - [6728] = 2538, - [6729] = 6658, - [6730] = 2638, - [6731] = 2692, - [6732] = 2577, - [6733] = 2639, - [6734] = 2578, - [6735] = 2744, - [6736] = 2532, - [6737] = 2627, - [6738] = 2582, - [6739] = 2701, - [6740] = 2579, - [6741] = 2719, - [6742] = 2740, - [6743] = 2580, - [6744] = 2738, - [6745] = 2713, - [6746] = 6746, - [6747] = 2612, - [6748] = 2627, - [6749] = 2656, - [6750] = 6658, - [6751] = 2583, - [6752] = 2550, - [6753] = 2742, - [6754] = 2728, - [6755] = 2657, - [6756] = 2729, - [6757] = 2476, - [6758] = 2732, - [6759] = 2585, - [6760] = 2715, - [6761] = 6658, - [6762] = 2533, - [6763] = 2663, - [6764] = 2595, - [6765] = 2534, - [6766] = 2535, - [6767] = 2734, - [6768] = 2586, - [6769] = 2588, - [6770] = 2589, - [6771] = 2536, - [6772] = 2537, - [6773] = 6218, - [6774] = 2590, - [6775] = 2591, - [6776] = 2478, - [6777] = 2593, - [6778] = 2475, - [6779] = 2703, - [6780] = 2549, - [6781] = 2587, - [6782] = 6658, - [6783] = 2551, - [6784] = 2684, - [6785] = 6658, - [6786] = 2695, - [6787] = 2685, - [6788] = 2651, - [6789] = 2667, - [6790] = 2737, - [6791] = 2668, - [6792] = 6658, - [6793] = 2560, - [6794] = 2552, - [6795] = 2696, - [6796] = 2657, - [6797] = 2717, - [6798] = 2718, - [6799] = 2721, - [6800] = 2743, - [6801] = 2748, - [6802] = 2752, - [6803] = 2753, - [6804] = 2531, - [6805] = 2533, - [6806] = 2534, - [6807] = 2535, - [6808] = 2536, - [6809] = 2537, - [6810] = 2538, - [6811] = 2748, - [6812] = 2553, - [6813] = 2582, - [6814] = 2649, - [6815] = 1969, - [6816] = 2650, - [6817] = 2612, - [6818] = 2627, - [6819] = 1970, - [6820] = 2749, - [6821] = 1971, - [6822] = 2702, - [6823] = 2554, - [6824] = 2741, - [6825] = 6825, - [6826] = 2664, - [6827] = 2750, - [6828] = 2701, - [6829] = 2555, - [6830] = 2673, - [6831] = 2642, - [6832] = 2582, - [6833] = 6658, - [6834] = 2731, - [6835] = 2717, - [6836] = 2675, - [6837] = 2596, - [6838] = 2751, - [6839] = 2473, - [6840] = 2597, - [6841] = 2598, - [6842] = 2557, - [6843] = 2647, - [6844] = 2704, - [6845] = 2649, - [6846] = 2650, - [6847] = 2735, - [6848] = 2691, - [6849] = 2599, - [6850] = 2594, - [6851] = 2592, - [6852] = 6658, - [6853] = 2718, - [6854] = 6658, - [6855] = 2558, - [6856] = 2493, - [6857] = 2658, - [6858] = 2693, - [6859] = 2694, - [6860] = 2612, - [6861] = 2563, - [6862] = 2682, - [6863] = 2745, - [6864] = 6658, - [6865] = 2653, - [6866] = 2701, - [6867] = 2736, - [6868] = 2683, - [6869] = 6869, - [6870] = 2655, - [6871] = 2600, - [6872] = 2688, - [6873] = 2602, - [6874] = 2538, - [6875] = 6875, - [6876] = 2539, - [6877] = 2540, - [6878] = 2490, - [6879] = 6879, - [6880] = 2564, - [6881] = 2611, - [6882] = 2541, - [6883] = 2542, - [6884] = 2543, - [6885] = 2620, + [6199] = 2619, + [6200] = 2706, + [6201] = 2621, + [6202] = 2622, + [6203] = 2623, + [6204] = 2624, + [6205] = 2625, + [6206] = 2626, + [6207] = 2627, + [6208] = 2628, + [6209] = 2629, + [6210] = 2631, + [6211] = 2632, + [6212] = 2633, + [6213] = 2663, + [6214] = 2634, + [6215] = 2636, + [6216] = 2637, + [6217] = 2638, + [6218] = 2641, + [6219] = 2645, + [6220] = 2727, + [6221] = 2728, + [6222] = 2660, + [6223] = 2697, + [6224] = 2671, + [6225] = 2673, + [6226] = 2652, + [6227] = 2677, + [6228] = 2678, + [6229] = 2679, + [6230] = 2680, + [6231] = 2682, + [6232] = 2683, + [6233] = 2685, + [6234] = 2686, + [6235] = 2687, + [6236] = 2688, + [6237] = 2690, + [6238] = 2692, + [6239] = 2700, + [6240] = 2703, + [6241] = 2732, + [6242] = 2704, + [6243] = 2706, + [6244] = 2709, + [6245] = 2710, + [6246] = 2711, + [6247] = 2655, + [6248] = 2720, + [6249] = 2454, + [6250] = 2709, + [6251] = 2710, + [6252] = 2711, + [6253] = 2720, + [6254] = 2737, + [6255] = 2729, + [6256] = 2731, + [6257] = 2733, + [6258] = 2729, + [6259] = 2739, + [6260] = 2731, + [6261] = 2735, + [6262] = 2736, + [6263] = 2738, + [6264] = 2740, + [6265] = 2741, + [6266] = 2743, + [6267] = 2746, + [6268] = 2747, + [6269] = 2748, + [6270] = 2749, + [6271] = 2750, + [6272] = 2772, + [6273] = 2742, + [6274] = 2643, + [6275] = 2654, + [6276] = 2699, + [6277] = 2650, + [6278] = 2694, + [6279] = 2770, + [6280] = 2648, + [6281] = 2730, + [6282] = 2744, + [6283] = 2613, + [6284] = 6284, + [6285] = 2690, + [6286] = 2700, + [6287] = 2130, + [6288] = 6288, + [6289] = 6289, + [6290] = 2703, + [6291] = 2704, + [6292] = 2706, + [6293] = 2709, + [6294] = 6294, + [6295] = 6295, + [6296] = 2710, + [6297] = 2711, + [6298] = 2129, + [6299] = 2720, + [6300] = 6284, + [6301] = 6301, + [6302] = 6302, + [6303] = 2729, + [6304] = 2731, + [6305] = 2733, + [6306] = 2504, + [6307] = 2614, + [6308] = 2567, + [6309] = 2738, + [6310] = 2740, + [6311] = 2741, + [6312] = 2743, + [6313] = 2454, + [6314] = 2747, + [6315] = 2748, + [6316] = 2749, + [6317] = 2750, + [6318] = 2772, + [6319] = 2582, + [6320] = 2650, + [6321] = 2694, + [6322] = 2770, + [6323] = 2648, + [6324] = 2730, + [6325] = 2666, + [6326] = 2599, + [6327] = 6288, + [6328] = 2668, + [6329] = 2592, + [6330] = 6289, + [6331] = 2616, + [6332] = 2617, + [6333] = 2512, + [6334] = 2514, + [6335] = 2669, + [6336] = 6336, + [6337] = 2670, + [6338] = 2618, + [6339] = 1980, + [6340] = 2619, + [6341] = 2598, + [6342] = 2689, + [6343] = 2497, + [6344] = 2697, + [6345] = 2562, + [6346] = 2702, + [6347] = 6284, + [6348] = 2705, + [6349] = 2644, + [6350] = 2707, + [6351] = 2712, + [6352] = 2713, + [6353] = 2714, + [6354] = 2582, + [6355] = 2512, + [6356] = 2570, + [6357] = 2571, + [6358] = 2539, + [6359] = 2527, + [6360] = 2715, + [6361] = 2564, + [6362] = 2514, + [6363] = 2497, + [6364] = 2479, + [6365] = 2551, + [6366] = 2530, + [6367] = 2486, + [6368] = 2692, + [6369] = 2495, + [6370] = 2654, + [6371] = 2563, + [6372] = 2548, + [6373] = 2677, + [6374] = 2568, + [6375] = 6375, + [6376] = 2490, + [6377] = 2491, + [6378] = 2559, + [6379] = 2081, + [6380] = 2537, + [6381] = 2508, + [6382] = 6382, + [6383] = 2755, + [6384] = 2550, + [6385] = 2552, + [6386] = 2553, + [6387] = 2554, + [6388] = 6388, + [6389] = 2479, + [6390] = 6390, + [6391] = 2721, + [6392] = 6336, + [6393] = 2745, + [6394] = 2751, + [6395] = 6395, + [6396] = 2481, + [6397] = 6375, + [6398] = 2454, + [6399] = 6375, + [6400] = 2726, + [6401] = 6375, + [6402] = 2727, + [6403] = 6382, + [6404] = 2511, + [6405] = 2728, + [6406] = 6375, + [6407] = 2732, + [6408] = 2737, + [6409] = 2739, + [6410] = 2555, + [6411] = 6375, + [6412] = 6301, + [6413] = 6288, + [6414] = 6289, + [6415] = 2518, + [6416] = 6294, + [6417] = 6295, + [6418] = 2522, + [6419] = 2523, + [6420] = 6284, + [6421] = 6301, + [6422] = 6302, + [6423] = 6382, + [6424] = 6424, + [6425] = 2545, + [6426] = 6288, + [6427] = 6289, + [6428] = 6294, + [6429] = 6295, + [6430] = 6284, + [6431] = 6301, + [6432] = 6302, + [6433] = 2556, + [6434] = 2742, + [6435] = 2744, + [6436] = 6288, + [6437] = 6289, + [6438] = 6294, + [6439] = 6295, + [6440] = 6284, + [6441] = 6301, + [6442] = 2608, + [6443] = 6302, + [6444] = 6288, + [6445] = 6289, + [6446] = 6294, + [6447] = 6295, + [6448] = 6284, + [6449] = 6301, + [6450] = 2609, + [6451] = 6302, + [6452] = 2610, + [6453] = 2566, + [6454] = 6288, + [6455] = 6289, + [6456] = 6294, + [6457] = 6295, + [6458] = 2754, + [6459] = 6284, + [6460] = 6301, + [6461] = 1993, + [6462] = 6302, + [6463] = 2756, + [6464] = 2569, + [6465] = 6288, + [6466] = 6289, + [6467] = 6294, + [6468] = 6295, + [6469] = 2760, + [6470] = 2735, + [6471] = 6284, + [6472] = 6301, + [6473] = 2761, + [6474] = 2572, + [6475] = 6302, + [6476] = 2763, + [6477] = 2764, + [6478] = 6288, + [6479] = 6289, + [6480] = 2516, + [6481] = 6294, + [6482] = 6295, + [6483] = 2766, + [6484] = 6284, + [6485] = 6301, + [6486] = 6302, + [6487] = 2767, + [6488] = 6288, + [6489] = 6289, + [6490] = 6294, + [6491] = 6295, + [6492] = 6284, + [6493] = 6301, + [6494] = 2768, + [6495] = 6302, + [6496] = 1981, + [6497] = 6288, + [6498] = 6289, + [6499] = 6294, + [6500] = 6295, + [6501] = 6284, + [6502] = 6301, + [6503] = 6302, + [6504] = 2769, + [6505] = 2771, + [6506] = 6288, + [6507] = 6289, + [6508] = 2576, + [6509] = 6294, + [6510] = 6295, + [6511] = 2496, + [6512] = 2504, + [6513] = 6284, + [6514] = 6301, + [6515] = 2561, + [6516] = 6375, + [6517] = 6382, + [6518] = 6302, + [6519] = 6288, + [6520] = 6289, + [6521] = 6294, + [6522] = 6295, + [6523] = 2494, + [6524] = 2688, + [6525] = 6302, + [6526] = 6288, + [6527] = 6289, + [6528] = 6294, + [6529] = 6295, + [6530] = 2536, + [6531] = 6284, + [6532] = 6301, + [6533] = 2538, + [6534] = 6388, + [6535] = 6302, + [6536] = 6390, + [6537] = 6336, + [6538] = 2487, + [6539] = 2548, + [6540] = 2600, + [6541] = 6294, + [6542] = 6295, + [6543] = 2565, + [6544] = 2601, + [6545] = 2602, + [6546] = 2603, + [6547] = 2604, + [6548] = 2605, + [6549] = 2606, + [6550] = 2607, + [6551] = 2746, + [6552] = 6375, + [6553] = 2524, + [6554] = 6382, + [6555] = 2481, + [6556] = 6388, + [6557] = 6390, + [6558] = 6336, + [6559] = 2671, + [6560] = 2673, + [6561] = 6375, + [6562] = 6382, + [6563] = 2547, + [6564] = 6336, + [6565] = 6382, + [6566] = 2660, + [6567] = 6375, + [6568] = 6382, + [6569] = 2736, + [6570] = 6375, + [6571] = 1994, + [6572] = 6388, + [6573] = 6390, + [6574] = 6336, + [6575] = 1992, + [6576] = 2520, + [6577] = 2485, + [6578] = 6375, + [6579] = 2505, + [6580] = 6382, + [6581] = 2757, + [6582] = 6388, + [6583] = 6390, + [6584] = 2621, + [6585] = 6336, + [6586] = 2622, + [6587] = 2623, + [6588] = 2530, + [6589] = 2663, + [6590] = 6375, + [6591] = 2624, + [6592] = 6382, + [6593] = 2699, + [6594] = 6388, + [6595] = 6390, + [6596] = 6302, + [6597] = 2625, + [6598] = 6336, + [6599] = 2545, + [6600] = 2493, + [6601] = 6375, + [6602] = 2626, + [6603] = 6382, + [6604] = 2494, + [6605] = 2596, + [6606] = 6388, + [6607] = 2544, + [6608] = 6390, + [6609] = 2508, + [6610] = 2627, + [6611] = 2536, + [6612] = 2544, + [6613] = 6336, + [6614] = 2493, + [6615] = 6375, + [6616] = 2628, + [6617] = 6382, + [6618] = 2722, + [6619] = 6388, + [6620] = 6390, + [6621] = 2629, + [6622] = 6336, + [6623] = 6623, + [6624] = 6388, + [6625] = 6390, + [6626] = 6375, + [6627] = 6382, + [6628] = 2591, + [6629] = 6388, + [6630] = 6390, + [6631] = 2642, + [6632] = 2593, + [6633] = 6375, + [6634] = 6382, + [6635] = 2586, + [6636] = 2573, + [6637] = 2651, + [6638] = 6388, + [6639] = 6390, + [6640] = 2631, + [6641] = 2632, + [6642] = 2633, + [6643] = 2634, + [6644] = 2620, + [6645] = 6375, + [6646] = 2483, + [6647] = 6388, + [6648] = 6390, + [6649] = 2636, + [6650] = 2708, + [6651] = 6375, + [6652] = 2637, + [6653] = 2693, + [6654] = 6388, + [6655] = 6390, + [6656] = 2638, + [6657] = 2488, + [6658] = 2646, + [6659] = 6382, + [6660] = 6375, + [6661] = 6336, + [6662] = 2641, + [6663] = 2545, + [6664] = 2647, + [6665] = 6388, + [6666] = 6390, + [6667] = 2594, + [6668] = 2536, + [6669] = 2649, + [6670] = 6382, + [6671] = 6388, + [6672] = 6336, + [6673] = 6390, + [6674] = 2551, + [6675] = 2645, + [6676] = 2498, + [6677] = 6336, + [6678] = 6336, + [6679] = 6382, + [6680] = 6336, + [6681] = 6382, + [6682] = 6336, + [6683] = 6382, + [6684] = 6382, + [6685] = 6382, + [6686] = 2595, + [6687] = 6382, + [6688] = 2611, + [6689] = 2643, + [6690] = 6388, + [6691] = 6390, + [6692] = 2652, + [6693] = 2762, + [6694] = 2655, + [6695] = 6388, + [6696] = 6382, + [6697] = 6382, + [6698] = 6382, + [6699] = 6382, + [6700] = 6382, + [6701] = 6390, + [6702] = 2657, + [6703] = 6390, + [6704] = 2503, + [6705] = 2612, + [6706] = 2678, + [6707] = 2659, + [6708] = 6390, + [6709] = 2661, + [6710] = 6390, + [6711] = 2679, + [6712] = 2680, + [6713] = 2662, + [6714] = 6390, + [6715] = 2682, + [6716] = 2683, + [6717] = 2613, + [6718] = 6390, + [6719] = 2685, + [6720] = 2686, + [6721] = 2687, + [6722] = 6301, + [6723] = 2602, + [6724] = 2654, + [6725] = 2689, + [6726] = 6726, + [6727] = 2497, + [6728] = 2722, + [6729] = 6726, + [6730] = 6730, + [6731] = 6726, + [6732] = 2702, + [6733] = 2705, + [6734] = 6726, + [6735] = 6726, + [6736] = 2707, + [6737] = 2745, + [6738] = 2751, + [6739] = 6726, + [6740] = 2708, + [6741] = 2712, + [6742] = 2713, + [6743] = 6726, + [6744] = 2642, + [6745] = 2651, + [6746] = 2714, + [6747] = 2762, + [6748] = 6726, + [6749] = 2715, + [6750] = 1993, + [6751] = 6726, + [6752] = 2735, + [6753] = 2738, + [6754] = 2740, + [6755] = 6726, + [6756] = 2741, + [6757] = 2743, + [6758] = 2729, + [6759] = 6726, + [6760] = 2736, + [6761] = 2699, + [6762] = 1994, + [6763] = 1992, + [6764] = 2594, + [6765] = 2755, + [6766] = 2731, + [6767] = 2747, + [6768] = 2520, + [6769] = 2748, + [6770] = 2749, + [6771] = 2591, + [6772] = 6772, + [6773] = 2693, + [6774] = 6395, + [6775] = 2595, + [6776] = 6776, + [6777] = 2596, + [6778] = 2592, + [6779] = 2593, + [6780] = 6780, + [6781] = 2598, + [6782] = 2721, + [6783] = 2726, + [6784] = 2727, + [6785] = 2750, + [6786] = 2599, + [6787] = 2600, + [6788] = 2601, + [6789] = 2728, + [6790] = 2524, + [6791] = 2603, + [6792] = 2604, + [6793] = 2732, + [6794] = 2605, + [6795] = 2737, + [6796] = 2739, + [6797] = 2620, + [6798] = 2742, + [6799] = 2545, + [6800] = 2606, + [6801] = 2607, + [6802] = 6726, + [6803] = 2608, + [6804] = 2755, + [6805] = 2594, + [6806] = 2595, + [6807] = 2599, + [6808] = 2609, + [6809] = 2608, + [6810] = 2609, + [6811] = 2610, + [6812] = 2611, + [6813] = 2610, + [6814] = 2612, + [6815] = 2613, + [6816] = 2614, + [6817] = 2616, + [6818] = 2617, + [6819] = 2618, + [6820] = 2619, + [6821] = 2611, + [6822] = 2692, + [6823] = 2644, + [6824] = 2735, + [6825] = 2746, + [6826] = 2699, + [6827] = 2612, + [6828] = 2613, + [6829] = 2646, + [6830] = 2614, + [6831] = 2616, + [6832] = 2617, + [6833] = 2618, + [6834] = 2619, + [6835] = 2621, + [6836] = 2622, + [6837] = 2623, + [6838] = 2624, + [6839] = 2547, + [6840] = 2647, + [6841] = 2660, + [6842] = 2757, + [6843] = 2772, + [6844] = 2744, + [6845] = 2494, + [6846] = 2754, + [6847] = 2625, + [6848] = 2626, + [6849] = 6849, + [6850] = 2756, + [6851] = 2652, + [6852] = 2746, + [6853] = 2627, + [6854] = 2485, + [6855] = 2628, + [6856] = 2629, + [6857] = 2508, + [6858] = 2631, + [6859] = 2632, + [6860] = 2633, + [6861] = 2634, + [6862] = 2655, + [6863] = 2636, + [6864] = 2637, + [6865] = 2638, + [6866] = 2479, + [6867] = 2641, + [6868] = 2657, + [6869] = 2505, + [6870] = 2760, + [6871] = 2645, + [6872] = 2663, + [6873] = 2659, + [6874] = 2661, + [6875] = 2662, + [6876] = 2650, + [6877] = 2697, + [6878] = 2733, + [6879] = 2694, + [6880] = 6849, + [6881] = 2770, + [6882] = 2643, + [6883] = 6726, + [6884] = 2668, + [6885] = 2648, [6886] = 6886, - [6887] = 2581, - [6888] = 2463, - [6889] = 2544, - [6890] = 2545, - [6891] = 2546, - [6892] = 2547, - [6893] = 2640, - [6894] = 2643, - [6895] = 6687, - [6896] = 2472, - [6897] = 2645, - [6898] = 2746, - [6899] = 2559, - [6900] = 2487, - [6901] = 2721, - [6902] = 6658, - [6903] = 6903, - [6904] = 2733, - [6905] = 6658, - [6906] = 2661, - [6907] = 2708, - [6908] = 2493, - [6909] = 2531, - [6910] = 2561, - [6911] = 2727, - [6912] = 2646, - [6913] = 2730, - [6914] = 2654, - [6915] = 2480, - [6916] = 2659, - [6917] = 2701, - [6918] = 6918, - [6919] = 6919, - [6920] = 6919, - [6921] = 6919, - [6922] = 6918, - [6923] = 6923, - [6924] = 2531, - [6925] = 6918, - [6926] = 2535, - [6927] = 6919, - [6928] = 6923, - [6929] = 6918, - [6930] = 6930, - [6931] = 6918, - [6932] = 2536, - [6933] = 6918, - [6934] = 2533, - [6935] = 6918, - [6936] = 2717, - [6937] = 6918, - [6938] = 6923, - [6939] = 6939, - [6940] = 2534, - [6941] = 2535, - [6942] = 6919, - [6943] = 2536, - [6944] = 2537, - [6945] = 2537, - [6946] = 2531, - [6947] = 6939, - [6948] = 2582, - [6949] = 6919, - [6950] = 2538, - [6951] = 6919, - [6952] = 2721, - [6953] = 6919, - [6954] = 2538, - [6955] = 2533, - [6956] = 6923, - [6957] = 6957, - [6958] = 6918, - [6959] = 6918, - [6960] = 6918, - [6961] = 6918, - [6962] = 2701, - [6963] = 6919, - [6964] = 6918, - [6965] = 6919, - [6966] = 2582, - [6967] = 2657, - [6968] = 6919, - [6969] = 2612, - [6970] = 2612, - [6971] = 2748, - [6972] = 2748, - [6973] = 2743, - [6974] = 6919, - [6975] = 2752, - [6976] = 6918, - [6977] = 6918, - [6978] = 2752, - [6979] = 6919, - [6980] = 6939, - [6981] = 6918, - [6982] = 6923, - [6983] = 1980, - [6984] = 2717, - [6985] = 2753, - [6986] = 6918, - [6987] = 6918, - [6988] = 2753, - [6989] = 1981, - [6990] = 2718, - [6991] = 2627, - [6992] = 2534, - [6993] = 2627, - [6994] = 6939, - [6995] = 2718, - [6996] = 6918, - [6997] = 6919, - [6998] = 6918, - [6999] = 2743, - [7000] = 6918, - [7001] = 2657, - [7002] = 6919, - [7003] = 7003, - [7004] = 6923, - [7005] = 6919, - [7006] = 6918, - [7007] = 2721, - [7008] = 6918, - [7009] = 1971, - [7010] = 1971, - [7011] = 1970, - [7012] = 1969, - [7013] = 1969, - [7014] = 7014, - [7015] = 7014, - [7016] = 7014, - [7017] = 7014, - [7018] = 7014, - [7019] = 7014, - [7020] = 7014, - [7021] = 7014, - [7022] = 1970, - [7023] = 7014, - [7024] = 7014, - [7025] = 7014, - [7026] = 7026, - [7027] = 1981, - [7028] = 1969, - [7029] = 1980, - [7030] = 1970, - [7031] = 1971, - [7032] = 1971, - [7033] = 1969, - [7034] = 1970, - [7035] = 1970, - [7036] = 1971, - [7037] = 1969, - [7038] = 1969, - [7039] = 1970, - [7040] = 1981, - [7041] = 1971, - [7042] = 1980, - [7043] = 7043, - [7044] = 7044, - [7045] = 7045, - [7046] = 7046, - [7047] = 7047, - [7048] = 7048, - [7049] = 7049, - [7050] = 7050, - [7051] = 7051, - [7052] = 7052, - [7053] = 7053, - [7054] = 7054, - [7055] = 7043, - [7056] = 7056, - [7057] = 7057, - [7058] = 7058, - [7059] = 7054, - [7060] = 7049, - [7061] = 7061, - [7062] = 7062, - [7063] = 7063, - [7064] = 7064, - [7065] = 7065, - [7066] = 7057, - [7067] = 7054, - [7068] = 7068, - [7069] = 7069, - [7070] = 7070, - [7071] = 7071, - [7072] = 7072, - [7073] = 7044, - [7074] = 7074, - [7075] = 7075, - [7076] = 7054, - [7077] = 7057, - [7078] = 7049, - [7079] = 7079, - [7080] = 7061, - [7081] = 7062, - [7082] = 7063, - [7083] = 7068, - [7084] = 7069, - [7085] = 7071, - [7086] = 7044, - [7087] = 7054, - [7088] = 7057, - [7089] = 7049, - [7090] = 7062, - [7091] = 7063, - [7092] = 7049, - [7093] = 7068, - [7094] = 7069, - [7095] = 7071, - [7096] = 7044, - [7097] = 7054, - [7098] = 1981, - [7099] = 7057, - [7100] = 7049, - [7101] = 7062, - [7102] = 7063, - [7103] = 7068, - [7104] = 7069, - [7105] = 7071, - [7106] = 7044, + [6887] = 2642, + [6888] = 2651, + [6889] = 2567, + [6890] = 6890, + [6891] = 6891, + [6892] = 2545, + [6893] = 2536, + [6894] = 2762, + [6895] = 2671, + [6896] = 2669, + [6897] = 2673, + [6898] = 2730, + [6899] = 2666, + [6900] = 2670, + [6901] = 2692, + [6902] = 2761, + [6903] = 2649, + [6904] = 2763, + [6905] = 2764, + [6906] = 2649, + [6907] = 2536, + [6908] = 2677, + [6909] = 2745, + [6910] = 2751, + [6911] = 2678, + [6912] = 2679, + [6913] = 2680, + [6914] = 2766, + [6915] = 2767, + [6916] = 6916, + [6917] = 2755, + [6918] = 2594, + [6919] = 2595, + [6920] = 2599, + [6921] = 6921, + [6922] = 2608, + [6923] = 2609, + [6924] = 2610, + [6925] = 2611, + [6926] = 2612, + [6927] = 2613, + [6928] = 2614, + [6929] = 2616, + [6930] = 2617, + [6931] = 2618, + [6932] = 2619, + [6933] = 2682, + [6934] = 2692, + [6935] = 2735, + [6936] = 2683, + [6937] = 2746, + [6938] = 2699, + [6939] = 6849, + [6940] = 2768, + [6941] = 2649, + [6942] = 2769, + [6943] = 2685, + [6944] = 2686, + [6945] = 6726, + [6946] = 2687, + [6947] = 2688, + [6948] = 2690, + [6949] = 2771, + [6950] = 6950, + [6951] = 2700, + [6952] = 2544, + [6953] = 2703, + [6954] = 2704, + [6955] = 2706, + [6956] = 2709, + [6957] = 2710, + [6958] = 2711, + [6959] = 2551, + [6960] = 2720, + [6961] = 6961, + [6962] = 2692, + [6963] = 6963, + [6964] = 2610, + [6965] = 6963, + [6966] = 6966, + [6967] = 6963, + [6968] = 2611, + [6969] = 6966, + [6970] = 6970, + [6971] = 2612, + [6972] = 6963, + [6973] = 2617, + [6974] = 6963, + [6975] = 6970, + [6976] = 6970, + [6977] = 6963, + [6978] = 6970, + [6979] = 2594, + [6980] = 6980, + [6981] = 6963, + [6982] = 6963, + [6983] = 2735, + [6984] = 2613, + [6985] = 2614, + [6986] = 6963, + [6987] = 2595, + [6988] = 6963, + [6989] = 2649, + [6990] = 6963, + [6991] = 6963, + [6992] = 6963, + [6993] = 2616, + [6994] = 2002, + [6995] = 2617, + [6996] = 2618, + [6997] = 6961, + [6998] = 2618, + [6999] = 2619, + [7000] = 2746, + [7001] = 6970, + [7002] = 2619, + [7003] = 2755, + [7004] = 6966, + [7005] = 2699, + [7006] = 2599, + [7007] = 2699, + [7008] = 7008, + [7009] = 6966, + [7010] = 6970, + [7011] = 6966, + [7012] = 6963, + [7013] = 6970, + [7014] = 6970, + [7015] = 2649, + [7016] = 2610, + [7017] = 6970, + [7018] = 2611, + [7019] = 6970, + [7020] = 2594, + [7021] = 2755, + [7022] = 6970, + [7023] = 2746, + [7024] = 2608, + [7025] = 6970, + [7026] = 2735, + [7027] = 2612, + [7028] = 6970, + [7029] = 6970, + [7030] = 6970, + [7031] = 6970, + [7032] = 6970, + [7033] = 2608, + [7034] = 2609, + [7035] = 2595, + [7036] = 6970, + [7037] = 6961, + [7038] = 2613, + [7039] = 2614, + [7040] = 7040, + [7041] = 2616, + [7042] = 6970, + [7043] = 6966, + [7044] = 2609, + [7045] = 6963, + [7046] = 2692, + [7047] = 6970, + [7048] = 6970, + [7049] = 2599, + [7050] = 6970, + [7051] = 6970, + [7052] = 6961, + [7053] = 6963, + [7054] = 2003, + [7055] = 7055, + [7056] = 7055, + [7057] = 7055, + [7058] = 1993, + [7059] = 7055, + [7060] = 1994, + [7061] = 1993, + [7062] = 7055, + [7063] = 7055, + [7064] = 1992, + [7065] = 1992, + [7066] = 7055, + [7067] = 7055, + [7068] = 7055, + [7069] = 7055, + [7070] = 1994, + [7071] = 7055, + [7072] = 2003, + [7073] = 1993, + [7074] = 2002, + [7075] = 1994, + [7076] = 1992, + [7077] = 7077, + [7078] = 1994, + [7079] = 1992, + [7080] = 1992, + [7081] = 1994, + [7082] = 1993, + [7083] = 1993, + [7084] = 2003, + [7085] = 1994, + [7086] = 1992, + [7087] = 2002, + [7088] = 1993, + [7089] = 7089, + [7090] = 7090, + [7091] = 7091, + [7092] = 7092, + [7093] = 7090, + [7094] = 7094, + [7095] = 7095, + [7096] = 7096, + [7097] = 7097, + [7098] = 7091, + [7099] = 7099, + [7100] = 7100, + [7101] = 7090, + [7102] = 7094, + [7103] = 7097, + [7104] = 7104, + [7105] = 7095, + [7106] = 7106, [7107] = 7107, - [7108] = 7062, - [7109] = 7063, - [7110] = 1980, - [7111] = 7056, - [7112] = 7058, - [7113] = 7061, - [7114] = 7064, - [7115] = 7065, - [7116] = 7070, - [7117] = 7072, - [7118] = 7074, - [7119] = 7057, + [7108] = 7092, + [7109] = 7090, + [7110] = 7094, + [7111] = 7095, + [7112] = 7096, + [7113] = 7113, + [7114] = 7097, + [7115] = 7115, + [7116] = 7091, + [7117] = 7099, + [7118] = 7100, + [7119] = 7119, [7120] = 7120, - [7121] = 7121, - [7122] = 7054, - [7123] = 7057, - [7124] = 7049, - [7125] = 7062, - [7126] = 7063, - [7127] = 7068, - [7128] = 7069, - [7129] = 7071, - [7130] = 7044, - [7131] = 7068, - [7132] = 7069, - [7133] = 7056, - [7134] = 7058, - [7135] = 7061, - [7136] = 7064, - [7137] = 7065, - [7138] = 7070, - [7139] = 7072, - [7140] = 7074, + [7121] = 7096, + [7122] = 7092, + [7123] = 7090, + [7124] = 7124, + [7125] = 7094, + [7126] = 7095, + [7127] = 7127, + [7128] = 7092, + [7129] = 7090, + [7130] = 7094, + [7131] = 7095, + [7132] = 7096, + [7133] = 7097, + [7134] = 7134, + [7135] = 7095, + [7136] = 7091, + [7137] = 7099, + [7138] = 7100, + [7139] = 7096, + [7140] = 7140, [7141] = 7141, - [7142] = 7054, - [7143] = 7057, - [7144] = 7049, - [7145] = 7062, - [7146] = 7063, - [7147] = 7068, - [7148] = 7069, - [7149] = 7071, - [7150] = 7044, - [7151] = 7071, - [7152] = 7062, + [7142] = 7142, + [7143] = 7143, + [7144] = 7096, + [7145] = 7097, + [7146] = 7146, + [7147] = 7091, + [7148] = 7148, + [7149] = 7091, + [7150] = 7094, + [7151] = 7151, + [7152] = 7152, [7153] = 7153, - [7154] = 7054, - [7155] = 7057, - [7156] = 7049, - [7157] = 7062, - [7158] = 7063, - [7159] = 7068, - [7160] = 7069, - [7161] = 7071, - [7162] = 7044, - [7163] = 7044, - [7164] = 7054, - [7165] = 7057, - [7166] = 7049, - [7167] = 7062, - [7168] = 7063, - [7169] = 7068, - [7170] = 7069, - [7171] = 7071, - [7172] = 7044, - [7173] = 7063, - [7174] = 7174, + [7154] = 2003, + [7155] = 7092, + [7156] = 7090, + [7157] = 7094, + [7158] = 7095, + [7159] = 7096, + [7160] = 7097, + [7161] = 7091, + [7162] = 7099, + [7163] = 7100, + [7164] = 7094, + [7165] = 7099, + [7166] = 2002, + [7167] = 7100, + [7168] = 7168, + [7169] = 7169, + [7170] = 7094, + [7171] = 7092, + [7172] = 7090, + [7173] = 7094, + [7174] = 7095, [7175] = 7175, - [7176] = 7176, - [7177] = 7054, - [7178] = 7057, - [7179] = 7049, - [7180] = 7062, - [7181] = 7063, - [7182] = 7068, - [7183] = 7069, - [7184] = 7071, - [7185] = 7044, - [7186] = 7186, - [7187] = 7056, - [7188] = 7054, - [7189] = 7057, - [7190] = 7049, - [7191] = 7062, - [7192] = 7063, - [7193] = 7068, - [7194] = 7069, - [7195] = 7071, - [7196] = 7044, + [7176] = 7096, + [7177] = 7097, + [7178] = 7095, + [7179] = 7179, + [7180] = 7091, + [7181] = 7106, + [7182] = 7099, + [7183] = 7100, + [7184] = 7184, + [7185] = 7140, + [7186] = 7124, + [7187] = 7187, + [7188] = 7119, + [7189] = 7189, + [7190] = 7190, + [7191] = 7191, + [7192] = 7169, + [7193] = 7193, + [7194] = 7194, + [7195] = 7179, + [7196] = 7115, [7197] = 7197, - [7198] = 7198, - [7199] = 7199, - [7200] = 7054, - [7201] = 7057, - [7202] = 7049, - [7203] = 7062, - [7204] = 7063, - [7205] = 7068, - [7206] = 7069, - [7207] = 7071, - [7208] = 7044, - [7209] = 7209, - [7210] = 7210, - [7211] = 7211, - [7212] = 7212, - [7213] = 7064, - [7214] = 7214, - [7215] = 7215, - [7216] = 7054, - [7217] = 7057, - [7218] = 7049, - [7219] = 7062, - [7220] = 7063, - [7221] = 7068, - [7222] = 7069, - [7223] = 7071, - [7224] = 7044, - [7225] = 7065, - [7226] = 7054, - [7227] = 7054, - [7228] = 7057, - [7229] = 7049, - [7230] = 7062, - [7231] = 7063, - [7232] = 7068, - [7233] = 7069, - [7234] = 7071, - [7235] = 7044, - [7236] = 7054, - [7237] = 7057, - [7238] = 7049, - [7239] = 7062, - [7240] = 7063, - [7241] = 7068, - [7242] = 7069, - [7243] = 7071, - [7244] = 7044, - [7245] = 7057, - [7246] = 7057, - [7247] = 7054, - [7248] = 7057, - [7249] = 7049, - [7250] = 7062, - [7251] = 7063, - [7252] = 7068, - [7253] = 7069, - [7254] = 7071, - [7255] = 7044, - [7256] = 7054, - [7257] = 7057, - [7258] = 7049, - [7259] = 7062, - [7260] = 7063, - [7261] = 7068, - [7262] = 7069, - [7263] = 7071, - [7264] = 7044, - [7265] = 7057, - [7266] = 7049, - [7267] = 7267, - [7268] = 7052, - [7269] = 7053, - [7270] = 7047, - [7271] = 7075, - [7272] = 7141, - [7273] = 7186, - [7274] = 7048, - [7275] = 7050, - [7276] = 7079, - [7277] = 7153, - [7278] = 7175, - [7279] = 7210, - [7280] = 7212, - [7281] = 7281, - [7282] = 7282, - [7283] = 7283, - [7284] = 7284, - [7285] = 7057, - [7286] = 7062, - [7287] = 7063, - [7288] = 7068, - [7289] = 7281, - [7290] = 7069, - [7291] = 7058, - [7292] = 7292, - [7293] = 7068, - [7294] = 7069, - [7295] = 7071, - [7296] = 7296, - [7297] = 7044, - [7298] = 7267, - [7299] = 7052, - [7300] = 7053, - [7301] = 7047, - [7302] = 7075, - [7303] = 7141, - [7304] = 7186, - [7305] = 7048, - [7306] = 7050, - [7307] = 7079, - [7308] = 7153, - [7309] = 7175, - [7310] = 7210, - [7311] = 7043, - [7312] = 7281, - [7313] = 7282, - [7314] = 7283, - [7315] = 7284, - [7316] = 7316, - [7317] = 7267, - [7318] = 7052, - [7319] = 7053, - [7320] = 7047, - [7321] = 7075, - [7322] = 7141, - [7323] = 7048, - [7324] = 7050, - [7325] = 7282, - [7326] = 7079, - [7327] = 7153, - [7328] = 7175, - [7329] = 7281, - [7330] = 7267, - [7331] = 7052, - [7332] = 7053, - [7333] = 7333, - [7334] = 7047, - [7335] = 7075, - [7336] = 7336, - [7337] = 7337, - [7338] = 7048, - [7339] = 7050, - [7340] = 7070, - [7341] = 7153, - [7342] = 7175, - [7343] = 7281, - [7344] = 7267, - [7345] = 7345, - [7346] = 7052, - [7347] = 7053, - [7348] = 7348, - [7349] = 7047, - [7350] = 7075, - [7351] = 7048, - [7352] = 7050, - [7353] = 7153, - [7354] = 7175, - [7355] = 7281, - [7356] = 7267, - [7357] = 7267, - [7358] = 7052, - [7359] = 7053, - [7360] = 7047, - [7361] = 7075, - [7362] = 7048, - [7363] = 7050, - [7364] = 7153, - [7365] = 7175, - [7366] = 7281, - [7367] = 7267, - [7368] = 7052, - [7369] = 7053, - [7370] = 7047, - [7371] = 7075, - [7372] = 7048, - [7373] = 7050, - [7374] = 7153, - [7375] = 7175, - [7376] = 7281, - [7377] = 7267, - [7378] = 7052, - [7379] = 7053, - [7380] = 7047, - [7381] = 7075, - [7382] = 7048, - [7383] = 7050, - [7384] = 7153, - [7385] = 7175, - [7386] = 7281, - [7387] = 7267, - [7388] = 7052, - [7389] = 7053, - [7390] = 7047, - [7391] = 7075, - [7392] = 7048, - [7393] = 7050, - [7394] = 7153, - [7395] = 7175, - [7396] = 7281, - [7397] = 7054, - [7398] = 7267, - [7399] = 7052, - [7400] = 7053, - [7401] = 7047, - [7402] = 7075, - [7403] = 7048, - [7404] = 7050, - [7405] = 7153, - [7406] = 7175, - [7407] = 7281, - [7408] = 7267, - [7409] = 7052, - [7410] = 7053, - [7411] = 7047, - [7412] = 7075, - [7413] = 7048, - [7414] = 7050, - [7415] = 7153, - [7416] = 7175, - [7417] = 7281, - [7418] = 7267, - [7419] = 7052, - [7420] = 7053, - [7421] = 7057, - [7422] = 7047, - [7423] = 7075, - [7424] = 7048, - [7425] = 7050, - [7426] = 7153, - [7427] = 7175, - [7428] = 7281, - [7429] = 7071, - [7430] = 7267, - [7431] = 7052, - [7432] = 7053, - [7433] = 7047, - [7434] = 7075, - [7435] = 7048, - [7436] = 7050, - [7437] = 7153, - [7438] = 7175, - [7439] = 7281, - [7440] = 7052, - [7441] = 7053, - [7442] = 7047, - [7443] = 7075, - [7444] = 7048, - [7445] = 7153, - [7446] = 7281, - [7447] = 7047, - [7448] = 7075, - [7449] = 7048, - [7450] = 7153, - [7451] = 7281, - [7452] = 7047, - [7453] = 7075, - [7454] = 7048, - [7455] = 7153, - [7456] = 7281, - [7457] = 7047, - [7458] = 7075, - [7459] = 7048, - [7460] = 7153, - [7461] = 7281, - [7462] = 7047, - [7463] = 7075, - [7464] = 7048, - [7465] = 7153, - [7466] = 7281, - [7467] = 7075, - [7468] = 7075, - [7469] = 7075, - [7470] = 7470, - [7471] = 7471, - [7472] = 7472, - [7473] = 7473, - [7474] = 7049, - [7475] = 7475, - [7476] = 7476, - [7477] = 7047, - [7478] = 7048, - [7479] = 7153, - [7480] = 7281, - [7481] = 7283, - [7482] = 7482, - [7483] = 7483, - [7484] = 7484, - [7485] = 7072, - [7486] = 7062, - [7487] = 7063, - [7488] = 7044, - [7489] = 7489, - [7490] = 7075, - [7491] = 7075, - [7492] = 7075, - [7493] = 7075, - [7494] = 7075, - [7495] = 7075, - [7496] = 7075, - [7497] = 7075, - [7498] = 7075, - [7499] = 7075, - [7500] = 7075, - [7501] = 7068, - [7502] = 7075, - [7503] = 7075, - [7504] = 7075, - [7505] = 7075, - [7506] = 7075, - [7507] = 7075, - [7508] = 7075, - [7509] = 7075, - [7510] = 7069, - [7511] = 7284, - [7512] = 7075, - [7513] = 7075, - [7514] = 7074, - [7515] = 7071, - [7516] = 7043, - [7517] = 7075, - [7518] = 7043, - [7519] = 7043, - [7520] = 7043, - [7521] = 7043, - [7522] = 7043, - [7523] = 7043, - [7524] = 7043, - [7525] = 7043, - [7526] = 7043, - [7527] = 7043, - [7528] = 7043, - [7529] = 7212, - [7530] = 7530, - [7531] = 7531, - [7532] = 7530, - [7533] = 7531, - [7534] = 7530, - [7535] = 7531, - [7536] = 7530, - [7537] = 7531, - [7538] = 7530, - [7539] = 7531, - [7540] = 7530, - [7541] = 7531, - [7542] = 7531, - [7543] = 7530, - [7544] = 7531, - [7545] = 7530, - [7546] = 7531, - [7547] = 7530, - [7548] = 7531, - [7549] = 7530, - [7550] = 7531, - [7551] = 7530, - [7552] = 7531, - [7553] = 7530, + [7198] = 7107, + [7199] = 7089, + [7200] = 7127, + [7201] = 7201, + [7202] = 7202, + [7203] = 7151, + [7204] = 7106, + [7205] = 7184, + [7206] = 7140, + [7207] = 7092, + [7208] = 7119, + [7209] = 7189, + [7210] = 7090, + [7211] = 7094, + [7212] = 7190, + [7213] = 7169, + [7214] = 7193, + [7215] = 7194, + [7216] = 7179, + [7217] = 7115, + [7218] = 7095, + [7219] = 7089, + [7220] = 7099, + [7221] = 7096, + [7222] = 7097, + [7223] = 7091, + [7224] = 7106, + [7225] = 7099, + [7226] = 7100, + [7227] = 7184, + [7228] = 7140, + [7229] = 7119, + [7230] = 7189, + [7231] = 7169, + [7232] = 7193, + [7233] = 7179, + [7234] = 7115, + [7235] = 7089, + [7236] = 7104, + [7237] = 7106, + [7238] = 7092, + [7239] = 7184, + [7240] = 7140, + [7241] = 7119, + [7242] = 7189, + [7243] = 7169, + [7244] = 7193, + [7245] = 7179, + [7246] = 7115, + [7247] = 7247, + [7248] = 7106, + [7249] = 7090, + [7250] = 7090, + [7251] = 7184, + [7252] = 7140, + [7253] = 7094, + [7254] = 7119, + [7255] = 7189, + [7256] = 7092, + [7257] = 7169, + [7258] = 7193, + [7259] = 7259, + [7260] = 7095, + [7261] = 7179, + [7262] = 7115, + [7263] = 7089, + [7264] = 7096, + [7265] = 7106, + [7266] = 7097, + [7267] = 7184, + [7268] = 7140, + [7269] = 7104, + [7270] = 7187, + [7271] = 7119, + [7272] = 7189, + [7273] = 7169, + [7274] = 7193, + [7275] = 7100, + [7276] = 7179, + [7277] = 7115, + [7278] = 7089, + [7279] = 7090, + [7280] = 7106, + [7281] = 7091, + [7282] = 7184, + [7283] = 7140, + [7284] = 7119, + [7285] = 7189, + [7286] = 7169, + [7287] = 7193, + [7288] = 7179, + [7289] = 7115, + [7290] = 7120, + [7291] = 7089, + [7292] = 7191, + [7293] = 7099, + [7294] = 7106, + [7295] = 7184, + [7296] = 7140, + [7297] = 7100, + [7298] = 7298, + [7299] = 7119, + [7300] = 7189, + [7301] = 7094, + [7302] = 7169, + [7303] = 7193, + [7304] = 7179, + [7305] = 7115, + [7306] = 7089, + [7307] = 7106, + [7308] = 7184, + [7309] = 7140, + [7310] = 7168, + [7311] = 7095, + [7312] = 7119, + [7313] = 7189, + [7314] = 7096, + [7315] = 7169, + [7316] = 7193, + [7317] = 7179, + [7318] = 7115, + [7319] = 7089, + [7320] = 7120, + [7321] = 7099, + [7322] = 7124, + [7323] = 7106, + [7324] = 7184, + [7325] = 7140, + [7326] = 7187, + [7327] = 7096, + [7328] = 7097, + [7329] = 7119, + [7330] = 7189, + [7331] = 7097, + [7332] = 7091, + [7333] = 7169, + [7334] = 7193, + [7335] = 7179, + [7336] = 7115, + [7337] = 7151, + [7338] = 7089, + [7339] = 7089, + [7340] = 7099, + [7341] = 7106, + [7342] = 7184, + [7343] = 7140, + [7344] = 7298, + [7345] = 7100, + [7346] = 7119, + [7347] = 7189, + [7348] = 7247, + [7349] = 7094, + [7350] = 7169, + [7351] = 7193, + [7352] = 7091, + [7353] = 7179, + [7354] = 7115, + [7355] = 7089, + [7356] = 7106, + [7357] = 7247, + [7358] = 7184, + [7359] = 7140, + [7360] = 7360, + [7361] = 7361, + [7362] = 7119, + [7363] = 7189, + [7364] = 7364, + [7365] = 7365, + [7366] = 7169, + [7367] = 7193, + [7368] = 7092, + [7369] = 7179, + [7370] = 7115, + [7371] = 7089, + [7372] = 7372, + [7373] = 7090, + [7374] = 7184, + [7375] = 7140, + [7376] = 7376, + [7377] = 7119, + [7378] = 7189, + [7379] = 7169, + [7380] = 7179, + [7381] = 7089, + [7382] = 7100, + [7383] = 7201, + [7384] = 7119, + [7385] = 7189, + [7386] = 7169, + [7387] = 7094, + [7388] = 7179, + [7389] = 7089, + [7390] = 7097, + [7391] = 7095, + [7392] = 7119, + [7393] = 7189, + [7394] = 7169, + [7395] = 7179, + [7396] = 7089, + [7397] = 7096, + [7398] = 7097, + [7399] = 7119, + [7400] = 7189, + [7401] = 7169, + [7402] = 7179, + [7403] = 7089, + [7404] = 7097, + [7405] = 7119, + [7406] = 7189, + [7407] = 7169, + [7408] = 7179, + [7409] = 7089, + [7410] = 7091, + [7411] = 7189, + [7412] = 7099, + [7413] = 7189, + [7414] = 7100, + [7415] = 7189, + [7416] = 7416, + [7417] = 7417, + [7418] = 7092, + [7419] = 7193, + [7420] = 7106, + [7421] = 7091, + [7422] = 7422, + [7423] = 7090, + [7424] = 7119, + [7425] = 7425, + [7426] = 7426, + [7427] = 7184, + [7428] = 7140, + [7429] = 7169, + [7430] = 7092, + [7431] = 7094, + [7432] = 7298, + [7433] = 7179, + [7434] = 7089, + [7435] = 7435, + [7436] = 7095, + [7437] = 7096, + [7438] = 7097, + [7439] = 7091, + [7440] = 7099, + [7441] = 7100, + [7442] = 7100, + [7443] = 7092, + [7444] = 7090, + [7445] = 7094, + [7446] = 7095, + [7447] = 7096, + [7448] = 7092, + [7449] = 7097, + [7450] = 7119, + [7451] = 7091, + [7452] = 7099, + [7453] = 7100, + [7454] = 7189, + [7455] = 7095, + [7456] = 7090, + [7457] = 7197, + [7458] = 7097, + [7459] = 7459, + [7460] = 7190, + [7461] = 7190, + [7462] = 7191, + [7463] = 7091, + [7464] = 7094, + [7465] = 7169, + [7466] = 7193, + [7467] = 7095, + [7468] = 7194, + [7469] = 7184, + [7470] = 7194, + [7471] = 7179, + [7472] = 7115, + [7473] = 7197, + [7474] = 7168, + [7475] = 7100, + [7476] = 7107, + [7477] = 7089, + [7478] = 7127, + [7479] = 7201, + [7480] = 7202, + [7481] = 7096, + [7482] = 7097, + [7483] = 7091, + [7484] = 7099, + [7485] = 7100, + [7486] = 7486, + [7487] = 7090, + [7488] = 7099, + [7489] = 7090, + [7490] = 7092, + [7491] = 7099, + [7492] = 7100, + [7493] = 7090, + [7494] = 7092, + [7495] = 7092, + [7496] = 7090, + [7497] = 7497, + [7498] = 7099, + [7499] = 7499, + [7500] = 7092, + [7501] = 7090, + [7502] = 7094, + [7503] = 7095, + [7504] = 7096, + [7505] = 7202, + [7506] = 7090, + [7507] = 7096, + [7508] = 7092, + [7509] = 7247, + [7510] = 7104, + [7511] = 7097, + [7512] = 7091, + [7513] = 7099, + [7514] = 7100, + [7515] = 7515, + [7516] = 7090, + [7517] = 7189, + [7518] = 7120, + [7519] = 7189, + [7520] = 7189, + [7521] = 7189, + [7522] = 7189, + [7523] = 7189, + [7524] = 7189, + [7525] = 7189, + [7526] = 7189, + [7527] = 7189, + [7528] = 7189, + [7529] = 7189, + [7530] = 7189, + [7531] = 7189, + [7532] = 7189, + [7533] = 7189, + [7534] = 7189, + [7535] = 7189, + [7536] = 7189, + [7537] = 7094, + [7538] = 7095, + [7539] = 7092, + [7540] = 7189, + [7541] = 7541, + [7542] = 7189, + [7543] = 7168, + [7544] = 7124, + [7545] = 7187, + [7546] = 7546, + [7547] = 7095, + [7548] = 7548, + [7549] = 7189, + [7550] = 7096, + [7551] = 7097, + [7552] = 7552, + [7553] = 7151, [7554] = 7554, - [7555] = 7555, - [7556] = 7530, - [7557] = 7554, - [7558] = 7531, - [7559] = 7530, - [7560] = 7554, - [7561] = 7554, - [7562] = 7554, - [7563] = 7554, - [7564] = 7531, - [7565] = 7530, - [7566] = 7554, - [7567] = 7554, - [7568] = 7554, - [7569] = 7531, - [7570] = 7530, - [7571] = 7554, - [7572] = 7554, - [7573] = 7531, - [7574] = 7554, - [7575] = 7530, - [7576] = 7531, - [7577] = 7554, - [7578] = 7531, - [7579] = 7554, - [7580] = 7531, - [7581] = 7530, - [7582] = 7554, - [7583] = 7554, - [7584] = 7530, - [7585] = 7554, - [7586] = 7531, - [7587] = 7554, - [7588] = 7531, - [7589] = 7554, - [7590] = 7554, - [7591] = 7554, - [7592] = 7530, - [7593] = 7554, - [7594] = 7554, - [7595] = 7554, - [7596] = 7554, - [7597] = 7554, - [7598] = 7554, - [7599] = 7554, - [7600] = 7554, - [7601] = 7554, - [7602] = 7554, - [7603] = 7554, - [7604] = 7554, - [7605] = 7554, - [7606] = 7554, - [7607] = 7554, - [7608] = 7554, - [7609] = 7554, - [7610] = 7554, - [7611] = 7554, - [7612] = 7554, - [7613] = 7554, - [7614] = 7554, - [7615] = 7554, - [7616] = 7531, - [7617] = 7530, - [7618] = 7530, - [7619] = 7619, - [7620] = 7620, - [7621] = 7619, - [7622] = 7622, - [7623] = 7619, - [7624] = 7619, - [7625] = 7619, - [7626] = 7619, - [7627] = 7627, - [7628] = 7619, - [7629] = 7619, - [7630] = 7619, - [7631] = 7619, - [7632] = 7620, - [7633] = 7619, - [7634] = 7619, - [7635] = 7619, - [7636] = 7619, - [7637] = 7619, - [7638] = 7619, - [7639] = 7619, - [7640] = 7619, - [7641] = 7619, - [7642] = 7622, - [7643] = 7619, - [7644] = 7619, - [7645] = 7627, - [7646] = 1980, - [7647] = 7627, - [7648] = 7619, - [7649] = 7622, - [7650] = 1981, - [7651] = 7651, - [7652] = 7652, - [7653] = 1980, - [7654] = 1992, - [7655] = 1990, - [7656] = 1988, - [7657] = 7657, - [7658] = 1981, - [7659] = 7659, - [7660] = 1989, - [7661] = 1991, - [7662] = 1994, - [7663] = 7663, - [7664] = 7663, + [7555] = 7096, + [7556] = 7091, + [7557] = 7099, + [7558] = 7100, + [7559] = 7548, + [7560] = 7189, + [7561] = 7298, + [7562] = 7548, + [7563] = 7548, + [7564] = 7548, + [7565] = 7548, + [7566] = 7548, + [7567] = 7548, + [7568] = 7548, + [7569] = 7548, + [7570] = 7548, + [7571] = 7548, + [7572] = 7548, + [7573] = 7548, + [7574] = 7548, + [7575] = 7575, + [7576] = 7576, + [7577] = 7577, + [7578] = 7577, + [7579] = 7577, + [7580] = 7580, + [7581] = 7581, + [7582] = 7576, + [7583] = 7577, + [7584] = 7580, + [7585] = 7577, + [7586] = 7576, + [7587] = 7577, + [7588] = 7576, + [7589] = 7577, + [7590] = 7580, + [7591] = 7580, + [7592] = 7576, + [7593] = 7576, + [7594] = 7576, + [7595] = 7577, + [7596] = 7576, + [7597] = 7577, + [7598] = 7577, + [7599] = 7577, + [7600] = 7580, + [7601] = 7576, + [7602] = 7577, + [7603] = 7576, + [7604] = 7580, + [7605] = 7577, + [7606] = 7576, + [7607] = 7580, + [7608] = 7576, + [7609] = 7576, + [7610] = 7576, + [7611] = 7576, + [7612] = 7576, + [7613] = 7576, + [7614] = 7576, + [7615] = 7576, + [7616] = 7576, + [7617] = 7576, + [7618] = 7576, + [7619] = 7576, + [7620] = 7576, + [7621] = 7576, + [7622] = 7576, + [7623] = 7576, + [7624] = 7576, + [7625] = 7576, + [7626] = 7576, + [7627] = 7576, + [7628] = 7576, + [7629] = 7576, + [7630] = 7576, + [7631] = 7576, + [7632] = 7580, + [7633] = 7576, + [7634] = 7577, + [7635] = 7577, + [7636] = 7576, + [7637] = 7580, + [7638] = 7580, + [7639] = 7580, + [7640] = 7580, + [7641] = 7576, + [7642] = 7580, + [7643] = 7577, + [7644] = 7580, + [7645] = 7577, + [7646] = 7580, + [7647] = 7580, + [7648] = 7577, + [7649] = 7577, + [7650] = 7580, + [7651] = 7576, + [7652] = 7580, + [7653] = 7577, + [7654] = 7577, + [7655] = 7580, + [7656] = 7576, + [7657] = 7576, + [7658] = 7580, + [7659] = 7576, + [7660] = 7576, + [7661] = 7580, + [7662] = 7580, + [7663] = 7576, + [7664] = 7577, [7665] = 7665, [7666] = 7665, - [7667] = 7663, - [7668] = 7663, - [7669] = 7663, - [7670] = 7663, - [7671] = 1997, - [7672] = 1989, - [7673] = 1991, - [7674] = 7663, - [7675] = 7663, - [7676] = 7663, - [7677] = 7663, - [7678] = 7663, + [7667] = 7667, + [7668] = 7668, + [7669] = 7665, + [7670] = 2003, + [7671] = 2002, + [7672] = 7668, + [7673] = 7665, + [7674] = 7665, + [7675] = 7665, + [7676] = 7665, + [7677] = 7665, + [7678] = 7667, [7679] = 7665, - [7680] = 1998, - [7681] = 1992, - [7682] = 7663, - [7683] = 1990, - [7684] = 1988, - [7685] = 7663, - [7686] = 7663, - [7687] = 7663, + [7680] = 7665, + [7681] = 7665, + [7682] = 7665, + [7683] = 7665, + [7684] = 7665, + [7685] = 7665, + [7686] = 7665, + [7687] = 7668, [7688] = 7665, - [7689] = 7663, - [7690] = 7663, + [7689] = 7665, + [7690] = 7690, [7691] = 7665, [7692] = 7665, - [7693] = 7663, - [7694] = 1995, - [7695] = 7665, - [7696] = 7663, - [7697] = 7665, - [7698] = 7663, - [7699] = 7663, - [7700] = 7665, - [7701] = 7665, - [7702] = 1996, - [7703] = 7663, - [7704] = 7663, - [7705] = 7665, - [7706] = 7665, - [7707] = 7663, - [7708] = 2000, + [7693] = 7690, + [7694] = 7665, + [7695] = 7667, + [7696] = 7665, + [7697] = 7697, + [7698] = 2011, + [7699] = 2013, + [7700] = 7700, + [7701] = 7701, + [7702] = 2014, + [7703] = 2002, + [7704] = 2015, + [7705] = 7705, + [7706] = 2012, + [7707] = 2003, + [7708] = 2017, [7709] = 7709, - [7710] = 7665, - [7711] = 7663, - [7712] = 7663, - [7713] = 7663, - [7714] = 7665, - [7715] = 7663, - [7716] = 7663, - [7717] = 7663, - [7718] = 7665, - [7719] = 7663, - [7720] = 7663, - [7721] = 1999, - [7722] = 2001, - [7723] = 7665, - [7724] = 7665, - [7725] = 7663, - [7726] = 7665, - [7727] = 7665, - [7728] = 2002, - [7729] = 7663, - [7730] = 1993, - [7731] = 7665, - [7732] = 7663, - [7733] = 7665, - [7734] = 7663, - [7735] = 7663, - [7736] = 7663, - [7737] = 7663, - [7738] = 7665, - [7739] = 7665, - [7740] = 7663, - [7741] = 1992, - [7742] = 1990, - [7743] = 1988, - [7744] = 7665, - [7745] = 1989, - [7746] = 1991, - [7747] = 7663, - [7748] = 7663, - [7749] = 7663, - [7750] = 7663, - [7751] = 2004, - [7752] = 2021, - [7753] = 2003, - [7754] = 2015, - [7755] = 2020, - [7756] = 2012, - [7757] = 2014, - [7758] = 2017, - [7759] = 1994, - [7760] = 2009, - [7761] = 2016, - [7762] = 2011, - [7763] = 1994, - [7764] = 2018, - [7765] = 2013, - [7766] = 2005, - [7767] = 2008, - [7768] = 2007, - [7769] = 2006, - [7770] = 1991, - [7771] = 1998, - [7772] = 1992, - [7773] = 2010, - [7774] = 2019, - [7775] = 1996, - [7776] = 1997, - [7777] = 2002, - [7778] = 1990, - [7779] = 1999, - [7780] = 2001, - [7781] = 1988, - [7782] = 1995, - [7783] = 1989, - [7784] = 2008, - [7785] = 2021, - [7786] = 2003, - [7787] = 2006, - [7788] = 2009, - [7789] = 2004, - [7790] = 2011, - [7791] = 2015, - [7792] = 2012, - [7793] = 2014, - [7794] = 2017, - [7795] = 2018, - [7796] = 2005, - [7797] = 2020, - [7798] = 2013, - [7799] = 2007, - [7800] = 1994, - [7801] = 2016, - [7802] = 1989, - [7803] = 1993, - [7804] = 7804, - [7805] = 7804, - [7806] = 1996, - [7807] = 7807, - [7808] = 7804, - [7809] = 7807, - [7810] = 7810, - [7811] = 7804, - [7812] = 7810, - [7813] = 1997, - [7814] = 7810, - [7815] = 1995, - [7816] = 1999, - [7817] = 2001, - [7818] = 1992, - [7819] = 1990, - [7820] = 1988, - [7821] = 1991, - [7822] = 1998, - [7823] = 2000, - [7824] = 2002, - [7825] = 2013, - [7826] = 7826, - [7827] = 7827, - [7828] = 7827, - [7829] = 7829, - [7830] = 7827, - [7831] = 2025, - [7832] = 2011, - [7833] = 2008, - [7834] = 7827, - [7835] = 7827, - [7836] = 2012, - [7837] = 7827, - [7838] = 7827, - [7839] = 2006, - [7840] = 7827, - [7841] = 7829, - [7842] = 7827, - [7843] = 7827, - [7844] = 7826, - [7845] = 7827, - [7846] = 7826, - [7847] = 2014, - [7848] = 2016, - [7849] = 7827, - [7850] = 2033, - [7851] = 7829, - [7852] = 7827, - [7853] = 2020, - [7854] = 1994, - [7855] = 2021, - [7856] = 7827, - [7857] = 2007, - [7858] = 2027, - [7859] = 2004, - [7860] = 7827, - [7861] = 7827, - [7862] = 2003, - [7863] = 7827, - [7864] = 2015, - [7865] = 7826, - [7866] = 7827, - [7867] = 2017, - [7868] = 7829, - [7869] = 7827, - [7870] = 2009, - [7871] = 7827, - [7872] = 2032, - [7873] = 7827, - [7874] = 2005, - [7875] = 7827, - [7876] = 7827, - [7877] = 2018, - [7878] = 1996, - [7879] = 7879, - [7880] = 7879, - [7881] = 7879, + [7710] = 7709, + [7711] = 2015, + [7712] = 7709, + [7713] = 7709, + [7714] = 7714, + [7715] = 2012, + [7716] = 7709, + [7717] = 7709, + [7718] = 2014, + [7719] = 7709, + [7720] = 7714, + [7721] = 7709, + [7722] = 7709, + [7723] = 7709, + [7724] = 7714, + [7725] = 7709, + [7726] = 7714, + [7727] = 7709, + [7728] = 7714, + [7729] = 2018, + [7730] = 7709, + [7731] = 7709, + [7732] = 7714, + [7733] = 7709, + [7734] = 2025, + [7735] = 7709, + [7736] = 7709, + [7737] = 2016, + [7738] = 7709, + [7739] = 7709, + [7740] = 7709, + [7741] = 7709, + [7742] = 7709, + [7743] = 7709, + [7744] = 7714, + [7745] = 7709, + [7746] = 7709, + [7747] = 7709, + [7748] = 7709, + [7749] = 7709, + [7750] = 7709, + [7751] = 7714, + [7752] = 7709, + [7753] = 7714, + [7754] = 7714, + [7755] = 7709, + [7756] = 7714, + [7757] = 7709, + [7758] = 7714, + [7759] = 7709, + [7760] = 7714, + [7761] = 7709, + [7762] = 7714, + [7763] = 7714, + [7764] = 7709, + [7765] = 7714, + [7766] = 7709, + [7767] = 7709, + [7768] = 7714, + [7769] = 7709, + [7770] = 2020, + [7771] = 7714, + [7772] = 2014, + [7773] = 2015, + [7774] = 2012, + [7775] = 7714, + [7776] = 2011, + [7777] = 2013, + [7778] = 7709, + [7779] = 7714, + [7780] = 7709, + [7781] = 2021, + [7782] = 2024, + [7783] = 2019, + [7784] = 7714, + [7785] = 7709, + [7786] = 7786, + [7787] = 7714, + [7788] = 7709, + [7789] = 2011, + [7790] = 2013, + [7791] = 7709, + [7792] = 2022, + [7793] = 2023, + [7794] = 7714, + [7795] = 7709, + [7796] = 7714, + [7797] = 2017, + [7798] = 2029, + [7799] = 2028, + [7800] = 2036, + [7801] = 2037, + [7802] = 2027, + [7803] = 2039, + [7804] = 2042, + [7805] = 2038, + [7806] = 2040, + [7807] = 2041, + [7808] = 2044, + [7809] = 2031, + [7810] = 2032, + [7811] = 2017, + [7812] = 2034, + [7813] = 2033, + [7814] = 2026, + [7815] = 2035, + [7816] = 2013, + [7817] = 2025, + [7818] = 2015, + [7819] = 2014, + [7820] = 2012, + [7821] = 2024, + [7822] = 2018, + [7823] = 2043, + [7824] = 2020, + [7825] = 2030, + [7826] = 2011, + [7827] = 2021, + [7828] = 2022, + [7829] = 2023, + [7830] = 2017, + [7831] = 2041, + [7832] = 2026, + [7833] = 2042, + [7834] = 2029, + [7835] = 2031, + [7836] = 2038, + [7837] = 2035, + [7838] = 2034, + [7839] = 2036, + [7840] = 2028, + [7841] = 2044, + [7842] = 2033, + [7843] = 2027, + [7844] = 2040, + [7845] = 2037, + [7846] = 2032, + [7847] = 2039, + [7848] = 2013, + [7849] = 2018, + [7850] = 2024, + [7851] = 7851, + [7852] = 7852, + [7853] = 2014, + [7854] = 7852, + [7855] = 7855, + [7856] = 2012, + [7857] = 2022, + [7858] = 7851, + [7859] = 7855, + [7860] = 2020, + [7861] = 2016, + [7862] = 7851, + [7863] = 2021, + [7864] = 2025, + [7865] = 2011, + [7866] = 2015, + [7867] = 2023, + [7868] = 2019, + [7869] = 7851, + [7870] = 7855, + [7871] = 2034, + [7872] = 2048, + [7873] = 2033, + [7874] = 7874, + [7875] = 2035, + [7876] = 2029, + [7877] = 2039, + [7878] = 2040, + [7879] = 7874, + [7880] = 7874, + [7881] = 2041, [7882] = 7882, - [7883] = 1998, - [7884] = 2000, - [7885] = 1996, + [7883] = 2026, + [7884] = 7874, + [7885] = 2027, [7886] = 7882, - [7887] = 1995, - [7888] = 2019, - [7889] = 2002, - [7890] = 1993, - [7891] = 1998, - [7892] = 2000, - [7893] = 1999, - [7894] = 2001, - [7895] = 1996, - [7896] = 1993, - [7897] = 7879, - [7898] = 7882, - [7899] = 1997, - [7900] = 1997, - [7901] = 2047, - [7902] = 1997, - [7903] = 2024, - [7904] = 1995, - [7905] = 1999, - [7906] = 2001, - [7907] = 2010, - [7908] = 1998, - [7909] = 2036, - [7910] = 7882, - [7911] = 1958, - [7912] = 2031, - [7913] = 2023, - [7914] = 2001, - [7915] = 1999, - [7916] = 1995, - [7917] = 7917, - [7918] = 2020, - [7919] = 2021, - [7920] = 2004, - [7921] = 7917, - [7922] = 7917, - [7923] = 7917, - [7924] = 7917, - [7925] = 2492, - [7926] = 2017, - [7927] = 2014, - [7928] = 2525, - [7929] = 2016, - [7930] = 2018, - [7931] = 7917, - [7932] = 7932, - [7933] = 7933, - [7934] = 7917, - [7935] = 2007, - [7936] = 2040, - [7937] = 2041, - [7938] = 7917, - [7939] = 2005, - [7940] = 2488, - [7941] = 2006, - [7942] = 7917, - [7943] = 7917, - [7944] = 2046, - [7945] = 2045, - [7946] = 7917, - [7947] = 2048, - [7948] = 2494, - [7949] = 2015, - [7950] = 2008, - [7951] = 2039, - [7952] = 7917, - [7953] = 2003, - [7954] = 2009, - [7955] = 2011, - [7956] = 2037, - [7957] = 2012, - [7958] = 2013, - [7959] = 2491, - [7960] = 7917, - [7961] = 2042, - [7962] = 2038, - [7963] = 7917, - [7964] = 7964, + [7887] = 2028, + [7888] = 7874, + [7889] = 2036, + [7890] = 7874, + [7891] = 7891, + [7892] = 7874, + [7893] = 7891, + [7894] = 7874, + [7895] = 7874, + [7896] = 7874, + [7897] = 7874, + [7898] = 7874, + [7899] = 2037, + [7900] = 7874, + [7901] = 2017, + [7902] = 2038, + [7903] = 2042, + [7904] = 7891, + [7905] = 7874, + [7906] = 7882, + [7907] = 2031, + [7908] = 7874, + [7909] = 2032, + [7910] = 7891, + [7911] = 2055, + [7912] = 7882, + [7913] = 7874, + [7914] = 7874, + [7915] = 7874, + [7916] = 2046, + [7917] = 7874, + [7918] = 7874, + [7919] = 2052, + [7920] = 7874, + [7921] = 7874, + [7922] = 7874, + [7923] = 2044, + [7924] = 2024, + [7925] = 2020, + [7926] = 1980, + [7927] = 2021, + [7928] = 2022, + [7929] = 2023, + [7930] = 2059, + [7931] = 2023, + [7932] = 2024, + [7933] = 2018, + [7934] = 7934, + [7935] = 2054, + [7936] = 2049, + [7937] = 2024, + [7938] = 2020, + [7939] = 2019, + [7940] = 2023, + [7941] = 2070, + [7942] = 2021, + [7943] = 2018, + [7944] = 2020, + [7945] = 7945, + [7946] = 7945, + [7947] = 2025, + [7948] = 2053, + [7949] = 2019, + [7950] = 2022, + [7951] = 2018, + [7952] = 7934, + [7953] = 7934, + [7954] = 7945, + [7955] = 2030, + [7956] = 7934, + [7957] = 7945, + [7958] = 2016, + [7959] = 2016, + [7960] = 2021, + [7961] = 2022, + [7962] = 2043, + [7963] = 2033, + [7964] = 2042, [7965] = 7965, - [7966] = 7966, - [7967] = 2047, - [7968] = 1989, - [7969] = 7966, - [7970] = 2001, - [7971] = 1995, - [7972] = 2010, + [7966] = 2029, + [7967] = 2040, + [7968] = 7965, + [7969] = 2036, + [7970] = 2028, + [7971] = 2038, + [7972] = 2548, [7973] = 7965, - [7974] = 2742, - [7975] = 1999, - [7976] = 2001, - [7977] = 7966, - [7978] = 1998, - [7979] = 2010, - [7980] = 1995, - [7981] = 7966, - [7982] = 7982, - [7983] = 1996, - [7984] = 1998, - [7985] = 1990, - [7986] = 1988, - [7987] = 1996, - [7988] = 2054, - [7989] = 7989, - [7990] = 2019, - [7991] = 1992, - [7992] = 1997, - [7993] = 7993, - [7994] = 1997, - [7995] = 2053, - [7996] = 1991, - [7997] = 2019, - [7998] = 7998, - [7999] = 7965, - [8000] = 1999, - [8001] = 7965, + [7974] = 2031, + [7975] = 7965, + [7976] = 7965, + [7977] = 7965, + [7978] = 2032, + [7979] = 2037, + [7980] = 2065, + [7981] = 2063, + [7982] = 7965, + [7983] = 2493, + [7984] = 2514, + [7985] = 2069, + [7986] = 7965, + [7987] = 2071, + [7988] = 2068, + [7989] = 7965, + [7990] = 2067, + [7991] = 2062, + [7992] = 7965, + [7993] = 2035, + [7994] = 7965, + [7995] = 2027, + [7996] = 2582, + [7997] = 2044, + [7998] = 7965, + [7999] = 2060, + [8000] = 2039, + [8001] = 2061, [8002] = 8002, - [8003] = 8003, - [8004] = 8004, - [8005] = 8005, - [8006] = 8006, - [8007] = 2066, - [8008] = 8008, - [8009] = 8009, - [8010] = 8010, - [8011] = 8008, - [8012] = 8012, - [8013] = 8013, - [8014] = 2060, - [8015] = 8008, - [8016] = 8016, - [8017] = 8017, - [8018] = 8018, - [8019] = 1994, - [8020] = 8020, + [8003] = 7965, + [8004] = 7965, + [8005] = 2026, + [8006] = 2512, + [8007] = 8007, + [8008] = 2034, + [8009] = 2041, + [8010] = 2043, + [8011] = 8011, + [8012] = 2021, + [8013] = 2070, + [8014] = 8014, + [8015] = 2023, + [8016] = 2020, + [8017] = 2020, + [8018] = 2024, + [8019] = 2660, + [8020] = 8011, [8021] = 8021, - [8022] = 8022, - [8023] = 8008, + [8022] = 2018, + [8023] = 8023, [8024] = 8024, - [8025] = 8025, - [8026] = 8026, - [8027] = 8027, - [8028] = 8028, - [8029] = 8029, - [8030] = 8008, - [8031] = 8031, + [8025] = 8023, + [8026] = 2022, + [8027] = 2011, + [8028] = 2023, + [8029] = 2013, + [8030] = 8030, + [8031] = 2014, [8032] = 8032, - [8033] = 8033, - [8034] = 8034, - [8035] = 8035, - [8036] = 8036, - [8037] = 8037, - [8038] = 8008, - [8039] = 8008, - [8040] = 8040, - [8041] = 8041, - [8042] = 8042, + [8033] = 2043, + [8034] = 2021, + [8035] = 2015, + [8036] = 2081, + [8037] = 2073, + [8038] = 8023, + [8039] = 2030, + [8040] = 2024, + [8041] = 8011, + [8042] = 2022, [8043] = 8043, - [8044] = 8044, - [8045] = 8045, - [8046] = 8046, - [8047] = 8008, - [8048] = 8048, + [8044] = 2012, + [8045] = 8011, + [8046] = 2030, + [8047] = 2018, + [8048] = 8023, [8049] = 8049, - [8050] = 2102, - [8051] = 8051, + [8050] = 8050, + [8051] = 2052, [8052] = 8052, - [8053] = 2032, + [8053] = 8053, [8054] = 8054, - [8055] = 8008, + [8055] = 8055, [8056] = 8056, [8057] = 8057, [8058] = 8058, [8059] = 8059, [8060] = 8060, - [8061] = 8008, - [8062] = 8062, - [8063] = 8008, + [8061] = 8061, + [8062] = 8056, + [8063] = 8063, [8064] = 8064, - [8065] = 8008, + [8065] = 8065, [8066] = 8066, - [8067] = 2076, + [8067] = 8067, [8068] = 8068, - [8069] = 8008, - [8070] = 8070, + [8069] = 8069, + [8070] = 8056, [8071] = 8071, [8072] = 8072, - [8073] = 2746, + [8073] = 8073, [8074] = 8074, [8075] = 8075, [8076] = 8076, @@ -12665,80 +12672,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8079] = 8079, [8080] = 8080, [8081] = 8081, - [8082] = 8008, + [8082] = 8056, [8083] = 8083, [8084] = 8084, - [8085] = 8085, + [8085] = 2096, [8086] = 8086, [8087] = 8087, [8088] = 8088, [8089] = 8089, - [8090] = 8090, + [8090] = 8056, [8091] = 8091, [8092] = 8092, - [8093] = 2027, - [8094] = 8094, + [8093] = 8093, + [8094] = 2098, [8095] = 8095, [8096] = 8096, - [8097] = 8097, + [8097] = 8056, [8098] = 8098, [8099] = 8099, - [8100] = 8100, + [8100] = 8056, [8101] = 8101, [8102] = 8102, - [8103] = 2082, - [8104] = 8104, + [8103] = 8103, + [8104] = 2524, [8105] = 8105, [8106] = 8106, [8107] = 8107, [8108] = 8108, - [8109] = 8008, - [8110] = 8110, + [8109] = 8056, + [8110] = 2090, [8111] = 8111, - [8112] = 8112, + [8112] = 2094, [8113] = 8113, [8114] = 8114, [8115] = 8115, - [8116] = 8116, - [8117] = 8117, + [8116] = 2485, + [8117] = 2017, [8118] = 8118, - [8119] = 8119, + [8119] = 8056, [8120] = 8120, [8121] = 8121, [8122] = 8122, - [8123] = 8123, + [8123] = 8056, [8124] = 8124, - [8125] = 8125, + [8125] = 2547, [8126] = 8126, [8127] = 8127, - [8128] = 8128, + [8128] = 8056, [8129] = 8129, - [8130] = 8130, + [8130] = 2102, [8131] = 8131, [8132] = 8132, [8133] = 8133, - [8134] = 8134, - [8135] = 8135, - [8136] = 8136, + [8134] = 8056, + [8135] = 2089, + [8136] = 8056, [8137] = 8137, [8138] = 8138, - [8139] = 2733, + [8139] = 8139, [8140] = 8140, [8141] = 8141, - [8142] = 8142, + [8142] = 2103, [8143] = 8143, - [8144] = 8144, + [8144] = 2055, [8145] = 8145, [8146] = 8146, [8147] = 8147, [8148] = 8148, [8149] = 8149, - [8150] = 8008, + [8150] = 8150, [8151] = 8151, [8152] = 8152, [8153] = 8153, [8154] = 8154, - [8155] = 8155, + [8155] = 2722, [8156] = 8156, [8157] = 8157, [8158] = 8158, @@ -12747,2821 +12754,2821 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8161] = 8161, [8162] = 8162, [8163] = 8163, - [8164] = 8164, + [8164] = 8056, [8165] = 8165, [8166] = 8166, [8167] = 8167, [8168] = 8168, [8169] = 8169, - [8170] = 8008, - [8171] = 8171, + [8170] = 8170, + [8171] = 2083, [8172] = 8172, [8173] = 8173, [8174] = 8174, [8175] = 8175, - [8176] = 2090, - [8177] = 2053, + [8176] = 2085, + [8177] = 8177, [8178] = 8178, - [8179] = 8179, - [8180] = 2061, + [8179] = 8056, + [8180] = 8180, [8181] = 8181, - [8182] = 8008, - [8183] = 8183, + [8182] = 8182, + [8183] = 2104, [8184] = 8184, [8185] = 8185, - [8186] = 2078, - [8187] = 8187, - [8188] = 2109, - [8189] = 2085, - [8190] = 2646, + [8186] = 8186, + [8187] = 2048, + [8188] = 8188, + [8189] = 8189, + [8190] = 8190, [8191] = 8191, - [8192] = 8192, + [8192] = 8056, [8193] = 8193, - [8194] = 8194, - [8195] = 2087, - [8196] = 8196, + [8194] = 8056, + [8195] = 8195, + [8196] = 2113, [8197] = 8197, [8198] = 8198, - [8199] = 8199, + [8199] = 8056, [8200] = 8200, - [8201] = 8201, + [8201] = 2081, [8202] = 8202, - [8203] = 8008, - [8204] = 2025, + [8203] = 8203, + [8204] = 8204, [8205] = 8205, - [8206] = 8008, + [8206] = 8206, [8207] = 8207, [8208] = 8208, [8209] = 8209, [8210] = 8210, [8211] = 8211, [8212] = 8212, - [8213] = 2083, + [8213] = 8213, [8214] = 8214, [8215] = 8215, [8216] = 8216, - [8217] = 8217, - [8218] = 2074, - [8219] = 8219, + [8217] = 2505, + [8218] = 8218, + [8219] = 8056, [8220] = 8220, [8221] = 8221, [8222] = 8222, - [8223] = 8223, + [8223] = 8056, [8224] = 8224, - [8225] = 2081, + [8225] = 8225, [8226] = 8226, - [8227] = 8008, - [8228] = 8008, + [8227] = 8227, + [8228] = 8228, [8229] = 8229, [8230] = 8230, [8231] = 8231, [8232] = 8232, [8233] = 8233, [8234] = 8234, - [8235] = 2745, - [8236] = 2738, + [8235] = 8235, + [8236] = 8236, [8237] = 8237, - [8238] = 2031, - [8239] = 1958, - [8240] = 2023, + [8238] = 8238, + [8239] = 8239, + [8240] = 8240, [8241] = 8241, - [8242] = 8242, - [8243] = 2024, - [8244] = 2036, - [8245] = 2047, - [8246] = 1998, - [8247] = 1999, - [8248] = 2001, - [8249] = 2492, - [8250] = 2027, - [8251] = 2525, - [8252] = 2037, - [8253] = 2039, - [8254] = 2042, - [8255] = 1988, - [8256] = 1995, - [8257] = 2048, - [8258] = 2041, - [8259] = 1997, - [8260] = 2494, - [8261] = 1990, - [8262] = 2045, - [8263] = 2040, - [8264] = 2025, - [8265] = 2000, - [8266] = 2491, - [8267] = 2027, - [8268] = 1992, - [8269] = 1989, - [8270] = 1991, - [8271] = 1993, - [8272] = 1996, + [8242] = 2130, + [8243] = 8243, + [8244] = 8244, + [8245] = 8245, + [8246] = 8246, + [8247] = 8247, + [8248] = 8248, + [8249] = 8249, + [8250] = 8250, + [8251] = 8251, + [8252] = 2091, + [8253] = 8253, + [8254] = 8254, + [8255] = 8255, + [8256] = 8256, + [8257] = 8257, + [8258] = 8258, + [8259] = 8259, + [8260] = 8260, + [8261] = 8261, + [8262] = 8262, + [8263] = 8263, + [8264] = 8056, + [8265] = 8265, + [8266] = 8056, + [8267] = 8267, + [8268] = 8268, + [8269] = 8269, + [8270] = 8270, + [8271] = 8271, + [8272] = 8272, [8273] = 8273, - [8274] = 2488, - [8275] = 2032, - [8276] = 2038, - [8277] = 2046, - [8278] = 7998, - [8279] = 2002, - [8280] = 2010, - [8281] = 1993, - [8282] = 1997, - [8283] = 2015, - [8284] = 8074, - [8285] = 7964, - [8286] = 1998, - [8287] = 2000, - [8288] = 1997, + [8274] = 8274, + [8275] = 8275, + [8276] = 8276, + [8277] = 2129, + [8278] = 8278, + [8279] = 8279, + [8280] = 8280, + [8281] = 8281, + [8282] = 8282, + [8283] = 8283, + [8284] = 2049, + [8285] = 2053, + [8286] = 2054, + [8287] = 8287, + [8288] = 2059, [8289] = 8289, - [8290] = 7989, - [8291] = 2019, - [8292] = 1996, - [8293] = 1995, - [8294] = 2007, - [8295] = 1995, - [8296] = 1999, - [8297] = 2001, - [8298] = 1998, - [8299] = 8299, - [8300] = 1996, - [8301] = 8002, - [8302] = 1999, - [8303] = 1958, - [8304] = 2001, - [8305] = 7982, - [8306] = 7993, - [8307] = 2742, - [8308] = 2024, - [8309] = 8309, - [8310] = 2047, - [8311] = 2023, - [8312] = 2053, - [8313] = 1994, - [8314] = 2036, - [8315] = 2031, - [8316] = 2054, - [8317] = 8163, - [8318] = 8230, - [8319] = 8100, - [8320] = 8233, - [8321] = 8199, - [8322] = 8179, - [8323] = 8049, - [8324] = 2421, - [8325] = 8021, - [8326] = 8070, - [8327] = 8080, - [8328] = 8197, - [8329] = 8033, - [8330] = 8106, - [8331] = 8144, - [8332] = 8148, - [8333] = 8164, - [8334] = 8167, - [8335] = 8174, - [8336] = 8229, - [8337] = 8010, - [8338] = 8013, - [8339] = 8031, - [8340] = 8062, - [8341] = 2037, - [8342] = 8075, - [8343] = 8077, - [8344] = 8078, - [8345] = 8083, - [8346] = 8086, - [8347] = 8089, - [8348] = 8090, - [8349] = 8101, - [8350] = 8112, - [8351] = 8117, - [8352] = 8152, - [8353] = 8153, - [8354] = 2017, - [8355] = 1998, - [8356] = 8037, - [8357] = 8045, - [8358] = 2005, - [8359] = 2006, - [8360] = 8232, - [8361] = 8046, - [8362] = 8036, - [8363] = 8054, - [8364] = 8056, - [8365] = 8057, - [8366] = 8060, - [8367] = 2000, - [8368] = 8066, - [8369] = 8068, - [8370] = 8040, - [8371] = 8072, - [8372] = 8081, - [8373] = 8088, - [8374] = 8154, - [8375] = 8155, - [8376] = 8161, - [8377] = 8166, - [8378] = 2008, - [8379] = 2003, - [8380] = 2009, - [8381] = 2011, - [8382] = 2082, - [8383] = 2090, - [8384] = 2061, - [8385] = 8169, - [8386] = 8006, - [8387] = 8009, - [8388] = 8025, - [8389] = 8026, - [8390] = 2012, - [8391] = 2013, - [8392] = 2020, - [8393] = 2076, - [8394] = 2109, - [8395] = 2102, - [8396] = 2021, - [8397] = 2004, - [8398] = 8208, - [8399] = 2002, - [8400] = 2078, - [8401] = 2085, - [8402] = 8123, - [8403] = 2087, - [8404] = 2083, - [8405] = 2074, - [8406] = 8042, - [8407] = 2066, - [8408] = 8172, - [8409] = 8173, - [8410] = 2060, - [8411] = 8200, - [8412] = 8207, - [8413] = 8087, - [8414] = 8226, - [8415] = 8220, - [8416] = 8091, - [8417] = 8092, - [8418] = 8097, + [8290] = 1980, + [8291] = 2070, + [8292] = 2024, + [8293] = 2014, + [8294] = 2062, + [8295] = 2068, + [8296] = 2493, + [8297] = 8297, + [8298] = 2548, + [8299] = 2069, + [8300] = 2060, + [8301] = 2016, + [8302] = 2512, + [8303] = 2514, + [8304] = 2052, + [8305] = 2048, + [8306] = 2582, + [8307] = 2022, + [8308] = 2055, + [8309] = 2019, + [8310] = 2020, + [8311] = 2015, + [8312] = 2012, + [8313] = 2023, + [8314] = 2063, + [8315] = 2011, + [8316] = 2013, + [8317] = 2018, + [8318] = 2021, + [8319] = 2055, + [8320] = 2065, + [8321] = 2071, + [8322] = 2061, + [8323] = 2067, + [8324] = 2073, + [8325] = 2020, + [8326] = 8021, + [8327] = 2021, + [8328] = 2018, + [8329] = 2021, + [8330] = 2049, + [8331] = 8014, + [8332] = 8024, + [8333] = 2081, + [8334] = 8043, + [8335] = 2017, + [8336] = 8336, + [8337] = 8032, + [8338] = 2022, + [8339] = 2023, + [8340] = 2022, + [8341] = 2025, + [8342] = 2023, + [8343] = 2399, + [8344] = 2034, + [8345] = 2016, + [8346] = 2024, + [8347] = 2018, + [8348] = 8348, + [8349] = 2053, + [8350] = 2035, + [8351] = 8145, + [8352] = 2020, + [8353] = 2070, + [8354] = 2660, + [8355] = 8030, + [8356] = 8356, + [8357] = 2030, + [8358] = 1980, + [8359] = 2024, + [8360] = 2059, + [8361] = 2019, + [8362] = 2054, + [8363] = 2043, + [8364] = 8189, + [8365] = 2025, + [8366] = 2068, + [8367] = 2024, + [8368] = 2019, + [8369] = 8076, + [8370] = 8077, + [8371] = 2089, + [8372] = 2020, + [8373] = 8111, + [8374] = 2038, + [8375] = 2399, + [8376] = 2090, + [8377] = 8065, + [8378] = 8227, + [8379] = 8091, + [8380] = 2037, + [8381] = 8099, + [8382] = 8278, + [8383] = 8249, + [8384] = 8156, + [8385] = 8093, + [8386] = 8270, + [8387] = 8208, + [8388] = 2091, + [8389] = 2044, + [8390] = 8154, + [8391] = 2027, + [8392] = 8060, + [8393] = 8255, + [8394] = 8126, + [8395] = 8202, + [8396] = 2069, + [8397] = 2060, + [8398] = 8215, + [8399] = 8180, + [8400] = 8058, + [8401] = 2098, + [8402] = 2524, + [8403] = 8150, + [8404] = 8260, + [8405] = 8262, + [8406] = 8152, + [8407] = 8061, + [8408] = 8153, + [8409] = 8159, + [8410] = 8161, + [8411] = 8069, + [8412] = 8072, + [8413] = 8143, + [8414] = 8172, + [8415] = 8174, + [8416] = 8190, + [8417] = 8167, + [8418] = 8052, [8419] = 8098, - [8420] = 8105, - [8421] = 8111, - [8422] = 8114, - [8423] = 8118, - [8424] = 8125, - [8425] = 8126, - [8426] = 8137, - [8427] = 8138, - [8428] = 8237, - [8429] = 8145, - [8430] = 8146, - [8431] = 8147, - [8432] = 1997, - [8433] = 8151, - [8434] = 8156, - [8435] = 2014, - [8436] = 8157, - [8437] = 8158, - [8438] = 8159, - [8439] = 8160, - [8440] = 8162, - [8441] = 2048, - [8442] = 8215, - [8443] = 8216, - [8444] = 8219, - [8445] = 8221, - [8446] = 8224, - [8447] = 8110, - [8448] = 8051, - [8449] = 8044, - [8450] = 8102, - [8451] = 2746, - [8452] = 8104, - [8453] = 8108, - [8454] = 8116, - [8455] = 8012, - [8456] = 2001, - [8457] = 8124, - [8458] = 8127, - [8459] = 8128, - [8460] = 8129, - [8461] = 8130, - [8462] = 8131, - [8463] = 8132, - [8464] = 8133, - [8465] = 8134, - [8466] = 8135, - [8467] = 8136, - [8468] = 8140, - [8469] = 8141, - [8470] = 2016, - [8471] = 8142, - [8472] = 8143, - [8473] = 8171, - [8474] = 8196, - [8475] = 8198, - [8476] = 8201, - [8477] = 8202, - [8478] = 8205, - [8479] = 8119, - [8480] = 8209, - [8481] = 8210, - [8482] = 8211, - [8483] = 2738, - [8484] = 8214, - [8485] = 8024, - [8486] = 8095, - [8487] = 8115, - [8488] = 8181, - [8489] = 8120, - [8490] = 2018, - [8491] = 8004, - [8492] = 8016, - [8493] = 8029, - [8494] = 2745, - [8495] = 8027, - [8496] = 8121, - [8497] = 8043, - [8498] = 8052, - [8499] = 8122, - [8500] = 8058, - [8501] = 8079, - [8502] = 2646, - [8503] = 8085, - [8504] = 8107, - [8505] = 8113, - [8506] = 8168, - [8507] = 8041, - [8508] = 2494, - [8509] = 8064, - [8510] = 8003, - [8511] = 1996, - [8512] = 1995, - [8513] = 2488, - [8514] = 1993, - [8515] = 8096, - [8516] = 8099, - [8517] = 8183, - [8518] = 8184, - [8519] = 8192, - [8520] = 8193, - [8521] = 8194, - [8522] = 8071, - [8523] = 2525, - [8524] = 8149, - [8525] = 2045, - [8526] = 2038, - [8527] = 8017, - [8528] = 8094, - [8529] = 8217, - [8530] = 8035, - [8531] = 8175, - [8532] = 8165, - [8533] = 8022, - [8534] = 8028, - [8535] = 8032, - [8536] = 8178, - [8537] = 8005, - [8538] = 8018, - [8539] = 8020, - [8540] = 2040, - [8541] = 8076, - [8542] = 1999, - [8543] = 8185, - [8544] = 8187, - [8545] = 2046, - [8546] = 8191, - [8547] = 8222, - [8548] = 8223, - [8549] = 2491, - [8550] = 8234, - [8551] = 2733, - [8552] = 2492, - [8553] = 2081, - [8554] = 2039, - [8555] = 2042, - [8556] = 8231, - [8557] = 2041, - [8558] = 8034, - [8559] = 8212, - [8560] = 8059, - [8561] = 8561, - [8562] = 8561, - [8563] = 8563, - [8564] = 8564, - [8565] = 8565, - [8566] = 8563, - [8567] = 1998, - [8568] = 8568, - [8569] = 1996, - [8570] = 8570, - [8571] = 2012, - [8572] = 2013, - [8573] = 8568, - [8574] = 8574, - [8575] = 8563, - [8576] = 8563, - [8577] = 8565, - [8578] = 2019, - [8579] = 8568, - [8580] = 7964, - [8581] = 8568, - [8582] = 8582, - [8583] = 2020, - [8584] = 8574, - [8585] = 8563, - [8586] = 8586, - [8587] = 8561, - [8588] = 8588, - [8589] = 8568, - [8590] = 8570, - [8591] = 8582, - [8592] = 8586, - [8593] = 8565, - [8594] = 8582, - [8595] = 8570, - [8596] = 8574, - [8597] = 8563, - [8598] = 2017, - [8599] = 8563, - [8600] = 8563, - [8601] = 8570, - [8602] = 8565, - [8603] = 8586, - [8604] = 8568, - [8605] = 8574, - [8606] = 8568, - [8607] = 8588, + [8420] = 8106, + [8421] = 8129, + [8422] = 8226, + [8423] = 2018, + [8424] = 2493, + [8425] = 2021, + [8426] = 8113, + [8427] = 8165, + [8428] = 8205, + [8429] = 8114, + [8430] = 8120, + [8431] = 8198, + [8432] = 8204, + [8433] = 8206, + [8434] = 8218, + [8435] = 8234, + [8436] = 8209, + [8437] = 8182, + [8438] = 8139, + [8439] = 8071, + [8440] = 2130, + [8441] = 8147, + [8442] = 8160, + [8443] = 8162, + [8444] = 2039, + [8445] = 2040, + [8446] = 8169, + [8447] = 8212, + [8448] = 8230, + [8449] = 8067, + [8450] = 8122, + [8451] = 8184, + [8452] = 8185, + [8453] = 2041, + [8454] = 8188, + [8455] = 2028, + [8456] = 8050, + [8457] = 2547, + [8458] = 8102, + [8459] = 8089, + [8460] = 2063, + [8461] = 8074, + [8462] = 2129, + [8463] = 8231, + [8464] = 8258, + [8465] = 8103, + [8466] = 8075, + [8467] = 8140, + [8468] = 8239, + [8469] = 8124, + [8470] = 8092, + [8471] = 8131, + [8472] = 8240, + [8473] = 8163, + [8474] = 2102, + [8475] = 2103, + [8476] = 2104, + [8477] = 8232, + [8478] = 8236, + [8479] = 2485, + [8480] = 2094, + [8481] = 2512, + [8482] = 2514, + [8483] = 8263, + [8484] = 8095, + [8485] = 8193, + [8486] = 8247, + [8487] = 8248, + [8488] = 2026, + [8489] = 8197, + [8490] = 8057, + [8491] = 2096, + [8492] = 8138, + [8493] = 8244, + [8494] = 8253, + [8495] = 8178, + [8496] = 8132, + [8497] = 8279, + [8498] = 8181, + [8499] = 8225, + [8500] = 8238, + [8501] = 8127, + [8502] = 8149, + [8503] = 8068, + [8504] = 8221, + [8505] = 8133, + [8506] = 8268, + [8507] = 8211, + [8508] = 8257, + [8509] = 8229, + [8510] = 8271, + [8511] = 2113, + [8512] = 8282, + [8513] = 8064, + [8514] = 8066, + [8515] = 8254, + [8516] = 8078, + [8517] = 8079, + [8518] = 8080, + [8519] = 8081, + [8520] = 8105, + [8521] = 2582, + [8522] = 8158, + [8523] = 8256, + [8524] = 2548, + [8525] = 8175, + [8526] = 8283, + [8527] = 8222, + [8528] = 8250, + [8529] = 8269, + [8530] = 2065, + [8531] = 8261, + [8532] = 2071, + [8533] = 2067, + [8534] = 8276, + [8535] = 2042, + [8536] = 2029, + [8537] = 2031, + [8538] = 2062, + [8539] = 2722, + [8540] = 2085, + [8541] = 8265, + [8542] = 8083, + [8543] = 2083, + [8544] = 8059, + [8545] = 8073, + [8546] = 8108, + [8547] = 8115, + [8548] = 2022, + [8549] = 8281, + [8550] = 8207, + [8551] = 8213, + [8552] = 8228, + [8553] = 8259, + [8554] = 8096, + [8555] = 8157, + [8556] = 8166, + [8557] = 8191, + [8558] = 8054, + [8559] = 2023, + [8560] = 8273, + [8561] = 8280, + [8562] = 8053, + [8563] = 8272, + [8564] = 8087, + [8565] = 8251, + [8566] = 8088, + [8567] = 8241, + [8568] = 8243, + [8569] = 8055, + [8570] = 8084, + [8571] = 2016, + [8572] = 8049, + [8573] = 2505, + [8574] = 8063, + [8575] = 8148, + [8576] = 2032, + [8577] = 2033, + [8578] = 8170, + [8579] = 8173, + [8580] = 8186, + [8581] = 8195, + [8582] = 8200, + [8583] = 8210, + [8584] = 8216, + [8585] = 8107, + [8586] = 8220, + [8587] = 8224, + [8588] = 8233, + [8589] = 8235, + [8590] = 8245, + [8591] = 8246, + [8592] = 8274, + [8593] = 8275, + [8594] = 8177, + [8595] = 8168, + [8596] = 8237, + [8597] = 8137, + [8598] = 8118, + [8599] = 8121, + [8600] = 8203, + [8601] = 8101, + [8602] = 8141, + [8603] = 8146, + [8604] = 8151, + [8605] = 8267, + [8606] = 2061, + [8607] = 2036, [8608] = 8608, - [8609] = 8563, - [8610] = 8582, - [8611] = 1997, - [8612] = 2014, - [8613] = 8565, + [8609] = 2081, + [8610] = 8610, + [8611] = 8611, + [8612] = 8612, + [8613] = 2026, [8614] = 8614, - [8615] = 8588, - [8616] = 8568, - [8617] = 8568, - [8618] = 8563, - [8619] = 8568, - [8620] = 8565, - [8621] = 8574, - [8622] = 8565, - [8623] = 8570, - [8624] = 7989, - [8625] = 8563, - [8626] = 8561, - [8627] = 8568, - [8628] = 2021, - [8629] = 2004, - [8630] = 8582, - [8631] = 8588, - [8632] = 8586, - [8633] = 8568, - [8634] = 8074, - [8635] = 1995, - [8636] = 8570, - [8637] = 8563, - [8638] = 8568, - [8639] = 8574, - [8640] = 8563, - [8641] = 8641, - [8642] = 8642, - [8643] = 8568, - [8644] = 8574, - [8645] = 8568, - [8646] = 2005, - [8647] = 8565, - [8648] = 8565, - [8649] = 8574, - [8650] = 8563, - [8651] = 2006, - [8652] = 8568, - [8653] = 2742, - [8654] = 2008, - [8655] = 8574, - [8656] = 2003, - [8657] = 8563, - [8658] = 2009, - [8659] = 8561, - [8660] = 8582, - [8661] = 8570, - [8662] = 8563, - [8663] = 8586, - [8664] = 8588, - [8665] = 8002, - [8666] = 8586, - [8667] = 7982, - [8668] = 8570, - [8669] = 2016, - [8670] = 7993, - [8671] = 8561, - [8672] = 8565, - [8673] = 8563, - [8674] = 8574, - [8675] = 8568, - [8676] = 8574, - [8677] = 1999, - [8678] = 8678, - [8679] = 8568, - [8680] = 8561, - [8681] = 8561, - [8682] = 8586, - [8683] = 2001, - [8684] = 8574, - [8685] = 8563, - [8686] = 8561, - [8687] = 8582, - [8688] = 8565, - [8689] = 2018, - [8690] = 8561, - [8691] = 8582, - [8692] = 8588, - [8693] = 8582, - [8694] = 8570, - [8695] = 8588, - [8696] = 8582, - [8697] = 8561, - [8698] = 8561, - [8699] = 8582, - [8700] = 2053, - [8701] = 8582, - [8702] = 8702, - [8703] = 8588, - [8704] = 8588, - [8705] = 8586, - [8706] = 8563, - [8707] = 8570, - [8708] = 8588, - [8709] = 8563, - [8710] = 8565, - [8711] = 8582, - [8712] = 2421, - [8713] = 8568, - [8714] = 8574, - [8715] = 8588, - [8716] = 8586, - [8717] = 8568, - [8718] = 8574, - [8719] = 2010, - [8720] = 8588, - [8721] = 8588, - [8722] = 8565, - [8723] = 8586, - [8724] = 8561, - [8725] = 8570, - [8726] = 8570, - [8727] = 8582, - [8728] = 8586, - [8729] = 8563, - [8730] = 8586, - [8731] = 2015, - [8732] = 8568, - [8733] = 8588, - [8734] = 8570, - [8735] = 8586, - [8736] = 8574, - [8737] = 2054, - [8738] = 8738, - [8739] = 8565, - [8740] = 8586, - [8741] = 8570, - [8742] = 2007, - [8743] = 8563, - [8744] = 8568, - [8745] = 8574, - [8746] = 7998, - [8747] = 8588, - [8748] = 8561, - [8749] = 8588, - [8750] = 2011, - [8751] = 8077, - [8752] = 8121, - [8753] = 8003, - [8754] = 8231, - [8755] = 8233, - [8756] = 8756, - [8757] = 8757, - [8758] = 8758, - [8759] = 8759, - [8760] = 8760, - [8761] = 8021, - [8762] = 8070, - [8763] = 8080, - [8764] = 8197, - [8765] = 8033, - [8766] = 8766, - [8767] = 8144, - [8768] = 8768, - [8769] = 8154, - [8770] = 8155, - [8771] = 8161, - [8772] = 8166, - [8773] = 8006, - [8774] = 8009, - [8775] = 8025, - [8776] = 8026, - [8777] = 8777, - [8778] = 8777, - [8779] = 8135, - [8780] = 8780, - [8781] = 2019, - [8782] = 8782, - [8783] = 8783, - [8784] = 8784, - [8785] = 8785, - [8786] = 8087, - [8787] = 8091, - [8788] = 8092, - [8789] = 8097, - [8790] = 2087, - [8791] = 8777, - [8792] = 8792, - [8793] = 8782, - [8794] = 8783, - [8795] = 8784, - [8796] = 8785, - [8797] = 8792, - [8798] = 8798, - [8799] = 8782, - [8800] = 8798, - [8801] = 8757, - [8802] = 8051, - [8803] = 8059, - [8804] = 8102, - [8805] = 8104, - [8806] = 8108, - [8807] = 8116, - [8808] = 8756, - [8809] = 8124, - [8810] = 8127, - [8811] = 8128, - [8812] = 8129, - [8813] = 8813, - [8814] = 8814, - [8815] = 8196, - [8816] = 8198, - [8817] = 8201, - [8818] = 8202, - [8819] = 8205, - [8820] = 8820, - [8821] = 8209, - [8822] = 8210, - [8823] = 8823, - [8824] = 8756, - [8825] = 8095, - [8826] = 8115, - [8827] = 8181, - [8828] = 1993, - [8829] = 8820, - [8830] = 8004, - [8831] = 8016, - [8832] = 8029, - [8833] = 8780, - [8834] = 8834, - [8835] = 2746, - [8836] = 8820, - [8837] = 2738, - [8838] = 2000, - [8839] = 8823, - [8840] = 8757, - [8841] = 8841, - [8842] = 8780, - [8843] = 8783, - [8844] = 8784, - [8845] = 8756, - [8846] = 8823, - [8847] = 8820, - [8848] = 8785, - [8849] = 8780, - [8850] = 8230, - [8851] = 8756, - [8852] = 1997, - [8853] = 8823, - [8854] = 8813, - [8855] = 8820, - [8856] = 8212, - [8857] = 8780, - [8858] = 8756, - [8859] = 8792, - [8860] = 8813, - [8861] = 8814, - [8862] = 8798, - [8863] = 8232, - [8864] = 8823, - [8865] = 8040, - [8866] = 8042, - [8867] = 8044, - [8868] = 8777, - [8869] = 8780, - [8870] = 8136, - [8871] = 8140, - [8872] = 8199, - [8873] = 8141, - [8874] = 8823, - [8875] = 8142, - [8876] = 8876, - [8877] = 8782, - [8878] = 8143, - [8879] = 8783, - [8880] = 8780, - [8881] = 2733, - [8882] = 8757, - [8883] = 8012, - [8884] = 8823, - [8885] = 8049, - [8886] = 8886, - [8887] = 8887, - [8888] = 8756, - [8889] = 8780, - [8890] = 8820, - [8891] = 8171, - [8892] = 8226, - [8893] = 8823, - [8894] = 8134, - [8895] = 1996, - [8896] = 1995, - [8897] = 8757, - [8898] = 8814, - [8899] = 8780, - [8900] = 8886, + [8615] = 8615, + [8616] = 2020, + [8617] = 8615, + [8618] = 8615, + [8619] = 8610, + [8620] = 8610, + [8621] = 8621, + [8622] = 8622, + [8623] = 8608, + [8624] = 8610, + [8625] = 8612, + [8626] = 8621, + [8627] = 8622, + [8628] = 8610, + [8629] = 8608, + [8630] = 8612, + [8631] = 8610, + [8632] = 8632, + [8633] = 8612, + [8634] = 2034, + [8635] = 8632, + [8636] = 8632, + [8637] = 8621, + [8638] = 8622, + [8639] = 8608, + [8640] = 8611, + [8641] = 8614, + [8642] = 8615, + [8643] = 2032, + [8644] = 8632, + [8645] = 2033, + [8646] = 2021, + [8647] = 8610, + [8648] = 8612, + [8649] = 8649, + [8650] = 8621, + [8651] = 8622, + [8652] = 8615, + [8653] = 8632, + [8654] = 8654, + [8655] = 8612, + [8656] = 8632, + [8657] = 8621, + [8658] = 8658, + [8659] = 8622, + [8660] = 8632, + [8661] = 8615, + [8662] = 2028, + [8663] = 8614, + [8664] = 8612, + [8665] = 8611, + [8666] = 8608, + [8667] = 8612, + [8668] = 8612, + [8669] = 2022, + [8670] = 8632, + [8671] = 2023, + [8672] = 8672, + [8673] = 2024, + [8674] = 8621, + [8675] = 8622, + [8676] = 2018, + [8677] = 8611, + [8678] = 8608, + [8679] = 8614, + [8680] = 8614, + [8681] = 8681, + [8682] = 2660, + [8683] = 8614, + [8684] = 8612, + [8685] = 8632, + [8686] = 8615, + [8687] = 8032, + [8688] = 8688, + [8689] = 8621, + [8690] = 8622, + [8691] = 8611, + [8692] = 2073, + [8693] = 8612, + [8694] = 8610, + [8695] = 8610, + [8696] = 8621, + [8697] = 8612, + [8698] = 8021, + [8699] = 8632, + [8700] = 8043, + [8701] = 8612, + [8702] = 8621, + [8703] = 2030, + [8704] = 8612, + [8705] = 2524, + [8706] = 8621, + [8707] = 8621, + [8708] = 8614, + [8709] = 8612, + [8710] = 8621, + [8711] = 8632, + [8712] = 8612, + [8713] = 8621, + [8714] = 2035, + [8715] = 8622, + [8716] = 8614, + [8717] = 8030, + [8718] = 8612, + [8719] = 8632, + [8720] = 8621, + [8721] = 2547, + [8722] = 8622, + [8723] = 8621, + [8724] = 8608, + [8725] = 8612, + [8726] = 8611, + [8727] = 8614, + [8728] = 8611, + [8729] = 8014, + [8730] = 8632, + [8731] = 8024, + [8732] = 8608, + [8733] = 8621, + [8734] = 8622, + [8735] = 8735, + [8736] = 2485, + [8737] = 8615, + [8738] = 8611, + [8739] = 8610, + [8740] = 8621, + [8741] = 2505, + [8742] = 2036, + [8743] = 8614, + [8744] = 8632, + [8745] = 8614, + [8746] = 8615, + [8747] = 8615, + [8748] = 2039, + [8749] = 8608, + [8750] = 8622, + [8751] = 8610, + [8752] = 2040, + [8753] = 8612, + [8754] = 2037, + [8755] = 8621, + [8756] = 8622, + [8757] = 8612, + [8758] = 2027, + [8759] = 2043, + [8760] = 8621, + [8761] = 2038, + [8762] = 8622, + [8763] = 8622, + [8764] = 8614, + [8765] = 8765, + [8766] = 8145, + [8767] = 8608, + [8768] = 8614, + [8769] = 8611, + [8770] = 8614, + [8771] = 8615, + [8772] = 8611, + [8773] = 8608, + [8774] = 8610, + [8775] = 8612, + [8776] = 2042, + [8777] = 8621, + [8778] = 8622, + [8779] = 8615, + [8780] = 2029, + [8781] = 8621, + [8782] = 8612, + [8783] = 2031, + [8784] = 2041, + [8785] = 8622, + [8786] = 8615, + [8787] = 8608, + [8788] = 8610, + [8789] = 8608, + [8790] = 8611, + [8791] = 8614, + [8792] = 8611, + [8793] = 8610, + [8794] = 8611, + [8795] = 8614, + [8796] = 8608, + [8797] = 8615, + [8798] = 8621, + [8799] = 2044, + [8800] = 8611, + [8801] = 2130, + [8802] = 8802, + [8803] = 8802, + [8804] = 8804, + [8805] = 8805, + [8806] = 8806, + [8807] = 2014, + [8808] = 2015, + [8809] = 2012, + [8810] = 8159, + [8811] = 8811, + [8812] = 8804, + [8813] = 2011, + [8814] = 2013, + [8815] = 8815, + [8816] = 8816, + [8817] = 8805, + [8818] = 8161, + [8819] = 8060, + [8820] = 2030, + [8821] = 8167, + [8822] = 8822, + [8823] = 8802, + [8824] = 8804, + [8825] = 8805, + [8826] = 8073, + [8827] = 8215, + [8828] = 8107, + [8829] = 8180, + [8830] = 8830, + [8831] = 8831, + [8832] = 8058, + [8833] = 8833, + [8834] = 8204, + [8835] = 8150, + [8836] = 8260, + [8837] = 8837, + [8838] = 8838, + [8839] = 8165, + [8840] = 8218, + [8841] = 8209, + [8842] = 8139, + [8843] = 2485, + [8844] = 8071, + [8845] = 8147, + [8846] = 8846, + [8847] = 8802, + [8848] = 8182, + [8849] = 8169, + [8850] = 8804, + [8851] = 8805, + [8852] = 8212, + [8853] = 8230, + [8854] = 8067, + [8855] = 8830, + [8856] = 8856, + [8857] = 8122, + [8858] = 8185, + [8859] = 8184, + [8860] = 8860, + [8861] = 8860, + [8862] = 8190, + [8863] = 8052, + [8864] = 8050, + [8865] = 8231, + [8866] = 8232, + [8867] = 8867, + [8868] = 8236, + [8869] = 8061, + [8870] = 8247, + [8871] = 2722, + [8872] = 8248, + [8873] = 8802, + [8874] = 2094, + [8875] = 8143, + [8876] = 8263, + [8877] = 8258, + [8878] = 8804, + [8879] = 8254, + [8880] = 8098, + [8881] = 8804, + [8882] = 8103, + [8883] = 8075, + [8884] = 8140, + [8885] = 8239, + [8886] = 8805, + [8887] = 8124, + [8888] = 8092, + [8889] = 8129, + [8890] = 2096, + [8891] = 8131, + [8892] = 8188, + [8893] = 8893, + [8894] = 8240, + [8895] = 8163, + [8896] = 8226, + [8897] = 8897, + [8898] = 8898, + [8899] = 8816, + [8900] = 8900, [8901] = 8901, - [8902] = 2738, - [8903] = 8823, - [8904] = 8130, - [8905] = 8780, - [8906] = 8100, - [8907] = 8131, - [8908] = 2081, - [8909] = 8823, - [8910] = 8887, - [8911] = 8784, - [8912] = 8757, - [8913] = 8132, - [8914] = 8760, - [8915] = 8780, - [8916] = 8766, - [8917] = 2745, - [8918] = 1991, - [8919] = 8820, - [8920] = 8785, - [8921] = 8823, - [8922] = 8798, - [8923] = 8813, - [8924] = 8757, - [8925] = 8780, - [8926] = 8926, - [8927] = 8814, - [8928] = 8928, - [8929] = 8036, - [8930] = 8930, - [8931] = 8081, - [8932] = 8758, - [8933] = 8759, - [8934] = 2746, + [8902] = 8902, + [8903] = 8903, + [8904] = 8904, + [8905] = 8811, + [8906] = 2505, + [8907] = 8189, + [8908] = 8908, + [8909] = 8089, + [8910] = 8095, + [8911] = 8911, + [8912] = 8822, + [8913] = 8913, + [8914] = 8831, + [8915] = 8802, + [8916] = 8916, + [8917] = 8897, + [8918] = 8802, + [8919] = 8132, + [8920] = 2102, + [8921] = 2103, + [8922] = 8804, + [8923] = 8805, + [8924] = 2104, + [8925] = 8138, + [8926] = 8244, + [8927] = 8253, + [8928] = 8833, + [8929] = 8178, + [8930] = 8279, + [8931] = 8181, + [8932] = 8193, + [8933] = 8804, + [8934] = 8225, [8935] = 8935, - [8936] = 8756, - [8937] = 8823, - [8938] = 8820, - [8939] = 8780, - [8940] = 8940, - [8941] = 8757, - [8942] = 8886, - [8943] = 8757, - [8944] = 8780, - [8945] = 1999, - [8946] = 8123, - [8947] = 8172, - [8948] = 2001, - [8949] = 8173, - [8950] = 8200, - [8951] = 8207, - [8952] = 8780, - [8953] = 8088, - [8954] = 8954, - [8955] = 8887, - [8956] = 8780, - [8957] = 8024, - [8958] = 8027, - [8959] = 8133, - [8960] = 8823, - [8961] = 8780, - [8962] = 8043, - [8963] = 8052, - [8964] = 8792, - [8965] = 8058, - [8966] = 8926, - [8967] = 2078, - [8968] = 8757, - [8969] = 8780, - [8970] = 8930, - [8971] = 8085, - [8972] = 8113, - [8973] = 8780, - [8974] = 8168, - [8975] = 8758, - [8976] = 8756, - [8977] = 8780, - [8978] = 8780, - [8979] = 8820, - [8980] = 8980, - [8981] = 2010, - [8982] = 8756, - [8983] = 8759, - [8984] = 1989, - [8985] = 2085, - [8986] = 8041, - [8987] = 8064, - [8988] = 8820, - [8989] = 2646, - [8990] = 8780, - [8991] = 8756, - [8992] = 8096, - [8993] = 8099, - [8994] = 8107, - [8995] = 8183, - [8996] = 8034, - [8997] = 2109, - [8998] = 8757, - [8999] = 2102, - [9000] = 8184, - [9001] = 8823, - [9002] = 8193, - [9003] = 8760, - [9004] = 8220, - [9005] = 8179, - [9006] = 8192, - [9007] = 8194, - [9008] = 8820, - [9009] = 8071, - [9010] = 8149, - [9011] = 8017, - [9012] = 8756, - [9013] = 8094, - [9014] = 8175, - [9015] = 8165, - [9016] = 8022, - [9017] = 8028, - [9018] = 8032, - [9019] = 8178, - [9020] = 8820, - [9021] = 8005, - [9022] = 8018, - [9023] = 8020, - [9024] = 8076, - [9025] = 8185, - [9026] = 8187, - [9027] = 8191, - [9028] = 8222, - [9029] = 8223, - [9030] = 8234, - [9031] = 8217, - [9032] = 9032, - [9033] = 8035, - [9034] = 2066, - [9035] = 8760, - [9036] = 2083, - [9037] = 8766, - [9038] = 8208, - [9039] = 8768, - [9040] = 8886, - [9041] = 8887, - [9042] = 1998, - [9043] = 8757, - [9044] = 8122, - [9045] = 2082, - [9046] = 2090, - [9047] = 2061, - [9048] = 2060, - [9049] = 8766, - [9050] = 8757, - [9051] = 8768, - [9052] = 8106, - [9053] = 8148, - [9054] = 8164, - [9055] = 8167, - [9056] = 8174, - [9057] = 9057, - [9058] = 8229, - [9059] = 8010, - [9060] = 8013, - [9061] = 8031, - [9062] = 8062, - [9063] = 8075, - [9064] = 8078, - [9065] = 8083, - [9066] = 8086, - [9067] = 8089, - [9068] = 8090, - [9069] = 8101, - [9070] = 8112, - [9071] = 8117, - [9072] = 8152, - [9073] = 8153, - [9074] = 9074, - [9075] = 8037, - [9076] = 8045, - [9077] = 8046, - [9078] = 8054, - [9079] = 8056, - [9080] = 8057, - [9081] = 8060, - [9082] = 8066, - [9083] = 8068, - [9084] = 8756, - [9085] = 8072, - [9086] = 8820, - [9087] = 2074, - [9088] = 8768, - [9089] = 8926, - [9090] = 2733, - [9091] = 8930, - [9092] = 2745, - [9093] = 8926, - [9094] = 8756, - [9095] = 8169, - [9096] = 2076, - [9097] = 8758, - [9098] = 9098, - [9099] = 8098, - [9100] = 8105, - [9101] = 8111, - [9102] = 8114, - [9103] = 8118, - [9104] = 8125, - [9105] = 8126, - [9106] = 8137, - [9107] = 8138, - [9108] = 8237, - [9109] = 8145, - [9110] = 8146, - [9111] = 8147, - [9112] = 8151, - [9113] = 8156, - [9114] = 8157, - [9115] = 8158, - [9116] = 8159, - [9117] = 8160, - [9118] = 8162, - [9119] = 8163, - [9120] = 8215, - [9121] = 8216, - [9122] = 8219, - [9123] = 8221, - [9124] = 8224, - [9125] = 8820, - [9126] = 2393, - [9127] = 8930, - [9128] = 8759, - [9129] = 8211, + [8936] = 8806, + [8937] = 8805, + [8938] = 8805, + [8939] = 8197, + [8940] = 8208, + [8941] = 2113, + [8942] = 8898, + [8943] = 8901, + [8944] = 2524, + [8945] = 8234, + [8946] = 2021, + [8947] = 2083, + [8948] = 2129, + [8949] = 8238, + [8950] = 8127, + [8951] = 8133, + [8952] = 8831, + [8953] = 8833, + [8954] = 8063, + [8955] = 8837, + [8956] = 8838, + [8957] = 8149, + [8958] = 8068, + [8959] = 8221, + [8960] = 8211, + [8961] = 8846, + [8962] = 8830, + [8963] = 8902, + [8964] = 8860, + [8965] = 8903, + [8966] = 8904, + [8967] = 8257, + [8968] = 8229, + [8969] = 8837, + [8970] = 2024, + [8971] = 8271, + [8972] = 8838, + [8973] = 8282, + [8974] = 8069, + [8975] = 8268, + [8976] = 8072, + [8977] = 8256, + [8978] = 8064, + [8979] = 8269, + [8980] = 8276, + [8981] = 8802, + [8982] = 8897, + [8983] = 8898, + [8984] = 8901, + [8985] = 8902, + [8986] = 8903, + [8987] = 8904, + [8988] = 8811, + [8989] = 2459, + [8990] = 8816, + [8991] = 2018, + [8992] = 8066, + [8993] = 8911, + [8994] = 8994, + [8995] = 8078, + [8996] = 8079, + [8997] = 8816, + [8998] = 8080, + [8999] = 8081, + [9000] = 8105, + [9001] = 8822, + [9002] = 8911, + [9003] = 8916, + [9004] = 8816, + [9005] = 8158, + [9006] = 8175, + [9007] = 8283, + [9008] = 8281, + [9009] = 8911, + [9010] = 2454, + [9011] = 8222, + [9012] = 8250, + [9013] = 8802, + [9014] = 8816, + [9015] = 8911, + [9016] = 8804, + [9017] = 8802, + [9018] = 8816, + [9019] = 8261, + [9020] = 8265, + [9021] = 8911, + [9022] = 8816, + [9023] = 8805, + [9024] = 8083, + [9025] = 8059, + [9026] = 2016, + [9027] = 8911, + [9028] = 2019, + [9029] = 8816, + [9030] = 8805, + [9031] = 8911, + [9032] = 8108, + [9033] = 8115, + [9034] = 8262, + [9035] = 8816, + [9036] = 8207, + [9037] = 8213, + [9038] = 8065, + [9039] = 8228, + [9040] = 8259, + [9041] = 8096, + [9042] = 8106, + [9043] = 8157, + [9044] = 8166, + [9045] = 8911, + [9046] = 8805, + [9047] = 8191, + [9048] = 2547, + [9049] = 2043, + [9050] = 8816, + [9051] = 8091, + [9052] = 2547, + [9053] = 8099, + [9054] = 8278, + [9055] = 8087, + [9056] = 8911, + [9057] = 8249, + [9058] = 2085, + [9059] = 8205, + [9060] = 8114, + [9061] = 8120, + [9062] = 8198, + [9063] = 8156, + [9064] = 8816, + [9065] = 8802, + [9066] = 8154, + [9067] = 8126, + [9068] = 2098, + [9069] = 8273, + [9070] = 8911, + [9071] = 8280, + [9072] = 8206, + [9073] = 8053, + [9074] = 8272, + [9075] = 8186, + [9076] = 8251, + [9077] = 8088, + [9078] = 8241, + [9079] = 8243, + [9080] = 8804, + [9081] = 8816, + [9082] = 8195, + [9083] = 8805, + [9084] = 8200, + [9085] = 8911, + [9086] = 8210, + [9087] = 8816, + [9088] = 8935, + [9089] = 8216, + [9090] = 8220, + [9091] = 8224, + [9092] = 2485, + [9093] = 8911, + [9094] = 9094, + [9095] = 8233, + [9096] = 8802, + [9097] = 8911, + [9098] = 8916, + [9099] = 8235, + [9100] = 8245, + [9101] = 8246, + [9102] = 8911, + [9103] = 8806, + [9104] = 8804, + [9105] = 8805, + [9106] = 8911, + [9107] = 8084, + [9108] = 8148, + [9109] = 8911, + [9110] = 9110, + [9111] = 8170, + [9112] = 8173, + [9113] = 8911, + [9114] = 8274, + [9115] = 8275, + [9116] = 8911, + [9117] = 8911, + [9118] = 8935, + [9119] = 8911, + [9120] = 8806, + [9121] = 8177, + [9122] = 8055, + [9123] = 8168, + [9124] = 8911, + [9125] = 8237, + [9126] = 9126, + [9127] = 8093, + [9128] = 8049, + [9129] = 8137, [9130] = 9130, - [9131] = 8214, - [9132] = 1992, - [9133] = 1990, - [9134] = 1988, - [9135] = 8110, - [9136] = 8119, - [9137] = 8120, - [9138] = 8757, - [9139] = 8079, - [9140] = 9140, - [9141] = 9141, - [9142] = 9142, - [9143] = 9142, - [9144] = 9141, - [9145] = 9145, - [9146] = 9146, - [9147] = 9142, - [9148] = 9141, - [9149] = 9149, - [9150] = 9142, - [9151] = 9151, - [9152] = 9142, - [9153] = 9149, - [9154] = 9151, - [9155] = 9155, - [9156] = 9149, - [9157] = 9157, - [9158] = 9149, - [9159] = 9151, - [9160] = 9155, - [9161] = 9155, - [9162] = 9157, - [9163] = 9141, - [9164] = 9142, - [9165] = 9140, - [9166] = 9166, - [9167] = 9167, - [9168] = 9168, - [9169] = 9146, - [9170] = 9141, - [9171] = 9171, - [9172] = 9157, - [9173] = 9142, - [9174] = 9149, - [9175] = 9175, - [9176] = 9176, - [9177] = 9142, - [9178] = 9141, - [9179] = 9141, - [9180] = 9140, - [9181] = 9166, - [9182] = 9142, - [9183] = 9149, - [9184] = 9167, - [9185] = 9151, - [9186] = 9146, - [9187] = 9146, - [9188] = 9151, - [9189] = 9155, - [9190] = 9155, - [9191] = 9142, - [9192] = 9141, - [9193] = 9141, - [9194] = 9157, - [9195] = 9157, - [9196] = 9157, - [9197] = 9140, - [9198] = 9142, - [9199] = 9141, - [9200] = 8027, - [9201] = 9166, - [9202] = 9167, - [9203] = 9142, - [9204] = 9149, - [9205] = 9151, - [9206] = 9155, - [9207] = 9157, - [9208] = 9146, - [9209] = 2484, - [9210] = 2733, - [9211] = 9141, - [9212] = 9140, - [9213] = 9166, - [9214] = 9167, - [9215] = 9146, - [9216] = 8230, - [9217] = 9141, - [9218] = 2393, - [9219] = 9141, - [9220] = 9166, - [9221] = 9167, - [9222] = 9222, - [9223] = 2738, - [9224] = 9140, - [9225] = 9225, - [9226] = 9226, - [9227] = 2745, - [9228] = 9146, - [9229] = 2746, - [9230] = 9141, - [9231] = 9231, - [9232] = 9140, - [9233] = 9142, - [9234] = 9149, - [9235] = 9142, - [9236] = 9149, - [9237] = 9151, - [9238] = 9155, - [9239] = 9157, - [9240] = 9166, - [9241] = 9167, - [9242] = 9242, - [9243] = 9141, - [9244] = 9244, - [9245] = 9140, - [9246] = 9246, - [9247] = 9140, - [9248] = 2525, - [9249] = 9157, - [9250] = 9142, - [9251] = 9251, - [9252] = 9141, - [9253] = 9140, - [9254] = 9166, - [9255] = 9167, - [9256] = 9146, - [9257] = 9146, - [9258] = 9149, + [9131] = 8118, + [9132] = 8121, + [9133] = 2505, + [9134] = 8831, + [9135] = 8833, + [9136] = 8203, + [9137] = 8837, + [9138] = 8838, + [9139] = 8101, + [9140] = 8846, + [9141] = 8830, + [9142] = 8860, + [9143] = 9143, + [9144] = 8141, + [9145] = 8897, + [9146] = 8804, + [9147] = 8898, + [9148] = 8074, + [9149] = 8846, + [9150] = 8935, + [9151] = 8160, + [9152] = 8901, + [9153] = 8902, + [9154] = 8903, + [9155] = 8904, + [9156] = 8811, + [9157] = 8162, + [9158] = 9158, + [9159] = 8146, + [9160] = 8822, + [9161] = 8916, + [9162] = 8802, + [9163] = 8151, + [9164] = 8267, + [9165] = 8102, + [9166] = 8113, + [9167] = 8804, + [9168] = 8805, + [9169] = 8227, + [9170] = 8270, + [9171] = 2020, + [9172] = 8057, + [9173] = 8076, + [9174] = 8255, + [9175] = 8077, + [9176] = 2022, + [9177] = 8111, + [9178] = 8172, + [9179] = 8174, + [9180] = 2023, + [9181] = 8152, + [9182] = 8153, + [9183] = 8802, + [9184] = 8202, + [9185] = 2089, + [9186] = 2090, + [9187] = 2524, + [9188] = 2091, + [9189] = 8054, + [9190] = 8804, + [9191] = 9191, + [9192] = 9192, + [9193] = 9193, + [9194] = 9194, + [9195] = 9195, + [9196] = 9193, + [9197] = 9197, + [9198] = 9198, + [9199] = 9199, + [9200] = 9195, + [9201] = 9197, + [9202] = 9202, + [9203] = 9203, + [9204] = 9204, + [9205] = 9199, + [9206] = 9198, + [9207] = 9207, + [9208] = 2459, + [9209] = 9195, + [9210] = 9192, + [9211] = 9211, + [9212] = 9207, + [9213] = 9202, + [9214] = 2570, + [9215] = 9211, + [9216] = 9207, + [9217] = 2571, + [9218] = 9194, + [9219] = 9192, + [9220] = 2563, + [9221] = 9193, + [9222] = 9199, + [9223] = 2539, + [9224] = 2527, + [9225] = 9194, + [9226] = 9193, + [9227] = 2568, + [9228] = 2490, + [9229] = 2491, + [9230] = 9211, + [9231] = 9202, + [9232] = 9207, + [9233] = 2564, + [9234] = 9192, + [9235] = 2559, + [9236] = 9199, + [9237] = 9211, + [9238] = 2537, + [9239] = 9207, + [9240] = 9240, + [9241] = 9192, + [9242] = 9199, + [9243] = 9211, + [9244] = 9207, + [9245] = 9194, + [9246] = 9193, + [9247] = 9202, + [9248] = 9211, + [9249] = 9207, + [9250] = 9192, + [9251] = 9199, + [9252] = 9202, + [9253] = 9202, + [9254] = 9194, + [9255] = 9193, + [9256] = 9197, + [9257] = 9198, + [9258] = 9258, [9259] = 9259, - [9260] = 9141, - [9261] = 9140, - [9262] = 1994, - [9263] = 9226, - [9264] = 9264, - [9265] = 9142, - [9266] = 9266, - [9267] = 9149, - [9268] = 9151, - [9269] = 9151, - [9270] = 9155, - [9271] = 9142, - [9272] = 9149, - [9273] = 9151, - [9274] = 9157, - [9275] = 9225, - [9276] = 9166, - [9277] = 9155, - [9278] = 9151, - [9279] = 9157, - [9280] = 9171, - [9281] = 2513, - [9282] = 9142, - [9283] = 9149, - [9284] = 9151, - [9285] = 9167, - [9286] = 9155, - [9287] = 9155, - [9288] = 9141, - [9289] = 9140, - [9290] = 9166, - [9291] = 9167, - [9292] = 9146, - [9293] = 9166, - [9294] = 9142, - [9295] = 9149, - [9296] = 9141, - [9297] = 9140, - [9298] = 9146, - [9299] = 9157, - [9300] = 2489, - [9301] = 2514, - [9302] = 9141, - [9303] = 9140, - [9304] = 9166, - [9305] = 9167, - [9306] = 9146, - [9307] = 9140, - [9308] = 9308, - [9309] = 2493, - [9310] = 9225, - [9311] = 9226, - [9312] = 9312, - [9313] = 9142, - [9314] = 9166, - [9315] = 9167, - [9316] = 9225, - [9317] = 9226, - [9318] = 9318, - [9319] = 9171, - [9320] = 9167, - [9321] = 9142, - [9322] = 9225, - [9323] = 9226, - [9324] = 9149, - [9325] = 9225, - [9326] = 9226, - [9327] = 9141, - [9328] = 9225, - [9329] = 9226, - [9330] = 9140, - [9331] = 9141, - [9332] = 9225, - [9333] = 9226, - [9334] = 9167, - [9335] = 9140, - [9336] = 9225, - [9337] = 9226, - [9338] = 9149, - [9339] = 9225, - [9340] = 9226, - [9341] = 9151, - [9342] = 9225, - [9343] = 9226, - [9344] = 9225, - [9345] = 9226, - [9346] = 9155, - [9347] = 9225, - [9348] = 9226, - [9349] = 9166, - [9350] = 9167, - [9351] = 9225, - [9352] = 9226, - [9353] = 9146, - [9354] = 9225, - [9355] = 9226, - [9356] = 9225, - [9357] = 9226, - [9358] = 9358, - [9359] = 9359, - [9360] = 9155, - [9361] = 9146, - [9362] = 9142, - [9363] = 9141, - [9364] = 9157, - [9365] = 9365, - [9366] = 9142, - [9367] = 9149, - [9368] = 9151, - [9369] = 9155, - [9370] = 9157, - [9371] = 9166, - [9372] = 9372, - [9373] = 2667, - [9374] = 9374, + [9260] = 9260, + [9261] = 9211, + [9262] = 9195, + [9263] = 9194, + [9264] = 9207, + [9265] = 9194, + [9266] = 9193, + [9267] = 2511, + [9268] = 9197, + [9269] = 9198, + [9270] = 9193, + [9271] = 9194, + [9272] = 9272, + [9273] = 9197, + [9274] = 9194, + [9275] = 9193, + [9276] = 2522, + [9277] = 9195, + [9278] = 9195, + [9279] = 9193, + [9280] = 9197, + [9281] = 9198, + [9282] = 9211, + [9283] = 9194, + [9284] = 9197, + [9285] = 9198, + [9286] = 9286, + [9287] = 2502, + [9288] = 9202, + [9289] = 9195, + [9290] = 2523, + [9291] = 9211, + [9292] = 9194, + [9293] = 2506, + [9294] = 8227, + [9295] = 9198, + [9296] = 9296, + [9297] = 9195, + [9298] = 9298, + [9299] = 9299, + [9300] = 9211, + [9301] = 9194, + [9302] = 9198, + [9303] = 2586, + [9304] = 9304, + [9305] = 9211, + [9306] = 9194, + [9307] = 9211, + [9308] = 9207, + [9309] = 9192, + [9310] = 9199, + [9311] = 9202, + [9312] = 9211, + [9313] = 9194, + [9314] = 2482, + [9315] = 9211, + [9316] = 9194, + [9317] = 9194, + [9318] = 9193, + [9319] = 9197, + [9320] = 9198, + [9321] = 9195, + [9322] = 2562, + [9323] = 9195, + [9324] = 9324, + [9325] = 2548, + [9326] = 9204, + [9327] = 9194, + [9328] = 9328, + [9329] = 9193, + [9330] = 9211, + [9331] = 9207, + [9332] = 9192, + [9333] = 9199, + [9334] = 9202, + [9335] = 9211, + [9336] = 9336, + [9337] = 9193, + [9338] = 9194, + [9339] = 9193, + [9340] = 9197, + [9341] = 9198, + [9342] = 9197, + [9343] = 9195, + [9344] = 9344, + [9345] = 9211, + [9346] = 9207, + [9347] = 9192, + [9348] = 9199, + [9349] = 9202, + [9350] = 9211, + [9351] = 9204, + [9352] = 9199, + [9353] = 9191, + [9354] = 9286, + [9355] = 9211, + [9356] = 2573, + [9357] = 2483, + [9358] = 9199, + [9359] = 9207, + [9360] = 9194, + [9361] = 9193, + [9362] = 9197, + [9363] = 9198, + [9364] = 9192, + [9365] = 9195, + [9366] = 9366, + [9367] = 9202, + [9368] = 2486, + [9369] = 2515, + [9370] = 9192, + [9371] = 9207, + [9372] = 9197, + [9373] = 9199, + [9374] = 9211, [9375] = 9375, - [9376] = 2027, - [9377] = 9377, - [9378] = 9378, - [9379] = 9378, - [9380] = 9380, - [9381] = 2668, - [9382] = 9382, - [9383] = 9382, - [9384] = 9375, - [9385] = 2708, - [9386] = 9377, - [9387] = 2713, - [9388] = 2635, - [9389] = 9375, - [9390] = 2709, - [9391] = 9377, - [9392] = 2562, - [9393] = 9378, - [9394] = 2561, - [9395] = 2692, - [9396] = 9377, - [9397] = 9377, - [9398] = 9377, - [9399] = 9375, - [9400] = 9382, - [9401] = 9375, - [9402] = 2715, - [9403] = 9403, - [9404] = 9380, - [9405] = 2710, - [9406] = 9377, - [9407] = 2630, - [9408] = 9382, - [9409] = 2597, - [9410] = 2566, - [9411] = 9375, - [9412] = 2694, - [9413] = 2711, - [9414] = 9382, - [9415] = 9415, - [9416] = 2695, - [9417] = 2682, - [9418] = 9382, - [9419] = 9375, - [9420] = 9378, - [9421] = 2557, - [9422] = 2683, - [9423] = 9382, - [9424] = 9378, - [9425] = 9375, - [9426] = 9382, - [9427] = 2698, - [9428] = 9377, - [9429] = 2684, - [9430] = 9378, - [9431] = 2636, - [9432] = 9377, - [9433] = 9375, - [9434] = 2525, - [9435] = 9435, - [9436] = 2742, - [9437] = 9375, - [9438] = 2618, - [9439] = 9378, - [9440] = 9440, - [9441] = 9378, - [9442] = 9442, - [9443] = 2027, - [9444] = 9444, - [9445] = 9445, - [9446] = 9446, - [9447] = 2622, + [9376] = 9207, + [9377] = 9192, + [9378] = 9194, + [9379] = 9202, + [9380] = 2516, + [9381] = 2561, + [9382] = 2538, + [9383] = 2017, + [9384] = 2487, + [9385] = 9211, + [9386] = 9207, + [9387] = 9198, + [9388] = 9191, + [9389] = 9389, + [9390] = 9194, + [9391] = 9391, + [9392] = 2550, + [9393] = 9191, + [9394] = 9286, + [9395] = 2552, + [9396] = 9191, + [9397] = 9286, + [9398] = 2553, + [9399] = 9191, + [9400] = 9286, + [9401] = 9192, + [9402] = 9191, + [9403] = 9286, + [9404] = 9199, + [9405] = 9191, + [9406] = 9286, + [9407] = 2554, + [9408] = 9191, + [9409] = 9286, + [9410] = 2565, + [9411] = 9191, + [9412] = 9286, + [9413] = 9191, + [9414] = 9286, + [9415] = 9202, + [9416] = 9194, + [9417] = 9191, + [9418] = 9286, + [9419] = 9194, + [9420] = 9193, + [9421] = 9197, + [9422] = 9198, + [9423] = 9207, + [9424] = 9286, + [9425] = 9193, + [9426] = 9195, + [9427] = 9197, + [9428] = 9191, + [9429] = 9286, + [9430] = 9430, + [9431] = 9191, + [9432] = 9286, + [9433] = 9198, + [9434] = 9191, + [9435] = 9286, + [9436] = 9211, + [9437] = 9191, + [9438] = 9286, + [9439] = 9207, + [9440] = 8143, + [9441] = 9195, + [9442] = 2498, + [9443] = 9192, + [9444] = 9199, + [9445] = 9211, + [9446] = 9202, + [9447] = 2503, [9448] = 9448, - [9449] = 9377, - [9450] = 9450, - [9451] = 9378, + [9449] = 2539, + [9450] = 2548, + [9451] = 9451, [9452] = 9452, - [9453] = 9382, - [9454] = 9375, - [9455] = 9378, - [9456] = 9378, - [9457] = 2693, - [9458] = 2638, - [9459] = 9377, - [9460] = 9380, - [9461] = 9378, + [9453] = 9452, + [9454] = 2564, + [9455] = 9455, + [9456] = 9456, + [9457] = 9456, + [9458] = 9452, + [9459] = 9451, + [9460] = 9460, + [9461] = 2660, [9462] = 9462, - [9463] = 9378, - [9464] = 2626, - [9465] = 2634, - [9466] = 9466, - [9467] = 9467, - [9468] = 9382, - [9469] = 9377, - [9470] = 9377, - [9471] = 9378, - [9472] = 2697, - [9473] = 9382, - [9474] = 9382, - [9475] = 9375, - [9476] = 9476, - [9477] = 9375, - [9478] = 9478, - [9479] = 9382, - [9480] = 9375, - [9481] = 9377, - [9482] = 9382, - [9483] = 9483, - [9484] = 9484, - [9485] = 9485, - [9486] = 9486, - [9487] = 9487, - [9488] = 9488, - [9489] = 9489, - [9490] = 9489, - [9491] = 9491, - [9492] = 2667, - [9493] = 2668, + [9463] = 9463, + [9464] = 2559, + [9465] = 9456, + [9466] = 2537, + [9467] = 2454, + [9468] = 9451, + [9469] = 9460, + [9470] = 9452, + [9471] = 9460, + [9472] = 9472, + [9473] = 2498, + [9474] = 9474, + [9475] = 9451, + [9476] = 2550, + [9477] = 9451, + [9478] = 2527, + [9479] = 9460, + [9480] = 9480, + [9481] = 2552, + [9482] = 9451, + [9483] = 9456, + [9484] = 9460, + [9485] = 9452, + [9486] = 9474, + [9487] = 9456, + [9488] = 9456, + [9489] = 9452, + [9490] = 9452, + [9491] = 2586, + [9492] = 9460, + [9493] = 9456, [9494] = 9494, [9495] = 9495, - [9496] = 2694, - [9497] = 2630, - [9498] = 9489, - [9499] = 2622, - [9500] = 2697, - [9501] = 9489, - [9502] = 9415, - [9503] = 9503, - [9504] = 9491, - [9505] = 9505, - [9506] = 9489, - [9507] = 9507, - [9508] = 9485, - [9509] = 9486, - [9510] = 9485, - [9511] = 9489, - [9512] = 9489, - [9513] = 9513, - [9514] = 9507, - [9515] = 2713, - [9516] = 9485, - [9517] = 9505, - [9518] = 9485, - [9519] = 9519, - [9520] = 9485, - [9521] = 9505, - [9522] = 9495, - [9523] = 9523, - [9524] = 2682, - [9525] = 9525, - [9526] = 2708, - [9527] = 9507, - [9528] = 9505, - [9529] = 2597, - [9530] = 9530, - [9531] = 9505, - [9532] = 2484, - [9533] = 9533, - [9534] = 2513, - [9535] = 2514, - [9536] = 2489, - [9537] = 9485, - [9538] = 9495, - [9539] = 2742, - [9540] = 9415, - [9541] = 9495, - [9542] = 2634, - [9543] = 9543, - [9544] = 9495, - [9545] = 9495, - [9546] = 9483, - [9547] = 9486, - [9548] = 9507, - [9549] = 9489, - [9550] = 9485, - [9551] = 2484, - [9552] = 9489, - [9553] = 2715, - [9554] = 2709, - [9555] = 2047, - [9556] = 9503, - [9557] = 9557, - [9558] = 9507, - [9559] = 9485, - [9560] = 9491, - [9561] = 9505, - [9562] = 9491, - [9563] = 9491, - [9564] = 2557, - [9565] = 9505, - [9566] = 9505, - [9567] = 9505, - [9568] = 9568, - [9569] = 9507, - [9570] = 9503, - [9571] = 9571, - [9572] = 9485, - [9573] = 9489, - [9574] = 9489, - [9575] = 9575, - [9576] = 2698, - [9577] = 9489, - [9578] = 9507, - [9579] = 2692, - [9580] = 2635, - [9581] = 9505, - [9582] = 9505, - [9583] = 9415, - [9584] = 9489, - [9585] = 2638, - [9586] = 9495, - [9587] = 2109, - [9588] = 9505, - [9589] = 2513, - [9590] = 2489, - [9591] = 9489, - [9592] = 9507, - [9593] = 2102, - [9594] = 9491, + [9496] = 9496, + [9497] = 9497, + [9498] = 9452, + [9499] = 2553, + [9500] = 9500, + [9501] = 2486, + [9502] = 9452, + [9503] = 9452, + [9504] = 9504, + [9505] = 2571, + [9506] = 2554, + [9507] = 2516, + [9508] = 9508, + [9509] = 2522, + [9510] = 2562, + [9511] = 9511, + [9512] = 2523, + [9513] = 9456, + [9514] = 9456, + [9515] = 9451, + [9516] = 2573, + [9517] = 9451, + [9518] = 2055, + [9519] = 2055, + [9520] = 9460, + [9521] = 9452, + [9522] = 9460, + [9523] = 9460, + [9524] = 9451, + [9525] = 2561, + [9526] = 2538, + [9527] = 9451, + [9528] = 2487, + [9529] = 9529, + [9530] = 9460, + [9531] = 9451, + [9532] = 9456, + [9533] = 9456, + [9534] = 9460, + [9535] = 2565, + [9536] = 9460, + [9537] = 9456, + [9538] = 2563, + [9539] = 9452, + [9540] = 9451, + [9541] = 9460, + [9542] = 9456, + [9543] = 2483, + [9544] = 2568, + [9545] = 9545, + [9546] = 9456, + [9547] = 9474, + [9548] = 2490, + [9549] = 9549, + [9550] = 9550, + [9551] = 9452, + [9552] = 9451, + [9553] = 9451, + [9554] = 9460, + [9555] = 2511, + [9556] = 9556, + [9557] = 2570, + [9558] = 2491, + [9559] = 2503, + [9560] = 9452, + [9561] = 9561, + [9562] = 9561, + [9563] = 9563, + [9564] = 9564, + [9565] = 9565, + [9566] = 9566, + [9567] = 9561, + [9568] = 2482, + [9569] = 2502, + [9570] = 2506, + [9571] = 2515, + [9572] = 9572, + [9573] = 9573, + [9574] = 9574, + [9575] = 2130, + [9576] = 9574, + [9577] = 9563, + [9578] = 9578, + [9579] = 9565, + [9580] = 9566, + [9581] = 9565, + [9582] = 2055, + [9583] = 9561, + [9584] = 2129, + [9585] = 9495, + [9586] = 9586, + [9587] = 9587, + [9588] = 9574, + [9589] = 9573, + [9590] = 9566, + [9591] = 9448, + [9592] = 9566, + [9593] = 9563, + [9594] = 9573, [9595] = 9595, - [9596] = 9415, - [9597] = 9597, + [9596] = 9596, + [9597] = 9495, [9598] = 9598, - [9599] = 9489, - [9600] = 2710, - [9601] = 9491, - [9602] = 9507, - [9603] = 9495, - [9604] = 2693, - [9605] = 9415, - [9606] = 9606, - [9607] = 2636, - [9608] = 9495, - [9609] = 2566, - [9610] = 9485, - [9611] = 9491, - [9612] = 9484, - [9613] = 9485, - [9614] = 9505, - [9615] = 9491, - [9616] = 9491, - [9617] = 9491, - [9618] = 9491, - [9619] = 9507, - [9620] = 2711, - [9621] = 9507, - [9622] = 2514, - [9623] = 9505, - [9624] = 2027, - [9625] = 9625, - [9626] = 9484, - [9627] = 2562, + [9599] = 9595, + [9600] = 9565, + [9601] = 9561, + [9602] = 9563, + [9603] = 9566, + [9604] = 9604, + [9605] = 9566, + [9606] = 9561, + [9607] = 9563, + [9608] = 9595, + [9609] = 9609, + [9610] = 9610, + [9611] = 9572, + [9612] = 9573, + [9613] = 9613, + [9614] = 9572, + [9615] = 9561, + [9616] = 9565, + [9617] = 9613, + [9618] = 9566, + [9619] = 9565, + [9620] = 9620, + [9621] = 9573, + [9622] = 9595, + [9623] = 9595, + [9624] = 9563, + [9625] = 9595, + [9626] = 9595, + [9627] = 9563, [9628] = 9628, - [9629] = 9495, - [9630] = 2493, - [9631] = 2683, - [9632] = 9485, - [9633] = 9491, - [9634] = 9495, - [9635] = 9507, - [9636] = 9495, + [9629] = 9587, + [9630] = 9630, + [9631] = 9595, + [9632] = 9565, + [9633] = 9573, + [9634] = 9573, + [9635] = 9566, + [9636] = 9561, [9637] = 9637, - [9638] = 9483, - [9639] = 2695, - [9640] = 2626, - [9641] = 9641, - [9642] = 2027, - [9643] = 2684, - [9644] = 9507, - [9645] = 2618, - [9646] = 9491, - [9647] = 9503, - [9648] = 9485, + [9638] = 9572, + [9639] = 9565, + [9640] = 2055, + [9641] = 9573, + [9642] = 9563, + [9643] = 9573, + [9644] = 9573, + [9645] = 9565, + [9646] = 9646, + [9647] = 9565, + [9648] = 9561, [9649] = 9649, - [9650] = 9495, - [9651] = 2561, + [9650] = 9573, + [9651] = 9561, [9652] = 9495, - [9653] = 9507, - [9654] = 9654, - [9655] = 9655, - [9656] = 9656, - [9657] = 9657, + [9653] = 9613, + [9654] = 9566, + [9655] = 2070, + [9656] = 2482, + [9657] = 9563, [9658] = 9658, [9659] = 9659, - [9660] = 9660, - [9661] = 9661, - [9662] = 9662, - [9663] = 9663, - [9664] = 9664, + [9660] = 9561, + [9661] = 9561, + [9662] = 9595, + [9663] = 9595, + [9664] = 9565, [9665] = 9665, [9666] = 9666, - [9667] = 9656, - [9668] = 9660, - [9669] = 2568, - [9670] = 9656, - [9671] = 9666, - [9672] = 9657, - [9673] = 9659, - [9674] = 9664, - [9675] = 9675, - [9676] = 9662, - [9677] = 9663, - [9678] = 9664, - [9679] = 9665, - [9680] = 9666, - [9681] = 9681, - [9682] = 9660, - [9683] = 9683, - [9684] = 9656, - [9685] = 9657, - [9686] = 2601, - [9687] = 9657, - [9688] = 9659, - [9689] = 9689, - [9690] = 9662, - [9691] = 9663, - [9692] = 9664, - [9693] = 9665, - [9694] = 9666, - [9695] = 9659, - [9696] = 9696, - [9697] = 2625, - [9698] = 9660, - [9699] = 9656, - [9700] = 9700, - [9701] = 9657, - [9702] = 2673, - [9703] = 9659, + [9667] = 9667, + [9668] = 9595, + [9669] = 9563, + [9670] = 9495, + [9671] = 9671, + [9672] = 9561, + [9673] = 2454, + [9674] = 9563, + [9675] = 9566, + [9676] = 9595, + [9677] = 9563, + [9678] = 9573, + [9679] = 9566, + [9680] = 2515, + [9681] = 9595, + [9682] = 9573, + [9683] = 2660, + [9684] = 9495, + [9685] = 9565, + [9686] = 9686, + [9687] = 9566, + [9688] = 9573, + [9689] = 9565, + [9690] = 9565, + [9691] = 9595, + [9692] = 2502, + [9693] = 9563, + [9694] = 9566, + [9695] = 2506, + [9696] = 9566, + [9697] = 9561, + [9698] = 9698, + [9699] = 9699, + [9700] = 9563, + [9701] = 9587, + [9702] = 9595, + [9703] = 9703, [9704] = 9704, - [9705] = 2047, - [9706] = 9664, - [9707] = 9662, - [9708] = 9663, - [9709] = 9664, + [9705] = 9705, + [9706] = 9706, + [9707] = 9707, + [9708] = 9708, + [9709] = 9704, [9710] = 9710, - [9711] = 9664, - [9712] = 9665, - [9713] = 9666, - [9714] = 9714, - [9715] = 9715, - [9716] = 9716, - [9717] = 9664, - [9718] = 9662, - [9719] = 9664, - [9720] = 9663, - [9721] = 9664, + [9711] = 9711, + [9712] = 9712, + [9713] = 9705, + [9714] = 9706, + [9715] = 9712, + [9716] = 9712, + [9717] = 9717, + [9718] = 9717, + [9719] = 9705, + [9720] = 9706, + [9721] = 9708, [9722] = 9722, - [9723] = 9660, - [9724] = 9664, - [9725] = 9664, - [9726] = 9664, - [9727] = 9727, - [9728] = 9656, - [9729] = 9664, + [9723] = 9723, + [9724] = 9707, + [9725] = 9708, + [9726] = 9704, + [9727] = 9710, + [9728] = 9711, + [9729] = 9705, [9730] = 9730, - [9731] = 9664, - [9732] = 9664, - [9733] = 9664, - [9734] = 9664, - [9735] = 9664, - [9736] = 9664, - [9737] = 9664, - [9738] = 9664, - [9739] = 9664, - [9740] = 9664, - [9741] = 9664, - [9742] = 9664, - [9743] = 9743, - [9744] = 9743, - [9745] = 9710, - [9746] = 9715, - [9747] = 9657, - [9748] = 9748, - [9749] = 9749, - [9750] = 9750, - [9751] = 9751, + [9731] = 9705, + [9732] = 9706, + [9733] = 9712, + [9734] = 9734, + [9735] = 9717, + [9736] = 9736, + [9737] = 9705, + [9738] = 9710, + [9739] = 9706, + [9740] = 9707, + [9741] = 9708, + [9742] = 9707, + [9743] = 9708, + [9744] = 9704, + [9745] = 9704, + [9746] = 9746, + [9747] = 9710, + [9748] = 9711, + [9749] = 9706, + [9750] = 9710, + [9751] = 9711, [9752] = 9752, - [9753] = 9655, + [9753] = 9711, [9754] = 9754, - [9755] = 9755, + [9755] = 9707, [9756] = 9756, - [9757] = 9757, - [9758] = 9657, - [9759] = 9665, - [9760] = 9658, - [9761] = 9661, + [9757] = 9708, + [9758] = 9712, + [9759] = 9717, + [9760] = 9760, + [9761] = 9705, [9762] = 9762, - [9763] = 9666, - [9764] = 9754, - [9765] = 9756, - [9766] = 9766, + [9763] = 9706, + [9764] = 9764, + [9765] = 9704, + [9766] = 2757, [9767] = 9767, - [9768] = 9659, - [9769] = 9769, + [9768] = 9712, + [9769] = 9704, [9770] = 9770, - [9771] = 9654, - [9772] = 9681, - [9773] = 9683, - [9774] = 9774, - [9775] = 2719, + [9771] = 2129, + [9772] = 9717, + [9773] = 9773, + [9774] = 9707, + [9775] = 9704, [9776] = 9776, - [9777] = 9662, - [9778] = 9663, - [9779] = 9779, - [9780] = 9696, - [9781] = 9781, - [9782] = 9664, - [9783] = 9783, - [9784] = 2658, - [9785] = 9665, - [9786] = 9666, - [9787] = 9766, - [9788] = 9788, - [9789] = 9722, - [9790] = 9790, - [9791] = 9659, - [9792] = 9660, - [9793] = 9660, - [9794] = 9767, - [9795] = 9656, - [9796] = 9796, - [9797] = 9657, - [9798] = 9662, - [9799] = 9659, - [9800] = 9743, - [9801] = 9710, - [9802] = 9715, + [9777] = 9704, + [9778] = 9778, + [9779] = 9704, + [9780] = 9705, + [9781] = 9704, + [9782] = 9782, + [9783] = 2708, + [9784] = 9704, + [9785] = 9706, + [9786] = 9786, + [9787] = 9704, + [9788] = 9704, + [9789] = 9704, + [9790] = 9704, + [9791] = 9704, + [9792] = 9704, + [9793] = 9704, + [9794] = 9704, + [9795] = 9704, + [9796] = 9704, + [9797] = 9704, + [9798] = 9704, + [9799] = 9704, + [9800] = 9800, + [9801] = 9801, + [9802] = 9802, [9803] = 9803, - [9804] = 9748, - [9805] = 9749, - [9806] = 9751, - [9807] = 9752, - [9808] = 9655, - [9809] = 9663, - [9810] = 9810, - [9811] = 9658, - [9812] = 9661, - [9813] = 9662, - [9814] = 9663, - [9815] = 9754, - [9816] = 9756, + [9804] = 9804, + [9805] = 9723, + [9806] = 9730, + [9807] = 9807, + [9808] = 9808, + [9809] = 9809, + [9810] = 2070, + [9811] = 9811, + [9812] = 9812, + [9813] = 9722, + [9814] = 9814, + [9815] = 9707, + [9816] = 9708, [9817] = 9817, - [9818] = 9766, - [9819] = 9767, - [9820] = 9769, - [9821] = 9770, - [9822] = 9664, - [9823] = 9654, - [9824] = 9681, - [9825] = 9683, - [9826] = 9656, - [9827] = 9665, - [9828] = 9666, + [9818] = 9712, + [9819] = 9704, + [9820] = 9820, + [9821] = 9821, + [9822] = 9809, + [9823] = 9703, + [9824] = 9707, + [9825] = 9708, + [9826] = 9826, + [9827] = 9827, + [9828] = 9707, [9829] = 9829, - [9830] = 9830, - [9831] = 9654, - [9832] = 9659, - [9833] = 9833, - [9834] = 9660, - [9835] = 9660, + [9830] = 9708, + [9831] = 9770, + [9832] = 9829, + [9833] = 9710, + [9834] = 9834, + [9835] = 9835, [9836] = 9836, - [9837] = 9654, - [9838] = 9657, - [9839] = 7982, - [9840] = 9656, - [9841] = 9654, - [9842] = 9656, - [9843] = 9662, - [9844] = 9654, - [9845] = 9657, - [9846] = 9659, - [9847] = 2691, - [9848] = 9654, - [9849] = 2696, - [9850] = 9850, - [9851] = 9662, - [9852] = 9663, - [9853] = 9654, - [9854] = 9656, - [9855] = 9663, - [9856] = 9665, - [9857] = 9666, + [9837] = 9711, + [9838] = 9717, + [9839] = 9704, + [9840] = 9814, + [9841] = 9834, + [9842] = 9704, + [9843] = 9803, + [9844] = 9710, + [9845] = 9711, + [9846] = 2130, + [9847] = 9847, + [9848] = 9710, + [9849] = 9711, + [9850] = 9712, + [9851] = 9851, + [9852] = 9717, + [9853] = 9712, + [9854] = 9820, + [9855] = 9821, + [9856] = 2598, + [9857] = 9717, [9858] = 9858, [9859] = 9859, - [9860] = 9654, - [9861] = 9654, - [9862] = 2109, + [9860] = 9705, + [9861] = 9706, + [9862] = 9862, [9863] = 9863, [9864] = 9864, [9865] = 9865, - [9866] = 9654, - [9867] = 9660, - [9868] = 9868, - [9869] = 9869, - [9870] = 9656, - [9871] = 9654, - [9872] = 9872, - [9873] = 9657, - [9874] = 9874, - [9875] = 9654, - [9876] = 9748, - [9877] = 9657, - [9878] = 9749, - [9879] = 9654, - [9880] = 9659, - [9881] = 9654, - [9882] = 9722, - [9883] = 9654, - [9884] = 9662, - [9885] = 9663, - [9886] = 2712, - [9887] = 9664, - [9888] = 9654, - [9889] = 9654, - [9890] = 9665, - [9891] = 9666, - [9892] = 9665, - [9893] = 9654, - [9894] = 9654, - [9895] = 9654, + [9866] = 9866, + [9867] = 2596, + [9868] = 2663, + [9869] = 9801, + [9870] = 9802, + [9871] = 9803, + [9872] = 9723, + [9873] = 9730, + [9874] = 9705, + [9875] = 9811, + [9876] = 9812, + [9877] = 9722, + [9878] = 9704, + [9879] = 9835, + [9880] = 9707, + [9881] = 9708, + [9882] = 9820, + [9883] = 9821, + [9884] = 9809, + [9885] = 9703, + [9886] = 9826, + [9887] = 9827, + [9888] = 9704, + [9889] = 9770, + [9890] = 9829, + [9891] = 9836, + [9892] = 9892, + [9893] = 9814, + [9894] = 9834, + [9895] = 9895, [9896] = 9896, - [9897] = 9654, - [9898] = 9654, - [9899] = 9654, - [9900] = 9654, - [9901] = 9654, - [9902] = 9654, - [9903] = 9903, - [9904] = 9654, - [9905] = 9654, - [9906] = 9654, - [9907] = 9654, - [9908] = 9654, - [9909] = 9654, - [9910] = 9660, - [9911] = 9654, - [9912] = 9654, - [9913] = 9654, - [9914] = 9654, - [9915] = 9654, - [9916] = 9654, - [9917] = 9654, - [9918] = 9654, - [9919] = 9654, - [9920] = 9654, + [9897] = 9897, + [9898] = 2697, + [9899] = 9712, + [9900] = 9710, + [9901] = 9901, + [9902] = 9711, + [9903] = 9717, + [9904] = 9706, + [9905] = 9836, + [9906] = 9802, + [9907] = 9836, + [9908] = 9836, + [9909] = 9836, + [9910] = 9910, + [9911] = 9712, + [9912] = 9836, + [9913] = 9710, + [9914] = 9717, + [9915] = 9717, + [9916] = 9836, + [9917] = 8021, + [9918] = 9918, + [9919] = 9836, + [9920] = 9705, [9921] = 9921, - [9922] = 9659, - [9923] = 9656, - [9924] = 9833, - [9925] = 9925, - [9926] = 9657, - [9927] = 9659, - [9928] = 9928, - [9929] = 2493, - [9930] = 9662, - [9931] = 9663, - [9932] = 9664, - [9933] = 9933, + [9922] = 9922, + [9923] = 9836, + [9924] = 9706, + [9925] = 2677, + [9926] = 2693, + [9927] = 9826, + [9928] = 9827, + [9929] = 9836, + [9930] = 9930, + [9931] = 9707, + [9932] = 9708, + [9933] = 9704, [9934] = 9934, [9935] = 9935, - [9936] = 9936, - [9937] = 9665, - [9938] = 9666, + [9936] = 9836, + [9937] = 9710, + [9938] = 9711, [9939] = 9939, - [9940] = 9664, - [9941] = 9660, + [9940] = 9940, + [9941] = 9705, [9942] = 9942, - [9943] = 9660, - [9944] = 9656, - [9945] = 2720, - [9946] = 9946, - [9947] = 9769, - [9948] = 9657, - [9949] = 9949, - [9950] = 9770, - [9951] = 9662, - [9952] = 9833, - [9953] = 9659, - [9954] = 9663, - [9955] = 9955, - [9956] = 9833, - [9957] = 9957, - [9958] = 9664, - [9959] = 9959, - [9960] = 9833, - [9961] = 9961, - [9962] = 9833, - [9963] = 9833, - [9964] = 9964, - [9965] = 9662, - [9966] = 9663, - [9967] = 9833, - [9968] = 9664, - [9969] = 9665, - [9970] = 9666, - [9971] = 9833, - [9972] = 9665, - [9973] = 9833, - [9974] = 9665, - [9975] = 9666, - [9976] = 9833, - [9977] = 9977, - [9978] = 2102, - [9979] = 9833, - [9980] = 9833, - [9981] = 9666, - [9982] = 9833, - [9983] = 9751, - [9984] = 9833, - [9985] = 9985, - [9986] = 9696, - [9987] = 9833, - [9988] = 9833, - [9989] = 9833, - [9990] = 9833, - [9991] = 9833, - [9992] = 9833, - [9993] = 9833, - [9994] = 9833, - [9995] = 9833, - [9996] = 9833, - [9997] = 9833, - [9998] = 9833, - [9999] = 9833, - [10000] = 9833, - [10001] = 9833, - [10002] = 9833, - [10003] = 9833, - [10004] = 9833, - [10005] = 9833, - [10006] = 9833, - [10007] = 9833, - [10008] = 9833, - [10009] = 9833, - [10010] = 9833, - [10011] = 9833, - [10012] = 9833, - [10013] = 9833, - [10014] = 9833, - [10015] = 9833, - [10016] = 10016, - [10017] = 9752, - [10018] = 9660, - [10019] = 10019, - [10020] = 9664, + [9943] = 9943, + [9944] = 9836, + [9945] = 9707, + [9946] = 9708, + [9947] = 9835, + [9948] = 9704, + [9949] = 9836, + [9950] = 9950, + [9951] = 9836, + [9952] = 9710, + [9953] = 9711, + [9954] = 9712, + [9955] = 9836, + [9956] = 9956, + [9957] = 9836, + [9958] = 2736, + [9959] = 9847, + [9960] = 9836, + [9961] = 9706, + [9962] = 9836, + [9963] = 9963, + [9964] = 9836, + [9965] = 9836, + [9966] = 9717, + [9967] = 9836, + [9968] = 9836, + [9969] = 9836, + [9970] = 9836, + [9971] = 9836, + [9972] = 9836, + [9973] = 9836, + [9974] = 9836, + [9975] = 9836, + [9976] = 9836, + [9977] = 9836, + [9978] = 9836, + [9979] = 9836, + [9980] = 9836, + [9981] = 9836, + [9982] = 9836, + [9983] = 9836, + [9984] = 9836, + [9985] = 9836, + [9986] = 9836, + [9987] = 9836, + [9988] = 9836, + [9989] = 9712, + [9990] = 9804, + [9991] = 9991, + [9992] = 9705, + [9993] = 9717, + [9994] = 9717, + [9995] = 9995, + [9996] = 2654, + [9997] = 9706, + [9998] = 9998, + [9999] = 9999, + [10000] = 10000, + [10001] = 10001, + [10002] = 9705, + [10003] = 10003, + [10004] = 10004, + [10005] = 9707, + [10006] = 9706, + [10007] = 9708, + [10008] = 9811, + [10009] = 9704, + [10010] = 9847, + [10011] = 9801, + [10012] = 9707, + [10013] = 9804, + [10014] = 9804, + [10015] = 9708, + [10016] = 9804, + [10017] = 9710, + [10018] = 9804, + [10019] = 9711, + [10020] = 9804, [10021] = 10021, [10022] = 10022, - [10023] = 10023, - [10024] = 10024, - [10025] = 10025, + [10023] = 9704, + [10024] = 9804, + [10025] = 9804, [10026] = 10026, - [10027] = 10027, + [10027] = 9711, [10028] = 10028, - [10029] = 10029, - [10030] = 8107, - [10031] = 10031, - [10032] = 10032, - [10033] = 10025, - [10034] = 10034, - [10035] = 10031, - [10036] = 10029, - [10037] = 10031, - [10038] = 10034, - [10039] = 10039, - [10040] = 10040, - [10041] = 10041, - [10042] = 10027, - [10043] = 10040, - [10044] = 10044, - [10045] = 2053, - [10046] = 10046, - [10047] = 10047, - [10048] = 10048, - [10049] = 10049, - [10050] = 10050, - [10051] = 10051, - [10052] = 10052, - [10053] = 10053, - [10054] = 10054, - [10055] = 10039, - [10056] = 10056, - [10057] = 10057, - [10058] = 10058, - [10059] = 10028, - [10060] = 10050, - [10061] = 10031, - [10062] = 10057, - [10063] = 10063, - [10064] = 10064, - [10065] = 8192, - [10066] = 8194, - [10067] = 10067, - [10068] = 10032, - [10069] = 8071, - [10070] = 8149, + [10029] = 9804, + [10030] = 9804, + [10031] = 9804, + [10032] = 9804, + [10033] = 9812, + [10034] = 9710, + [10035] = 9804, + [10036] = 9712, + [10037] = 9711, + [10038] = 9804, + [10039] = 9804, + [10040] = 9804, + [10041] = 9804, + [10042] = 9804, + [10043] = 9804, + [10044] = 9804, + [10045] = 9804, + [10046] = 9804, + [10047] = 9804, + [10048] = 9804, + [10049] = 9804, + [10050] = 9804, + [10051] = 9804, + [10052] = 9804, + [10053] = 9804, + [10054] = 9804, + [10055] = 9804, + [10056] = 9804, + [10057] = 9804, + [10058] = 9804, + [10059] = 9804, + [10060] = 9804, + [10061] = 9804, + [10062] = 9804, + [10063] = 9804, + [10064] = 9804, + [10065] = 9804, + [10066] = 9804, + [10067] = 9804, + [10068] = 9836, + [10069] = 10069, + [10070] = 10070, [10071] = 10071, - [10072] = 8017, - [10073] = 8094, + [10072] = 10072, + [10073] = 10073, [10074] = 10074, - [10075] = 9865, - [10076] = 10067, - [10077] = 8175, - [10078] = 8165, - [10079] = 8022, - [10080] = 8028, - [10081] = 10081, - [10082] = 10032, + [10075] = 10075, + [10076] = 10076, + [10077] = 10077, + [10078] = 10078, + [10079] = 10079, + [10080] = 10080, + [10081] = 10075, + [10082] = 2677, [10083] = 10083, - [10084] = 10019, - [10085] = 8032, - [10086] = 8178, + [10084] = 10084, + [10085] = 10085, + [10086] = 10086, [10087] = 10087, - [10088] = 10088, + [10088] = 10076, [10089] = 10089, - [10090] = 10022, - [10091] = 10091, - [10092] = 2720, + [10090] = 10090, + [10091] = 10080, + [10092] = 10070, [10093] = 10093, - [10094] = 8005, - [10095] = 8018, - [10096] = 8020, - [10097] = 10044, - [10098] = 8076, - [10099] = 8185, - [10100] = 8187, - [10101] = 8191, - [10102] = 8222, - [10103] = 8223, - [10104] = 8234, - [10105] = 10029, + [10094] = 8255, + [10095] = 10095, + [10096] = 10096, + [10097] = 8202, + [10098] = 10098, + [10099] = 10099, + [10100] = 10100, + [10101] = 10101, + [10102] = 10102, + [10103] = 10103, + [10104] = 10104, + [10105] = 10105, [10106] = 10106, [10107] = 10107, [10108] = 10108, - [10109] = 10032, - [10110] = 10063, - [10111] = 10111, + [10109] = 10084, + [10110] = 10110, + [10111] = 10071, [10112] = 10112, - [10113] = 10113, - [10114] = 10114, - [10115] = 10081, - [10116] = 10021, - [10117] = 10117, - [10118] = 8036, - [10119] = 10058, - [10120] = 10028, + [10113] = 10085, + [10114] = 10072, + [10115] = 10078, + [10116] = 10070, + [10117] = 10074, + [10118] = 2663, + [10119] = 10075, + [10120] = 10078, [10121] = 10121, - [10122] = 10067, - [10123] = 10021, - [10124] = 8122, - [10125] = 10125, + [10122] = 10103, + [10123] = 10123, + [10124] = 10105, + [10125] = 10107, [10126] = 10126, - [10127] = 10067, - [10128] = 10081, - [10129] = 10089, - [10130] = 2568, - [10131] = 10131, - [10132] = 10132, - [10133] = 10133, - [10134] = 10067, - [10135] = 8106, - [10136] = 10025, - [10137] = 10081, - [10138] = 8148, - [10139] = 8164, - [10140] = 8167, - [10141] = 8174, - [10142] = 8229, - [10143] = 8010, - [10144] = 8013, - [10145] = 8031, - [10146] = 8062, - [10147] = 8075, - [10148] = 8077, - [10149] = 8078, - [10150] = 8083, - [10151] = 8086, - [10152] = 8089, - [10153] = 8090, - [10154] = 8101, - [10155] = 10081, - [10156] = 8112, - [10157] = 8117, - [10158] = 8152, - [10159] = 8153, - [10160] = 10022, - [10161] = 10161, - [10162] = 10022, - [10163] = 10039, - [10164] = 8037, - [10165] = 8045, - [10166] = 2601, - [10167] = 8046, - [10168] = 8054, - [10169] = 8056, - [10170] = 8057, - [10171] = 8060, - [10172] = 8066, - [10173] = 8068, - [10174] = 10022, - [10175] = 8072, + [10127] = 10127, + [10128] = 10128, + [10129] = 2697, + [10130] = 10130, + [10131] = 10126, + [10132] = 10105, + [10133] = 8122, + [10134] = 10123, + [10135] = 10135, + [10136] = 10093, + [10137] = 10137, + [10138] = 8258, + [10139] = 8188, + [10140] = 10074, + [10141] = 10141, + [10142] = 10142, + [10143] = 9995, + [10144] = 10079, + [10145] = 10103, + [10146] = 10105, + [10147] = 10147, + [10148] = 10080, + [10149] = 8054, + [10150] = 10103, + [10151] = 10151, + [10152] = 8055, + [10153] = 10078, + [10154] = 10105, + [10155] = 10107, + [10156] = 8073, + [10157] = 10075, + [10158] = 10126, + [10159] = 8132, + [10160] = 10084, + [10161] = 10128, + [10162] = 10070, + [10163] = 10163, + [10164] = 10130, + [10165] = 10165, + [10166] = 10128, + [10167] = 10078, + [10168] = 10168, + [10169] = 10123, + [10170] = 10170, + [10171] = 10171, + [10172] = 10172, + [10173] = 10069, + [10174] = 10127, + [10175] = 10107, [10176] = 10176, - [10177] = 10177, - [10178] = 10027, - [10179] = 10044, - [10180] = 10044, - [10181] = 10181, - [10182] = 10027, - [10183] = 10063, - [10184] = 10025, - [10185] = 10063, - [10186] = 2625, - [10187] = 10021, - [10188] = 10031, - [10189] = 10044, - [10190] = 10034, - [10191] = 10056, - [10192] = 8169, - [10193] = 10032, - [10194] = 10194, - [10195] = 10025, - [10196] = 10027, - [10197] = 10197, - [10198] = 8098, - [10199] = 8105, - [10200] = 10031, - [10201] = 8111, - [10202] = 8114, - [10203] = 8118, - [10204] = 8125, - [10205] = 8126, - [10206] = 8137, - [10207] = 8138, - [10208] = 8237, - [10209] = 8145, - [10210] = 8146, - [10211] = 8147, - [10212] = 8151, - [10213] = 8156, - [10214] = 8157, - [10215] = 8158, - [10216] = 8159, - [10217] = 8160, - [10218] = 8162, - [10219] = 10032, - [10220] = 8163, - [10221] = 8215, - [10222] = 8216, - [10223] = 8219, - [10224] = 10025, - [10225] = 8221, - [10226] = 8224, - [10227] = 10227, - [10228] = 10063, - [10229] = 10029, - [10230] = 10034, - [10231] = 10040, - [10232] = 10063, - [10233] = 10057, - [10234] = 10029, - [10235] = 10039, - [10236] = 10057, - [10237] = 10063, - [10238] = 8130, - [10239] = 8131, - [10240] = 8132, - [10241] = 8133, - [10242] = 8134, - [10243] = 8135, - [10244] = 8136, - [10245] = 8140, - [10246] = 8141, - [10247] = 8142, - [10248] = 8143, - [10249] = 8171, - [10250] = 10063, - [10251] = 10251, - [10252] = 10252, - [10253] = 2109, - [10254] = 10034, - [10255] = 10113, - [10256] = 10063, - [10257] = 8211, - [10258] = 10023, - [10259] = 10024, - [10260] = 10029, - [10261] = 10039, - [10262] = 10026, - [10263] = 8214, - [10264] = 10057, - [10265] = 10265, - [10266] = 10056, - [10267] = 8081, - [10268] = 10268, - [10269] = 10023, - [10270] = 10071, - [10271] = 10046, + [10177] = 10126, + [10178] = 10128, + [10179] = 8049, + [10180] = 8189, + [10181] = 10130, + [10182] = 10071, + [10183] = 10183, + [10184] = 10072, + [10185] = 10185, + [10186] = 10170, + [10187] = 10123, + [10188] = 10074, + [10189] = 10189, + [10190] = 10190, + [10191] = 10191, + [10192] = 10069, + [10193] = 10151, + [10194] = 10103, + [10195] = 10079, + [10196] = 10080, + [10197] = 10075, + [10198] = 10093, + [10199] = 10084, + [10200] = 10110, + [10201] = 10070, + [10202] = 10098, + [10203] = 10203, + [10204] = 10086, + [10205] = 10205, + [10206] = 10206, + [10207] = 10207, + [10208] = 10208, + [10209] = 10209, + [10210] = 10210, + [10211] = 10151, + [10212] = 10165, + [10213] = 8057, + [10214] = 10127, + [10215] = 8103, + [10216] = 10216, + [10217] = 10217, + [10218] = 10071, + [10219] = 10219, + [10220] = 10072, + [10221] = 8133, + [10222] = 10219, + [10223] = 10074, + [10224] = 10079, + [10225] = 10080, + [10226] = 10075, + [10227] = 10110, + [10228] = 10104, + [10229] = 10147, + [10230] = 10230, + [10231] = 10231, + [10232] = 10232, + [10233] = 10084, + [10234] = 10130, + [10235] = 10070, + [10236] = 10236, + [10237] = 10098, + [10238] = 10123, + [10239] = 10239, + [10240] = 8211, + [10241] = 10130, + [10242] = 8257, + [10243] = 10078, + [10244] = 8075, + [10245] = 8229, + [10246] = 8060, + [10247] = 10172, + [10248] = 10130, + [10249] = 8140, + [10250] = 10183, + [10251] = 10205, + [10252] = 10216, + [10253] = 10217, + [10254] = 8061, + [10255] = 10239, + [10256] = 10130, + [10257] = 10163, + [10258] = 10105, + [10259] = 10259, + [10260] = 10260, + [10261] = 10130, + [10262] = 10130, + [10263] = 10071, + [10264] = 10085, + [10265] = 10086, + [10266] = 10266, + [10267] = 10267, + [10268] = 10071, + [10269] = 10076, + [10270] = 10106, + [10271] = 8271, [10272] = 10272, - [10273] = 10273, - [10274] = 10121, - [10275] = 10197, - [10276] = 10022, - [10277] = 10056, - [10278] = 10265, - [10279] = 10279, - [10280] = 10034, + [10273] = 10072, + [10274] = 2757, + [10275] = 8282, + [10276] = 8064, + [10277] = 10219, + [10278] = 8066, + [10279] = 10071, + [10280] = 10272, [10281] = 10281, - [10282] = 10268, - [10283] = 10131, - [10284] = 2691, - [10285] = 10272, - [10286] = 10091, - [10287] = 10273, - [10288] = 10058, - [10289] = 10279, - [10290] = 10106, - [10291] = 10028, - [10292] = 10106, - [10293] = 10058, - [10294] = 10028, - [10295] = 10295, - [10296] = 10058, - [10297] = 10297, - [10298] = 10024, - [10299] = 10299, - [10300] = 10121, - [10301] = 10301, + [10282] = 10103, + [10283] = 10108, + [10284] = 10107, + [10285] = 10072, + [10286] = 9734, + [10287] = 10287, + [10288] = 10126, + [10289] = 10289, + [10290] = 10103, + [10291] = 8078, + [10292] = 10105, + [10293] = 8106, + [10294] = 10128, + [10295] = 2598, + [10296] = 10105, + [10297] = 8063, + [10298] = 10126, + [10299] = 8069, + [10300] = 10300, + [10301] = 10123, [10302] = 10302, - [10303] = 10074, - [10304] = 10028, - [10305] = 10063, - [10306] = 10306, - [10307] = 10307, - [10308] = 10308, - [10309] = 10309, - [10310] = 10310, - [10311] = 10067, - [10312] = 10312, - [10313] = 10067, - [10314] = 10024, + [10303] = 10071, + [10304] = 8079, + [10305] = 10078, + [10306] = 10078, + [10307] = 8080, + [10308] = 2081, + [10309] = 8184, + [10310] = 10107, + [10311] = 10107, + [10312] = 10084, + [10313] = 10086, + [10314] = 10314, [10315] = 10315, - [10316] = 10081, - [10317] = 10022, - [10318] = 10044, - [10319] = 10319, - [10320] = 10081, - [10321] = 10063, - [10322] = 2696, - [10323] = 10022, - [10324] = 10324, - [10325] = 10044, - [10326] = 10307, - [10327] = 10021, - [10328] = 10328, - [10329] = 10063, - [10330] = 10330, - [10331] = 8041, - [10332] = 10332, - [10333] = 10056, - [10334] = 10334, - [10335] = 10335, - [10336] = 10027, - [10337] = 2102, - [10338] = 10021, - [10339] = 10339, - [10340] = 10340, + [10316] = 10126, + [10317] = 10128, + [10318] = 10130, + [10319] = 10103, + [10320] = 10105, + [10321] = 10191, + [10322] = 10126, + [10323] = 10074, + [10324] = 10104, + [10325] = 10147, + [10326] = 10130, + [10327] = 10231, + [10328] = 10128, + [10329] = 8239, + [10330] = 10266, + [10331] = 10267, + [10332] = 10086, + [10333] = 10333, + [10334] = 10272, + [10335] = 8124, + [10336] = 10231, + [10337] = 10123, + [10338] = 10072, + [10339] = 10107, + [10340] = 10123, [10341] = 10341, - [10342] = 10031, - [10343] = 10032, - [10344] = 10027, - [10345] = 10025, - [10346] = 10031, - [10347] = 10032, - [10348] = 10025, - [10349] = 10029, - [10350] = 10034, - [10351] = 10027, - [10352] = 10040, - [10353] = 10131, - [10354] = 10027, - [10355] = 10039, - [10356] = 10057, - [10357] = 10357, - [10358] = 10358, - [10359] = 10031, - [10360] = 10032, - [10361] = 10328, - [10362] = 2719, - [10363] = 10029, - [10364] = 10034, - [10365] = 10040, - [10366] = 10025, - [10367] = 10058, - [10368] = 10029, - [10369] = 10197, - [10370] = 10034, - [10371] = 10039, - [10372] = 10341, - [10373] = 10048, - [10374] = 10053, - [10375] = 10058, - [10376] = 10063, - [10377] = 10028, - [10378] = 10050, - [10379] = 10379, - [10380] = 10308, - [10381] = 10039, - [10382] = 10379, - [10383] = 10383, - [10384] = 10057, - [10385] = 10057, - [10386] = 10029, - [10387] = 10071, - [10388] = 10388, - [10389] = 10389, - [10390] = 10390, - [10391] = 10391, - [10392] = 10392, - [10393] = 10393, - [10394] = 10067, - [10395] = 10074, - [10396] = 10126, - [10397] = 10034, - [10398] = 10081, - [10399] = 10022, - [10400] = 8230, - [10401] = 10044, - [10402] = 10067, - [10403] = 10063, - [10404] = 10091, - [10405] = 10089, - [10406] = 10021, - [10407] = 10081, - [10408] = 10113, - [10409] = 10056, - [10410] = 10117, - [10411] = 10411, - [10412] = 10412, - [10413] = 10040, - [10414] = 10414, + [10342] = 8092, + [10343] = 8074, + [10344] = 10075, + [10345] = 10168, + [10346] = 10078, + [10347] = 2736, + [10348] = 10189, + [10349] = 10349, + [10350] = 10350, + [10351] = 8081, + [10352] = 10107, + [10353] = 10353, + [10354] = 10126, + [10355] = 10128, + [10356] = 10079, + [10357] = 2130, + [10358] = 8105, + [10359] = 10130, + [10360] = 8158, + [10361] = 8175, + [10362] = 8283, + [10363] = 10072, + [10364] = 10364, + [10365] = 8222, + [10366] = 8250, + [10367] = 10367, + [10368] = 10368, + [10369] = 8261, + [10370] = 8265, + [10371] = 10371, + [10372] = 8083, + [10373] = 8131, + [10374] = 10374, + [10375] = 8076, + [10376] = 8059, + [10377] = 10377, + [10378] = 8215, + [10379] = 8154, + [10380] = 8180, + [10381] = 8058, + [10382] = 8150, + [10383] = 10123, + [10384] = 8260, + [10385] = 10098, + [10386] = 10074, + [10387] = 8108, + [10388] = 8143, + [10389] = 8115, + [10390] = 8207, + [10391] = 10069, + [10392] = 8213, + [10393] = 10080, + [10394] = 8228, + [10395] = 8259, + [10396] = 8096, + [10397] = 8157, + [10398] = 10069, + [10399] = 2693, + [10400] = 10078, + [10401] = 8166, + [10402] = 8191, + [10403] = 10079, + [10404] = 10080, + [10405] = 10074, + [10406] = 10406, + [10407] = 10079, + [10408] = 10080, + [10409] = 10075, + [10410] = 10410, + [10411] = 10084, + [10412] = 10070, + [10413] = 10098, + [10414] = 10075, [10415] = 10415, - [10416] = 10117, - [10417] = 10027, - [10418] = 10418, - [10419] = 10031, - [10420] = 10032, - [10421] = 10025, - [10422] = 10039, - [10423] = 10029, - [10424] = 10022, - [10425] = 10034, - [10426] = 10265, - [10427] = 10057, - [10428] = 10040, - [10429] = 10429, + [10416] = 10084, + [10417] = 8240, + [10418] = 10107, + [10419] = 10071, + [10420] = 8077, + [10421] = 10072, + [10422] = 10422, + [10423] = 10075, + [10424] = 8227, + [10425] = 10130, + [10426] = 8163, + [10427] = 10074, + [10428] = 10071, + [10429] = 10072, [10430] = 10430, - [10431] = 10044, - [10432] = 10039, - [10433] = 10328, - [10434] = 10434, - [10435] = 10057, + [10431] = 10431, + [10432] = 10079, + [10433] = 10080, + [10434] = 8087, + [10435] = 10075, [10436] = 10436, - [10437] = 10048, - [10438] = 10021, - [10439] = 10439, - [10440] = 10440, - [10441] = 10031, - [10442] = 10341, - [10443] = 10046, - [10444] = 10032, - [10445] = 10025, - [10446] = 10126, - [10447] = 10029, - [10448] = 8123, - [10449] = 10034, + [10437] = 10106, + [10438] = 10084, + [10439] = 2596, + [10440] = 2046, + [10441] = 10070, + [10442] = 8156, + [10443] = 10168, + [10444] = 8204, + [10445] = 10445, + [10446] = 10098, + [10447] = 10107, + [10448] = 10126, + [10449] = 10449, [10450] = 10450, - [10451] = 8100, - [10452] = 10058, - [10453] = 10028, - [10454] = 10197, - [10455] = 10053, - [10456] = 10039, - [10457] = 10265, - [10458] = 10268, - [10459] = 10057, - [10460] = 10050, - [10461] = 10272, - [10462] = 10273, - [10463] = 10067, - [10464] = 10464, - [10465] = 10312, - [10466] = 10081, - [10467] = 10058, - [10468] = 10468, - [10469] = 10028, - [10470] = 10022, - [10471] = 8172, - [10472] = 8173, - [10473] = 10044, - [10474] = 10067, - [10475] = 10063, - [10476] = 8200, - [10477] = 10307, - [10478] = 10478, - [10479] = 8207, - [10480] = 10039, - [10481] = 10063, - [10482] = 10268, - [10483] = 10379, - [10484] = 10279, - [10485] = 10485, - [10486] = 10021, - [10487] = 2673, - [10488] = 10031, - [10489] = 10032, - [10490] = 10025, - [10491] = 10021, - [10492] = 10106, - [10493] = 10029, - [10494] = 10034, - [10495] = 10039, - [10496] = 2033, - [10497] = 10021, - [10498] = 10057, - [10499] = 10056, + [10451] = 10451, + [10452] = 10103, + [10453] = 10453, + [10454] = 8218, + [10455] = 10455, + [10456] = 10105, + [10457] = 10457, + [10458] = 10458, + [10459] = 10459, + [10460] = 10460, + [10461] = 10461, + [10462] = 10462, + [10463] = 8111, + [10464] = 10103, + [10465] = 10465, + [10466] = 10128, + [10467] = 10467, + [10468] = 10266, + [10469] = 10123, + [10470] = 10071, + [10471] = 10126, + [10472] = 10472, + [10473] = 10072, + [10474] = 10130, + [10475] = 10078, + [10476] = 8209, + [10477] = 10477, + [10478] = 10107, + [10479] = 10479, + [10480] = 10126, + [10481] = 10103, + [10482] = 10105, + [10483] = 10128, + [10484] = 10123, + [10485] = 10189, + [10486] = 10079, + [10487] = 10080, + [10488] = 10130, + [10489] = 10084, + [10490] = 10075, + [10491] = 10491, + [10492] = 2129, + [10493] = 10151, + [10494] = 8139, + [10495] = 10123, + [10496] = 10496, + [10497] = 10084, + [10498] = 10123, + [10499] = 10070, [10500] = 10500, [10501] = 10501, [10502] = 10502, - [10503] = 10272, - [10504] = 10504, - [10505] = 10505, - [10506] = 10071, - [10507] = 10507, - [10508] = 10508, - [10509] = 10450, - [10510] = 10063, - [10511] = 10027, - [10512] = 10056, - [10513] = 10031, - [10514] = 10040, - [10515] = 10032, - [10516] = 10025, - [10517] = 8027, - [10518] = 10029, - [10519] = 10034, - [10520] = 10091, - [10521] = 10040, - [10522] = 10308, - [10523] = 10039, - [10524] = 10057, - [10525] = 10525, - [10526] = 10081, - [10527] = 10074, - [10528] = 10021, - [10529] = 2658, - [10530] = 10328, - [10531] = 10531, - [10532] = 10341, - [10533] = 10031, - [10534] = 10032, - [10535] = 10025, - [10536] = 10273, - [10537] = 10058, - [10538] = 10029, - [10539] = 10028, - [10540] = 10034, - [10541] = 10039, - [10542] = 10057, - [10543] = 10543, - [10544] = 10544, - [10545] = 10545, - [10546] = 10307, + [10503] = 10071, + [10504] = 10072, + [10505] = 8186, + [10506] = 8195, + [10507] = 10078, + [10508] = 10069, + [10509] = 8200, + [10510] = 8210, + [10511] = 10070, + [10512] = 10170, + [10513] = 10513, + [10514] = 10105, + [10515] = 10128, + [10516] = 10070, + [10517] = 10074, + [10518] = 8216, + [10519] = 10123, + [10520] = 8220, + [10521] = 10079, + [10522] = 10080, + [10523] = 10075, + [10524] = 10084, + [10525] = 10107, + [10526] = 10070, + [10527] = 10126, + [10528] = 10079, + [10529] = 10071, + [10530] = 10128, + [10531] = 10072, + [10532] = 10532, + [10533] = 10080, + [10534] = 10130, + [10535] = 10074, + [10536] = 10075, + [10537] = 8224, + [10538] = 10074, + [10539] = 10260, + [10540] = 10079, + [10541] = 10080, + [10542] = 10542, + [10543] = 10075, + [10544] = 10130, + [10545] = 8233, + [10546] = 10069, [10547] = 10547, - [10548] = 10044, - [10549] = 10040, - [10550] = 10550, - [10551] = 10067, - [10552] = 10505, - [10553] = 10553, - [10554] = 10067, - [10555] = 10024, - [10556] = 10021, - [10557] = 10081, - [10558] = 10022, - [10559] = 10044, - [10560] = 10312, - [10561] = 10057, - [10562] = 10063, - [10563] = 10058, - [10564] = 10308, - [10565] = 10022, - [10566] = 10056, - [10567] = 10040, - [10568] = 10568, - [10569] = 10569, - [10570] = 10021, - [10571] = 10058, - [10572] = 10022, - [10573] = 10056, - [10574] = 8012, - [10575] = 10040, - [10576] = 10058, - [10577] = 10022, - [10578] = 10056, - [10579] = 10081, - [10580] = 10040, - [10581] = 10056, - [10582] = 10040, - [10583] = 10058, - [10584] = 10022, - [10585] = 10056, - [10586] = 10586, - [10587] = 10040, - [10588] = 10056, - [10589] = 10056, - [10590] = 10040, - [10591] = 10279, - [10592] = 10592, - [10593] = 10031, - [10594] = 10058, - [10595] = 10595, - [10596] = 10022, - [10597] = 10027, - [10598] = 10031, - [10599] = 10032, - [10600] = 10025, - [10601] = 10032, - [10602] = 10029, - [10603] = 10034, - [10604] = 10604, - [10605] = 10025, - [10606] = 10039, - [10607] = 10607, - [10608] = 10057, - [10609] = 10034, - [10610] = 10505, - [10611] = 10450, - [10612] = 10022, - [10613] = 10039, - [10614] = 10057, - [10615] = 10025, - [10616] = 10505, - [10617] = 10450, - [10618] = 10044, - [10619] = 10089, - [10620] = 10620, - [10621] = 10621, - [10622] = 10058, - [10623] = 10027, - [10624] = 10031, - [10625] = 10063, + [10548] = 10123, + [10549] = 10098, + [10550] = 8235, + [10551] = 8245, + [10552] = 10069, + [10553] = 10084, + [10554] = 8246, + [10555] = 8274, + [10556] = 8275, + [10557] = 8177, + [10558] = 8168, + [10559] = 10070, + [10560] = 10079, + [10561] = 10093, + [10562] = 10110, + [10563] = 8071, + [10564] = 10123, + [10565] = 8147, + [10566] = 10566, + [10567] = 8237, + [10568] = 10071, + [10569] = 10165, + [10570] = 10072, + [10571] = 10127, + [10572] = 10219, + [10573] = 8137, + [10574] = 10080, + [10575] = 10098, + [10576] = 10074, + [10577] = 10577, + [10578] = 10079, + [10579] = 10080, + [10580] = 10075, + [10581] = 10581, + [10582] = 10582, + [10583] = 10079, + [10584] = 10584, + [10585] = 8118, + [10586] = 8121, + [10587] = 10587, + [10588] = 10084, + [10589] = 10080, + [10590] = 10070, + [10591] = 10098, + [10592] = 10130, + [10593] = 10075, + [10594] = 8203, + [10595] = 10108, + [10596] = 8101, + [10597] = 10172, + [10598] = 10128, + [10599] = 10183, + [10600] = 10084, + [10601] = 10170, + [10602] = 10205, + [10603] = 10151, + [10604] = 10216, + [10605] = 10217, + [10606] = 10267, + [10607] = 10239, + [10608] = 10163, + [10609] = 10259, + [10610] = 10106, + [10611] = 10070, + [10612] = 8141, + [10613] = 10071, + [10614] = 10172, + [10615] = 10072, + [10616] = 10078, + [10617] = 10103, + [10618] = 10618, + [10619] = 10075, + [10620] = 10126, + [10621] = 10069, + [10622] = 10098, + [10623] = 10259, + [10624] = 10103, + [10625] = 8146, [10626] = 10626, - [10627] = 10031, - [10628] = 10121, - [10629] = 10032, - [10630] = 10630, - [10631] = 10028, - [10632] = 10632, - [10633] = 10058, - [10634] = 10025, - [10635] = 10034, - [10636] = 10032, - [10637] = 10028, - [10638] = 10039, - [10639] = 10131, - [10640] = 10113, - [10641] = 10641, - [10642] = 10642, - [10643] = 10057, - [10644] = 10025, - [10645] = 10645, - [10646] = 10058, - [10647] = 10028, - [10648] = 10021, - [10649] = 10031, - [10650] = 10048, - [10651] = 10032, - [10652] = 10025, - [10653] = 10034, - [10654] = 10039, - [10655] = 10021, - [10656] = 10057, - [10657] = 10091, - [10658] = 10117, - [10659] = 10067, + [10627] = 10126, + [10628] = 8151, + [10629] = 10069, + [10630] = 10098, + [10631] = 8267, + [10632] = 10103, + [10633] = 10126, + [10634] = 10069, + [10635] = 10098, + [10636] = 10071, + [10637] = 10069, + [10638] = 10098, + [10639] = 10103, + [10640] = 10640, + [10641] = 10126, + [10642] = 10191, + [10643] = 10069, + [10644] = 10098, + [10645] = 10104, + [10646] = 10069, + [10647] = 10098, + [10648] = 10147, + [10649] = 10103, + [10650] = 10231, + [10651] = 10183, + [10652] = 10126, + [10653] = 10266, + [10654] = 10072, + [10655] = 10267, + [10656] = 10272, + [10657] = 2654, + [10658] = 10658, + [10659] = 10659, [10660] = 10660, - [10661] = 10056, - [10662] = 10081, - [10663] = 10031, - [10664] = 10032, - [10665] = 10022, - [10666] = 10025, - [10667] = 10667, - [10668] = 10034, - [10669] = 10039, - [10670] = 10057, - [10671] = 10029, - [10672] = 10022, - [10673] = 10034, - [10674] = 2712, - [10675] = 10031, - [10676] = 10032, - [10677] = 10025, - [10678] = 10034, - [10679] = 10039, - [10680] = 10057, - [10681] = 10126, - [10682] = 10025, - [10683] = 10027, - [10684] = 10039, - [10685] = 10057, - [10686] = 10026, - [10687] = 10044, - [10688] = 10312, - [10689] = 10689, - [10690] = 10063, + [10661] = 10084, + [10662] = 10205, + [10663] = 8102, + [10664] = 10069, + [10665] = 10070, + [10666] = 10260, + [10667] = 10084, + [10668] = 10542, + [10669] = 10079, + [10670] = 10168, + [10671] = 10260, + [10672] = 10189, + [10673] = 10542, + [10674] = 10103, + [10675] = 10675, + [10676] = 10080, + [10677] = 10105, + [10678] = 10165, + [10679] = 10075, + [10680] = 10070, + [10681] = 10681, + [10682] = 9895, + [10683] = 10071, + [10684] = 10216, + [10685] = 10098, + [10686] = 10072, + [10687] = 10687, + [10688] = 10542, + [10689] = 10070, + [10690] = 10130, [10691] = 10691, - [10692] = 10028, - [10693] = 10693, - [10694] = 10031, - [10695] = 10032, - [10696] = 9788, - [10697] = 10021, - [10698] = 10053, - [10699] = 10058, - [10700] = 10058, - [10701] = 10379, - [10702] = 10702, - [10703] = 10702, - [10704] = 10702, - [10705] = 10705, - [10706] = 10706, - [10707] = 10707, - [10708] = 10708, + [10692] = 10079, + [10693] = 10080, + [10694] = 10075, + [10695] = 8169, + [10696] = 10070, + [10697] = 2708, + [10698] = 10103, + [10699] = 10078, + [10700] = 10217, + [10701] = 10071, + [10702] = 8212, + [10703] = 10105, + [10704] = 10107, + [10705] = 10126, + [10706] = 10128, + [10707] = 10072, + [10708] = 10239, [10709] = 10709, - [10710] = 10710, - [10711] = 10702, - [10712] = 10707, - [10713] = 10702, - [10714] = 10714, - [10715] = 10715, - [10716] = 10716, - [10717] = 10717, - [10718] = 10716, - [10719] = 10719, - [10720] = 10702, - [10721] = 10721, + [10710] = 10130, + [10711] = 10711, + [10712] = 10071, + [10713] = 10069, + [10714] = 8230, + [10715] = 10072, + [10716] = 10079, + [10717] = 10123, + [10718] = 10080, + [10719] = 10075, + [10720] = 10070, + [10721] = 10071, [10722] = 10722, - [10723] = 10723, - [10724] = 10710, - [10725] = 10709, - [10726] = 10706, - [10727] = 10714, - [10728] = 10709, - [10729] = 10729, - [10730] = 10707, - [10731] = 10702, - [10732] = 10702, - [10733] = 10714, - [10734] = 10734, - [10735] = 10702, - [10736] = 10702, - [10737] = 10702, - [10738] = 10716, - [10739] = 10709, - [10740] = 10702, - [10741] = 10706, + [10723] = 10072, + [10724] = 10071, + [10725] = 10072, + [10726] = 10079, + [10727] = 10079, + [10728] = 10080, + [10729] = 10075, + [10730] = 10070, + [10731] = 10731, + [10732] = 10071, + [10733] = 10072, + [10734] = 10259, + [10735] = 10103, + [10736] = 10736, + [10737] = 10079, + [10738] = 10080, + [10739] = 10191, + [10740] = 8067, + [10741] = 10075, [10742] = 10742, - [10743] = 10743, - [10744] = 10702, - [10745] = 10745, - [10746] = 10702, - [10747] = 10714, - [10748] = 10748, - [10749] = 10702, - [10750] = 10702, - [10751] = 10702, - [10752] = 10702, - [10753] = 10702, - [10754] = 10702, - [10755] = 10702, - [10756] = 10702, - [10757] = 10702, - [10758] = 10702, - [10759] = 10702, - [10760] = 10702, - [10761] = 10714, - [10762] = 10709, - [10763] = 10702, - [10764] = 10716, - [10765] = 10716, - [10766] = 10702, - [10767] = 10709, - [10768] = 10714, - [10769] = 10714, - [10770] = 10716, - [10771] = 10771, - [10772] = 10707, - [10773] = 10710, - [10774] = 10707, - [10775] = 2053, - [10776] = 10706, - [10777] = 10716, - [10778] = 10702, - [10779] = 10702, - [10780] = 10780, - [10781] = 10781, - [10782] = 10782, - [10783] = 2594, - [10784] = 10702, - [10785] = 10706, - [10786] = 10702, - [10787] = 10706, - [10788] = 10710, - [10789] = 10706, - [10790] = 10709, - [10791] = 10709, - [10792] = 10710, - [10793] = 10714, - [10794] = 10794, - [10795] = 10795, - [10796] = 10745, - [10797] = 10797, - [10798] = 10706, - [10799] = 10799, - [10800] = 10800, - [10801] = 10702, - [10802] = 10782, - [10803] = 10716, - [10804] = 10702, + [10743] = 10163, + [10744] = 10074, + [10745] = 10103, + [10746] = 10079, + [10747] = 10126, + [10748] = 10080, + [10749] = 10070, + [10750] = 10750, + [10751] = 10751, + [10752] = 10752, + [10753] = 10753, + [10754] = 10754, + [10755] = 10755, + [10756] = 10756, + [10757] = 10756, + [10758] = 10758, + [10759] = 10759, + [10760] = 10754, + [10761] = 10756, + [10762] = 10762, + [10763] = 10758, + [10764] = 10764, + [10765] = 10765, + [10766] = 10754, + [10767] = 2081, + [10768] = 10768, + [10769] = 10758, + [10770] = 10759, + [10771] = 10758, + [10772] = 10759, + [10773] = 10773, + [10774] = 10753, + [10775] = 10754, + [10776] = 10776, + [10777] = 10758, + [10778] = 10759, + [10779] = 10755, + [10780] = 10755, + [10781] = 10759, + [10782] = 10756, + [10783] = 10754, + [10784] = 10784, + [10785] = 10758, + [10786] = 10786, + [10787] = 10787, + [10788] = 10756, + [10789] = 10789, + [10790] = 10758, + [10791] = 10755, + [10792] = 10786, + [10793] = 10762, + [10794] = 10754, + [10795] = 10786, + [10796] = 10754, + [10797] = 10754, + [10798] = 10754, + [10799] = 10754, + [10800] = 10756, + [10801] = 10754, + [10802] = 10759, + [10803] = 10786, + [10804] = 10786, [10805] = 10805, - [10806] = 10709, - [10807] = 10702, - [10808] = 10702, - [10809] = 10748, - [10810] = 10707, - [10811] = 10714, - [10812] = 10707, - [10813] = 10706, - [10814] = 10710, - [10815] = 10716, - [10816] = 10702, - [10817] = 10817, - [10818] = 10818, - [10819] = 10819, - [10820] = 10710, - [10821] = 10707, - [10822] = 10748, - [10823] = 10710, - [10824] = 10707, - [10825] = 10702, - [10826] = 10709, - [10827] = 10714, - [10828] = 10716, - [10829] = 10706, - [10830] = 10830, - [10831] = 10831, - [10832] = 10832, - [10833] = 10705, - [10834] = 10834, + [10806] = 10754, + [10807] = 10758, + [10808] = 10754, + [10809] = 10759, + [10810] = 10758, + [10811] = 10754, + [10812] = 10754, + [10813] = 10755, + [10814] = 10754, + [10815] = 10754, + [10816] = 10754, + [10817] = 10754, + [10818] = 10754, + [10819] = 10754, + [10820] = 10754, + [10821] = 10754, + [10822] = 10822, + [10823] = 10823, + [10824] = 10758, + [10825] = 10825, + [10826] = 10759, + [10827] = 10756, + [10828] = 10753, + [10829] = 10786, + [10830] = 10754, + [10831] = 10786, + [10832] = 10764, + [10833] = 10833, + [10834] = 10753, [10835] = 10835, - [10836] = 10709, - [10837] = 10709, - [10838] = 10710, - [10839] = 10702, - [10840] = 10714, - [10841] = 10710, - [10842] = 10716, - [10843] = 10702, - [10844] = 10710, - [10845] = 10707, - [10846] = 10714, - [10847] = 10847, - [10848] = 10710, - [10849] = 10702, - [10850] = 10745, + [10836] = 10762, + [10837] = 10754, + [10838] = 10838, + [10839] = 10839, + [10840] = 10759, + [10841] = 10773, + [10842] = 10754, + [10843] = 10843, + [10844] = 10786, + [10845] = 10845, + [10846] = 10754, + [10847] = 10755, + [10848] = 10754, + [10849] = 10755, + [10850] = 10753, [10851] = 10851, - [10852] = 10707, - [10853] = 10716, - [10854] = 10714, + [10852] = 10764, + [10853] = 10754, + [10854] = 10854, [10855] = 10855, - [10856] = 10856, - [10857] = 10702, - [10858] = 10858, + [10856] = 10756, + [10857] = 10857, + [10858] = 10753, [10859] = 10859, [10860] = 10860, - [10861] = 10706, - [10862] = 10706, - [10863] = 10706, - [10864] = 10864, - [10865] = 10710, - [10866] = 10860, - [10867] = 10707, - [10868] = 10702, - [10869] = 10705, + [10861] = 10755, + [10862] = 10753, + [10863] = 10786, + [10864] = 10755, + [10865] = 10753, + [10866] = 10756, + [10867] = 10867, + [10868] = 10754, + [10869] = 10758, [10870] = 10870, - [10871] = 10710, - [10872] = 10707, - [10873] = 10716, - [10874] = 10782, - [10875] = 10710, - [10876] = 10716, - [10877] = 10877, - [10878] = 10710, - [10879] = 10709, - [10880] = 10714, + [10871] = 10871, + [10872] = 10756, + [10873] = 10753, + [10874] = 10874, + [10875] = 10855, + [10876] = 10876, + [10877] = 10753, + [10878] = 10835, + [10879] = 10786, + [10880] = 10880, [10881] = 10881, - [10882] = 2642, + [10882] = 10753, [10883] = 10883, - [10884] = 10709, + [10884] = 10884, [10885] = 10885, - [10886] = 10702, - [10887] = 10707, - [10888] = 10707, - [10889] = 10706, - [10890] = 10707, + [10886] = 10759, + [10887] = 10753, + [10888] = 10755, + [10889] = 10756, + [10890] = 10890, [10891] = 10891, [10892] = 10892, - [10893] = 10893, + [10893] = 10754, [10894] = 10894, - [10895] = 10895, - [10896] = 10896, - [10897] = 10897, - [10898] = 10898, - [10899] = 10899, - [10900] = 10900, + [10895] = 10754, + [10896] = 10753, + [10897] = 10754, + [10898] = 2592, + [10899] = 10756, + [10900] = 10756, [10901] = 10901, - [10902] = 10902, - [10903] = 10903, - [10904] = 10891, - [10905] = 10905, - [10906] = 10906, - [10907] = 10907, - [10908] = 10908, - [10909] = 10909, - [10910] = 10910, - [10911] = 10911, - [10912] = 10912, - [10913] = 10913, - [10914] = 10914, - [10915] = 10915, + [10902] = 10773, + [10903] = 10786, + [10904] = 10758, + [10905] = 10758, + [10906] = 10759, + [10907] = 10759, + [10908] = 10786, + [10909] = 10755, + [10910] = 10754, + [10911] = 10756, + [10912] = 10835, + [10913] = 10754, + [10914] = 10758, + [10915] = 10786, [10916] = 10916, - [10917] = 10917, - [10918] = 10918, - [10919] = 10919, - [10920] = 10920, - [10921] = 10921, - [10922] = 10922, - [10923] = 10923, - [10924] = 10924, - [10925] = 10902, - [10926] = 10903, - [10927] = 10898, - [10928] = 10928, - [10929] = 10929, - [10930] = 10930, - [10931] = 10892, - [10932] = 10914, - [10933] = 10933, - [10934] = 10913, + [10917] = 10758, + [10918] = 10759, + [10919] = 10759, + [10920] = 10759, + [10921] = 10754, + [10922] = 10754, + [10923] = 10758, + [10924] = 10754, + [10925] = 10755, + [10926] = 10754, + [10927] = 10754, + [10928] = 10754, + [10929] = 10786, + [10930] = 10753, + [10931] = 10759, + [10932] = 10754, + [10933] = 10755, + [10934] = 10754, [10935] = 10935, - [10936] = 10936, - [10937] = 10937, - [10938] = 10938, + [10936] = 2644, + [10937] = 10754, + [10938] = 10755, [10939] = 10939, [10940] = 10940, - [10941] = 10915, + [10941] = 10941, [10942] = 10942, [10943] = 10943, [10944] = 10944, [10945] = 10945, - [10946] = 10913, + [10946] = 10946, [10947] = 10947, - [10948] = 10914, + [10948] = 10948, [10949] = 10949, - [10950] = 10892, - [10951] = 10901, + [10950] = 10950, + [10951] = 10951, [10952] = 10952, - [10953] = 10914, - [10954] = 10916, + [10953] = 10953, + [10954] = 10947, [10955] = 10955, [10956] = 10956, - [10957] = 10936, - [10958] = 10958, - [10959] = 10939, - [10960] = 10960, - [10961] = 10942, - [10962] = 10962, + [10957] = 10957, + [10958] = 10946, + [10959] = 10959, + [10960] = 10950, + [10961] = 10939, + [10962] = 10949, [10963] = 10963, [10964] = 10964, [10965] = 10965, - [10966] = 10910, + [10966] = 10966, [10967] = 10967, - [10968] = 10937, - [10969] = 10969, + [10968] = 10968, + [10969] = 10946, [10970] = 10970, [10971] = 10971, [10972] = 10972, [10973] = 10973, - [10974] = 10907, + [10974] = 10974, [10975] = 10975, [10976] = 10976, [10977] = 10977, - [10978] = 10943, + [10978] = 10959, [10979] = 10979, [10980] = 10980, [10981] = 10981, @@ -15569,1369 +15576,1417 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10983] = 10983, [10984] = 10984, [10985] = 10985, - [10986] = 10986, - [10987] = 10962, - [10988] = 10963, - [10989] = 10924, - [10990] = 10936, - [10991] = 10947, - [10992] = 10930, - [10993] = 10964, - [10994] = 10994, + [10986] = 10967, + [10987] = 10987, + [10988] = 10988, + [10989] = 10953, + [10990] = 10990, + [10991] = 10991, + [10992] = 10955, + [10993] = 10966, + [10994] = 10953, [10995] = 10995, - [10996] = 10995, + [10996] = 10996, [10997] = 10997, [10998] = 10998, - [10999] = 10936, - [11000] = 10917, - [11001] = 11001, - [11002] = 10896, - [11003] = 10939, - [11004] = 10942, - [11005] = 10900, + [10999] = 10999, + [11000] = 10971, + [11001] = 10976, + [11002] = 11002, + [11003] = 10959, + [11004] = 11004, + [11005] = 11005, [11006] = 11006, - [11007] = 10908, - [11008] = 10920, - [11009] = 10972, - [11010] = 10891, - [11011] = 10921, - [11012] = 10907, - [11013] = 10967, - [11014] = 10976, - [11015] = 10979, - [11016] = 10982, - [11017] = 10911, - [11018] = 10944, - [11019] = 10945, - [11020] = 10917, - [11021] = 10985, - [11022] = 10919, - [11023] = 10923, + [11007] = 11007, + [11008] = 11008, + [11009] = 10943, + [11010] = 11010, + [11011] = 11011, + [11012] = 11012, + [11013] = 11013, + [11014] = 10957, + [11015] = 11015, + [11016] = 10955, + [11017] = 11017, + [11018] = 10970, + [11019] = 11019, + [11020] = 11020, + [11021] = 11021, + [11022] = 11022, + [11023] = 10945, [11024] = 11024, - [11025] = 11025, - [11026] = 11026, - [11027] = 10902, - [11028] = 10903, - [11029] = 10998, - [11030] = 10983, + [11025] = 10975, + [11026] = 10951, + [11027] = 10957, + [11028] = 11028, + [11029] = 10984, + [11030] = 10975, [11031] = 11031, - [11032] = 2563, - [11033] = 10896, - [11034] = 10923, - [11035] = 11035, - [11036] = 10930, - [11037] = 10892, - [11038] = 10922, - [11039] = 10933, - [11040] = 10914, - [11041] = 11041, - [11042] = 11042, - [11043] = 11041, - [11044] = 10967, - [11045] = 10995, + [11032] = 11032, + [11033] = 11033, + [11034] = 10984, + [11035] = 10944, + [11036] = 10957, + [11037] = 11037, + [11038] = 10948, + [11039] = 10966, + [11040] = 10956, + [11041] = 10974, + [11042] = 11004, + [11043] = 10946, + [11044] = 10998, + [11045] = 10972, [11046] = 11046, - [11047] = 10900, + [11047] = 11047, [11048] = 11048, - [11049] = 10937, - [11050] = 11042, + [11049] = 11033, + [11050] = 10983, [11051] = 11051, - [11052] = 11052, - [11053] = 10911, + [11052] = 10985, + [11053] = 11053, [11054] = 11054, - [11055] = 10969, + [11055] = 11055, [11056] = 11056, - [11057] = 10985, - [11058] = 11058, - [11059] = 2564, - [11060] = 11025, - [11061] = 10943, - [11062] = 11062, - [11063] = 10995, - [11064] = 11064, - [11065] = 10998, - [11066] = 10986, - [11067] = 11067, + [11057] = 10995, + [11058] = 11056, + [11059] = 10987, + [11060] = 11007, + [11061] = 11061, + [11062] = 11008, + [11063] = 11063, + [11064] = 11010, + [11065] = 11065, + [11066] = 11011, + [11067] = 11012, [11068] = 11068, - [11069] = 10936, - [11070] = 10938, - [11071] = 10984, - [11072] = 10939, + [11069] = 10987, + [11070] = 10939, + [11071] = 11071, + [11072] = 11010, [11073] = 11073, [11074] = 11074, - [11075] = 10942, - [11076] = 10998, + [11075] = 10957, + [11076] = 11076, [11077] = 11077, - [11078] = 10915, + [11078] = 11017, [11079] = 11079, [11080] = 11080, [11081] = 11081, - [11082] = 10972, - [11083] = 10896, - [11084] = 11084, - [11085] = 10997, - [11086] = 11086, - [11087] = 10907, - [11088] = 11006, - [11089] = 11089, - [11090] = 10976, - [11091] = 10894, - [11092] = 10979, - [11093] = 10982, - [11094] = 10983, + [11082] = 11082, + [11083] = 11011, + [11084] = 11012, + [11085] = 10943, + [11086] = 10972, + [11087] = 10973, + [11088] = 10951, + [11089] = 10965, + [11090] = 10956, + [11091] = 10946, + [11092] = 11092, + [11093] = 11080, + [11094] = 10949, [11095] = 11095, - [11096] = 11067, - [11097] = 11097, - [11098] = 10900, - [11099] = 10897, - [11100] = 10898, - [11101] = 10899, - [11102] = 10896, - [11103] = 11081, - [11104] = 10900, - [11105] = 10995, - [11106] = 11024, - [11107] = 10998, - [11108] = 10986, - [11109] = 10896, - [11110] = 10962, - [11111] = 11051, - [11112] = 10967, - [11113] = 11035, - [11114] = 10894, + [11096] = 11006, + [11097] = 10967, + [11098] = 10966, + [11099] = 10957, + [11100] = 11065, + [11101] = 11068, + [11102] = 10970, + [11103] = 11103, + [11104] = 11104, + [11105] = 10987, + [11106] = 11076, + [11107] = 10953, + [11108] = 10955, + [11109] = 11010, + [11110] = 10949, + [11111] = 11074, + [11112] = 11112, + [11113] = 11046, + [11114] = 11077, [11115] = 11115, - [11116] = 11052, + [11116] = 10976, [11117] = 11117, - [11118] = 10985, - [11119] = 11046, - [11120] = 11048, - [11121] = 10902, - [11122] = 11122, - [11123] = 10903, - [11124] = 10997, - [11125] = 10935, - [11126] = 11054, - [11127] = 10995, - [11128] = 10962, - [11129] = 10939, - [11130] = 10994, - [11131] = 10986, - [11132] = 10998, - [11133] = 11068, - [11134] = 10963, - [11135] = 10896, - [11136] = 10984, - [11137] = 10908, - [11138] = 10900, - [11139] = 11074, - [11140] = 11115, + [11118] = 10940, + [11119] = 11119, + [11120] = 11120, + [11121] = 11121, + [11122] = 10959, + [11123] = 11123, + [11124] = 11124, + [11125] = 11125, + [11126] = 10972, + [11127] = 10967, + [11128] = 11017, + [11129] = 11054, + [11130] = 11130, + [11131] = 11131, + [11132] = 10953, + [11133] = 11133, + [11134] = 10983, + [11135] = 11135, + [11136] = 10955, + [11137] = 10985, + [11138] = 10957, + [11139] = 11139, + [11140] = 10966, [11141] = 11141, [11142] = 11142, - [11143] = 10986, - [11144] = 10892, - [11145] = 11115, - [11146] = 11086, - [11147] = 10964, - [11148] = 11148, - [11149] = 11149, - [11150] = 10918, - [11151] = 10918, - [11152] = 10963, - [11153] = 10965, - [11154] = 10937, - [11155] = 10918, - [11156] = 11115, - [11157] = 10964, - [11158] = 11006, - [11159] = 11097, - [11160] = 10970, + [11143] = 10970, + [11144] = 11144, + [11145] = 10966, + [11146] = 10949, + [11147] = 10972, + [11148] = 10983, + [11149] = 10985, + [11150] = 11150, + [11151] = 11151, + [11152] = 10995, + [11153] = 11071, + [11154] = 10956, + [11155] = 11007, + [11156] = 10972, + [11157] = 11008, + [11158] = 11010, + [11159] = 11159, + [11160] = 11082, [11161] = 11161, - [11162] = 11035, - [11163] = 11163, - [11164] = 10902, - [11165] = 11141, - [11166] = 10903, - [11167] = 10943, - [11168] = 11168, - [11169] = 11169, - [11170] = 10942, + [11162] = 11162, + [11163] = 11011, + [11164] = 11012, + [11165] = 10963, + [11166] = 11080, + [11167] = 11095, + [11168] = 10949, + [11169] = 10975, + [11170] = 10963, [11171] = 11171, - [11172] = 11058, - [11173] = 11054, - [11174] = 10960, - [11175] = 10939, - [11176] = 10965, - [11177] = 10918, - [11178] = 10972, - [11179] = 10908, - [11180] = 10979, - [11181] = 10984, - [11182] = 10982, - [11183] = 10972, - [11184] = 11074, - [11185] = 10891, - [11186] = 10911, - [11187] = 10896, - [11188] = 10995, - [11189] = 10917, - [11190] = 11086, - [11191] = 10998, + [11172] = 10984, + [11173] = 11068, + [11174] = 10965, + [11175] = 10972, + [11176] = 11176, + [11177] = 11177, + [11178] = 10943, + [11179] = 11179, + [11180] = 11115, + [11181] = 11181, + [11182] = 10951, + [11183] = 10940, + [11184] = 11184, + [11185] = 11037, + [11186] = 11121, + [11187] = 10965, + [11188] = 11188, + [11189] = 10956, + [11190] = 10967, + [11191] = 10995, [11192] = 11192, - [11193] = 10896, - [11194] = 10920, - [11195] = 10900, - [11196] = 10921, - [11197] = 10897, - [11198] = 11062, - [11199] = 11199, - [11200] = 10902, - [11201] = 10903, - [11202] = 11202, - [11203] = 10898, - [11204] = 10981, - [11205] = 11035, - [11206] = 10923, - [11207] = 11207, - [11208] = 10913, - [11209] = 10997, - [11210] = 11006, - [11211] = 11211, - [11212] = 10892, - [11213] = 10908, - [11214] = 10899, - [11215] = 11215, - [11216] = 11054, - [11217] = 10894, - [11218] = 10915, - [11219] = 10937, - [11220] = 10907, + [11193] = 11133, + [11194] = 10987, + [11195] = 11195, + [11196] = 10970, + [11197] = 11197, + [11198] = 11198, + [11199] = 10967, + [11200] = 10987, + [11201] = 10953, + [11202] = 10955, + [11203] = 10975, + [11204] = 11204, + [11205] = 10984, + [11206] = 11061, + [11207] = 10971, + [11208] = 11063, + [11209] = 11082, + [11210] = 10999, + [11211] = 11162, + [11212] = 11212, + [11213] = 11213, + [11214] = 10983, + [11215] = 10996, + [11216] = 10985, + [11217] = 10987, + [11218] = 10998, + [11219] = 10976, + [11220] = 11068, [11221] = 11221, - [11222] = 10897, - [11223] = 10898, - [11224] = 10984, - [11225] = 10899, - [11226] = 11169, - [11227] = 11074, - [11228] = 10972, - [11229] = 10902, + [11222] = 10943, + [11223] = 10995, + [11224] = 10999, + [11225] = 10970, + [11226] = 11074, + [11227] = 11007, + [11228] = 10940, + [11229] = 11013, [11230] = 11230, - [11231] = 10903, - [11232] = 10891, - [11233] = 11086, - [11234] = 11234, - [11235] = 10943, - [11236] = 10911, - [11237] = 10939, - [11238] = 10913, - [11239] = 10976, - [11240] = 10979, - [11241] = 10915, - [11242] = 10972, - [11243] = 10979, - [11244] = 10892, - [11245] = 10982, - [11246] = 11199, - [11247] = 11035, - [11248] = 11026, - [11249] = 10917, - [11250] = 11035, - [11251] = 10982, - [11252] = 10892, - [11253] = 10901, - [11254] = 10914, - [11255] = 10894, - [11256] = 10995, - [11257] = 10916, - [11258] = 11054, - [11259] = 10901, - [11260] = 10998, - [11261] = 10896, - [11262] = 10900, - [11263] = 10920, - [11264] = 10976, - [11265] = 10914, - [11266] = 10984, - [11267] = 10908, - [11268] = 10962, - [11269] = 11074, - [11270] = 10963, - [11271] = 10902, - [11272] = 10897, - [11273] = 10964, - [11274] = 10965, - [11275] = 11086, - [11276] = 10903, - [11277] = 10921, - [11278] = 10937, - [11279] = 10969, - [11280] = 10970, - [11281] = 11149, - [11282] = 10923, - [11283] = 11283, - [11284] = 10892, - [11285] = 10898, - [11286] = 10916, - [11287] = 10981, - [11288] = 11288, - [11289] = 11035, - [11290] = 10997, - [11291] = 10943, - [11292] = 10906, - [11293] = 10937, - [11294] = 11046, - [11295] = 11295, - [11296] = 10947, + [11231] = 11121, + [11232] = 11077, + [11233] = 11233, + [11234] = 11142, + [11235] = 11007, + [11236] = 10951, + [11237] = 11133, + [11238] = 11017, + [11239] = 10975, + [11240] = 11240, + [11241] = 11008, + [11242] = 10956, + [11243] = 11133, + [11244] = 11008, + [11245] = 10946, + [11246] = 11092, + [11247] = 10979, + [11248] = 10976, + [11249] = 10984, + [11250] = 11010, + [11251] = 10957, + [11252] = 11082, + [11253] = 10973, + [11254] = 11011, + [11255] = 11092, + [11256] = 11256, + [11257] = 11257, + [11258] = 11258, + [11259] = 11259, + [11260] = 11006, + [11261] = 10977, + [11262] = 11262, + [11263] = 11068, + [11264] = 10983, + [11265] = 10959, + [11266] = 11266, + [11267] = 10942, + [11268] = 10952, + [11269] = 10979, + [11270] = 10964, + [11271] = 10940, + [11272] = 10995, + [11273] = 10988, + [11274] = 11121, + [11275] = 11010, + [11276] = 11011, + [11277] = 11022, + [11278] = 11033, + [11279] = 11103, + [11280] = 11133, + [11281] = 11104, + [11282] = 11010, + [11283] = 11011, + [11284] = 11012, + [11285] = 11285, + [11286] = 11123, + [11287] = 10943, + [11288] = 10951, + [11289] = 10956, + [11290] = 11290, + [11291] = 10946, + [11292] = 11074, + [11293] = 11293, + [11294] = 11082, + [11295] = 10987, + [11296] = 11296, [11297] = 11297, - [11298] = 11006, - [11299] = 10937, - [11300] = 11054, - [11301] = 10936, - [11302] = 11221, - [11303] = 10939, + [11298] = 11298, + [11299] = 11139, + [11300] = 11151, + [11301] = 11301, + [11302] = 11302, + [11303] = 11012, [11304] = 11304, - [11305] = 10942, - [11306] = 10969, - [11307] = 10894, - [11308] = 10984, - [11309] = 10943, - [11310] = 10972, - [11311] = 11074, - [11312] = 10967, - [11313] = 10907, + [11305] = 11068, + [11306] = 10953, + [11307] = 11074, + [11308] = 11308, + [11309] = 11074, + [11310] = 11310, + [11311] = 10953, + [11312] = 10955, + [11313] = 10940, [11314] = 11314, - [11315] = 10907, - [11316] = 10976, - [11317] = 11086, - [11318] = 11221, - [11319] = 10979, - [11320] = 10982, - [11321] = 10983, - [11322] = 10952, - [11323] = 10956, - [11324] = 10939, - [11325] = 11325, - [11326] = 10911, - [11327] = 10893, - [11328] = 10972, - [11329] = 10900, - [11330] = 10928, - [11331] = 11035, - [11332] = 11142, - [11333] = 10979, - [11334] = 11334, - [11335] = 10982, - [11336] = 10970, - [11337] = 10983, - [11338] = 10897, - [11339] = 11339, - [11340] = 11340, - [11341] = 10911, - [11342] = 11054, - [11343] = 10998, - [11344] = 10896, - [11345] = 11230, - [11346] = 11234, - [11347] = 11347, - [11348] = 11348, - [11349] = 10900, - [11350] = 10984, - [11351] = 11073, - [11352] = 10940, - [11353] = 11074, - [11354] = 11354, - [11355] = 11355, - [11356] = 10976, - [11357] = 10794, - [11358] = 10910, - [11359] = 11086, - [11360] = 10917, - [11361] = 11361, - [11362] = 10902, - [11363] = 10898, - [11364] = 10899, - [11365] = 10935, - [11366] = 10963, - [11367] = 10893, - [11368] = 10892, - [11369] = 11234, - [11370] = 10924, - [11371] = 10902, - [11372] = 10920, - [11373] = 11035, - [11374] = 11374, - [11375] = 10903, - [11376] = 10921, - [11377] = 10944, - [11378] = 10945, - [11379] = 10908, - [11380] = 11380, - [11381] = 10895, - [11382] = 10943, - [11383] = 11383, - [11384] = 11054, - [11385] = 10964, - [11386] = 10930, - [11387] = 10967, - [11388] = 10985, - [11389] = 10972, - [11390] = 10985, - [11391] = 10982, - [11392] = 10984, - [11393] = 11025, - [11394] = 10995, - [11395] = 11074, - [11396] = 10923, - [11397] = 10913, - [11398] = 10899, - [11399] = 11283, - [11400] = 11086, - [11401] = 11086, - [11402] = 10998, - [11403] = 10896, + [11315] = 11315, + [11316] = 11121, + [11317] = 10955, + [11318] = 11077, + [11319] = 11011, + [11320] = 11012, + [11321] = 10976, + [11322] = 11133, + [11323] = 11144, + [11324] = 11119, + [11325] = 11017, + [11326] = 10963, + [11327] = 11047, + [11328] = 10949, + [11329] = 10965, + [11330] = 11330, + [11331] = 10957, + [11332] = 11092, + [11333] = 10983, + [11334] = 11077, + [11335] = 10998, + [11336] = 11082, + [11337] = 11046, + [11338] = 10995, + [11339] = 11010, + [11340] = 11011, + [11341] = 11047, + [11342] = 11071, + [11343] = 10967, + [11344] = 11103, + [11345] = 11051, + [11346] = 11048, + [11347] = 11068, + [11348] = 10943, + [11349] = 10951, + [11350] = 10956, + [11351] = 10946, + [11352] = 11285, + [11353] = 11077, + [11354] = 11048, + [11355] = 10940, + [11356] = 11356, + [11357] = 11017, + [11358] = 11121, + [11359] = 10970, + [11360] = 11092, + [11361] = 11330, + [11362] = 11290, + [11363] = 10953, + [11364] = 11133, + [11365] = 10955, + [11366] = 10975, + [11367] = 10984, + [11368] = 11103, + [11369] = 11104, + [11370] = 10976, + [11371] = 10977, + [11372] = 10976, + [11373] = 10959, + [11374] = 11293, + [11375] = 11375, + [11376] = 11212, + [11377] = 10979, + [11378] = 11082, + [11379] = 11379, + [11380] = 11017, + [11381] = 11381, + [11382] = 11382, + [11383] = 11079, + [11384] = 11230, + [11385] = 11081, + [11386] = 10987, + [11387] = 11123, + [11388] = 11074, + [11389] = 11068, + [11390] = 10957, + [11391] = 11077, + [11392] = 10987, + [11393] = 10983, + [11394] = 11073, + [11395] = 10991, + [11396] = 10995, + [11397] = 10940, + [11398] = 11010, + [11399] = 11092, + [11400] = 11121, + [11401] = 11103, + [11402] = 11011, + [11403] = 11103, [11404] = 10998, - [11405] = 10997, - [11406] = 10896, - [11407] = 11006, - [11408] = 10902, - [11409] = 10900, - [11410] = 10965, - [11411] = 2487, - [11412] = 10998, - [11413] = 11295, - [11414] = 10986, - [11415] = 11035, - [11416] = 10915, - [11417] = 10902, - [11418] = 10892, - [11419] = 11115, - [11420] = 11067, - [11421] = 10892, - [11422] = 10911, - [11423] = 10918, - [11424] = 10994, - [11425] = 11081, - [11426] = 11054, - [11427] = 11427, - [11428] = 10908, - [11429] = 10962, - [11430] = 10937, - [11431] = 10917, - [11432] = 10943, - [11433] = 10892, - [11434] = 10984, - [11435] = 11435, - [11436] = 10894, - [11437] = 11074, - [11438] = 10963, - [11439] = 10901, - [11440] = 10972, - [11441] = 11441, - [11442] = 10943, - [11443] = 11086, - [11444] = 10982, - [11445] = 10964, - [11446] = 10965, - [11447] = 10914, - [11448] = 10908, - [11449] = 10916, - [11450] = 10897, - [11451] = 10998, - [11452] = 10896, - [11453] = 10903, - [11454] = 11169, - [11455] = 10920, - [11456] = 10911, - [11457] = 11035, - [11458] = 11297, - [11459] = 10902, - [11460] = 10943, - [11461] = 10917, - [11462] = 11199, - [11463] = 10921, - [11464] = 10920, - [11465] = 10921, - [11466] = 10981, - [11467] = 11054, - [11468] = 10962, - [11469] = 10963, - [11470] = 10923, - [11471] = 11221, - [11472] = 10997, - [11473] = 11006, - [11474] = 10971, - [11475] = 10984, - [11476] = 11234, - [11477] = 10894, - [11478] = 11074, - [11479] = 10892, - [11480] = 11480, - [11481] = 10898, - [11482] = 10964, - [11483] = 10897, - [11484] = 11086, - [11485] = 10899, - [11486] = 11486, - [11487] = 10898, - [11488] = 10899, - [11489] = 10965, - [11490] = 10937, - [11491] = 10937, - [11492] = 10943, - [11493] = 10969, - [11494] = 10902, - [11495] = 11283, - [11496] = 10902, - [11497] = 10903, - [11498] = 11035, - [11499] = 10937, - [11500] = 10969, - [11501] = 10970, - [11502] = 10903, - [11503] = 10913, - [11504] = 10972, - [11505] = 11505, - [11506] = 10915, - [11507] = 10982, - [11508] = 11054, - [11509] = 11304, - [11510] = 10970, - [11511] = 10969, - [11512] = 10970, - [11513] = 10998, - [11514] = 10892, - [11515] = 10901, - [11516] = 10984, - [11517] = 10914, - [11518] = 10916, - [11519] = 11074, - [11520] = 10896, - [11521] = 10901, - [11522] = 10972, - [11523] = 11314, - [11524] = 10982, - [11525] = 11086, - [11526] = 10923, - [11527] = 10998, - [11528] = 10896, - [11529] = 10962, - [11530] = 10963, - [11531] = 10964, - [11532] = 10972, - [11533] = 10979, - [11534] = 10982, - [11535] = 10965, - [11536] = 11536, - [11537] = 11537, - [11538] = 10937, - [11539] = 11035, - [11540] = 10998, - [11541] = 10896, - [11542] = 10969, - [11543] = 10970, - [11544] = 10972, - [11545] = 10982, - [11546] = 10901, - [11547] = 10943, - [11548] = 10972, - [11549] = 11054, - [11550] = 11325, - [11551] = 10982, - [11552] = 10914, - [11553] = 10972, - [11554] = 10982, - [11555] = 10943, - [11556] = 11334, - [11557] = 10984, - [11558] = 11558, - [11559] = 11340, - [11560] = 11074, - [11561] = 10947, - [11562] = 10997, - [11563] = 10972, - [11564] = 10936, - [11565] = 10982, - [11566] = 11086, - [11567] = 10943, - [11568] = 10939, - [11569] = 10942, - [11570] = 10972, - [11571] = 10982, - [11572] = 11355, - [11573] = 11573, - [11574] = 10972, - [11575] = 10891, - [11576] = 11427, - [11577] = 11577, - [11578] = 10907, - [11579] = 10976, - [11580] = 10979, - [11581] = 10982, - [11582] = 10984, - [11583] = 10983, - [11584] = 11074, - [11585] = 11006, - [11586] = 11537, - [11587] = 10972, - [11588] = 10980, - [11589] = 11086, - [11590] = 10982, - [11591] = 11591, - [11592] = 11361, - [11593] = 11593, + [11405] = 11046, + [11406] = 11133, + [11407] = 10971, + [11408] = 11408, + [11409] = 11104, + [11410] = 11123, + [11411] = 10951, + [11412] = 11104, + [11413] = 10956, + [11414] = 10953, + [11415] = 10946, + [11416] = 11112, + [11417] = 10955, + [11418] = 11047, + [11419] = 11123, + [11420] = 11082, + [11421] = 10957, + [11422] = 11192, + [11423] = 10963, + [11424] = 10953, + [11425] = 10965, + [11426] = 11048, + [11427] = 10953, + [11428] = 11104, + [11429] = 11017, + [11430] = 11079, + [11431] = 11068, + [11432] = 10976, + [11433] = 10976, + [11434] = 10977, + [11435] = 10939, + [11436] = 10959, + [11437] = 10979, + [11438] = 11081, + [11439] = 10940, + [11440] = 11440, + [11441] = 10955, + [11442] = 11121, + [11443] = 10953, + [11444] = 10955, + [11445] = 10972, + [11446] = 10998, + [11447] = 11046, + [11448] = 11133, + [11449] = 10957, + [11450] = 11047, + [11451] = 11048, + [11452] = 11176, + [11453] = 11076, + [11454] = 11017, + [11455] = 10966, + [11456] = 11117, + [11457] = 10995, + [11458] = 2671, + [11459] = 2673, + [11460] = 11079, + [11461] = 11135, + [11462] = 11082, + [11463] = 11463, + [11464] = 11081, + [11465] = 11011, + [11466] = 11171, + [11467] = 11119, + [11468] = 11123, + [11469] = 10957, + [11470] = 11120, + [11471] = 10951, + [11472] = 10956, + [11473] = 11068, + [11474] = 10972, + [11475] = 10957, + [11476] = 10983, + [11477] = 11477, + [11478] = 10953, + [11479] = 10966, + [11480] = 11296, + [11481] = 10940, + [11482] = 10963, + [11483] = 11176, + [11484] = 11121, + [11485] = 10972, + [11486] = 10976, + [11487] = 11054, + [11488] = 10966, + [11489] = 11298, + [11490] = 11133, + [11491] = 10985, + [11492] = 10983, + [11493] = 10985, + [11494] = 10976, + [11495] = 10983, + [11496] = 10963, + [11497] = 10965, + [11498] = 10972, + [11499] = 10983, + [11500] = 10995, + [11501] = 10999, + [11502] = 10965, + [11503] = 11007, + [11504] = 11082, + [11505] = 11008, + [11506] = 11010, + [11507] = 11011, + [11508] = 11139, + [11509] = 11012, + [11510] = 10985, + [11511] = 10985, + [11512] = 10957, + [11513] = 10980, + [11514] = 11068, + [11515] = 11195, + [11516] = 10967, + [11517] = 11517, + [11518] = 10977, + [11519] = 10953, + [11520] = 10995, + [11521] = 11011, + [11522] = 10940, + [11523] = 11177, + [11524] = 10995, + [11525] = 11121, + [11526] = 10999, + [11527] = 10976, + [11528] = 10951, + [11529] = 10977, + [11530] = 11151, + [11531] = 11133, + [11532] = 10956, + [11533] = 10959, + [11534] = 10979, + [11535] = 11017, + [11536] = 10959, + [11537] = 10979, + [11538] = 10953, + [11539] = 11007, + [11540] = 11008, + [11541] = 11010, + [11542] = 11011, + [11543] = 11082, + [11544] = 10981, + [11545] = 11082, + [11546] = 10976, + [11547] = 10979, + [11548] = 10995, + [11549] = 11012, + [11550] = 11550, + [11551] = 11179, + [11552] = 10999, + [11553] = 11181, + [11554] = 11130, + [11555] = 11068, + [11556] = 10998, + [11557] = 11046, + [11558] = 10957, + [11559] = 11559, + [11560] = 11560, + [11561] = 11561, + [11562] = 10967, + [11563] = 10940, + [11564] = 11564, + [11565] = 10995, + [11566] = 11121, + [11567] = 11011, + [11568] = 11007, + [11569] = 11046, + [11570] = 11184, + [11571] = 11008, + [11572] = 11133, + [11573] = 10951, + [11574] = 10956, + [11575] = 11037, + [11576] = 10995, + [11577] = 11047, + [11578] = 11048, + [11579] = 11011, + [11580] = 11017, + [11581] = 10951, + [11582] = 11582, + [11583] = 10956, + [11584] = 11017, + [11585] = 10995, + [11586] = 11082, + [11587] = 11011, + [11588] = 10951, + [11589] = 11589, + [11590] = 10951, + [11591] = 11079, + [11592] = 10971, + [11593] = 10956, [11594] = 11594, - [11595] = 10923, - [11596] = 11596, - [11597] = 11374, - [11598] = 11380, - [11599] = 11505, - [11600] = 10972, - [11601] = 10982, - [11602] = 10984, - [11603] = 10947, - [11604] = 11074, - [11605] = 10985, - [11606] = 10982, - [11607] = 10972, - [11608] = 11086, - [11609] = 10982, - [11610] = 10936, - [11611] = 10947, - [11612] = 10972, - [11613] = 10982, - [11614] = 10983, - [11615] = 10979, - [11616] = 11141, - [11617] = 11207, - [11618] = 11383, - [11619] = 10982, - [11620] = 10972, - [11621] = 10982, - [11622] = 11086, - [11623] = 10972, - [11624] = 10983, - [11625] = 11625, - [11626] = 10908, - [11627] = 11627, - [11628] = 11628, - [11629] = 10982, - [11630] = 10972, - [11631] = 10912, - [11632] = 10982, - [11633] = 10972, - [11634] = 11634, - [11635] = 10975, - [11636] = 11086, - [11637] = 10982, - [11638] = 11031, - [11639] = 10972, - [11640] = 10982, - [11641] = 10972, - [11642] = 10967, - [11643] = 10922, - [11644] = 10985, - [11645] = 10933, - [11646] = 10982, - [11647] = 10995, - [11648] = 10972, - [11649] = 11041, - [11650] = 11086, - [11651] = 10982, - [11652] = 11042, - [11653] = 10998, - [11654] = 11573, - [11655] = 10896, - [11656] = 10972, - [11657] = 10900, - [11658] = 11577, - [11659] = 11659, - [11660] = 11086, - [11661] = 10982, - [11662] = 10986, - [11663] = 11051, - [11664] = 11115, - [11665] = 11052, - [11666] = 10918, - [11667] = 10972, - [11668] = 11086, - [11669] = 10982, - [11670] = 10972, - [11671] = 10982, - [11672] = 11537, - [11673] = 10972, - [11674] = 10982, - [11675] = 11149, - [11676] = 11086, - [11677] = 10936, - [11678] = 10939, - [11679] = 11086, - [11680] = 10913, - [11681] = 10942, - [11682] = 11086, - [11683] = 10894, - [11684] = 11058, - [11685] = 11086, - [11686] = 11596, - [11687] = 10916, - [11688] = 11086, - [11689] = 10972, - [11690] = 11690, - [11691] = 11086, - [11692] = 11024, - [11693] = 10891, - [11694] = 11086, - [11695] = 11026, - [11696] = 11288, - [11697] = 11086, - [11698] = 10907, - [11699] = 11062, - [11700] = 11086, - [11701] = 10915, - [11702] = 10976, - [11703] = 11086, - [11704] = 10979, - [11705] = 10908, - [11706] = 11086, - [11707] = 10982, - [11708] = 10983, - [11709] = 11086, - [11710] = 10969, - [11711] = 10955, - [11712] = 11086, - [11713] = 10947, - [11714] = 11073, - [11715] = 10902, - [11716] = 10995, - [11717] = 11084, - [11718] = 11086, - [11719] = 10892, - [11720] = 10911, - [11721] = 11086, - [11722] = 10901, - [11723] = 11089, - [11724] = 11086, - [11725] = 11035, - [11726] = 10995, - [11727] = 11086, - [11728] = 10917, - [11729] = 10897, - [11730] = 11086, - [11731] = 10914, - [11732] = 10920, - [11733] = 11086, - [11734] = 10916, - [11735] = 10921, - [11736] = 11086, - [11737] = 10958, - [11738] = 10936, - [11739] = 11086, - [11740] = 10906, - [11741] = 11095, - [11742] = 11086, - [11743] = 10900, - [11744] = 10912, - [11745] = 10898, - [11746] = 10923, - [11747] = 10962, - [11748] = 11117, - [11749] = 10899, - [11750] = 10997, - [11751] = 10911, - [11752] = 11006, - [11753] = 10939, - [11754] = 11064, - [11755] = 11755, - [11756] = 11756, - [11757] = 11115, - [11758] = 10942, - [11759] = 10900, - [11760] = 10894, - [11761] = 10975, - [11762] = 11031, - [11763] = 10897, - [11764] = 11764, - [11765] = 10898, - [11766] = 10899, - [11767] = 10902, - [11768] = 11046, - [11769] = 10922, - [11770] = 11048, - [11771] = 10933, - [11772] = 10902, - [11773] = 10903, - [11774] = 11774, - [11775] = 10902, - [11776] = 10972, - [11777] = 10891, - [11778] = 11778, - [11779] = 11625, - [11780] = 10903, - [11781] = 11781, - [11782] = 10913, - [11783] = 10903, - [11784] = 10903, - [11785] = 10915, - [11786] = 10907, - [11787] = 10952, - [11788] = 11788, - [11789] = 10963, - [11790] = 10964, - [11791] = 11041, - [11792] = 10965, - [11793] = 11042, - [11794] = 10937, - [11795] = 11795, - [11796] = 10892, - [11797] = 10901, - [11798] = 10914, - [11799] = 10969, - [11800] = 10916, - [11801] = 10956, - [11802] = 10970, - [11803] = 11803, - [11804] = 10918, - [11805] = 11074, - [11806] = 11067, - [11807] = 10962, - [11808] = 11627, - [11809] = 10963, - [11810] = 10964, - [11811] = 11659, - [11812] = 10965, - [11813] = 11054, - [11814] = 10937, - [11815] = 10969, - [11816] = 11051, + [11595] = 10995, + [11596] = 11068, + [11597] = 11081, + [11598] = 10996, + [11599] = 11011, + [11600] = 10976, + [11601] = 10995, + [11602] = 10943, + [11603] = 11011, + [11604] = 10940, + [11605] = 11192, + [11606] = 11606, + [11607] = 11121, + [11608] = 11131, + [11609] = 10995, + [11610] = 11011, + [11611] = 10977, + [11612] = 10995, + [11613] = 11133, + [11614] = 11011, + [11615] = 10959, + [11616] = 10951, + [11617] = 10995, + [11618] = 11011, + [11619] = 10979, + [11620] = 10956, + [11621] = 10946, + [11622] = 10995, + [11623] = 10957, + [11624] = 10939, + [11625] = 11011, + [11626] = 10883, + [11627] = 10973, + [11628] = 10991, + [11629] = 10940, + [11630] = 11006, + [11631] = 11121, + [11632] = 11195, + [11633] = 10995, + [11634] = 11011, + [11635] = 11017, + [11636] = 11133, + [11637] = 10995, + [11638] = 11011, + [11639] = 11197, + [11640] = 10995, + [11641] = 11011, + [11642] = 10939, + [11643] = 11198, + [11644] = 10947, + [11645] = 10995, + [11646] = 11011, + [11647] = 10966, + [11648] = 10940, + [11649] = 10995, + [11650] = 11121, + [11651] = 11011, + [11652] = 10995, + [11653] = 11011, + [11654] = 11133, + [11655] = 10995, + [11656] = 11656, + [11657] = 11011, + [11658] = 10995, + [11659] = 11011, + [11660] = 10971, + [11661] = 10995, + [11662] = 10996, + [11663] = 10949, + [11664] = 10972, + [11665] = 11011, + [11666] = 10943, + [11667] = 10995, + [11668] = 11133, + [11669] = 11011, + [11670] = 10995, + [11671] = 10983, + [11672] = 10951, + [11673] = 10967, + [11674] = 11011, + [11675] = 10995, + [11676] = 11676, + [11677] = 11011, + [11678] = 10995, + [11679] = 10970, + [11680] = 11011, + [11681] = 10995, + [11682] = 11133, + [11683] = 11011, + [11684] = 11684, + [11685] = 11685, + [11686] = 10939, + [11687] = 11010, + [11688] = 10945, + [11689] = 10955, + [11690] = 10956, + [11691] = 10975, + [11692] = 10995, + [11693] = 10946, + [11694] = 10998, + [11695] = 10984, + [11696] = 11133, + [11697] = 11204, + [11698] = 10985, + [11699] = 11061, + [11700] = 11063, + [11701] = 10987, + [11702] = 11702, + [11703] = 11074, + [11704] = 10939, + [11705] = 11071, + [11706] = 11133, + [11707] = 11046, + [11708] = 10973, + [11709] = 11077, + [11710] = 11006, + [11711] = 10951, + [11712] = 11073, + [11713] = 11047, + [11714] = 11133, + [11715] = 11048, + [11716] = 11011, + [11717] = 11162, + [11718] = 11092, + [11719] = 11012, + [11720] = 11720, + [11721] = 10999, + [11722] = 11133, + [11723] = 11017, + [11724] = 11079, + [11725] = 11133, + [11726] = 11081, + [11727] = 11103, + [11728] = 11133, + [11729] = 11302, + [11730] = 11133, + [11731] = 10943, + [11732] = 11104, + [11733] = 11133, + [11734] = 11079, + [11735] = 11123, + [11736] = 11133, + [11737] = 11737, + [11738] = 11082, + [11739] = 11133, + [11740] = 11079, + [11741] = 11007, + [11742] = 11133, + [11743] = 11743, + [11744] = 11081, + [11745] = 11133, + [11746] = 11212, + [11747] = 10983, + [11748] = 11133, + [11749] = 11135, + [11750] = 10949, + [11751] = 11133, + [11752] = 10985, + [11753] = 11304, + [11754] = 11133, + [11755] = 10971, + [11756] = 10957, + [11757] = 11133, + [11758] = 11079, + [11759] = 10995, + [11760] = 11133, + [11761] = 11081, + [11762] = 10996, + [11763] = 11133, + [11764] = 11213, + [11765] = 10953, + [11766] = 11133, + [11767] = 10946, + [11768] = 11463, + [11769] = 11133, + [11770] = 10943, + [11771] = 11092, + [11772] = 11133, + [11773] = 10963, + [11774] = 10955, + [11775] = 11133, + [11776] = 11080, + [11777] = 10970, + [11778] = 11133, + [11779] = 11095, + [11780] = 11780, + [11781] = 11133, + [11782] = 10973, + [11783] = 11240, + [11784] = 11133, + [11785] = 2567, + [11786] = 10949, + [11787] = 11133, + [11788] = 10996, + [11789] = 10946, + [11790] = 11179, + [11791] = 10971, + [11792] = 10999, + [11793] = 10967, + [11794] = 10950, + [11795] = 11213, + [11796] = 11007, + [11797] = 11737, + [11798] = 10982, + [11799] = 11005, + [11800] = 11800, + [11801] = 11801, + [11802] = 10963, + [11803] = 10951, + [11804] = 10966, + [11805] = 10965, + [11806] = 10956, + [11807] = 11008, + [11808] = 11010, + [11809] = 11809, + [11810] = 11006, + [11811] = 11811, + [11812] = 11159, + [11813] = 11813, + [11814] = 11463, + [11815] = 10946, + [11816] = 10996, [11817] = 11817, - [11818] = 11052, - [11819] = 10970, - [11820] = 11820, - [11821] = 11142, - [11822] = 10913, - [11823] = 11058, - [11824] = 11824, - [11825] = 11825, - [11826] = 10943, - [11827] = 10919, - [11828] = 11062, - [11829] = 10943, - [11830] = 11830, - [11831] = 11230, - [11832] = 10976, - [11833] = 10947, - [11834] = 10893, - [11835] = 10915, - [11836] = 10936, - [11837] = 10947, - [11838] = 10939, - [11839] = 10942, - [11840] = 11073, - [11841] = 10955, - [11842] = 11842, - [11843] = 10972, - [11844] = 10891, - [11845] = 10958, - [11846] = 10907, - [11847] = 10976, - [11848] = 10979, - [11849] = 10982, - [11850] = 11774, - [11851] = 10983, - [11852] = 11781, - [11853] = 11853, - [11854] = 10947, - [11855] = 11084, - [11856] = 11089, - [11857] = 11001, - [11858] = 11295, - [11859] = 11803, - [11860] = 11297, - [11861] = 11304, - [11862] = 11314, - [11863] = 11325, - [11864] = 11025, - [11865] = 11334, - [11866] = 11340, - [11867] = 11068, - [11868] = 11355, - [11869] = 11361, - [11870] = 10958, - [11871] = 11374, - [11872] = 11380, - [11873] = 10892, - [11874] = 10903, - [11875] = 11505, - [11876] = 10979, - [11877] = 10982, - [11878] = 10983, - [11879] = 11625, - [11880] = 10936, - [11881] = 11095, - [11882] = 10984, - [11883] = 11627, - [11884] = 11884, - [11885] = 11659, - [11886] = 11054, - [11887] = 11825, - [11888] = 10937, - [11889] = 11774, - [11890] = 10939, - [11891] = 11074, - [11892] = 11781, - [11893] = 11803, - [11894] = 10967, - [11895] = 11825, - [11896] = 11830, - [11897] = 11117, - [11898] = 11077, - [11899] = 10935, - [11900] = 10942, - [11901] = 10985, - [11902] = 10960, - [11903] = 10967, - [11904] = 11842, - [11905] = 10985, - [11906] = 10939, - [11907] = 11001, - [11908] = 10995, - [11909] = 10942, - [11910] = 10971, - [11911] = 11884, - [11912] = 10995, + [11818] = 11818, + [11819] = 11095, + [11820] = 10995, + [11821] = 10976, + [11822] = 10977, + [11823] = 11685, + [11824] = 10939, + [11825] = 10959, + [11826] = 11047, + [11827] = 11330, + [11828] = 10979, + [11829] = 11068, + [11830] = 10953, + [11831] = 10999, + [11832] = 10970, + [11833] = 11833, + [11834] = 10973, + [11835] = 11074, + [11836] = 10975, + [11837] = 11115, + [11838] = 10984, + [11839] = 10943, + [11840] = 11006, + [11841] = 10975, + [11842] = 10987, + [11843] = 11077, + [11844] = 10941, + [11845] = 10976, + [11846] = 11008, + [11847] = 11081, + [11848] = 11008, + [11849] = 11011, + [11850] = 11115, + [11851] = 10998, + [11852] = 10972, + [11853] = 11046, + [11854] = 11564, + [11855] = 10983, + [11856] = 11047, + [11857] = 11048, + [11858] = 10955, + [11859] = 10982, + [11860] = 10985, + [11861] = 11017, + [11862] = 11079, + [11863] = 11081, + [11864] = 11074, + [11865] = 11015, + [11866] = 11077, + [11867] = 10940, + [11868] = 2643, + [11869] = 11092, + [11870] = 11010, + [11871] = 10951, + [11872] = 11103, + [11873] = 11104, + [11874] = 11123, + [11875] = 11121, + [11876] = 11011, + [11877] = 10965, + [11878] = 11878, + [11879] = 11012, + [11880] = 11124, + [11881] = 10956, + [11882] = 10941, + [11883] = 11007, + [11884] = 10957, + [11885] = 10947, + [11886] = 10950, + [11887] = 10946, + [11888] = 10953, + [11889] = 10955, + [11890] = 11019, + [11891] = 10995, + [11892] = 11092, + [11893] = 11564, + [11894] = 10963, + [11895] = 11020, + [11896] = 10965, + [11897] = 10949, + [11898] = 11720, + [11899] = 10999, + [11900] = 10971, + [11901] = 11007, + [11902] = 11017, + [11903] = 10976, + [11904] = 10977, + [11905] = 10959, + [11906] = 10979, + [11907] = 10980, + [11908] = 10981, + [11909] = 10984, + [11910] = 11021, + [11911] = 10966, + [11912] = 11800, [11913] = 10967, - [11914] = 10970, - [11915] = 10998, - [11916] = 10929, - [11917] = 10896, - [11918] = 10900, - [11919] = 10916, - [11920] = 11081, - [11921] = 10998, - [11922] = 10986, - [11923] = 10972, - [11924] = 10937, - [11925] = 11925, - [11926] = 10891, - [11927] = 10980, - [11928] = 11115, - [11929] = 10985, - [11930] = 10907, - [11931] = 10918, - [11932] = 11932, - [11933] = 11933, - [11934] = 11086, - [11935] = 10972, - [11936] = 10896, - [11937] = 11339, - [11938] = 10976, - [11939] = 10900, - [11940] = 11591, - [11941] = 10979, - [11942] = 10903, - [11943] = 10891, - [11944] = 10917, - [11945] = 10982, - [11946] = 10980, - [11947] = 10920, - [11948] = 11948, - [11949] = 10986, - [11950] = 2624, - [11951] = 10939, - [11952] = 10908, - [11953] = 10983, - [11954] = 10994, - [11955] = 11283, - [11956] = 10943, - [11957] = 11115, - [11958] = 11097, - [11959] = 10979, - [11960] = 10921, - [11961] = 10995, - [11962] = 10907, - [11963] = 10918, - [11964] = 10892, - [11965] = 10901, - [11966] = 10911, - [11967] = 11967, - [11968] = 11756, - [11969] = 11230, - [11970] = 10917, - [11971] = 11971, - [11972] = 10920, - [11973] = 10976, - [11974] = 10921, - [11975] = 11975, - [11976] = 11976, - [11977] = 10914, - [11978] = 10916, - [11979] = 10923, - [11980] = 11980, - [11981] = 10997, - [11982] = 11006, - [11983] = 11024, - [11984] = 11984, - [11985] = 10965, - [11986] = 10894, - [11987] = 11068, - [11988] = 10998, - [11989] = 11989, - [11990] = 11304, - [11991] = 10899, - [11992] = 11314, - [11993] = 10897, - [11994] = 11084, - [11995] = 10917, - [11996] = 11325, - [11997] = 10898, - [11998] = 10899, - [11999] = 10915, - [12000] = 10962, - [12001] = 10908, - [12002] = 11334, - [12003] = 10963, - [12004] = 10902, - [12005] = 10903, - [12006] = 11340, - [12007] = 11355, - [12008] = 10911, - [12009] = 11361, - [12010] = 10964, - [12011] = 11089, - [12012] = 10923, - [12013] = 10917, - [12014] = 12014, - [12015] = 10965, - [12016] = 10920, - [12017] = 11573, - [12018] = 12018, - [12019] = 12019, - [12020] = 11095, - [12021] = 11577, - [12022] = 10913, - [12023] = 11537, - [12024] = 12024, - [12025] = 10915, - [12026] = 10929, - [12027] = 10921, - [12028] = 11884, - [12029] = 10896, - [12030] = 11374, - [12031] = 11117, - [12032] = 10923, - [12033] = 10892, - [12034] = 11380, - [12035] = 10997, - [12036] = 10901, - [12037] = 11006, - [12038] = 11505, - [12039] = 10900, - [12040] = 10979, - [12041] = 10894, - [12042] = 11591, - [12043] = 10893, - [12044] = 10982, - [12045] = 10914, - [12046] = 10916, - [12047] = 11427, - [12048] = 10897, - [12049] = 11593, - [12050] = 10898, - [12051] = 10962, - [12052] = 10963, - [12053] = 10964, - [12054] = 10965, - [12055] = 11593, - [12056] = 10986, - [12057] = 10937, - [12058] = 10969, - [12059] = 10970, - [12060] = 11347, - [12061] = 11594, - [12062] = 10899, - [12063] = 11115, - [12064] = 10937, - [12065] = 11056, - [12066] = 10983, - [12067] = 10943, - [12068] = 11594, - [12069] = 11348, - [12070] = 10913, - [12071] = 10947, - [12072] = 10918, - [12073] = 11596, - [12074] = 11064, - [12075] = 11755, - [12076] = 11756, - [12077] = 10902, - [12078] = 10936, - [12079] = 11830, - [12080] = 11764, - [12081] = 10903, - [12082] = 10939, - [12083] = 10942, - [12084] = 11778, - [12085] = 10912, - [12086] = 10969, - [12087] = 10967, - [12088] = 11803, - [12089] = 11825, - [12090] = 10972, - [12091] = 10891, - [12092] = 10896, - [12093] = 11842, - [12094] = 10907, - [12095] = 10976, - [12096] = 11064, - [12097] = 11755, - [12098] = 11756, - [12099] = 10985, - [12100] = 10979, - [12101] = 10982, - [12102] = 11764, - [12103] = 10913, - [12104] = 10983, - [12105] = 11427, - [12106] = 11778, - [12107] = 10995, - [12108] = 10970, - [12109] = 11288, - [12110] = 10895, - [12111] = 11077, - [12112] = 10940, - [12113] = 11064, - [12114] = 11755, - [12115] = 11756, - [12116] = 10998, - [12117] = 10915, - [12118] = 11764, - [12119] = 12119, - [12120] = 11354, - [12121] = 11778, - [12122] = 10896, - [12123] = 11169, - [12124] = 10900, - [12125] = 11141, - [12126] = 11064, - [12127] = 11755, - [12128] = 11756, - [12129] = 11056, - [12130] = 10939, - [12131] = 11764, - [12132] = 10913, - [12133] = 10892, - [12134] = 11778, - [12135] = 10986, - [12136] = 12136, - [12137] = 10938, - [12138] = 10920, - [12139] = 11064, - [12140] = 11755, - [12141] = 11756, - [12142] = 10921, - [12143] = 11149, - [12144] = 11764, - [12145] = 11764, - [12146] = 11115, - [12147] = 11778, - [12148] = 10915, - [12149] = 10892, - [12150] = 10901, - [12151] = 10914, - [12152] = 11064, - [12153] = 11755, - [12154] = 11756, - [12155] = 10947, - [12156] = 10918, - [12157] = 11764, - [12158] = 10938, - [12159] = 10910, - [12160] = 11778, - [12161] = 10916, - [12162] = 12162, - [12163] = 10998, - [12164] = 10943, - [12165] = 11064, - [12166] = 11755, - [12167] = 11756, - [12168] = 10901, - [12169] = 10962, - [12170] = 11764, - [12171] = 10963, - [12172] = 12172, - [12173] = 11778, - [12174] = 10964, - [12175] = 10965, - [12176] = 10902, - [12177] = 10967, - [12178] = 11064, - [12179] = 11755, - [12180] = 11756, - [12181] = 10937, - [12182] = 10969, - [12183] = 11764, - [12184] = 10985, - [12185] = 10997, - [12186] = 11778, - [12187] = 10970, - [12188] = 10928, - [12189] = 10914, - [12190] = 10947, - [12191] = 11064, - [12192] = 11755, - [12193] = 11756, - [12194] = 10995, - [12195] = 10967, - [12196] = 11764, - [12197] = 12197, - [12198] = 10985, - [12199] = 11778, - [12200] = 10943, - [12201] = 11755, - [12202] = 11006, - [12203] = 10995, - [12204] = 11064, - [12205] = 11755, - [12206] = 11756, - [12207] = 10923, - [12208] = 2490, - [12209] = 11764, - [12210] = 11199, - [12211] = 10998, - [12212] = 11778, - [12213] = 10943, - [12214] = 11596, - [12215] = 10896, - [12216] = 10900, - [12217] = 11064, - [12218] = 11755, - [12219] = 11756, - [12220] = 10998, - [12221] = 10936, - [12222] = 11764, - [12223] = 10986, - [12224] = 10939, - [12225] = 11778, - [12226] = 10942, - [12227] = 11115, - [12228] = 10947, - [12229] = 10918, - [12230] = 11064, - [12231] = 11755, - [12232] = 11756, - [12233] = 10929, - [12234] = 10945, - [12235] = 11764, - [12236] = 10916, - [12237] = 10896, - [12238] = 11778, - [12239] = 10936, - [12240] = 10939, - [12241] = 11064, - [12242] = 11755, - [12243] = 11756, - [12244] = 11764, - [12245] = 10942, - [12246] = 10900, - [12247] = 11778, - [12248] = 10944, - [12249] = 10972, - [12250] = 11064, - [12251] = 11764, - [12252] = 10942, - [12253] = 10891, - [12254] = 10995, - [12255] = 11064, - [12256] = 11764, - [12257] = 10972, - [12258] = 11064, - [12259] = 11764, - [12260] = 10891, - [12261] = 11064, - [12262] = 11764, - [12263] = 11778, - [12264] = 11064, - [12265] = 10907, - [12266] = 11064, - [12267] = 10976, - [12268] = 11064, - [12269] = 10979, - [12270] = 10982, - [12271] = 10983, - [12272] = 10907, - [12273] = 10976, - [12274] = 10962, - [12275] = 10979, - [12276] = 10928, - [12277] = 10982, - [12278] = 11339, - [12279] = 10983, - [12280] = 12280, - [12281] = 12281, - [12282] = 10975, - [12283] = 10986, - [12284] = 10967, - [12285] = 10936, - [12286] = 11347, - [12287] = 11056, - [12288] = 10908, - [12289] = 11207, - [12290] = 11031, - [12291] = 10947, - [12292] = 11764, - [12293] = 10972, - [12294] = 11348, - [12295] = 10917, - [12296] = 10908, - [12297] = 10911, - [12298] = 11048, - [12299] = 11383, - [12300] = 10940, - [12301] = 10917, - [12302] = 10908, - [12303] = 11354, - [12304] = 10920, - [12305] = 10921, - [12306] = 10995, - [12307] = 11115, - [12308] = 10924, - [12309] = 10911, - [12310] = 10920, - [12311] = 10897, - [12312] = 10917, - [12313] = 10921, - [12314] = 10920, - [12315] = 10921, - [12316] = 10986, - [12317] = 10923, - [12318] = 10923, - [12319] = 10997, - [12320] = 11006, - [12321] = 11115, - [12322] = 10894, - [12323] = 10894, - [12324] = 10918, - [12325] = 10911, - [12326] = 10897, - [12327] = 10898, - [12328] = 12172, - [12329] = 10997, - [12330] = 10899, - [12331] = 10998, - [12332] = 11006, - [12333] = 12172, - [12334] = 12172, - [12335] = 12172, - [12336] = 12172, - [12337] = 12172, - [12338] = 12172, - [12339] = 12172, - [12340] = 12172, - [12341] = 12172, - [12342] = 12172, - [12343] = 12172, - [12344] = 12172, - [12345] = 12172, - [12346] = 11086, - [12347] = 12347, - [12348] = 12348, + [11914] = 11133, + [11915] = 11008, + [11916] = 11010, + [11917] = 11161, + [11918] = 10970, + [11919] = 10972, + [11920] = 10983, + [11921] = 10985, + [11922] = 11011, + [11923] = 10991, + [11924] = 11924, + [11925] = 10975, + [11926] = 10971, + [11927] = 11103, + [11928] = 11048, + [11929] = 10984, + [11930] = 11012, + [11931] = 10983, + [11932] = 11002, + [11933] = 10987, + [11934] = 10996, + [11935] = 11020, + [11936] = 10939, + [11937] = 11015, + [11938] = 11019, + [11939] = 11144, + [11940] = 11020, + [11941] = 11021, + [11942] = 11010, + [11943] = 10995, + [11944] = 11024, + [11945] = 10999, + [11946] = 11074, + [11947] = 11077, + [11948] = 11007, + [11949] = 11028, + [11950] = 11104, + [11951] = 11008, + [11952] = 11010, + [11953] = 11011, + [11954] = 11012, + [11955] = 11197, + [11956] = 11012, + [11957] = 11240, + [11958] = 11031, + [11959] = 11032, + [11960] = 10943, + [11961] = 11092, + [11962] = 10944, + [11963] = 11123, + [11964] = 11198, + [11965] = 10948, + [11966] = 10973, + [11967] = 10966, + [11968] = 10974, + [11969] = 11004, + [11970] = 10951, + [11971] = 10998, + [11972] = 11046, + [11973] = 11047, + [11974] = 11048, + [11975] = 10996, + [11976] = 11051, + [11977] = 11181, + [11978] = 11024, + [11979] = 11054, + [11980] = 11055, + [11981] = 10956, + [11982] = 11056, + [11983] = 11065, + [11984] = 11103, + [11985] = 11076, + [11986] = 11017, + [11987] = 10983, + [11988] = 11079, + [11989] = 11081, + [11990] = 11817, + [11991] = 11308, + [11992] = 10946, + [11993] = 11104, + [11994] = 11123, + [11995] = 10977, + [11996] = 10971, + [11997] = 10973, + [11998] = 10957, + [11999] = 11103, + [12000] = 10996, + [12001] = 10939, + [12002] = 11028, + [12003] = 10995, + [12004] = 11024, + [12005] = 10943, + [12006] = 11112, + [12007] = 10973, + [12008] = 11117, + [12009] = 11818, + [12010] = 10953, + [12011] = 11119, + [12012] = 11120, + [12013] = 11104, + [12014] = 11130, + [12015] = 11131, + [12016] = 11055, + [12017] = 11135, + [12018] = 10951, + [12019] = 11006, + [12020] = 10955, + [12021] = 11008, + [12022] = 10967, + [12023] = 11006, + [12024] = 11258, + [12025] = 10966, + [12026] = 10996, + [12027] = 10963, + [12028] = 11121, + [12029] = 10943, + [12030] = 10972, + [12031] = 10965, + [12032] = 11159, + [12033] = 11161, + [12034] = 10945, + [12035] = 11124, + [12036] = 11256, + [12037] = 11310, + [12038] = 2520, + [12039] = 11204, + [12040] = 11257, + [12041] = 10956, + [12042] = 11081, + [12043] = 10946, + [12044] = 11258, + [12045] = 10999, + [12046] = 11055, + [12047] = 11171, + [12048] = 10943, + [12049] = 10976, + [12050] = 10977, + [12051] = 12051, + [12052] = 11259, + [12053] = 11176, + [12054] = 11177, + [12055] = 11878, + [12056] = 11007, + [12057] = 10939, + [12058] = 11262, + [12059] = 11179, + [12060] = 10976, + [12061] = 11181, + [12062] = 10973, + [12063] = 10977, + [12064] = 10959, + [12065] = 11184, + [12066] = 11037, + [12067] = 10949, + [12068] = 10979, + [12069] = 12069, + [12070] = 11065, + [12071] = 11192, + [12072] = 11195, + [12073] = 11006, + [12074] = 10971, + [12075] = 11197, + [12076] = 12076, + [12077] = 11198, + [12078] = 10967, + [12079] = 11720, + [12080] = 11204, + [12081] = 11061, + [12082] = 11063, + [12083] = 11809, + [12084] = 11006, + [12085] = 10970, + [12086] = 10996, + [12087] = 10975, + [12088] = 11720, + [12089] = 10998, + [12090] = 10984, + [12091] = 10941, + [12092] = 11046, + [12093] = 11047, + [12094] = 11162, + [12095] = 11212, + [12096] = 10983, + [12097] = 10985, + [12098] = 12098, + [12099] = 11048, + [12100] = 11878, + [12101] = 10995, + [12102] = 10999, + [12103] = 10987, + [12104] = 11007, + [12105] = 11013, + [12106] = 11230, + [12107] = 11266, + [12108] = 11142, + [12109] = 11031, + [12110] = 11032, + [12111] = 10959, + [12112] = 11017, + [12113] = 11074, + [12114] = 11240, + [12115] = 11008, + [12116] = 11123, + [12117] = 11077, + [12118] = 11079, + [12119] = 11081, + [12120] = 12120, + [12121] = 12121, + [12122] = 11256, + [12123] = 11005, + [12124] = 11800, + [12125] = 11801, + [12126] = 12126, + [12127] = 11257, + [12128] = 10943, + [12129] = 11809, + [12130] = 10979, + [12131] = 12131, + [12132] = 10942, + [12133] = 11685, + [12134] = 10956, + [12135] = 11092, + [12136] = 11258, + [12137] = 11259, + [12138] = 11262, + [12139] = 12139, + [12140] = 11266, + [12141] = 10942, + [12142] = 10951, + [12143] = 10952, + [12144] = 10964, + [12145] = 11005, + [12146] = 11800, + [12147] = 11801, + [12148] = 11028, + [12149] = 11213, + [12150] = 10988, + [12151] = 11809, + [12152] = 11103, + [12153] = 11104, + [12154] = 11259, + [12155] = 11685, + [12156] = 10949, + [12157] = 11123, + [12158] = 11022, + [12159] = 10956, + [12160] = 11033, + [12161] = 11010, + [12162] = 11005, + [12163] = 11800, + [12164] = 11801, + [12165] = 11011, + [12166] = 11012, + [12167] = 11809, + [12168] = 10957, + [12169] = 10946, + [12170] = 11685, + [12171] = 11262, + [12172] = 11285, + [12173] = 10970, + [12174] = 11290, + [12175] = 11005, + [12176] = 11800, + [12177] = 11801, + [12178] = 10955, + [12179] = 11293, + [12180] = 11809, + [12181] = 10944, + [12182] = 10967, + [12183] = 11685, + [12184] = 10953, + [12185] = 11213, + [12186] = 11296, + [12187] = 11298, + [12188] = 11005, + [12189] = 11800, + [12190] = 11801, + [12191] = 11139, + [12192] = 11737, + [12193] = 11809, + [12194] = 11002, + [12195] = 10971, + [12196] = 11685, + [12197] = 10966, + [12198] = 11151, + [12199] = 10955, + [12200] = 10952, + [12201] = 11005, + [12202] = 11800, + [12203] = 11801, + [12204] = 11811, + [12205] = 10949, + [12206] = 11809, + [12207] = 10996, + [12208] = 11813, + [12209] = 11685, + [12210] = 11463, + [12211] = 11302, + [12212] = 11817, + [12213] = 11304, + [12214] = 11005, + [12215] = 11800, + [12216] = 11801, + [12217] = 11818, + [12218] = 11308, + [12219] = 11809, + [12220] = 10943, + [12221] = 10976, + [12222] = 11685, + [12223] = 12223, + [12224] = 10943, + [12225] = 11310, + [12226] = 11330, + [12227] = 11005, + [12228] = 11800, + [12229] = 11801, + [12230] = 10973, + [12231] = 10951, + [12232] = 11809, + [12233] = 10963, + [12234] = 10951, + [12235] = 11685, + [12236] = 10970, + [12237] = 10948, + [12238] = 10956, + [12239] = 10946, + [12240] = 11005, + [12241] = 11800, + [12242] = 11801, + [12243] = 10964, + [12244] = 12244, + [12245] = 11809, + [12246] = 10939, + [12247] = 12247, + [12248] = 11685, + [12249] = 10970, + [12250] = 10973, + [12251] = 10972, + [12252] = 11171, + [12253] = 11005, + [12254] = 11800, + [12255] = 11801, + [12256] = 11006, + [12257] = 10975, + [12258] = 11809, + [12259] = 10984, + [12260] = 10983, + [12261] = 11685, + [12262] = 10965, + [12263] = 10985, + [12264] = 11811, + [12265] = 12265, + [12266] = 11005, + [12267] = 11800, + [12268] = 11801, + [12269] = 10949, + [12270] = 10939, + [12271] = 11809, + [12272] = 10974, + [12273] = 10946, + [12274] = 11685, + [12275] = 10987, + [12276] = 11004, + [12277] = 11801, + [12278] = 10995, + [12279] = 11005, + [12280] = 11800, + [12281] = 11801, + [12282] = 10988, + [12283] = 10999, + [12284] = 11809, + [12285] = 10949, + [12286] = 10973, + [12287] = 11685, + [12288] = 11813, + [12289] = 11022, + [12290] = 11005, + [12291] = 11800, + [12292] = 11801, + [12293] = 11809, + [12294] = 11007, + [12295] = 11008, + [12296] = 11685, + [12297] = 10976, + [12298] = 10967, + [12299] = 11005, + [12300] = 11809, + [12301] = 10998, + [12302] = 10977, + [12303] = 11031, + [12304] = 11005, + [12305] = 11809, + [12306] = 10959, + [12307] = 11005, + [12308] = 11809, + [12309] = 10979, + [12310] = 11005, + [12311] = 11809, + [12312] = 11564, + [12313] = 11005, + [12314] = 11010, + [12315] = 11005, + [12316] = 10959, + [12317] = 11005, + [12318] = 11011, + [12319] = 11184, + [12320] = 10982, + [12321] = 11012, + [12322] = 12322, + [12323] = 10956, + [12324] = 10975, + [12325] = 11074, + [12326] = 11077, + [12327] = 10998, + [12328] = 10998, + [12329] = 11092, + [12330] = 11046, + [12331] = 11046, + [12332] = 11103, + [12333] = 11104, + [12334] = 11123, + [12335] = 12335, + [12336] = 11047, + [12337] = 11047, + [12338] = 11048, + [12339] = 11032, + [12340] = 11048, + [12341] = 11809, + [12342] = 10957, + [12343] = 10970, + [12344] = 11006, + [12345] = 10975, + [12346] = 10984, + [12347] = 10971, + [12348] = 10987, + [12349] = 11046, + [12350] = 11074, + [12351] = 11077, + [12352] = 10985, + [12353] = 10996, + [12354] = 11092, + [12355] = 11047, + [12356] = 10984, + [12357] = 11266, + [12358] = 11103, + [12359] = 11104, + [12360] = 11123, + [12361] = 10977, + [12362] = 11048, + [12363] = 10953, + [12364] = 11056, + [12365] = 10955, + [12366] = 10943, + [12367] = 10956, + [12368] = 11051, + [12369] = 11017, + [12370] = 10963, + [12371] = 11017, + [12372] = 10965, + [12373] = 10951, + [12374] = 11006, + [12375] = 11079, + [12376] = 12244, + [12377] = 11081, + [12378] = 11079, + [12379] = 11878, + [12380] = 10963, + [12381] = 12244, + [12382] = 12244, + [12383] = 12244, + [12384] = 12244, + [12385] = 12244, + [12386] = 12244, + [12387] = 12244, + [12388] = 12244, + [12389] = 12244, + [12390] = 12244, + [12391] = 12244, + [12392] = 12244, + [12393] = 12244, + [12394] = 11177, + [12395] = 12395, + [12396] = 12396, }; static TSCharacterRange sym_ignored_backslash_character_set_1[] = { @@ -16959,2124 +17014,2156 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 318, - '"', 247, - '#', 192, - '$', 286, - '%', 293, - '&', 295, - '\'', 220, - '(', 348, - ')', 191, - '*', 290, - '+', 287, - ',', 266, - '-', 288, - '.', 275, - '/', 255, - '0', 195, - ':', 346, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, - '@', 122, - '[', 265, + '!', 320, + '"', 249, + '#', 194, + '$', 288, + '%', 295, + '&', 297, + '\'', 222, + '(', 350, + ')', 193, + '*', 292, + '+', 289, + ',', 268, + '-', 290, + '.', 277, + '/', 257, + '0', 197, + ':', 348, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, + '@', 123, + '[', 267, '\\', 1, - ']', 268, - '^', 300, - '`', 251, - 'a', 337, - '|', 297, - '}', 231, - '~', 319, + ']', 270, + '^', 302, + '`', 253, + 'a', 339, + '|', 299, + '}', 233, + '~', 321, '\t', 17, ' ', 17, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(166); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(196); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(167); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 1: ADVANCE_MAP( - '\n', 227, - '"', 227, - '\'', 221, - '0', 222, - 'N', 224, - 'b', 221, - 'c', 226, - 'o', 225, - 'u', 131, - 'v', 221, - 'x', 133, - '\\', 221, - 'a', 221, - 'e', 221, - 'f', 221, - 'n', 221, - 'r', 221, - 't', 221, + '\n', 229, + '"', 229, + '\'', 223, + '0', 224, + 'N', 226, + 'b', 223, + 'c', 228, + 'o', 227, + 'u', 132, + 'v', 223, + 'x', 134, + '\\', 223, + 'a', 223, + 'e', 223, + 'f', 223, + 'n', 223, + 'r', 223, + 't', 223, ); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(229); - if (set_contains(sym_regex_special_match_character_set_1, 10, lookahead)) ADVANCE(223); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(231); + if (set_contains(sym_regex_special_match_character_set_1, 10, lookahead)) ADVANCE(225); if (lookahead == '8' || lookahead == '9' || ('C' <= lookahead && lookahead <= 'Y') || - ('d' <= lookahead && lookahead <= 'y')) ADVANCE(223); - if (lookahead != 0) ADVANCE(223); + ('d' <= lookahead && lookahead <= 'y')) ADVANCE(225); + if (lookahead != 0) ADVANCE(225); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(232); + if (lookahead == '\n') ADVANCE(234); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(232); - if ((!eof && set_contains(sym_ignored_backslash_character_set_1, 11, lookahead))) ADVANCE(223); + if (lookahead == '\n') ADVANCE(234); + if ((!eof && set_contains(sym_ignored_backslash_character_set_1, 11, lookahead))) ADVANCE(225); END_STATE(); case 4: ADVANCE_MAP( - ' ', 377, - '!', 241, - '"', 245, - '&', 234, - '*', 235, - '/', 236, - ':', 328, - '<', 237, - '=', 105, - '>', 242, - '[', 127, - '%', 233, - '+', 233, - '-', 233, - '^', 233, - '|', 233, - '~', 233, + ' ', 379, + '!', 243, + '"', 247, + '&', 236, + '*', 237, + '/', 238, + ':', 330, + '<', 239, + '=', 106, + '>', 244, + '[', 128, + '%', 235, + '+', 235, + '-', 235, + '^', 235, + '|', 235, + '~', 235, ); if (lookahead > '@' && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(244); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(246); END_STATE(); case 5: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(227); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(229); END_STATE(); case 6: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(227); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5); END_STATE(); case 7: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(227); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(6); END_STATE(); case 8: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(227); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(7); END_STATE(); case 9: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(227); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(8); END_STATE(); case 10: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(227); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(9); END_STATE(); case 11: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(221); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(223); END_STATE(); case 12: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(221); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(11); END_STATE(); case 13: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(221); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(12); END_STATE(); case 14: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(221); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(13); END_STATE(); case 15: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(221); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(14); END_STATE(); case 16: - if (lookahead == ' ') ADVANCE(156); - if (lookahead == '}') ADVANCE(221); + if (lookahead == ' ') ADVANCE(157); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(15); END_STATE(); case 17: ADVANCE_MAP( - '!', 318, - '#', 192, - '$', 286, - '%', 293, - '&', 295, - '\'', 218, - '(', 190, - ')', 191, - '*', 290, - '+', 287, - ',', 266, - '-', 288, - '.', 275, - '/', 291, - '0', 203, - ':', 373, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, - '@', 122, - '[', 265, + '!', 320, + '#', 194, + '$', 288, + '%', 295, + '&', 297, + '\'', 220, + '(', 192, + ')', 193, + '*', 292, + '+', 289, + ',', 268, + '-', 290, + '.', 277, + '/', 293, + '0', 205, + ':', 375, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, + '@', 123, + '[', 267, '\\', 2, - ']', 268, - '^', 300, - '`', 248, - 'a', 337, - '|', 297, - '}', 231, - '~', 319, + ']', 270, + '^', 302, + '`', 250, + 'a', 339, + '|', 299, + '}', 233, + '~', 321, '\t', 17, ' ', 17, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 18: ADVANCE_MAP( - '!', 318, - '#', 192, - '$', 286, - '%', 293, - '&', 295, - '\'', 218, - '(', 190, - ')', 191, - '*', 290, - '+', 287, - ',', 266, - '-', 288, - '.', 275, - '/', 291, - '0', 203, - ':', 374, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, - '@', 122, - '[', 265, + '!', 320, + '#', 194, + '$', 288, + '%', 295, + '&', 297, + '\'', 220, + '(', 192, + ')', 193, + '*', 292, + '+', 289, + ',', 268, + '-', 290, + '.', 277, + '/', 293, + '0', 205, + ':', 376, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, + '@', 123, + '[', 267, '\\', 2, - ']', 268, - '^', 300, - '`', 248, - 'a', 337, - '|', 297, - '}', 231, - '~', 319, + ']', 270, + '^', 302, + '`', 250, + 'a', 339, + '|', 299, + '}', 233, + '~', 321, '\t', 17, ' ', 17, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 19: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 348, - ')', 191, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 374, - ';', 189, - '<', 278, - '=', 282, - '>', 309, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 350, + ')', 193, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 376, + ';', 191, + '<', 280, + '=', 284, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '~', 321, '\t', 22, ' ', 22, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 20: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 348, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 346, - '<', 278, - '=', 282, - '>', 309, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 350, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 348, + '<', 280, + '=', 284, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 21: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 348, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 374, - '<', 278, - '=', 282, - '>', 309, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 350, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 376, + '<', 280, + '=', 284, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 22: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 190, - ')', 191, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 373, - ';', 189, - '<', 278, - '=', 282, - '>', 309, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 192, + ')', 193, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 375, + ';', 191, + '<', 280, + '=', 284, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '~', 321, '\t', 22, ' ', 22, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 23: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 190, - ')', 191, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 374, - ';', 189, - '<', 278, - '=', 282, - '>', 309, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 192, + ')', 193, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 376, + ';', 191, + '<', 280, + '=', 284, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '~', 321, '\t', 22, ' ', 22, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 24: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 190, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 374, - '<', 278, - '=', 282, - '>', 309, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 192, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 376, + '<', 280, + '=', 284, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 25: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 348, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 203, - ':', 346, - ';', 189, - '<', 279, - '=', 282, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 350, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 205, + ':', 348, + ';', 191, + '<', 281, + '=', 284, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '~', 321, '\t', 30, ' ', 30, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(28); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 26: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 348, - ')', 191, - ',', 266, - '-', 119, - '.', 275, - '0', 203, - ':', 374, - '<', 279, - '=', 101, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '}', 231, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 350, + ')', 193, + ',', 268, + '-', 120, + '.', 277, + '0', 205, + ':', 376, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 269, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '}', 233, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(31); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 27: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 203, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 205, ':', 37, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 122, - '[', 264, - ']', 267, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '}', 231, - '~', 319, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 123, + '[', 266, + ']', 269, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '}', 233, + '~', 321, '\t', 29, ' ', 29, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(27); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 28: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 203, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 205, ':', 37, - ';', 189, - '<', 279, - '=', 282, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '~', 319, + ';', 191, + '<', 281, + '=', 284, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '~', 321, '\t', 30, ' ', 30, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(28); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 29: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 203, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 205, ':', 35, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 122, - '[', 264, - ']', 267, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '}', 231, - '~', 319, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 123, + '[', 266, + ']', 269, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '}', 233, + '~', 321, '\t', 29, ' ', 29, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(27); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 30: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 203, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 205, ':', 35, - ';', 189, - '<', 279, - '=', 282, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '~', 319, + ';', 191, + '<', 281, + '=', 284, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '~', 321, '\t', 30, ' ', 30, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(28); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 31: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 190, - ')', 191, - ',', 266, - '-', 119, - '.', 275, - '0', 203, - ':', 374, - '<', 279, - '=', 101, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '}', 231, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 192, + ')', 193, + ',', 268, + '-', 120, + '.', 277, + '0', 205, + ':', 376, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 269, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '}', 233, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(31); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 32: ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 190, - ',', 266, - '-', 119, - '.', 275, - '0', 203, - ':', 374, - '<', 279, - '=', 102, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 268, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 192, + ',', 268, + '-', 120, + '.', 277, + '0', 205, + ':', 376, + '<', 281, + '=', 103, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 33: ADVANCE_MAP( - '!', 318, - '#', 193, - '%', 293, - '&', 295, - '(', 190, - '*', 290, - '+', 287, - '-', 288, - '/', 291, - ':', 98, - '<', 279, - '=', 102, - '>', 310, - '@', 123, - '[', 265, - '^', 299, - '|', 296, - '~', 319, + '!', 320, + '#', 195, + '%', 295, + '&', 297, + '(', 192, + '*', 292, + '+', 289, + '-', 290, + '/', 293, + ':', 99, + '<', 281, + '=', 103, + '>', 312, + '@', 124, + '[', 267, + '^', 301, + '|', 298, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(33); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(334); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(336); END_STATE(); case 34: ADVANCE_MAP( - '!', 318, - '#', 193, - '%', 293, - '&', 295, - ')', 191, - '*', 290, - '+', 287, - '-', 288, - '/', 291, - ':', 96, - '<', 279, - '=', 102, - '>', 310, - '@', 164, - '[', 265, - '^', 299, - '|', 296, - '}', 231, - '~', 319, + '!', 320, + '#', 195, + '%', 295, + '&', 297, + ')', 193, + '*', 292, + '+', 289, + '-', 290, + '/', 293, + ':', 97, + '<', 281, + '=', 103, + '>', 312, + '@', 165, + '[', 267, + '^', 301, + '|', 298, + '}', 233, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(34); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 35: ADVANCE_MAP( - '!', 241, - '"', 245, - '&', 234, - '*', 235, - '/', 236, - ':', 328, - '<', 237, - '=', 105, - '>', 242, - '[', 127, - '%', 233, - '+', 233, - '-', 233, - '^', 233, - '|', 233, - '~', 233, + '!', 243, + '"', 247, + '&', 236, + '*', 237, + '/', 238, + ':', 330, + '<', 239, + '=', 106, + '>', 244, + '[', 128, + '%', 235, + '+', 235, + '-', 235, + '^', 235, + '|', 235, + '~', 235, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(284); + lookahead == ' ') ADVANCE(286); if (lookahead > '@' && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(244); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(246); END_STATE(); case 36: ADVANCE_MAP( - '!', 241, - '"', 245, - '&', 234, - '*', 235, - '/', 236, - ':', 328, - '<', 237, - '=', 105, - '>', 242, - '[', 127, - '%', 233, - '+', 233, - '-', 233, - '^', 233, - '|', 233, - '~', 233, + '!', 243, + '"', 247, + '&', 236, + '*', 237, + '/', 238, + ':', 330, + '<', 239, + '=', 106, + '>', 244, + '[', 128, + '%', 235, + '+', 235, + '-', 235, + '^', 235, + '|', 235, + '~', 235, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(273); + lookahead == ' ') ADVANCE(275); if (lookahead > '@' && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(244); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(246); END_STATE(); case 37: ADVANCE_MAP( - '!', 241, - '"', 245, - '&', 234, - '*', 235, - '/', 236, - ':', 328, - '<', 237, - '=', 105, - '>', 242, - '[', 127, - '%', 233, - '+', 233, - '-', 233, - '^', 233, - '|', 233, - '~', 233, + '!', 243, + '"', 247, + '&', 236, + '*', 237, + '/', 238, + ':', 330, + '<', 239, + '=', 106, + '>', 244, + '[', 128, + '%', 235, + '+', 235, + '-', 235, + '^', 235, + '|', 235, + '~', 235, ); if (lookahead > '@' && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(244); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(246); END_STATE(); case 38: ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '%', 109, - '&', 75, - '\'', 218, - '(', 190, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '/', 79, - '0', 195, + '!', 319, + '#', 195, + '$', 147, + '%', 110, + '&', 76, + '\'', 220, + '(', 192, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '/', 80, + '0', 197, ':', 4, - ';', 189, - '<', 99, - '=', 280, - '>', 120, - '@', 123, - '[', 264, - '^', 103, - '`', 248, - 'a', 338, - '|', 104, - '~', 319, + ';', 191, + '<', 100, + '=', 282, + '>', 121, + '@', 124, + '[', 266, + '^', 104, + '`', 250, + 'a', 340, + '|', 105, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(39); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(196); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(198); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 39: ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '%', 109, - '&', 75, - '\'', 218, - '(', 190, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '/', 79, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '%', 110, + '&', 76, + '\'', 220, + '(', 192, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '/', 80, + '0', 205, ':', 4, - ';', 189, - '<', 99, - '=', 280, - '>', 120, - '@', 123, - '[', 264, - '^', 103, - '`', 248, - 'a', 338, - '|', 104, - '~', 319, + ';', 191, + '<', 100, + '=', 282, + '>', 121, + '@', 124, + '[', 266, + '^', 104, + '`', 250, + 'a', 340, + '|', 105, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(39); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 40: ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + '0', 205, ':', 37, - ';', 189, - '<', 277, - '=', 283, - '?', 349, - '@', 122, - '[', 264, + ';', 191, + '<', 279, + '=', 285, + '?', 351, + '@', 123, + '[', 266, '\\', 2, - ']', 268, - '`', 248, - 'a', 338, - '|', 296, - '}', 231, - '~', 319, + ']', 270, + '`', 250, + 'a', 340, + '|', 298, + '}', 233, + '~', 321, '\t', 42, ' ', 42, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 41: ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + '0', 205, ':', 37, - ';', 189, - '<', 277, - '?', 349, - '@', 122, - '[', 264, - '`', 248, - 'a', 338, - '|', 296, - '}', 231, - '~', 319, + ';', 191, + '<', 279, + '=', 282, + '?', 351, + '@', 123, + '[', 266, + '`', 250, + 'a', 340, + '|', 298, + '}', 233, + '~', 321, '\t', 43, ' ', 43, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 42: ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + '0', 205, ':', 35, - ';', 189, - '<', 277, - '=', 283, - '?', 349, - '@', 122, - '[', 264, + ';', 191, + '<', 279, + '=', 285, + '?', 351, + '@', 123, + '[', 266, '\\', 2, - ']', 268, - '`', 248, - 'a', 338, - '|', 296, - '}', 231, - '~', 319, + ']', 270, + '`', 250, + 'a', 340, + '|', 298, + '}', 233, + '~', 321, '\t', 42, ' ', 42, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 43: ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + '0', 205, ':', 35, - ';', 189, - '<', 277, - '?', 349, - '@', 122, - '[', 264, - '`', 248, - 'a', 338, - '|', 296, - '}', 231, - '~', 319, + ';', 191, + '<', 279, + '=', 282, + '?', 351, + '@', 123, + '[', 266, + '`', 250, + 'a', 340, + '|', 298, + '}', 233, + '~', 321, '\t', 43, ' ', 43, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 44: ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 190, - ')', 191, - '-', 119, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '\'', 220, + '(', 192, + ')', 193, + '-', 120, + '0', 205, ':', 36, - '@', 123, - '[', 264, - ']', 267, - '`', 248, - 'a', 338, - '~', 319, + '@', 124, + '[', 266, + ']', 269, + '`', 250, + 'a', 340, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(44); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 45: ADVANCE_MAP( - '!', 100, - '#', 193, - '%', 109, - '&', 74, - '*', 77, - '+', 110, - ',', 266, - '-', 111, - '.', 275, - '/', 79, - ':', 372, - '<', 278, - '=', 282, - '>', 309, - '?', 349, - ']', 268, - '^', 300, - '|', 297, + '!', 101, + '#', 195, + '%', 110, + '&', 75, + '*', 78, + '+', 111, + ',', 268, + '-', 112, + '.', 277, + '/', 80, + ':', 374, + '<', 280, + '=', 284, + '>', 311, + '?', 351, + ']', 270, + '^', 302, + '|', 299, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(45); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 46: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '(', 348, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 375, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, + '!', 101, + '#', 195, + '&', 74, + '(', 350, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 377, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(51); + lookahead == ' ') SKIP(52); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 47: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '(', 348, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 372, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, + '!', 101, + '#', 195, + '&', 74, + '(', 350, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 374, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52); + lookahead == ' ') SKIP(53); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 48: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '(', 348, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 347, - '<', 279, - '=', 282, - '>', 310, - '?', 349, - '[', 264, - ']', 268, - '^', 299, - '|', 298, + '!', 101, + '#', 195, + '&', 74, + '(', 350, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 349, + '<', 281, + '=', 284, + '>', 312, + '?', 351, + '[', 266, + ']', 270, + '^', 301, + '|', 300, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(55); + lookahead == ' ') SKIP(56); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 49: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 98, - ';', 189, - '<', 279, - '=', 282, - '>', 310, - '?', 349, - '@', 122, - '[', 264, - ']', 268, - '^', 299, - '|', 298, + '!', 101, + '#', 195, + '&', 74, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 97, + ';', 191, + '<', 281, + '=', 284, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 301, + '|', 300, + '}', 233, + '\t', 50, + ' ', 50, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(49); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 50: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '(', 190, - ')', 191, - ',', 266, - '.', 275, - ':', 372, - '<', 279, - '=', 101, - '>', 310, - '?', 349, - ']', 267, - '^', 299, - '|', 298, - '}', 231, + '!', 101, + '#', 195, + '&', 74, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 98, + ';', 191, + '<', 281, + '=', 284, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 301, + '|', 300, + '}', 233, + '\t', 50, + ' ', 50, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(50); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(49); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 51: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 375, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, + '!', 101, + '#', 195, + '&', 74, + '(', 192, + ')', 193, + ',', 268, + '.', 277, + ':', 374, + '<', 281, + '=', 102, + '>', 312, + '?', 351, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 52: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 372, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, + '!', 101, + '#', 195, + '&', 74, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 377, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 53: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 96, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, - '\t', 54, - ' ', 54, + '!', 101, + '#', 195, + '&', 74, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 374, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(53); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(53); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 54: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, + '!', 101, + '#', 195, + '&', 74, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, ':', 97, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, - '\t', 54, - ' ', 54, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, + '\t', 55, + ' ', 55, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(53); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(54); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 55: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 375, - '<', 279, - '=', 282, - '>', 310, - '?', 349, - '[', 264, - ']', 268, - '^', 299, - '|', 298, + '!', 101, + '#', 195, + '&', 74, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 98, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, + '\t', 55, + ' ', 55, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(55); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(54); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 56: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - ',', 266, - '.', 275, - ':', 372, - '<', 279, - '=', 102, - '>', 310, - '?', 349, - ']', 268, - '^', 299, - '|', 298, + '!', 101, + '#', 195, + '&', 74, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 377, + '<', 281, + '=', 284, + '>', 312, + '?', 351, + '[', 266, + ']', 270, + '^', 301, + '|', 300, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 57: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - ',', 266, - '.', 275, - ':', 345, - '<', 279, - '=', 102, - '>', 310, - '?', 349, - ']', 268, - '^', 299, - '|', 298, + '!', 101, + '#', 195, + '&', 74, + ',', 268, + '.', 277, + ':', 374, + '<', 281, + '=', 103, + '>', 312, + '?', 351, + ']', 270, + '^', 301, + '|', 300, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58); + lookahead == ' ') SKIP(57); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 58: ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - ',', 266, - '.', 275, - '<', 279, - '=', 102, - '>', 310, - '?', 349, - ']', 268, - '^', 299, - '|', 298, + '!', 101, + '#', 195, + '&', 74, + ',', 268, + '.', 277, + ':', 347, + '<', 281, + '=', 103, + '>', 312, + '?', 351, + ']', 270, + '^', 301, + '|', 300, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58); + lookahead == ' ') SKIP(59); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 59: - if (lookahead == '"') ADVANCE(247); - if (lookahead == '#') ADVANCE(246); - if (lookahead == '\\') ADVANCE(129); + ADVANCE_MAP( + '!', 101, + '#', 195, + '&', 74, + ',', 268, + '.', 277, + '<', 281, + '=', 103, + '>', 312, + '?', 351, + ']', 270, + '^', 301, + '|', 300, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(246); - if (lookahead != 0) ADVANCE(246); + lookahead == ' ') SKIP(59); + if (lookahead > '^' && + lookahead != '`' && + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 60: - if (lookahead == '#') ADVANCE(192); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '"') ADVANCE(249); + if (lookahead == '#') ADVANCE(248); + if (lookahead == '\\') ADVANCE(130); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62); + lookahead == ' ') ADVANCE(248); + if (lookahead != 0) ADVANCE(248); END_STATE(); case 61: - if (lookahead == '#') ADVANCE(192); - if (lookahead == '\\') ADVANCE(124); + if (lookahead == '#') ADVANCE(194); + if (lookahead == '\\') ADVANCE(130); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62); + lookahead == ' ') SKIP(63); END_STATE(); case 62: - if (lookahead == '#') ADVANCE(192); + if (lookahead == '#') ADVANCE(194); + if (lookahead == '\\') ADVANCE(125); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62); + lookahead == ' ') SKIP(63); END_STATE(); case 63: - ADVANCE_MAP( - '#', 193, - '$', 285, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - ':', 96, - ';', 189, - '=', 283, - '?', 349, - '@', 122, - '[', 264, - ']', 267, - '|', 296, - '}', 231, - '\t', 64, - ' ', 64, - ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(63); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); - if (lookahead > '^' && - lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + if (lookahead == '#') ADVANCE(194); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(63); END_STATE(); case 64: ADVANCE_MAP( - '#', 193, - '$', 285, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, + '#', 195, + '$', 287, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, ':', 97, - ';', 189, - '=', 283, - '?', 349, - '@', 122, - '[', 264, - ']', 267, - '|', 296, - '}', 231, - '\t', 64, - ' ', 64, + ';', 191, + '=', 285, + '?', 351, + '@', 123, + '[', 266, + ']', 269, + '|', 298, + '}', 233, + '\t', 65, + ' ', 65, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(63); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(64); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 65: - if (lookahead == '#') ADVANCE(193); - if (lookahead == '&') ADVANCE(294); - if (lookahead == ')') ADVANCE(191); - if (lookahead == '*') ADVANCE(290); - if (lookahead == '@') ADVANCE(122); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65); + ADVANCE_MAP( + '#', 195, + '$', 287, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + ':', 98, + ';', 191, + '=', 285, + '?', 351, + '@', 123, + '[', 266, + ']', 269, + '|', 298, + '}', 233, + '\t', 65, + ' ', 65, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(64); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 66: - if (lookahead == '#') ADVANCE(193); - if (lookahead == '(') ADVANCE(190); - if (lookahead == ')') ADVANCE(191); - if (lookahead == '*') ADVANCE(289); - if (lookahead == '-') ADVANCE(119); - if (lookahead == ':') ADVANCE(96); + if (lookahead == '#') ADVANCE(195); + if (lookahead == '&') ADVANCE(296); + if (lookahead == ')') ADVANCE(193); + if (lookahead == '*') ADVANCE(292); + if (lookahead == ':') ADVANCE(99); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '@') ADVANCE(123); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(66); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 67: - ADVANCE_MAP( - '#', 193, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - ':', 96, - ';', 189, - '=', 283, - '?', 349, - '@', 121, - '[', 264, - '|', 296, - '}', 231, - '\t', 68, - ' ', 68, - ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(67); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (lookahead == '#') ADVANCE(195); + if (lookahead == '(') ADVANCE(192); + if (lookahead == ')') ADVANCE(193); + if (lookahead == '*') ADVANCE(291); + if (lookahead == '-') ADVANCE(120); + if (lookahead == ':') ADVANCE(97); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(67); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 68: ADVANCE_MAP( - '#', 193, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, + '#', 195, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, ':', 97, - ';', 189, - '=', 283, - '?', 349, - '@', 121, - '[', 264, - '|', 296, - '}', 231, - '\t', 68, - ' ', 68, + ';', 191, + '=', 285, + '?', 351, + '@', 122, + '[', 266, + '|', 298, + '}', 233, + '\t', 69, + ' ', 69, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(67); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(68); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 69: - if (lookahead == '#') ADVANCE(193); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(376); + ADVANCE_MAP( + '#', 195, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + ':', 98, + ';', 191, + '=', 285, + '?', 351, + '@', 122, + '[', 266, + '|', 298, + '}', 233, + '\t', 69, + ' ', 69, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(68); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); + if (lookahead > '^' && + lookahead != '`' && + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 70: - if (lookahead == '#') ADVANCE(253); - if (lookahead == '/') ADVANCE(254); - if (lookahead == '\\') ADVANCE(125); + if (lookahead == '#') ADVANCE(195); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(252); + lookahead == ' ') ADVANCE(378); END_STATE(); case 71: - if (lookahead == '#') ADVANCE(250); - if (lookahead == '\\') ADVANCE(129); - if (lookahead == '`') ADVANCE(251); + if (lookahead == '#') ADVANCE(255); + if (lookahead == '/') ADVANCE(256); + if (lookahead == '\\') ADVANCE(126); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(249); - if (lookahead != 0) ADVANCE(249); + lookahead == ' ') ADVANCE(254); + if (lookahead != 0) ADVANCE(254); END_STATE(); case 72: - if (lookahead == '#') ADVANCE(219); - if (lookahead == '\\') ADVANCE(128); + if (lookahead == '#') ADVANCE(252); + if (lookahead == '\\') ADVANCE(130); + if (lookahead == '`') ADVANCE(253); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(219); - if (lookahead != 0) ADVANCE(219); + lookahead == ' ') ADVANCE(251); + if (lookahead != 0) ADVANCE(251); END_STATE(); case 73: - if (lookahead == '&') ADVANCE(351); - if (lookahead == '*') ADVANCE(324); + if (lookahead == '#') ADVANCE(221); + if (lookahead == '\\') ADVANCE(129); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(221); + if (lookahead != 0) ADVANCE(221); END_STATE(); case 74: - if (lookahead == '&') ADVANCE(352); - if (lookahead == '*') ADVANCE(325); - if (lookahead == '+') ADVANCE(115); - if (lookahead == '-') ADVANCE(116); - if (lookahead == '=') ADVANCE(365); + if (lookahead == '&') ADVANCE(353); + if (lookahead == '*') ADVANCE(326); END_STATE(); case 75: - if (lookahead == '&') ADVANCE(113); - if (lookahead == '*') ADVANCE(114); - if (lookahead == '+') ADVANCE(115); - if (lookahead == '-') ADVANCE(116); - if (lookahead == '=') ADVANCE(365); + if (lookahead == '&') ADVANCE(354); + if (lookahead == '*') ADVANCE(327); + if (lookahead == '+') ADVANCE(116); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '=') ADVANCE(367); END_STATE(); case 76: - if (lookahead == '(') ADVANCE(378); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(76); + if (lookahead == '&') ADVANCE(114); + if (lookahead == '*') ADVANCE(115); + if (lookahead == '+') ADVANCE(116); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '=') ADVANCE(367); END_STATE(); case 77: - if (lookahead == '*') ADVANCE(117); - if (lookahead == '=') ADVANCE(359); + if (lookahead == '(') ADVANCE(380); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(77); END_STATE(); case 78: - if (lookahead == '+') ADVANCE(155); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '=') ADVANCE(361); END_STATE(); case 79: - if (lookahead == '/') ADVANCE(118); - if (lookahead == '=') ADVANCE(361); + if (lookahead == '+') ADVANCE(156); END_STATE(); case 80: - if (lookahead == '1') ADVANCE(84); - if (lookahead == '3') ADVANCE(82); - if (lookahead == '6') ADVANCE(90); - if (lookahead == '8') ADVANCE(194); + if (lookahead == '/') ADVANCE(119); + if (lookahead == '=') ADVANCE(363); END_STATE(); case 81: - if (lookahead == '1') ADVANCE(87); - if (lookahead == '3') ADVANCE(85); - if (lookahead == '6') ADVANCE(92); - if (lookahead == '8') ADVANCE(202); + if (lookahead == '1') ADVANCE(85); + if (lookahead == '3') ADVANCE(83); + if (lookahead == '6') ADVANCE(91); + if (lookahead == '8') ADVANCE(196); END_STATE(); case 82: - if (lookahead == '2') ADVANCE(194); + if (lookahead == '1') ADVANCE(88); + if (lookahead == '3') ADVANCE(86); + if (lookahead == '6') ADVANCE(93); + if (lookahead == '8') ADVANCE(204); END_STATE(); case 83: - if (lookahead == '2') ADVANCE(210); + if (lookahead == '2') ADVANCE(196); END_STATE(); case 84: - if (lookahead == '2') ADVANCE(94); - if (lookahead == '6') ADVANCE(194); + if (lookahead == '2') ADVANCE(212); END_STATE(); case 85: - if (lookahead == '2') ADVANCE(202); + if (lookahead == '2') ADVANCE(95); + if (lookahead == '6') ADVANCE(196); END_STATE(); case 86: - if (lookahead == '2') ADVANCE(214); + if (lookahead == '2') ADVANCE(204); END_STATE(); case 87: - if (lookahead == '2') ADVANCE(95); - if (lookahead == '6') ADVANCE(202); + if (lookahead == '2') ADVANCE(216); END_STATE(); case 88: - if (lookahead == '3') ADVANCE(83); - if (lookahead == '6') ADVANCE(91); + if (lookahead == '2') ADVANCE(96); + if (lookahead == '6') ADVANCE(204); END_STATE(); case 89: - if (lookahead == '3') ADVANCE(86); - if (lookahead == '6') ADVANCE(93); + if (lookahead == '3') ADVANCE(84); + if (lookahead == '6') ADVANCE(92); END_STATE(); case 90: - if (lookahead == '4') ADVANCE(194); + if (lookahead == '3') ADVANCE(87); + if (lookahead == '6') ADVANCE(94); END_STATE(); case 91: - if (lookahead == '4') ADVANCE(210); + if (lookahead == '4') ADVANCE(196); END_STATE(); case 92: - if (lookahead == '4') ADVANCE(202); + if (lookahead == '4') ADVANCE(212); END_STATE(); case 93: - if (lookahead == '4') ADVANCE(214); + if (lookahead == '4') ADVANCE(204); END_STATE(); case 94: - if (lookahead == '8') ADVANCE(194); + if (lookahead == '4') ADVANCE(216); END_STATE(); case 95: - if (lookahead == '8') ADVANCE(202); + if (lookahead == '8') ADVANCE(196); END_STATE(); case 96: - if (lookahead == ':') ADVANCE(328); + if (lookahead == '8') ADVANCE(204); END_STATE(); case 97: - if (lookahead == ':') ADVANCE(328); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(284); + if (lookahead == ':') ADVANCE(330); END_STATE(); case 98: - if (lookahead == ':') ADVANCE(328); + if (lookahead == ':') ADVANCE(330); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(273); + lookahead == ' ') ADVANCE(286); END_STATE(); case 99: - if (lookahead == '<') ADVANCE(106); + if (lookahead == ':') ADVANCE(330); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(275); END_STATE(); case 100: - if (lookahead == '=') ADVANCE(307); - if (lookahead == '~') ADVANCE(320); + if (lookahead == '<') ADVANCE(107); END_STATE(); case 101: - if (lookahead == '=') ADVANCE(306); - if (lookahead == '>') ADVANCE(269); - if (lookahead == '~') ADVANCE(321); + if (lookahead == '=') ADVANCE(309); + if (lookahead == '~') ADVANCE(322); END_STATE(); case 102: - if (lookahead == '=') ADVANCE(306); - if (lookahead == '~') ADVANCE(321); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '~') ADVANCE(323); END_STATE(); case 103: - if (lookahead == '=') ADVANCE(366); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '~') ADVANCE(323); END_STATE(); case 104: - if (lookahead == '=') ADVANCE(364); - if (lookahead == '|') ADVANCE(108); + if (lookahead == '=') ADVANCE(368); END_STATE(); case 105: - if (lookahead == '=') ADVANCE(238); - if (lookahead == '~') ADVANCE(233); + if (lookahead == '=') ADVANCE(366); + if (lookahead == '|') ADVANCE(109); END_STATE(); case 106: - if (lookahead == '=') ADVANCE(368); + if (lookahead == '=') ADVANCE(240); + if (lookahead == '~') ADVANCE(235); END_STATE(); case 107: - if (lookahead == '=') ADVANCE(369); + if (lookahead == '=') ADVANCE(370); END_STATE(); case 108: - if (lookahead == '=') ADVANCE(370); + if (lookahead == '=') ADVANCE(371); END_STATE(); case 109: - if (lookahead == '=') ADVANCE(363); + if (lookahead == '=') ADVANCE(372); END_STATE(); case 110: - if (lookahead == '=') ADVANCE(355); + if (lookahead == '=') ADVANCE(365); END_STATE(); case 111: if (lookahead == '=') ADVANCE(357); END_STATE(); case 112: - if (lookahead == '=') ADVANCE(357); - if (lookahead == '>') ADVANCE(272); + if (lookahead == '=') ADVANCE(359); END_STATE(); case 113: - if (lookahead == '=') ADVANCE(371); + if (lookahead == '=') ADVANCE(359); + if (lookahead == '>') ADVANCE(274); END_STATE(); case 114: - if (lookahead == '=') ADVANCE(360); + if (lookahead == '=') ADVANCE(373); END_STATE(); case 115: - if (lookahead == '=') ADVANCE(356); + if (lookahead == '=') ADVANCE(362); END_STATE(); case 116: if (lookahead == '=') ADVANCE(358); END_STATE(); case 117: - if (lookahead == '=') ADVANCE(367); + if (lookahead == '=') ADVANCE(360); END_STATE(); case 118: - if (lookahead == '=') ADVANCE(362); + if (lookahead == '=') ADVANCE(369); END_STATE(); case 119: - if (lookahead == '>') ADVANCE(272); + if (lookahead == '=') ADVANCE(364); END_STATE(); case 120: - if (lookahead == '>') ADVANCE(107); + if (lookahead == '>') ADVANCE(274); END_STATE(); case 121: - if (lookahead == '@') ADVANCE(165); - if (lookahead == '[') ADVANCE(276); + if (lookahead == '>') ADVANCE(108); END_STATE(); case 122: - if (lookahead == '@') ADVANCE(165); - if (lookahead == '[') ADVANCE(276); - if (lookahead > '^' && - lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(343); + if (lookahead == '@') ADVANCE(166); + if (lookahead == '[') ADVANCE(278); END_STATE(); case 123: - if (lookahead == '@') ADVANCE(165); + if (lookahead == '@') ADVANCE(166); + if (lookahead == '[') ADVANCE(278); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(343); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(345); END_STATE(); case 124: - if (lookahead == 'N') ADVANCE(224); - if (lookahead == 'c') ADVANCE(226); - if (lookahead == 'o') ADVANCE(225); - if (lookahead == 'x') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); + if (lookahead == '@') ADVANCE(166); + if (lookahead > '^' && + lookahead != '`' && + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(345); + END_STATE(); + case 125: + if (lookahead == 'N') ADVANCE(226); + if (lookahead == 'c') ADVANCE(228); + if (lookahead == 'o') ADVANCE(227); + if (lookahead == 'x') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(260); if ((set_contains(sym_string_escape_sequence_character_set_1, 10, lookahead)) && lookahead != 'b' && lookahead != 'u' && - lookahead != 'v') ADVANCE(256); + lookahead != 'v') ADVANCE(258); if (lookahead == '8' || lookahead == '9' || ('A' <= lookahead && lookahead <= 'Z') || ('d' <= lookahead && lookahead <= 's') || - ('w' <= lookahead && lookahead <= 'z')) ADVANCE(223); + ('w' <= lookahead && lookahead <= 'z')) ADVANCE(225); if (lookahead != 0 && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(223); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(225); END_STATE(); - case 125: - if (lookahead == 'N') ADVANCE(262); - if (lookahead == 'P') ADVANCE(132); - if (lookahead == 'c') ADVANCE(163); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == 'p') ADVANCE(132); - if (lookahead == 'x') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); - if (set_contains(sym_regex_special_match_character_set_1, 10, lookahead)) ADVANCE(263); - if (set_contains(sym_regex_character_class_character_set_1, 11, lookahead)) ADVANCE(261); + case 126: + if (lookahead == 'N') ADVANCE(264); + if (lookahead == 'P') ADVANCE(133); + if (lookahead == 'c') ADVANCE(164); + if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'p') ADVANCE(133); + if (lookahead == 'x') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(260); + if (set_contains(sym_regex_special_match_character_set_1, 10, lookahead)) ADVANCE(265); + if (set_contains(sym_regex_character_class_character_set_1, 11, lookahead)) ADVANCE(263); if (lookahead != 0 && (lookahead < '0' || '9' < lookahead) && (lookahead < 'A' || 'Z' < lookahead) && (lookahead < 'g' || 'm' < lookahead) && (lookahead < 'o' || 'q' < lookahead) && - (lookahead < 'u' || 'z' < lookahead)) ADVANCE(256); - END_STATE(); - case 126: - if (lookahead == 'U') ADVANCE(78); + (lookahead < 'u' || 'z' < lookahead)) ADVANCE(258); END_STATE(); case 127: - if (lookahead == ']') ADVANCE(240); + if (lookahead == 'U') ADVANCE(79); END_STATE(); case 128: - ADVANCE_MAP( - 'u', 135, - '\'', 221, - '0', 221, - '\\', 221, - 'a', 221, - 'b', 221, - 'e', 221, - 'f', 221, - 'n', 221, - 'r', 221, - 't', 221, - 'v', 221, - ); + if (lookahead == ']') ADVANCE(242); END_STATE(); case 129: - if (lookahead == 'u') ADVANCE(136); - if (lookahead == 'x') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(229); - if (set_contains(sym_string_escape_sequence_character_set_1, 10, lookahead)) ADVANCE(227); - if (lookahead != 0) ADVANCE(223); + ADVANCE_MAP( + 'u', 136, + '\'', 223, + '0', 223, + '\\', 223, + 'a', 223, + 'b', 223, + 'e', 223, + 'f', 223, + 'n', 223, + 'r', 223, + 't', 223, + 'v', 223, + ); END_STATE(); case 130: - if (lookahead == '{') ADVANCE(147); + if (lookahead == 'u') ADVANCE(137); + if (lookahead == 'x') ADVANCE(160); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(231); + if (set_contains(sym_string_escape_sequence_character_set_1, 10, lookahead)) ADVANCE(229); + if (lookahead != 0) ADVANCE(225); END_STATE(); case 131: - if (lookahead == '{') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); + if (lookahead == '{') ADVANCE(148); END_STATE(); case 132: - if (lookahead == '{') ADVANCE(162); - END_STATE(); - case 133: if (lookahead == '{') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(259); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); + END_STATE(); + case 133: + if (lookahead == '{') ADVANCE(163); END_STATE(); case 134: - if (lookahead == '{') ADVANCE(155); + if (lookahead == '{') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(260); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(261); END_STATE(); case 135: - if (lookahead == '{') ADVANCE(157); + if (lookahead == '{') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(262); END_STATE(); case 136: - if (lookahead == '{') ADVANCE(156); + if (lookahead == '{') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); END_STATE(); case 137: - if (lookahead == '}') ADVANCE(221); - END_STATE(); - case 138: - if (lookahead == '}') ADVANCE(221); + if (lookahead == '{') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); + END_STATE(); + case 138: + if (lookahead == '}') ADVANCE(223); END_STATE(); case 139: - if (lookahead == '}') ADVANCE(221); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); END_STATE(); case 140: - if (lookahead == '}') ADVANCE(221); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); END_STATE(); case 141: - if (lookahead == '}') ADVANCE(221); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); END_STATE(); case 142: - if (lookahead == '}') ADVANCE(221); + if (lookahead == '}') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); case 143: - if (lookahead == '}') ADVANCE(256); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (lookahead == '}') ADVANCE(223); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); END_STATE(); case 144: - if (lookahead == '}') ADVANCE(256); + if (lookahead == '}') ADVANCE(258); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(144); + END_STATE(); + case 145: + if (lookahead == '}') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(145); END_STATE(); - case 145: - if (lookahead == '}') ADVANCE(261); + case 146: + if (lookahead == '}') ADVANCE(263); if (lookahead == ' ' || lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); - END_STATE(); - case 146: - if (lookahead == '?' || - lookahead == '~') ADVANCE(329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(331); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); END_STATE(); case 147: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(143); + if (lookahead == '?' || + lookahead == '~') ADVANCE(331); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); END_STATE(); case 148: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(144); END_STATE(); case 149: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(216); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); case 150: - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(218); END_STATE(); case 151: if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(217); + lookahead == '_') ADVANCE(215); END_STATE(); case 152: if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); + lookahead == '_') ADVANCE(219); END_STATE(); case 153: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(229); END_STATE(); case 154: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(16); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(223); END_STATE(); case 155: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(16); END_STATE(); case 156: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(10); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(145); END_STATE(); case 157: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(10); END_STATE(); case 158: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(153); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 159: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(152); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); case 160: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(158); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(153); END_STATE(); case 161: if (('0' <= lookahead && lookahead <= '9') || @@ -19084,1716 +19171,1754 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); END_STATE(); case 162: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); + END_STATE(); + case 163: if (lookahead == ' ' || lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); - END_STATE(); - case 163: - if ((' ' <= lookahead && lookahead <= '~')) ADVANCE(256); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); END_STATE(); case 164: - if (lookahead > '^' && - lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(343); + if ((' ' <= lookahead && lookahead <= '~')) ADVANCE(258); END_STATE(); case 165: if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(344); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(345); END_STATE(); case 166: - if (eof) ADVANCE(188); - ADVANCE_MAP( - '!', 318, - '#', 192, - '$', 286, - '%', 293, - '&', 295, - '\'', 218, - '(', 190, - ')', 191, - '*', 290, - '+', 287, - ',', 266, - '-', 288, - '.', 275, - '/', 291, - '0', 203, - ':', 374, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, - '@', 122, - '[', 265, - '\\', 2, - ']', 268, - '^', 300, - '`', 248, - 'a', 337, - '|', 297, - '}', 231, - '~', 319, - '\t', 17, - ' ', 17, - ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(166); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + lookahead != '`' && + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(346); END_STATE(); case 167: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 348, - ')', 191, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 346, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, + '!', 320, + '#', 194, + '$', 288, + '%', 295, + '&', 297, + '\'', 220, + '(', 192, + ')', 193, + '*', 292, + '+', 289, + ',', 268, + '-', 290, + '.', 277, + '/', 293, + '0', 205, + ':', 376, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, '@', 123, - '[', 264, - ']', 267, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '}', 231, - '~', 319, + '[', 267, + '\\', 2, + ']', 270, + '^', 302, + '`', 250, + 'a', 339, + '|', 299, + '}', 233, + '~', 321, + '\t', 17, + ' ', 17, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(167); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 168: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 348, - ')', 191, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 374, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '}', 231, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 350, + ')', 193, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 348, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 269, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '}', 233, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + lookahead == ' ') SKIP(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 169: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '%', 109, - '&', 74, - '\'', 218, - '(', 190, - ')', 191, - '*', 77, - '+', 110, - ',', 266, - '-', 112, - '.', 275, - '/', 79, - '0', 203, - ':', 374, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 300, - '`', 248, - 'a', 338, - '|', 297, - '}', 231, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 350, + ')', 193, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 376, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 269, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '}', 233, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + lookahead == ' ') SKIP(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 170: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 348, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 203, - ':', 346, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '}', 231, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '%', 110, + '&', 75, + '\'', 220, + '(', 192, + ')', 193, + '*', 78, + '+', 111, + ',', 268, + '-', 113, + '.', 277, + '/', 80, + '0', 205, + ':', 376, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, + '@', 124, + '[', 266, + ']', 269, + '^', 302, + '`', 250, + 'a', 340, + '|', 299, + '}', 233, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + lookahead == ' ') SKIP(170); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 171: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 203, - ':', 374, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '}', 231, - '~', 319, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 350, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 205, + ':', 348, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 269, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '}', 233, + '~', 321, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 172: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 318, - '#', 193, - '$', 146, - '&', 73, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 203, - ':', 37, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 122, - '[', 264, - ']', 267, - '^', 299, - '`', 248, - 'a', 338, - '|', 298, - '}', 231, - '~', 319, - '\t', 29, - ' ', 29, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 205, + ':', 376, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 269, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '}', 233, + '~', 321, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(172); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(172); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 173: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 348, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - '0', 203, + '!', 320, + '#', 195, + '$', 147, + '&', 74, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 205, ':', 37, - ';', 189, - '<', 277, - '?', 349, - '@', 122, - '[', 264, - '`', 248, - 'a', 338, - '|', 296, - '}', 231, - '~', 319, - '\t', 43, - ' ', 43, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 123, + '[', 266, + ']', 269, + '^', 301, + '`', 250, + 'a', 340, + '|', 300, + '}', 233, + '~', 321, + '\t', 29, + ' ', 29, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(176); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(173); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 174: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '\'', 220, + '(', 350, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + '0', 205, ':', 37, - ';', 189, - '<', 277, - '=', 283, - '?', 349, - '@', 122, - '[', 264, - '\\', 2, - ']', 268, - '`', 248, - 'a', 338, - '|', 296, - '}', 231, - '~', 319, - '\t', 42, - ' ', 42, + ';', 191, + '<', 279, + '=', 282, + '?', 351, + '@', 123, + '[', 266, + '`', 250, + 'a', 340, + '|', 298, + '}', 233, + '~', 321, + '\t', 43, + ' ', 43, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(177); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 175: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + '0', 205, ':', 37, - ';', 189, - '<', 277, - '=', 283, - '?', 349, - '@', 122, - '[', 264, - '\\', 3, - ']', 268, - '`', 248, - 'a', 338, - '|', 296, - '}', 231, - '~', 319, + ';', 191, + '<', 279, + '=', 285, + '?', 351, + '@', 123, + '[', 266, + '\\', 2, + ']', 270, + '`', 250, + 'a', 340, + '|', 298, + '}', 233, + '~', 321, '\t', 42, ' ', 42, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(175); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 176: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 317, - '#', 193, - '$', 146, - '\'', 218, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - '0', 203, + '!', 319, + '#', 195, + '$', 147, + '\'', 220, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + '0', 205, ':', 37, - ';', 189, - '<', 277, - '?', 349, - '@', 122, - '[', 264, - '`', 248, - 'a', 338, - '|', 296, - '}', 231, - '~', 319, - '\t', 43, - ' ', 43, + ';', 191, + '<', 279, + '=', 285, + '?', 351, + '@', 123, + '[', 266, + '\\', 3, + ']', 270, + '`', 250, + 'a', 340, + '|', 298, + '}', 233, + '~', 321, + '\t', 42, + ' ', 42, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(176); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(204); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(175); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 177: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 100, - '#', 193, - '$', 285, - '&', 73, + '!', 319, + '#', 195, + '$', 147, '\'', 220, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, '0', 205, - ':', 375, - ';', 189, + ':', 37, + ';', 191, '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 122, - '[', 264, - ']', 267, - '^', 299, + '=', 282, + '?', 351, + '@', 123, + '[', 266, + '`', 250, + 'a', 340, '|', 298, - '}', 231, + '}', 233, + '~', 321, + '\t', 43, + ' ', 43, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(178); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(208); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(177); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && - lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); case 178: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 100, - '#', 193, - '$', 285, - '&', 73, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - '0', 205, - ':', 375, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 122, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, + '!', 101, + '#', 195, + '$', 287, + '&', 74, + '\'', 222, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 207, + ':', 377, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 123, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(178); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(208); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + lookahead == ' ') SKIP(179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(210); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 179: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 100, - '#', 193, - '%', 109, + '!', 101, + '#', 195, + '$', 287, '&', 74, - '(', 348, - ')', 191, - '*', 77, - '+', 110, - ',', 266, - '-', 111, - '.', 275, - '/', 79, - '0', 197, - ':', 372, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, - ']', 267, - '^', 300, - '|', 297, - '}', 231, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + '0', 207, + ':', 377, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '@', 123, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(200); + lookahead == ' ') SKIP(179); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(210); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 180: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 100, - '#', 193, - '%', 109, - '&', 74, - ')', 191, - '*', 77, - '+', 110, - ',', 266, - '-', 111, - '.', 275, - '/', 79, - ':', 372, - ';', 189, - '<', 278, - '=', 281, - '>', 309, - '?', 349, - ']', 267, - '^', 300, - '|', 297, - '}', 231, + '!', 101, + '#', 195, + '%', 110, + '&', 75, + '(', 350, + ')', 193, + '*', 78, + '+', 111, + ',', 268, + '-', 112, + '.', 277, + '/', 80, + '0', 199, + ':', 374, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, + ']', 269, + '^', 302, + '|', 299, + '}', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180); + lookahead == ' ') SKIP(181); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(202); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 181: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '(', 348, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 347, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, - '@', 123, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, - '\t', 54, - ' ', 54, + '!', 101, + '#', 195, + '%', 110, + '&', 75, + ')', 193, + '*', 78, + '+', 111, + ',', 268, + '-', 112, + '.', 277, + '/', 80, + ':', 374, + ';', 191, + '<', 280, + '=', 283, + '>', 311, + '?', 351, + ']', 269, + '^', 302, + '|', 299, + '}', 233, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(184); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(181); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 182: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '(', 190, - ')', 191, - '*', 290, - ',', 266, - '.', 275, - ':', 372, - ';', 189, - '<', 279, - '=', 101, - '>', 310, - '?', 349, - '@', 122, - ']', 267, - '^', 299, - '|', 298, - '}', 231, + '!', 101, + '#', 195, + '&', 74, + '(', 350, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 349, + ';', 191, + '<', 281, + '=', 283, + '>', 312, + '?', 351, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, + '\t', 55, + ' ', 55, ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(186); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 183: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - '(', 190, - ')', 191, - '*', 290, - ',', 266, - '.', 275, - ':', 345, - ';', 189, - '<', 279, - '=', 101, - '>', 310, - '?', 349, - '@', 122, - ']', 267, - '^', 299, - '|', 298, - '}', 231, + '!', 101, + '#', 195, + '&', 74, + '(', 192, + ')', 193, + '*', 292, + ',', 268, + '.', 277, + ':', 374, + ';', 191, + '<', 281, + '=', 102, + '>', 312, + '?', 351, + '@', 123, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182); + lookahead == ' ') SKIP(183); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 184: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '!', 100, - '#', 193, - '&', 73, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 275, - ':', 96, - ';', 189, - '<', 279, - '=', 281, - '>', 310, - '?', 349, + '!', 101, + '#', 195, + '&', 74, + '(', 192, + ')', 193, + '*', 292, + ',', 268, + '.', 277, + ':', 347, + ';', 191, + '<', 281, + '=', 102, + '>', 312, + '?', 351, '@', 123, - '[', 264, - ']', 267, - '^', 299, - '|', 298, - '}', 231, - '\t', 54, - ' ', 54, + ']', 269, + '^', 301, + '|', 300, + '}', 233, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(184); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(183); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 185: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '#', 193, - '$', 285, - '(', 190, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - ':', 96, - ';', 189, - '=', 283, - '?', 349, - '@', 122, - '[', 264, - ']', 267, - '|', 296, - '}', 231, - '\t', 64, - ' ', 64, + '!', 101, + '#', 195, + '&', 74, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 97, + ';', 191, + '<', 281, + '=', 284, + '>', 312, + '?', 351, + '@', 124, + '[', 266, + ']', 270, + '^', 301, + '|', 300, + '}', 233, + '\t', 50, + ' ', 50, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(185); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 186: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '#', 193, - '(', 348, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - ':', 347, - ';', 189, + '!', 101, + '#', 195, + '&', 74, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 277, + ':', 97, + ';', 191, + '<', 281, '=', 283, - '?', 349, - '@', 121, - '[', 264, - '|', 296, - '}', 231, - '\t', 68, - ' ', 68, + '>', 312, + '?', 351, + '[', 266, + ']', 269, + '^', 301, + '|', 300, + '}', 233, + '\t', 55, + ' ', 55, ); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(187); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(186); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 187: - if (eof) ADVANCE(188); + if (eof) ADVANCE(190); ADVANCE_MAP( - '#', 193, - ')', 191, - '*', 289, - ',', 266, - '-', 119, - '.', 274, - ':', 96, - ';', 189, - '=', 283, - '?', 349, - '@', 121, - '[', 264, - '|', 296, - '}', 231, - '\t', 68, - ' ', 68, + '#', 195, + '$', 287, + '(', 192, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + ':', 97, + ';', 191, + '=', 285, + '?', 351, + '@', 123, + '[', 266, + ']', 269, + '|', 298, + '}', 233, + '\t', 65, + ' ', 65, ); if (('\n' <= lookahead && lookahead <= '\r')) SKIP(187); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(327); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); if (lookahead > '^' && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 188: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(190); + ADVANCE_MAP( + '#', 195, + '(', 350, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + ':', 349, + ';', 191, + '=', 285, + '?', 351, + '@', 122, + '[', 266, + '|', 298, + '}', 233, + '\t', 69, + ' ', 69, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(189); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); + if (lookahead > '^' && + lookahead != '`' && + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_SEMI); + if (eof) ADVANCE(190); + ADVANCE_MAP( + '#', 195, + ')', 193, + '*', 291, + ',', 268, + '-', 120, + '.', 276, + ':', 97, + ';', 191, + '=', 285, + '?', 351, + '@', 122, + '[', 266, + '|', 298, + '}', 233, + '\t', 69, + ' ', 69, + ); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(189); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(329); + if (lookahead > '^' && + lookahead != '`' && + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 192: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 194: ACCEPT_TOKEN(sym_comment); - if (lookahead == '{') ADVANCE(230); + if (lookahead == '{') ADVANCE(232); if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); + lookahead != '\n') ADVANCE(195); END_STATE(); - case 193: + case 195: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); + lookahead != '\n') ADVANCE(195); END_STATE(); - case 194: + case 196: ACCEPT_TOKEN(aux_sym_integer_token1); END_STATE(); - case 195: + case 197: ACCEPT_TOKEN(aux_sym_integer_token1); ADVANCE_MAP( - '.', 148, - '_', 196, - 'b', 198, - 'f', 88, - 'i', 80, - 'o', 199, - 'u', 80, - 'x', 201, - 'E', 211, - 'e', 211, + '.', 149, + '_', 198, + 'b', 200, + 'f', 89, + 'i', 81, + 'o', 201, + 'u', 81, + 'x', 203, + 'E', 213, + 'e', 213, ); END_STATE(); - case 196: + case 198: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(148); - if (lookahead == 'f') ADVANCE(88); - if (lookahead == 'i') ADVANCE(80); - if (lookahead == 'u') ADVANCE(80); + if (lookahead == '.') ADVANCE(149); + if (lookahead == 'f') ADVANCE(89); + if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'u') ADVANCE(81); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(211); + lookahead == 'e') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(196); + lookahead == '_') ADVANCE(198); END_STATE(); - case 197: + case 199: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '_') ADVANCE(200); - if (lookahead == 'b') ADVANCE(198); - if (lookahead == 'i') ADVANCE(80); - if (lookahead == 'o') ADVANCE(199); - if (lookahead == 'u') ADVANCE(80); - if (lookahead == 'x') ADVANCE(201); + if (lookahead == '_') ADVANCE(202); + if (lookahead == 'b') ADVANCE(200); + if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'o') ADVANCE(201); + if (lookahead == 'u') ADVANCE(81); + if (lookahead == 'x') ADVANCE(203); END_STATE(); - case 198: + case 200: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'i') ADVANCE(80); - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'u') ADVANCE(81); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(198); + lookahead == '_') ADVANCE(200); END_STATE(); - case 199: + case 201: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'i') ADVANCE(80); - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'u') ADVANCE(81); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(199); + lookahead == '_') ADVANCE(201); END_STATE(); - case 200: + case 202: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'i') ADVANCE(80); - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'u') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(200); + lookahead == '_') ADVANCE(202); END_STATE(); - case 201: + case 203: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'i') ADVANCE(80); - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 'i') ADVANCE(81); + if (lookahead == 'u') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(201); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(203); END_STATE(); - case 202: + case 204: ACCEPT_TOKEN(aux_sym_integer_token2); END_STATE(); - case 203: + case 205: ACCEPT_TOKEN(aux_sym_integer_token2); ADVANCE_MAP( - '.', 149, - '_', 204, - 'b', 206, - 'f', 89, - 'i', 81, - 'o', 207, - 'u', 81, - 'x', 209, - 'E', 215, - 'e', 215, + '.', 150, + '_', 206, + 'b', 208, + 'f', 90, + 'i', 82, + 'o', 209, + 'u', 82, + 'x', 211, + 'E', 217, + 'e', 217, ); END_STATE(); - case 204: + case 206: ACCEPT_TOKEN(aux_sym_integer_token2); - if (lookahead == '.') ADVANCE(149); - if (lookahead == 'f') ADVANCE(89); - if (lookahead == 'i') ADVANCE(81); - if (lookahead == 'u') ADVANCE(81); + if (lookahead == '.') ADVANCE(150); + if (lookahead == 'f') ADVANCE(90); + if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'u') ADVANCE(82); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(215); + lookahead == 'e') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(204); + lookahead == '_') ADVANCE(206); END_STATE(); - case 205: + case 207: ACCEPT_TOKEN(aux_sym_integer_token2); - if (lookahead == '_') ADVANCE(208); - if (lookahead == 'b') ADVANCE(206); - if (lookahead == 'i') ADVANCE(81); - if (lookahead == 'o') ADVANCE(207); - if (lookahead == 'u') ADVANCE(81); - if (lookahead == 'x') ADVANCE(209); + if (lookahead == '_') ADVANCE(210); + if (lookahead == 'b') ADVANCE(208); + if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'o') ADVANCE(209); + if (lookahead == 'u') ADVANCE(82); + if (lookahead == 'x') ADVANCE(211); END_STATE(); - case 206: + case 208: ACCEPT_TOKEN(aux_sym_integer_token2); - if (lookahead == 'i') ADVANCE(81); - if (lookahead == 'u') ADVANCE(81); + if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'u') ADVANCE(82); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(206); + lookahead == '_') ADVANCE(208); END_STATE(); - case 207: + case 209: ACCEPT_TOKEN(aux_sym_integer_token2); - if (lookahead == 'i') ADVANCE(81); - if (lookahead == 'u') ADVANCE(81); + if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'u') ADVANCE(82); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(207); + lookahead == '_') ADVANCE(209); END_STATE(); - case 208: + case 210: ACCEPT_TOKEN(aux_sym_integer_token2); - if (lookahead == 'i') ADVANCE(81); - if (lookahead == 'u') ADVANCE(81); + if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'u') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(208); + lookahead == '_') ADVANCE(210); END_STATE(); - case 209: + case 211: ACCEPT_TOKEN(aux_sym_integer_token2); - if (lookahead == 'i') ADVANCE(81); - if (lookahead == 'u') ADVANCE(81); + if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'u') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); END_STATE(); - case 210: + case 212: ACCEPT_TOKEN(aux_sym_float_token1); END_STATE(); - case 211: + case 213: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == 'f') ADVANCE(88); + if (lookahead == 'f') ADVANCE(89); if (lookahead == '+' || - lookahead == '-') ADVANCE(150); + lookahead == '-') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(213); + lookahead == '_') ADVANCE(215); END_STATE(); - case 212: + case 214: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == 'f') ADVANCE(88); + if (lookahead == 'f') ADVANCE(89); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(211); + lookahead == 'e') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(212); + lookahead == '_') ADVANCE(214); END_STATE(); - case 213: + case 215: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == 'f') ADVANCE(88); + if (lookahead == 'f') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(213); + lookahead == '_') ADVANCE(215); END_STATE(); - case 214: + case 216: ACCEPT_TOKEN(aux_sym_float_token2); END_STATE(); - case 215: + case 217: ACCEPT_TOKEN(aux_sym_float_token2); - if (lookahead == 'f') ADVANCE(89); + if (lookahead == 'f') ADVANCE(90); if (lookahead == '+' || - lookahead == '-') ADVANCE(151); + lookahead == '-') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(217); + lookahead == '_') ADVANCE(219); END_STATE(); - case 216: + case 218: ACCEPT_TOKEN(aux_sym_float_token2); - if (lookahead == 'f') ADVANCE(89); + if (lookahead == 'f') ADVANCE(90); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(215); + lookahead == 'e') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(216); + lookahead == '_') ADVANCE(218); END_STATE(); - case 217: + case 219: ACCEPT_TOKEN(aux_sym_float_token2); - if (lookahead == 'f') ADVANCE(89); + if (lookahead == 'f') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(217); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 219: - ACCEPT_TOKEN(aux_sym_char_token1); + lookahead == '_') ADVANCE(219); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_SQUOTE2); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 221: - ACCEPT_TOKEN(sym_char_escape_sequence); + ACCEPT_TOKEN(aux_sym_char_token1); END_STATE(); case 222: - ACCEPT_TOKEN(sym_char_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(228); + ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); case 223: - ACCEPT_TOKEN(sym_ignored_backslash); + ACCEPT_TOKEN(sym_char_escape_sequence); END_STATE(); case 224: - ACCEPT_TOKEN(sym_ignored_backslash); - if (lookahead == '{') ADVANCE(126); + ACCEPT_TOKEN(sym_char_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(230); END_STATE(); case 225: ACCEPT_TOKEN(sym_ignored_backslash); - if (lookahead == '{') ADVANCE(147); END_STATE(); case 226: ACCEPT_TOKEN(sym_ignored_backslash); - if ((' ' <= lookahead && lookahead <= '~')) ADVANCE(256); + if (lookahead == '{') ADVANCE(127); END_STATE(); case 227: - ACCEPT_TOKEN(sym_string_escape_sequence); + ACCEPT_TOKEN(sym_ignored_backslash); + if (lookahead == '{') ADVANCE(148); END_STATE(); case 228: - ACCEPT_TOKEN(sym_string_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(227); + ACCEPT_TOKEN(sym_ignored_backslash); + if ((' ' <= lookahead && lookahead <= '~')) ADVANCE(258); END_STATE(); case 229: ACCEPT_TOKEN(sym_string_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(228); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_POUND_LBRACE); + ACCEPT_TOKEN(sym_string_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(229); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(sym_string_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(230); END_STATE(); case 232: - ACCEPT_TOKEN(aux_sym_percent_literal_array_word_token1); + ACCEPT_TOKEN(anon_sym_POUND_LBRACE); END_STATE(); case 233: - ACCEPT_TOKEN(sym_operator_symbol); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 234: - ACCEPT_TOKEN(sym_operator_symbol); - if (lookahead == '*') ADVANCE(235); - if (lookahead == '+' || - lookahead == '-') ADVANCE(233); + ACCEPT_TOKEN(aux_sym_percent_literal_array_word_token1); END_STATE(); case 235: ACCEPT_TOKEN(sym_operator_symbol); - if (lookahead == '*') ADVANCE(233); END_STATE(); case 236: ACCEPT_TOKEN(sym_operator_symbol); - if (lookahead == '/') ADVANCE(233); + if (lookahead == '*') ADVANCE(237); + if (lookahead == '+' || + lookahead == '-') ADVANCE(235); END_STATE(); case 237: ACCEPT_TOKEN(sym_operator_symbol); - if (lookahead == '<') ADVANCE(233); - if (lookahead == '=') ADVANCE(239); + if (lookahead == '*') ADVANCE(235); END_STATE(); case 238: ACCEPT_TOKEN(sym_operator_symbol); - if (lookahead == '=') ADVANCE(233); + if (lookahead == '/') ADVANCE(235); END_STATE(); case 239: ACCEPT_TOKEN(sym_operator_symbol); - if (lookahead == '>') ADVANCE(233); + if (lookahead == '<') ADVANCE(235); + if (lookahead == '=') ADVANCE(241); END_STATE(); case 240: ACCEPT_TOKEN(sym_operator_symbol); - if (lookahead == '=' || - lookahead == '?') ADVANCE(233); + if (lookahead == '=') ADVANCE(235); END_STATE(); case 241: ACCEPT_TOKEN(sym_operator_symbol); - if (lookahead == '=' || - lookahead == '~') ADVANCE(233); + if (lookahead == '>') ADVANCE(235); END_STATE(); case 242: ACCEPT_TOKEN(sym_operator_symbol); if (lookahead == '=' || - lookahead == '>') ADVANCE(233); + lookahead == '?') ADVANCE(235); END_STATE(); case 243: - ACCEPT_TOKEN(sym_unquoted_symbol); + ACCEPT_TOKEN(sym_operator_symbol); + if (lookahead == '=' || + lookahead == '~') ADVANCE(235); END_STATE(); case 244: + ACCEPT_TOKEN(sym_operator_symbol); + if (lookahead == '=' || + lookahead == '>') ADVANCE(235); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_unquoted_symbol); + END_STATE(); + case 246: ACCEPT_TOKEN(sym_unquoted_symbol); if (lookahead == '!' || lookahead == '=' || - lookahead == '?') ADVANCE(243); + lookahead == '?') ADVANCE(245); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(244); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(246); END_STATE(); - case 245: + case 247: ACCEPT_TOKEN(anon_sym_COLON_DQUOTE); END_STATE(); - case 246: + case 248: ACCEPT_TOKEN(aux_sym_quoted_symbol_token1); END_STATE(); - case 247: + case 249: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 248: + case 250: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 249: + case 251: ACCEPT_TOKEN(aux_sym_command_token1); END_STATE(); - case 250: + case 252: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '{') ADVANCE(230); + if (lookahead == '{') ADVANCE(232); END_STATE(); - case 251: + case 253: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 252: + case 254: ACCEPT_TOKEN(aux_sym_regex_token1); END_STATE(); - case 253: + case 255: ACCEPT_TOKEN(aux_sym_regex_token1); - if (lookahead == '{') ADVANCE(230); + if (lookahead == '{') ADVANCE(232); END_STATE(); - case 254: + case 256: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 255: + case 257: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(292); + if (lookahead == '/') ADVANCE(294); END_STATE(); - case 256: + case 258: ACCEPT_TOKEN(sym_regex_escape_sequence); END_STATE(); - case 257: + case 259: ACCEPT_TOKEN(sym_regex_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(256); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(258); END_STATE(); - case 258: + case 260: ACCEPT_TOKEN(sym_regex_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(257); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(259); END_STATE(); - case 259: + case 261: ACCEPT_TOKEN(sym_regex_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(229); END_STATE(); - case 260: + case 262: ACCEPT_TOKEN(sym_regex_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(256); - END_STATE(); - case 261: - ACCEPT_TOKEN(sym_regex_character_class); - END_STATE(); - case 262: - ACCEPT_TOKEN(sym_regex_character_class); - if (lookahead == '{') ADVANCE(126); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(258); END_STATE(); case 263: - ACCEPT_TOKEN(sym_regex_special_match); + ACCEPT_TOKEN(sym_regex_character_class); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_regex_character_class); + if (lookahead == '{') ADVANCE(127); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(314); + ACCEPT_TOKEN(sym_regex_special_match); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == ']') ADVANCE(316); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_RBRACK); - if (lookahead == '?') ADVANCE(350); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(271); + ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == '?') ADVANCE(352); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(273); END_STATE(); case 273: - ACCEPT_TOKEN(aux_sym_proc_token1); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 275: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(270); + ACCEPT_TOKEN(aux_sym_proc_token1); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_AT_LBRACK); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 277: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(272); END_STATE(); case 278: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(305); - if (lookahead == '=') ADVANCE(308); + ACCEPT_TOKEN(anon_sym_AT_LBRACK); END_STATE(); case 279: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '=') ADVANCE(308); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(307); + if (lookahead == '=') ADVANCE(310); END_STATE(); case 281: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(306); - if (lookahead == '>') ADVANCE(269); - if (lookahead == '~') ADVANCE(321); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(306); + if (lookahead == '=') ADVANCE(310); END_STATE(); case 282: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(306); - if (lookahead == '~') ADVANCE(321); END_STATE(); case 283: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(269); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '>') ADVANCE(271); + if (lookahead == '~') ADVANCE(323); END_STATE(); case 284: - ACCEPT_TOKEN(aux_sym_top_level_fun_def_token1); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(308); + if (lookahead == '~') ADVANCE(323); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(271); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '?' || - lookahead == '~') ADVANCE(329); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(331); + ACCEPT_TOKEN(aux_sym_top_level_fun_def_token1); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '?' || + lookahead == '~') ADVANCE(331); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(301); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(292); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(303); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(294); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '*') ADVANCE(324); - if (lookahead == '+') ADVANCE(322); - if (lookahead == '-') ADVANCE(323); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 296: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 297: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(364); - if (lookahead == '|') ADVANCE(354); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '*') ADVANCE(326); + if (lookahead == '+') ADVANCE(324); + if (lookahead == '-') ADVANCE(325); END_STATE(); case 298: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(353); END_STATE(); case 299: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(366); + if (lookahead == '|') ADVANCE(356); END_STATE(); case 300: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(366); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(355); END_STATE(); case 301: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(368); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(369); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(368); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(371); END_STATE(); case 306: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(313); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(370); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(312); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(315); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(311); - if (lookahead == '>') ADVANCE(303); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(311); - if (lookahead == '>') ADVANCE(302); + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '>') ADVANCE(314); END_STATE(); case 311: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(313); + if (lookahead == '>') ADVANCE(305); END_STATE(); case 312: - ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(313); + if (lookahead == '>') ADVANCE(304); END_STATE(); case 313: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 314: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); - if (lookahead == '=') ADVANCE(316); - if (lookahead == '?') ADVANCE(315); + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK_QMARK); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 316: - ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK_EQ); + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); + if (lookahead == '=') ADVANCE(318); + if (lookahead == '?') ADVANCE(317); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK_QMARK); END_STATE(); case 318: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(307); - if (lookahead == '~') ADVANCE(320); + ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK_EQ); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(309); + if (lookahead == '~') ADVANCE(322); END_STATE(); case 321: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_AMP_PLUS); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_AMP_DASH); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_AMP_STAR); - if (lookahead == '*') ADVANCE(326); + ACCEPT_TOKEN(anon_sym_AMP_PLUS); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_AMP_STAR); - if (lookahead == '*') ADVANCE(326); - if (lookahead == '=') ADVANCE(360); + ACCEPT_TOKEN(anon_sym_AMP_DASH); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_AMP_STAR_STAR); + ACCEPT_TOKEN(anon_sym_AMP_STAR); + if (lookahead == '*') ADVANCE(328); END_STATE(); case 327: + ACCEPT_TOKEN(anon_sym_AMP_STAR); + if (lookahead == '*') ADVANCE(328); + if (lookahead == '=') ADVANCE(362); + END_STATE(); + case 328: + ACCEPT_TOKEN(anon_sym_AMP_STAR_STAR); + END_STATE(); + case 329: ACCEPT_TOKEN(sym__constant_segment); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(327); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(329); END_STATE(); - case 328: + case 330: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 329: + case 331: ACCEPT_TOKEN(sym_special_variable); END_STATE(); - case 330: + case 332: ACCEPT_TOKEN(sym_global_match_data_index); END_STATE(); - case 331: + case 333: ACCEPT_TOKEN(sym_global_match_data_index); - if (lookahead == '?') ADVANCE(330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(331); + if (lookahead == '?') ADVANCE(332); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(333); END_STATE(); - case 332: + case 334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '(') ADVANCE(378); + if (lookahead == '(') ADVANCE(380); if (lookahead == '!' || - lookahead == '?') ADVANCE(341); + lookahead == '?') ADVANCE(343); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(76); + lookahead == ' ') ADVANCE(77); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); - case 333: + case 335: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '(') ADVANCE(378); + if (lookahead == '(') ADVANCE(380); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(76); + lookahead == ' ') ADVANCE(77); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); - case 334: + case 336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '=') ADVANCE(342); + if (lookahead == '=') ADVANCE(344); if (lookahead == '!' || - lookahead == '?') ADVANCE(341); + lookahead == '?') ADVANCE(343); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(334); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(336); END_STATE(); - case 335: + case 337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(333); + if (lookahead == 'm') ADVANCE(335); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); - case 336: + case 338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(332); + if (lookahead == 'm') ADVANCE(334); if (lookahead == '!' || - lookahead == '?') ADVANCE(341); + lookahead == '?') ADVANCE(343); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); - case 337: + case 339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(335); + if (lookahead == 's') ADVANCE(337); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); - case 338: + case 340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(336); + if (lookahead == 's') ADVANCE(338); if (lookahead == '!' || - lookahead == '?') ADVANCE(341); + lookahead == '?') ADVANCE(343); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); - case 339: + case 341: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!' || - lookahead == '?') ADVANCE(341); + lookahead == '?') ADVANCE(343); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(339); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(341); END_STATE(); - case 340: + case 342: ACCEPT_TOKEN(sym_identifier); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(340); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(342); END_STATE(); - case 341: + case 343: ACCEPT_TOKEN(sym_identifier_method_call); END_STATE(); - case 342: + case 344: ACCEPT_TOKEN(sym_identifier_assign); END_STATE(); - case 343: + case 345: ACCEPT_TOKEN(sym_instance_var); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(343); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(345); END_STATE(); - case 344: + case 346: ACCEPT_TOKEN(sym_class_var); if (lookahead > '/' && (lookahead < ':' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(344); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(346); END_STATE(); - case 345: + case 347: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 346: + case 348: ACCEPT_TOKEN(anon_sym_COLON); ADVANCE_MAP( - '!', 241, - '"', 245, - '&', 234, - '*', 235, - '/', 236, - ':', 328, - '<', 237, - '=', 105, - '>', 242, - '[', 127, - '%', 233, - '+', 233, - '-', 233, - '^', 233, - '|', 233, - '~', 233, + '!', 243, + '"', 247, + '&', 236, + '*', 237, + '/', 238, + ':', 330, + '<', 239, + '=', 106, + '>', 244, + '[', 128, + '%', 235, + '+', 235, + '-', 235, + '^', 235, + '|', 235, + '~', 235, ); if (lookahead > '@' && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(244); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(246); END_STATE(); - case 347: + case 349: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(328); + if (lookahead == ':') ADVANCE(330); END_STATE(); - case 348: + case 350: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 349: + case 351: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 350: + case 352: ACCEPT_TOKEN(anon_sym_RBRACK_QMARK); END_STATE(); - case 351: + case 353: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 352: + case 354: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(371); + if (lookahead == '=') ADVANCE(373); END_STATE(); - case 353: + case 355: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 354: + case 356: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(370); + if (lookahead == '=') ADVANCE(372); END_STATE(); - case 355: + case 357: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 356: + case 358: ACCEPT_TOKEN(anon_sym_AMP_PLUS_EQ); END_STATE(); - case 357: + case 359: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 358: + case 360: ACCEPT_TOKEN(anon_sym_AMP_DASH_EQ); END_STATE(); - case 359: + case 361: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 360: + case 362: ACCEPT_TOKEN(anon_sym_AMP_STAR_EQ); END_STATE(); - case 361: + case 363: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 362: + case 364: ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); - case 363: + case 365: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 364: + case 366: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 365: + case 367: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 366: + case 368: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 367: + case 369: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 368: + case 370: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 369: + case 371: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 370: + case 372: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 371: + case 373: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 372: + case 374: ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); - case 373: + case 375: ACCEPT_TOKEN(anon_sym_COLON2); ADVANCE_MAP( - '!', 241, - '"', 245, - '&', 234, - '*', 235, - '/', 236, - ':', 328, - '<', 237, - '=', 105, - '>', 242, - '[', 127, - '%', 233, - '+', 233, - '-', 233, - '^', 233, - '|', 233, - '~', 233, + '!', 243, + '"', 247, + '&', 236, + '*', 237, + '/', 238, + ':', 330, + '<', 239, + '=', 106, + '>', 244, + '[', 128, + '%', 235, + '+', 235, + '-', 235, + '^', 235, + '|', 235, + '~', 235, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(284); + lookahead == ' ') ADVANCE(286); if (lookahead > '@' && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(244); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(246); END_STATE(); - case 374: + case 376: ACCEPT_TOKEN(anon_sym_COLON2); ADVANCE_MAP( - '!', 241, - '"', 245, - '&', 234, - '*', 235, - '/', 236, - ':', 328, - '<', 237, - '=', 105, - '>', 242, - '[', 127, - '%', 233, - '+', 233, - '-', 233, - '^', 233, - '|', 233, - '~', 233, + '!', 243, + '"', 247, + '&', 236, + '*', 237, + '/', 238, + ':', 330, + '<', 239, + '=', 106, + '>', 244, + '[', 128, + '%', 235, + '+', 235, + '-', 235, + '^', 235, + '|', 235, + '~', 235, ); if (lookahead > '@' && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || 0x9f < lookahead)) ADVANCE(244); + (lookahead < '{' || 0x9f < lookahead)) ADVANCE(246); END_STATE(); - case 375: + case 377: ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(328); + if (lookahead == ':') ADVANCE(330); END_STATE(); - case 376: + case 378: ACCEPT_TOKEN(aux_sym_type_declaration_token1); END_STATE(); - case 377: + case 379: ACCEPT_TOKEN(anon_sym_COLON3); END_STATE(); - case 378: + case 380: ACCEPT_TOKEN(aux_sym_asm_token1); END_STATE(); default: @@ -21521,12354 +21646,12402 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 175, .external_lex_state = 2}, - [2] = {.lex_state = 172, .external_lex_state = 3}, - [3] = {.lex_state = 172, .external_lex_state = 3}, - [4] = {.lex_state = 172, .external_lex_state = 3}, - [5] = {.lex_state = 172, .external_lex_state = 3}, - [6] = {.lex_state = 172, .external_lex_state = 3}, - [7] = {.lex_state = 172, .external_lex_state = 3}, - [8] = {.lex_state = 167, .external_lex_state = 4}, - [9] = {.lex_state = 167, .external_lex_state = 4}, - [10] = {.lex_state = 168, .external_lex_state = 4}, - [11] = {.lex_state = 168, .external_lex_state = 4}, - [12] = {.lex_state = 168, .external_lex_state = 4}, - [13] = {.lex_state = 168, .external_lex_state = 4}, - [14] = {.lex_state = 167, .external_lex_state = 5}, - [15] = {.lex_state = 167, .external_lex_state = 5}, - [16] = {.lex_state = 168, .external_lex_state = 5}, - [17] = {.lex_state = 168, .external_lex_state = 5}, - [18] = {.lex_state = 168, .external_lex_state = 5}, - [19] = {.lex_state = 167, .external_lex_state = 6}, - [20] = {.lex_state = 167, .external_lex_state = 6}, - [21] = {.lex_state = 168, .external_lex_state = 5}, - [22] = {.lex_state = 167, .external_lex_state = 7}, - [23] = {.lex_state = 167, .external_lex_state = 7}, - [24] = {.lex_state = 168, .external_lex_state = 6}, - [25] = {.lex_state = 168, .external_lex_state = 7}, - [26] = {.lex_state = 168, .external_lex_state = 7}, - [27] = {.lex_state = 168, .external_lex_state = 7}, - [28] = {.lex_state = 168, .external_lex_state = 6}, - [29] = {.lex_state = 19, .external_lex_state = 4}, - [30] = {.lex_state = 168, .external_lex_state = 7}, - [31] = {.lex_state = 168, .external_lex_state = 6}, - [32] = {.lex_state = 167, .external_lex_state = 8}, - [33] = {.lex_state = 167, .external_lex_state = 8}, - [34] = {.lex_state = 20, .external_lex_state = 6}, + [1] = {.lex_state = 176, .external_lex_state = 2}, + [2] = {.lex_state = 173, .external_lex_state = 3}, + [3] = {.lex_state = 173, .external_lex_state = 3}, + [4] = {.lex_state = 173, .external_lex_state = 3}, + [5] = {.lex_state = 173, .external_lex_state = 3}, + [6] = {.lex_state = 173, .external_lex_state = 3}, + [7] = {.lex_state = 173, .external_lex_state = 3}, + [8] = {.lex_state = 168, .external_lex_state = 4}, + [9] = {.lex_state = 168, .external_lex_state = 4}, + [10] = {.lex_state = 169, .external_lex_state = 4}, + [11] = {.lex_state = 169, .external_lex_state = 4}, + [12] = {.lex_state = 169, .external_lex_state = 4}, + [13] = {.lex_state = 169, .external_lex_state = 4}, + [14] = {.lex_state = 168, .external_lex_state = 5}, + [15] = {.lex_state = 168, .external_lex_state = 5}, + [16] = {.lex_state = 169, .external_lex_state = 5}, + [17] = {.lex_state = 169, .external_lex_state = 5}, + [18] = {.lex_state = 169, .external_lex_state = 5}, + [19] = {.lex_state = 168, .external_lex_state = 6}, + [20] = {.lex_state = 169, .external_lex_state = 5}, + [21] = {.lex_state = 168, .external_lex_state = 6}, + [22] = {.lex_state = 168, .external_lex_state = 7}, + [23] = {.lex_state = 168, .external_lex_state = 7}, + [24] = {.lex_state = 169, .external_lex_state = 6}, + [25] = {.lex_state = 169, .external_lex_state = 7}, + [26] = {.lex_state = 169, .external_lex_state = 7}, + [27] = {.lex_state = 19, .external_lex_state = 4}, + [28] = {.lex_state = 169, .external_lex_state = 6}, + [29] = {.lex_state = 169, .external_lex_state = 7}, + [30] = {.lex_state = 169, .external_lex_state = 7}, + [31] = {.lex_state = 169, .external_lex_state = 6}, + [32] = {.lex_state = 168, .external_lex_state = 8}, + [33] = {.lex_state = 168, .external_lex_state = 8}, + [34] = {.lex_state = 169, .external_lex_state = 8}, [35] = {.lex_state = 20, .external_lex_state = 6}, - [36] = {.lex_state = 168, .external_lex_state = 8}, - [37] = {.lex_state = 168, .external_lex_state = 8}, + [36] = {.lex_state = 20, .external_lex_state = 6}, + [37] = {.lex_state = 169, .external_lex_state = 8}, [38] = {.lex_state = 21, .external_lex_state = 6}, - [39] = {.lex_state = 21, .external_lex_state = 6}, - [40] = {.lex_state = 167, .external_lex_state = 9}, - [41] = {.lex_state = 167, .external_lex_state = 9}, - [42] = {.lex_state = 167, .external_lex_state = 6}, - [43] = {.lex_state = 167, .external_lex_state = 6}, - [44] = {.lex_state = 168, .external_lex_state = 8}, - [45] = {.lex_state = 168, .external_lex_state = 9}, - [46] = {.lex_state = 168, .external_lex_state = 9}, - [47] = {.lex_state = 168, .external_lex_state = 9}, - [48] = {.lex_state = 168, .external_lex_state = 6}, - [49] = {.lex_state = 168, .external_lex_state = 6}, - [50] = {.lex_state = 168, .external_lex_state = 6}, - [51] = {.lex_state = 168, .external_lex_state = 6}, - [52] = {.lex_state = 168, .external_lex_state = 6}, - [53] = {.lex_state = 168, .external_lex_state = 6}, - [54] = {.lex_state = 168, .external_lex_state = 6}, - [55] = {.lex_state = 168, .external_lex_state = 6}, - [56] = {.lex_state = 168, .external_lex_state = 6}, - [57] = {.lex_state = 168, .external_lex_state = 6}, - [58] = {.lex_state = 168, .external_lex_state = 6}, - [59] = {.lex_state = 168, .external_lex_state = 6}, - [60] = {.lex_state = 168, .external_lex_state = 6}, - [61] = {.lex_state = 168, .external_lex_state = 6}, - [62] = {.lex_state = 168, .external_lex_state = 6}, - [63] = {.lex_state = 168, .external_lex_state = 6}, - [64] = {.lex_state = 168, .external_lex_state = 6}, - [65] = {.lex_state = 168, .external_lex_state = 6}, - [66] = {.lex_state = 168, .external_lex_state = 6}, - [67] = {.lex_state = 168, .external_lex_state = 6}, - [68] = {.lex_state = 168, .external_lex_state = 6}, - [69] = {.lex_state = 168, .external_lex_state = 6}, - [70] = {.lex_state = 168, .external_lex_state = 6}, - [71] = {.lex_state = 168, .external_lex_state = 6}, - [72] = {.lex_state = 168, .external_lex_state = 6}, - [73] = {.lex_state = 168, .external_lex_state = 6}, - [74] = {.lex_state = 168, .external_lex_state = 6}, - [75] = {.lex_state = 168, .external_lex_state = 6}, - [76] = {.lex_state = 168, .external_lex_state = 6}, - [77] = {.lex_state = 168, .external_lex_state = 6}, - [78] = {.lex_state = 168, .external_lex_state = 6}, - [79] = {.lex_state = 170, .external_lex_state = 4}, - [80] = {.lex_state = 170, .external_lex_state = 4}, - [81] = {.lex_state = 170, .external_lex_state = 4}, - [82] = {.lex_state = 170, .external_lex_state = 4}, - [83] = {.lex_state = 170, .external_lex_state = 4}, - [84] = {.lex_state = 170, .external_lex_state = 4}, - [85] = {.lex_state = 170, .external_lex_state = 4}, - [86] = {.lex_state = 170, .external_lex_state = 4}, - [87] = {.lex_state = 170, .external_lex_state = 4}, - [88] = {.lex_state = 170, .external_lex_state = 4}, - [89] = {.lex_state = 170, .external_lex_state = 4}, - [90] = {.lex_state = 170, .external_lex_state = 4}, - [91] = {.lex_state = 170, .external_lex_state = 4}, - [92] = {.lex_state = 170, .external_lex_state = 4}, - [93] = {.lex_state = 170, .external_lex_state = 5}, - [94] = {.lex_state = 170, .external_lex_state = 5}, - [95] = {.lex_state = 170, .external_lex_state = 5}, - [96] = {.lex_state = 170, .external_lex_state = 5}, - [97] = {.lex_state = 170, .external_lex_state = 5}, - [98] = {.lex_state = 170, .external_lex_state = 5}, - [99] = {.lex_state = 170, .external_lex_state = 5}, - [100] = {.lex_state = 170, .external_lex_state = 5}, - [101] = {.lex_state = 170, .external_lex_state = 5}, - [102] = {.lex_state = 170, .external_lex_state = 5}, - [103] = {.lex_state = 170, .external_lex_state = 10}, - [104] = {.lex_state = 170, .external_lex_state = 5}, - [105] = {.lex_state = 170, .external_lex_state = 7}, - [106] = {.lex_state = 170, .external_lex_state = 5}, - [107] = {.lex_state = 170, .external_lex_state = 6}, - [108] = {.lex_state = 170, .external_lex_state = 7}, - [109] = {.lex_state = 170, .external_lex_state = 6}, - [110] = {.lex_state = 170, .external_lex_state = 10}, - [111] = {.lex_state = 170, .external_lex_state = 5}, - [112] = {.lex_state = 170, .external_lex_state = 5}, - [113] = {.lex_state = 170, .external_lex_state = 7}, - [114] = {.lex_state = 170, .external_lex_state = 7}, - [115] = {.lex_state = 170, .external_lex_state = 6}, - [116] = {.lex_state = 170, .external_lex_state = 6}, - [117] = {.lex_state = 175, .external_lex_state = 11}, - [118] = {.lex_state = 175, .external_lex_state = 11}, - [119] = {.lex_state = 175, .external_lex_state = 11}, - [120] = {.lex_state = 175, .external_lex_state = 11}, - [121] = {.lex_state = 175, .external_lex_state = 11}, - [122] = {.lex_state = 170, .external_lex_state = 6}, - [123] = {.lex_state = 175, .external_lex_state = 11}, - [124] = {.lex_state = 170, .external_lex_state = 6}, - [125] = {.lex_state = 170, .external_lex_state = 6}, - [126] = {.lex_state = 170, .external_lex_state = 6}, - [127] = {.lex_state = 175, .external_lex_state = 11}, - [128] = {.lex_state = 170, .external_lex_state = 6}, - [129] = {.lex_state = 170, .external_lex_state = 7}, - [130] = {.lex_state = 175, .external_lex_state = 11}, - [131] = {.lex_state = 170, .external_lex_state = 6}, - [132] = {.lex_state = 175, .external_lex_state = 11}, - [133] = {.lex_state = 175, .external_lex_state = 11}, - [134] = {.lex_state = 175, .external_lex_state = 11}, - [135] = {.lex_state = 170, .external_lex_state = 7}, - [136] = {.lex_state = 170, .external_lex_state = 7}, - [137] = {.lex_state = 175, .external_lex_state = 11}, - [138] = {.lex_state = 170, .external_lex_state = 7}, - [139] = {.lex_state = 175, .external_lex_state = 11}, - [140] = {.lex_state = 170, .external_lex_state = 7}, - [141] = {.lex_state = 175, .external_lex_state = 11}, - [142] = {.lex_state = 170, .external_lex_state = 7}, - [143] = {.lex_state = 170, .external_lex_state = 12}, - [144] = {.lex_state = 170, .external_lex_state = 7}, - [145] = {.lex_state = 175, .external_lex_state = 11}, - [146] = {.lex_state = 175, .external_lex_state = 11}, - [147] = {.lex_state = 175, .external_lex_state = 13}, - [148] = {.lex_state = 175, .external_lex_state = 11}, - [149] = {.lex_state = 175, .external_lex_state = 11}, - [150] = {.lex_state = 175, .external_lex_state = 11}, - [151] = {.lex_state = 175, .external_lex_state = 13}, - [152] = {.lex_state = 175, .external_lex_state = 11}, - [153] = {.lex_state = 175, .external_lex_state = 11}, - [154] = {.lex_state = 175, .external_lex_state = 11}, - [155] = {.lex_state = 175, .external_lex_state = 13}, - [156] = {.lex_state = 175, .external_lex_state = 11}, - [157] = {.lex_state = 175, .external_lex_state = 11}, - [158] = {.lex_state = 175, .external_lex_state = 13}, - [159] = {.lex_state = 170, .external_lex_state = 7}, - [160] = {.lex_state = 170, .external_lex_state = 7}, - [161] = {.lex_state = 175, .external_lex_state = 13}, - [162] = {.lex_state = 175, .external_lex_state = 13}, - [163] = {.lex_state = 175, .external_lex_state = 13}, - [164] = {.lex_state = 175, .external_lex_state = 13}, - [165] = {.lex_state = 170, .external_lex_state = 12}, - [166] = {.lex_state = 175, .external_lex_state = 13}, - [167] = {.lex_state = 175, .external_lex_state = 13}, - [168] = {.lex_state = 175, .external_lex_state = 11}, - [169] = {.lex_state = 175, .external_lex_state = 11}, - [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 = 175, .external_lex_state = 13}, - [174] = {.lex_state = 175, .external_lex_state = 13}, - [175] = {.lex_state = 170, .external_lex_state = 7}, - [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 = 175, .external_lex_state = 13}, - [192] = {.lex_state = 175, .external_lex_state = 13}, - [193] = {.lex_state = 175, .external_lex_state = 13}, - [194] = {.lex_state = 175, .external_lex_state = 13}, - [195] = {.lex_state = 175, .external_lex_state = 13}, - [196] = {.lex_state = 175, .external_lex_state = 13}, - [197] = {.lex_state = 175, .external_lex_state = 13}, - [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 = 13}, - [203] = {.lex_state = 175, .external_lex_state = 13}, - [204] = {.lex_state = 175, .external_lex_state = 13}, - [205] = {.lex_state = 170, .external_lex_state = 6}, - [206] = {.lex_state = 175, .external_lex_state = 13}, - [207] = {.lex_state = 170, .external_lex_state = 6}, - [208] = {.lex_state = 170, .external_lex_state = 6}, - [209] = {.lex_state = 170, .external_lex_state = 6}, - [210] = {.lex_state = 175, .external_lex_state = 13}, - [211] = {.lex_state = 175, .external_lex_state = 13}, - [212] = {.lex_state = 175, .external_lex_state = 13}, - [213] = {.lex_state = 175, .external_lex_state = 13}, - [214] = {.lex_state = 175, .external_lex_state = 13}, - [215] = {.lex_state = 175, .external_lex_state = 13}, - [216] = {.lex_state = 170, .external_lex_state = 14}, - [217] = {.lex_state = 175, .external_lex_state = 13}, - [218] = {.lex_state = 175, .external_lex_state = 13}, - [219] = {.lex_state = 175, .external_lex_state = 13}, - [220] = {.lex_state = 175, .external_lex_state = 13}, - [221] = {.lex_state = 170, .external_lex_state = 14}, - [222] = {.lex_state = 175, .external_lex_state = 13}, - [223] = {.lex_state = 175, .external_lex_state = 13}, - [224] = {.lex_state = 175, .external_lex_state = 13}, - [225] = {.lex_state = 175, .external_lex_state = 2}, - [226] = {.lex_state = 175, .external_lex_state = 2}, - [227] = {.lex_state = 170, .external_lex_state = 8}, - [228] = {.lex_state = 170, .external_lex_state = 8}, - [229] = {.lex_state = 175, .external_lex_state = 2}, - [230] = {.lex_state = 25, .external_lex_state = 6}, - [231] = {.lex_state = 175, .external_lex_state = 2}, - [232] = {.lex_state = 170, .external_lex_state = 15}, - [233] = {.lex_state = 175, .external_lex_state = 2}, - [234] = {.lex_state = 170, .external_lex_state = 16}, - [235] = {.lex_state = 170, .external_lex_state = 17}, - [236] = {.lex_state = 175, .external_lex_state = 2}, - [237] = {.lex_state = 175, .external_lex_state = 2}, - [238] = {.lex_state = 175, .external_lex_state = 2}, - [239] = {.lex_state = 175, .external_lex_state = 2}, - [240] = {.lex_state = 175, .external_lex_state = 2}, - [241] = {.lex_state = 170, .external_lex_state = 16}, - [242] = {.lex_state = 25, .external_lex_state = 6}, - [243] = {.lex_state = 175, .external_lex_state = 2}, - [244] = {.lex_state = 170, .external_lex_state = 8}, - [245] = {.lex_state = 170, .external_lex_state = 8}, - [246] = {.lex_state = 170, .external_lex_state = 17}, - [247] = {.lex_state = 170, .external_lex_state = 15}, - [248] = {.lex_state = 175, .external_lex_state = 2}, - [249] = {.lex_state = 175, .external_lex_state = 2}, - [250] = {.lex_state = 170, .external_lex_state = 8}, - [251] = {.lex_state = 175, .external_lex_state = 2}, - [252] = {.lex_state = 175, .external_lex_state = 2}, - [253] = {.lex_state = 170, .external_lex_state = 8}, - [254] = {.lex_state = 175, .external_lex_state = 2}, - [255] = {.lex_state = 170, .external_lex_state = 8}, - [256] = {.lex_state = 170, .external_lex_state = 8}, - [257] = {.lex_state = 170, .external_lex_state = 8}, - [258] = {.lex_state = 170, .external_lex_state = 8}, - [259] = {.lex_state = 175, .external_lex_state = 2}, - [260] = {.lex_state = 25, .external_lex_state = 6}, + [39] = {.lex_state = 168, .external_lex_state = 9}, + [40] = {.lex_state = 168, .external_lex_state = 9}, + [41] = {.lex_state = 21, .external_lex_state = 6}, + [42] = {.lex_state = 168, .external_lex_state = 6}, + [43] = {.lex_state = 168, .external_lex_state = 6}, + [44] = {.lex_state = 169, .external_lex_state = 9}, + [45] = {.lex_state = 169, .external_lex_state = 8}, + [46] = {.lex_state = 169, .external_lex_state = 9}, + [47] = {.lex_state = 169, .external_lex_state = 9}, + [48] = {.lex_state = 169, .external_lex_state = 6}, + [49] = {.lex_state = 169, .external_lex_state = 6}, + [50] = {.lex_state = 169, .external_lex_state = 6}, + [51] = {.lex_state = 169, .external_lex_state = 6}, + [52] = {.lex_state = 169, .external_lex_state = 6}, + [53] = {.lex_state = 169, .external_lex_state = 6}, + [54] = {.lex_state = 169, .external_lex_state = 6}, + [55] = {.lex_state = 169, .external_lex_state = 6}, + [56] = {.lex_state = 169, .external_lex_state = 6}, + [57] = {.lex_state = 169, .external_lex_state = 6}, + [58] = {.lex_state = 169, .external_lex_state = 6}, + [59] = {.lex_state = 169, .external_lex_state = 6}, + [60] = {.lex_state = 169, .external_lex_state = 6}, + [61] = {.lex_state = 169, .external_lex_state = 6}, + [62] = {.lex_state = 169, .external_lex_state = 6}, + [63] = {.lex_state = 169, .external_lex_state = 6}, + [64] = {.lex_state = 169, .external_lex_state = 6}, + [65] = {.lex_state = 169, .external_lex_state = 6}, + [66] = {.lex_state = 169, .external_lex_state = 6}, + [67] = {.lex_state = 169, .external_lex_state = 6}, + [68] = {.lex_state = 169, .external_lex_state = 6}, + [69] = {.lex_state = 169, .external_lex_state = 6}, + [70] = {.lex_state = 169, .external_lex_state = 6}, + [71] = {.lex_state = 169, .external_lex_state = 6}, + [72] = {.lex_state = 169, .external_lex_state = 6}, + [73] = {.lex_state = 169, .external_lex_state = 6}, + [74] = {.lex_state = 169, .external_lex_state = 6}, + [75] = {.lex_state = 169, .external_lex_state = 6}, + [76] = {.lex_state = 169, .external_lex_state = 6}, + [77] = {.lex_state = 169, .external_lex_state = 6}, + [78] = {.lex_state = 169, .external_lex_state = 6}, + [79] = {.lex_state = 171, .external_lex_state = 4}, + [80] = {.lex_state = 171, .external_lex_state = 4}, + [81] = {.lex_state = 171, .external_lex_state = 4}, + [82] = {.lex_state = 171, .external_lex_state = 4}, + [83] = {.lex_state = 171, .external_lex_state = 4}, + [84] = {.lex_state = 171, .external_lex_state = 4}, + [85] = {.lex_state = 171, .external_lex_state = 4}, + [86] = {.lex_state = 171, .external_lex_state = 4}, + [87] = {.lex_state = 171, .external_lex_state = 4}, + [88] = {.lex_state = 171, .external_lex_state = 4}, + [89] = {.lex_state = 171, .external_lex_state = 4}, + [90] = {.lex_state = 171, .external_lex_state = 4}, + [91] = {.lex_state = 171, .external_lex_state = 4}, + [92] = {.lex_state = 171, .external_lex_state = 4}, + [93] = {.lex_state = 171, .external_lex_state = 5}, + [94] = {.lex_state = 171, .external_lex_state = 5}, + [95] = {.lex_state = 171, .external_lex_state = 5}, + [96] = {.lex_state = 171, .external_lex_state = 5}, + [97] = {.lex_state = 171, .external_lex_state = 5}, + [98] = {.lex_state = 171, .external_lex_state = 5}, + [99] = {.lex_state = 171, .external_lex_state = 5}, + [100] = {.lex_state = 171, .external_lex_state = 5}, + [101] = {.lex_state = 171, .external_lex_state = 5}, + [102] = {.lex_state = 171, .external_lex_state = 5}, + [103] = {.lex_state = 171, .external_lex_state = 5}, + [104] = {.lex_state = 171, .external_lex_state = 7}, + [105] = {.lex_state = 171, .external_lex_state = 5}, + [106] = {.lex_state = 171, .external_lex_state = 6}, + [107] = {.lex_state = 171, .external_lex_state = 7}, + [108] = {.lex_state = 171, .external_lex_state = 7}, + [109] = {.lex_state = 171, .external_lex_state = 10}, + [110] = {.lex_state = 171, .external_lex_state = 5}, + [111] = {.lex_state = 171, .external_lex_state = 6}, + [112] = {.lex_state = 171, .external_lex_state = 10}, + [113] = {.lex_state = 171, .external_lex_state = 6}, + [114] = {.lex_state = 171, .external_lex_state = 7}, + [115] = {.lex_state = 171, .external_lex_state = 5}, + [116] = {.lex_state = 171, .external_lex_state = 6}, + [117] = {.lex_state = 176, .external_lex_state = 11}, + [118] = {.lex_state = 176, .external_lex_state = 11}, + [119] = {.lex_state = 176, .external_lex_state = 11}, + [120] = {.lex_state = 176, .external_lex_state = 11}, + [121] = {.lex_state = 171, .external_lex_state = 7}, + [122] = {.lex_state = 176, .external_lex_state = 11}, + [123] = {.lex_state = 176, .external_lex_state = 11}, + [124] = {.lex_state = 171, .external_lex_state = 6}, + [125] = {.lex_state = 176, .external_lex_state = 11}, + [126] = {.lex_state = 171, .external_lex_state = 6}, + [127] = {.lex_state = 176, .external_lex_state = 11}, + [128] = {.lex_state = 176, .external_lex_state = 11}, + [129] = {.lex_state = 171, .external_lex_state = 6}, + [130] = {.lex_state = 176, .external_lex_state = 11}, + [131] = {.lex_state = 176, .external_lex_state = 11}, + [132] = {.lex_state = 171, .external_lex_state = 6}, + [133] = {.lex_state = 171, .external_lex_state = 7}, + [134] = {.lex_state = 176, .external_lex_state = 11}, + [135] = {.lex_state = 171, .external_lex_state = 6}, + [136] = {.lex_state = 171, .external_lex_state = 7}, + [137] = {.lex_state = 171, .external_lex_state = 7}, + [138] = {.lex_state = 171, .external_lex_state = 7}, + [139] = {.lex_state = 171, .external_lex_state = 6}, + [140] = {.lex_state = 176, .external_lex_state = 11}, + [141] = {.lex_state = 176, .external_lex_state = 11}, + [142] = {.lex_state = 171, .external_lex_state = 7}, + [143] = {.lex_state = 171, .external_lex_state = 7}, + [144] = {.lex_state = 176, .external_lex_state = 12}, + [145] = {.lex_state = 176, .external_lex_state = 12}, + [146] = {.lex_state = 171, .external_lex_state = 7}, + [147] = {.lex_state = 176, .external_lex_state = 12}, + [148] = {.lex_state = 176, .external_lex_state = 12}, + [149] = {.lex_state = 176, .external_lex_state = 12}, + [150] = {.lex_state = 176, .external_lex_state = 12}, + [151] = {.lex_state = 176, .external_lex_state = 11}, + [152] = {.lex_state = 176, .external_lex_state = 11}, + [153] = {.lex_state = 176, .external_lex_state = 12}, + [154] = {.lex_state = 176, .external_lex_state = 11}, + [155] = {.lex_state = 171, .external_lex_state = 6}, + [156] = {.lex_state = 176, .external_lex_state = 11}, + [157] = {.lex_state = 176, .external_lex_state = 12}, + [158] = {.lex_state = 176, .external_lex_state = 12}, + [159] = {.lex_state = 176, .external_lex_state = 12}, + [160] = {.lex_state = 171, .external_lex_state = 7}, + [161] = {.lex_state = 176, .external_lex_state = 11}, + [162] = {.lex_state = 176, .external_lex_state = 12}, + [163] = {.lex_state = 176, .external_lex_state = 12}, + [164] = {.lex_state = 176, .external_lex_state = 11}, + [165] = {.lex_state = 176, .external_lex_state = 11}, + [166] = {.lex_state = 176, .external_lex_state = 12}, + [167] = {.lex_state = 176, .external_lex_state = 12}, + [168] = {.lex_state = 171, .external_lex_state = 13}, + [169] = {.lex_state = 171, .external_lex_state = 7}, + [170] = {.lex_state = 176, .external_lex_state = 11}, + [171] = {.lex_state = 176, .external_lex_state = 11}, + [172] = {.lex_state = 176, .external_lex_state = 12}, + [173] = {.lex_state = 176, .external_lex_state = 11}, + [174] = {.lex_state = 176, .external_lex_state = 11}, + [175] = {.lex_state = 176, .external_lex_state = 12}, + [176] = {.lex_state = 176, .external_lex_state = 11}, + [177] = {.lex_state = 171, .external_lex_state = 13}, + [178] = {.lex_state = 176, .external_lex_state = 12}, + [179] = {.lex_state = 176, .external_lex_state = 12}, + [180] = {.lex_state = 176, .external_lex_state = 12}, + [181] = {.lex_state = 176, .external_lex_state = 12}, + [182] = {.lex_state = 176, .external_lex_state = 12}, + [183] = {.lex_state = 176, .external_lex_state = 12}, + [184] = {.lex_state = 176, .external_lex_state = 12}, + [185] = {.lex_state = 176, .external_lex_state = 12}, + [186] = {.lex_state = 176, .external_lex_state = 12}, + [187] = {.lex_state = 171, .external_lex_state = 6}, + [188] = {.lex_state = 176, .external_lex_state = 12}, + [189] = {.lex_state = 176, .external_lex_state = 12}, + [190] = {.lex_state = 176, .external_lex_state = 12}, + [191] = {.lex_state = 176, .external_lex_state = 12}, + [192] = {.lex_state = 176, .external_lex_state = 12}, + [193] = {.lex_state = 176, .external_lex_state = 12}, + [194] = {.lex_state = 176, .external_lex_state = 12}, + [195] = {.lex_state = 176, .external_lex_state = 12}, + [196] = {.lex_state = 176, .external_lex_state = 12}, + [197] = {.lex_state = 176, .external_lex_state = 12}, + [198] = {.lex_state = 176, .external_lex_state = 12}, + [199] = {.lex_state = 176, .external_lex_state = 12}, + [200] = {.lex_state = 176, .external_lex_state = 12}, + [201] = {.lex_state = 176, .external_lex_state = 12}, + [202] = {.lex_state = 176, .external_lex_state = 12}, + [203] = {.lex_state = 176, .external_lex_state = 12}, + [204] = {.lex_state = 176, .external_lex_state = 12}, + [205] = {.lex_state = 176, .external_lex_state = 12}, + [206] = {.lex_state = 176, .external_lex_state = 12}, + [207] = {.lex_state = 176, .external_lex_state = 12}, + [208] = {.lex_state = 171, .external_lex_state = 6}, + [209] = {.lex_state = 171, .external_lex_state = 6}, + [210] = {.lex_state = 176, .external_lex_state = 12}, + [211] = {.lex_state = 171, .external_lex_state = 14}, + [212] = {.lex_state = 176, .external_lex_state = 12}, + [213] = {.lex_state = 176, .external_lex_state = 12}, + [214] = {.lex_state = 176, .external_lex_state = 12}, + [215] = {.lex_state = 176, .external_lex_state = 12}, + [216] = {.lex_state = 176, .external_lex_state = 12}, + [217] = {.lex_state = 171, .external_lex_state = 14}, + [218] = {.lex_state = 176, .external_lex_state = 12}, + [219] = {.lex_state = 176, .external_lex_state = 12}, + [220] = {.lex_state = 176, .external_lex_state = 12}, + [221] = {.lex_state = 176, .external_lex_state = 12}, + [222] = {.lex_state = 176, .external_lex_state = 12}, + [223] = {.lex_state = 176, .external_lex_state = 12}, + [224] = {.lex_state = 176, .external_lex_state = 12}, + [225] = {.lex_state = 176, .external_lex_state = 2}, + [226] = {.lex_state = 171, .external_lex_state = 8}, + [227] = {.lex_state = 171, .external_lex_state = 8}, + [228] = {.lex_state = 176, .external_lex_state = 2}, + [229] = {.lex_state = 171, .external_lex_state = 8}, + [230] = {.lex_state = 171, .external_lex_state = 8}, + [231] = {.lex_state = 176, .external_lex_state = 2}, + [232] = {.lex_state = 171, .external_lex_state = 8}, + [233] = {.lex_state = 176, .external_lex_state = 2}, + [234] = {.lex_state = 176, .external_lex_state = 2}, + [235] = {.lex_state = 176, .external_lex_state = 2}, + [236] = {.lex_state = 176, .external_lex_state = 2}, + [237] = {.lex_state = 171, .external_lex_state = 15}, + [238] = {.lex_state = 176, .external_lex_state = 2}, + [239] = {.lex_state = 25, .external_lex_state = 6}, + [240] = {.lex_state = 171, .external_lex_state = 16}, + [241] = {.lex_state = 176, .external_lex_state = 2}, + [242] = {.lex_state = 176, .external_lex_state = 2}, + [243] = {.lex_state = 171, .external_lex_state = 8}, + [244] = {.lex_state = 176, .external_lex_state = 2}, + [245] = {.lex_state = 176, .external_lex_state = 2}, + [246] = {.lex_state = 176, .external_lex_state = 2}, + [247] = {.lex_state = 176, .external_lex_state = 2}, + [248] = {.lex_state = 171, .external_lex_state = 17}, + [249] = {.lex_state = 171, .external_lex_state = 16}, + [250] = {.lex_state = 176, .external_lex_state = 2}, + [251] = {.lex_state = 176, .external_lex_state = 2}, + [252] = {.lex_state = 25, .external_lex_state = 6}, + [253] = {.lex_state = 171, .external_lex_state = 17}, + [254] = {.lex_state = 25, .external_lex_state = 6}, + [255] = {.lex_state = 176, .external_lex_state = 2}, + [256] = {.lex_state = 171, .external_lex_state = 8}, + [257] = {.lex_state = 171, .external_lex_state = 8}, + [258] = {.lex_state = 171, .external_lex_state = 8}, + [259] = {.lex_state = 171, .external_lex_state = 8}, + [260] = {.lex_state = 171, .external_lex_state = 15}, [261] = {.lex_state = 25, .external_lex_state = 6}, [262] = {.lex_state = 25, .external_lex_state = 6}, - [263] = {.lex_state = 170, .external_lex_state = 6}, - [264] = {.lex_state = 25, .external_lex_state = 6}, - [265] = {.lex_state = 170, .external_lex_state = 9}, - [266] = {.lex_state = 25, .external_lex_state = 6}, - [267] = {.lex_state = 25, .external_lex_state = 6}, + [263] = {.lex_state = 26, .external_lex_state = 6}, + [264] = {.lex_state = 171, .external_lex_state = 9}, + [265] = {.lex_state = 171, .external_lex_state = 9}, + [266] = {.lex_state = 171, .external_lex_state = 8}, + [267] = {.lex_state = 171, .external_lex_state = 9}, [268] = {.lex_state = 25, .external_lex_state = 6}, - [269] = {.lex_state = 170, .external_lex_state = 6}, - [270] = {.lex_state = 25, .external_lex_state = 6}, - [271] = {.lex_state = 170, .external_lex_state = 9}, - [272] = {.lex_state = 170, .external_lex_state = 8}, - [273] = {.lex_state = 175, .external_lex_state = 2}, - [274] = {.lex_state = 170, .external_lex_state = 18}, - [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 = 26, .external_lex_state = 6}, - [279] = {.lex_state = 175, .external_lex_state = 13}, - [280] = {.lex_state = 26, .external_lex_state = 6}, - [281] = {.lex_state = 175, .external_lex_state = 2}, - [282] = {.lex_state = 175, .external_lex_state = 13}, - [283] = {.lex_state = 175, .external_lex_state = 2}, - [284] = {.lex_state = 26, .external_lex_state = 6}, - [285] = {.lex_state = 26, .external_lex_state = 6}, - [286] = {.lex_state = 175, .external_lex_state = 2}, - [287] = {.lex_state = 175, .external_lex_state = 2}, - [288] = {.lex_state = 175, .external_lex_state = 2}, - [289] = {.lex_state = 175, .external_lex_state = 2}, - [290] = {.lex_state = 170, .external_lex_state = 9}, - [291] = {.lex_state = 175, .external_lex_state = 2}, - [292] = {.lex_state = 175, .external_lex_state = 2}, - [293] = {.lex_state = 175, .external_lex_state = 2}, - [294] = {.lex_state = 170, .external_lex_state = 9}, - [295] = {.lex_state = 170, .external_lex_state = 9}, - [296] = {.lex_state = 175, .external_lex_state = 2}, - [297] = {.lex_state = 170, .external_lex_state = 18}, - [298] = {.lex_state = 175, .external_lex_state = 2}, - [299] = {.lex_state = 170, .external_lex_state = 19}, - [300] = {.lex_state = 170, .external_lex_state = 8}, - [301] = {.lex_state = 175, .external_lex_state = 13}, - [302] = {.lex_state = 170, .external_lex_state = 8}, - [303] = {.lex_state = 170, .external_lex_state = 9}, - [304] = {.lex_state = 170, .external_lex_state = 9}, - [305] = {.lex_state = 170, .external_lex_state = 9}, - [306] = {.lex_state = 170, .external_lex_state = 8}, - [307] = {.lex_state = 170, .external_lex_state = 19}, - [308] = {.lex_state = 26, .external_lex_state = 6}, - [309] = {.lex_state = 26, .external_lex_state = 6}, - [310] = {.lex_state = 26, .external_lex_state = 6}, + [269] = {.lex_state = 25, .external_lex_state = 6}, + [270] = {.lex_state = 171, .external_lex_state = 9}, + [271] = {.lex_state = 25, .external_lex_state = 6}, + [272] = {.lex_state = 25, .external_lex_state = 6}, + [273] = {.lex_state = 25, .external_lex_state = 6}, + [274] = {.lex_state = 171, .external_lex_state = 6}, + [275] = {.lex_state = 171, .external_lex_state = 6}, + [276] = {.lex_state = 26, .external_lex_state = 6}, + [277] = {.lex_state = 176, .external_lex_state = 2}, + [278] = {.lex_state = 171, .external_lex_state = 18}, + [279] = {.lex_state = 176, .external_lex_state = 2}, + [280] = {.lex_state = 176, .external_lex_state = 2}, + [281] = {.lex_state = 176, .external_lex_state = 12}, + [282] = {.lex_state = 176, .external_lex_state = 2}, + [283] = {.lex_state = 176, .external_lex_state = 2}, + [284] = {.lex_state = 176, .external_lex_state = 2}, + [285] = {.lex_state = 171, .external_lex_state = 19}, + [286] = {.lex_state = 171, .external_lex_state = 9}, + [287] = {.lex_state = 176, .external_lex_state = 12}, + [288] = {.lex_state = 171, .external_lex_state = 18}, + [289] = {.lex_state = 26, .external_lex_state = 6}, + [290] = {.lex_state = 26, .external_lex_state = 6}, + [291] = {.lex_state = 26, .external_lex_state = 6}, + [292] = {.lex_state = 176, .external_lex_state = 12}, + [293] = {.lex_state = 171, .external_lex_state = 9}, + [294] = {.lex_state = 176, .external_lex_state = 12}, + [295] = {.lex_state = 176, .external_lex_state = 2}, + [296] = {.lex_state = 176, .external_lex_state = 2}, + [297] = {.lex_state = 176, .external_lex_state = 2}, + [298] = {.lex_state = 171, .external_lex_state = 19}, + [299] = {.lex_state = 176, .external_lex_state = 2}, + [300] = {.lex_state = 26, .external_lex_state = 6}, + [301] = {.lex_state = 171, .external_lex_state = 8}, + [302] = {.lex_state = 171, .external_lex_state = 8}, + [303] = {.lex_state = 171, .external_lex_state = 8}, + [304] = {.lex_state = 171, .external_lex_state = 9}, + [305] = {.lex_state = 171, .external_lex_state = 9}, + [306] = {.lex_state = 171, .external_lex_state = 9}, + [307] = {.lex_state = 171, .external_lex_state = 9}, + [308] = {.lex_state = 176, .external_lex_state = 2}, + [309] = {.lex_state = 176, .external_lex_state = 2}, + [310] = {.lex_state = 176, .external_lex_state = 2}, [311] = {.lex_state = 26, .external_lex_state = 6}, - [312] = {.lex_state = 170, .external_lex_state = 9}, - [313] = {.lex_state = 170, .external_lex_state = 9}, - [314] = {.lex_state = 173, .external_lex_state = 2}, - [315] = {.lex_state = 173, .external_lex_state = 2}, - [316] = {.lex_state = 175, .external_lex_state = 13}, - [317] = {.lex_state = 175, .external_lex_state = 2}, - [318] = {.lex_state = 175, .external_lex_state = 2}, - [319] = {.lex_state = 175, .external_lex_state = 2}, - [320] = {.lex_state = 173, .external_lex_state = 2}, - [321] = {.lex_state = 173, .external_lex_state = 2}, - [322] = {.lex_state = 26, .external_lex_state = 6}, - [323] = {.lex_state = 173, .external_lex_state = 2}, - [324] = {.lex_state = 173, .external_lex_state = 2}, - [325] = {.lex_state = 175, .external_lex_state = 2}, - [326] = {.lex_state = 175, .external_lex_state = 2}, - [327] = {.lex_state = 175, .external_lex_state = 2}, - [328] = {.lex_state = 175, .external_lex_state = 13}, - [329] = {.lex_state = 173, .external_lex_state = 2}, - [330] = {.lex_state = 173, .external_lex_state = 2}, - [331] = {.lex_state = 173, .external_lex_state = 2}, - [332] = {.lex_state = 170, .external_lex_state = 9}, - [333] = {.lex_state = 173, .external_lex_state = 2}, - [334] = {.lex_state = 175, .external_lex_state = 2}, - [335] = {.lex_state = 175, .external_lex_state = 2}, - [336] = {.lex_state = 173, .external_lex_state = 2}, - [337] = {.lex_state = 173, .external_lex_state = 2}, - [338] = {.lex_state = 173, .external_lex_state = 2}, - [339] = {.lex_state = 175, .external_lex_state = 2}, - [340] = {.lex_state = 175, .external_lex_state = 2}, - [341] = {.lex_state = 170, .external_lex_state = 9}, - [342] = {.lex_state = 26, .external_lex_state = 6}, - [343] = {.lex_state = 173, .external_lex_state = 2}, - [344] = {.lex_state = 173, .external_lex_state = 2}, - [345] = {.lex_state = 26, .external_lex_state = 6}, - [346] = {.lex_state = 172, .external_lex_state = 20}, - [347] = {.lex_state = 175, .external_lex_state = 2}, - [348] = {.lex_state = 173, .external_lex_state = 2}, - [349] = {.lex_state = 170, .external_lex_state = 9}, - [350] = {.lex_state = 172, .external_lex_state = 20}, - [351] = {.lex_state = 173, .external_lex_state = 2}, - [352] = {.lex_state = 173, .external_lex_state = 2}, - [353] = {.lex_state = 26, .external_lex_state = 6}, - [354] = {.lex_state = 175, .external_lex_state = 2}, - [355] = {.lex_state = 173, .external_lex_state = 2}, - [356] = {.lex_state = 173, .external_lex_state = 2}, - [357] = {.lex_state = 173, .external_lex_state = 2}, - [358] = {.lex_state = 175, .external_lex_state = 2}, - [359] = {.lex_state = 173, .external_lex_state = 2}, - [360] = {.lex_state = 173, .external_lex_state = 2}, - [361] = {.lex_state = 175, .external_lex_state = 2}, - [362] = {.lex_state = 170, .external_lex_state = 9}, - [363] = {.lex_state = 173, .external_lex_state = 2}, - [364] = {.lex_state = 173, .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}, - [370] = {.lex_state = 175, .external_lex_state = 2}, - [371] = {.lex_state = 175, .external_lex_state = 2}, - [372] = {.lex_state = 175, .external_lex_state = 2}, - [373] = {.lex_state = 175, .external_lex_state = 2}, - [374] = {.lex_state = 173, .external_lex_state = 2}, - [375] = {.lex_state = 175, .external_lex_state = 2}, - [376] = {.lex_state = 173, .external_lex_state = 2}, - [377] = {.lex_state = 175, .external_lex_state = 2}, - [378] = {.lex_state = 175, .external_lex_state = 2}, - [379] = {.lex_state = 175, .external_lex_state = 2}, - [380] = {.lex_state = 175, .external_lex_state = 2}, - [381] = {.lex_state = 175, .external_lex_state = 2}, - [382] = {.lex_state = 173, .external_lex_state = 2}, - [383] = {.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 = 2}, - [387] = {.lex_state = 173, .external_lex_state = 2}, - [388] = {.lex_state = 175, .external_lex_state = 2}, - [389] = {.lex_state = 175, .external_lex_state = 2}, - [390] = {.lex_state = 175, .external_lex_state = 2}, - [391] = {.lex_state = 173, .external_lex_state = 2}, - [392] = {.lex_state = 173, .external_lex_state = 2}, - [393] = {.lex_state = 175, .external_lex_state = 2}, - [394] = {.lex_state = 173, .external_lex_state = 2}, - [395] = {.lex_state = 173, .external_lex_state = 2}, - [396] = {.lex_state = 173, .external_lex_state = 2}, - [397] = {.lex_state = 173, .external_lex_state = 2}, - [398] = {.lex_state = 175, .external_lex_state = 2}, - [399] = {.lex_state = 175, .external_lex_state = 2}, - [400] = {.lex_state = 173, .external_lex_state = 2}, - [401] = {.lex_state = 175, .external_lex_state = 2}, - [402] = {.lex_state = 175, .external_lex_state = 2}, - [403] = {.lex_state = 175, .external_lex_state = 2}, - [404] = {.lex_state = 175, .external_lex_state = 2}, - [405] = {.lex_state = 173, .external_lex_state = 2}, - [406] = {.lex_state = 175, .external_lex_state = 2}, - [407] = {.lex_state = 175, .external_lex_state = 2}, - [408] = {.lex_state = 173, .external_lex_state = 2}, - [409] = {.lex_state = 173, .external_lex_state = 2}, - [410] = {.lex_state = 173, .external_lex_state = 2}, - [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 = 173, .external_lex_state = 2}, - [415] = {.lex_state = 173, .external_lex_state = 2}, - [416] = {.lex_state = 175, .external_lex_state = 2}, - [417] = {.lex_state = 173, .external_lex_state = 2}, - [418] = {.lex_state = 173, .external_lex_state = 2}, - [419] = {.lex_state = 173, .external_lex_state = 2}, - [420] = {.lex_state = 173, .external_lex_state = 2}, - [421] = {.lex_state = 175, .external_lex_state = 2}, - [422] = {.lex_state = 175, .external_lex_state = 2}, - [423] = {.lex_state = 173, .external_lex_state = 2}, - [424] = {.lex_state = 175, .external_lex_state = 2}, - [425] = {.lex_state = 172, .external_lex_state = 21}, - [426] = {.lex_state = 175, .external_lex_state = 2}, - [427] = {.lex_state = 172, .external_lex_state = 21}, - [428] = {.lex_state = 175, .external_lex_state = 2}, - [429] = {.lex_state = 175, .external_lex_state = 2}, - [430] = {.lex_state = 175, .external_lex_state = 2}, - [431] = {.lex_state = 175, .external_lex_state = 2}, - [432] = {.lex_state = 175, .external_lex_state = 2}, - [433] = {.lex_state = 175, .external_lex_state = 22}, - [434] = {.lex_state = 175, .external_lex_state = 2}, - [435] = {.lex_state = 175, .external_lex_state = 2}, - [436] = {.lex_state = 175, .external_lex_state = 2}, - [437] = {.lex_state = 173, .external_lex_state = 2}, - [438] = {.lex_state = 175, .external_lex_state = 2}, - [439] = {.lex_state = 175, .external_lex_state = 2}, - [440] = {.lex_state = 173, .external_lex_state = 2}, - [441] = {.lex_state = 175, .external_lex_state = 2}, - [442] = {.lex_state = 175, .external_lex_state = 2}, - [443] = {.lex_state = 175, .external_lex_state = 2}, - [444] = {.lex_state = 175, .external_lex_state = 2}, - [445] = {.lex_state = 175, .external_lex_state = 2}, - [446] = {.lex_state = 173, .external_lex_state = 2}, - [447] = {.lex_state = 173, .external_lex_state = 2}, - [448] = {.lex_state = 173, .external_lex_state = 2}, - [449] = {.lex_state = 175, .external_lex_state = 2}, - [450] = {.lex_state = 173, .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}, - [454] = {.lex_state = 175, .external_lex_state = 2}, - [455] = {.lex_state = 175, .external_lex_state = 2}, - [456] = {.lex_state = 175, .external_lex_state = 2}, - [457] = {.lex_state = 175, .external_lex_state = 2}, - [458] = {.lex_state = 175, .external_lex_state = 2}, - [459] = {.lex_state = 175, .external_lex_state = 2}, - [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 = 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}, - [467] = {.lex_state = 175, .external_lex_state = 2}, - [468] = {.lex_state = 175, .external_lex_state = 22}, - [469] = {.lex_state = 175, .external_lex_state = 2}, - [470] = {.lex_state = 175, .external_lex_state = 2}, - [471] = {.lex_state = 175, .external_lex_state = 2}, - [472] = {.lex_state = 175, .external_lex_state = 2}, - [473] = {.lex_state = 175, .external_lex_state = 2}, - [474] = {.lex_state = 175, .external_lex_state = 2}, - [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 = 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 = 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 = 175, .external_lex_state = 2}, - [487] = {.lex_state = 175, .external_lex_state = 2}, - [488] = {.lex_state = 175, .external_lex_state = 2}, - [489] = {.lex_state = 175, .external_lex_state = 2}, - [490] = {.lex_state = 175, .external_lex_state = 2}, - [491] = {.lex_state = 175, .external_lex_state = 2}, - [492] = {.lex_state = 175, .external_lex_state = 2}, - [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}, - [497] = {.lex_state = 175, .external_lex_state = 2}, - [498] = {.lex_state = 175, .external_lex_state = 2}, - [499] = {.lex_state = 175, .external_lex_state = 2}, - [500] = {.lex_state = 175, .external_lex_state = 2}, - [501] = {.lex_state = 175, .external_lex_state = 2}, - [502] = {.lex_state = 175, .external_lex_state = 2}, - [503] = {.lex_state = 175, .external_lex_state = 2}, - [504] = {.lex_state = 175, .external_lex_state = 2}, - [505] = {.lex_state = 175, .external_lex_state = 2}, - [506] = {.lex_state = 175, .external_lex_state = 2}, - [507] = {.lex_state = 175, .external_lex_state = 2}, - [508] = {.lex_state = 175, .external_lex_state = 2}, - [509] = {.lex_state = 175, .external_lex_state = 2}, - [510] = {.lex_state = 175, .external_lex_state = 2}, - [511] = {.lex_state = 175, .external_lex_state = 2}, - [512] = {.lex_state = 175, .external_lex_state = 2}, - [513] = {.lex_state = 175, .external_lex_state = 2}, - [514] = {.lex_state = 175, .external_lex_state = 2}, - [515] = {.lex_state = 175, .external_lex_state = 2}, - [516] = {.lex_state = 175, .external_lex_state = 2}, - [517] = {.lex_state = 175, .external_lex_state = 2}, - [518] = {.lex_state = 175, .external_lex_state = 2}, - [519] = {.lex_state = 175, .external_lex_state = 2}, - [520] = {.lex_state = 175, .external_lex_state = 2}, - [521] = {.lex_state = 175, .external_lex_state = 2}, - [522] = {.lex_state = 175, .external_lex_state = 2}, - [523] = {.lex_state = 175, .external_lex_state = 2}, - [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 = 175, .external_lex_state = 2}, - [528] = {.lex_state = 175, .external_lex_state = 2}, - [529] = {.lex_state = 175, .external_lex_state = 2}, - [530] = {.lex_state = 175, .external_lex_state = 2}, - [531] = {.lex_state = 175, .external_lex_state = 2}, - [532] = {.lex_state = 175, .external_lex_state = 2}, - [533] = {.lex_state = 175, .external_lex_state = 2}, - [534] = {.lex_state = 175, .external_lex_state = 2}, - [535] = {.lex_state = 175, .external_lex_state = 2}, - [536] = {.lex_state = 175, .external_lex_state = 2}, - [537] = {.lex_state = 175, .external_lex_state = 2}, - [538] = {.lex_state = 175, .external_lex_state = 2}, - [539] = {.lex_state = 175, .external_lex_state = 2}, - [540] = {.lex_state = 175, .external_lex_state = 2}, - [541] = {.lex_state = 170, .external_lex_state = 23}, - [542] = {.lex_state = 175, .external_lex_state = 2}, - [543] = {.lex_state = 175, .external_lex_state = 2}, - [544] = {.lex_state = 175, .external_lex_state = 2}, - [545] = {.lex_state = 175, .external_lex_state = 2}, - [546] = {.lex_state = 175, .external_lex_state = 2}, - [547] = {.lex_state = 175, .external_lex_state = 2}, - [548] = {.lex_state = 175, .external_lex_state = 2}, - [549] = {.lex_state = 175, .external_lex_state = 2}, - [550] = {.lex_state = 175, .external_lex_state = 2}, - [551] = {.lex_state = 170, .external_lex_state = 23}, - [552] = {.lex_state = 175, .external_lex_state = 22}, - [553] = {.lex_state = 175, .external_lex_state = 2}, - [554] = {.lex_state = 172, .external_lex_state = 24}, - [555] = {.lex_state = 175, .external_lex_state = 2}, - [556] = {.lex_state = 175, .external_lex_state = 2}, - [557] = {.lex_state = 175, .external_lex_state = 2}, - [558] = {.lex_state = 175, .external_lex_state = 2}, - [559] = {.lex_state = 172, .external_lex_state = 24}, - [560] = {.lex_state = 175, .external_lex_state = 2}, - [561] = {.lex_state = 175, .external_lex_state = 2}, - [562] = {.lex_state = 175, .external_lex_state = 2}, - [563] = {.lex_state = 175, .external_lex_state = 2}, - [564] = {.lex_state = 175, .external_lex_state = 2}, + [312] = {.lex_state = 26, .external_lex_state = 6}, + [313] = {.lex_state = 26, .external_lex_state = 6}, + [314] = {.lex_state = 176, .external_lex_state = 2}, + [315] = {.lex_state = 171, .external_lex_state = 9}, + [316] = {.lex_state = 176, .external_lex_state = 2}, + [317] = {.lex_state = 174, .external_lex_state = 2}, + [318] = {.lex_state = 176, .external_lex_state = 2}, + [319] = {.lex_state = 176, .external_lex_state = 2}, + [320] = {.lex_state = 174, .external_lex_state = 2}, + [321] = {.lex_state = 176, .external_lex_state = 2}, + [322] = {.lex_state = 176, .external_lex_state = 12}, + [323] = {.lex_state = 174, .external_lex_state = 2}, + [324] = {.lex_state = 171, .external_lex_state = 9}, + [325] = {.lex_state = 174, .external_lex_state = 2}, + [326] = {.lex_state = 174, .external_lex_state = 2}, + [327] = {.lex_state = 174, .external_lex_state = 2}, + [328] = {.lex_state = 174, .external_lex_state = 2}, + [329] = {.lex_state = 174, .external_lex_state = 2}, + [330] = {.lex_state = 174, .external_lex_state = 2}, + [331] = {.lex_state = 176, .external_lex_state = 2}, + [332] = {.lex_state = 176, .external_lex_state = 12}, + [333] = {.lex_state = 174, .external_lex_state = 2}, + [334] = {.lex_state = 174, .external_lex_state = 2}, + [335] = {.lex_state = 173, .external_lex_state = 20}, + [336] = {.lex_state = 26, .external_lex_state = 6}, + [337] = {.lex_state = 176, .external_lex_state = 2}, + [338] = {.lex_state = 176, .external_lex_state = 2}, + [339] = {.lex_state = 174, .external_lex_state = 2}, + [340] = {.lex_state = 171, .external_lex_state = 9}, + [341] = {.lex_state = 174, .external_lex_state = 2}, + [342] = {.lex_state = 176, .external_lex_state = 2}, + [343] = {.lex_state = 174, .external_lex_state = 2}, + [344] = {.lex_state = 174, .external_lex_state = 2}, + [345] = {.lex_state = 174, .external_lex_state = 2}, + [346] = {.lex_state = 26, .external_lex_state = 6}, + [347] = {.lex_state = 173, .external_lex_state = 20}, + [348] = {.lex_state = 174, .external_lex_state = 2}, + [349] = {.lex_state = 176, .external_lex_state = 2}, + [350] = {.lex_state = 174, .external_lex_state = 2}, + [351] = {.lex_state = 171, .external_lex_state = 9}, + [352] = {.lex_state = 174, .external_lex_state = 2}, + [353] = {.lex_state = 174, .external_lex_state = 2}, + [354] = {.lex_state = 174, .external_lex_state = 2}, + [355] = {.lex_state = 174, .external_lex_state = 2}, + [356] = {.lex_state = 174, .external_lex_state = 2}, + [357] = {.lex_state = 176, .external_lex_state = 2}, + [358] = {.lex_state = 176, .external_lex_state = 2}, + [359] = {.lex_state = 174, .external_lex_state = 2}, + [360] = {.lex_state = 176, .external_lex_state = 2}, + [361] = {.lex_state = 176, .external_lex_state = 2}, + [362] = {.lex_state = 26, .external_lex_state = 6}, + [363] = {.lex_state = 176, .external_lex_state = 2}, + [364] = {.lex_state = 174, .external_lex_state = 2}, + [365] = {.lex_state = 176, .external_lex_state = 2}, + [366] = {.lex_state = 176, .external_lex_state = 2}, + [367] = {.lex_state = 176, .external_lex_state = 2}, + [368] = {.lex_state = 176, .external_lex_state = 2}, + [369] = {.lex_state = 174, .external_lex_state = 2}, + [370] = {.lex_state = 176, .external_lex_state = 2}, + [371] = {.lex_state = 176, .external_lex_state = 2}, + [372] = {.lex_state = 176, .external_lex_state = 2}, + [373] = {.lex_state = 176, .external_lex_state = 2}, + [374] = {.lex_state = 176, .external_lex_state = 2}, + [375] = {.lex_state = 174, .external_lex_state = 2}, + [376] = {.lex_state = 176, .external_lex_state = 2}, + [377] = {.lex_state = 174, .external_lex_state = 2}, + [378] = {.lex_state = 176, .external_lex_state = 2}, + [379] = {.lex_state = 173, .external_lex_state = 21}, + [380] = {.lex_state = 174, .external_lex_state = 2}, + [381] = {.lex_state = 174, .external_lex_state = 2}, + [382] = {.lex_state = 174, .external_lex_state = 2}, + [383] = {.lex_state = 176, .external_lex_state = 2}, + [384] = {.lex_state = 176, .external_lex_state = 2}, + [385] = {.lex_state = 176, .external_lex_state = 2}, + [386] = {.lex_state = 176, .external_lex_state = 2}, + [387] = {.lex_state = 174, .external_lex_state = 2}, + [388] = {.lex_state = 174, .external_lex_state = 2}, + [389] = {.lex_state = 176, .external_lex_state = 2}, + [390] = {.lex_state = 174, .external_lex_state = 2}, + [391] = {.lex_state = 174, .external_lex_state = 2}, + [392] = {.lex_state = 174, .external_lex_state = 2}, + [393] = {.lex_state = 174, .external_lex_state = 2}, + [394] = {.lex_state = 176, .external_lex_state = 2}, + [395] = {.lex_state = 173, .external_lex_state = 21}, + [396] = {.lex_state = 176, .external_lex_state = 2}, + [397] = {.lex_state = 176, .external_lex_state = 2}, + [398] = {.lex_state = 174, .external_lex_state = 2}, + [399] = {.lex_state = 176, .external_lex_state = 2}, + [400] = {.lex_state = 174, .external_lex_state = 2}, + [401] = {.lex_state = 176, .external_lex_state = 2}, + [402] = {.lex_state = 176, .external_lex_state = 2}, + [403] = {.lex_state = 176, .external_lex_state = 2}, + [404] = {.lex_state = 176, .external_lex_state = 2}, + [405] = {.lex_state = 176, .external_lex_state = 2}, + [406] = {.lex_state = 174, .external_lex_state = 2}, + [407] = {.lex_state = 176, .external_lex_state = 2}, + [408] = {.lex_state = 176, .external_lex_state = 2}, + [409] = {.lex_state = 176, .external_lex_state = 2}, + [410] = {.lex_state = 174, .external_lex_state = 2}, + [411] = {.lex_state = 174, .external_lex_state = 2}, + [412] = {.lex_state = 176, .external_lex_state = 2}, + [413] = {.lex_state = 176, .external_lex_state = 2}, + [414] = {.lex_state = 176, .external_lex_state = 2}, + [415] = {.lex_state = 176, .external_lex_state = 2}, + [416] = {.lex_state = 174, .external_lex_state = 2}, + [417] = {.lex_state = 174, .external_lex_state = 2}, + [418] = {.lex_state = 176, .external_lex_state = 2}, + [419] = {.lex_state = 174, .external_lex_state = 2}, + [420] = {.lex_state = 174, .external_lex_state = 2}, + [421] = {.lex_state = 174, .external_lex_state = 2}, + [422] = {.lex_state = 174, .external_lex_state = 2}, + [423] = {.lex_state = 176, .external_lex_state = 2}, + [424] = {.lex_state = 176, .external_lex_state = 2}, + [425] = {.lex_state = 174, .external_lex_state = 2}, + [426] = {.lex_state = 174, .external_lex_state = 2}, + [427] = {.lex_state = 176, .external_lex_state = 2}, + [428] = {.lex_state = 176, .external_lex_state = 2}, + [429] = {.lex_state = 176, .external_lex_state = 2}, + [430] = {.lex_state = 176, .external_lex_state = 2}, + [431] = {.lex_state = 176, .external_lex_state = 2}, + [432] = {.lex_state = 176, .external_lex_state = 2}, + [433] = {.lex_state = 176, .external_lex_state = 2}, + [434] = {.lex_state = 176, .external_lex_state = 2}, + [435] = {.lex_state = 176, .external_lex_state = 2}, + [436] = {.lex_state = 176, .external_lex_state = 2}, + [437] = {.lex_state = 176, .external_lex_state = 2}, + [438] = {.lex_state = 176, .external_lex_state = 2}, + [439] = {.lex_state = 176, .external_lex_state = 2}, + [440] = {.lex_state = 174, .external_lex_state = 2}, + [441] = {.lex_state = 176, .external_lex_state = 2}, + [442] = {.lex_state = 176, .external_lex_state = 2}, + [443] = {.lex_state = 176, .external_lex_state = 2}, + [444] = {.lex_state = 174, .external_lex_state = 2}, + [445] = {.lex_state = 176, .external_lex_state = 2}, + [446] = {.lex_state = 176, .external_lex_state = 2}, + [447] = {.lex_state = 176, .external_lex_state = 2}, + [448] = {.lex_state = 174, .external_lex_state = 2}, + [449] = {.lex_state = 176, .external_lex_state = 22}, + [450] = {.lex_state = 174, .external_lex_state = 2}, + [451] = {.lex_state = 176, .external_lex_state = 2}, + [452] = {.lex_state = 176, .external_lex_state = 2}, + [453] = {.lex_state = 176, .external_lex_state = 2}, + [454] = {.lex_state = 176, .external_lex_state = 2}, + [455] = {.lex_state = 176, .external_lex_state = 2}, + [456] = {.lex_state = 176, .external_lex_state = 2}, + [457] = {.lex_state = 176, .external_lex_state = 2}, + [458] = {.lex_state = 176, .external_lex_state = 2}, + [459] = {.lex_state = 176, .external_lex_state = 2}, + [460] = {.lex_state = 176, .external_lex_state = 2}, + [461] = {.lex_state = 176, .external_lex_state = 2}, + [462] = {.lex_state = 176, .external_lex_state = 2}, + [463] = {.lex_state = 176, .external_lex_state = 2}, + [464] = {.lex_state = 176, .external_lex_state = 2}, + [465] = {.lex_state = 176, .external_lex_state = 2}, + [466] = {.lex_state = 176, .external_lex_state = 2}, + [467] = {.lex_state = 176, .external_lex_state = 2}, + [468] = {.lex_state = 176, .external_lex_state = 2}, + [469] = {.lex_state = 176, .external_lex_state = 2}, + [470] = {.lex_state = 176, .external_lex_state = 2}, + [471] = {.lex_state = 176, .external_lex_state = 2}, + [472] = {.lex_state = 176, .external_lex_state = 2}, + [473] = {.lex_state = 176, .external_lex_state = 2}, + [474] = {.lex_state = 176, .external_lex_state = 2}, + [475] = {.lex_state = 176, .external_lex_state = 2}, + [476] = {.lex_state = 176, .external_lex_state = 2}, + [477] = {.lex_state = 176, .external_lex_state = 2}, + [478] = {.lex_state = 176, .external_lex_state = 2}, + [479] = {.lex_state = 176, .external_lex_state = 2}, + [480] = {.lex_state = 176, .external_lex_state = 2}, + [481] = {.lex_state = 176, .external_lex_state = 2}, + [482] = {.lex_state = 176, .external_lex_state = 2}, + [483] = {.lex_state = 176, .external_lex_state = 2}, + [484] = {.lex_state = 176, .external_lex_state = 2}, + [485] = {.lex_state = 176, .external_lex_state = 2}, + [486] = {.lex_state = 176, .external_lex_state = 2}, + [487] = {.lex_state = 176, .external_lex_state = 2}, + [488] = {.lex_state = 176, .external_lex_state = 2}, + [489] = {.lex_state = 176, .external_lex_state = 2}, + [490] = {.lex_state = 176, .external_lex_state = 22}, + [491] = {.lex_state = 171, .external_lex_state = 23}, + [492] = {.lex_state = 176, .external_lex_state = 2}, + [493] = {.lex_state = 176, .external_lex_state = 2}, + [494] = {.lex_state = 176, .external_lex_state = 2}, + [495] = {.lex_state = 176, .external_lex_state = 2}, + [496] = {.lex_state = 176, .external_lex_state = 2}, + [497] = {.lex_state = 176, .external_lex_state = 2}, + [498] = {.lex_state = 176, .external_lex_state = 2}, + [499] = {.lex_state = 176, .external_lex_state = 2}, + [500] = {.lex_state = 176, .external_lex_state = 2}, + [501] = {.lex_state = 176, .external_lex_state = 2}, + [502] = {.lex_state = 171, .external_lex_state = 23}, + [503] = {.lex_state = 176, .external_lex_state = 2}, + [504] = {.lex_state = 176, .external_lex_state = 2}, + [505] = {.lex_state = 176, .external_lex_state = 2}, + [506] = {.lex_state = 176, .external_lex_state = 2}, + [507] = {.lex_state = 176, .external_lex_state = 2}, + [508] = {.lex_state = 176, .external_lex_state = 2}, + [509] = {.lex_state = 176, .external_lex_state = 2}, + [510] = {.lex_state = 176, .external_lex_state = 2}, + [511] = {.lex_state = 176, .external_lex_state = 2}, + [512] = {.lex_state = 176, .external_lex_state = 2}, + [513] = {.lex_state = 176, .external_lex_state = 2}, + [514] = {.lex_state = 176, .external_lex_state = 2}, + [515] = {.lex_state = 176, .external_lex_state = 2}, + [516] = {.lex_state = 176, .external_lex_state = 2}, + [517] = {.lex_state = 176, .external_lex_state = 2}, + [518] = {.lex_state = 176, .external_lex_state = 2}, + [519] = {.lex_state = 176, .external_lex_state = 2}, + [520] = {.lex_state = 176, .external_lex_state = 2}, + [521] = {.lex_state = 176, .external_lex_state = 2}, + [522] = {.lex_state = 176, .external_lex_state = 2}, + [523] = {.lex_state = 176, .external_lex_state = 2}, + [524] = {.lex_state = 176, .external_lex_state = 2}, + [525] = {.lex_state = 176, .external_lex_state = 2}, + [526] = {.lex_state = 176, .external_lex_state = 2}, + [527] = {.lex_state = 176, .external_lex_state = 2}, + [528] = {.lex_state = 176, .external_lex_state = 2}, + [529] = {.lex_state = 176, .external_lex_state = 2}, + [530] = {.lex_state = 176, .external_lex_state = 2}, + [531] = {.lex_state = 176, .external_lex_state = 2}, + [532] = {.lex_state = 176, .external_lex_state = 2}, + [533] = {.lex_state = 176, .external_lex_state = 2}, + [534] = {.lex_state = 176, .external_lex_state = 2}, + [535] = {.lex_state = 176, .external_lex_state = 2}, + [536] = {.lex_state = 176, .external_lex_state = 2}, + [537] = {.lex_state = 176, .external_lex_state = 2}, + [538] = {.lex_state = 176, .external_lex_state = 2}, + [539] = {.lex_state = 176, .external_lex_state = 2}, + [540] = {.lex_state = 176, .external_lex_state = 2}, + [541] = {.lex_state = 176, .external_lex_state = 2}, + [542] = {.lex_state = 176, .external_lex_state = 2}, + [543] = {.lex_state = 176, .external_lex_state = 2}, + [544] = {.lex_state = 176, .external_lex_state = 2}, + [545] = {.lex_state = 176, .external_lex_state = 2}, + [546] = {.lex_state = 176, .external_lex_state = 2}, + [547] = {.lex_state = 176, .external_lex_state = 2}, + [548] = {.lex_state = 176, .external_lex_state = 2}, + [549] = {.lex_state = 176, .external_lex_state = 2}, + [550] = {.lex_state = 176, .external_lex_state = 2}, + [551] = {.lex_state = 176, .external_lex_state = 2}, + [552] = {.lex_state = 176, .external_lex_state = 2}, + [553] = {.lex_state = 176, .external_lex_state = 2}, + [554] = {.lex_state = 176, .external_lex_state = 2}, + [555] = {.lex_state = 176, .external_lex_state = 2}, + [556] = {.lex_state = 176, .external_lex_state = 2}, + [557] = {.lex_state = 176, .external_lex_state = 2}, + [558] = {.lex_state = 173, .external_lex_state = 24}, + [559] = {.lex_state = 173, .external_lex_state = 24}, + [560] = {.lex_state = 176, .external_lex_state = 2}, + [561] = {.lex_state = 176, .external_lex_state = 2}, + [562] = {.lex_state = 176, .external_lex_state = 2}, + [563] = {.lex_state = 176, .external_lex_state = 22}, + [564] = {.lex_state = 176, .external_lex_state = 2}, [565] = {.lex_state = 25, .external_lex_state = 16}, - [566] = {.lex_state = 172, .external_lex_state = 24}, - [567] = {.lex_state = 172, .external_lex_state = 24}, - [568] = {.lex_state = 172, .external_lex_state = 3}, - [569] = {.lex_state = 172, .external_lex_state = 3}, + [566] = {.lex_state = 173, .external_lex_state = 3}, + [567] = {.lex_state = 173, .external_lex_state = 3}, + [568] = {.lex_state = 173, .external_lex_state = 24}, + [569] = {.lex_state = 173, .external_lex_state = 24}, [570] = {.lex_state = 25, .external_lex_state = 16}, - [571] = {.lex_state = 170, .external_lex_state = 25}, - [572] = {.lex_state = 26, .external_lex_state = 16}, - [573] = {.lex_state = 26, .external_lex_state = 16}, - [574] = {.lex_state = 172, .external_lex_state = 3}, - [575] = {.lex_state = 172, .external_lex_state = 3}, - [576] = {.lex_state = 170, .external_lex_state = 26}, - [577] = {.lex_state = 170, .external_lex_state = 25}, - [578] = {.lex_state = 170, .external_lex_state = 26}, - [579] = {.lex_state = 172, .external_lex_state = 27}, - [580] = {.lex_state = 172, .external_lex_state = 27}, - [581] = {.lex_state = 172, .external_lex_state = 28}, - [582] = {.lex_state = 25, .external_lex_state = 18}, - [583] = {.lex_state = 25, .external_lex_state = 18}, - [584] = {.lex_state = 172, .external_lex_state = 28}, - [585] = {.lex_state = 170, .external_lex_state = 29}, - [586] = {.lex_state = 172, .external_lex_state = 30}, - [587] = {.lex_state = 172, .external_lex_state = 31}, - [588] = {.lex_state = 172, .external_lex_state = 31}, - [589] = {.lex_state = 172, .external_lex_state = 32}, - [590] = {.lex_state = 175, .external_lex_state = 2}, - [591] = {.lex_state = 170, .external_lex_state = 29}, - [592] = {.lex_state = 175, .external_lex_state = 2}, - [593] = {.lex_state = 175, .external_lex_state = 2}, - [594] = {.lex_state = 172, .external_lex_state = 30}, - [595] = {.lex_state = 26, .external_lex_state = 18}, - [596] = {.lex_state = 175, .external_lex_state = 2}, - [597] = {.lex_state = 175, .external_lex_state = 2}, - [598] = {.lex_state = 175, .external_lex_state = 2}, - [599] = {.lex_state = 172, .external_lex_state = 32}, - [600] = {.lex_state = 26, .external_lex_state = 18}, - [601] = {.lex_state = 172, .external_lex_state = 30}, - [602] = {.lex_state = 172, .external_lex_state = 33}, - [603] = {.lex_state = 172, .external_lex_state = 33}, - [604] = {.lex_state = 172, .external_lex_state = 34}, - [605] = {.lex_state = 172, .external_lex_state = 34}, - [606] = {.lex_state = 172, .external_lex_state = 30}, - [607] = {.lex_state = 172, .external_lex_state = 35}, - [608] = {.lex_state = 172, .external_lex_state = 35}, - [609] = {.lex_state = 172, .external_lex_state = 34}, - [610] = {.lex_state = 172, .external_lex_state = 34}, - [611] = {.lex_state = 172, .external_lex_state = 36}, - [612] = {.lex_state = 172, .external_lex_state = 36}, - [613] = {.lex_state = 172, .external_lex_state = 37}, - [614] = {.lex_state = 172, .external_lex_state = 37}, - [615] = {.lex_state = 172, .external_lex_state = 37}, - [616] = {.lex_state = 172, .external_lex_state = 38}, - [617] = {.lex_state = 172, .external_lex_state = 38}, - [618] = {.lex_state = 172, .external_lex_state = 39}, - [619] = {.lex_state = 172, .external_lex_state = 39}, - [620] = {.lex_state = 172, .external_lex_state = 37}, - [621] = {.lex_state = 172, .external_lex_state = 39}, - [622] = {.lex_state = 172, .external_lex_state = 36}, - [623] = {.lex_state = 172, .external_lex_state = 36}, - [624] = {.lex_state = 172, .external_lex_state = 39}, - [625] = {.lex_state = 172, .external_lex_state = 38}, - [626] = {.lex_state = 172, .external_lex_state = 40}, - [627] = {.lex_state = 172, .external_lex_state = 38}, - [628] = {.lex_state = 172, .external_lex_state = 40}, - [629] = {.lex_state = 32, .external_lex_state = 32}, - [630] = {.lex_state = 32, .external_lex_state = 32}, - [631] = {.lex_state = 172, .external_lex_state = 41}, - [632] = {.lex_state = 172, .external_lex_state = 41}, - [633] = {.lex_state = 172, .external_lex_state = 42}, - [634] = {.lex_state = 32, .external_lex_state = 32}, + [571] = {.lex_state = 26, .external_lex_state = 16}, + [572] = {.lex_state = 171, .external_lex_state = 25}, + [573] = {.lex_state = 173, .external_lex_state = 3}, + [574] = {.lex_state = 173, .external_lex_state = 3}, + [575] = {.lex_state = 173, .external_lex_state = 26}, + [576] = {.lex_state = 171, .external_lex_state = 27}, + [577] = {.lex_state = 171, .external_lex_state = 25}, + [578] = {.lex_state = 26, .external_lex_state = 16}, + [579] = {.lex_state = 171, .external_lex_state = 27}, + [580] = {.lex_state = 173, .external_lex_state = 26}, + [581] = {.lex_state = 25, .external_lex_state = 18}, + [582] = {.lex_state = 173, .external_lex_state = 28}, + [583] = {.lex_state = 173, .external_lex_state = 28}, + [584] = {.lex_state = 25, .external_lex_state = 18}, + [585] = {.lex_state = 173, .external_lex_state = 29}, + [586] = {.lex_state = 176, .external_lex_state = 2}, + [587] = {.lex_state = 171, .external_lex_state = 30}, + [588] = {.lex_state = 176, .external_lex_state = 2}, + [589] = {.lex_state = 173, .external_lex_state = 29}, + [590] = {.lex_state = 176, .external_lex_state = 2}, + [591] = {.lex_state = 176, .external_lex_state = 2}, + [592] = {.lex_state = 176, .external_lex_state = 2}, + [593] = {.lex_state = 26, .external_lex_state = 18}, + [594] = {.lex_state = 171, .external_lex_state = 30}, + [595] = {.lex_state = 173, .external_lex_state = 31}, + [596] = {.lex_state = 173, .external_lex_state = 32}, + [597] = {.lex_state = 176, .external_lex_state = 2}, + [598] = {.lex_state = 26, .external_lex_state = 18}, + [599] = {.lex_state = 173, .external_lex_state = 31}, + [600] = {.lex_state = 173, .external_lex_state = 32}, + [601] = {.lex_state = 173, .external_lex_state = 33}, + [602] = {.lex_state = 173, .external_lex_state = 33}, + [603] = {.lex_state = 173, .external_lex_state = 31}, + [604] = {.lex_state = 173, .external_lex_state = 31}, + [605] = {.lex_state = 173, .external_lex_state = 34}, + [606] = {.lex_state = 173, .external_lex_state = 34}, + [607] = {.lex_state = 173, .external_lex_state = 35}, + [608] = {.lex_state = 173, .external_lex_state = 35}, + [609] = {.lex_state = 173, .external_lex_state = 36}, + [610] = {.lex_state = 173, .external_lex_state = 36}, + [611] = {.lex_state = 173, .external_lex_state = 34}, + [612] = {.lex_state = 173, .external_lex_state = 34}, + [613] = {.lex_state = 173, .external_lex_state = 37}, + [614] = {.lex_state = 173, .external_lex_state = 37}, + [615] = {.lex_state = 173, .external_lex_state = 37}, + [616] = {.lex_state = 173, .external_lex_state = 38}, + [617] = {.lex_state = 173, .external_lex_state = 38}, + [618] = {.lex_state = 173, .external_lex_state = 37}, + [619] = {.lex_state = 173, .external_lex_state = 39}, + [620] = {.lex_state = 173, .external_lex_state = 39}, + [621] = {.lex_state = 173, .external_lex_state = 39}, + [622] = {.lex_state = 173, .external_lex_state = 39}, + [623] = {.lex_state = 173, .external_lex_state = 36}, + [624] = {.lex_state = 173, .external_lex_state = 36}, + [625] = {.lex_state = 173, .external_lex_state = 38}, + [626] = {.lex_state = 173, .external_lex_state = 40}, + [627] = {.lex_state = 173, .external_lex_state = 40}, + [628] = {.lex_state = 173, .external_lex_state = 38}, + [629] = {.lex_state = 173, .external_lex_state = 41}, + [630] = {.lex_state = 32, .external_lex_state = 29}, + [631] = {.lex_state = 173, .external_lex_state = 41}, + [632] = {.lex_state = 32, .external_lex_state = 29}, + [633] = {.lex_state = 173, .external_lex_state = 42}, + [634] = {.lex_state = 173, .external_lex_state = 42}, [635] = {.lex_state = 32, .external_lex_state = 33}, - [636] = {.lex_state = 172, .external_lex_state = 43}, - [637] = {.lex_state = 172, .external_lex_state = 42}, - [638] = {.lex_state = 32, .external_lex_state = 32}, - [639] = {.lex_state = 32, .external_lex_state = 33}, - [640] = {.lex_state = 172, .external_lex_state = 43}, - [641] = {.lex_state = 172, .external_lex_state = 44}, + [636] = {.lex_state = 32, .external_lex_state = 29}, + [637] = {.lex_state = 32, .external_lex_state = 29}, + [638] = {.lex_state = 173, .external_lex_state = 43}, + [639] = {.lex_state = 173, .external_lex_state = 43}, + [640] = {.lex_state = 32, .external_lex_state = 33}, + [641] = {.lex_state = 173, .external_lex_state = 44}, [642] = {.lex_state = 32, .external_lex_state = 33}, - [643] = {.lex_state = 32, .external_lex_state = 33}, - [644] = {.lex_state = 172, .external_lex_state = 45}, - [645] = {.lex_state = 32, .external_lex_state = 36}, - [646] = {.lex_state = 172, .external_lex_state = 44}, - [647] = {.lex_state = 172, .external_lex_state = 45}, + [643] = {.lex_state = 173, .external_lex_state = 45}, + [644] = {.lex_state = 173, .external_lex_state = 44}, + [645] = {.lex_state = 32, .external_lex_state = 33}, + [646] = {.lex_state = 173, .external_lex_state = 45}, + [647] = {.lex_state = 32, .external_lex_state = 36}, [648] = {.lex_state = 32, .external_lex_state = 36}, - [649] = {.lex_state = 32, .external_lex_state = 36}, - [650] = {.lex_state = 32, .external_lex_state = 36}, - [651] = {.lex_state = 172, .external_lex_state = 42}, - [652] = {.lex_state = 172, .external_lex_state = 46}, - [653] = {.lex_state = 32, .external_lex_state = 38}, - [654] = {.lex_state = 172, .external_lex_state = 46}, - [655] = {.lex_state = 32, .external_lex_state = 38}, - [656] = {.lex_state = 172, .external_lex_state = 42}, - [657] = {.lex_state = 172, .external_lex_state = 46}, - [658] = {.lex_state = 172, .external_lex_state = 47}, - [659] = {.lex_state = 172, .external_lex_state = 45}, - [660] = {.lex_state = 32, .external_lex_state = 36}, - [661] = {.lex_state = 172, .external_lex_state = 47}, + [649] = {.lex_state = 173, .external_lex_state = 46}, + [650] = {.lex_state = 173, .external_lex_state = 46}, + [651] = {.lex_state = 32, .external_lex_state = 38}, + [652] = {.lex_state = 32, .external_lex_state = 38}, + [653] = {.lex_state = 173, .external_lex_state = 42}, + [654] = {.lex_state = 173, .external_lex_state = 42}, + [655] = {.lex_state = 32, .external_lex_state = 36}, + [656] = {.lex_state = 32, .external_lex_state = 36}, + [657] = {.lex_state = 173, .external_lex_state = 47}, + [658] = {.lex_state = 173, .external_lex_state = 46}, + [659] = {.lex_state = 173, .external_lex_state = 45}, + [660] = {.lex_state = 173, .external_lex_state = 47}, + [661] = {.lex_state = 173, .external_lex_state = 46}, [662] = {.lex_state = 32, .external_lex_state = 38}, - [663] = {.lex_state = 172, .external_lex_state = 45}, - [664] = {.lex_state = 172, .external_lex_state = 46}, + [663] = {.lex_state = 173, .external_lex_state = 45}, + [664] = {.lex_state = 32, .external_lex_state = 36}, [665] = {.lex_state = 32, .external_lex_state = 38}, [666] = {.lex_state = 32, .external_lex_state = 36}, - [667] = {.lex_state = 172, .external_lex_state = 47}, - [668] = {.lex_state = 32, .external_lex_state = 38}, - [669] = {.lex_state = 172, .external_lex_state = 47}, + [667] = {.lex_state = 173, .external_lex_state = 47}, + [668] = {.lex_state = 173, .external_lex_state = 47}, + [669] = {.lex_state = 32, .external_lex_state = 38}, [670] = {.lex_state = 32, .external_lex_state = 38}, - [671] = {.lex_state = 173, .external_lex_state = 48}, - [672] = {.lex_state = 173, .external_lex_state = 48}, - [673] = {.lex_state = 173, .external_lex_state = 48}, - [674] = {.lex_state = 173, .external_lex_state = 49}, - [675] = {.lex_state = 173, .external_lex_state = 50}, - [676] = {.lex_state = 173, .external_lex_state = 50}, - [677] = {.lex_state = 173, .external_lex_state = 51}, - [678] = {.lex_state = 173, .external_lex_state = 51}, - [679] = {.lex_state = 173, .external_lex_state = 51}, - [680] = {.lex_state = 173, .external_lex_state = 52}, - [681] = {.lex_state = 173, .external_lex_state = 52}, - [682] = {.lex_state = 173, .external_lex_state = 52}, - [683] = {.lex_state = 175, .external_lex_state = 2}, - [684] = {.lex_state = 175, .external_lex_state = 2}, - [685] = {.lex_state = 175, .external_lex_state = 2}, - [686] = {.lex_state = 175, .external_lex_state = 53}, - [687] = {.lex_state = 175, .external_lex_state = 53}, - [688] = {.lex_state = 175, .external_lex_state = 53}, - [689] = {.lex_state = 175, .external_lex_state = 53}, - [690] = {.lex_state = 175, .external_lex_state = 53}, - [691] = {.lex_state = 175, .external_lex_state = 53}, - [692] = {.lex_state = 175, .external_lex_state = 53}, - [693] = {.lex_state = 175, .external_lex_state = 53}, - [694] = {.lex_state = 175, .external_lex_state = 53}, - [695] = {.lex_state = 175, .external_lex_state = 53}, - [696] = {.lex_state = 175, .external_lex_state = 53}, - [697] = {.lex_state = 175, .external_lex_state = 53}, - [698] = {.lex_state = 175, .external_lex_state = 53}, - [699] = {.lex_state = 175, .external_lex_state = 53}, - [700] = {.lex_state = 175, .external_lex_state = 53}, - [701] = {.lex_state = 175, .external_lex_state = 53}, - [702] = {.lex_state = 175, .external_lex_state = 53}, - [703] = {.lex_state = 175, .external_lex_state = 53}, - [704] = {.lex_state = 175, .external_lex_state = 53}, - [705] = {.lex_state = 175, .external_lex_state = 53}, - [706] = {.lex_state = 175, .external_lex_state = 53}, - [707] = {.lex_state = 175, .external_lex_state = 53}, - [708] = {.lex_state = 175, .external_lex_state = 53}, - [709] = {.lex_state = 175, .external_lex_state = 53}, - [710] = {.lex_state = 175, .external_lex_state = 53}, - [711] = {.lex_state = 175, .external_lex_state = 53}, - [712] = {.lex_state = 175, .external_lex_state = 53}, - [713] = {.lex_state = 175, .external_lex_state = 53}, - [714] = {.lex_state = 175, .external_lex_state = 53}, - [715] = {.lex_state = 175, .external_lex_state = 53}, - [716] = {.lex_state = 175, .external_lex_state = 53}, - [717] = {.lex_state = 175, .external_lex_state = 53}, - [718] = {.lex_state = 175, .external_lex_state = 53}, - [719] = {.lex_state = 175, .external_lex_state = 53}, - [720] = {.lex_state = 175, .external_lex_state = 53}, - [721] = {.lex_state = 175, .external_lex_state = 53}, - [722] = {.lex_state = 175, .external_lex_state = 53}, - [723] = {.lex_state = 175, .external_lex_state = 53}, - [724] = {.lex_state = 175, .external_lex_state = 53}, - [725] = {.lex_state = 175, .external_lex_state = 53}, - [726] = {.lex_state = 175, .external_lex_state = 53}, - [727] = {.lex_state = 175, .external_lex_state = 53}, - [728] = {.lex_state = 175, .external_lex_state = 53}, - [729] = {.lex_state = 175, .external_lex_state = 53}, - [730] = {.lex_state = 175, .external_lex_state = 53}, - [731] = {.lex_state = 175, .external_lex_state = 53}, - [732] = {.lex_state = 175, .external_lex_state = 53}, - [733] = {.lex_state = 175, .external_lex_state = 53}, - [734] = {.lex_state = 175, .external_lex_state = 53}, - [735] = {.lex_state = 175, .external_lex_state = 53}, - [736] = {.lex_state = 175, .external_lex_state = 53}, - [737] = {.lex_state = 175, .external_lex_state = 53}, - [738] = {.lex_state = 175, .external_lex_state = 53}, - [739] = {.lex_state = 175, .external_lex_state = 53}, - [740] = {.lex_state = 175, .external_lex_state = 53}, - [741] = {.lex_state = 175, .external_lex_state = 53}, - [742] = {.lex_state = 175, .external_lex_state = 53}, - [743] = {.lex_state = 175, .external_lex_state = 53}, - [744] = {.lex_state = 175, .external_lex_state = 53}, - [745] = {.lex_state = 175, .external_lex_state = 53}, - [746] = {.lex_state = 175, .external_lex_state = 53}, - [747] = {.lex_state = 175, .external_lex_state = 53}, - [748] = {.lex_state = 175, .external_lex_state = 53}, - [749] = {.lex_state = 167, .external_lex_state = 4}, - [750] = {.lex_state = 175, .external_lex_state = 54}, - [751] = {.lex_state = 175, .external_lex_state = 53}, - [752] = {.lex_state = 175, .external_lex_state = 53}, - [753] = {.lex_state = 175, .external_lex_state = 53}, - [754] = {.lex_state = 175, .external_lex_state = 53}, - [755] = {.lex_state = 175, .external_lex_state = 53}, - [756] = {.lex_state = 175, .external_lex_state = 53}, - [757] = {.lex_state = 175, .external_lex_state = 53}, - [758] = {.lex_state = 175, .external_lex_state = 53}, - [759] = {.lex_state = 175, .external_lex_state = 53}, - [760] = {.lex_state = 175, .external_lex_state = 53}, - [761] = {.lex_state = 175, .external_lex_state = 53}, - [762] = {.lex_state = 175, .external_lex_state = 53}, - [763] = {.lex_state = 175, .external_lex_state = 53}, - [764] = {.lex_state = 175, .external_lex_state = 53}, - [765] = {.lex_state = 175, .external_lex_state = 53}, - [766] = {.lex_state = 175, .external_lex_state = 53}, - [767] = {.lex_state = 175, .external_lex_state = 53}, - [768] = {.lex_state = 175, .external_lex_state = 53}, - [769] = {.lex_state = 175, .external_lex_state = 53}, - [770] = {.lex_state = 175, .external_lex_state = 53}, - [771] = {.lex_state = 175, .external_lex_state = 53}, - [772] = {.lex_state = 175, .external_lex_state = 53}, - [773] = {.lex_state = 175, .external_lex_state = 53}, - [774] = {.lex_state = 175, .external_lex_state = 53}, - [775] = {.lex_state = 175, .external_lex_state = 53}, - [776] = {.lex_state = 175, .external_lex_state = 53}, - [777] = {.lex_state = 175, .external_lex_state = 53}, - [778] = {.lex_state = 175, .external_lex_state = 53}, - [779] = {.lex_state = 175, .external_lex_state = 53}, - [780] = {.lex_state = 175, .external_lex_state = 53}, - [781] = {.lex_state = 175, .external_lex_state = 53}, - [782] = {.lex_state = 175, .external_lex_state = 53}, - [783] = {.lex_state = 175, .external_lex_state = 53}, - [784] = {.lex_state = 175, .external_lex_state = 53}, - [785] = {.lex_state = 175, .external_lex_state = 53}, - [786] = {.lex_state = 175, .external_lex_state = 53}, - [787] = {.lex_state = 175, .external_lex_state = 53}, - [788] = {.lex_state = 175, .external_lex_state = 53}, - [789] = {.lex_state = 175, .external_lex_state = 53}, - [790] = {.lex_state = 175, .external_lex_state = 53}, - [791] = {.lex_state = 175, .external_lex_state = 53}, - [792] = {.lex_state = 175, .external_lex_state = 53}, - [793] = {.lex_state = 175, .external_lex_state = 53}, - [794] = {.lex_state = 175, .external_lex_state = 53}, - [795] = {.lex_state = 175, .external_lex_state = 53}, - [796] = {.lex_state = 175, .external_lex_state = 53}, - [797] = {.lex_state = 175, .external_lex_state = 53}, - [798] = {.lex_state = 175, .external_lex_state = 53}, - [799] = {.lex_state = 175, .external_lex_state = 53}, - [800] = {.lex_state = 175, .external_lex_state = 53}, - [801] = {.lex_state = 175, .external_lex_state = 53}, - [802] = {.lex_state = 175, .external_lex_state = 53}, - [803] = {.lex_state = 175, .external_lex_state = 53}, - [804] = {.lex_state = 175, .external_lex_state = 53}, - [805] = {.lex_state = 175, .external_lex_state = 53}, - [806] = {.lex_state = 175, .external_lex_state = 53}, - [807] = {.lex_state = 175, .external_lex_state = 53}, - [808] = {.lex_state = 175, .external_lex_state = 53}, - [809] = {.lex_state = 175, .external_lex_state = 53}, - [810] = {.lex_state = 175, .external_lex_state = 53}, - [811] = {.lex_state = 175, .external_lex_state = 53}, - [812] = {.lex_state = 175, .external_lex_state = 53}, - [813] = {.lex_state = 175, .external_lex_state = 53}, - [814] = {.lex_state = 175, .external_lex_state = 53}, - [815] = {.lex_state = 175, .external_lex_state = 53}, - [816] = {.lex_state = 175, .external_lex_state = 53}, - [817] = {.lex_state = 175, .external_lex_state = 53}, - [818] = {.lex_state = 175, .external_lex_state = 53}, - [819] = {.lex_state = 175, .external_lex_state = 53}, - [820] = {.lex_state = 175, .external_lex_state = 53}, - [821] = {.lex_state = 175, .external_lex_state = 53}, - [822] = {.lex_state = 175, .external_lex_state = 53}, - [823] = {.lex_state = 175, .external_lex_state = 53}, - [824] = {.lex_state = 175, .external_lex_state = 53}, - [825] = {.lex_state = 167, .external_lex_state = 4}, - [826] = {.lex_state = 175, .external_lex_state = 54}, - [827] = {.lex_state = 175, .external_lex_state = 53}, - [828] = {.lex_state = 175, .external_lex_state = 53}, - [829] = {.lex_state = 175, .external_lex_state = 53}, - [830] = {.lex_state = 175, .external_lex_state = 53}, - [831] = {.lex_state = 175, .external_lex_state = 53}, - [832] = {.lex_state = 175, .external_lex_state = 53}, - [833] = {.lex_state = 175, .external_lex_state = 53}, - [834] = {.lex_state = 175, .external_lex_state = 53}, - [835] = {.lex_state = 175, .external_lex_state = 53}, - [836] = {.lex_state = 175, .external_lex_state = 53}, - [837] = {.lex_state = 175, .external_lex_state = 53}, - [838] = {.lex_state = 175, .external_lex_state = 53}, - [839] = {.lex_state = 175, .external_lex_state = 53}, - [840] = {.lex_state = 175, .external_lex_state = 53}, - [841] = {.lex_state = 175, .external_lex_state = 53}, - [842] = {.lex_state = 175, .external_lex_state = 54}, - [843] = {.lex_state = 175, .external_lex_state = 54}, - [844] = {.lex_state = 175, .external_lex_state = 54}, - [845] = {.lex_state = 175, .external_lex_state = 54}, - [846] = {.lex_state = 175, .external_lex_state = 54}, - [847] = {.lex_state = 175, .external_lex_state = 2}, - [848] = {.lex_state = 175, .external_lex_state = 54}, - [849] = {.lex_state = 175, .external_lex_state = 54}, - [850] = {.lex_state = 175, .external_lex_state = 54}, - [851] = {.lex_state = 175, .external_lex_state = 2}, - [852] = {.lex_state = 175, .external_lex_state = 54}, - [853] = {.lex_state = 175, .external_lex_state = 2}, - [854] = {.lex_state = 175, .external_lex_state = 54}, - [855] = {.lex_state = 175, .external_lex_state = 54}, - [856] = {.lex_state = 175, .external_lex_state = 2}, - [857] = {.lex_state = 175, .external_lex_state = 54}, - [858] = {.lex_state = 175, .external_lex_state = 54}, - [859] = {.lex_state = 175, .external_lex_state = 54}, - [860] = {.lex_state = 175, .external_lex_state = 54}, - [861] = {.lex_state = 175, .external_lex_state = 54}, - [862] = {.lex_state = 175, .external_lex_state = 54}, - [863] = {.lex_state = 175, .external_lex_state = 54}, - [864] = {.lex_state = 175, .external_lex_state = 2}, - [865] = {.lex_state = 175, .external_lex_state = 2}, - [866] = {.lex_state = 175, .external_lex_state = 54}, - [867] = {.lex_state = 175, .external_lex_state = 54}, - [868] = {.lex_state = 175, .external_lex_state = 54}, - [869] = {.lex_state = 175, .external_lex_state = 54}, - [870] = {.lex_state = 175, .external_lex_state = 54}, - [871] = {.lex_state = 175, .external_lex_state = 54}, - [872] = {.lex_state = 175, .external_lex_state = 54}, - [873] = {.lex_state = 175, .external_lex_state = 54}, - [874] = {.lex_state = 175, .external_lex_state = 54}, - [875] = {.lex_state = 175, .external_lex_state = 2}, - [876] = {.lex_state = 175, .external_lex_state = 54}, - [877] = {.lex_state = 175, .external_lex_state = 54}, - [878] = {.lex_state = 175, .external_lex_state = 54}, - [879] = {.lex_state = 175, .external_lex_state = 54}, - [880] = {.lex_state = 175, .external_lex_state = 54}, - [881] = {.lex_state = 175, .external_lex_state = 2}, - [882] = {.lex_state = 175, .external_lex_state = 54}, - [883] = {.lex_state = 175, .external_lex_state = 54}, - [884] = {.lex_state = 175, .external_lex_state = 2}, - [885] = {.lex_state = 175, .external_lex_state = 54}, - [886] = {.lex_state = 175, .external_lex_state = 54}, - [887] = {.lex_state = 175, .external_lex_state = 54}, - [888] = {.lex_state = 175, .external_lex_state = 54}, - [889] = {.lex_state = 175, .external_lex_state = 54}, - [890] = {.lex_state = 175, .external_lex_state = 54}, - [891] = {.lex_state = 175, .external_lex_state = 2}, - [892] = {.lex_state = 175, .external_lex_state = 54}, - [893] = {.lex_state = 175, .external_lex_state = 54}, - [894] = {.lex_state = 175, .external_lex_state = 54}, - [895] = {.lex_state = 175, .external_lex_state = 54}, - [896] = {.lex_state = 175, .external_lex_state = 2}, - [897] = {.lex_state = 175, .external_lex_state = 54}, - [898] = {.lex_state = 175, .external_lex_state = 54}, - [899] = {.lex_state = 175, .external_lex_state = 54}, - [900] = {.lex_state = 175, .external_lex_state = 54}, - [901] = {.lex_state = 175, .external_lex_state = 54}, - [902] = {.lex_state = 175, .external_lex_state = 54}, - [903] = {.lex_state = 175, .external_lex_state = 2}, - [904] = {.lex_state = 175, .external_lex_state = 54}, - [905] = {.lex_state = 175, .external_lex_state = 54}, - [906] = {.lex_state = 175, .external_lex_state = 54}, - [907] = {.lex_state = 175, .external_lex_state = 54}, - [908] = {.lex_state = 175, .external_lex_state = 54}, - [909] = {.lex_state = 175, .external_lex_state = 54}, - [910] = {.lex_state = 175, .external_lex_state = 54}, - [911] = {.lex_state = 175, .external_lex_state = 54}, - [912] = {.lex_state = 175, .external_lex_state = 54}, - [913] = {.lex_state = 175, .external_lex_state = 54}, - [914] = {.lex_state = 175, .external_lex_state = 54}, - [915] = {.lex_state = 175, .external_lex_state = 54}, - [916] = {.lex_state = 175, .external_lex_state = 54}, - [917] = {.lex_state = 175, .external_lex_state = 54}, - [918] = {.lex_state = 175, .external_lex_state = 54}, - [919] = {.lex_state = 175, .external_lex_state = 54}, - [920] = {.lex_state = 175, .external_lex_state = 54}, - [921] = {.lex_state = 175, .external_lex_state = 54}, - [922] = {.lex_state = 175, .external_lex_state = 54}, - [923] = {.lex_state = 175, .external_lex_state = 54}, - [924] = {.lex_state = 175, .external_lex_state = 54}, - [925] = {.lex_state = 175, .external_lex_state = 54}, - [926] = {.lex_state = 175, .external_lex_state = 54}, - [927] = {.lex_state = 175, .external_lex_state = 54}, - [928] = {.lex_state = 175, .external_lex_state = 54}, - [929] = {.lex_state = 175, .external_lex_state = 54}, - [930] = {.lex_state = 175, .external_lex_state = 54}, - [931] = {.lex_state = 175, .external_lex_state = 54}, - [932] = {.lex_state = 175, .external_lex_state = 54}, - [933] = {.lex_state = 175, .external_lex_state = 54}, - [934] = {.lex_state = 175, .external_lex_state = 54}, - [935] = {.lex_state = 175, .external_lex_state = 54}, - [936] = {.lex_state = 175, .external_lex_state = 54}, - [937] = {.lex_state = 175, .external_lex_state = 54}, - [938] = {.lex_state = 175, .external_lex_state = 54}, - [939] = {.lex_state = 175, .external_lex_state = 54}, - [940] = {.lex_state = 175, .external_lex_state = 54}, - [941] = {.lex_state = 175, .external_lex_state = 54}, - [942] = {.lex_state = 175, .external_lex_state = 54}, - [943] = {.lex_state = 175, .external_lex_state = 54}, - [944] = {.lex_state = 175, .external_lex_state = 54}, - [945] = {.lex_state = 175, .external_lex_state = 54}, - [946] = {.lex_state = 175, .external_lex_state = 54}, - [947] = {.lex_state = 175, .external_lex_state = 54}, - [948] = {.lex_state = 175, .external_lex_state = 54}, - [949] = {.lex_state = 175, .external_lex_state = 54}, - [950] = {.lex_state = 175, .external_lex_state = 54}, - [951] = {.lex_state = 175, .external_lex_state = 54}, - [952] = {.lex_state = 175, .external_lex_state = 54}, - [953] = {.lex_state = 175, .external_lex_state = 54}, - [954] = {.lex_state = 175, .external_lex_state = 54}, - [955] = {.lex_state = 175, .external_lex_state = 54}, - [956] = {.lex_state = 175, .external_lex_state = 54}, - [957] = {.lex_state = 175, .external_lex_state = 54}, - [958] = {.lex_state = 175, .external_lex_state = 54}, - [959] = {.lex_state = 175, .external_lex_state = 54}, - [960] = {.lex_state = 175, .external_lex_state = 54}, - [961] = {.lex_state = 175, .external_lex_state = 54}, - [962] = {.lex_state = 175, .external_lex_state = 2}, - [963] = {.lex_state = 175, .external_lex_state = 54}, - [964] = {.lex_state = 175, .external_lex_state = 54}, - [965] = {.lex_state = 175, .external_lex_state = 54}, - [966] = {.lex_state = 175, .external_lex_state = 2}, - [967] = {.lex_state = 175, .external_lex_state = 54}, - [968] = {.lex_state = 175, .external_lex_state = 2}, - [969] = {.lex_state = 175, .external_lex_state = 54}, - [970] = {.lex_state = 175, .external_lex_state = 54}, - [971] = {.lex_state = 175, .external_lex_state = 54}, - [972] = {.lex_state = 175, .external_lex_state = 2}, - [973] = {.lex_state = 175, .external_lex_state = 54}, - [974] = {.lex_state = 175, .external_lex_state = 2}, - [975] = {.lex_state = 175, .external_lex_state = 54}, - [976] = {.lex_state = 175, .external_lex_state = 54}, - [977] = {.lex_state = 175, .external_lex_state = 54}, - [978] = {.lex_state = 175, .external_lex_state = 2}, - [979] = {.lex_state = 175, .external_lex_state = 2}, - [980] = {.lex_state = 175, .external_lex_state = 54}, - [981] = {.lex_state = 175, .external_lex_state = 54}, - [982] = {.lex_state = 175, .external_lex_state = 54}, - [983] = {.lex_state = 175, .external_lex_state = 54}, - [984] = {.lex_state = 175, .external_lex_state = 2}, - [985] = {.lex_state = 175, .external_lex_state = 54}, - [986] = {.lex_state = 175, .external_lex_state = 2}, - [987] = {.lex_state = 175, .external_lex_state = 54}, - [988] = {.lex_state = 175, .external_lex_state = 2}, - [989] = {.lex_state = 175, .external_lex_state = 54}, - [990] = {.lex_state = 175, .external_lex_state = 54}, - [991] = {.lex_state = 175, .external_lex_state = 54}, - [992] = {.lex_state = 175, .external_lex_state = 54}, - [993] = {.lex_state = 175, .external_lex_state = 54}, - [994] = {.lex_state = 175, .external_lex_state = 54}, - [995] = {.lex_state = 175, .external_lex_state = 54}, - [996] = {.lex_state = 175, .external_lex_state = 54}, - [997] = {.lex_state = 175, .external_lex_state = 54}, - [998] = {.lex_state = 175, .external_lex_state = 54}, - [999] = {.lex_state = 175, .external_lex_state = 54}, - [1000] = {.lex_state = 175, .external_lex_state = 54}, - [1001] = {.lex_state = 175, .external_lex_state = 54}, - [1002] = {.lex_state = 175, .external_lex_state = 54}, - [1003] = {.lex_state = 175, .external_lex_state = 54}, - [1004] = {.lex_state = 175, .external_lex_state = 54}, - [1005] = {.lex_state = 175, .external_lex_state = 54}, - [1006] = {.lex_state = 175, .external_lex_state = 54}, - [1007] = {.lex_state = 175, .external_lex_state = 54}, - [1008] = {.lex_state = 175, .external_lex_state = 54}, - [1009] = {.lex_state = 175, .external_lex_state = 54}, - [1010] = {.lex_state = 175, .external_lex_state = 54}, - [1011] = {.lex_state = 175, .external_lex_state = 54}, - [1012] = {.lex_state = 175, .external_lex_state = 54}, - [1013] = {.lex_state = 175, .external_lex_state = 54}, - [1014] = {.lex_state = 175, .external_lex_state = 54}, - [1015] = {.lex_state = 175, .external_lex_state = 54}, - [1016] = {.lex_state = 175, .external_lex_state = 54}, - [1017] = {.lex_state = 175, .external_lex_state = 2}, - [1018] = {.lex_state = 175, .external_lex_state = 2}, - [1019] = {.lex_state = 175, .external_lex_state = 54}, - [1020] = {.lex_state = 175, .external_lex_state = 54}, - [1021] = {.lex_state = 175, .external_lex_state = 54}, - [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 = 175, .external_lex_state = 2}, - [1026] = {.lex_state = 175, .external_lex_state = 2}, - [1027] = {.lex_state = 175, .external_lex_state = 2}, - [1028] = {.lex_state = 175, .external_lex_state = 2}, - [1029] = {.lex_state = 175, .external_lex_state = 2}, - [1030] = {.lex_state = 175, .external_lex_state = 2}, - [1031] = {.lex_state = 175, .external_lex_state = 2}, - [1032] = {.lex_state = 175, .external_lex_state = 2}, - [1033] = {.lex_state = 175, .external_lex_state = 2}, - [1034] = {.lex_state = 175, .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}, - [1040] = {.lex_state = 175, .external_lex_state = 2}, - [1041] = {.lex_state = 175, .external_lex_state = 2}, - [1042] = {.lex_state = 175, .external_lex_state = 2}, - [1043] = {.lex_state = 175, .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 = 175, .external_lex_state = 2}, - [1048] = {.lex_state = 175, .external_lex_state = 2}, - [1049] = {.lex_state = 175, .external_lex_state = 2}, - [1050] = {.lex_state = 175, .external_lex_state = 2}, - [1051] = {.lex_state = 175, .external_lex_state = 2}, - [1052] = {.lex_state = 175, .external_lex_state = 2}, - [1053] = {.lex_state = 175, .external_lex_state = 2}, - [1054] = {.lex_state = 175, .external_lex_state = 2}, - [1055] = {.lex_state = 167, .external_lex_state = 5}, - [1056] = {.lex_state = 175, .external_lex_state = 2}, - [1057] = {.lex_state = 167, .external_lex_state = 5}, - [1058] = {.lex_state = 175, .external_lex_state = 2}, - [1059] = {.lex_state = 38, .external_lex_state = 2}, - [1060] = {.lex_state = 175, .external_lex_state = 2}, - [1061] = {.lex_state = 38, .external_lex_state = 2}, - [1062] = {.lex_state = 175, .external_lex_state = 2}, - [1063] = {.lex_state = 175, .external_lex_state = 2}, - [1064] = {.lex_state = 175, .external_lex_state = 2}, - [1065] = {.lex_state = 175, .external_lex_state = 2}, - [1066] = {.lex_state = 175, .external_lex_state = 2}, - [1067] = {.lex_state = 38, .external_lex_state = 2}, - [1068] = {.lex_state = 175, .external_lex_state = 2}, - [1069] = {.lex_state = 175, .external_lex_state = 2}, - [1070] = {.lex_state = 38, .external_lex_state = 2}, - [1071] = {.lex_state = 38, .external_lex_state = 2}, - [1072] = {.lex_state = 175, .external_lex_state = 2}, - [1073] = {.lex_state = 175, .external_lex_state = 2}, - [1074] = {.lex_state = 38, .external_lex_state = 2}, + [671] = {.lex_state = 174, .external_lex_state = 48}, + [672] = {.lex_state = 174, .external_lex_state = 49}, + [673] = {.lex_state = 174, .external_lex_state = 49}, + [674] = {.lex_state = 174, .external_lex_state = 49}, + [675] = {.lex_state = 174, .external_lex_state = 50}, + [676] = {.lex_state = 174, .external_lex_state = 50}, + [677] = {.lex_state = 174, .external_lex_state = 51}, + [678] = {.lex_state = 174, .external_lex_state = 51}, + [679] = {.lex_state = 174, .external_lex_state = 51}, + [680] = {.lex_state = 174, .external_lex_state = 52}, + [681] = {.lex_state = 174, .external_lex_state = 52}, + [682] = {.lex_state = 174, .external_lex_state = 52}, + [683] = {.lex_state = 176, .external_lex_state = 2}, + [684] = {.lex_state = 176, .external_lex_state = 2}, + [685] = {.lex_state = 176, .external_lex_state = 2}, + [686] = {.lex_state = 176, .external_lex_state = 53}, + [687] = {.lex_state = 176, .external_lex_state = 53}, + [688] = {.lex_state = 176, .external_lex_state = 53}, + [689] = {.lex_state = 176, .external_lex_state = 53}, + [690] = {.lex_state = 176, .external_lex_state = 53}, + [691] = {.lex_state = 176, .external_lex_state = 53}, + [692] = {.lex_state = 176, .external_lex_state = 53}, + [693] = {.lex_state = 176, .external_lex_state = 53}, + [694] = {.lex_state = 176, .external_lex_state = 53}, + [695] = {.lex_state = 176, .external_lex_state = 53}, + [696] = {.lex_state = 176, .external_lex_state = 53}, + [697] = {.lex_state = 176, .external_lex_state = 53}, + [698] = {.lex_state = 176, .external_lex_state = 53}, + [699] = {.lex_state = 176, .external_lex_state = 53}, + [700] = {.lex_state = 176, .external_lex_state = 53}, + [701] = {.lex_state = 176, .external_lex_state = 53}, + [702] = {.lex_state = 176, .external_lex_state = 53}, + [703] = {.lex_state = 176, .external_lex_state = 53}, + [704] = {.lex_state = 176, .external_lex_state = 53}, + [705] = {.lex_state = 176, .external_lex_state = 53}, + [706] = {.lex_state = 176, .external_lex_state = 53}, + [707] = {.lex_state = 176, .external_lex_state = 53}, + [708] = {.lex_state = 176, .external_lex_state = 53}, + [709] = {.lex_state = 176, .external_lex_state = 53}, + [710] = {.lex_state = 176, .external_lex_state = 53}, + [711] = {.lex_state = 176, .external_lex_state = 53}, + [712] = {.lex_state = 176, .external_lex_state = 53}, + [713] = {.lex_state = 176, .external_lex_state = 53}, + [714] = {.lex_state = 176, .external_lex_state = 53}, + [715] = {.lex_state = 176, .external_lex_state = 53}, + [716] = {.lex_state = 176, .external_lex_state = 53}, + [717] = {.lex_state = 176, .external_lex_state = 53}, + [718] = {.lex_state = 176, .external_lex_state = 53}, + [719] = {.lex_state = 176, .external_lex_state = 53}, + [720] = {.lex_state = 176, .external_lex_state = 53}, + [721] = {.lex_state = 176, .external_lex_state = 53}, + [722] = {.lex_state = 176, .external_lex_state = 53}, + [723] = {.lex_state = 176, .external_lex_state = 53}, + [724] = {.lex_state = 176, .external_lex_state = 53}, + [725] = {.lex_state = 176, .external_lex_state = 53}, + [726] = {.lex_state = 176, .external_lex_state = 53}, + [727] = {.lex_state = 176, .external_lex_state = 53}, + [728] = {.lex_state = 176, .external_lex_state = 53}, + [729] = {.lex_state = 176, .external_lex_state = 53}, + [730] = {.lex_state = 176, .external_lex_state = 53}, + [731] = {.lex_state = 176, .external_lex_state = 53}, + [732] = {.lex_state = 176, .external_lex_state = 53}, + [733] = {.lex_state = 176, .external_lex_state = 53}, + [734] = {.lex_state = 176, .external_lex_state = 53}, + [735] = {.lex_state = 176, .external_lex_state = 53}, + [736] = {.lex_state = 176, .external_lex_state = 53}, + [737] = {.lex_state = 176, .external_lex_state = 53}, + [738] = {.lex_state = 176, .external_lex_state = 53}, + [739] = {.lex_state = 168, .external_lex_state = 4}, + [740] = {.lex_state = 176, .external_lex_state = 53}, + [741] = {.lex_state = 176, .external_lex_state = 53}, + [742] = {.lex_state = 176, .external_lex_state = 53}, + [743] = {.lex_state = 176, .external_lex_state = 53}, + [744] = {.lex_state = 176, .external_lex_state = 53}, + [745] = {.lex_state = 176, .external_lex_state = 53}, + [746] = {.lex_state = 176, .external_lex_state = 53}, + [747] = {.lex_state = 176, .external_lex_state = 53}, + [748] = {.lex_state = 176, .external_lex_state = 53}, + [749] = {.lex_state = 176, .external_lex_state = 53}, + [750] = {.lex_state = 176, .external_lex_state = 53}, + [751] = {.lex_state = 176, .external_lex_state = 53}, + [752] = {.lex_state = 176, .external_lex_state = 53}, + [753] = {.lex_state = 176, .external_lex_state = 53}, + [754] = {.lex_state = 176, .external_lex_state = 53}, + [755] = {.lex_state = 176, .external_lex_state = 53}, + [756] = {.lex_state = 176, .external_lex_state = 53}, + [757] = {.lex_state = 176, .external_lex_state = 53}, + [758] = {.lex_state = 176, .external_lex_state = 53}, + [759] = {.lex_state = 176, .external_lex_state = 53}, + [760] = {.lex_state = 176, .external_lex_state = 53}, + [761] = {.lex_state = 176, .external_lex_state = 53}, + [762] = {.lex_state = 176, .external_lex_state = 53}, + [763] = {.lex_state = 176, .external_lex_state = 54}, + [764] = {.lex_state = 176, .external_lex_state = 53}, + [765] = {.lex_state = 176, .external_lex_state = 53}, + [766] = {.lex_state = 176, .external_lex_state = 53}, + [767] = {.lex_state = 176, .external_lex_state = 53}, + [768] = {.lex_state = 176, .external_lex_state = 53}, + [769] = {.lex_state = 176, .external_lex_state = 53}, + [770] = {.lex_state = 176, .external_lex_state = 53}, + [771] = {.lex_state = 176, .external_lex_state = 53}, + [772] = {.lex_state = 176, .external_lex_state = 53}, + [773] = {.lex_state = 176, .external_lex_state = 53}, + [774] = {.lex_state = 176, .external_lex_state = 53}, + [775] = {.lex_state = 176, .external_lex_state = 53}, + [776] = {.lex_state = 176, .external_lex_state = 53}, + [777] = {.lex_state = 176, .external_lex_state = 53}, + [778] = {.lex_state = 176, .external_lex_state = 53}, + [779] = {.lex_state = 176, .external_lex_state = 53}, + [780] = {.lex_state = 176, .external_lex_state = 53}, + [781] = {.lex_state = 176, .external_lex_state = 53}, + [782] = {.lex_state = 176, .external_lex_state = 53}, + [783] = {.lex_state = 176, .external_lex_state = 53}, + [784] = {.lex_state = 176, .external_lex_state = 54}, + [785] = {.lex_state = 176, .external_lex_state = 53}, + [786] = {.lex_state = 176, .external_lex_state = 53}, + [787] = {.lex_state = 176, .external_lex_state = 53}, + [788] = {.lex_state = 176, .external_lex_state = 53}, + [789] = {.lex_state = 176, .external_lex_state = 53}, + [790] = {.lex_state = 176, .external_lex_state = 53}, + [791] = {.lex_state = 176, .external_lex_state = 53}, + [792] = {.lex_state = 176, .external_lex_state = 53}, + [793] = {.lex_state = 176, .external_lex_state = 53}, + [794] = {.lex_state = 176, .external_lex_state = 53}, + [795] = {.lex_state = 176, .external_lex_state = 53}, + [796] = {.lex_state = 176, .external_lex_state = 53}, + [797] = {.lex_state = 176, .external_lex_state = 53}, + [798] = {.lex_state = 176, .external_lex_state = 53}, + [799] = {.lex_state = 176, .external_lex_state = 53}, + [800] = {.lex_state = 176, .external_lex_state = 53}, + [801] = {.lex_state = 176, .external_lex_state = 53}, + [802] = {.lex_state = 176, .external_lex_state = 53}, + [803] = {.lex_state = 176, .external_lex_state = 53}, + [804] = {.lex_state = 168, .external_lex_state = 4}, + [805] = {.lex_state = 176, .external_lex_state = 53}, + [806] = {.lex_state = 176, .external_lex_state = 53}, + [807] = {.lex_state = 176, .external_lex_state = 53}, + [808] = {.lex_state = 176, .external_lex_state = 53}, + [809] = {.lex_state = 176, .external_lex_state = 53}, + [810] = {.lex_state = 176, .external_lex_state = 53}, + [811] = {.lex_state = 176, .external_lex_state = 53}, + [812] = {.lex_state = 176, .external_lex_state = 53}, + [813] = {.lex_state = 176, .external_lex_state = 53}, + [814] = {.lex_state = 176, .external_lex_state = 53}, + [815] = {.lex_state = 176, .external_lex_state = 53}, + [816] = {.lex_state = 176, .external_lex_state = 53}, + [817] = {.lex_state = 176, .external_lex_state = 53}, + [818] = {.lex_state = 176, .external_lex_state = 53}, + [819] = {.lex_state = 176, .external_lex_state = 53}, + [820] = {.lex_state = 176, .external_lex_state = 53}, + [821] = {.lex_state = 176, .external_lex_state = 53}, + [822] = {.lex_state = 176, .external_lex_state = 53}, + [823] = {.lex_state = 176, .external_lex_state = 53}, + [824] = {.lex_state = 176, .external_lex_state = 53}, + [825] = {.lex_state = 176, .external_lex_state = 53}, + [826] = {.lex_state = 176, .external_lex_state = 53}, + [827] = {.lex_state = 176, .external_lex_state = 53}, + [828] = {.lex_state = 176, .external_lex_state = 53}, + [829] = {.lex_state = 176, .external_lex_state = 53}, + [830] = {.lex_state = 176, .external_lex_state = 53}, + [831] = {.lex_state = 176, .external_lex_state = 53}, + [832] = {.lex_state = 176, .external_lex_state = 53}, + [833] = {.lex_state = 176, .external_lex_state = 53}, + [834] = {.lex_state = 176, .external_lex_state = 53}, + [835] = {.lex_state = 176, .external_lex_state = 53}, + [836] = {.lex_state = 176, .external_lex_state = 53}, + [837] = {.lex_state = 176, .external_lex_state = 53}, + [838] = {.lex_state = 176, .external_lex_state = 53}, + [839] = {.lex_state = 176, .external_lex_state = 53}, + [840] = {.lex_state = 176, .external_lex_state = 53}, + [841] = {.lex_state = 176, .external_lex_state = 53}, + [842] = {.lex_state = 176, .external_lex_state = 54}, + [843] = {.lex_state = 176, .external_lex_state = 54}, + [844] = {.lex_state = 176, .external_lex_state = 54}, + [845] = {.lex_state = 176, .external_lex_state = 54}, + [846] = {.lex_state = 176, .external_lex_state = 2}, + [847] = {.lex_state = 176, .external_lex_state = 54}, + [848] = {.lex_state = 176, .external_lex_state = 54}, + [849] = {.lex_state = 176, .external_lex_state = 54}, + [850] = {.lex_state = 176, .external_lex_state = 2}, + [851] = {.lex_state = 176, .external_lex_state = 2}, + [852] = {.lex_state = 176, .external_lex_state = 54}, + [853] = {.lex_state = 176, .external_lex_state = 54}, + [854] = {.lex_state = 176, .external_lex_state = 54}, + [855] = {.lex_state = 176, .external_lex_state = 54}, + [856] = {.lex_state = 176, .external_lex_state = 54}, + [857] = {.lex_state = 176, .external_lex_state = 2}, + [858] = {.lex_state = 176, .external_lex_state = 54}, + [859] = {.lex_state = 176, .external_lex_state = 54}, + [860] = {.lex_state = 176, .external_lex_state = 54}, + [861] = {.lex_state = 176, .external_lex_state = 2}, + [862] = {.lex_state = 176, .external_lex_state = 54}, + [863] = {.lex_state = 176, .external_lex_state = 54}, + [864] = {.lex_state = 176, .external_lex_state = 54}, + [865] = {.lex_state = 176, .external_lex_state = 54}, + [866] = {.lex_state = 176, .external_lex_state = 2}, + [867] = {.lex_state = 176, .external_lex_state = 54}, + [868] = {.lex_state = 176, .external_lex_state = 54}, + [869] = {.lex_state = 176, .external_lex_state = 2}, + [870] = {.lex_state = 176, .external_lex_state = 54}, + [871] = {.lex_state = 176, .external_lex_state = 54}, + [872] = {.lex_state = 176, .external_lex_state = 2}, + [873] = {.lex_state = 176, .external_lex_state = 54}, + [874] = {.lex_state = 176, .external_lex_state = 2}, + [875] = {.lex_state = 176, .external_lex_state = 54}, + [876] = {.lex_state = 176, .external_lex_state = 54}, + [877] = {.lex_state = 176, .external_lex_state = 54}, + [878] = {.lex_state = 176, .external_lex_state = 54}, + [879] = {.lex_state = 176, .external_lex_state = 54}, + [880] = {.lex_state = 176, .external_lex_state = 54}, + [881] = {.lex_state = 176, .external_lex_state = 54}, + [882] = {.lex_state = 176, .external_lex_state = 54}, + [883] = {.lex_state = 176, .external_lex_state = 54}, + [884] = {.lex_state = 176, .external_lex_state = 54}, + [885] = {.lex_state = 176, .external_lex_state = 54}, + [886] = {.lex_state = 176, .external_lex_state = 54}, + [887] = {.lex_state = 176, .external_lex_state = 54}, + [888] = {.lex_state = 176, .external_lex_state = 54}, + [889] = {.lex_state = 176, .external_lex_state = 54}, + [890] = {.lex_state = 176, .external_lex_state = 54}, + [891] = {.lex_state = 176, .external_lex_state = 54}, + [892] = {.lex_state = 176, .external_lex_state = 2}, + [893] = {.lex_state = 176, .external_lex_state = 54}, + [894] = {.lex_state = 176, .external_lex_state = 54}, + [895] = {.lex_state = 176, .external_lex_state = 54}, + [896] = {.lex_state = 176, .external_lex_state = 54}, + [897] = {.lex_state = 176, .external_lex_state = 54}, + [898] = {.lex_state = 176, .external_lex_state = 54}, + [899] = {.lex_state = 176, .external_lex_state = 54}, + [900] = {.lex_state = 176, .external_lex_state = 54}, + [901] = {.lex_state = 176, .external_lex_state = 2}, + [902] = {.lex_state = 176, .external_lex_state = 54}, + [903] = {.lex_state = 176, .external_lex_state = 54}, + [904] = {.lex_state = 176, .external_lex_state = 54}, + [905] = {.lex_state = 176, .external_lex_state = 54}, + [906] = {.lex_state = 176, .external_lex_state = 54}, + [907] = {.lex_state = 176, .external_lex_state = 2}, + [908] = {.lex_state = 176, .external_lex_state = 54}, + [909] = {.lex_state = 176, .external_lex_state = 2}, + [910] = {.lex_state = 176, .external_lex_state = 54}, + [911] = {.lex_state = 176, .external_lex_state = 54}, + [912] = {.lex_state = 176, .external_lex_state = 54}, + [913] = {.lex_state = 176, .external_lex_state = 54}, + [914] = {.lex_state = 176, .external_lex_state = 2}, + [915] = {.lex_state = 176, .external_lex_state = 54}, + [916] = {.lex_state = 176, .external_lex_state = 54}, + [917] = {.lex_state = 176, .external_lex_state = 54}, + [918] = {.lex_state = 176, .external_lex_state = 54}, + [919] = {.lex_state = 176, .external_lex_state = 54}, + [920] = {.lex_state = 176, .external_lex_state = 54}, + [921] = {.lex_state = 176, .external_lex_state = 54}, + [922] = {.lex_state = 176, .external_lex_state = 54}, + [923] = {.lex_state = 176, .external_lex_state = 54}, + [924] = {.lex_state = 176, .external_lex_state = 54}, + [925] = {.lex_state = 176, .external_lex_state = 54}, + [926] = {.lex_state = 176, .external_lex_state = 54}, + [927] = {.lex_state = 176, .external_lex_state = 54}, + [928] = {.lex_state = 176, .external_lex_state = 54}, + [929] = {.lex_state = 176, .external_lex_state = 54}, + [930] = {.lex_state = 176, .external_lex_state = 54}, + [931] = {.lex_state = 176, .external_lex_state = 54}, + [932] = {.lex_state = 176, .external_lex_state = 54}, + [933] = {.lex_state = 176, .external_lex_state = 54}, + [934] = {.lex_state = 176, .external_lex_state = 54}, + [935] = {.lex_state = 176, .external_lex_state = 54}, + [936] = {.lex_state = 176, .external_lex_state = 54}, + [937] = {.lex_state = 176, .external_lex_state = 54}, + [938] = {.lex_state = 176, .external_lex_state = 54}, + [939] = {.lex_state = 176, .external_lex_state = 54}, + [940] = {.lex_state = 176, .external_lex_state = 54}, + [941] = {.lex_state = 176, .external_lex_state = 54}, + [942] = {.lex_state = 176, .external_lex_state = 54}, + [943] = {.lex_state = 176, .external_lex_state = 54}, + [944] = {.lex_state = 176, .external_lex_state = 54}, + [945] = {.lex_state = 176, .external_lex_state = 54}, + [946] = {.lex_state = 176, .external_lex_state = 54}, + [947] = {.lex_state = 176, .external_lex_state = 54}, + [948] = {.lex_state = 176, .external_lex_state = 54}, + [949] = {.lex_state = 176, .external_lex_state = 54}, + [950] = {.lex_state = 176, .external_lex_state = 54}, + [951] = {.lex_state = 176, .external_lex_state = 54}, + [952] = {.lex_state = 176, .external_lex_state = 54}, + [953] = {.lex_state = 176, .external_lex_state = 54}, + [954] = {.lex_state = 176, .external_lex_state = 54}, + [955] = {.lex_state = 176, .external_lex_state = 54}, + [956] = {.lex_state = 176, .external_lex_state = 54}, + [957] = {.lex_state = 176, .external_lex_state = 54}, + [958] = {.lex_state = 176, .external_lex_state = 54}, + [959] = {.lex_state = 176, .external_lex_state = 54}, + [960] = {.lex_state = 176, .external_lex_state = 54}, + [961] = {.lex_state = 176, .external_lex_state = 54}, + [962] = {.lex_state = 176, .external_lex_state = 54}, + [963] = {.lex_state = 176, .external_lex_state = 54}, + [964] = {.lex_state = 176, .external_lex_state = 54}, + [965] = {.lex_state = 176, .external_lex_state = 54}, + [966] = {.lex_state = 176, .external_lex_state = 2}, + [967] = {.lex_state = 176, .external_lex_state = 54}, + [968] = {.lex_state = 176, .external_lex_state = 54}, + [969] = {.lex_state = 176, .external_lex_state = 54}, + [970] = {.lex_state = 176, .external_lex_state = 54}, + [971] = {.lex_state = 176, .external_lex_state = 54}, + [972] = {.lex_state = 176, .external_lex_state = 54}, + [973] = {.lex_state = 176, .external_lex_state = 54}, + [974] = {.lex_state = 176, .external_lex_state = 2}, + [975] = {.lex_state = 176, .external_lex_state = 54}, + [976] = {.lex_state = 176, .external_lex_state = 2}, + [977] = {.lex_state = 176, .external_lex_state = 54}, + [978] = {.lex_state = 176, .external_lex_state = 54}, + [979] = {.lex_state = 176, .external_lex_state = 54}, + [980] = {.lex_state = 176, .external_lex_state = 2}, + [981] = {.lex_state = 176, .external_lex_state = 54}, + [982] = {.lex_state = 176, .external_lex_state = 2}, + [983] = {.lex_state = 176, .external_lex_state = 54}, + [984] = {.lex_state = 176, .external_lex_state = 2}, + [985] = {.lex_state = 176, .external_lex_state = 54}, + [986] = {.lex_state = 176, .external_lex_state = 54}, + [987] = {.lex_state = 176, .external_lex_state = 54}, + [988] = {.lex_state = 176, .external_lex_state = 54}, + [989] = {.lex_state = 176, .external_lex_state = 54}, + [990] = {.lex_state = 176, .external_lex_state = 2}, + [991] = {.lex_state = 176, .external_lex_state = 2}, + [992] = {.lex_state = 176, .external_lex_state = 2}, + [993] = {.lex_state = 176, .external_lex_state = 54}, + [994] = {.lex_state = 176, .external_lex_state = 54}, + [995] = {.lex_state = 176, .external_lex_state = 54}, + [996] = {.lex_state = 176, .external_lex_state = 54}, + [997] = {.lex_state = 176, .external_lex_state = 2}, + [998] = {.lex_state = 176, .external_lex_state = 54}, + [999] = {.lex_state = 176, .external_lex_state = 54}, + [1000] = {.lex_state = 176, .external_lex_state = 2}, + [1001] = {.lex_state = 176, .external_lex_state = 2}, + [1002] = {.lex_state = 176, .external_lex_state = 54}, + [1003] = {.lex_state = 176, .external_lex_state = 2}, + [1004] = {.lex_state = 176, .external_lex_state = 54}, + [1005] = {.lex_state = 176, .external_lex_state = 54}, + [1006] = {.lex_state = 176, .external_lex_state = 2}, + [1007] = {.lex_state = 176, .external_lex_state = 2}, + [1008] = {.lex_state = 176, .external_lex_state = 2}, + [1009] = {.lex_state = 176, .external_lex_state = 54}, + [1010] = {.lex_state = 176, .external_lex_state = 54}, + [1011] = {.lex_state = 176, .external_lex_state = 2}, + [1012] = {.lex_state = 176, .external_lex_state = 54}, + [1013] = {.lex_state = 176, .external_lex_state = 54}, + [1014] = {.lex_state = 176, .external_lex_state = 54}, + [1015] = {.lex_state = 176, .external_lex_state = 54}, + [1016] = {.lex_state = 176, .external_lex_state = 2}, + [1017] = {.lex_state = 176, .external_lex_state = 54}, + [1018] = {.lex_state = 176, .external_lex_state = 2}, + [1019] = {.lex_state = 176, .external_lex_state = 54}, + [1020] = {.lex_state = 176, .external_lex_state = 54}, + [1021] = {.lex_state = 176, .external_lex_state = 2}, + [1022] = {.lex_state = 176, .external_lex_state = 54}, + [1023] = {.lex_state = 176, .external_lex_state = 54}, + [1024] = {.lex_state = 176, .external_lex_state = 2}, + [1025] = {.lex_state = 176, .external_lex_state = 2}, + [1026] = {.lex_state = 176, .external_lex_state = 2}, + [1027] = {.lex_state = 176, .external_lex_state = 54}, + [1028] = {.lex_state = 176, .external_lex_state = 2}, + [1029] = {.lex_state = 176, .external_lex_state = 2}, + [1030] = {.lex_state = 176, .external_lex_state = 54}, + [1031] = {.lex_state = 176, .external_lex_state = 54}, + [1032] = {.lex_state = 176, .external_lex_state = 2}, + [1033] = {.lex_state = 176, .external_lex_state = 54}, + [1034] = {.lex_state = 176, .external_lex_state = 2}, + [1035] = {.lex_state = 176, .external_lex_state = 54}, + [1036] = {.lex_state = 176, .external_lex_state = 2}, + [1037] = {.lex_state = 176, .external_lex_state = 2}, + [1038] = {.lex_state = 176, .external_lex_state = 2}, + [1039] = {.lex_state = 176, .external_lex_state = 2}, + [1040] = {.lex_state = 176, .external_lex_state = 54}, + [1041] = {.lex_state = 176, .external_lex_state = 54}, + [1042] = {.lex_state = 176, .external_lex_state = 2}, + [1043] = {.lex_state = 176, .external_lex_state = 2}, + [1044] = {.lex_state = 176, .external_lex_state = 54}, + [1045] = {.lex_state = 176, .external_lex_state = 2}, + [1046] = {.lex_state = 176, .external_lex_state = 2}, + [1047] = {.lex_state = 176, .external_lex_state = 2}, + [1048] = {.lex_state = 176, .external_lex_state = 2}, + [1049] = {.lex_state = 176, .external_lex_state = 2}, + [1050] = {.lex_state = 176, .external_lex_state = 2}, + [1051] = {.lex_state = 176, .external_lex_state = 2}, + [1052] = {.lex_state = 176, .external_lex_state = 2}, + [1053] = {.lex_state = 168, .external_lex_state = 5}, + [1054] = {.lex_state = 168, .external_lex_state = 5}, + [1055] = {.lex_state = 176, .external_lex_state = 2}, + [1056] = {.lex_state = 176, .external_lex_state = 2}, + [1057] = {.lex_state = 176, .external_lex_state = 2}, + [1058] = {.lex_state = 38, .external_lex_state = 2}, + [1059] = {.lex_state = 176, .external_lex_state = 2}, + [1060] = {.lex_state = 176, .external_lex_state = 2}, + [1061] = {.lex_state = 176, .external_lex_state = 2}, + [1062] = {.lex_state = 176, .external_lex_state = 2}, + [1063] = {.lex_state = 38, .external_lex_state = 2}, + [1064] = {.lex_state = 176, .external_lex_state = 2}, + [1065] = {.lex_state = 176, .external_lex_state = 2}, + [1066] = {.lex_state = 176, .external_lex_state = 2}, + [1067] = {.lex_state = 176, .external_lex_state = 2}, + [1068] = {.lex_state = 38, .external_lex_state = 2}, + [1069] = {.lex_state = 176, .external_lex_state = 2}, + [1070] = {.lex_state = 176, .external_lex_state = 2}, + [1071] = {.lex_state = 176, .external_lex_state = 2}, + [1072] = {.lex_state = 38, .external_lex_state = 2}, + [1073] = {.lex_state = 176, .external_lex_state = 2}, + [1074] = {.lex_state = 176, .external_lex_state = 2}, [1075] = {.lex_state = 38, .external_lex_state = 2}, - [1076] = {.lex_state = 38, .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 = 38, .external_lex_state = 2}, + [1076] = {.lex_state = 176, .external_lex_state = 2}, + [1077] = {.lex_state = 176, .external_lex_state = 2}, + [1078] = {.lex_state = 38, .external_lex_state = 2}, + [1079] = {.lex_state = 176, .external_lex_state = 2}, + [1080] = {.lex_state = 176, .external_lex_state = 2}, [1081] = {.lex_state = 38, .external_lex_state = 2}, [1082] = {.lex_state = 38, .external_lex_state = 2}, - [1083] = {.lex_state = 175, .external_lex_state = 2}, - [1084] = {.lex_state = 175, .external_lex_state = 2}, - [1085] = {.lex_state = 175, .external_lex_state = 2}, - [1086] = {.lex_state = 38, .external_lex_state = 2}, + [1083] = {.lex_state = 38, .external_lex_state = 2}, + [1084] = {.lex_state = 38, .external_lex_state = 2}, + [1085] = {.lex_state = 38, .external_lex_state = 2}, + [1086] = {.lex_state = 176, .external_lex_state = 2}, [1087] = {.lex_state = 38, .external_lex_state = 2}, - [1088] = {.lex_state = 175, .external_lex_state = 2}, - [1089] = {.lex_state = 175, .external_lex_state = 2}, - [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 = 38, .external_lex_state = 2}, - [1095] = {.lex_state = 38, .external_lex_state = 2}, - [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 = 175, .external_lex_state = 2}, - [1100] = {.lex_state = 38, .external_lex_state = 2}, - [1101] = {.lex_state = 38, .external_lex_state = 2}, - [1102] = {.lex_state = 175, .external_lex_state = 2}, - [1103] = {.lex_state = 175, .external_lex_state = 2}, - [1104] = {.lex_state = 38, .external_lex_state = 2}, + [1088] = {.lex_state = 176, .external_lex_state = 2}, + [1089] = {.lex_state = 176, .external_lex_state = 2}, + [1090] = {.lex_state = 176, .external_lex_state = 2}, + [1091] = {.lex_state = 176, .external_lex_state = 2}, + [1092] = {.lex_state = 38, .external_lex_state = 2}, + [1093] = {.lex_state = 176, .external_lex_state = 2}, + [1094] = {.lex_state = 176, .external_lex_state = 2}, + [1095] = {.lex_state = 176, .external_lex_state = 2}, + [1096] = {.lex_state = 176, .external_lex_state = 2}, + [1097] = {.lex_state = 38, .external_lex_state = 2}, + [1098] = {.lex_state = 176, .external_lex_state = 2}, + [1099] = {.lex_state = 38, .external_lex_state = 2}, + [1100] = {.lex_state = 176, .external_lex_state = 2}, + [1101] = {.lex_state = 176, .external_lex_state = 2}, + [1102] = {.lex_state = 176, .external_lex_state = 2}, + [1103] = {.lex_state = 176, .external_lex_state = 2}, + [1104] = {.lex_state = 169, .external_lex_state = 6}, [1105] = {.lex_state = 38, .external_lex_state = 2}, - [1106] = {.lex_state = 175, .external_lex_state = 2}, - [1107] = {.lex_state = 38, .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 = 175, .external_lex_state = 2}, - [1112] = {.lex_state = 175, .external_lex_state = 2}, - [1113] = {.lex_state = 175, .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 = 175, .external_lex_state = 2}, - [1125] = {.lex_state = 175, .external_lex_state = 2}, - [1126] = {.lex_state = 38, .external_lex_state = 2}, - [1127] = {.lex_state = 175, .external_lex_state = 2}, - [1128] = {.lex_state = 175, .external_lex_state = 2}, - [1129] = {.lex_state = 175, .external_lex_state = 2}, - [1130] = {.lex_state = 175, .external_lex_state = 2}, - [1131] = {.lex_state = 175, .external_lex_state = 2}, - [1132] = {.lex_state = 175, .external_lex_state = 2}, - [1133] = {.lex_state = 175, .external_lex_state = 2}, - [1134] = {.lex_state = 175, .external_lex_state = 2}, - [1135] = {.lex_state = 38, .external_lex_state = 2}, - [1136] = {.lex_state = 175, .external_lex_state = 2}, - [1137] = {.lex_state = 168, .external_lex_state = 6}, - [1138] = {.lex_state = 38, .external_lex_state = 2}, - [1139] = {.lex_state = 175, .external_lex_state = 2}, - [1140] = {.lex_state = 175, .external_lex_state = 2}, - [1141] = {.lex_state = 175, .external_lex_state = 2}, + [1106] = {.lex_state = 176, .external_lex_state = 2}, + [1107] = {.lex_state = 176, .external_lex_state = 2}, + [1108] = {.lex_state = 176, .external_lex_state = 2}, + [1109] = {.lex_state = 176, .external_lex_state = 2}, + [1110] = {.lex_state = 38, .external_lex_state = 2}, + [1111] = {.lex_state = 176, .external_lex_state = 2}, + [1112] = {.lex_state = 38, .external_lex_state = 2}, + [1113] = {.lex_state = 176, .external_lex_state = 2}, + [1114] = {.lex_state = 176, .external_lex_state = 2}, + [1115] = {.lex_state = 38, .external_lex_state = 2}, + [1116] = {.lex_state = 176, .external_lex_state = 2}, + [1117] = {.lex_state = 176, .external_lex_state = 2}, + [1118] = {.lex_state = 38, .external_lex_state = 2}, + [1119] = {.lex_state = 38, .external_lex_state = 2}, + [1120] = {.lex_state = 38, .external_lex_state = 2}, + [1121] = {.lex_state = 176, .external_lex_state = 2}, + [1122] = {.lex_state = 176, .external_lex_state = 2}, + [1123] = {.lex_state = 176, .external_lex_state = 2}, + [1124] = {.lex_state = 176, .external_lex_state = 2}, + [1125] = {.lex_state = 176, .external_lex_state = 2}, + [1126] = {.lex_state = 176, .external_lex_state = 2}, + [1127] = {.lex_state = 176, .external_lex_state = 2}, + [1128] = {.lex_state = 176, .external_lex_state = 2}, + [1129] = {.lex_state = 176, .external_lex_state = 2}, + [1130] = {.lex_state = 176, .external_lex_state = 2}, + [1131] = {.lex_state = 176, .external_lex_state = 2}, + [1132] = {.lex_state = 176, .external_lex_state = 2}, + [1133] = {.lex_state = 38, .external_lex_state = 2}, + [1134] = {.lex_state = 176, .external_lex_state = 2}, + [1135] = {.lex_state = 176, .external_lex_state = 2}, + [1136] = {.lex_state = 176, .external_lex_state = 2}, + [1137] = {.lex_state = 176, .external_lex_state = 2}, + [1138] = {.lex_state = 176, .external_lex_state = 2}, + [1139] = {.lex_state = 176, .external_lex_state = 2}, + [1140] = {.lex_state = 176, .external_lex_state = 2}, + [1141] = {.lex_state = 176, .external_lex_state = 2}, [1142] = {.lex_state = 44, .external_lex_state = 2}, - [1143] = {.lex_state = 175, .external_lex_state = 2}, - [1144] = {.lex_state = 44, .external_lex_state = 2}, - [1145] = {.lex_state = 175, .external_lex_state = 2}, + [1143] = {.lex_state = 176, .external_lex_state = 2}, + [1144] = {.lex_state = 176, .external_lex_state = 2}, + [1145] = {.lex_state = 44, .external_lex_state = 2}, [1146] = {.lex_state = 44, .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 = 175, .external_lex_state = 2}, - [1151] = {.lex_state = 175, .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 = 175, .external_lex_state = 2}, - [1156] = {.lex_state = 175, .external_lex_state = 2}, - [1157] = {.lex_state = 175, .external_lex_state = 2}, - [1158] = {.lex_state = 175, .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}, - [1162] = {.lex_state = 175, .external_lex_state = 2}, - [1163] = {.lex_state = 175, .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 = 175, .external_lex_state = 2}, - [1169] = {.lex_state = 175, .external_lex_state = 2}, - [1170] = {.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 = 175, .external_lex_state = 2}, - [1174] = {.lex_state = 175, .external_lex_state = 2}, - [1175] = {.lex_state = 44, .external_lex_state = 2}, - [1176] = {.lex_state = 44, .external_lex_state = 2}, - [1177] = {.lex_state = 175, .external_lex_state = 2}, + [1147] = {.lex_state = 44, .external_lex_state = 2}, + [1148] = {.lex_state = 44, .external_lex_state = 2}, + [1149] = {.lex_state = 176, .external_lex_state = 2}, + [1150] = {.lex_state = 176, .external_lex_state = 2}, + [1151] = {.lex_state = 176, .external_lex_state = 2}, + [1152] = {.lex_state = 176, .external_lex_state = 2}, + [1153] = {.lex_state = 176, .external_lex_state = 2}, + [1154] = {.lex_state = 44, .external_lex_state = 2}, + [1155] = {.lex_state = 176, .external_lex_state = 2}, + [1156] = {.lex_state = 176, .external_lex_state = 2}, + [1157] = {.lex_state = 44, .external_lex_state = 2}, + [1158] = {.lex_state = 44, .external_lex_state = 2}, + [1159] = {.lex_state = 176, .external_lex_state = 2}, + [1160] = {.lex_state = 176, .external_lex_state = 2}, + [1161] = {.lex_state = 44, .external_lex_state = 2}, + [1162] = {.lex_state = 176, .external_lex_state = 2}, + [1163] = {.lex_state = 176, .external_lex_state = 2}, + [1164] = {.lex_state = 176, .external_lex_state = 2}, + [1165] = {.lex_state = 44, .external_lex_state = 2}, + [1166] = {.lex_state = 44, .external_lex_state = 2}, + [1167] = {.lex_state = 176, .external_lex_state = 2}, + [1168] = {.lex_state = 44, .external_lex_state = 2}, + [1169] = {.lex_state = 176, .external_lex_state = 2}, + [1170] = {.lex_state = 176, .external_lex_state = 2}, + [1171] = {.lex_state = 176, .external_lex_state = 2}, + [1172] = {.lex_state = 176, .external_lex_state = 2}, + [1173] = {.lex_state = 176, .external_lex_state = 2}, + [1174] = {.lex_state = 44, .external_lex_state = 2}, + [1175] = {.lex_state = 176, .external_lex_state = 2}, + [1176] = {.lex_state = 176, .external_lex_state = 2}, + [1177] = {.lex_state = 176, .external_lex_state = 2}, [1178] = {.lex_state = 44, .external_lex_state = 2}, - [1179] = {.lex_state = 175, .external_lex_state = 2}, - [1180] = {.lex_state = 175, .external_lex_state = 2}, + [1179] = {.lex_state = 176, .external_lex_state = 2}, + [1180] = {.lex_state = 44, .external_lex_state = 2}, [1181] = {.lex_state = 44, .external_lex_state = 2}, - [1182] = {.lex_state = 175, .external_lex_state = 2}, + [1182] = {.lex_state = 176, .external_lex_state = 2}, [1183] = {.lex_state = 44, .external_lex_state = 2}, - [1184] = {.lex_state = 175, .external_lex_state = 2}, - [1185] = {.lex_state = 44, .external_lex_state = 2}, - [1186] = {.lex_state = 175, .external_lex_state = 2}, - [1187] = {.lex_state = 175, .external_lex_state = 2}, - [1188] = {.lex_state = 175, .external_lex_state = 2}, - [1189] = {.lex_state = 44, .external_lex_state = 2}, - [1190] = {.lex_state = 175, .external_lex_state = 2}, - [1191] = {.lex_state = 175, .external_lex_state = 2}, - [1192] = {.lex_state = 44, .external_lex_state = 2}, - [1193] = {.lex_state = 175, .external_lex_state = 2}, - [1194] = {.lex_state = 175, .external_lex_state = 2}, - [1195] = {.lex_state = 175, .external_lex_state = 2}, + [1184] = {.lex_state = 44, .external_lex_state = 2}, + [1185] = {.lex_state = 176, .external_lex_state = 2}, + [1186] = {.lex_state = 176, .external_lex_state = 2}, + [1187] = {.lex_state = 176, .external_lex_state = 2}, + [1188] = {.lex_state = 44, .external_lex_state = 2}, + [1189] = {.lex_state = 176, .external_lex_state = 2}, + [1190] = {.lex_state = 44, .external_lex_state = 2}, + [1191] = {.lex_state = 176, .external_lex_state = 2}, + [1192] = {.lex_state = 176, .external_lex_state = 2}, + [1193] = {.lex_state = 176, .external_lex_state = 2}, + [1194] = {.lex_state = 44, .external_lex_state = 2}, + [1195] = {.lex_state = 176, .external_lex_state = 2}, [1196] = {.lex_state = 44, .external_lex_state = 2}, - [1197] = {.lex_state = 175, .external_lex_state = 2}, - [1198] = {.lex_state = 44, .external_lex_state = 2}, - [1199] = {.lex_state = 175, .external_lex_state = 2}, - [1200] = {.lex_state = 175, .external_lex_state = 2}, - [1201] = {.lex_state = 175, .external_lex_state = 2}, + [1197] = {.lex_state = 176, .external_lex_state = 2}, + [1198] = {.lex_state = 176, .external_lex_state = 2}, + [1199] = {.lex_state = 176, .external_lex_state = 2}, + [1200] = {.lex_state = 168, .external_lex_state = 7}, + [1201] = {.lex_state = 176, .external_lex_state = 2}, [1202] = {.lex_state = 44, .external_lex_state = 2}, - [1203] = {.lex_state = 175, .external_lex_state = 2}, - [1204] = {.lex_state = 44, .external_lex_state = 2}, - [1205] = {.lex_state = 175, .external_lex_state = 2}, - [1206] = {.lex_state = 175, .external_lex_state = 2}, - [1207] = {.lex_state = 175, .external_lex_state = 2}, - [1208] = {.lex_state = 175, .external_lex_state = 2}, - [1209] = {.lex_state = 44, .external_lex_state = 2}, - [1210] = {.lex_state = 175, .external_lex_state = 2}, - [1211] = {.lex_state = 44, .external_lex_state = 2}, - [1212] = {.lex_state = 175, .external_lex_state = 2}, - [1213] = {.lex_state = 175, .external_lex_state = 2}, - [1214] = {.lex_state = 175, .external_lex_state = 2}, - [1215] = {.lex_state = 167, .external_lex_state = 7}, - [1216] = {.lex_state = 175, .external_lex_state = 2}, - [1217] = {.lex_state = 44, .external_lex_state = 2}, - [1218] = {.lex_state = 175, .external_lex_state = 2}, - [1219] = {.lex_state = 44, .external_lex_state = 2}, - [1220] = {.lex_state = 175, .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}, - [1227] = {.lex_state = 175, .external_lex_state = 2}, - [1228] = {.lex_state = 175, .external_lex_state = 2}, - [1229] = {.lex_state = 44, .external_lex_state = 2}, - [1230] = {.lex_state = 175, .external_lex_state = 2}, - [1231] = {.lex_state = 175, .external_lex_state = 2}, - [1232] = {.lex_state = 175, .external_lex_state = 2}, - [1233] = {.lex_state = 44, .external_lex_state = 2}, - [1234] = {.lex_state = 175, .external_lex_state = 2}, - [1235] = {.lex_state = 175, .external_lex_state = 2}, - [1236] = {.lex_state = 175, .external_lex_state = 2}, - [1237] = {.lex_state = 175, .external_lex_state = 2}, - [1238] = {.lex_state = 44, .external_lex_state = 2}, - [1239] = {.lex_state = 44, .external_lex_state = 2}, - [1240] = {.lex_state = 175, .external_lex_state = 2}, - [1241] = {.lex_state = 44, .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}, - [1246] = {.lex_state = 175, .external_lex_state = 2}, - [1247] = {.lex_state = 175, .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}, + [1203] = {.lex_state = 176, .external_lex_state = 2}, + [1204] = {.lex_state = 176, .external_lex_state = 2}, + [1205] = {.lex_state = 176, .external_lex_state = 2}, + [1206] = {.lex_state = 44, .external_lex_state = 2}, + [1207] = {.lex_state = 176, .external_lex_state = 2}, + [1208] = {.lex_state = 44, .external_lex_state = 2}, + [1209] = {.lex_state = 176, .external_lex_state = 2}, + [1210] = {.lex_state = 176, .external_lex_state = 2}, + [1211] = {.lex_state = 176, .external_lex_state = 2}, + [1212] = {.lex_state = 176, .external_lex_state = 2}, + [1213] = {.lex_state = 176, .external_lex_state = 2}, + [1214] = {.lex_state = 44, .external_lex_state = 2}, + [1215] = {.lex_state = 176, .external_lex_state = 2}, + [1216] = {.lex_state = 176, .external_lex_state = 2}, + [1217] = {.lex_state = 176, .external_lex_state = 2}, + [1218] = {.lex_state = 176, .external_lex_state = 2}, + [1219] = {.lex_state = 176, .external_lex_state = 2}, + [1220] = {.lex_state = 44, .external_lex_state = 2}, + [1221] = {.lex_state = 176, .external_lex_state = 2}, + [1222] = {.lex_state = 176, .external_lex_state = 2}, + [1223] = {.lex_state = 176, .external_lex_state = 2}, + [1224] = {.lex_state = 44, .external_lex_state = 2}, + [1225] = {.lex_state = 44, .external_lex_state = 2}, + [1226] = {.lex_state = 44, .external_lex_state = 2}, + [1227] = {.lex_state = 44, .external_lex_state = 2}, + [1228] = {.lex_state = 176, .external_lex_state = 2}, + [1229] = {.lex_state = 176, .external_lex_state = 2}, + [1230] = {.lex_state = 176, .external_lex_state = 2}, + [1231] = {.lex_state = 176, .external_lex_state = 2}, + [1232] = {.lex_state = 44, .external_lex_state = 2}, + [1233] = {.lex_state = 176, .external_lex_state = 2}, + [1234] = {.lex_state = 176, .external_lex_state = 2}, + [1235] = {.lex_state = 176, .external_lex_state = 2}, + [1236] = {.lex_state = 44, .external_lex_state = 2}, + [1237] = {.lex_state = 176, .external_lex_state = 2}, + [1238] = {.lex_state = 176, .external_lex_state = 2}, + [1239] = {.lex_state = 176, .external_lex_state = 2}, + [1240] = {.lex_state = 176, .external_lex_state = 2}, + [1241] = {.lex_state = 176, .external_lex_state = 2}, + [1242] = {.lex_state = 44, .external_lex_state = 2}, + [1243] = {.lex_state = 44, .external_lex_state = 2}, + [1244] = {.lex_state = 176, .external_lex_state = 2}, + [1245] = {.lex_state = 176, .external_lex_state = 2}, + [1246] = {.lex_state = 44, .external_lex_state = 2}, + [1247] = {.lex_state = 176, .external_lex_state = 2}, + [1248] = {.lex_state = 176, .external_lex_state = 2}, + [1249] = {.lex_state = 44, .external_lex_state = 2}, + [1250] = {.lex_state = 44, .external_lex_state = 2}, [1251] = {.lex_state = 44, .external_lex_state = 2}, - [1252] = {.lex_state = 175, .external_lex_state = 2}, - [1253] = {.lex_state = 175, .external_lex_state = 2}, - [1254] = {.lex_state = 175, .external_lex_state = 2}, - [1255] = {.lex_state = 44, .external_lex_state = 2}, - [1256] = {.lex_state = 175, .external_lex_state = 2}, - [1257] = {.lex_state = 175, .external_lex_state = 2}, - [1258] = {.lex_state = 175, .external_lex_state = 2}, - [1259] = {.lex_state = 175, .external_lex_state = 2}, - [1260] = {.lex_state = 175, .external_lex_state = 2}, - [1261] = {.lex_state = 44, .external_lex_state = 2}, - [1262] = {.lex_state = 175, .external_lex_state = 2}, - [1263] = {.lex_state = 44, .external_lex_state = 2}, - [1264] = {.lex_state = 175, .external_lex_state = 2}, - [1265] = {.lex_state = 175, .external_lex_state = 2}, - [1266] = {.lex_state = 175, .external_lex_state = 2}, - [1267] = {.lex_state = 175, .external_lex_state = 2}, - [1268] = {.lex_state = 175, .external_lex_state = 2}, - [1269] = {.lex_state = 175, .external_lex_state = 2}, - [1270] = {.lex_state = 175, .external_lex_state = 2}, - [1271] = {.lex_state = 175, .external_lex_state = 2}, - [1272] = {.lex_state = 44, .external_lex_state = 2}, - [1273] = {.lex_state = 175, .external_lex_state = 2}, - [1274] = {.lex_state = 44, .external_lex_state = 2}, - [1275] = {.lex_state = 175, .external_lex_state = 2}, - [1276] = {.lex_state = 175, .external_lex_state = 2}, - [1277] = {.lex_state = 175, .external_lex_state = 2}, - [1278] = {.lex_state = 175, .external_lex_state = 2}, - [1279] = {.lex_state = 175, .external_lex_state = 2}, - [1280] = {.lex_state = 175, .external_lex_state = 2}, - [1281] = {.lex_state = 175, .external_lex_state = 2}, - [1282] = {.lex_state = 175, .external_lex_state = 2}, - [1283] = {.lex_state = 175, .external_lex_state = 2}, - [1284] = {.lex_state = 175, .external_lex_state = 2}, - [1285] = {.lex_state = 175, .external_lex_state = 2}, - [1286] = {.lex_state = 175, .external_lex_state = 2}, - [1287] = {.lex_state = 175, .external_lex_state = 2}, - [1288] = {.lex_state = 175, .external_lex_state = 2}, - [1289] = {.lex_state = 175, .external_lex_state = 2}, - [1290] = {.lex_state = 175, .external_lex_state = 2}, - [1291] = {.lex_state = 175, .external_lex_state = 2}, - [1292] = {.lex_state = 175, .external_lex_state = 2}, - [1293] = {.lex_state = 175, .external_lex_state = 2}, - [1294] = {.lex_state = 44, .external_lex_state = 2}, - [1295] = {.lex_state = 44, .external_lex_state = 2}, - [1296] = {.lex_state = 44, .external_lex_state = 2}, - [1297] = {.lex_state = 44, .external_lex_state = 2}, - [1298] = {.lex_state = 44, .external_lex_state = 2}, + [1252] = {.lex_state = 44, .external_lex_state = 2}, + [1253] = {.lex_state = 176, .external_lex_state = 2}, + [1254] = {.lex_state = 44, .external_lex_state = 2}, + [1255] = {.lex_state = 176, .external_lex_state = 2}, + [1256] = {.lex_state = 176, .external_lex_state = 2}, + [1257] = {.lex_state = 176, .external_lex_state = 2}, + [1258] = {.lex_state = 44, .external_lex_state = 2}, + [1259] = {.lex_state = 44, .external_lex_state = 2}, + [1260] = {.lex_state = 176, .external_lex_state = 2}, + [1261] = {.lex_state = 176, .external_lex_state = 2}, + [1262] = {.lex_state = 44, .external_lex_state = 2}, + [1263] = {.lex_state = 176, .external_lex_state = 2}, + [1264] = {.lex_state = 176, .external_lex_state = 2}, + [1265] = {.lex_state = 176, .external_lex_state = 2}, + [1266] = {.lex_state = 44, .external_lex_state = 2}, + [1267] = {.lex_state = 44, .external_lex_state = 2}, + [1268] = {.lex_state = 44, .external_lex_state = 2}, + [1269] = {.lex_state = 176, .external_lex_state = 2}, + [1270] = {.lex_state = 176, .external_lex_state = 2}, + [1271] = {.lex_state = 176, .external_lex_state = 2}, + [1272] = {.lex_state = 176, .external_lex_state = 2}, + [1273] = {.lex_state = 176, .external_lex_state = 2}, + [1274] = {.lex_state = 176, .external_lex_state = 2}, + [1275] = {.lex_state = 176, .external_lex_state = 2}, + [1276] = {.lex_state = 176, .external_lex_state = 2}, + [1277] = {.lex_state = 176, .external_lex_state = 2}, + [1278] = {.lex_state = 44, .external_lex_state = 2}, + [1279] = {.lex_state = 176, .external_lex_state = 2}, + [1280] = {.lex_state = 176, .external_lex_state = 2}, + [1281] = {.lex_state = 176, .external_lex_state = 2}, + [1282] = {.lex_state = 176, .external_lex_state = 2}, + [1283] = {.lex_state = 176, .external_lex_state = 2}, + [1284] = {.lex_state = 44, .external_lex_state = 2}, + [1285] = {.lex_state = 176, .external_lex_state = 2}, + [1286] = {.lex_state = 176, .external_lex_state = 2}, + [1287] = {.lex_state = 176, .external_lex_state = 2}, + [1288] = {.lex_state = 176, .external_lex_state = 2}, + [1289] = {.lex_state = 176, .external_lex_state = 2}, + [1290] = {.lex_state = 176, .external_lex_state = 2}, + [1291] = {.lex_state = 176, .external_lex_state = 2}, + [1292] = {.lex_state = 44, .external_lex_state = 2}, + [1293] = {.lex_state = 176, .external_lex_state = 2}, + [1294] = {.lex_state = 176, .external_lex_state = 2}, + [1295] = {.lex_state = 176, .external_lex_state = 2}, + [1296] = {.lex_state = 176, .external_lex_state = 2}, + [1297] = {.lex_state = 176, .external_lex_state = 2}, + [1298] = {.lex_state = 176, .external_lex_state = 2}, [1299] = {.lex_state = 44, .external_lex_state = 2}, - [1300] = {.lex_state = 44, .external_lex_state = 2}, - [1301] = {.lex_state = 44, .external_lex_state = 2}, - [1302] = {.lex_state = 175, .external_lex_state = 2}, + [1300] = {.lex_state = 176, .external_lex_state = 2}, + [1301] = {.lex_state = 176, .external_lex_state = 2}, + [1302] = {.lex_state = 176, .external_lex_state = 2}, [1303] = {.lex_state = 44, .external_lex_state = 2}, [1304] = {.lex_state = 44, .external_lex_state = 2}, [1305] = {.lex_state = 44, .external_lex_state = 2}, - [1306] = {.lex_state = 44, .external_lex_state = 2}, - [1307] = {.lex_state = 44, .external_lex_state = 2}, - [1308] = {.lex_state = 44, .external_lex_state = 2}, - [1309] = {.lex_state = 44, .external_lex_state = 2}, - [1310] = {.lex_state = 44, .external_lex_state = 2}, - [1311] = {.lex_state = 44, .external_lex_state = 2}, - [1312] = {.lex_state = 44, .external_lex_state = 2}, + [1306] = {.lex_state = 176, .external_lex_state = 2}, + [1307] = {.lex_state = 176, .external_lex_state = 2}, + [1308] = {.lex_state = 176, .external_lex_state = 2}, + [1309] = {.lex_state = 168, .external_lex_state = 7}, + [1310] = {.lex_state = 176, .external_lex_state = 2}, + [1311] = {.lex_state = 176, .external_lex_state = 2}, + [1312] = {.lex_state = 176, .external_lex_state = 2}, [1313] = {.lex_state = 44, .external_lex_state = 2}, [1314] = {.lex_state = 44, .external_lex_state = 2}, - [1315] = {.lex_state = 44, .external_lex_state = 2}, + [1315] = {.lex_state = 176, .external_lex_state = 2}, [1316] = {.lex_state = 44, .external_lex_state = 2}, - [1317] = {.lex_state = 44, .external_lex_state = 2}, - [1318] = {.lex_state = 44, .external_lex_state = 2}, - [1319] = {.lex_state = 44, .external_lex_state = 2}, - [1320] = {.lex_state = 44, .external_lex_state = 2}, - [1321] = {.lex_state = 44, .external_lex_state = 2}, + [1317] = {.lex_state = 176, .external_lex_state = 2}, + [1318] = {.lex_state = 176, .external_lex_state = 2}, + [1319] = {.lex_state = 176, .external_lex_state = 2}, + [1320] = {.lex_state = 176, .external_lex_state = 2}, + [1321] = {.lex_state = 176, .external_lex_state = 2}, [1322] = {.lex_state = 44, .external_lex_state = 2}, [1323] = {.lex_state = 44, .external_lex_state = 2}, - [1324] = {.lex_state = 44, .external_lex_state = 2}, - [1325] = {.lex_state = 167, .external_lex_state = 7}, - [1326] = {.lex_state = 175, .external_lex_state = 2}, - [1327] = {.lex_state = 175, .external_lex_state = 2}, - [1328] = {.lex_state = 175, .external_lex_state = 2}, - [1329] = {.lex_state = 175, .external_lex_state = 2}, - [1330] = {.lex_state = 175, .external_lex_state = 2}, - [1331] = {.lex_state = 175, .external_lex_state = 2}, - [1332] = {.lex_state = 175, .external_lex_state = 2}, - [1333] = {.lex_state = 175, .external_lex_state = 2}, - [1334] = {.lex_state = 175, .external_lex_state = 2}, - [1335] = {.lex_state = 175, .external_lex_state = 2}, - [1336] = {.lex_state = 175, .external_lex_state = 2}, - [1337] = {.lex_state = 175, .external_lex_state = 2}, - [1338] = {.lex_state = 175, .external_lex_state = 2}, - [1339] = {.lex_state = 175, .external_lex_state = 2}, - [1340] = {.lex_state = 175, .external_lex_state = 2}, - [1341] = {.lex_state = 175, .external_lex_state = 2}, - [1342] = {.lex_state = 175, .external_lex_state = 2}, - [1343] = {.lex_state = 175, .external_lex_state = 2}, - [1344] = {.lex_state = 175, .external_lex_state = 2}, - [1345] = {.lex_state = 175, .external_lex_state = 2}, - [1346] = {.lex_state = 175, .external_lex_state = 2}, - [1347] = {.lex_state = 175, .external_lex_state = 2}, - [1348] = {.lex_state = 175, .external_lex_state = 2}, - [1349] = {.lex_state = 175, .external_lex_state = 2}, - [1350] = {.lex_state = 175, .external_lex_state = 2}, - [1351] = {.lex_state = 175, .external_lex_state = 2}, - [1352] = {.lex_state = 175, .external_lex_state = 2}, - [1353] = {.lex_state = 175, .external_lex_state = 2}, - [1354] = {.lex_state = 175, .external_lex_state = 2}, - [1355] = {.lex_state = 175, .external_lex_state = 2}, - [1356] = {.lex_state = 175, .external_lex_state = 2}, - [1357] = {.lex_state = 175, .external_lex_state = 2}, - [1358] = {.lex_state = 175, .external_lex_state = 2}, - [1359] = {.lex_state = 175, .external_lex_state = 2}, - [1360] = {.lex_state = 175, .external_lex_state = 2}, - [1361] = {.lex_state = 175, .external_lex_state = 2}, - [1362] = {.lex_state = 175, .external_lex_state = 2}, - [1363] = {.lex_state = 175, .external_lex_state = 2}, - [1364] = {.lex_state = 175, .external_lex_state = 2}, - [1365] = {.lex_state = 175, .external_lex_state = 2}, - [1366] = {.lex_state = 175, .external_lex_state = 2}, - [1367] = {.lex_state = 175, .external_lex_state = 2}, - [1368] = {.lex_state = 175, .external_lex_state = 2}, - [1369] = {.lex_state = 175, .external_lex_state = 2}, - [1370] = {.lex_state = 175, .external_lex_state = 2}, - [1371] = {.lex_state = 175, .external_lex_state = 2}, - [1372] = {.lex_state = 175, .external_lex_state = 2}, - [1373] = {.lex_state = 175, .external_lex_state = 2}, - [1374] = {.lex_state = 175, .external_lex_state = 2}, - [1375] = {.lex_state = 175, .external_lex_state = 2}, - [1376] = {.lex_state = 175, .external_lex_state = 2}, - [1377] = {.lex_state = 175, .external_lex_state = 2}, - [1378] = {.lex_state = 175, .external_lex_state = 2}, - [1379] = {.lex_state = 175, .external_lex_state = 2}, - [1380] = {.lex_state = 175, .external_lex_state = 2}, - [1381] = {.lex_state = 175, .external_lex_state = 2}, - [1382] = {.lex_state = 175, .external_lex_state = 2}, - [1383] = {.lex_state = 175, .external_lex_state = 2}, - [1384] = {.lex_state = 175, .external_lex_state = 2}, - [1385] = {.lex_state = 175, .external_lex_state = 2}, - [1386] = {.lex_state = 175, .external_lex_state = 2}, - [1387] = {.lex_state = 175, .external_lex_state = 2}, - [1388] = {.lex_state = 175, .external_lex_state = 2}, - [1389] = {.lex_state = 175, .external_lex_state = 2}, - [1390] = {.lex_state = 175, .external_lex_state = 2}, - [1391] = {.lex_state = 175, .external_lex_state = 2}, - [1392] = {.lex_state = 175, .external_lex_state = 2}, - [1393] = {.lex_state = 175, .external_lex_state = 2}, - [1394] = {.lex_state = 175, .external_lex_state = 2}, - [1395] = {.lex_state = 175, .external_lex_state = 2}, - [1396] = {.lex_state = 175, .external_lex_state = 2}, - [1397] = {.lex_state = 175, .external_lex_state = 2}, - [1398] = {.lex_state = 175, .external_lex_state = 2}, - [1399] = {.lex_state = 175, .external_lex_state = 2}, - [1400] = {.lex_state = 175, .external_lex_state = 2}, - [1401] = {.lex_state = 175, .external_lex_state = 2}, - [1402] = {.lex_state = 175, .external_lex_state = 2}, - [1403] = {.lex_state = 175, .external_lex_state = 2}, - [1404] = {.lex_state = 175, .external_lex_state = 2}, - [1405] = {.lex_state = 175, .external_lex_state = 2}, - [1406] = {.lex_state = 175, .external_lex_state = 2}, - [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}, - [1411] = {.lex_state = 175, .external_lex_state = 2}, - [1412] = {.lex_state = 175, .external_lex_state = 2}, - [1413] = {.lex_state = 175, .external_lex_state = 2}, - [1414] = {.lex_state = 175, .external_lex_state = 2}, - [1415] = {.lex_state = 175, .external_lex_state = 2}, - [1416] = {.lex_state = 175, .external_lex_state = 2}, - [1417] = {.lex_state = 175, .external_lex_state = 2}, - [1418] = {.lex_state = 175, .external_lex_state = 2}, - [1419] = {.lex_state = 175, .external_lex_state = 2}, - [1420] = {.lex_state = 175, .external_lex_state = 2}, - [1421] = {.lex_state = 175, .external_lex_state = 2}, - [1422] = {.lex_state = 175, .external_lex_state = 2}, - [1423] = {.lex_state = 175, .external_lex_state = 2}, - [1424] = {.lex_state = 175, .external_lex_state = 2}, - [1425] = {.lex_state = 175, .external_lex_state = 2}, - [1426] = {.lex_state = 175, .external_lex_state = 2}, - [1427] = {.lex_state = 175, .external_lex_state = 2}, - [1428] = {.lex_state = 175, .external_lex_state = 2}, - [1429] = {.lex_state = 175, .external_lex_state = 2}, - [1430] = {.lex_state = 175, .external_lex_state = 2}, - [1431] = {.lex_state = 175, .external_lex_state = 2}, - [1432] = {.lex_state = 175, .external_lex_state = 2}, - [1433] = {.lex_state = 175, .external_lex_state = 2}, - [1434] = {.lex_state = 175, .external_lex_state = 2}, - [1435] = {.lex_state = 175, .external_lex_state = 2}, - [1436] = {.lex_state = 175, .external_lex_state = 2}, - [1437] = {.lex_state = 175, .external_lex_state = 2}, - [1438] = {.lex_state = 175, .external_lex_state = 2}, - [1439] = {.lex_state = 175, .external_lex_state = 2}, - [1440] = {.lex_state = 175, .external_lex_state = 2}, - [1441] = {.lex_state = 175, .external_lex_state = 2}, - [1442] = {.lex_state = 175, .external_lex_state = 2}, - [1443] = {.lex_state = 175, .external_lex_state = 2}, - [1444] = {.lex_state = 175, .external_lex_state = 2}, - [1445] = {.lex_state = 175, .external_lex_state = 2}, - [1446] = {.lex_state = 175, .external_lex_state = 2}, - [1447] = {.lex_state = 175, .external_lex_state = 2}, - [1448] = {.lex_state = 175, .external_lex_state = 2}, - [1449] = {.lex_state = 175, .external_lex_state = 2}, - [1450] = {.lex_state = 175, .external_lex_state = 2}, - [1451] = {.lex_state = 175, .external_lex_state = 2}, - [1452] = {.lex_state = 175, .external_lex_state = 2}, - [1453] = {.lex_state = 175, .external_lex_state = 2}, - [1454] = {.lex_state = 175, .external_lex_state = 2}, - [1455] = {.lex_state = 175, .external_lex_state = 2}, - [1456] = {.lex_state = 175, .external_lex_state = 2}, - [1457] = {.lex_state = 175, .external_lex_state = 2}, - [1458] = {.lex_state = 175, .external_lex_state = 2}, - [1459] = {.lex_state = 175, .external_lex_state = 2}, - [1460] = {.lex_state = 175, .external_lex_state = 2}, - [1461] = {.lex_state = 175, .external_lex_state = 2}, - [1462] = {.lex_state = 175, .external_lex_state = 2}, - [1463] = {.lex_state = 175, .external_lex_state = 2}, - [1464] = {.lex_state = 175, .external_lex_state = 2}, - [1465] = {.lex_state = 175, .external_lex_state = 2}, - [1466] = {.lex_state = 175, .external_lex_state = 2}, - [1467] = {.lex_state = 175, .external_lex_state = 2}, - [1468] = {.lex_state = 175, .external_lex_state = 2}, - [1469] = {.lex_state = 175, .external_lex_state = 2}, - [1470] = {.lex_state = 175, .external_lex_state = 2}, - [1471] = {.lex_state = 175, .external_lex_state = 2}, - [1472] = {.lex_state = 175, .external_lex_state = 2}, - [1473] = {.lex_state = 175, .external_lex_state = 2}, - [1474] = {.lex_state = 175, .external_lex_state = 2}, - [1475] = {.lex_state = 175, .external_lex_state = 2}, - [1476] = {.lex_state = 175, .external_lex_state = 2}, - [1477] = {.lex_state = 175, .external_lex_state = 2}, - [1478] = {.lex_state = 175, .external_lex_state = 2}, - [1479] = {.lex_state = 175, .external_lex_state = 2}, - [1480] = {.lex_state = 175, .external_lex_state = 2}, - [1481] = {.lex_state = 175, .external_lex_state = 2}, - [1482] = {.lex_state = 175, .external_lex_state = 2}, - [1483] = {.lex_state = 175, .external_lex_state = 2}, - [1484] = {.lex_state = 175, .external_lex_state = 2}, - [1485] = {.lex_state = 175, .external_lex_state = 2}, - [1486] = {.lex_state = 175, .external_lex_state = 2}, - [1487] = {.lex_state = 175, .external_lex_state = 2}, - [1488] = {.lex_state = 175, .external_lex_state = 2}, - [1489] = {.lex_state = 175, .external_lex_state = 2}, - [1490] = {.lex_state = 175, .external_lex_state = 2}, - [1491] = {.lex_state = 175, .external_lex_state = 2}, - [1492] = {.lex_state = 175, .external_lex_state = 2}, - [1493] = {.lex_state = 175, .external_lex_state = 2}, - [1494] = {.lex_state = 175, .external_lex_state = 2}, - [1495] = {.lex_state = 175, .external_lex_state = 2}, - [1496] = {.lex_state = 175, .external_lex_state = 2}, - [1497] = {.lex_state = 175, .external_lex_state = 2}, - [1498] = {.lex_state = 175, .external_lex_state = 2}, - [1499] = {.lex_state = 175, .external_lex_state = 2}, - [1500] = {.lex_state = 175, .external_lex_state = 2}, - [1501] = {.lex_state = 175, .external_lex_state = 2}, - [1502] = {.lex_state = 175, .external_lex_state = 2}, - [1503] = {.lex_state = 175, .external_lex_state = 2}, - [1504] = {.lex_state = 175, .external_lex_state = 2}, - [1505] = {.lex_state = 175, .external_lex_state = 2}, - [1506] = {.lex_state = 175, .external_lex_state = 2}, - [1507] = {.lex_state = 175, .external_lex_state = 2}, - [1508] = {.lex_state = 175, .external_lex_state = 2}, - [1509] = {.lex_state = 175, .external_lex_state = 2}, - [1510] = {.lex_state = 175, .external_lex_state = 2}, - [1511] = {.lex_state = 175, .external_lex_state = 2}, - [1512] = {.lex_state = 175, .external_lex_state = 2}, - [1513] = {.lex_state = 175, .external_lex_state = 2}, - [1514] = {.lex_state = 175, .external_lex_state = 2}, - [1515] = {.lex_state = 175, .external_lex_state = 2}, - [1516] = {.lex_state = 175, .external_lex_state = 2}, - [1517] = {.lex_state = 175, .external_lex_state = 2}, - [1518] = {.lex_state = 175, .external_lex_state = 2}, - [1519] = {.lex_state = 175, .external_lex_state = 2}, - [1520] = {.lex_state = 175, .external_lex_state = 2}, - [1521] = {.lex_state = 175, .external_lex_state = 2}, - [1522] = {.lex_state = 175, .external_lex_state = 2}, - [1523] = {.lex_state = 175, .external_lex_state = 2}, - [1524] = {.lex_state = 175, .external_lex_state = 2}, - [1525] = {.lex_state = 175, .external_lex_state = 2}, - [1526] = {.lex_state = 175, .external_lex_state = 2}, - [1527] = {.lex_state = 175, .external_lex_state = 2}, - [1528] = {.lex_state = 175, .external_lex_state = 2}, - [1529] = {.lex_state = 175, .external_lex_state = 2}, - [1530] = {.lex_state = 175, .external_lex_state = 2}, - [1531] = {.lex_state = 175, .external_lex_state = 2}, - [1532] = {.lex_state = 175, .external_lex_state = 2}, - [1533] = {.lex_state = 175, .external_lex_state = 2}, - [1534] = {.lex_state = 175, .external_lex_state = 2}, - [1535] = {.lex_state = 175, .external_lex_state = 2}, - [1536] = {.lex_state = 175, .external_lex_state = 2}, - [1537] = {.lex_state = 175, .external_lex_state = 2}, - [1538] = {.lex_state = 175, .external_lex_state = 2}, - [1539] = {.lex_state = 175, .external_lex_state = 2}, - [1540] = {.lex_state = 175, .external_lex_state = 2}, - [1541] = {.lex_state = 175, .external_lex_state = 2}, - [1542] = {.lex_state = 175, .external_lex_state = 2}, - [1543] = {.lex_state = 175, .external_lex_state = 2}, - [1544] = {.lex_state = 175, .external_lex_state = 2}, - [1545] = {.lex_state = 175, .external_lex_state = 2}, - [1546] = {.lex_state = 175, .external_lex_state = 2}, - [1547] = {.lex_state = 175, .external_lex_state = 2}, - [1548] = {.lex_state = 175, .external_lex_state = 2}, - [1549] = {.lex_state = 175, .external_lex_state = 2}, - [1550] = {.lex_state = 175, .external_lex_state = 2}, - [1551] = {.lex_state = 175, .external_lex_state = 2}, - [1552] = {.lex_state = 175, .external_lex_state = 2}, - [1553] = {.lex_state = 175, .external_lex_state = 2}, - [1554] = {.lex_state = 175, .external_lex_state = 2}, - [1555] = {.lex_state = 175, .external_lex_state = 2}, - [1556] = {.lex_state = 175, .external_lex_state = 2}, - [1557] = {.lex_state = 175, .external_lex_state = 2}, - [1558] = {.lex_state = 175, .external_lex_state = 2}, - [1559] = {.lex_state = 175, .external_lex_state = 2}, - [1560] = {.lex_state = 175, .external_lex_state = 2}, - [1561] = {.lex_state = 175, .external_lex_state = 2}, - [1562] = {.lex_state = 175, .external_lex_state = 2}, - [1563] = {.lex_state = 175, .external_lex_state = 2}, - [1564] = {.lex_state = 175, .external_lex_state = 2}, - [1565] = {.lex_state = 175, .external_lex_state = 2}, - [1566] = {.lex_state = 175, .external_lex_state = 2}, - [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}, - [1571] = {.lex_state = 175, .external_lex_state = 2}, - [1572] = {.lex_state = 175, .external_lex_state = 2}, - [1573] = {.lex_state = 175, .external_lex_state = 2}, - [1574] = {.lex_state = 175, .external_lex_state = 2}, - [1575] = {.lex_state = 175, .external_lex_state = 2}, - [1576] = {.lex_state = 175, .external_lex_state = 2}, - [1577] = {.lex_state = 175, .external_lex_state = 2}, - [1578] = {.lex_state = 175, .external_lex_state = 2}, - [1579] = {.lex_state = 175, .external_lex_state = 2}, - [1580] = {.lex_state = 175, .external_lex_state = 2}, - [1581] = {.lex_state = 175, .external_lex_state = 2}, - [1582] = {.lex_state = 175, .external_lex_state = 2}, - [1583] = {.lex_state = 175, .external_lex_state = 2}, - [1584] = {.lex_state = 175, .external_lex_state = 2}, - [1585] = {.lex_state = 175, .external_lex_state = 2}, - [1586] = {.lex_state = 175, .external_lex_state = 2}, - [1587] = {.lex_state = 175, .external_lex_state = 2}, - [1588] = {.lex_state = 175, .external_lex_state = 2}, - [1589] = {.lex_state = 175, .external_lex_state = 2}, - [1590] = {.lex_state = 175, .external_lex_state = 2}, - [1591] = {.lex_state = 175, .external_lex_state = 2}, - [1592] = {.lex_state = 175, .external_lex_state = 2}, - [1593] = {.lex_state = 175, .external_lex_state = 2}, - [1594] = {.lex_state = 175, .external_lex_state = 2}, - [1595] = {.lex_state = 175, .external_lex_state = 2}, - [1596] = {.lex_state = 175, .external_lex_state = 2}, - [1597] = {.lex_state = 175, .external_lex_state = 2}, - [1598] = {.lex_state = 175, .external_lex_state = 2}, - [1599] = {.lex_state = 175, .external_lex_state = 2}, - [1600] = {.lex_state = 175, .external_lex_state = 2}, - [1601] = {.lex_state = 175, .external_lex_state = 2}, - [1602] = {.lex_state = 175, .external_lex_state = 2}, - [1603] = {.lex_state = 175, .external_lex_state = 2}, - [1604] = {.lex_state = 175, .external_lex_state = 2}, - [1605] = {.lex_state = 175, .external_lex_state = 2}, - [1606] = {.lex_state = 175, .external_lex_state = 2}, - [1607] = {.lex_state = 175, .external_lex_state = 2}, - [1608] = {.lex_state = 175, .external_lex_state = 2}, - [1609] = {.lex_state = 175, .external_lex_state = 2}, - [1610] = {.lex_state = 175, .external_lex_state = 2}, - [1611] = {.lex_state = 175, .external_lex_state = 2}, - [1612] = {.lex_state = 175, .external_lex_state = 2}, - [1613] = {.lex_state = 175, .external_lex_state = 2}, - [1614] = {.lex_state = 175, .external_lex_state = 2}, - [1615] = {.lex_state = 175, .external_lex_state = 2}, - [1616] = {.lex_state = 175, .external_lex_state = 2}, - [1617] = {.lex_state = 175, .external_lex_state = 2}, - [1618] = {.lex_state = 175, .external_lex_state = 2}, - [1619] = {.lex_state = 175, .external_lex_state = 2}, - [1620] = {.lex_state = 175, .external_lex_state = 2}, - [1621] = {.lex_state = 175, .external_lex_state = 2}, - [1622] = {.lex_state = 175, .external_lex_state = 2}, - [1623] = {.lex_state = 175, .external_lex_state = 2}, - [1624] = {.lex_state = 175, .external_lex_state = 2}, - [1625] = {.lex_state = 175, .external_lex_state = 2}, - [1626] = {.lex_state = 175, .external_lex_state = 2}, - [1627] = {.lex_state = 175, .external_lex_state = 2}, - [1628] = {.lex_state = 175, .external_lex_state = 2}, - [1629] = {.lex_state = 175, .external_lex_state = 2}, - [1630] = {.lex_state = 175, .external_lex_state = 2}, - [1631] = {.lex_state = 175, .external_lex_state = 2}, - [1632] = {.lex_state = 175, .external_lex_state = 2}, - [1633] = {.lex_state = 175, .external_lex_state = 2}, - [1634] = {.lex_state = 175, .external_lex_state = 2}, - [1635] = {.lex_state = 175, .external_lex_state = 2}, - [1636] = {.lex_state = 175, .external_lex_state = 2}, - [1637] = {.lex_state = 175, .external_lex_state = 2}, - [1638] = {.lex_state = 175, .external_lex_state = 2}, - [1639] = {.lex_state = 175, .external_lex_state = 2}, - [1640] = {.lex_state = 175, .external_lex_state = 2}, - [1641] = {.lex_state = 175, .external_lex_state = 2}, - [1642] = {.lex_state = 175, .external_lex_state = 2}, - [1643] = {.lex_state = 175, .external_lex_state = 2}, - [1644] = {.lex_state = 175, .external_lex_state = 2}, - [1645] = {.lex_state = 175, .external_lex_state = 2}, - [1646] = {.lex_state = 175, .external_lex_state = 2}, - [1647] = {.lex_state = 175, .external_lex_state = 2}, - [1648] = {.lex_state = 175, .external_lex_state = 2}, - [1649] = {.lex_state = 175, .external_lex_state = 2}, - [1650] = {.lex_state = 175, .external_lex_state = 2}, - [1651] = {.lex_state = 175, .external_lex_state = 2}, - [1652] = {.lex_state = 175, .external_lex_state = 2}, - [1653] = {.lex_state = 175, .external_lex_state = 2}, - [1654] = {.lex_state = 175, .external_lex_state = 2}, - [1655] = {.lex_state = 175, .external_lex_state = 2}, - [1656] = {.lex_state = 175, .external_lex_state = 2}, - [1657] = {.lex_state = 175, .external_lex_state = 2}, - [1658] = {.lex_state = 175, .external_lex_state = 2}, - [1659] = {.lex_state = 175, .external_lex_state = 2}, - [1660] = {.lex_state = 175, .external_lex_state = 2}, - [1661] = {.lex_state = 175, .external_lex_state = 2}, - [1662] = {.lex_state = 175, .external_lex_state = 2}, - [1663] = {.lex_state = 175, .external_lex_state = 2}, - [1664] = {.lex_state = 175, .external_lex_state = 2}, - [1665] = {.lex_state = 175, .external_lex_state = 2}, - [1666] = {.lex_state = 175, .external_lex_state = 2}, - [1667] = {.lex_state = 175, .external_lex_state = 2}, - [1668] = {.lex_state = 175, .external_lex_state = 2}, - [1669] = {.lex_state = 175, .external_lex_state = 2}, - [1670] = {.lex_state = 175, .external_lex_state = 2}, - [1671] = {.lex_state = 175, .external_lex_state = 2}, - [1672] = {.lex_state = 175, .external_lex_state = 2}, - [1673] = {.lex_state = 175, .external_lex_state = 2}, - [1674] = {.lex_state = 175, .external_lex_state = 2}, - [1675] = {.lex_state = 175, .external_lex_state = 2}, - [1676] = {.lex_state = 175, .external_lex_state = 2}, - [1677] = {.lex_state = 175, .external_lex_state = 2}, - [1678] = {.lex_state = 175, .external_lex_state = 2}, - [1679] = {.lex_state = 175, .external_lex_state = 2}, - [1680] = {.lex_state = 175, .external_lex_state = 2}, - [1681] = {.lex_state = 175, .external_lex_state = 2}, - [1682] = {.lex_state = 175, .external_lex_state = 2}, - [1683] = {.lex_state = 175, .external_lex_state = 2}, - [1684] = {.lex_state = 175, .external_lex_state = 2}, - [1685] = {.lex_state = 175, .external_lex_state = 2}, - [1686] = {.lex_state = 175, .external_lex_state = 2}, - [1687] = {.lex_state = 175, .external_lex_state = 2}, - [1688] = {.lex_state = 175, .external_lex_state = 2}, - [1689] = {.lex_state = 175, .external_lex_state = 2}, - [1690] = {.lex_state = 175, .external_lex_state = 2}, - [1691] = {.lex_state = 175, .external_lex_state = 2}, - [1692] = {.lex_state = 175, .external_lex_state = 2}, - [1693] = {.lex_state = 175, .external_lex_state = 2}, - [1694] = {.lex_state = 175, .external_lex_state = 2}, - [1695] = {.lex_state = 175, .external_lex_state = 2}, - [1696] = {.lex_state = 175, .external_lex_state = 2}, - [1697] = {.lex_state = 175, .external_lex_state = 2}, - [1698] = {.lex_state = 175, .external_lex_state = 2}, - [1699] = {.lex_state = 175, .external_lex_state = 2}, - [1700] = {.lex_state = 175, .external_lex_state = 2}, - [1701] = {.lex_state = 175, .external_lex_state = 2}, - [1702] = {.lex_state = 175, .external_lex_state = 2}, - [1703] = {.lex_state = 175, .external_lex_state = 2}, - [1704] = {.lex_state = 175, .external_lex_state = 2}, - [1705] = {.lex_state = 175, .external_lex_state = 2}, - [1706] = {.lex_state = 175, .external_lex_state = 2}, - [1707] = {.lex_state = 175, .external_lex_state = 2}, - [1708] = {.lex_state = 175, .external_lex_state = 2}, - [1709] = {.lex_state = 175, .external_lex_state = 2}, - [1710] = {.lex_state = 175, .external_lex_state = 2}, - [1711] = {.lex_state = 175, .external_lex_state = 2}, - [1712] = {.lex_state = 175, .external_lex_state = 2}, - [1713] = {.lex_state = 175, .external_lex_state = 2}, - [1714] = {.lex_state = 175, .external_lex_state = 2}, - [1715] = {.lex_state = 175, .external_lex_state = 2}, - [1716] = {.lex_state = 175, .external_lex_state = 2}, - [1717] = {.lex_state = 175, .external_lex_state = 2}, - [1718] = {.lex_state = 175, .external_lex_state = 2}, - [1719] = {.lex_state = 175, .external_lex_state = 2}, - [1720] = {.lex_state = 175, .external_lex_state = 2}, - [1721] = {.lex_state = 175, .external_lex_state = 2}, - [1722] = {.lex_state = 175, .external_lex_state = 2}, - [1723] = {.lex_state = 175, .external_lex_state = 2}, - [1724] = {.lex_state = 175, .external_lex_state = 2}, - [1725] = {.lex_state = 175, .external_lex_state = 2}, - [1726] = {.lex_state = 175, .external_lex_state = 2}, - [1727] = {.lex_state = 175, .external_lex_state = 2}, - [1728] = {.lex_state = 175, .external_lex_state = 2}, - [1729] = {.lex_state = 175, .external_lex_state = 2}, - [1730] = {.lex_state = 175, .external_lex_state = 2}, - [1731] = {.lex_state = 175, .external_lex_state = 2}, - [1732] = {.lex_state = 175, .external_lex_state = 2}, - [1733] = {.lex_state = 175, .external_lex_state = 2}, - [1734] = {.lex_state = 175, .external_lex_state = 2}, - [1735] = {.lex_state = 175, .external_lex_state = 2}, - [1736] = {.lex_state = 175, .external_lex_state = 2}, - [1737] = {.lex_state = 175, .external_lex_state = 2}, - [1738] = {.lex_state = 175, .external_lex_state = 2}, - [1739] = {.lex_state = 175, .external_lex_state = 2}, - [1740] = {.lex_state = 175, .external_lex_state = 2}, - [1741] = {.lex_state = 175, .external_lex_state = 2}, - [1742] = {.lex_state = 175, .external_lex_state = 2}, - [1743] = {.lex_state = 175, .external_lex_state = 2}, - [1744] = {.lex_state = 175, .external_lex_state = 2}, - [1745] = {.lex_state = 175, .external_lex_state = 2}, - [1746] = {.lex_state = 175, .external_lex_state = 2}, - [1747] = {.lex_state = 175, .external_lex_state = 2}, - [1748] = {.lex_state = 175, .external_lex_state = 2}, - [1749] = {.lex_state = 175, .external_lex_state = 2}, - [1750] = {.lex_state = 175, .external_lex_state = 2}, - [1751] = {.lex_state = 175, .external_lex_state = 2}, - [1752] = {.lex_state = 175, .external_lex_state = 2}, - [1753] = {.lex_state = 175, .external_lex_state = 2}, - [1754] = {.lex_state = 175, .external_lex_state = 2}, - [1755] = {.lex_state = 175, .external_lex_state = 2}, - [1756] = {.lex_state = 175, .external_lex_state = 2}, - [1757] = {.lex_state = 175, .external_lex_state = 2}, - [1758] = {.lex_state = 175, .external_lex_state = 2}, - [1759] = {.lex_state = 175, .external_lex_state = 2}, - [1760] = {.lex_state = 175, .external_lex_state = 2}, - [1761] = {.lex_state = 175, .external_lex_state = 2}, - [1762] = {.lex_state = 175, .external_lex_state = 2}, - [1763] = {.lex_state = 175, .external_lex_state = 2}, - [1764] = {.lex_state = 175, .external_lex_state = 2}, - [1765] = {.lex_state = 175, .external_lex_state = 2}, - [1766] = {.lex_state = 175, .external_lex_state = 2}, - [1767] = {.lex_state = 175, .external_lex_state = 2}, - [1768] = {.lex_state = 175, .external_lex_state = 2}, - [1769] = {.lex_state = 175, .external_lex_state = 2}, - [1770] = {.lex_state = 175, .external_lex_state = 2}, - [1771] = {.lex_state = 175, .external_lex_state = 2}, - [1772] = {.lex_state = 175, .external_lex_state = 2}, - [1773] = {.lex_state = 175, .external_lex_state = 2}, - [1774] = {.lex_state = 175, .external_lex_state = 2}, - [1775] = {.lex_state = 175, .external_lex_state = 2}, - [1776] = {.lex_state = 175, .external_lex_state = 2}, - [1777] = {.lex_state = 175, .external_lex_state = 2}, - [1778] = {.lex_state = 175, .external_lex_state = 2}, - [1779] = {.lex_state = 175, .external_lex_state = 2}, - [1780] = {.lex_state = 175, .external_lex_state = 2}, - [1781] = {.lex_state = 175, .external_lex_state = 2}, - [1782] = {.lex_state = 175, .external_lex_state = 2}, - [1783] = {.lex_state = 175, .external_lex_state = 2}, - [1784] = {.lex_state = 175, .external_lex_state = 2}, - [1785] = {.lex_state = 175, .external_lex_state = 2}, - [1786] = {.lex_state = 175, .external_lex_state = 2}, - [1787] = {.lex_state = 175, .external_lex_state = 2}, - [1788] = {.lex_state = 175, .external_lex_state = 2}, - [1789] = {.lex_state = 175, .external_lex_state = 2}, - [1790] = {.lex_state = 175, .external_lex_state = 2}, - [1791] = {.lex_state = 175, .external_lex_state = 2}, - [1792] = {.lex_state = 175, .external_lex_state = 2}, - [1793] = {.lex_state = 175, .external_lex_state = 2}, - [1794] = {.lex_state = 175, .external_lex_state = 2}, - [1795] = {.lex_state = 175, .external_lex_state = 2}, - [1796] = {.lex_state = 175, .external_lex_state = 2}, - [1797] = {.lex_state = 175, .external_lex_state = 2}, - [1798] = {.lex_state = 175, .external_lex_state = 2}, - [1799] = {.lex_state = 175, .external_lex_state = 2}, - [1800] = {.lex_state = 175, .external_lex_state = 2}, - [1801] = {.lex_state = 175, .external_lex_state = 2}, - [1802] = {.lex_state = 175, .external_lex_state = 2}, - [1803] = {.lex_state = 175, .external_lex_state = 2}, - [1804] = {.lex_state = 175, .external_lex_state = 2}, - [1805] = {.lex_state = 175, .external_lex_state = 2}, - [1806] = {.lex_state = 175, .external_lex_state = 2}, - [1807] = {.lex_state = 175, .external_lex_state = 2}, - [1808] = {.lex_state = 175, .external_lex_state = 2}, - [1809] = {.lex_state = 175, .external_lex_state = 2}, - [1810] = {.lex_state = 175, .external_lex_state = 2}, - [1811] = {.lex_state = 175, .external_lex_state = 2}, - [1812] = {.lex_state = 175, .external_lex_state = 2}, - [1813] = {.lex_state = 175, .external_lex_state = 2}, - [1814] = {.lex_state = 175, .external_lex_state = 2}, - [1815] = {.lex_state = 175, .external_lex_state = 2}, - [1816] = {.lex_state = 175, .external_lex_state = 2}, - [1817] = {.lex_state = 175, .external_lex_state = 2}, - [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 = 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}, - [1825] = {.lex_state = 175, .external_lex_state = 2}, - [1826] = {.lex_state = 175, .external_lex_state = 2}, - [1827] = {.lex_state = 175, .external_lex_state = 2}, - [1828] = {.lex_state = 175, .external_lex_state = 2}, - [1829] = {.lex_state = 175, .external_lex_state = 2}, - [1830] = {.lex_state = 175, .external_lex_state = 2}, - [1831] = {.lex_state = 175, .external_lex_state = 2}, - [1832] = {.lex_state = 175, .external_lex_state = 2}, - [1833] = {.lex_state = 175, .external_lex_state = 2}, - [1834] = {.lex_state = 175, .external_lex_state = 2}, - [1835] = {.lex_state = 175, .external_lex_state = 2}, - [1836] = {.lex_state = 175, .external_lex_state = 2}, - [1837] = {.lex_state = 175, .external_lex_state = 2}, - [1838] = {.lex_state = 175, .external_lex_state = 2}, - [1839] = {.lex_state = 175, .external_lex_state = 2}, - [1840] = {.lex_state = 175, .external_lex_state = 2}, - [1841] = {.lex_state = 175, .external_lex_state = 2}, - [1842] = {.lex_state = 175, .external_lex_state = 2}, - [1843] = {.lex_state = 175, .external_lex_state = 2}, - [1844] = {.lex_state = 175, .external_lex_state = 2}, - [1845] = {.lex_state = 175, .external_lex_state = 2}, - [1846] = {.lex_state = 175, .external_lex_state = 2}, - [1847] = {.lex_state = 175, .external_lex_state = 2}, - [1848] = {.lex_state = 175, .external_lex_state = 2}, - [1849] = {.lex_state = 175, .external_lex_state = 2}, - [1850] = {.lex_state = 175, .external_lex_state = 2}, - [1851] = {.lex_state = 175, .external_lex_state = 2}, - [1852] = {.lex_state = 175, .external_lex_state = 2}, - [1853] = {.lex_state = 175, .external_lex_state = 2}, - [1854] = {.lex_state = 175, .external_lex_state = 2}, - [1855] = {.lex_state = 175, .external_lex_state = 2}, - [1856] = {.lex_state = 175, .external_lex_state = 2}, - [1857] = {.lex_state = 175, .external_lex_state = 2}, - [1858] = {.lex_state = 175, .external_lex_state = 2}, - [1859] = {.lex_state = 175, .external_lex_state = 2}, - [1860] = {.lex_state = 175, .external_lex_state = 2}, - [1861] = {.lex_state = 175, .external_lex_state = 2}, - [1862] = {.lex_state = 175, .external_lex_state = 2}, - [1863] = {.lex_state = 175, .external_lex_state = 2}, - [1864] = {.lex_state = 175, .external_lex_state = 2}, - [1865] = {.lex_state = 175, .external_lex_state = 2}, - [1866] = {.lex_state = 175, .external_lex_state = 2}, - [1867] = {.lex_state = 175, .external_lex_state = 2}, - [1868] = {.lex_state = 175, .external_lex_state = 2}, - [1869] = {.lex_state = 175, .external_lex_state = 2}, - [1870] = {.lex_state = 175, .external_lex_state = 2}, - [1871] = {.lex_state = 175, .external_lex_state = 2}, - [1872] = {.lex_state = 175, .external_lex_state = 2}, - [1873] = {.lex_state = 175, .external_lex_state = 2}, - [1874] = {.lex_state = 175, .external_lex_state = 2}, - [1875] = {.lex_state = 175, .external_lex_state = 2}, - [1876] = {.lex_state = 175, .external_lex_state = 2}, - [1877] = {.lex_state = 175, .external_lex_state = 2}, - [1878] = {.lex_state = 175, .external_lex_state = 2}, - [1879] = {.lex_state = 175, .external_lex_state = 2}, - [1880] = {.lex_state = 175, .external_lex_state = 2}, - [1881] = {.lex_state = 175, .external_lex_state = 2}, - [1882] = {.lex_state = 175, .external_lex_state = 2}, - [1883] = {.lex_state = 175, .external_lex_state = 2}, - [1884] = {.lex_state = 175, .external_lex_state = 2}, - [1885] = {.lex_state = 175, .external_lex_state = 2}, - [1886] = {.lex_state = 175, .external_lex_state = 2}, - [1887] = {.lex_state = 175, .external_lex_state = 2}, - [1888] = {.lex_state = 175, .external_lex_state = 2}, - [1889] = {.lex_state = 175, .external_lex_state = 2}, - [1890] = {.lex_state = 175, .external_lex_state = 2}, - [1891] = {.lex_state = 175, .external_lex_state = 2}, - [1892] = {.lex_state = 175, .external_lex_state = 2}, - [1893] = {.lex_state = 175, .external_lex_state = 2}, - [1894] = {.lex_state = 175, .external_lex_state = 2}, - [1895] = {.lex_state = 175, .external_lex_state = 2}, - [1896] = {.lex_state = 175, .external_lex_state = 2}, - [1897] = {.lex_state = 175, .external_lex_state = 2}, - [1898] = {.lex_state = 175, .external_lex_state = 2}, - [1899] = {.lex_state = 175, .external_lex_state = 2}, - [1900] = {.lex_state = 175, .external_lex_state = 2}, - [1901] = {.lex_state = 175, .external_lex_state = 2}, - [1902] = {.lex_state = 175, .external_lex_state = 2}, - [1903] = {.lex_state = 175, .external_lex_state = 2}, - [1904] = {.lex_state = 175, .external_lex_state = 2}, - [1905] = {.lex_state = 175, .external_lex_state = 2}, - [1906] = {.lex_state = 175, .external_lex_state = 2}, - [1907] = {.lex_state = 175, .external_lex_state = 2}, - [1908] = {.lex_state = 175, .external_lex_state = 2}, - [1909] = {.lex_state = 175, .external_lex_state = 2}, - [1910] = {.lex_state = 175, .external_lex_state = 2}, - [1911] = {.lex_state = 175, .external_lex_state = 2}, - [1912] = {.lex_state = 175, .external_lex_state = 2}, - [1913] = {.lex_state = 175, .external_lex_state = 2}, - [1914] = {.lex_state = 175, .external_lex_state = 2}, - [1915] = {.lex_state = 175, .external_lex_state = 2}, - [1916] = {.lex_state = 175, .external_lex_state = 2}, - [1917] = {.lex_state = 175, .external_lex_state = 2}, - [1918] = {.lex_state = 175, .external_lex_state = 2}, - [1919] = {.lex_state = 175, .external_lex_state = 2}, - [1920] = {.lex_state = 175, .external_lex_state = 2}, - [1921] = {.lex_state = 175, .external_lex_state = 2}, - [1922] = {.lex_state = 175, .external_lex_state = 2}, - [1923] = {.lex_state = 175, .external_lex_state = 2}, - [1924] = {.lex_state = 175, .external_lex_state = 2}, - [1925] = {.lex_state = 175, .external_lex_state = 2}, - [1926] = {.lex_state = 175, .external_lex_state = 2}, - [1927] = {.lex_state = 175, .external_lex_state = 2}, - [1928] = {.lex_state = 175, .external_lex_state = 2}, - [1929] = {.lex_state = 175, .external_lex_state = 2}, - [1930] = {.lex_state = 175, .external_lex_state = 2}, - [1931] = {.lex_state = 175, .external_lex_state = 2}, - [1932] = {.lex_state = 175, .external_lex_state = 2}, - [1933] = {.lex_state = 175, .external_lex_state = 2}, - [1934] = {.lex_state = 175, .external_lex_state = 2}, - [1935] = {.lex_state = 175, .external_lex_state = 2}, - [1936] = {.lex_state = 175, .external_lex_state = 2}, - [1937] = {.lex_state = 175, .external_lex_state = 2}, - [1938] = {.lex_state = 175, .external_lex_state = 2}, - [1939] = {.lex_state = 175, .external_lex_state = 2}, - [1940] = {.lex_state = 175, .external_lex_state = 2}, - [1941] = {.lex_state = 175, .external_lex_state = 2}, - [1942] = {.lex_state = 175, .external_lex_state = 2}, - [1943] = {.lex_state = 175, .external_lex_state = 2}, - [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}, - [1948] = {.lex_state = 175, .external_lex_state = 2}, - [1949] = {.lex_state = 175, .external_lex_state = 2}, - [1950] = {.lex_state = 175, .external_lex_state = 2}, - [1951] = {.lex_state = 175, .external_lex_state = 2}, - [1952] = {.lex_state = 175, .external_lex_state = 2}, - [1953] = {.lex_state = 167, .external_lex_state = 8}, - [1954] = {.lex_state = 19, .external_lex_state = 6}, - [1955] = {.lex_state = 167, .external_lex_state = 9}, - [1956] = {.lex_state = 167, .external_lex_state = 6}, - [1957] = {.lex_state = 170, .external_lex_state = 4}, - [1958] = {.lex_state = 170, .external_lex_state = 4}, - [1959] = {.lex_state = 170, .external_lex_state = 4}, - [1960] = {.lex_state = 170, .external_lex_state = 5}, - [1961] = {.lex_state = 170, .external_lex_state = 5}, - [1962] = {.lex_state = 170, .external_lex_state = 5}, - [1963] = {.lex_state = 26, .external_lex_state = 6}, - [1964] = {.lex_state = 26, .external_lex_state = 6}, - [1965] = {.lex_state = 26, .external_lex_state = 6}, - [1966] = {.lex_state = 170, .external_lex_state = 7}, - [1967] = {.lex_state = 170, .external_lex_state = 7}, - [1968] = {.lex_state = 170, .external_lex_state = 7}, - [1969] = {.lex_state = 175, .external_lex_state = 55}, - [1970] = {.lex_state = 175, .external_lex_state = 55}, - [1971] = {.lex_state = 175, .external_lex_state = 55}, - [1972] = {.lex_state = 170, .external_lex_state = 8}, - [1973] = {.lex_state = 170, .external_lex_state = 8}, - [1974] = {.lex_state = 170, .external_lex_state = 8}, - [1975] = {.lex_state = 25, .external_lex_state = 6}, - [1976] = {.lex_state = 25, .external_lex_state = 6}, - [1977] = {.lex_state = 25, .external_lex_state = 6}, - [1978] = {.lex_state = 170, .external_lex_state = 9}, - [1979] = {.lex_state = 170, .external_lex_state = 9}, - [1980] = {.lex_state = 175, .external_lex_state = 55}, - [1981] = {.lex_state = 175, .external_lex_state = 55}, - [1982] = {.lex_state = 170, .external_lex_state = 9}, - [1983] = {.lex_state = 175, .external_lex_state = 56}, - [1984] = {.lex_state = 175, .external_lex_state = 56}, - [1985] = {.lex_state = 175, .external_lex_state = 56}, - [1986] = {.lex_state = 175, .external_lex_state = 56}, - [1987] = {.lex_state = 175, .external_lex_state = 56}, - [1988] = {.lex_state = 173, .external_lex_state = 11}, - [1989] = {.lex_state = 173, .external_lex_state = 11}, - [1990] = {.lex_state = 173, .external_lex_state = 11}, - [1991] = {.lex_state = 173, .external_lex_state = 11}, - [1992] = {.lex_state = 173, .external_lex_state = 11}, - [1993] = {.lex_state = 175, .external_lex_state = 11}, - [1994] = {.lex_state = 173, .external_lex_state = 11}, - [1995] = {.lex_state = 175, .external_lex_state = 11}, - [1996] = {.lex_state = 175, .external_lex_state = 11}, - [1997] = {.lex_state = 175, .external_lex_state = 11}, - [1998] = {.lex_state = 175, .external_lex_state = 11}, - [1999] = {.lex_state = 175, .external_lex_state = 11}, - [2000] = {.lex_state = 175, .external_lex_state = 11}, - [2001] = {.lex_state = 175, .external_lex_state = 11}, - [2002] = {.lex_state = 173, .external_lex_state = 11}, - [2003] = {.lex_state = 175, .external_lex_state = 11}, - [2004] = {.lex_state = 175, .external_lex_state = 11}, - [2005] = {.lex_state = 175, .external_lex_state = 11}, - [2006] = {.lex_state = 175, .external_lex_state = 11}, - [2007] = {.lex_state = 175, .external_lex_state = 11}, - [2008] = {.lex_state = 175, .external_lex_state = 11}, - [2009] = {.lex_state = 175, .external_lex_state = 11}, - [2010] = {.lex_state = 175, .external_lex_state = 11}, - [2011] = {.lex_state = 175, .external_lex_state = 11}, - [2012] = {.lex_state = 175, .external_lex_state = 11}, - [2013] = {.lex_state = 175, .external_lex_state = 11}, - [2014] = {.lex_state = 175, .external_lex_state = 11}, - [2015] = {.lex_state = 175, .external_lex_state = 11}, - [2016] = {.lex_state = 175, .external_lex_state = 11}, - [2017] = {.lex_state = 175, .external_lex_state = 11}, - [2018] = {.lex_state = 175, .external_lex_state = 11}, - [2019] = {.lex_state = 175, .external_lex_state = 11}, - [2020] = {.lex_state = 175, .external_lex_state = 11}, - [2021] = {.lex_state = 175, .external_lex_state = 11}, - [2022] = {.lex_state = 175, .external_lex_state = 2}, - [2023] = {.lex_state = 175, .external_lex_state = 11}, - [2024] = {.lex_state = 175, .external_lex_state = 11}, - [2025] = {.lex_state = 175, .external_lex_state = 11}, - [2026] = {.lex_state = 175, .external_lex_state = 2}, - [2027] = {.lex_state = 175, .external_lex_state = 11}, - [2028] = {.lex_state = 173, .external_lex_state = 2}, - [2029] = {.lex_state = 173, .external_lex_state = 2}, - [2030] = {.lex_state = 173, .external_lex_state = 2}, - [2031] = {.lex_state = 175, .external_lex_state = 11}, - [2032] = {.lex_state = 175, .external_lex_state = 11}, - [2033] = {.lex_state = 175, .external_lex_state = 2}, - [2034] = {.lex_state = 173, .external_lex_state = 2}, - [2035] = {.lex_state = 173, .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 = 175, .external_lex_state = 11}, - [2040] = {.lex_state = 175, .external_lex_state = 11}, - [2041] = {.lex_state = 175, .external_lex_state = 11}, - [2042] = {.lex_state = 175, .external_lex_state = 11}, - [2043] = {.lex_state = 173, .external_lex_state = 2}, - [2044] = {.lex_state = 175, .external_lex_state = 11}, - [2045] = {.lex_state = 175, .external_lex_state = 11}, - [2046] = {.lex_state = 175, .external_lex_state = 11}, - [2047] = {.lex_state = 175, .external_lex_state = 11}, - [2048] = {.lex_state = 175, .external_lex_state = 11}, - [2049] = {.lex_state = 175, .external_lex_state = 2}, - [2050] = {.lex_state = 175, .external_lex_state = 2}, - [2051] = {.lex_state = 175, .external_lex_state = 2}, - [2052] = {.lex_state = 173, .external_lex_state = 2}, - [2053] = {.lex_state = 175, .external_lex_state = 11}, - [2054] = {.lex_state = 175, .external_lex_state = 11}, - [2055] = {.lex_state = 175, .external_lex_state = 2}, - [2056] = {.lex_state = 175, .external_lex_state = 2}, - [2057] = {.lex_state = 175, .external_lex_state = 2}, - [2058] = {.lex_state = 175, .external_lex_state = 2}, - [2059] = {.lex_state = 175, .external_lex_state = 2}, - [2060] = {.lex_state = 175, .external_lex_state = 11}, - [2061] = {.lex_state = 175, .external_lex_state = 11}, - [2062] = {.lex_state = 175, .external_lex_state = 2}, - [2063] = {.lex_state = 175, .external_lex_state = 2}, - [2064] = {.lex_state = 175, .external_lex_state = 2}, - [2065] = {.lex_state = 175, .external_lex_state = 2}, - [2066] = {.lex_state = 175, .external_lex_state = 11}, - [2067] = {.lex_state = 175, .external_lex_state = 2}, - [2068] = {.lex_state = 175, .external_lex_state = 2}, - [2069] = {.lex_state = 175, .external_lex_state = 2}, - [2070] = {.lex_state = 175, .external_lex_state = 2}, - [2071] = {.lex_state = 175, .external_lex_state = 2}, - [2072] = {.lex_state = 175, .external_lex_state = 2}, - [2073] = {.lex_state = 175, .external_lex_state = 2}, - [2074] = {.lex_state = 175, .external_lex_state = 11}, - [2075] = {.lex_state = 175, .external_lex_state = 2}, - [2076] = {.lex_state = 175, .external_lex_state = 11}, - [2077] = {.lex_state = 175, .external_lex_state = 2}, - [2078] = {.lex_state = 175, .external_lex_state = 11}, - [2079] = {.lex_state = 175, .external_lex_state = 2}, - [2080] = {.lex_state = 175, .external_lex_state = 2}, - [2081] = {.lex_state = 175, .external_lex_state = 11}, - [2082] = {.lex_state = 175, .external_lex_state = 11}, - [2083] = {.lex_state = 175, .external_lex_state = 11}, - [2084] = {.lex_state = 175, .external_lex_state = 2}, - [2085] = {.lex_state = 175, .external_lex_state = 11}, - [2086] = {.lex_state = 175, .external_lex_state = 2}, - [2087] = {.lex_state = 175, .external_lex_state = 11}, - [2088] = {.lex_state = 175, .external_lex_state = 2}, - [2089] = {.lex_state = 175, .external_lex_state = 2}, - [2090] = {.lex_state = 175, .external_lex_state = 11}, - [2091] = {.lex_state = 175, .external_lex_state = 13}, - [2092] = {.lex_state = 175, .external_lex_state = 13}, - [2093] = {.lex_state = 175, .external_lex_state = 13}, - [2094] = {.lex_state = 175, .external_lex_state = 13}, - [2095] = {.lex_state = 175, .external_lex_state = 2}, - [2096] = {.lex_state = 175, .external_lex_state = 2}, - [2097] = {.lex_state = 175, .external_lex_state = 2}, - [2098] = {.lex_state = 175, .external_lex_state = 2}, - [2099] = {.lex_state = 175, .external_lex_state = 2}, - [2100] = {.lex_state = 175, .external_lex_state = 2}, - [2101] = {.lex_state = 175, .external_lex_state = 2}, - [2102] = {.lex_state = 175, .external_lex_state = 2}, - [2103] = {.lex_state = 175, .external_lex_state = 22}, - [2104] = {.lex_state = 175, .external_lex_state = 22}, - [2105] = {.lex_state = 175, .external_lex_state = 2}, - [2106] = {.lex_state = 175, .external_lex_state = 22}, - [2107] = {.lex_state = 175, .external_lex_state = 2}, - [2108] = {.lex_state = 175, .external_lex_state = 2}, - [2109] = {.lex_state = 175, .external_lex_state = 2}, - [2110] = {.lex_state = 175, .external_lex_state = 2}, - [2111] = {.lex_state = 175, .external_lex_state = 2}, - [2112] = {.lex_state = 175, .external_lex_state = 2}, - [2113] = {.lex_state = 175, .external_lex_state = 2}, - [2114] = {.lex_state = 175, .external_lex_state = 2}, - [2115] = {.lex_state = 175, .external_lex_state = 2}, - [2116] = {.lex_state = 175, .external_lex_state = 2}, - [2117] = {.lex_state = 175, .external_lex_state = 2}, - [2118] = {.lex_state = 175, .external_lex_state = 2}, - [2119] = {.lex_state = 175, .external_lex_state = 2}, - [2120] = {.lex_state = 175, .external_lex_state = 2}, - [2121] = {.lex_state = 175, .external_lex_state = 2}, - [2122] = {.lex_state = 175, .external_lex_state = 2}, - [2123] = {.lex_state = 175, .external_lex_state = 2}, - [2124] = {.lex_state = 175, .external_lex_state = 2}, - [2125] = {.lex_state = 177, .external_lex_state = 57}, - [2126] = {.lex_state = 177, .external_lex_state = 57}, - [2127] = {.lex_state = 177, .external_lex_state = 57}, - [2128] = {.lex_state = 177, .external_lex_state = 57}, - [2129] = {.lex_state = 177, .external_lex_state = 57}, - [2130] = {.lex_state = 177, .external_lex_state = 57}, - [2131] = {.lex_state = 177, .external_lex_state = 58}, - [2132] = {.lex_state = 177, .external_lex_state = 58}, - [2133] = {.lex_state = 177, .external_lex_state = 57}, - [2134] = {.lex_state = 177, .external_lex_state = 58}, - [2135] = {.lex_state = 177, .external_lex_state = 58}, - [2136] = {.lex_state = 177, .external_lex_state = 57}, - [2137] = {.lex_state = 177, .external_lex_state = 58}, - [2138] = {.lex_state = 177, .external_lex_state = 58}, - [2139] = {.lex_state = 177, .external_lex_state = 59}, - [2140] = {.lex_state = 177, .external_lex_state = 59}, - [2141] = {.lex_state = 177, .external_lex_state = 59}, - [2142] = {.lex_state = 177, .external_lex_state = 59}, - [2143] = {.lex_state = 177, .external_lex_state = 59}, - [2144] = {.lex_state = 173, .external_lex_state = 49}, - [2145] = {.lex_state = 177, .external_lex_state = 58}, - [2146] = {.lex_state = 177, .external_lex_state = 58}, - [2147] = {.lex_state = 177, .external_lex_state = 59}, - [2148] = {.lex_state = 177, .external_lex_state = 60}, - [2149] = {.lex_state = 177, .external_lex_state = 60}, - [2150] = {.lex_state = 177, .external_lex_state = 60}, - [2151] = {.lex_state = 177, .external_lex_state = 60}, - [2152] = {.lex_state = 177, .external_lex_state = 60}, - [2153] = {.lex_state = 177, .external_lex_state = 60}, - [2154] = {.lex_state = 173, .external_lex_state = 50}, - [2155] = {.lex_state = 177, .external_lex_state = 59}, - [2156] = {.lex_state = 177, .external_lex_state = 61}, - [2157] = {.lex_state = 177, .external_lex_state = 62}, - [2158] = {.lex_state = 177, .external_lex_state = 59}, - [2159] = {.lex_state = 177, .external_lex_state = 61}, - [2160] = {.lex_state = 177, .external_lex_state = 62}, - [2161] = {.lex_state = 177, .external_lex_state = 61}, - [2162] = {.lex_state = 177, .external_lex_state = 62}, - [2163] = {.lex_state = 177, .external_lex_state = 61}, - [2164] = {.lex_state = 177, .external_lex_state = 61}, - [2165] = {.lex_state = 177, .external_lex_state = 62}, - [2166] = {.lex_state = 177, .external_lex_state = 62}, - [2167] = {.lex_state = 177, .external_lex_state = 62}, - [2168] = {.lex_state = 177, .external_lex_state = 61}, - [2169] = {.lex_state = 179, .external_lex_state = 63}, - [2170] = {.lex_state = 177, .external_lex_state = 60}, - [2171] = {.lex_state = 177, .external_lex_state = 64}, - [2172] = {.lex_state = 177, .external_lex_state = 64}, - [2173] = {.lex_state = 177, .external_lex_state = 64}, - [2174] = {.lex_state = 177, .external_lex_state = 64}, - [2175] = {.lex_state = 177, .external_lex_state = 60}, - [2176] = {.lex_state = 177, .external_lex_state = 64}, - [2177] = {.lex_state = 177, .external_lex_state = 64}, - [2178] = {.lex_state = 177, .external_lex_state = 61}, - [2179] = {.lex_state = 177, .external_lex_state = 65}, - [2180] = {.lex_state = 179, .external_lex_state = 63}, - [2181] = {.lex_state = 179, .external_lex_state = 63}, - [2182] = {.lex_state = 177, .external_lex_state = 65}, - [2183] = {.lex_state = 177, .external_lex_state = 65}, - [2184] = {.lex_state = 177, .external_lex_state = 65}, - [2185] = {.lex_state = 179, .external_lex_state = 63}, - [2186] = {.lex_state = 177, .external_lex_state = 61}, - [2187] = {.lex_state = 177, .external_lex_state = 62}, - [2188] = {.lex_state = 177, .external_lex_state = 62}, - [2189] = {.lex_state = 177, .external_lex_state = 65}, - [2190] = {.lex_state = 177, .external_lex_state = 65}, - [2191] = {.lex_state = 179, .external_lex_state = 66}, - [2192] = {.lex_state = 177, .external_lex_state = 64}, - [2193] = {.lex_state = 177, .external_lex_state = 64}, - [2194] = {.lex_state = 179, .external_lex_state = 66}, - [2195] = {.lex_state = 179, .external_lex_state = 66}, - [2196] = {.lex_state = 179, .external_lex_state = 66}, - [2197] = {.lex_state = 177, .external_lex_state = 65}, - [2198] = {.lex_state = 179, .external_lex_state = 66}, - [2199] = {.lex_state = 177, .external_lex_state = 65}, - [2200] = {.lex_state = 179, .external_lex_state = 66}, - [2201] = {.lex_state = 179, .external_lex_state = 66}, - [2202] = {.lex_state = 177, .external_lex_state = 67}, - [2203] = {.lex_state = 177, .external_lex_state = 67}, - [2204] = {.lex_state = 179, .external_lex_state = 66}, - [2205] = {.lex_state = 179, .external_lex_state = 68}, - [2206] = {.lex_state = 177, .external_lex_state = 67}, - [2207] = {.lex_state = 177, .external_lex_state = 67}, - [2208] = {.lex_state = 177, .external_lex_state = 67}, - [2209] = {.lex_state = 177, .external_lex_state = 67}, - [2210] = {.lex_state = 179, .external_lex_state = 68}, - [2211] = {.lex_state = 179, .external_lex_state = 68}, - [2212] = {.lex_state = 49, .external_lex_state = 60}, - [2213] = {.lex_state = 49, .external_lex_state = 60}, - [2214] = {.lex_state = 49, .external_lex_state = 60}, - [2215] = {.lex_state = 49, .external_lex_state = 60}, - [2216] = {.lex_state = 49, .external_lex_state = 60}, - [2217] = {.lex_state = 49, .external_lex_state = 60}, - [2218] = {.lex_state = 179, .external_lex_state = 68}, - [2219] = {.lex_state = 177, .external_lex_state = 69}, - [2220] = {.lex_state = 177, .external_lex_state = 69}, - [2221] = {.lex_state = 177, .external_lex_state = 70}, - [2222] = {.lex_state = 177, .external_lex_state = 70}, - [2223] = {.lex_state = 177, .external_lex_state = 67}, - [2224] = {.lex_state = 177, .external_lex_state = 67}, - [2225] = {.lex_state = 179, .external_lex_state = 71}, - [2226] = {.lex_state = 177, .external_lex_state = 69}, - [2227] = {.lex_state = 177, .external_lex_state = 70}, - [2228] = {.lex_state = 177, .external_lex_state = 69}, - [2229] = {.lex_state = 179, .external_lex_state = 72}, - [2230] = {.lex_state = 177, .external_lex_state = 70}, - [2231] = {.lex_state = 179, .external_lex_state = 73}, - [2232] = {.lex_state = 179, .external_lex_state = 73}, - [2233] = {.lex_state = 177, .external_lex_state = 69}, - [2234] = {.lex_state = 179, .external_lex_state = 73}, - [2235] = {.lex_state = 177, .external_lex_state = 70}, - [2236] = {.lex_state = 177, .external_lex_state = 69}, - [2237] = {.lex_state = 177, .external_lex_state = 70}, - [2238] = {.lex_state = 179, .external_lex_state = 72}, - [2239] = {.lex_state = 179, .external_lex_state = 72}, - [2240] = {.lex_state = 49, .external_lex_state = 64}, - [2241] = {.lex_state = 179, .external_lex_state = 72}, - [2242] = {.lex_state = 49, .external_lex_state = 64}, - [2243] = {.lex_state = 49, .external_lex_state = 64}, - [2244] = {.lex_state = 179, .external_lex_state = 72}, - [2245] = {.lex_state = 49, .external_lex_state = 64}, - [2246] = {.lex_state = 179, .external_lex_state = 72}, - [2247] = {.lex_state = 179, .external_lex_state = 71}, - [2248] = {.lex_state = 179, .external_lex_state = 72}, - [2249] = {.lex_state = 49, .external_lex_state = 64}, - [2250] = {.lex_state = 179, .external_lex_state = 73}, - [2251] = {.lex_state = 49, .external_lex_state = 60}, - [2252] = {.lex_state = 179, .external_lex_state = 71}, - [2253] = {.lex_state = 179, .external_lex_state = 71}, - [2254] = {.lex_state = 49, .external_lex_state = 64}, - [2255] = {.lex_state = 49, .external_lex_state = 60}, - [2256] = {.lex_state = 179, .external_lex_state = 74}, - [2257] = {.lex_state = 179, .external_lex_state = 75}, - [2258] = {.lex_state = 177, .external_lex_state = 69}, - [2259] = {.lex_state = 179, .external_lex_state = 72}, - [2260] = {.lex_state = 179, .external_lex_state = 74}, - [2261] = {.lex_state = 177, .external_lex_state = 70}, - [2262] = {.lex_state = 177, .external_lex_state = 76}, - [2263] = {.lex_state = 177, .external_lex_state = 70}, - [2264] = {.lex_state = 179, .external_lex_state = 74}, - [2265] = {.lex_state = 177, .external_lex_state = 76}, - [2266] = {.lex_state = 179, .external_lex_state = 75}, - [2267] = {.lex_state = 177, .external_lex_state = 76}, - [2268] = {.lex_state = 177, .external_lex_state = 69}, - [2269] = {.lex_state = 177, .external_lex_state = 76}, - [2270] = {.lex_state = 177, .external_lex_state = 76}, - [2271] = {.lex_state = 177, .external_lex_state = 76}, - [2272] = {.lex_state = 179, .external_lex_state = 75}, - [2273] = {.lex_state = 49, .external_lex_state = 64}, - [2274] = {.lex_state = 179, .external_lex_state = 75}, - [2275] = {.lex_state = 49, .external_lex_state = 64}, - [2276] = {.lex_state = 179, .external_lex_state = 75}, - [2277] = {.lex_state = 179, .external_lex_state = 75}, - [2278] = {.lex_state = 175, .external_lex_state = 2}, - [2279] = {.lex_state = 179, .external_lex_state = 74}, - [2280] = {.lex_state = 179, .external_lex_state = 75}, - [2281] = {.lex_state = 175, .external_lex_state = 2}, - [2282] = {.lex_state = 179, .external_lex_state = 74}, - [2283] = {.lex_state = 177, .external_lex_state = 76}, - [2284] = {.lex_state = 179, .external_lex_state = 75}, - [2285] = {.lex_state = 177, .external_lex_state = 76}, - [2286] = {.lex_state = 179, .external_lex_state = 77}, - [2287] = {.lex_state = 179, .external_lex_state = 74}, - [2288] = {.lex_state = 181, .external_lex_state = 63}, - [2289] = {.lex_state = 179, .external_lex_state = 77}, - [2290] = {.lex_state = 179, .external_lex_state = 77}, - [2291] = {.lex_state = 181, .external_lex_state = 63}, - [2292] = {.lex_state = 179, .external_lex_state = 77}, - [2293] = {.lex_state = 181, .external_lex_state = 63}, - [2294] = {.lex_state = 181, .external_lex_state = 63}, - [2295] = {.lex_state = 45, .external_lex_state = 73}, - [2296] = {.lex_state = 181, .external_lex_state = 63}, - [2297] = {.lex_state = 181, .external_lex_state = 63}, - [2298] = {.lex_state = 179, .external_lex_state = 78}, - [2299] = {.lex_state = 45, .external_lex_state = 73}, - [2300] = {.lex_state = 45, .external_lex_state = 73}, - [2301] = {.lex_state = 181, .external_lex_state = 66}, - [2302] = {.lex_state = 181, .external_lex_state = 66}, - [2303] = {.lex_state = 181, .external_lex_state = 66}, - [2304] = {.lex_state = 181, .external_lex_state = 66}, - [2305] = {.lex_state = 45, .external_lex_state = 73}, - [2306] = {.lex_state = 181, .external_lex_state = 66}, - [2307] = {.lex_state = 179, .external_lex_state = 79}, - [2308] = {.lex_state = 179, .external_lex_state = 73}, - [2309] = {.lex_state = 177, .external_lex_state = 63}, - [2310] = {.lex_state = 181, .external_lex_state = 66}, - [2311] = {.lex_state = 179, .external_lex_state = 78}, - [2312] = {.lex_state = 177, .external_lex_state = 63}, - [2313] = {.lex_state = 179, .external_lex_state = 79}, - [2314] = {.lex_state = 179, .external_lex_state = 78}, - [2315] = {.lex_state = 179, .external_lex_state = 79}, - [2316] = {.lex_state = 177, .external_lex_state = 63}, - [2317] = {.lex_state = 179, .external_lex_state = 78}, - [2318] = {.lex_state = 181, .external_lex_state = 63}, - [2319] = {.lex_state = 179, .external_lex_state = 79}, - [2320] = {.lex_state = 177, .external_lex_state = 63}, - [2321] = {.lex_state = 177, .external_lex_state = 63}, - [2322] = {.lex_state = 177, .external_lex_state = 63}, - [2323] = {.lex_state = 179, .external_lex_state = 73}, - [2324] = {.lex_state = 45, .external_lex_state = 74}, - [2325] = {.lex_state = 177, .external_lex_state = 63}, - [2326] = {.lex_state = 177, .external_lex_state = 63}, - [2327] = {.lex_state = 177, .external_lex_state = 63}, - [2328] = {.lex_state = 177, .external_lex_state = 63}, - [2329] = {.lex_state = 177, .external_lex_state = 63}, - [2330] = {.lex_state = 181, .external_lex_state = 63}, - [2331] = {.lex_state = 177, .external_lex_state = 63}, - [2332] = {.lex_state = 177, .external_lex_state = 63}, - [2333] = {.lex_state = 19, .external_lex_state = 74}, - [2334] = {.lex_state = 179, .external_lex_state = 79}, - [2335] = {.lex_state = 177, .external_lex_state = 63}, - [2336] = {.lex_state = 177, .external_lex_state = 63}, - [2337] = {.lex_state = 177, .external_lex_state = 63}, - [2338] = {.lex_state = 177, .external_lex_state = 63}, - [2339] = {.lex_state = 19, .external_lex_state = 74}, - [2340] = {.lex_state = 177, .external_lex_state = 63}, - [2341] = {.lex_state = 177, .external_lex_state = 63}, - [2342] = {.lex_state = 177, .external_lex_state = 63}, - [2343] = {.lex_state = 177, .external_lex_state = 63}, - [2344] = {.lex_state = 177, .external_lex_state = 63}, - [2345] = {.lex_state = 177, .external_lex_state = 63}, - [2346] = {.lex_state = 177, .external_lex_state = 63}, - [2347] = {.lex_state = 177, .external_lex_state = 63}, - [2348] = {.lex_state = 179, .external_lex_state = 80}, - [2349] = {.lex_state = 177, .external_lex_state = 63}, - [2350] = {.lex_state = 177, .external_lex_state = 63}, - [2351] = {.lex_state = 183, .external_lex_state = 81}, - [2352] = {.lex_state = 19, .external_lex_state = 74}, - [2353] = {.lex_state = 177, .external_lex_state = 63}, - [2354] = {.lex_state = 177, .external_lex_state = 63}, - [2355] = {.lex_state = 177, .external_lex_state = 63}, - [2356] = {.lex_state = 177, .external_lex_state = 63}, - [2357] = {.lex_state = 177, .external_lex_state = 63}, - [2358] = {.lex_state = 177, .external_lex_state = 63}, - [2359] = {.lex_state = 177, .external_lex_state = 81}, - [2360] = {.lex_state = 179, .external_lex_state = 74}, - [2361] = {.lex_state = 167, .external_lex_state = 80}, - [2362] = {.lex_state = 181, .external_lex_state = 68}, - [2363] = {.lex_state = 179, .external_lex_state = 74}, - [2364] = {.lex_state = 181, .external_lex_state = 68}, - [2365] = {.lex_state = 167, .external_lex_state = 80}, - [2366] = {.lex_state = 177, .external_lex_state = 66}, - [2367] = {.lex_state = 179, .external_lex_state = 74}, - [2368] = {.lex_state = 181, .external_lex_state = 68}, - [2369] = {.lex_state = 177, .external_lex_state = 66}, - [2370] = {.lex_state = 167, .external_lex_state = 80}, - [2371] = {.lex_state = 177, .external_lex_state = 81}, - [2372] = {.lex_state = 177, .external_lex_state = 81}, - [2373] = {.lex_state = 177, .external_lex_state = 66}, - [2374] = {.lex_state = 181, .external_lex_state = 66}, - [2375] = {.lex_state = 179, .external_lex_state = 74}, - [2376] = {.lex_state = 177, .external_lex_state = 66}, - [2377] = {.lex_state = 167, .external_lex_state = 79}, - [2378] = {.lex_state = 177, .external_lex_state = 66}, - [2379] = {.lex_state = 179, .external_lex_state = 74}, - [2380] = {.lex_state = 179, .external_lex_state = 74}, - [2381] = {.lex_state = 179, .external_lex_state = 74}, - [2382] = {.lex_state = 177, .external_lex_state = 66}, - [2383] = {.lex_state = 179, .external_lex_state = 74}, - [2384] = {.lex_state = 177, .external_lex_state = 63}, - [2385] = {.lex_state = 177, .external_lex_state = 66}, - [2386] = {.lex_state = 179, .external_lex_state = 74}, - [2387] = {.lex_state = 181, .external_lex_state = 68}, - [2388] = {.lex_state = 179, .external_lex_state = 74}, - [2389] = {.lex_state = 181, .external_lex_state = 68}, - [2390] = {.lex_state = 179, .external_lex_state = 74}, - [2391] = {.lex_state = 177, .external_lex_state = 66}, - [2392] = {.lex_state = 179, .external_lex_state = 80}, - [2393] = {.lex_state = 177, .external_lex_state = 63}, - [2394] = {.lex_state = 183, .external_lex_state = 82}, - [2395] = {.lex_state = 177, .external_lex_state = 66}, - [2396] = {.lex_state = 177, .external_lex_state = 66}, - [2397] = {.lex_state = 177, .external_lex_state = 66}, - [2398] = {.lex_state = 177, .external_lex_state = 66}, - [2399] = {.lex_state = 177, .external_lex_state = 66}, - [2400] = {.lex_state = 177, .external_lex_state = 66}, - [2401] = {.lex_state = 177, .external_lex_state = 66}, - [2402] = {.lex_state = 177, .external_lex_state = 66}, - [2403] = {.lex_state = 177, .external_lex_state = 66}, - [2404] = {.lex_state = 177, .external_lex_state = 66}, - [2405] = {.lex_state = 177, .external_lex_state = 66}, - [2406] = {.lex_state = 177, .external_lex_state = 66}, - [2407] = {.lex_state = 177, .external_lex_state = 66}, - [2408] = {.lex_state = 177, .external_lex_state = 66}, - [2409] = {.lex_state = 177, .external_lex_state = 66}, - [2410] = {.lex_state = 177, .external_lex_state = 66}, - [2411] = {.lex_state = 177, .external_lex_state = 66}, - [2412] = {.lex_state = 167, .external_lex_state = 74}, - [2413] = {.lex_state = 167, .external_lex_state = 74}, - [2414] = {.lex_state = 177, .external_lex_state = 66}, - [2415] = {.lex_state = 179, .external_lex_state = 74}, - [2416] = {.lex_state = 46, .external_lex_state = 73}, - [2417] = {.lex_state = 46, .external_lex_state = 73}, - [2418] = {.lex_state = 177, .external_lex_state = 63}, - [2419] = {.lex_state = 177, .external_lex_state = 63}, - [2420] = {.lex_state = 177, .external_lex_state = 63}, - [2421] = {.lex_state = 177, .external_lex_state = 63}, - [2422] = {.lex_state = 46, .external_lex_state = 73}, - [2423] = {.lex_state = 46, .external_lex_state = 73}, - [2424] = {.lex_state = 177, .external_lex_state = 63}, - [2425] = {.lex_state = 177, .external_lex_state = 63}, - [2426] = {.lex_state = 177, .external_lex_state = 63}, - [2427] = {.lex_state = 177, .external_lex_state = 63}, - [2428] = {.lex_state = 177, .external_lex_state = 63}, - [2429] = {.lex_state = 177, .external_lex_state = 63}, - [2430] = {.lex_state = 46, .external_lex_state = 73}, - [2431] = {.lex_state = 167, .external_lex_state = 74}, - [2432] = {.lex_state = 167, .external_lex_state = 74}, - [2433] = {.lex_state = 167, .external_lex_state = 74}, - [2434] = {.lex_state = 177, .external_lex_state = 63}, - [2435] = {.lex_state = 177, .external_lex_state = 66}, - [2436] = {.lex_state = 183, .external_lex_state = 81}, - [2437] = {.lex_state = 183, .external_lex_state = 81}, - [2438] = {.lex_state = 181, .external_lex_state = 68}, - [2439] = {.lex_state = 177, .external_lex_state = 66}, - [2440] = {.lex_state = 177, .external_lex_state = 66}, - [2441] = {.lex_state = 177, .external_lex_state = 66}, - [2442] = {.lex_state = 177, .external_lex_state = 66}, - [2443] = {.lex_state = 177, .external_lex_state = 66}, - [2444] = {.lex_state = 167, .external_lex_state = 74}, - [2445] = {.lex_state = 179, .external_lex_state = 74}, - [2446] = {.lex_state = 177, .external_lex_state = 66}, - [2447] = {.lex_state = 177, .external_lex_state = 63}, - [2448] = {.lex_state = 167, .external_lex_state = 74}, - [2449] = {.lex_state = 167, .external_lex_state = 74}, - [2450] = {.lex_state = 181, .external_lex_state = 66}, - [2451] = {.lex_state = 167, .external_lex_state = 74}, - [2452] = {.lex_state = 167, .external_lex_state = 80}, - [2453] = {.lex_state = 177, .external_lex_state = 63}, - [2454] = {.lex_state = 177, .external_lex_state = 63}, - [2455] = {.lex_state = 181, .external_lex_state = 72}, - [2456] = {.lex_state = 177, .external_lex_state = 63}, - [2457] = {.lex_state = 177, .external_lex_state = 82}, - [2458] = {.lex_state = 181, .external_lex_state = 72}, - [2459] = {.lex_state = 177, .external_lex_state = 63}, - [2460] = {.lex_state = 46, .external_lex_state = 73}, - [2461] = {.lex_state = 177, .external_lex_state = 81}, - [2462] = {.lex_state = 181, .external_lex_state = 72}, - [2463] = {.lex_state = 177, .external_lex_state = 63}, - [2464] = {.lex_state = 181, .external_lex_state = 72}, - [2465] = {.lex_state = 177, .external_lex_state = 83}, - [2466] = {.lex_state = 177, .external_lex_state = 83}, - [2467] = {.lex_state = 177, .external_lex_state = 63}, - [2468] = {.lex_state = 177, .external_lex_state = 66}, - [2469] = {.lex_state = 177, .external_lex_state = 63}, - [2470] = {.lex_state = 177, .external_lex_state = 66}, - [2471] = {.lex_state = 177, .external_lex_state = 63}, - [2472] = {.lex_state = 177, .external_lex_state = 63}, - [2473] = {.lex_state = 177, .external_lex_state = 63}, - [2474] = {.lex_state = 177, .external_lex_state = 63}, - [2475] = {.lex_state = 177, .external_lex_state = 63}, - [2476] = {.lex_state = 177, .external_lex_state = 63}, - [2477] = {.lex_state = 177, .external_lex_state = 63}, - [2478] = {.lex_state = 177, .external_lex_state = 63}, - [2479] = {.lex_state = 177, .external_lex_state = 82}, - [2480] = {.lex_state = 177, .external_lex_state = 63}, - [2481] = {.lex_state = 177, .external_lex_state = 82}, - [2482] = {.lex_state = 177, .external_lex_state = 63}, - [2483] = {.lex_state = 177, .external_lex_state = 63}, - [2484] = {.lex_state = 177, .external_lex_state = 63}, - [2485] = {.lex_state = 183, .external_lex_state = 63}, - [2486] = {.lex_state = 181, .external_lex_state = 63}, - [2487] = {.lex_state = 183, .external_lex_state = 63}, - [2488] = {.lex_state = 177, .external_lex_state = 63}, - [2489] = {.lex_state = 177, .external_lex_state = 63}, - [2490] = {.lex_state = 183, .external_lex_state = 63}, - [2491] = {.lex_state = 177, .external_lex_state = 63}, - [2492] = {.lex_state = 177, .external_lex_state = 63}, - [2493] = {.lex_state = 177, .external_lex_state = 63}, - [2494] = {.lex_state = 177, .external_lex_state = 63}, - [2495] = {.lex_state = 177, .external_lex_state = 63}, - [2496] = {.lex_state = 177, .external_lex_state = 68}, - [2497] = {.lex_state = 177, .external_lex_state = 68}, - [2498] = {.lex_state = 177, .external_lex_state = 68}, - [2499] = {.lex_state = 177, .external_lex_state = 68}, - [2500] = {.lex_state = 181, .external_lex_state = 72}, - [2501] = {.lex_state = 181, .external_lex_state = 71}, - [2502] = {.lex_state = 181, .external_lex_state = 71}, - [2503] = {.lex_state = 181, .external_lex_state = 71}, - [2504] = {.lex_state = 181, .external_lex_state = 71}, - [2505] = {.lex_state = 181, .external_lex_state = 71}, - [2506] = {.lex_state = 177, .external_lex_state = 68}, - [2507] = {.lex_state = 177, .external_lex_state = 68}, - [2508] = {.lex_state = 177, .external_lex_state = 68}, - [2509] = {.lex_state = 177, .external_lex_state = 68}, - [2510] = {.lex_state = 177, .external_lex_state = 63}, - [2511] = {.lex_state = 177, .external_lex_state = 63}, - [2512] = {.lex_state = 177, .external_lex_state = 63}, - [2513] = {.lex_state = 177, .external_lex_state = 63}, - [2514] = {.lex_state = 177, .external_lex_state = 63}, - [2515] = {.lex_state = 177, .external_lex_state = 63}, - [2516] = {.lex_state = 177, .external_lex_state = 83}, - [2517] = {.lex_state = 177, .external_lex_state = 63}, - [2518] = {.lex_state = 177, .external_lex_state = 63}, - [2519] = {.lex_state = 177, .external_lex_state = 63}, - [2520] = {.lex_state = 177, .external_lex_state = 63}, - [2521] = {.lex_state = 177, .external_lex_state = 83}, - [2522] = {.lex_state = 177, .external_lex_state = 63}, - [2523] = {.lex_state = 177, .external_lex_state = 63}, - [2524] = {.lex_state = 177, .external_lex_state = 63}, - [2525] = {.lex_state = 177, .external_lex_state = 63}, - [2526] = {.lex_state = 177, .external_lex_state = 63}, - [2527] = {.lex_state = 177, .external_lex_state = 63}, - [2528] = {.lex_state = 177, .external_lex_state = 63}, - [2529] = {.lex_state = 181, .external_lex_state = 68}, - [2530] = {.lex_state = 177, .external_lex_state = 63}, - [2531] = {.lex_state = 177, .external_lex_state = 63}, - [2532] = {.lex_state = 177, .external_lex_state = 63}, - [2533] = {.lex_state = 177, .external_lex_state = 63}, - [2534] = {.lex_state = 177, .external_lex_state = 63}, - [2535] = {.lex_state = 177, .external_lex_state = 63}, - [2536] = {.lex_state = 177, .external_lex_state = 63}, - [2537] = {.lex_state = 177, .external_lex_state = 63}, - [2538] = {.lex_state = 177, .external_lex_state = 63}, - [2539] = {.lex_state = 177, .external_lex_state = 63}, - [2540] = {.lex_state = 177, .external_lex_state = 63}, - [2541] = {.lex_state = 177, .external_lex_state = 63}, - [2542] = {.lex_state = 177, .external_lex_state = 63}, - [2543] = {.lex_state = 177, .external_lex_state = 63}, - [2544] = {.lex_state = 177, .external_lex_state = 63}, - [2545] = {.lex_state = 177, .external_lex_state = 63}, - [2546] = {.lex_state = 177, .external_lex_state = 63}, - [2547] = {.lex_state = 177, .external_lex_state = 63}, - [2548] = {.lex_state = 177, .external_lex_state = 66}, - [2549] = {.lex_state = 177, .external_lex_state = 63}, - [2550] = {.lex_state = 177, .external_lex_state = 63}, - [2551] = {.lex_state = 177, .external_lex_state = 63}, - [2552] = {.lex_state = 177, .external_lex_state = 63}, - [2553] = {.lex_state = 177, .external_lex_state = 63}, - [2554] = {.lex_state = 177, .external_lex_state = 63}, - [2555] = {.lex_state = 177, .external_lex_state = 63}, - [2556] = {.lex_state = 177, .external_lex_state = 63}, - [2557] = {.lex_state = 177, .external_lex_state = 63}, - [2558] = {.lex_state = 177, .external_lex_state = 63}, - [2559] = {.lex_state = 177, .external_lex_state = 63}, - [2560] = {.lex_state = 177, .external_lex_state = 63}, - [2561] = {.lex_state = 177, .external_lex_state = 63}, - [2562] = {.lex_state = 177, .external_lex_state = 63}, - [2563] = {.lex_state = 177, .external_lex_state = 63}, - [2564] = {.lex_state = 177, .external_lex_state = 63}, - [2565] = {.lex_state = 177, .external_lex_state = 68}, - [2566] = {.lex_state = 177, .external_lex_state = 63}, - [2567] = {.lex_state = 181, .external_lex_state = 68}, - [2568] = {.lex_state = 177, .external_lex_state = 63}, - [2569] = {.lex_state = 177, .external_lex_state = 63}, - [2570] = {.lex_state = 177, .external_lex_state = 68}, - [2571] = {.lex_state = 177, .external_lex_state = 63}, - [2572] = {.lex_state = 177, .external_lex_state = 63}, - [2573] = {.lex_state = 177, .external_lex_state = 63}, - [2574] = {.lex_state = 177, .external_lex_state = 68}, - [2575] = {.lex_state = 177, .external_lex_state = 63}, - [2576] = {.lex_state = 177, .external_lex_state = 63}, - [2577] = {.lex_state = 177, .external_lex_state = 63}, - [2578] = {.lex_state = 177, .external_lex_state = 63}, - [2579] = {.lex_state = 177, .external_lex_state = 63}, - [2580] = {.lex_state = 177, .external_lex_state = 63}, - [2581] = {.lex_state = 177, .external_lex_state = 63}, - [2582] = {.lex_state = 177, .external_lex_state = 63}, - [2583] = {.lex_state = 177, .external_lex_state = 63}, - [2584] = {.lex_state = 177, .external_lex_state = 68}, - [2585] = {.lex_state = 177, .external_lex_state = 63}, - [2586] = {.lex_state = 177, .external_lex_state = 63}, - [2587] = {.lex_state = 177, .external_lex_state = 63}, - [2588] = {.lex_state = 177, .external_lex_state = 63}, - [2589] = {.lex_state = 177, .external_lex_state = 63}, - [2590] = {.lex_state = 177, .external_lex_state = 63}, - [2591] = {.lex_state = 177, .external_lex_state = 63}, - [2592] = {.lex_state = 177, .external_lex_state = 63}, - [2593] = {.lex_state = 177, .external_lex_state = 63}, - [2594] = {.lex_state = 177, .external_lex_state = 63}, - [2595] = {.lex_state = 177, .external_lex_state = 63}, - [2596] = {.lex_state = 177, .external_lex_state = 63}, - [2597] = {.lex_state = 177, .external_lex_state = 63}, - [2598] = {.lex_state = 177, .external_lex_state = 63}, - [2599] = {.lex_state = 177, .external_lex_state = 63}, - [2600] = {.lex_state = 177, .external_lex_state = 63}, - [2601] = {.lex_state = 177, .external_lex_state = 63}, - [2602] = {.lex_state = 177, .external_lex_state = 63}, - [2603] = {.lex_state = 47, .external_lex_state = 73}, - [2604] = {.lex_state = 47, .external_lex_state = 73}, - [2605] = {.lex_state = 177, .external_lex_state = 63}, - [2606] = {.lex_state = 177, .external_lex_state = 63}, - [2607] = {.lex_state = 177, .external_lex_state = 63}, - [2608] = {.lex_state = 47, .external_lex_state = 73}, - [2609] = {.lex_state = 47, .external_lex_state = 73}, - [2610] = {.lex_state = 177, .external_lex_state = 63}, - [2611] = {.lex_state = 177, .external_lex_state = 63}, - [2612] = {.lex_state = 177, .external_lex_state = 63}, - [2613] = {.lex_state = 177, .external_lex_state = 63}, - [2614] = {.lex_state = 177, .external_lex_state = 63}, - [2615] = {.lex_state = 177, .external_lex_state = 63}, - [2616] = {.lex_state = 47, .external_lex_state = 73}, - [2617] = {.lex_state = 177, .external_lex_state = 63}, - [2618] = {.lex_state = 177, .external_lex_state = 63}, - [2619] = {.lex_state = 183, .external_lex_state = 84}, - [2620] = {.lex_state = 177, .external_lex_state = 63}, - [2621] = {.lex_state = 177, .external_lex_state = 68}, - [2622] = {.lex_state = 177, .external_lex_state = 63}, - [2623] = {.lex_state = 46, .external_lex_state = 74}, - [2624] = {.lex_state = 177, .external_lex_state = 63}, - [2625] = {.lex_state = 177, .external_lex_state = 63}, - [2626] = {.lex_state = 177, .external_lex_state = 63}, - [2627] = {.lex_state = 177, .external_lex_state = 63}, - [2628] = {.lex_state = 177, .external_lex_state = 63}, - [2629] = {.lex_state = 177, .external_lex_state = 63}, - [2630] = {.lex_state = 177, .external_lex_state = 63}, - [2631] = {.lex_state = 177, .external_lex_state = 63}, - [2632] = {.lex_state = 46, .external_lex_state = 74}, - [2633] = {.lex_state = 177, .external_lex_state = 63}, - [2634] = {.lex_state = 177, .external_lex_state = 63}, - [2635] = {.lex_state = 177, .external_lex_state = 63}, - [2636] = {.lex_state = 177, .external_lex_state = 63}, - [2637] = {.lex_state = 177, .external_lex_state = 63}, - [2638] = {.lex_state = 177, .external_lex_state = 63}, - [2639] = {.lex_state = 177, .external_lex_state = 63}, - [2640] = {.lex_state = 177, .external_lex_state = 63}, - [2641] = {.lex_state = 177, .external_lex_state = 68}, - [2642] = {.lex_state = 177, .external_lex_state = 63}, - [2643] = {.lex_state = 177, .external_lex_state = 63}, - [2644] = {.lex_state = 177, .external_lex_state = 68}, - [2645] = {.lex_state = 177, .external_lex_state = 63}, - [2646] = {.lex_state = 177, .external_lex_state = 63}, - [2647] = {.lex_state = 177, .external_lex_state = 63}, - [2648] = {.lex_state = 183, .external_lex_state = 82}, - [2649] = {.lex_state = 177, .external_lex_state = 63}, - [2650] = {.lex_state = 177, .external_lex_state = 63}, - [2651] = {.lex_state = 177, .external_lex_state = 63}, - [2652] = {.lex_state = 46, .external_lex_state = 74}, - [2653] = {.lex_state = 177, .external_lex_state = 63}, - [2654] = {.lex_state = 177, .external_lex_state = 63}, - [2655] = {.lex_state = 177, .external_lex_state = 63}, - [2656] = {.lex_state = 177, .external_lex_state = 63}, - [2657] = {.lex_state = 177, .external_lex_state = 63}, - [2658] = {.lex_state = 177, .external_lex_state = 63}, - [2659] = {.lex_state = 177, .external_lex_state = 63}, - [2660] = {.lex_state = 177, .external_lex_state = 68}, - [2661] = {.lex_state = 177, .external_lex_state = 63}, - [2662] = {.lex_state = 177, .external_lex_state = 63}, - [2663] = {.lex_state = 177, .external_lex_state = 63}, - [2664] = {.lex_state = 177, .external_lex_state = 63}, - [2665] = {.lex_state = 177, .external_lex_state = 68}, - [2666] = {.lex_state = 177, .external_lex_state = 68}, - [2667] = {.lex_state = 177, .external_lex_state = 63}, - [2668] = {.lex_state = 177, .external_lex_state = 63}, - [2669] = {.lex_state = 177, .external_lex_state = 68}, - [2670] = {.lex_state = 177, .external_lex_state = 68}, - [2671] = {.lex_state = 177, .external_lex_state = 68}, - [2672] = {.lex_state = 177, .external_lex_state = 68}, - [2673] = {.lex_state = 177, .external_lex_state = 63}, - [2674] = {.lex_state = 177, .external_lex_state = 68}, - [2675] = {.lex_state = 177, .external_lex_state = 63}, - [2676] = {.lex_state = 177, .external_lex_state = 68}, - [2677] = {.lex_state = 177, .external_lex_state = 68}, - [2678] = {.lex_state = 177, .external_lex_state = 68}, - [2679] = {.lex_state = 177, .external_lex_state = 68}, - [2680] = {.lex_state = 177, .external_lex_state = 68}, - [2681] = {.lex_state = 177, .external_lex_state = 68}, - [2682] = {.lex_state = 177, .external_lex_state = 63}, - [2683] = {.lex_state = 177, .external_lex_state = 63}, - [2684] = {.lex_state = 177, .external_lex_state = 63}, - [2685] = {.lex_state = 177, .external_lex_state = 63}, - [2686] = {.lex_state = 47, .external_lex_state = 73}, - [2687] = {.lex_state = 47, .external_lex_state = 73}, - [2688] = {.lex_state = 177, .external_lex_state = 63}, - [2689] = {.lex_state = 47, .external_lex_state = 73}, - [2690] = {.lex_state = 47, .external_lex_state = 73}, - [2691] = {.lex_state = 177, .external_lex_state = 63}, - [2692] = {.lex_state = 177, .external_lex_state = 63}, - [2693] = {.lex_state = 177, .external_lex_state = 63}, - [2694] = {.lex_state = 177, .external_lex_state = 63}, - [2695] = {.lex_state = 177, .external_lex_state = 63}, - [2696] = {.lex_state = 177, .external_lex_state = 63}, - [2697] = {.lex_state = 177, .external_lex_state = 63}, - [2698] = {.lex_state = 177, .external_lex_state = 63}, - [2699] = {.lex_state = 181, .external_lex_state = 72}, - [2700] = {.lex_state = 177, .external_lex_state = 63}, - [2701] = {.lex_state = 177, .external_lex_state = 63}, - [2702] = {.lex_state = 177, .external_lex_state = 63}, - [2703] = {.lex_state = 177, .external_lex_state = 63}, - [2704] = {.lex_state = 177, .external_lex_state = 63}, - [2705] = {.lex_state = 181, .external_lex_state = 71}, - [2706] = {.lex_state = 177, .external_lex_state = 63}, - [2707] = {.lex_state = 177, .external_lex_state = 63}, - [2708] = {.lex_state = 177, .external_lex_state = 63}, - [2709] = {.lex_state = 177, .external_lex_state = 63}, - [2710] = {.lex_state = 177, .external_lex_state = 63}, - [2711] = {.lex_state = 177, .external_lex_state = 63}, - [2712] = {.lex_state = 177, .external_lex_state = 63}, - [2713] = {.lex_state = 177, .external_lex_state = 63}, - [2714] = {.lex_state = 177, .external_lex_state = 63}, - [2715] = {.lex_state = 177, .external_lex_state = 63}, - [2716] = {.lex_state = 177, .external_lex_state = 63}, - [2717] = {.lex_state = 177, .external_lex_state = 63}, - [2718] = {.lex_state = 177, .external_lex_state = 63}, - [2719] = {.lex_state = 177, .external_lex_state = 63}, - [2720] = {.lex_state = 177, .external_lex_state = 63}, - [2721] = {.lex_state = 177, .external_lex_state = 63}, - [2722] = {.lex_state = 177, .external_lex_state = 68}, - [2723] = {.lex_state = 177, .external_lex_state = 68}, - [2724] = {.lex_state = 177, .external_lex_state = 68}, - [2725] = {.lex_state = 177, .external_lex_state = 68}, - [2726] = {.lex_state = 46, .external_lex_state = 74}, - [2727] = {.lex_state = 177, .external_lex_state = 63}, - [2728] = {.lex_state = 177, .external_lex_state = 63}, - [2729] = {.lex_state = 177, .external_lex_state = 63}, - [2730] = {.lex_state = 177, .external_lex_state = 63}, - [2731] = {.lex_state = 177, .external_lex_state = 63}, - [2732] = {.lex_state = 177, .external_lex_state = 63}, - [2733] = {.lex_state = 177, .external_lex_state = 63}, - [2734] = {.lex_state = 177, .external_lex_state = 63}, - [2735] = {.lex_state = 177, .external_lex_state = 63}, - [2736] = {.lex_state = 177, .external_lex_state = 63}, - [2737] = {.lex_state = 177, .external_lex_state = 63}, - [2738] = {.lex_state = 177, .external_lex_state = 63}, - [2739] = {.lex_state = 177, .external_lex_state = 63}, - [2740] = {.lex_state = 177, .external_lex_state = 63}, - [2741] = {.lex_state = 177, .external_lex_state = 63}, - [2742] = {.lex_state = 177, .external_lex_state = 63}, - [2743] = {.lex_state = 177, .external_lex_state = 63}, - [2744] = {.lex_state = 177, .external_lex_state = 63}, - [2745] = {.lex_state = 177, .external_lex_state = 63}, - [2746] = {.lex_state = 177, .external_lex_state = 63}, - [2747] = {.lex_state = 183, .external_lex_state = 82}, - [2748] = {.lex_state = 177, .external_lex_state = 63}, - [2749] = {.lex_state = 177, .external_lex_state = 63}, - [2750] = {.lex_state = 177, .external_lex_state = 63}, - [2751] = {.lex_state = 177, .external_lex_state = 63}, - [2752] = {.lex_state = 177, .external_lex_state = 63}, - [2753] = {.lex_state = 177, .external_lex_state = 63}, - [2754] = {.lex_state = 46, .external_lex_state = 74}, - [2755] = {.lex_state = 47, .external_lex_state = 73}, - [2756] = {.lex_state = 177, .external_lex_state = 71}, - [2757] = {.lex_state = 183, .external_lex_state = 66}, - [2758] = {.lex_state = 177, .external_lex_state = 71}, - [2759] = {.lex_state = 47, .external_lex_state = 73}, - [2760] = {.lex_state = 177, .external_lex_state = 66}, - [2761] = {.lex_state = 177, .external_lex_state = 72}, - [2762] = {.lex_state = 177, .external_lex_state = 72}, - [2763] = {.lex_state = 177, .external_lex_state = 85}, - [2764] = {.lex_state = 177, .external_lex_state = 72}, - [2765] = {.lex_state = 177, .external_lex_state = 72}, - [2766] = {.lex_state = 177, .external_lex_state = 72}, - [2767] = {.lex_state = 181, .external_lex_state = 75}, - [2768] = {.lex_state = 181, .external_lex_state = 75}, - [2769] = {.lex_state = 177, .external_lex_state = 66}, - [2770] = {.lex_state = 47, .external_lex_state = 73}, - [2771] = {.lex_state = 177, .external_lex_state = 66}, - [2772] = {.lex_state = 177, .external_lex_state = 68}, - [2773] = {.lex_state = 181, .external_lex_state = 75}, - [2774] = {.lex_state = 181, .external_lex_state = 75}, - [2775] = {.lex_state = 177, .external_lex_state = 66}, - [2776] = {.lex_state = 47, .external_lex_state = 73}, - [2777] = {.lex_state = 177, .external_lex_state = 66}, - [2778] = {.lex_state = 47, .external_lex_state = 73}, - [2779] = {.lex_state = 181, .external_lex_state = 66}, - [2780] = {.lex_state = 177, .external_lex_state = 66}, - [2781] = {.lex_state = 177, .external_lex_state = 72}, - [2782] = {.lex_state = 177, .external_lex_state = 66}, - [2783] = {.lex_state = 177, .external_lex_state = 66}, - [2784] = {.lex_state = 177, .external_lex_state = 72}, - [2785] = {.lex_state = 177, .external_lex_state = 66}, - [2786] = {.lex_state = 181, .external_lex_state = 66}, - [2787] = {.lex_state = 177, .external_lex_state = 71}, - [2788] = {.lex_state = 177, .external_lex_state = 71}, - [2789] = {.lex_state = 177, .external_lex_state = 71}, - [2790] = {.lex_state = 177, .external_lex_state = 71}, - [2791] = {.lex_state = 47, .external_lex_state = 73}, - [2792] = {.lex_state = 47, .external_lex_state = 73}, - [2793] = {.lex_state = 47, .external_lex_state = 73}, - [2794] = {.lex_state = 47, .external_lex_state = 73}, - [2795] = {.lex_state = 177, .external_lex_state = 66}, - [2796] = {.lex_state = 47, .external_lex_state = 73}, - [2797] = {.lex_state = 47, .external_lex_state = 73}, - [2798] = {.lex_state = 177, .external_lex_state = 82}, - [2799] = {.lex_state = 177, .external_lex_state = 71}, - [2800] = {.lex_state = 47, .external_lex_state = 73}, - [2801] = {.lex_state = 47, .external_lex_state = 73}, - [2802] = {.lex_state = 177, .external_lex_state = 84}, - [2803] = {.lex_state = 47, .external_lex_state = 73}, - [2804] = {.lex_state = 47, .external_lex_state = 73}, - [2805] = {.lex_state = 47, .external_lex_state = 73}, - [2806] = {.lex_state = 177, .external_lex_state = 84}, - [2807] = {.lex_state = 177, .external_lex_state = 66}, - [2808] = {.lex_state = 47, .external_lex_state = 73}, - [2809] = {.lex_state = 177, .external_lex_state = 66}, - [2810] = {.lex_state = 181, .external_lex_state = 72}, - [2811] = {.lex_state = 181, .external_lex_state = 75}, - [2812] = {.lex_state = 47, .external_lex_state = 73}, - [2813] = {.lex_state = 177, .external_lex_state = 66}, - [2814] = {.lex_state = 177, .external_lex_state = 85}, - [2815] = {.lex_state = 177, .external_lex_state = 66}, - [2816] = {.lex_state = 47, .external_lex_state = 73}, - [2817] = {.lex_state = 177, .external_lex_state = 66}, - [2818] = {.lex_state = 177, .external_lex_state = 66}, - [2819] = {.lex_state = 183, .external_lex_state = 66}, - [2820] = {.lex_state = 47, .external_lex_state = 73}, - [2821] = {.lex_state = 47, .external_lex_state = 73}, - [2822] = {.lex_state = 177, .external_lex_state = 84}, - [2823] = {.lex_state = 47, .external_lex_state = 73}, - [2824] = {.lex_state = 177, .external_lex_state = 66}, - [2825] = {.lex_state = 177, .external_lex_state = 66}, - [2826] = {.lex_state = 177, .external_lex_state = 85}, - [2827] = {.lex_state = 46, .external_lex_state = 74}, - [2828] = {.lex_state = 47, .external_lex_state = 73}, - [2829] = {.lex_state = 183, .external_lex_state = 66}, - [2830] = {.lex_state = 47, .external_lex_state = 73}, - [2831] = {.lex_state = 47, .external_lex_state = 73}, - [2832] = {.lex_state = 177, .external_lex_state = 85}, - [2833] = {.lex_state = 177, .external_lex_state = 66}, - [2834] = {.lex_state = 177, .external_lex_state = 66}, - [2835] = {.lex_state = 177, .external_lex_state = 72}, - [2836] = {.lex_state = 177, .external_lex_state = 66}, - [2837] = {.lex_state = 177, .external_lex_state = 66}, - [2838] = {.lex_state = 177, .external_lex_state = 66}, - [2839] = {.lex_state = 181, .external_lex_state = 71}, - [2840] = {.lex_state = 177, .external_lex_state = 71}, - [2841] = {.lex_state = 177, .external_lex_state = 66}, - [2842] = {.lex_state = 177, .external_lex_state = 66}, - [2843] = {.lex_state = 177, .external_lex_state = 66}, - [2844] = {.lex_state = 177, .external_lex_state = 66}, - [2845] = {.lex_state = 177, .external_lex_state = 66}, - [2846] = {.lex_state = 177, .external_lex_state = 66}, - [2847] = {.lex_state = 177, .external_lex_state = 66}, - [2848] = {.lex_state = 183, .external_lex_state = 86}, - [2849] = {.lex_state = 177, .external_lex_state = 66}, - [2850] = {.lex_state = 177, .external_lex_state = 72}, - [2851] = {.lex_state = 177, .external_lex_state = 66}, - [2852] = {.lex_state = 177, .external_lex_state = 66}, - [2853] = {.lex_state = 177, .external_lex_state = 66}, - [2854] = {.lex_state = 177, .external_lex_state = 72}, - [2855] = {.lex_state = 177, .external_lex_state = 72}, - [2856] = {.lex_state = 177, .external_lex_state = 66}, - [2857] = {.lex_state = 177, .external_lex_state = 66}, - [2858] = {.lex_state = 177, .external_lex_state = 68}, - [2859] = {.lex_state = 177, .external_lex_state = 72}, - [2860] = {.lex_state = 177, .external_lex_state = 72}, - [2861] = {.lex_state = 177, .external_lex_state = 72}, - [2862] = {.lex_state = 177, .external_lex_state = 72}, - [2863] = {.lex_state = 177, .external_lex_state = 72}, - [2864] = {.lex_state = 177, .external_lex_state = 72}, - [2865] = {.lex_state = 177, .external_lex_state = 72}, - [2866] = {.lex_state = 177, .external_lex_state = 72}, - [2867] = {.lex_state = 177, .external_lex_state = 72}, - [2868] = {.lex_state = 177, .external_lex_state = 72}, - [2869] = {.lex_state = 177, .external_lex_state = 72}, - [2870] = {.lex_state = 177, .external_lex_state = 66}, - [2871] = {.lex_state = 177, .external_lex_state = 66}, - [2872] = {.lex_state = 177, .external_lex_state = 66}, - [2873] = {.lex_state = 177, .external_lex_state = 66}, - [2874] = {.lex_state = 177, .external_lex_state = 66}, - [2875] = {.lex_state = 177, .external_lex_state = 66}, - [2876] = {.lex_state = 183, .external_lex_state = 84}, - [2877] = {.lex_state = 181, .external_lex_state = 71}, - [2878] = {.lex_state = 183, .external_lex_state = 87}, - [2879] = {.lex_state = 177, .external_lex_state = 68}, - [2880] = {.lex_state = 177, .external_lex_state = 68}, - [2881] = {.lex_state = 177, .external_lex_state = 68}, - [2882] = {.lex_state = 177, .external_lex_state = 66}, - [2883] = {.lex_state = 177, .external_lex_state = 66}, - [2884] = {.lex_state = 177, .external_lex_state = 66}, - [2885] = {.lex_state = 177, .external_lex_state = 68}, - [2886] = {.lex_state = 183, .external_lex_state = 84}, - [2887] = {.lex_state = 177, .external_lex_state = 66}, - [2888] = {.lex_state = 177, .external_lex_state = 66}, - [2889] = {.lex_state = 177, .external_lex_state = 66}, - [2890] = {.lex_state = 177, .external_lex_state = 66}, - [2891] = {.lex_state = 177, .external_lex_state = 66}, - [2892] = {.lex_state = 177, .external_lex_state = 66}, - [2893] = {.lex_state = 177, .external_lex_state = 66}, - [2894] = {.lex_state = 177, .external_lex_state = 66}, - [2895] = {.lex_state = 177, .external_lex_state = 66}, - [2896] = {.lex_state = 177, .external_lex_state = 66}, - [2897] = {.lex_state = 177, .external_lex_state = 66}, - [2898] = {.lex_state = 47, .external_lex_state = 74}, - [2899] = {.lex_state = 177, .external_lex_state = 66}, - [2900] = {.lex_state = 177, .external_lex_state = 66}, - [2901] = {.lex_state = 177, .external_lex_state = 66}, - [2902] = {.lex_state = 177, .external_lex_state = 66}, - [2903] = {.lex_state = 177, .external_lex_state = 66}, - [2904] = {.lex_state = 177, .external_lex_state = 66}, - [2905] = {.lex_state = 177, .external_lex_state = 66}, - [2906] = {.lex_state = 177, .external_lex_state = 66}, - [2907] = {.lex_state = 177, .external_lex_state = 66}, - [2908] = {.lex_state = 177, .external_lex_state = 66}, - [2909] = {.lex_state = 177, .external_lex_state = 66}, - [2910] = {.lex_state = 177, .external_lex_state = 66}, - [2911] = {.lex_state = 177, .external_lex_state = 66}, - [2912] = {.lex_state = 177, .external_lex_state = 66}, - [2913] = {.lex_state = 177, .external_lex_state = 66}, - [2914] = {.lex_state = 177, .external_lex_state = 66}, - [2915] = {.lex_state = 177, .external_lex_state = 66}, - [2916] = {.lex_state = 177, .external_lex_state = 66}, - [2917] = {.lex_state = 177, .external_lex_state = 66}, - [2918] = {.lex_state = 177, .external_lex_state = 66}, - [2919] = {.lex_state = 177, .external_lex_state = 66}, - [2920] = {.lex_state = 177, .external_lex_state = 66}, - [2921] = {.lex_state = 177, .external_lex_state = 68}, - [2922] = {.lex_state = 177, .external_lex_state = 66}, - [2923] = {.lex_state = 177, .external_lex_state = 66}, - [2924] = {.lex_state = 177, .external_lex_state = 66}, - [2925] = {.lex_state = 177, .external_lex_state = 68}, - [2926] = {.lex_state = 177, .external_lex_state = 68}, - [2927] = {.lex_state = 177, .external_lex_state = 68}, - [2928] = {.lex_state = 177, .external_lex_state = 68}, - [2929] = {.lex_state = 177, .external_lex_state = 66}, - [2930] = {.lex_state = 47, .external_lex_state = 74}, - [2931] = {.lex_state = 177, .external_lex_state = 66}, - [2932] = {.lex_state = 177, .external_lex_state = 66}, - [2933] = {.lex_state = 177, .external_lex_state = 68}, - [2934] = {.lex_state = 177, .external_lex_state = 68}, - [2935] = {.lex_state = 177, .external_lex_state = 66}, - [2936] = {.lex_state = 177, .external_lex_state = 66}, - [2937] = {.lex_state = 177, .external_lex_state = 66}, - [2938] = {.lex_state = 177, .external_lex_state = 66}, - [2939] = {.lex_state = 177, .external_lex_state = 66}, - [2940] = {.lex_state = 177, .external_lex_state = 66}, - [2941] = {.lex_state = 177, .external_lex_state = 66}, - [2942] = {.lex_state = 177, .external_lex_state = 66}, - [2943] = {.lex_state = 177, .external_lex_state = 66}, - [2944] = {.lex_state = 177, .external_lex_state = 66}, - [2945] = {.lex_state = 177, .external_lex_state = 66}, - [2946] = {.lex_state = 177, .external_lex_state = 66}, - [2947] = {.lex_state = 47, .external_lex_state = 73}, - [2948] = {.lex_state = 177, .external_lex_state = 68}, - [2949] = {.lex_state = 181, .external_lex_state = 75}, - [2950] = {.lex_state = 177, .external_lex_state = 72}, - [2951] = {.lex_state = 177, .external_lex_state = 66}, - [2952] = {.lex_state = 47, .external_lex_state = 74}, - [2953] = {.lex_state = 47, .external_lex_state = 74}, - [2954] = {.lex_state = 177, .external_lex_state = 66}, - [2955] = {.lex_state = 177, .external_lex_state = 66}, - [2956] = {.lex_state = 177, .external_lex_state = 66}, - [2957] = {.lex_state = 177, .external_lex_state = 66}, - [2958] = {.lex_state = 177, .external_lex_state = 66}, - [2959] = {.lex_state = 177, .external_lex_state = 66}, - [2960] = {.lex_state = 177, .external_lex_state = 66}, - [2961] = {.lex_state = 181, .external_lex_state = 73}, - [2962] = {.lex_state = 177, .external_lex_state = 66}, - [2963] = {.lex_state = 177, .external_lex_state = 71}, - [2964] = {.lex_state = 177, .external_lex_state = 66}, - [2965] = {.lex_state = 177, .external_lex_state = 66}, - [2966] = {.lex_state = 177, .external_lex_state = 71}, - [2967] = {.lex_state = 177, .external_lex_state = 71}, - [2968] = {.lex_state = 177, .external_lex_state = 66}, - [2969] = {.lex_state = 177, .external_lex_state = 66}, - [2970] = {.lex_state = 177, .external_lex_state = 66}, - [2971] = {.lex_state = 177, .external_lex_state = 66}, - [2972] = {.lex_state = 177, .external_lex_state = 72}, - [2973] = {.lex_state = 177, .external_lex_state = 66}, - [2974] = {.lex_state = 177, .external_lex_state = 72}, - [2975] = {.lex_state = 177, .external_lex_state = 72}, - [2976] = {.lex_state = 177, .external_lex_state = 66}, - [2977] = {.lex_state = 177, .external_lex_state = 66}, - [2978] = {.lex_state = 177, .external_lex_state = 66}, - [2979] = {.lex_state = 177, .external_lex_state = 66}, - [2980] = {.lex_state = 177, .external_lex_state = 66}, - [2981] = {.lex_state = 177, .external_lex_state = 71}, - [2982] = {.lex_state = 183, .external_lex_state = 88}, - [2983] = {.lex_state = 177, .external_lex_state = 71}, - [2984] = {.lex_state = 177, .external_lex_state = 71}, - [2985] = {.lex_state = 177, .external_lex_state = 71}, - [2986] = {.lex_state = 177, .external_lex_state = 71}, - [2987] = {.lex_state = 177, .external_lex_state = 71}, - [2988] = {.lex_state = 177, .external_lex_state = 71}, - [2989] = {.lex_state = 177, .external_lex_state = 71}, - [2990] = {.lex_state = 177, .external_lex_state = 71}, - [2991] = {.lex_state = 177, .external_lex_state = 71}, - [2992] = {.lex_state = 177, .external_lex_state = 71}, - [2993] = {.lex_state = 177, .external_lex_state = 71}, - [2994] = {.lex_state = 177, .external_lex_state = 71}, - [2995] = {.lex_state = 177, .external_lex_state = 71}, - [2996] = {.lex_state = 177, .external_lex_state = 71}, - [2997] = {.lex_state = 177, .external_lex_state = 71}, - [2998] = {.lex_state = 177, .external_lex_state = 66}, - [2999] = {.lex_state = 177, .external_lex_state = 66}, - [3000] = {.lex_state = 177, .external_lex_state = 66}, - [3001] = {.lex_state = 177, .external_lex_state = 66}, - [3002] = {.lex_state = 177, .external_lex_state = 66}, - [3003] = {.lex_state = 177, .external_lex_state = 66}, + [1324] = {.lex_state = 176, .external_lex_state = 2}, + [1325] = {.lex_state = 44, .external_lex_state = 2}, + [1326] = {.lex_state = 176, .external_lex_state = 2}, + [1327] = {.lex_state = 176, .external_lex_state = 2}, + [1328] = {.lex_state = 176, .external_lex_state = 2}, + [1329] = {.lex_state = 176, .external_lex_state = 2}, + [1330] = {.lex_state = 176, .external_lex_state = 2}, + [1331] = {.lex_state = 176, .external_lex_state = 2}, + [1332] = {.lex_state = 176, .external_lex_state = 2}, + [1333] = {.lex_state = 176, .external_lex_state = 2}, + [1334] = {.lex_state = 176, .external_lex_state = 2}, + [1335] = {.lex_state = 176, .external_lex_state = 2}, + [1336] = {.lex_state = 176, .external_lex_state = 2}, + [1337] = {.lex_state = 176, .external_lex_state = 2}, + [1338] = {.lex_state = 176, .external_lex_state = 2}, + [1339] = {.lex_state = 176, .external_lex_state = 2}, + [1340] = {.lex_state = 176, .external_lex_state = 2}, + [1341] = {.lex_state = 176, .external_lex_state = 2}, + [1342] = {.lex_state = 176, .external_lex_state = 2}, + [1343] = {.lex_state = 176, .external_lex_state = 2}, + [1344] = {.lex_state = 176, .external_lex_state = 2}, + [1345] = {.lex_state = 176, .external_lex_state = 2}, + [1346] = {.lex_state = 176, .external_lex_state = 2}, + [1347] = {.lex_state = 176, .external_lex_state = 2}, + [1348] = {.lex_state = 176, .external_lex_state = 2}, + [1349] = {.lex_state = 176, .external_lex_state = 2}, + [1350] = {.lex_state = 176, .external_lex_state = 2}, + [1351] = {.lex_state = 176, .external_lex_state = 2}, + [1352] = {.lex_state = 176, .external_lex_state = 2}, + [1353] = {.lex_state = 176, .external_lex_state = 2}, + [1354] = {.lex_state = 176, .external_lex_state = 2}, + [1355] = {.lex_state = 176, .external_lex_state = 2}, + [1356] = {.lex_state = 176, .external_lex_state = 2}, + [1357] = {.lex_state = 176, .external_lex_state = 2}, + [1358] = {.lex_state = 176, .external_lex_state = 2}, + [1359] = {.lex_state = 176, .external_lex_state = 2}, + [1360] = {.lex_state = 176, .external_lex_state = 2}, + [1361] = {.lex_state = 176, .external_lex_state = 2}, + [1362] = {.lex_state = 176, .external_lex_state = 2}, + [1363] = {.lex_state = 176, .external_lex_state = 2}, + [1364] = {.lex_state = 176, .external_lex_state = 2}, + [1365] = {.lex_state = 176, .external_lex_state = 2}, + [1366] = {.lex_state = 176, .external_lex_state = 2}, + [1367] = {.lex_state = 176, .external_lex_state = 2}, + [1368] = {.lex_state = 176, .external_lex_state = 2}, + [1369] = {.lex_state = 176, .external_lex_state = 2}, + [1370] = {.lex_state = 176, .external_lex_state = 2}, + [1371] = {.lex_state = 176, .external_lex_state = 2}, + [1372] = {.lex_state = 176, .external_lex_state = 2}, + [1373] = {.lex_state = 176, .external_lex_state = 2}, + [1374] = {.lex_state = 176, .external_lex_state = 2}, + [1375] = {.lex_state = 176, .external_lex_state = 2}, + [1376] = {.lex_state = 176, .external_lex_state = 2}, + [1377] = {.lex_state = 176, .external_lex_state = 2}, + [1378] = {.lex_state = 176, .external_lex_state = 2}, + [1379] = {.lex_state = 176, .external_lex_state = 2}, + [1380] = {.lex_state = 176, .external_lex_state = 2}, + [1381] = {.lex_state = 176, .external_lex_state = 2}, + [1382] = {.lex_state = 176, .external_lex_state = 2}, + [1383] = {.lex_state = 176, .external_lex_state = 2}, + [1384] = {.lex_state = 176, .external_lex_state = 2}, + [1385] = {.lex_state = 176, .external_lex_state = 2}, + [1386] = {.lex_state = 176, .external_lex_state = 2}, + [1387] = {.lex_state = 176, .external_lex_state = 2}, + [1388] = {.lex_state = 176, .external_lex_state = 2}, + [1389] = {.lex_state = 176, .external_lex_state = 2}, + [1390] = {.lex_state = 176, .external_lex_state = 2}, + [1391] = {.lex_state = 176, .external_lex_state = 2}, + [1392] = {.lex_state = 176, .external_lex_state = 2}, + [1393] = {.lex_state = 176, .external_lex_state = 2}, + [1394] = {.lex_state = 176, .external_lex_state = 2}, + [1395] = {.lex_state = 176, .external_lex_state = 2}, + [1396] = {.lex_state = 176, .external_lex_state = 2}, + [1397] = {.lex_state = 176, .external_lex_state = 2}, + [1398] = {.lex_state = 176, .external_lex_state = 2}, + [1399] = {.lex_state = 176, .external_lex_state = 2}, + [1400] = {.lex_state = 176, .external_lex_state = 2}, + [1401] = {.lex_state = 176, .external_lex_state = 2}, + [1402] = {.lex_state = 176, .external_lex_state = 2}, + [1403] = {.lex_state = 176, .external_lex_state = 2}, + [1404] = {.lex_state = 176, .external_lex_state = 2}, + [1405] = {.lex_state = 176, .external_lex_state = 2}, + [1406] = {.lex_state = 176, .external_lex_state = 2}, + [1407] = {.lex_state = 176, .external_lex_state = 2}, + [1408] = {.lex_state = 176, .external_lex_state = 2}, + [1409] = {.lex_state = 176, .external_lex_state = 2}, + [1410] = {.lex_state = 176, .external_lex_state = 2}, + [1411] = {.lex_state = 176, .external_lex_state = 2}, + [1412] = {.lex_state = 176, .external_lex_state = 2}, + [1413] = {.lex_state = 176, .external_lex_state = 2}, + [1414] = {.lex_state = 176, .external_lex_state = 2}, + [1415] = {.lex_state = 176, .external_lex_state = 2}, + [1416] = {.lex_state = 176, .external_lex_state = 2}, + [1417] = {.lex_state = 176, .external_lex_state = 2}, + [1418] = {.lex_state = 176, .external_lex_state = 2}, + [1419] = {.lex_state = 176, .external_lex_state = 2}, + [1420] = {.lex_state = 176, .external_lex_state = 2}, + [1421] = {.lex_state = 176, .external_lex_state = 2}, + [1422] = {.lex_state = 176, .external_lex_state = 2}, + [1423] = {.lex_state = 176, .external_lex_state = 2}, + [1424] = {.lex_state = 176, .external_lex_state = 2}, + [1425] = {.lex_state = 176, .external_lex_state = 2}, + [1426] = {.lex_state = 176, .external_lex_state = 2}, + [1427] = {.lex_state = 176, .external_lex_state = 2}, + [1428] = {.lex_state = 176, .external_lex_state = 2}, + [1429] = {.lex_state = 176, .external_lex_state = 2}, + [1430] = {.lex_state = 176, .external_lex_state = 2}, + [1431] = {.lex_state = 176, .external_lex_state = 2}, + [1432] = {.lex_state = 176, .external_lex_state = 2}, + [1433] = {.lex_state = 176, .external_lex_state = 2}, + [1434] = {.lex_state = 176, .external_lex_state = 2}, + [1435] = {.lex_state = 176, .external_lex_state = 2}, + [1436] = {.lex_state = 176, .external_lex_state = 2}, + [1437] = {.lex_state = 176, .external_lex_state = 2}, + [1438] = {.lex_state = 176, .external_lex_state = 2}, + [1439] = {.lex_state = 176, .external_lex_state = 2}, + [1440] = {.lex_state = 176, .external_lex_state = 2}, + [1441] = {.lex_state = 176, .external_lex_state = 2}, + [1442] = {.lex_state = 176, .external_lex_state = 2}, + [1443] = {.lex_state = 176, .external_lex_state = 2}, + [1444] = {.lex_state = 176, .external_lex_state = 2}, + [1445] = {.lex_state = 176, .external_lex_state = 2}, + [1446] = {.lex_state = 176, .external_lex_state = 2}, + [1447] = {.lex_state = 176, .external_lex_state = 2}, + [1448] = {.lex_state = 176, .external_lex_state = 2}, + [1449] = {.lex_state = 176, .external_lex_state = 2}, + [1450] = {.lex_state = 176, .external_lex_state = 2}, + [1451] = {.lex_state = 176, .external_lex_state = 2}, + [1452] = {.lex_state = 176, .external_lex_state = 2}, + [1453] = {.lex_state = 176, .external_lex_state = 2}, + [1454] = {.lex_state = 176, .external_lex_state = 2}, + [1455] = {.lex_state = 176, .external_lex_state = 2}, + [1456] = {.lex_state = 176, .external_lex_state = 2}, + [1457] = {.lex_state = 176, .external_lex_state = 2}, + [1458] = {.lex_state = 176, .external_lex_state = 2}, + [1459] = {.lex_state = 176, .external_lex_state = 2}, + [1460] = {.lex_state = 176, .external_lex_state = 2}, + [1461] = {.lex_state = 176, .external_lex_state = 2}, + [1462] = {.lex_state = 176, .external_lex_state = 2}, + [1463] = {.lex_state = 176, .external_lex_state = 2}, + [1464] = {.lex_state = 176, .external_lex_state = 2}, + [1465] = {.lex_state = 176, .external_lex_state = 2}, + [1466] = {.lex_state = 176, .external_lex_state = 2}, + [1467] = {.lex_state = 176, .external_lex_state = 2}, + [1468] = {.lex_state = 176, .external_lex_state = 2}, + [1469] = {.lex_state = 176, .external_lex_state = 2}, + [1470] = {.lex_state = 176, .external_lex_state = 2}, + [1471] = {.lex_state = 176, .external_lex_state = 2}, + [1472] = {.lex_state = 176, .external_lex_state = 2}, + [1473] = {.lex_state = 176, .external_lex_state = 2}, + [1474] = {.lex_state = 176, .external_lex_state = 2}, + [1475] = {.lex_state = 176, .external_lex_state = 2}, + [1476] = {.lex_state = 176, .external_lex_state = 2}, + [1477] = {.lex_state = 176, .external_lex_state = 2}, + [1478] = {.lex_state = 176, .external_lex_state = 2}, + [1479] = {.lex_state = 176, .external_lex_state = 2}, + [1480] = {.lex_state = 176, .external_lex_state = 2}, + [1481] = {.lex_state = 176, .external_lex_state = 2}, + [1482] = {.lex_state = 176, .external_lex_state = 2}, + [1483] = {.lex_state = 176, .external_lex_state = 2}, + [1484] = {.lex_state = 176, .external_lex_state = 2}, + [1485] = {.lex_state = 176, .external_lex_state = 2}, + [1486] = {.lex_state = 176, .external_lex_state = 2}, + [1487] = {.lex_state = 176, .external_lex_state = 2}, + [1488] = {.lex_state = 176, .external_lex_state = 2}, + [1489] = {.lex_state = 176, .external_lex_state = 2}, + [1490] = {.lex_state = 176, .external_lex_state = 2}, + [1491] = {.lex_state = 176, .external_lex_state = 2}, + [1492] = {.lex_state = 176, .external_lex_state = 2}, + [1493] = {.lex_state = 176, .external_lex_state = 2}, + [1494] = {.lex_state = 176, .external_lex_state = 2}, + [1495] = {.lex_state = 176, .external_lex_state = 2}, + [1496] = {.lex_state = 176, .external_lex_state = 2}, + [1497] = {.lex_state = 176, .external_lex_state = 2}, + [1498] = {.lex_state = 176, .external_lex_state = 2}, + [1499] = {.lex_state = 176, .external_lex_state = 2}, + [1500] = {.lex_state = 176, .external_lex_state = 2}, + [1501] = {.lex_state = 176, .external_lex_state = 2}, + [1502] = {.lex_state = 176, .external_lex_state = 2}, + [1503] = {.lex_state = 176, .external_lex_state = 2}, + [1504] = {.lex_state = 176, .external_lex_state = 2}, + [1505] = {.lex_state = 176, .external_lex_state = 2}, + [1506] = {.lex_state = 176, .external_lex_state = 2}, + [1507] = {.lex_state = 176, .external_lex_state = 2}, + [1508] = {.lex_state = 176, .external_lex_state = 2}, + [1509] = {.lex_state = 176, .external_lex_state = 2}, + [1510] = {.lex_state = 176, .external_lex_state = 2}, + [1511] = {.lex_state = 176, .external_lex_state = 2}, + [1512] = {.lex_state = 176, .external_lex_state = 2}, + [1513] = {.lex_state = 176, .external_lex_state = 2}, + [1514] = {.lex_state = 176, .external_lex_state = 2}, + [1515] = {.lex_state = 176, .external_lex_state = 2}, + [1516] = {.lex_state = 176, .external_lex_state = 2}, + [1517] = {.lex_state = 176, .external_lex_state = 2}, + [1518] = {.lex_state = 176, .external_lex_state = 2}, + [1519] = {.lex_state = 176, .external_lex_state = 2}, + [1520] = {.lex_state = 176, .external_lex_state = 2}, + [1521] = {.lex_state = 176, .external_lex_state = 2}, + [1522] = {.lex_state = 176, .external_lex_state = 2}, + [1523] = {.lex_state = 176, .external_lex_state = 2}, + [1524] = {.lex_state = 176, .external_lex_state = 2}, + [1525] = {.lex_state = 176, .external_lex_state = 2}, + [1526] = {.lex_state = 176, .external_lex_state = 2}, + [1527] = {.lex_state = 176, .external_lex_state = 2}, + [1528] = {.lex_state = 176, .external_lex_state = 2}, + [1529] = {.lex_state = 176, .external_lex_state = 2}, + [1530] = {.lex_state = 176, .external_lex_state = 2}, + [1531] = {.lex_state = 176, .external_lex_state = 2}, + [1532] = {.lex_state = 176, .external_lex_state = 2}, + [1533] = {.lex_state = 176, .external_lex_state = 2}, + [1534] = {.lex_state = 176, .external_lex_state = 2}, + [1535] = {.lex_state = 176, .external_lex_state = 2}, + [1536] = {.lex_state = 176, .external_lex_state = 2}, + [1537] = {.lex_state = 176, .external_lex_state = 2}, + [1538] = {.lex_state = 176, .external_lex_state = 2}, + [1539] = {.lex_state = 176, .external_lex_state = 2}, + [1540] = {.lex_state = 176, .external_lex_state = 2}, + [1541] = {.lex_state = 176, .external_lex_state = 2}, + [1542] = {.lex_state = 176, .external_lex_state = 2}, + [1543] = {.lex_state = 176, .external_lex_state = 2}, + [1544] = {.lex_state = 176, .external_lex_state = 2}, + [1545] = {.lex_state = 176, .external_lex_state = 2}, + [1546] = {.lex_state = 176, .external_lex_state = 2}, + [1547] = {.lex_state = 176, .external_lex_state = 2}, + [1548] = {.lex_state = 176, .external_lex_state = 2}, + [1549] = {.lex_state = 176, .external_lex_state = 2}, + [1550] = {.lex_state = 176, .external_lex_state = 2}, + [1551] = {.lex_state = 176, .external_lex_state = 2}, + [1552] = {.lex_state = 176, .external_lex_state = 2}, + [1553] = {.lex_state = 176, .external_lex_state = 2}, + [1554] = {.lex_state = 176, .external_lex_state = 2}, + [1555] = {.lex_state = 176, .external_lex_state = 2}, + [1556] = {.lex_state = 176, .external_lex_state = 2}, + [1557] = {.lex_state = 176, .external_lex_state = 2}, + [1558] = {.lex_state = 176, .external_lex_state = 2}, + [1559] = {.lex_state = 176, .external_lex_state = 2}, + [1560] = {.lex_state = 176, .external_lex_state = 2}, + [1561] = {.lex_state = 176, .external_lex_state = 2}, + [1562] = {.lex_state = 176, .external_lex_state = 2}, + [1563] = {.lex_state = 176, .external_lex_state = 2}, + [1564] = {.lex_state = 176, .external_lex_state = 2}, + [1565] = {.lex_state = 176, .external_lex_state = 2}, + [1566] = {.lex_state = 176, .external_lex_state = 2}, + [1567] = {.lex_state = 176, .external_lex_state = 2}, + [1568] = {.lex_state = 176, .external_lex_state = 2}, + [1569] = {.lex_state = 176, .external_lex_state = 2}, + [1570] = {.lex_state = 176, .external_lex_state = 2}, + [1571] = {.lex_state = 176, .external_lex_state = 2}, + [1572] = {.lex_state = 176, .external_lex_state = 2}, + [1573] = {.lex_state = 176, .external_lex_state = 2}, + [1574] = {.lex_state = 176, .external_lex_state = 2}, + [1575] = {.lex_state = 176, .external_lex_state = 2}, + [1576] = {.lex_state = 176, .external_lex_state = 2}, + [1577] = {.lex_state = 176, .external_lex_state = 2}, + [1578] = {.lex_state = 176, .external_lex_state = 2}, + [1579] = {.lex_state = 176, .external_lex_state = 2}, + [1580] = {.lex_state = 176, .external_lex_state = 2}, + [1581] = {.lex_state = 176, .external_lex_state = 2}, + [1582] = {.lex_state = 176, .external_lex_state = 2}, + [1583] = {.lex_state = 176, .external_lex_state = 2}, + [1584] = {.lex_state = 176, .external_lex_state = 2}, + [1585] = {.lex_state = 176, .external_lex_state = 2}, + [1586] = {.lex_state = 176, .external_lex_state = 2}, + [1587] = {.lex_state = 176, .external_lex_state = 2}, + [1588] = {.lex_state = 176, .external_lex_state = 2}, + [1589] = {.lex_state = 176, .external_lex_state = 2}, + [1590] = {.lex_state = 176, .external_lex_state = 2}, + [1591] = {.lex_state = 176, .external_lex_state = 2}, + [1592] = {.lex_state = 176, .external_lex_state = 2}, + [1593] = {.lex_state = 176, .external_lex_state = 2}, + [1594] = {.lex_state = 176, .external_lex_state = 2}, + [1595] = {.lex_state = 176, .external_lex_state = 2}, + [1596] = {.lex_state = 176, .external_lex_state = 2}, + [1597] = {.lex_state = 176, .external_lex_state = 2}, + [1598] = {.lex_state = 176, .external_lex_state = 2}, + [1599] = {.lex_state = 176, .external_lex_state = 2}, + [1600] = {.lex_state = 176, .external_lex_state = 2}, + [1601] = {.lex_state = 176, .external_lex_state = 2}, + [1602] = {.lex_state = 176, .external_lex_state = 2}, + [1603] = {.lex_state = 176, .external_lex_state = 2}, + [1604] = {.lex_state = 176, .external_lex_state = 2}, + [1605] = {.lex_state = 176, .external_lex_state = 2}, + [1606] = {.lex_state = 176, .external_lex_state = 2}, + [1607] = {.lex_state = 176, .external_lex_state = 2}, + [1608] = {.lex_state = 176, .external_lex_state = 2}, + [1609] = {.lex_state = 176, .external_lex_state = 2}, + [1610] = {.lex_state = 176, .external_lex_state = 2}, + [1611] = {.lex_state = 176, .external_lex_state = 2}, + [1612] = {.lex_state = 176, .external_lex_state = 2}, + [1613] = {.lex_state = 176, .external_lex_state = 2}, + [1614] = {.lex_state = 176, .external_lex_state = 2}, + [1615] = {.lex_state = 176, .external_lex_state = 2}, + [1616] = {.lex_state = 176, .external_lex_state = 2}, + [1617] = {.lex_state = 176, .external_lex_state = 2}, + [1618] = {.lex_state = 176, .external_lex_state = 2}, + [1619] = {.lex_state = 176, .external_lex_state = 2}, + [1620] = {.lex_state = 176, .external_lex_state = 2}, + [1621] = {.lex_state = 176, .external_lex_state = 2}, + [1622] = {.lex_state = 176, .external_lex_state = 2}, + [1623] = {.lex_state = 176, .external_lex_state = 2}, + [1624] = {.lex_state = 176, .external_lex_state = 2}, + [1625] = {.lex_state = 176, .external_lex_state = 2}, + [1626] = {.lex_state = 176, .external_lex_state = 2}, + [1627] = {.lex_state = 176, .external_lex_state = 2}, + [1628] = {.lex_state = 176, .external_lex_state = 2}, + [1629] = {.lex_state = 176, .external_lex_state = 2}, + [1630] = {.lex_state = 176, .external_lex_state = 2}, + [1631] = {.lex_state = 176, .external_lex_state = 2}, + [1632] = {.lex_state = 176, .external_lex_state = 2}, + [1633] = {.lex_state = 176, .external_lex_state = 2}, + [1634] = {.lex_state = 176, .external_lex_state = 2}, + [1635] = {.lex_state = 176, .external_lex_state = 2}, + [1636] = {.lex_state = 176, .external_lex_state = 2}, + [1637] = {.lex_state = 176, .external_lex_state = 2}, + [1638] = {.lex_state = 176, .external_lex_state = 2}, + [1639] = {.lex_state = 176, .external_lex_state = 2}, + [1640] = {.lex_state = 176, .external_lex_state = 2}, + [1641] = {.lex_state = 176, .external_lex_state = 2}, + [1642] = {.lex_state = 176, .external_lex_state = 2}, + [1643] = {.lex_state = 176, .external_lex_state = 2}, + [1644] = {.lex_state = 176, .external_lex_state = 2}, + [1645] = {.lex_state = 176, .external_lex_state = 2}, + [1646] = {.lex_state = 176, .external_lex_state = 2}, + [1647] = {.lex_state = 176, .external_lex_state = 2}, + [1648] = {.lex_state = 176, .external_lex_state = 2}, + [1649] = {.lex_state = 176, .external_lex_state = 2}, + [1650] = {.lex_state = 176, .external_lex_state = 2}, + [1651] = {.lex_state = 176, .external_lex_state = 2}, + [1652] = {.lex_state = 176, .external_lex_state = 2}, + [1653] = {.lex_state = 176, .external_lex_state = 2}, + [1654] = {.lex_state = 176, .external_lex_state = 2}, + [1655] = {.lex_state = 176, .external_lex_state = 2}, + [1656] = {.lex_state = 176, .external_lex_state = 2}, + [1657] = {.lex_state = 176, .external_lex_state = 2}, + [1658] = {.lex_state = 176, .external_lex_state = 2}, + [1659] = {.lex_state = 176, .external_lex_state = 2}, + [1660] = {.lex_state = 176, .external_lex_state = 2}, + [1661] = {.lex_state = 176, .external_lex_state = 2}, + [1662] = {.lex_state = 176, .external_lex_state = 2}, + [1663] = {.lex_state = 176, .external_lex_state = 2}, + [1664] = {.lex_state = 176, .external_lex_state = 2}, + [1665] = {.lex_state = 176, .external_lex_state = 2}, + [1666] = {.lex_state = 176, .external_lex_state = 2}, + [1667] = {.lex_state = 176, .external_lex_state = 2}, + [1668] = {.lex_state = 176, .external_lex_state = 2}, + [1669] = {.lex_state = 176, .external_lex_state = 2}, + [1670] = {.lex_state = 176, .external_lex_state = 2}, + [1671] = {.lex_state = 176, .external_lex_state = 2}, + [1672] = {.lex_state = 176, .external_lex_state = 2}, + [1673] = {.lex_state = 176, .external_lex_state = 2}, + [1674] = {.lex_state = 176, .external_lex_state = 2}, + [1675] = {.lex_state = 176, .external_lex_state = 2}, + [1676] = {.lex_state = 176, .external_lex_state = 2}, + [1677] = {.lex_state = 176, .external_lex_state = 2}, + [1678] = {.lex_state = 176, .external_lex_state = 2}, + [1679] = {.lex_state = 176, .external_lex_state = 2}, + [1680] = {.lex_state = 176, .external_lex_state = 2}, + [1681] = {.lex_state = 176, .external_lex_state = 2}, + [1682] = {.lex_state = 176, .external_lex_state = 2}, + [1683] = {.lex_state = 176, .external_lex_state = 2}, + [1684] = {.lex_state = 176, .external_lex_state = 2}, + [1685] = {.lex_state = 176, .external_lex_state = 2}, + [1686] = {.lex_state = 176, .external_lex_state = 2}, + [1687] = {.lex_state = 176, .external_lex_state = 2}, + [1688] = {.lex_state = 176, .external_lex_state = 2}, + [1689] = {.lex_state = 176, .external_lex_state = 2}, + [1690] = {.lex_state = 176, .external_lex_state = 2}, + [1691] = {.lex_state = 176, .external_lex_state = 2}, + [1692] = {.lex_state = 176, .external_lex_state = 2}, + [1693] = {.lex_state = 176, .external_lex_state = 2}, + [1694] = {.lex_state = 176, .external_lex_state = 2}, + [1695] = {.lex_state = 176, .external_lex_state = 2}, + [1696] = {.lex_state = 176, .external_lex_state = 2}, + [1697] = {.lex_state = 176, .external_lex_state = 2}, + [1698] = {.lex_state = 176, .external_lex_state = 2}, + [1699] = {.lex_state = 176, .external_lex_state = 2}, + [1700] = {.lex_state = 176, .external_lex_state = 2}, + [1701] = {.lex_state = 176, .external_lex_state = 2}, + [1702] = {.lex_state = 176, .external_lex_state = 2}, + [1703] = {.lex_state = 176, .external_lex_state = 2}, + [1704] = {.lex_state = 176, .external_lex_state = 2}, + [1705] = {.lex_state = 176, .external_lex_state = 2}, + [1706] = {.lex_state = 176, .external_lex_state = 2}, + [1707] = {.lex_state = 176, .external_lex_state = 2}, + [1708] = {.lex_state = 176, .external_lex_state = 2}, + [1709] = {.lex_state = 176, .external_lex_state = 2}, + [1710] = {.lex_state = 176, .external_lex_state = 2}, + [1711] = {.lex_state = 176, .external_lex_state = 2}, + [1712] = {.lex_state = 176, .external_lex_state = 2}, + [1713] = {.lex_state = 176, .external_lex_state = 2}, + [1714] = {.lex_state = 176, .external_lex_state = 2}, + [1715] = {.lex_state = 176, .external_lex_state = 2}, + [1716] = {.lex_state = 176, .external_lex_state = 2}, + [1717] = {.lex_state = 176, .external_lex_state = 2}, + [1718] = {.lex_state = 176, .external_lex_state = 2}, + [1719] = {.lex_state = 176, .external_lex_state = 2}, + [1720] = {.lex_state = 176, .external_lex_state = 2}, + [1721] = {.lex_state = 176, .external_lex_state = 2}, + [1722] = {.lex_state = 176, .external_lex_state = 2}, + [1723] = {.lex_state = 176, .external_lex_state = 2}, + [1724] = {.lex_state = 176, .external_lex_state = 2}, + [1725] = {.lex_state = 176, .external_lex_state = 2}, + [1726] = {.lex_state = 176, .external_lex_state = 2}, + [1727] = {.lex_state = 176, .external_lex_state = 2}, + [1728] = {.lex_state = 176, .external_lex_state = 2}, + [1729] = {.lex_state = 176, .external_lex_state = 2}, + [1730] = {.lex_state = 176, .external_lex_state = 2}, + [1731] = {.lex_state = 176, .external_lex_state = 2}, + [1732] = {.lex_state = 176, .external_lex_state = 2}, + [1733] = {.lex_state = 176, .external_lex_state = 2}, + [1734] = {.lex_state = 176, .external_lex_state = 2}, + [1735] = {.lex_state = 176, .external_lex_state = 2}, + [1736] = {.lex_state = 176, .external_lex_state = 2}, + [1737] = {.lex_state = 176, .external_lex_state = 2}, + [1738] = {.lex_state = 176, .external_lex_state = 2}, + [1739] = {.lex_state = 176, .external_lex_state = 2}, + [1740] = {.lex_state = 176, .external_lex_state = 2}, + [1741] = {.lex_state = 176, .external_lex_state = 2}, + [1742] = {.lex_state = 176, .external_lex_state = 2}, + [1743] = {.lex_state = 176, .external_lex_state = 2}, + [1744] = {.lex_state = 176, .external_lex_state = 2}, + [1745] = {.lex_state = 176, .external_lex_state = 2}, + [1746] = {.lex_state = 176, .external_lex_state = 2}, + [1747] = {.lex_state = 176, .external_lex_state = 2}, + [1748] = {.lex_state = 176, .external_lex_state = 2}, + [1749] = {.lex_state = 176, .external_lex_state = 2}, + [1750] = {.lex_state = 176, .external_lex_state = 2}, + [1751] = {.lex_state = 176, .external_lex_state = 2}, + [1752] = {.lex_state = 176, .external_lex_state = 2}, + [1753] = {.lex_state = 176, .external_lex_state = 2}, + [1754] = {.lex_state = 176, .external_lex_state = 2}, + [1755] = {.lex_state = 176, .external_lex_state = 2}, + [1756] = {.lex_state = 176, .external_lex_state = 2}, + [1757] = {.lex_state = 176, .external_lex_state = 2}, + [1758] = {.lex_state = 176, .external_lex_state = 2}, + [1759] = {.lex_state = 176, .external_lex_state = 2}, + [1760] = {.lex_state = 176, .external_lex_state = 2}, + [1761] = {.lex_state = 176, .external_lex_state = 2}, + [1762] = {.lex_state = 176, .external_lex_state = 2}, + [1763] = {.lex_state = 176, .external_lex_state = 2}, + [1764] = {.lex_state = 176, .external_lex_state = 2}, + [1765] = {.lex_state = 176, .external_lex_state = 2}, + [1766] = {.lex_state = 176, .external_lex_state = 2}, + [1767] = {.lex_state = 176, .external_lex_state = 2}, + [1768] = {.lex_state = 176, .external_lex_state = 2}, + [1769] = {.lex_state = 176, .external_lex_state = 2}, + [1770] = {.lex_state = 176, .external_lex_state = 2}, + [1771] = {.lex_state = 176, .external_lex_state = 2}, + [1772] = {.lex_state = 176, .external_lex_state = 2}, + [1773] = {.lex_state = 176, .external_lex_state = 2}, + [1774] = {.lex_state = 176, .external_lex_state = 2}, + [1775] = {.lex_state = 176, .external_lex_state = 2}, + [1776] = {.lex_state = 176, .external_lex_state = 2}, + [1777] = {.lex_state = 176, .external_lex_state = 2}, + [1778] = {.lex_state = 176, .external_lex_state = 2}, + [1779] = {.lex_state = 176, .external_lex_state = 2}, + [1780] = {.lex_state = 176, .external_lex_state = 2}, + [1781] = {.lex_state = 176, .external_lex_state = 2}, + [1782] = {.lex_state = 176, .external_lex_state = 2}, + [1783] = {.lex_state = 176, .external_lex_state = 2}, + [1784] = {.lex_state = 176, .external_lex_state = 2}, + [1785] = {.lex_state = 176, .external_lex_state = 2}, + [1786] = {.lex_state = 176, .external_lex_state = 2}, + [1787] = {.lex_state = 176, .external_lex_state = 2}, + [1788] = {.lex_state = 176, .external_lex_state = 2}, + [1789] = {.lex_state = 176, .external_lex_state = 2}, + [1790] = {.lex_state = 176, .external_lex_state = 2}, + [1791] = {.lex_state = 176, .external_lex_state = 2}, + [1792] = {.lex_state = 176, .external_lex_state = 2}, + [1793] = {.lex_state = 176, .external_lex_state = 2}, + [1794] = {.lex_state = 176, .external_lex_state = 2}, + [1795] = {.lex_state = 176, .external_lex_state = 2}, + [1796] = {.lex_state = 176, .external_lex_state = 2}, + [1797] = {.lex_state = 176, .external_lex_state = 2}, + [1798] = {.lex_state = 176, .external_lex_state = 2}, + [1799] = {.lex_state = 176, .external_lex_state = 2}, + [1800] = {.lex_state = 176, .external_lex_state = 2}, + [1801] = {.lex_state = 176, .external_lex_state = 2}, + [1802] = {.lex_state = 176, .external_lex_state = 2}, + [1803] = {.lex_state = 176, .external_lex_state = 2}, + [1804] = {.lex_state = 176, .external_lex_state = 2}, + [1805] = {.lex_state = 176, .external_lex_state = 2}, + [1806] = {.lex_state = 176, .external_lex_state = 2}, + [1807] = {.lex_state = 176, .external_lex_state = 2}, + [1808] = {.lex_state = 176, .external_lex_state = 2}, + [1809] = {.lex_state = 176, .external_lex_state = 2}, + [1810] = {.lex_state = 176, .external_lex_state = 2}, + [1811] = {.lex_state = 176, .external_lex_state = 2}, + [1812] = {.lex_state = 176, .external_lex_state = 2}, + [1813] = {.lex_state = 176, .external_lex_state = 2}, + [1814] = {.lex_state = 176, .external_lex_state = 2}, + [1815] = {.lex_state = 176, .external_lex_state = 2}, + [1816] = {.lex_state = 176, .external_lex_state = 2}, + [1817] = {.lex_state = 176, .external_lex_state = 2}, + [1818] = {.lex_state = 176, .external_lex_state = 2}, + [1819] = {.lex_state = 176, .external_lex_state = 2}, + [1820] = {.lex_state = 176, .external_lex_state = 2}, + [1821] = {.lex_state = 176, .external_lex_state = 2}, + [1822] = {.lex_state = 176, .external_lex_state = 2}, + [1823] = {.lex_state = 176, .external_lex_state = 2}, + [1824] = {.lex_state = 176, .external_lex_state = 2}, + [1825] = {.lex_state = 176, .external_lex_state = 2}, + [1826] = {.lex_state = 176, .external_lex_state = 2}, + [1827] = {.lex_state = 176, .external_lex_state = 2}, + [1828] = {.lex_state = 176, .external_lex_state = 2}, + [1829] = {.lex_state = 176, .external_lex_state = 2}, + [1830] = {.lex_state = 176, .external_lex_state = 2}, + [1831] = {.lex_state = 176, .external_lex_state = 2}, + [1832] = {.lex_state = 176, .external_lex_state = 2}, + [1833] = {.lex_state = 176, .external_lex_state = 2}, + [1834] = {.lex_state = 176, .external_lex_state = 2}, + [1835] = {.lex_state = 176, .external_lex_state = 2}, + [1836] = {.lex_state = 176, .external_lex_state = 2}, + [1837] = {.lex_state = 176, .external_lex_state = 2}, + [1838] = {.lex_state = 176, .external_lex_state = 2}, + [1839] = {.lex_state = 176, .external_lex_state = 2}, + [1840] = {.lex_state = 176, .external_lex_state = 2}, + [1841] = {.lex_state = 176, .external_lex_state = 2}, + [1842] = {.lex_state = 176, .external_lex_state = 2}, + [1843] = {.lex_state = 176, .external_lex_state = 2}, + [1844] = {.lex_state = 176, .external_lex_state = 2}, + [1845] = {.lex_state = 176, .external_lex_state = 2}, + [1846] = {.lex_state = 176, .external_lex_state = 2}, + [1847] = {.lex_state = 176, .external_lex_state = 2}, + [1848] = {.lex_state = 176, .external_lex_state = 2}, + [1849] = {.lex_state = 176, .external_lex_state = 2}, + [1850] = {.lex_state = 176, .external_lex_state = 2}, + [1851] = {.lex_state = 176, .external_lex_state = 2}, + [1852] = {.lex_state = 176, .external_lex_state = 2}, + [1853] = {.lex_state = 176, .external_lex_state = 2}, + [1854] = {.lex_state = 176, .external_lex_state = 2}, + [1855] = {.lex_state = 176, .external_lex_state = 2}, + [1856] = {.lex_state = 176, .external_lex_state = 2}, + [1857] = {.lex_state = 176, .external_lex_state = 2}, + [1858] = {.lex_state = 176, .external_lex_state = 2}, + [1859] = {.lex_state = 176, .external_lex_state = 2}, + [1860] = {.lex_state = 176, .external_lex_state = 2}, + [1861] = {.lex_state = 176, .external_lex_state = 2}, + [1862] = {.lex_state = 176, .external_lex_state = 2}, + [1863] = {.lex_state = 176, .external_lex_state = 2}, + [1864] = {.lex_state = 176, .external_lex_state = 2}, + [1865] = {.lex_state = 176, .external_lex_state = 2}, + [1866] = {.lex_state = 176, .external_lex_state = 2}, + [1867] = {.lex_state = 176, .external_lex_state = 2}, + [1868] = {.lex_state = 176, .external_lex_state = 2}, + [1869] = {.lex_state = 176, .external_lex_state = 2}, + [1870] = {.lex_state = 176, .external_lex_state = 2}, + [1871] = {.lex_state = 176, .external_lex_state = 2}, + [1872] = {.lex_state = 176, .external_lex_state = 2}, + [1873] = {.lex_state = 176, .external_lex_state = 2}, + [1874] = {.lex_state = 176, .external_lex_state = 2}, + [1875] = {.lex_state = 176, .external_lex_state = 2}, + [1876] = {.lex_state = 176, .external_lex_state = 2}, + [1877] = {.lex_state = 176, .external_lex_state = 2}, + [1878] = {.lex_state = 176, .external_lex_state = 2}, + [1879] = {.lex_state = 176, .external_lex_state = 2}, + [1880] = {.lex_state = 176, .external_lex_state = 2}, + [1881] = {.lex_state = 176, .external_lex_state = 2}, + [1882] = {.lex_state = 176, .external_lex_state = 2}, + [1883] = {.lex_state = 176, .external_lex_state = 2}, + [1884] = {.lex_state = 176, .external_lex_state = 2}, + [1885] = {.lex_state = 176, .external_lex_state = 2}, + [1886] = {.lex_state = 176, .external_lex_state = 2}, + [1887] = {.lex_state = 176, .external_lex_state = 2}, + [1888] = {.lex_state = 176, .external_lex_state = 2}, + [1889] = {.lex_state = 176, .external_lex_state = 2}, + [1890] = {.lex_state = 176, .external_lex_state = 2}, + [1891] = {.lex_state = 176, .external_lex_state = 2}, + [1892] = {.lex_state = 176, .external_lex_state = 2}, + [1893] = {.lex_state = 176, .external_lex_state = 2}, + [1894] = {.lex_state = 176, .external_lex_state = 2}, + [1895] = {.lex_state = 176, .external_lex_state = 2}, + [1896] = {.lex_state = 176, .external_lex_state = 2}, + [1897] = {.lex_state = 176, .external_lex_state = 2}, + [1898] = {.lex_state = 176, .external_lex_state = 2}, + [1899] = {.lex_state = 176, .external_lex_state = 2}, + [1900] = {.lex_state = 176, .external_lex_state = 2}, + [1901] = {.lex_state = 176, .external_lex_state = 2}, + [1902] = {.lex_state = 176, .external_lex_state = 2}, + [1903] = {.lex_state = 176, .external_lex_state = 2}, + [1904] = {.lex_state = 176, .external_lex_state = 2}, + [1905] = {.lex_state = 176, .external_lex_state = 2}, + [1906] = {.lex_state = 176, .external_lex_state = 2}, + [1907] = {.lex_state = 176, .external_lex_state = 2}, + [1908] = {.lex_state = 176, .external_lex_state = 2}, + [1909] = {.lex_state = 176, .external_lex_state = 2}, + [1910] = {.lex_state = 176, .external_lex_state = 2}, + [1911] = {.lex_state = 176, .external_lex_state = 2}, + [1912] = {.lex_state = 176, .external_lex_state = 2}, + [1913] = {.lex_state = 176, .external_lex_state = 2}, + [1914] = {.lex_state = 176, .external_lex_state = 2}, + [1915] = {.lex_state = 176, .external_lex_state = 2}, + [1916] = {.lex_state = 176, .external_lex_state = 2}, + [1917] = {.lex_state = 176, .external_lex_state = 2}, + [1918] = {.lex_state = 176, .external_lex_state = 2}, + [1919] = {.lex_state = 176, .external_lex_state = 2}, + [1920] = {.lex_state = 176, .external_lex_state = 2}, + [1921] = {.lex_state = 176, .external_lex_state = 2}, + [1922] = {.lex_state = 176, .external_lex_state = 2}, + [1923] = {.lex_state = 176, .external_lex_state = 2}, + [1924] = {.lex_state = 176, .external_lex_state = 2}, + [1925] = {.lex_state = 176, .external_lex_state = 2}, + [1926] = {.lex_state = 176, .external_lex_state = 2}, + [1927] = {.lex_state = 176, .external_lex_state = 2}, + [1928] = {.lex_state = 176, .external_lex_state = 2}, + [1929] = {.lex_state = 176, .external_lex_state = 2}, + [1930] = {.lex_state = 176, .external_lex_state = 2}, + [1931] = {.lex_state = 176, .external_lex_state = 2}, + [1932] = {.lex_state = 176, .external_lex_state = 2}, + [1933] = {.lex_state = 176, .external_lex_state = 2}, + [1934] = {.lex_state = 176, .external_lex_state = 2}, + [1935] = {.lex_state = 176, .external_lex_state = 2}, + [1936] = {.lex_state = 176, .external_lex_state = 2}, + [1937] = {.lex_state = 176, .external_lex_state = 2}, + [1938] = {.lex_state = 176, .external_lex_state = 2}, + [1939] = {.lex_state = 176, .external_lex_state = 2}, + [1940] = {.lex_state = 176, .external_lex_state = 2}, + [1941] = {.lex_state = 176, .external_lex_state = 2}, + [1942] = {.lex_state = 176, .external_lex_state = 2}, + [1943] = {.lex_state = 176, .external_lex_state = 2}, + [1944] = {.lex_state = 176, .external_lex_state = 2}, + [1945] = {.lex_state = 176, .external_lex_state = 2}, + [1946] = {.lex_state = 176, .external_lex_state = 2}, + [1947] = {.lex_state = 176, .external_lex_state = 2}, + [1948] = {.lex_state = 176, .external_lex_state = 2}, + [1949] = {.lex_state = 176, .external_lex_state = 2}, + [1950] = {.lex_state = 176, .external_lex_state = 2}, + [1951] = {.lex_state = 176, .external_lex_state = 2}, + [1952] = {.lex_state = 176, .external_lex_state = 2}, + [1953] = {.lex_state = 176, .external_lex_state = 2}, + [1954] = {.lex_state = 176, .external_lex_state = 2}, + [1955] = {.lex_state = 176, .external_lex_state = 2}, + [1956] = {.lex_state = 176, .external_lex_state = 2}, + [1957] = {.lex_state = 176, .external_lex_state = 2}, + [1958] = {.lex_state = 176, .external_lex_state = 2}, + [1959] = {.lex_state = 176, .external_lex_state = 2}, + [1960] = {.lex_state = 176, .external_lex_state = 2}, + [1961] = {.lex_state = 176, .external_lex_state = 2}, + [1962] = {.lex_state = 176, .external_lex_state = 2}, + [1963] = {.lex_state = 176, .external_lex_state = 2}, + [1964] = {.lex_state = 176, .external_lex_state = 2}, + [1965] = {.lex_state = 176, .external_lex_state = 2}, + [1966] = {.lex_state = 176, .external_lex_state = 2}, + [1967] = {.lex_state = 176, .external_lex_state = 2}, + [1968] = {.lex_state = 176, .external_lex_state = 2}, + [1969] = {.lex_state = 176, .external_lex_state = 2}, + [1970] = {.lex_state = 176, .external_lex_state = 2}, + [1971] = {.lex_state = 176, .external_lex_state = 2}, + [1972] = {.lex_state = 176, .external_lex_state = 2}, + [1973] = {.lex_state = 176, .external_lex_state = 2}, + [1974] = {.lex_state = 176, .external_lex_state = 2}, + [1975] = {.lex_state = 176, .external_lex_state = 2}, + [1976] = {.lex_state = 168, .external_lex_state = 8}, + [1977] = {.lex_state = 19, .external_lex_state = 6}, + [1978] = {.lex_state = 168, .external_lex_state = 9}, + [1979] = {.lex_state = 168, .external_lex_state = 6}, + [1980] = {.lex_state = 171, .external_lex_state = 4}, + [1981] = {.lex_state = 171, .external_lex_state = 4}, + [1982] = {.lex_state = 171, .external_lex_state = 4}, + [1983] = {.lex_state = 171, .external_lex_state = 5}, + [1984] = {.lex_state = 26, .external_lex_state = 6}, + [1985] = {.lex_state = 171, .external_lex_state = 5}, + [1986] = {.lex_state = 171, .external_lex_state = 5}, + [1987] = {.lex_state = 171, .external_lex_state = 7}, + [1988] = {.lex_state = 26, .external_lex_state = 6}, + [1989] = {.lex_state = 26, .external_lex_state = 6}, + [1990] = {.lex_state = 171, .external_lex_state = 7}, + [1991] = {.lex_state = 171, .external_lex_state = 7}, + [1992] = {.lex_state = 176, .external_lex_state = 55}, + [1993] = {.lex_state = 176, .external_lex_state = 55}, + [1994] = {.lex_state = 176, .external_lex_state = 55}, + [1995] = {.lex_state = 171, .external_lex_state = 8}, + [1996] = {.lex_state = 171, .external_lex_state = 8}, + [1997] = {.lex_state = 25, .external_lex_state = 6}, + [1998] = {.lex_state = 171, .external_lex_state = 8}, + [1999] = {.lex_state = 25, .external_lex_state = 6}, + [2000] = {.lex_state = 25, .external_lex_state = 6}, + [2001] = {.lex_state = 171, .external_lex_state = 9}, + [2002] = {.lex_state = 176, .external_lex_state = 55}, + [2003] = {.lex_state = 176, .external_lex_state = 55}, + [2004] = {.lex_state = 171, .external_lex_state = 9}, + [2005] = {.lex_state = 171, .external_lex_state = 9}, + [2006] = {.lex_state = 176, .external_lex_state = 56}, + [2007] = {.lex_state = 176, .external_lex_state = 56}, + [2008] = {.lex_state = 176, .external_lex_state = 56}, + [2009] = {.lex_state = 176, .external_lex_state = 56}, + [2010] = {.lex_state = 176, .external_lex_state = 56}, + [2011] = {.lex_state = 174, .external_lex_state = 11}, + [2012] = {.lex_state = 174, .external_lex_state = 11}, + [2013] = {.lex_state = 174, .external_lex_state = 11}, + [2014] = {.lex_state = 174, .external_lex_state = 11}, + [2015] = {.lex_state = 174, .external_lex_state = 11}, + [2016] = {.lex_state = 176, .external_lex_state = 11}, + [2017] = {.lex_state = 174, .external_lex_state = 11}, + [2018] = {.lex_state = 176, .external_lex_state = 11}, + [2019] = {.lex_state = 176, .external_lex_state = 11}, + [2020] = {.lex_state = 176, .external_lex_state = 11}, + [2021] = {.lex_state = 176, .external_lex_state = 11}, + [2022] = {.lex_state = 176, .external_lex_state = 11}, + [2023] = {.lex_state = 176, .external_lex_state = 11}, + [2024] = {.lex_state = 176, .external_lex_state = 11}, + [2025] = {.lex_state = 174, .external_lex_state = 11}, + [2026] = {.lex_state = 176, .external_lex_state = 11}, + [2027] = {.lex_state = 176, .external_lex_state = 11}, + [2028] = {.lex_state = 176, .external_lex_state = 11}, + [2029] = {.lex_state = 176, .external_lex_state = 11}, + [2030] = {.lex_state = 176, .external_lex_state = 11}, + [2031] = {.lex_state = 176, .external_lex_state = 11}, + [2032] = {.lex_state = 176, .external_lex_state = 11}, + [2033] = {.lex_state = 176, .external_lex_state = 11}, + [2034] = {.lex_state = 176, .external_lex_state = 11}, + [2035] = {.lex_state = 176, .external_lex_state = 11}, + [2036] = {.lex_state = 176, .external_lex_state = 11}, + [2037] = {.lex_state = 176, .external_lex_state = 11}, + [2038] = {.lex_state = 176, .external_lex_state = 11}, + [2039] = {.lex_state = 176, .external_lex_state = 11}, + [2040] = {.lex_state = 176, .external_lex_state = 11}, + [2041] = {.lex_state = 176, .external_lex_state = 11}, + [2042] = {.lex_state = 176, .external_lex_state = 11}, + [2043] = {.lex_state = 176, .external_lex_state = 11}, + [2044] = {.lex_state = 176, .external_lex_state = 11}, + [2045] = {.lex_state = 174, .external_lex_state = 2}, + [2046] = {.lex_state = 176, .external_lex_state = 2}, + [2047] = {.lex_state = 174, .external_lex_state = 2}, + [2048] = {.lex_state = 176, .external_lex_state = 11}, + [2049] = {.lex_state = 176, .external_lex_state = 11}, + [2050] = {.lex_state = 174, .external_lex_state = 2}, + [2051] = {.lex_state = 176, .external_lex_state = 2}, + [2052] = {.lex_state = 176, .external_lex_state = 11}, + [2053] = {.lex_state = 176, .external_lex_state = 11}, + [2054] = {.lex_state = 176, .external_lex_state = 11}, + [2055] = {.lex_state = 176, .external_lex_state = 11}, + [2056] = {.lex_state = 176, .external_lex_state = 2}, + [2057] = {.lex_state = 174, .external_lex_state = 2}, + [2058] = {.lex_state = 174, .external_lex_state = 2}, + [2059] = {.lex_state = 176, .external_lex_state = 11}, + [2060] = {.lex_state = 176, .external_lex_state = 11}, + [2061] = {.lex_state = 176, .external_lex_state = 11}, + [2062] = {.lex_state = 176, .external_lex_state = 11}, + [2063] = {.lex_state = 176, .external_lex_state = 11}, + [2064] = {.lex_state = 176, .external_lex_state = 11}, + [2065] = {.lex_state = 176, .external_lex_state = 11}, + [2066] = {.lex_state = 174, .external_lex_state = 2}, + [2067] = {.lex_state = 176, .external_lex_state = 11}, + [2068] = {.lex_state = 176, .external_lex_state = 11}, + [2069] = {.lex_state = 176, .external_lex_state = 11}, + [2070] = {.lex_state = 176, .external_lex_state = 11}, + [2071] = {.lex_state = 176, .external_lex_state = 11}, + [2072] = {.lex_state = 176, .external_lex_state = 2}, + [2073] = {.lex_state = 176, .external_lex_state = 11}, + [2074] = {.lex_state = 176, .external_lex_state = 2}, + [2075] = {.lex_state = 176, .external_lex_state = 2}, + [2076] = {.lex_state = 174, .external_lex_state = 2}, + [2077] = {.lex_state = 176, .external_lex_state = 2}, + [2078] = {.lex_state = 176, .external_lex_state = 2}, + [2079] = {.lex_state = 176, .external_lex_state = 2}, + [2080] = {.lex_state = 176, .external_lex_state = 2}, + [2081] = {.lex_state = 176, .external_lex_state = 11}, + [2082] = {.lex_state = 176, .external_lex_state = 2}, + [2083] = {.lex_state = 176, .external_lex_state = 11}, + [2084] = {.lex_state = 176, .external_lex_state = 2}, + [2085] = {.lex_state = 176, .external_lex_state = 11}, + [2086] = {.lex_state = 176, .external_lex_state = 2}, + [2087] = {.lex_state = 176, .external_lex_state = 2}, + [2088] = {.lex_state = 176, .external_lex_state = 2}, + [2089] = {.lex_state = 176, .external_lex_state = 11}, + [2090] = {.lex_state = 176, .external_lex_state = 11}, + [2091] = {.lex_state = 176, .external_lex_state = 11}, + [2092] = {.lex_state = 176, .external_lex_state = 2}, + [2093] = {.lex_state = 176, .external_lex_state = 2}, + [2094] = {.lex_state = 176, .external_lex_state = 11}, + [2095] = {.lex_state = 176, .external_lex_state = 2}, + [2096] = {.lex_state = 176, .external_lex_state = 11}, + [2097] = {.lex_state = 176, .external_lex_state = 2}, + [2098] = {.lex_state = 176, .external_lex_state = 11}, + [2099] = {.lex_state = 176, .external_lex_state = 2}, + [2100] = {.lex_state = 176, .external_lex_state = 2}, + [2101] = {.lex_state = 176, .external_lex_state = 2}, + [2102] = {.lex_state = 176, .external_lex_state = 11}, + [2103] = {.lex_state = 176, .external_lex_state = 11}, + [2104] = {.lex_state = 176, .external_lex_state = 11}, + [2105] = {.lex_state = 176, .external_lex_state = 2}, + [2106] = {.lex_state = 176, .external_lex_state = 2}, + [2107] = {.lex_state = 176, .external_lex_state = 2}, + [2108] = {.lex_state = 176, .external_lex_state = 2}, + [2109] = {.lex_state = 176, .external_lex_state = 2}, + [2110] = {.lex_state = 176, .external_lex_state = 2}, + [2111] = {.lex_state = 176, .external_lex_state = 2}, + [2112] = {.lex_state = 176, .external_lex_state = 2}, + [2113] = {.lex_state = 176, .external_lex_state = 11}, + [2114] = {.lex_state = 176, .external_lex_state = 12}, + [2115] = {.lex_state = 176, .external_lex_state = 12}, + [2116] = {.lex_state = 176, .external_lex_state = 12}, + [2117] = {.lex_state = 176, .external_lex_state = 12}, + [2118] = {.lex_state = 176, .external_lex_state = 2}, + [2119] = {.lex_state = 176, .external_lex_state = 2}, + [2120] = {.lex_state = 176, .external_lex_state = 2}, + [2121] = {.lex_state = 176, .external_lex_state = 2}, + [2122] = {.lex_state = 176, .external_lex_state = 2}, + [2123] = {.lex_state = 176, .external_lex_state = 2}, + [2124] = {.lex_state = 176, .external_lex_state = 22}, + [2125] = {.lex_state = 176, .external_lex_state = 2}, + [2126] = {.lex_state = 176, .external_lex_state = 2}, + [2127] = {.lex_state = 176, .external_lex_state = 2}, + [2128] = {.lex_state = 176, .external_lex_state = 2}, + [2129] = {.lex_state = 176, .external_lex_state = 2}, + [2130] = {.lex_state = 176, .external_lex_state = 2}, + [2131] = {.lex_state = 176, .external_lex_state = 22}, + [2132] = {.lex_state = 176, .external_lex_state = 22}, + [2133] = {.lex_state = 176, .external_lex_state = 2}, + [2134] = {.lex_state = 176, .external_lex_state = 2}, + [2135] = {.lex_state = 176, .external_lex_state = 2}, + [2136] = {.lex_state = 176, .external_lex_state = 2}, + [2137] = {.lex_state = 176, .external_lex_state = 2}, + [2138] = {.lex_state = 176, .external_lex_state = 2}, + [2139] = {.lex_state = 176, .external_lex_state = 2}, + [2140] = {.lex_state = 176, .external_lex_state = 2}, + [2141] = {.lex_state = 176, .external_lex_state = 2}, + [2142] = {.lex_state = 176, .external_lex_state = 2}, + [2143] = {.lex_state = 176, .external_lex_state = 2}, + [2144] = {.lex_state = 176, .external_lex_state = 2}, + [2145] = {.lex_state = 176, .external_lex_state = 2}, + [2146] = {.lex_state = 176, .external_lex_state = 2}, + [2147] = {.lex_state = 176, .external_lex_state = 2}, + [2148] = {.lex_state = 178, .external_lex_state = 57}, + [2149] = {.lex_state = 178, .external_lex_state = 57}, + [2150] = {.lex_state = 178, .external_lex_state = 57}, + [2151] = {.lex_state = 178, .external_lex_state = 57}, + [2152] = {.lex_state = 178, .external_lex_state = 57}, + [2153] = {.lex_state = 178, .external_lex_state = 57}, + [2154] = {.lex_state = 178, .external_lex_state = 58}, + [2155] = {.lex_state = 178, .external_lex_state = 58}, + [2156] = {.lex_state = 178, .external_lex_state = 58}, + [2157] = {.lex_state = 178, .external_lex_state = 57}, + [2158] = {.lex_state = 178, .external_lex_state = 58}, + [2159] = {.lex_state = 178, .external_lex_state = 58}, + [2160] = {.lex_state = 178, .external_lex_state = 58}, + [2161] = {.lex_state = 178, .external_lex_state = 57}, + [2162] = {.lex_state = 174, .external_lex_state = 48}, + [2163] = {.lex_state = 174, .external_lex_state = 50}, + [2164] = {.lex_state = 178, .external_lex_state = 59}, + [2165] = {.lex_state = 178, .external_lex_state = 59}, + [2166] = {.lex_state = 178, .external_lex_state = 58}, + [2167] = {.lex_state = 178, .external_lex_state = 59}, + [2168] = {.lex_state = 178, .external_lex_state = 59}, + [2169] = {.lex_state = 178, .external_lex_state = 59}, + [2170] = {.lex_state = 178, .external_lex_state = 58}, + [2171] = {.lex_state = 178, .external_lex_state = 59}, + [2172] = {.lex_state = 178, .external_lex_state = 60}, + [2173] = {.lex_state = 178, .external_lex_state = 60}, + [2174] = {.lex_state = 178, .external_lex_state = 60}, + [2175] = {.lex_state = 178, .external_lex_state = 60}, + [2176] = {.lex_state = 178, .external_lex_state = 60}, + [2177] = {.lex_state = 178, .external_lex_state = 60}, + [2178] = {.lex_state = 178, .external_lex_state = 59}, + [2179] = {.lex_state = 178, .external_lex_state = 61}, + [2180] = {.lex_state = 178, .external_lex_state = 62}, + [2181] = {.lex_state = 178, .external_lex_state = 62}, + [2182] = {.lex_state = 178, .external_lex_state = 62}, + [2183] = {.lex_state = 178, .external_lex_state = 61}, + [2184] = {.lex_state = 178, .external_lex_state = 61}, + [2185] = {.lex_state = 178, .external_lex_state = 61}, + [2186] = {.lex_state = 178, .external_lex_state = 61}, + [2187] = {.lex_state = 178, .external_lex_state = 62}, + [2188] = {.lex_state = 178, .external_lex_state = 61}, + [2189] = {.lex_state = 178, .external_lex_state = 62}, + [2190] = {.lex_state = 178, .external_lex_state = 62}, + [2191] = {.lex_state = 178, .external_lex_state = 59}, + [2192] = {.lex_state = 178, .external_lex_state = 60}, + [2193] = {.lex_state = 178, .external_lex_state = 63}, + [2194] = {.lex_state = 178, .external_lex_state = 63}, + [2195] = {.lex_state = 178, .external_lex_state = 63}, + [2196] = {.lex_state = 180, .external_lex_state = 64}, + [2197] = {.lex_state = 178, .external_lex_state = 60}, + [2198] = {.lex_state = 178, .external_lex_state = 63}, + [2199] = {.lex_state = 178, .external_lex_state = 63}, + [2200] = {.lex_state = 178, .external_lex_state = 63}, + [2201] = {.lex_state = 178, .external_lex_state = 65}, + [2202] = {.lex_state = 178, .external_lex_state = 62}, + [2203] = {.lex_state = 178, .external_lex_state = 62}, + [2204] = {.lex_state = 178, .external_lex_state = 61}, + [2205] = {.lex_state = 178, .external_lex_state = 61}, + [2206] = {.lex_state = 178, .external_lex_state = 65}, + [2207] = {.lex_state = 180, .external_lex_state = 64}, + [2208] = {.lex_state = 178, .external_lex_state = 65}, + [2209] = {.lex_state = 178, .external_lex_state = 65}, + [2210] = {.lex_state = 180, .external_lex_state = 64}, + [2211] = {.lex_state = 178, .external_lex_state = 65}, + [2212] = {.lex_state = 180, .external_lex_state = 64}, + [2213] = {.lex_state = 178, .external_lex_state = 65}, + [2214] = {.lex_state = 178, .external_lex_state = 63}, + [2215] = {.lex_state = 178, .external_lex_state = 63}, + [2216] = {.lex_state = 180, .external_lex_state = 66}, + [2217] = {.lex_state = 180, .external_lex_state = 66}, + [2218] = {.lex_state = 180, .external_lex_state = 66}, + [2219] = {.lex_state = 178, .external_lex_state = 65}, + [2220] = {.lex_state = 180, .external_lex_state = 66}, + [2221] = {.lex_state = 180, .external_lex_state = 66}, + [2222] = {.lex_state = 178, .external_lex_state = 65}, + [2223] = {.lex_state = 180, .external_lex_state = 66}, + [2224] = {.lex_state = 180, .external_lex_state = 66}, + [2225] = {.lex_state = 178, .external_lex_state = 67}, + [2226] = {.lex_state = 178, .external_lex_state = 67}, + [2227] = {.lex_state = 178, .external_lex_state = 67}, + [2228] = {.lex_state = 180, .external_lex_state = 66}, + [2229] = {.lex_state = 178, .external_lex_state = 67}, + [2230] = {.lex_state = 180, .external_lex_state = 68}, + [2231] = {.lex_state = 178, .external_lex_state = 67}, + [2232] = {.lex_state = 178, .external_lex_state = 67}, + [2233] = {.lex_state = 185, .external_lex_state = 60}, + [2234] = {.lex_state = 185, .external_lex_state = 60}, + [2235] = {.lex_state = 185, .external_lex_state = 60}, + [2236] = {.lex_state = 180, .external_lex_state = 68}, + [2237] = {.lex_state = 185, .external_lex_state = 60}, + [2238] = {.lex_state = 180, .external_lex_state = 68}, + [2239] = {.lex_state = 185, .external_lex_state = 60}, + [2240] = {.lex_state = 180, .external_lex_state = 68}, + [2241] = {.lex_state = 185, .external_lex_state = 60}, + [2242] = {.lex_state = 178, .external_lex_state = 69}, + [2243] = {.lex_state = 178, .external_lex_state = 69}, + [2244] = {.lex_state = 178, .external_lex_state = 69}, + [2245] = {.lex_state = 180, .external_lex_state = 70}, + [2246] = {.lex_state = 180, .external_lex_state = 71}, + [2247] = {.lex_state = 178, .external_lex_state = 69}, + [2248] = {.lex_state = 178, .external_lex_state = 69}, + [2249] = {.lex_state = 178, .external_lex_state = 72}, + [2250] = {.lex_state = 180, .external_lex_state = 73}, + [2251] = {.lex_state = 180, .external_lex_state = 71}, + [2252] = {.lex_state = 178, .external_lex_state = 72}, + [2253] = {.lex_state = 178, .external_lex_state = 72}, + [2254] = {.lex_state = 180, .external_lex_state = 70}, + [2255] = {.lex_state = 178, .external_lex_state = 67}, + [2256] = {.lex_state = 178, .external_lex_state = 67}, + [2257] = {.lex_state = 178, .external_lex_state = 69}, + [2258] = {.lex_state = 178, .external_lex_state = 72}, + [2259] = {.lex_state = 178, .external_lex_state = 72}, + [2260] = {.lex_state = 178, .external_lex_state = 72}, + [2261] = {.lex_state = 180, .external_lex_state = 71}, + [2262] = {.lex_state = 180, .external_lex_state = 73}, + [2263] = {.lex_state = 180, .external_lex_state = 73}, + [2264] = {.lex_state = 185, .external_lex_state = 63}, + [2265] = {.lex_state = 185, .external_lex_state = 63}, + [2266] = {.lex_state = 185, .external_lex_state = 63}, + [2267] = {.lex_state = 185, .external_lex_state = 63}, + [2268] = {.lex_state = 185, .external_lex_state = 63}, + [2269] = {.lex_state = 180, .external_lex_state = 70}, + [2270] = {.lex_state = 180, .external_lex_state = 70}, + [2271] = {.lex_state = 185, .external_lex_state = 63}, + [2272] = {.lex_state = 180, .external_lex_state = 71}, + [2273] = {.lex_state = 180, .external_lex_state = 70}, + [2274] = {.lex_state = 180, .external_lex_state = 73}, + [2275] = {.lex_state = 180, .external_lex_state = 70}, + [2276] = {.lex_state = 180, .external_lex_state = 70}, + [2277] = {.lex_state = 185, .external_lex_state = 60}, + [2278] = {.lex_state = 185, .external_lex_state = 60}, + [2279] = {.lex_state = 178, .external_lex_state = 69}, + [2280] = {.lex_state = 178, .external_lex_state = 69}, + [2281] = {.lex_state = 180, .external_lex_state = 74}, + [2282] = {.lex_state = 178, .external_lex_state = 75}, + [2283] = {.lex_state = 178, .external_lex_state = 75}, + [2284] = {.lex_state = 178, .external_lex_state = 75}, + [2285] = {.lex_state = 178, .external_lex_state = 75}, + [2286] = {.lex_state = 180, .external_lex_state = 74}, + [2287] = {.lex_state = 180, .external_lex_state = 74}, + [2288] = {.lex_state = 178, .external_lex_state = 75}, + [2289] = {.lex_state = 180, .external_lex_state = 76}, + [2290] = {.lex_state = 178, .external_lex_state = 72}, + [2291] = {.lex_state = 180, .external_lex_state = 76}, + [2292] = {.lex_state = 180, .external_lex_state = 70}, + [2293] = {.lex_state = 178, .external_lex_state = 75}, + [2294] = {.lex_state = 178, .external_lex_state = 72}, + [2295] = {.lex_state = 185, .external_lex_state = 63}, + [2296] = {.lex_state = 180, .external_lex_state = 74}, + [2297] = {.lex_state = 176, .external_lex_state = 2}, + [2298] = {.lex_state = 185, .external_lex_state = 63}, + [2299] = {.lex_state = 180, .external_lex_state = 76}, + [2300] = {.lex_state = 180, .external_lex_state = 76}, + [2301] = {.lex_state = 180, .external_lex_state = 76}, + [2302] = {.lex_state = 180, .external_lex_state = 76}, + [2303] = {.lex_state = 180, .external_lex_state = 76}, + [2304] = {.lex_state = 178, .external_lex_state = 75}, + [2305] = {.lex_state = 176, .external_lex_state = 2}, + [2306] = {.lex_state = 180, .external_lex_state = 74}, + [2307] = {.lex_state = 180, .external_lex_state = 76}, + [2308] = {.lex_state = 178, .external_lex_state = 75}, + [2309] = {.lex_state = 180, .external_lex_state = 74}, + [2310] = {.lex_state = 180, .external_lex_state = 77}, + [2311] = {.lex_state = 182, .external_lex_state = 64}, + [2312] = {.lex_state = 45, .external_lex_state = 71}, + [2313] = {.lex_state = 180, .external_lex_state = 77}, + [2314] = {.lex_state = 182, .external_lex_state = 64}, + [2315] = {.lex_state = 182, .external_lex_state = 64}, + [2316] = {.lex_state = 182, .external_lex_state = 64}, + [2317] = {.lex_state = 180, .external_lex_state = 77}, + [2318] = {.lex_state = 182, .external_lex_state = 64}, + [2319] = {.lex_state = 180, .external_lex_state = 77}, + [2320] = {.lex_state = 45, .external_lex_state = 71}, + [2321] = {.lex_state = 45, .external_lex_state = 71}, + [2322] = {.lex_state = 180, .external_lex_state = 78}, + [2323] = {.lex_state = 182, .external_lex_state = 64}, + [2324] = {.lex_state = 45, .external_lex_state = 71}, + [2325] = {.lex_state = 182, .external_lex_state = 66}, + [2326] = {.lex_state = 182, .external_lex_state = 66}, + [2327] = {.lex_state = 180, .external_lex_state = 79}, + [2328] = {.lex_state = 182, .external_lex_state = 66}, + [2329] = {.lex_state = 182, .external_lex_state = 66}, + [2330] = {.lex_state = 182, .external_lex_state = 66}, + [2331] = {.lex_state = 182, .external_lex_state = 64}, + [2332] = {.lex_state = 178, .external_lex_state = 64}, + [2333] = {.lex_state = 180, .external_lex_state = 71}, + [2334] = {.lex_state = 178, .external_lex_state = 64}, + [2335] = {.lex_state = 178, .external_lex_state = 64}, + [2336] = {.lex_state = 180, .external_lex_state = 71}, + [2337] = {.lex_state = 180, .external_lex_state = 78}, + [2338] = {.lex_state = 45, .external_lex_state = 74}, + [2339] = {.lex_state = 178, .external_lex_state = 64}, + [2340] = {.lex_state = 180, .external_lex_state = 78}, + [2341] = {.lex_state = 180, .external_lex_state = 78}, + [2342] = {.lex_state = 178, .external_lex_state = 64}, + [2343] = {.lex_state = 180, .external_lex_state = 79}, + [2344] = {.lex_state = 180, .external_lex_state = 79}, + [2345] = {.lex_state = 178, .external_lex_state = 64}, + [2346] = {.lex_state = 180, .external_lex_state = 79}, + [2347] = {.lex_state = 178, .external_lex_state = 64}, + [2348] = {.lex_state = 182, .external_lex_state = 66}, + [2349] = {.lex_state = 178, .external_lex_state = 64}, + [2350] = {.lex_state = 178, .external_lex_state = 64}, + [2351] = {.lex_state = 182, .external_lex_state = 64}, + [2352] = {.lex_state = 178, .external_lex_state = 64}, + [2353] = {.lex_state = 178, .external_lex_state = 64}, + [2354] = {.lex_state = 178, .external_lex_state = 64}, + [2355] = {.lex_state = 178, .external_lex_state = 64}, + [2356] = {.lex_state = 178, .external_lex_state = 64}, + [2357] = {.lex_state = 178, .external_lex_state = 64}, + [2358] = {.lex_state = 184, .external_lex_state = 80}, + [2359] = {.lex_state = 178, .external_lex_state = 64}, + [2360] = {.lex_state = 178, .external_lex_state = 64}, + [2361] = {.lex_state = 178, .external_lex_state = 64}, + [2362] = {.lex_state = 19, .external_lex_state = 74}, + [2363] = {.lex_state = 178, .external_lex_state = 64}, + [2364] = {.lex_state = 178, .external_lex_state = 64}, + [2365] = {.lex_state = 178, .external_lex_state = 64}, + [2366] = {.lex_state = 178, .external_lex_state = 64}, + [2367] = {.lex_state = 178, .external_lex_state = 64}, + [2368] = {.lex_state = 180, .external_lex_state = 79}, + [2369] = {.lex_state = 178, .external_lex_state = 64}, + [2370] = {.lex_state = 180, .external_lex_state = 81}, + [2371] = {.lex_state = 19, .external_lex_state = 74}, + [2372] = {.lex_state = 178, .external_lex_state = 64}, + [2373] = {.lex_state = 178, .external_lex_state = 64}, + [2374] = {.lex_state = 178, .external_lex_state = 64}, + [2375] = {.lex_state = 178, .external_lex_state = 64}, + [2376] = {.lex_state = 178, .external_lex_state = 64}, + [2377] = {.lex_state = 19, .external_lex_state = 74}, + [2378] = {.lex_state = 178, .external_lex_state = 64}, + [2379] = {.lex_state = 178, .external_lex_state = 64}, + [2380] = {.lex_state = 178, .external_lex_state = 64}, + [2381] = {.lex_state = 178, .external_lex_state = 64}, + [2382] = {.lex_state = 180, .external_lex_state = 74}, + [2383] = {.lex_state = 182, .external_lex_state = 68}, + [2384] = {.lex_state = 180, .external_lex_state = 74}, + [2385] = {.lex_state = 178, .external_lex_state = 66}, + [2386] = {.lex_state = 182, .external_lex_state = 66}, + [2387] = {.lex_state = 182, .external_lex_state = 68}, + [2388] = {.lex_state = 178, .external_lex_state = 64}, + [2389] = {.lex_state = 178, .external_lex_state = 66}, + [2390] = {.lex_state = 168, .external_lex_state = 81}, + [2391] = {.lex_state = 182, .external_lex_state = 68}, + [2392] = {.lex_state = 182, .external_lex_state = 68}, + [2393] = {.lex_state = 178, .external_lex_state = 66}, + [2394] = {.lex_state = 168, .external_lex_state = 79}, + [2395] = {.lex_state = 180, .external_lex_state = 74}, + [2396] = {.lex_state = 178, .external_lex_state = 80}, + [2397] = {.lex_state = 180, .external_lex_state = 74}, + [2398] = {.lex_state = 178, .external_lex_state = 66}, + [2399] = {.lex_state = 178, .external_lex_state = 64}, + [2400] = {.lex_state = 178, .external_lex_state = 66}, + [2401] = {.lex_state = 178, .external_lex_state = 80}, + [2402] = {.lex_state = 178, .external_lex_state = 66}, + [2403] = {.lex_state = 178, .external_lex_state = 66}, + [2404] = {.lex_state = 168, .external_lex_state = 81}, + [2405] = {.lex_state = 180, .external_lex_state = 74}, + [2406] = {.lex_state = 178, .external_lex_state = 64}, + [2407] = {.lex_state = 182, .external_lex_state = 68}, + [2408] = {.lex_state = 180, .external_lex_state = 74}, + [2409] = {.lex_state = 180, .external_lex_state = 74}, + [2410] = {.lex_state = 180, .external_lex_state = 74}, + [2411] = {.lex_state = 180, .external_lex_state = 74}, + [2412] = {.lex_state = 178, .external_lex_state = 80}, + [2413] = {.lex_state = 180, .external_lex_state = 81}, + [2414] = {.lex_state = 180, .external_lex_state = 74}, + [2415] = {.lex_state = 180, .external_lex_state = 74}, + [2416] = {.lex_state = 178, .external_lex_state = 66}, + [2417] = {.lex_state = 168, .external_lex_state = 81}, + [2418] = {.lex_state = 178, .external_lex_state = 66}, + [2419] = {.lex_state = 168, .external_lex_state = 74}, + [2420] = {.lex_state = 178, .external_lex_state = 64}, + [2421] = {.lex_state = 178, .external_lex_state = 64}, + [2422] = {.lex_state = 168, .external_lex_state = 74}, + [2423] = {.lex_state = 178, .external_lex_state = 66}, + [2424] = {.lex_state = 168, .external_lex_state = 81}, + [2425] = {.lex_state = 178, .external_lex_state = 66}, + [2426] = {.lex_state = 178, .external_lex_state = 66}, + [2427] = {.lex_state = 178, .external_lex_state = 66}, + [2428] = {.lex_state = 182, .external_lex_state = 66}, + [2429] = {.lex_state = 178, .external_lex_state = 64}, + [2430] = {.lex_state = 178, .external_lex_state = 66}, + [2431] = {.lex_state = 178, .external_lex_state = 66}, + [2432] = {.lex_state = 178, .external_lex_state = 66}, + [2433] = {.lex_state = 178, .external_lex_state = 66}, + [2434] = {.lex_state = 178, .external_lex_state = 66}, + [2435] = {.lex_state = 178, .external_lex_state = 66}, + [2436] = {.lex_state = 178, .external_lex_state = 66}, + [2437] = {.lex_state = 178, .external_lex_state = 66}, + [2438] = {.lex_state = 178, .external_lex_state = 66}, + [2439] = {.lex_state = 178, .external_lex_state = 66}, + [2440] = {.lex_state = 178, .external_lex_state = 66}, + [2441] = {.lex_state = 178, .external_lex_state = 66}, + [2442] = {.lex_state = 184, .external_lex_state = 82}, + [2443] = {.lex_state = 180, .external_lex_state = 74}, + [2444] = {.lex_state = 178, .external_lex_state = 66}, + [2445] = {.lex_state = 178, .external_lex_state = 66}, + [2446] = {.lex_state = 168, .external_lex_state = 74}, + [2447] = {.lex_state = 168, .external_lex_state = 74}, + [2448] = {.lex_state = 178, .external_lex_state = 64}, + [2449] = {.lex_state = 168, .external_lex_state = 74}, + [2450] = {.lex_state = 178, .external_lex_state = 64}, + [2451] = {.lex_state = 178, .external_lex_state = 64}, + [2452] = {.lex_state = 178, .external_lex_state = 64}, + [2453] = {.lex_state = 178, .external_lex_state = 64}, + [2454] = {.lex_state = 178, .external_lex_state = 64}, + [2455] = {.lex_state = 178, .external_lex_state = 66}, + [2456] = {.lex_state = 168, .external_lex_state = 74}, + [2457] = {.lex_state = 184, .external_lex_state = 80}, + [2458] = {.lex_state = 180, .external_lex_state = 74}, + [2459] = {.lex_state = 178, .external_lex_state = 64}, + [2460] = {.lex_state = 46, .external_lex_state = 71}, + [2461] = {.lex_state = 46, .external_lex_state = 71}, + [2462] = {.lex_state = 46, .external_lex_state = 71}, + [2463] = {.lex_state = 178, .external_lex_state = 66}, + [2464] = {.lex_state = 178, .external_lex_state = 64}, + [2465] = {.lex_state = 182, .external_lex_state = 68}, + [2466] = {.lex_state = 178, .external_lex_state = 64}, + [2467] = {.lex_state = 46, .external_lex_state = 71}, + [2468] = {.lex_state = 46, .external_lex_state = 71}, + [2469] = {.lex_state = 178, .external_lex_state = 64}, + [2470] = {.lex_state = 178, .external_lex_state = 66}, + [2471] = {.lex_state = 178, .external_lex_state = 66}, + [2472] = {.lex_state = 178, .external_lex_state = 64}, + [2473] = {.lex_state = 168, .external_lex_state = 74}, + [2474] = {.lex_state = 168, .external_lex_state = 74}, + [2475] = {.lex_state = 168, .external_lex_state = 74}, + [2476] = {.lex_state = 184, .external_lex_state = 80}, + [2477] = {.lex_state = 178, .external_lex_state = 66}, + [2478] = {.lex_state = 178, .external_lex_state = 66}, + [2479] = {.lex_state = 178, .external_lex_state = 64}, + [2480] = {.lex_state = 178, .external_lex_state = 64}, + [2481] = {.lex_state = 178, .external_lex_state = 64}, + [2482] = {.lex_state = 178, .external_lex_state = 64}, + [2483] = {.lex_state = 178, .external_lex_state = 64}, + [2484] = {.lex_state = 182, .external_lex_state = 73}, + [2485] = {.lex_state = 178, .external_lex_state = 64}, + [2486] = {.lex_state = 178, .external_lex_state = 64}, + [2487] = {.lex_state = 178, .external_lex_state = 64}, + [2488] = {.lex_state = 178, .external_lex_state = 80}, + [2489] = {.lex_state = 182, .external_lex_state = 73}, + [2490] = {.lex_state = 178, .external_lex_state = 64}, + [2491] = {.lex_state = 178, .external_lex_state = 64}, + [2492] = {.lex_state = 178, .external_lex_state = 82}, + [2493] = {.lex_state = 178, .external_lex_state = 64}, + [2494] = {.lex_state = 178, .external_lex_state = 64}, + [2495] = {.lex_state = 178, .external_lex_state = 83}, + [2496] = {.lex_state = 178, .external_lex_state = 83}, + [2497] = {.lex_state = 178, .external_lex_state = 64}, + [2498] = {.lex_state = 178, .external_lex_state = 64}, + [2499] = {.lex_state = 182, .external_lex_state = 73}, + [2500] = {.lex_state = 178, .external_lex_state = 66}, + [2501] = {.lex_state = 178, .external_lex_state = 64}, + [2502] = {.lex_state = 178, .external_lex_state = 64}, + [2503] = {.lex_state = 178, .external_lex_state = 64}, + [2504] = {.lex_state = 178, .external_lex_state = 64}, + [2505] = {.lex_state = 178, .external_lex_state = 64}, + [2506] = {.lex_state = 178, .external_lex_state = 64}, + [2507] = {.lex_state = 182, .external_lex_state = 73}, + [2508] = {.lex_state = 178, .external_lex_state = 64}, + [2509] = {.lex_state = 182, .external_lex_state = 73}, + [2510] = {.lex_state = 178, .external_lex_state = 64}, + [2511] = {.lex_state = 178, .external_lex_state = 64}, + [2512] = {.lex_state = 178, .external_lex_state = 64}, + [2513] = {.lex_state = 178, .external_lex_state = 82}, + [2514] = {.lex_state = 178, .external_lex_state = 64}, + [2515] = {.lex_state = 178, .external_lex_state = 64}, + [2516] = {.lex_state = 178, .external_lex_state = 64}, + [2517] = {.lex_state = 182, .external_lex_state = 70}, + [2518] = {.lex_state = 178, .external_lex_state = 64}, + [2519] = {.lex_state = 182, .external_lex_state = 70}, + [2520] = {.lex_state = 184, .external_lex_state = 64}, + [2521] = {.lex_state = 178, .external_lex_state = 68}, + [2522] = {.lex_state = 178, .external_lex_state = 64}, + [2523] = {.lex_state = 178, .external_lex_state = 64}, + [2524] = {.lex_state = 178, .external_lex_state = 64}, + [2525] = {.lex_state = 182, .external_lex_state = 70}, + [2526] = {.lex_state = 182, .external_lex_state = 70}, + [2527] = {.lex_state = 178, .external_lex_state = 64}, + [2528] = {.lex_state = 178, .external_lex_state = 64}, + [2529] = {.lex_state = 178, .external_lex_state = 64}, + [2530] = {.lex_state = 184, .external_lex_state = 64}, + [2531] = {.lex_state = 178, .external_lex_state = 64}, + [2532] = {.lex_state = 178, .external_lex_state = 64}, + [2533] = {.lex_state = 178, .external_lex_state = 64}, + [2534] = {.lex_state = 178, .external_lex_state = 64}, + [2535] = {.lex_state = 178, .external_lex_state = 64}, + [2536] = {.lex_state = 178, .external_lex_state = 64}, + [2537] = {.lex_state = 178, .external_lex_state = 64}, + [2538] = {.lex_state = 178, .external_lex_state = 64}, + [2539] = {.lex_state = 178, .external_lex_state = 64}, + [2540] = {.lex_state = 178, .external_lex_state = 64}, + [2541] = {.lex_state = 178, .external_lex_state = 68}, + [2542] = {.lex_state = 178, .external_lex_state = 68}, + [2543] = {.lex_state = 178, .external_lex_state = 64}, + [2544] = {.lex_state = 178, .external_lex_state = 64}, + [2545] = {.lex_state = 178, .external_lex_state = 64}, + [2546] = {.lex_state = 46, .external_lex_state = 71}, + [2547] = {.lex_state = 178, .external_lex_state = 64}, + [2548] = {.lex_state = 178, .external_lex_state = 64}, + [2549] = {.lex_state = 182, .external_lex_state = 70}, + [2550] = {.lex_state = 178, .external_lex_state = 64}, + [2551] = {.lex_state = 178, .external_lex_state = 64}, + [2552] = {.lex_state = 178, .external_lex_state = 64}, + [2553] = {.lex_state = 178, .external_lex_state = 64}, + [2554] = {.lex_state = 178, .external_lex_state = 64}, + [2555] = {.lex_state = 182, .external_lex_state = 64}, + [2556] = {.lex_state = 178, .external_lex_state = 83}, + [2557] = {.lex_state = 178, .external_lex_state = 68}, + [2558] = {.lex_state = 178, .external_lex_state = 68}, + [2559] = {.lex_state = 178, .external_lex_state = 64}, + [2560] = {.lex_state = 178, .external_lex_state = 64}, + [2561] = {.lex_state = 178, .external_lex_state = 64}, + [2562] = {.lex_state = 178, .external_lex_state = 64}, + [2563] = {.lex_state = 178, .external_lex_state = 64}, + [2564] = {.lex_state = 178, .external_lex_state = 64}, + [2565] = {.lex_state = 178, .external_lex_state = 64}, + [2566] = {.lex_state = 178, .external_lex_state = 83}, + [2567] = {.lex_state = 184, .external_lex_state = 64}, + [2568] = {.lex_state = 178, .external_lex_state = 64}, + [2569] = {.lex_state = 178, .external_lex_state = 64}, + [2570] = {.lex_state = 178, .external_lex_state = 64}, + [2571] = {.lex_state = 178, .external_lex_state = 64}, + [2572] = {.lex_state = 178, .external_lex_state = 64}, + [2573] = {.lex_state = 178, .external_lex_state = 64}, + [2574] = {.lex_state = 178, .external_lex_state = 64}, + [2575] = {.lex_state = 182, .external_lex_state = 68}, + [2576] = {.lex_state = 178, .external_lex_state = 64}, + [2577] = {.lex_state = 178, .external_lex_state = 64}, + [2578] = {.lex_state = 178, .external_lex_state = 64}, + [2579] = {.lex_state = 178, .external_lex_state = 82}, + [2580] = {.lex_state = 178, .external_lex_state = 64}, + [2581] = {.lex_state = 178, .external_lex_state = 68}, + [2582] = {.lex_state = 178, .external_lex_state = 64}, + [2583] = {.lex_state = 178, .external_lex_state = 66}, + [2584] = {.lex_state = 178, .external_lex_state = 68}, + [2585] = {.lex_state = 178, .external_lex_state = 68}, + [2586] = {.lex_state = 178, .external_lex_state = 64}, + [2587] = {.lex_state = 46, .external_lex_state = 74}, + [2588] = {.lex_state = 182, .external_lex_state = 73}, + [2589] = {.lex_state = 178, .external_lex_state = 68}, + [2590] = {.lex_state = 178, .external_lex_state = 68}, + [2591] = {.lex_state = 178, .external_lex_state = 64}, + [2592] = {.lex_state = 178, .external_lex_state = 64}, + [2593] = {.lex_state = 178, .external_lex_state = 64}, + [2594] = {.lex_state = 178, .external_lex_state = 64}, + [2595] = {.lex_state = 178, .external_lex_state = 64}, + [2596] = {.lex_state = 178, .external_lex_state = 64}, + [2597] = {.lex_state = 178, .external_lex_state = 68}, + [2598] = {.lex_state = 178, .external_lex_state = 64}, + [2599] = {.lex_state = 178, .external_lex_state = 64}, + [2600] = {.lex_state = 178, .external_lex_state = 64}, + [2601] = {.lex_state = 178, .external_lex_state = 64}, + [2602] = {.lex_state = 178, .external_lex_state = 64}, + [2603] = {.lex_state = 178, .external_lex_state = 64}, + [2604] = {.lex_state = 178, .external_lex_state = 64}, + [2605] = {.lex_state = 178, .external_lex_state = 64}, + [2606] = {.lex_state = 178, .external_lex_state = 64}, + [2607] = {.lex_state = 178, .external_lex_state = 64}, + [2608] = {.lex_state = 178, .external_lex_state = 64}, + [2609] = {.lex_state = 178, .external_lex_state = 64}, + [2610] = {.lex_state = 178, .external_lex_state = 64}, + [2611] = {.lex_state = 178, .external_lex_state = 64}, + [2612] = {.lex_state = 178, .external_lex_state = 64}, + [2613] = {.lex_state = 178, .external_lex_state = 64}, + [2614] = {.lex_state = 178, .external_lex_state = 64}, + [2615] = {.lex_state = 47, .external_lex_state = 71}, + [2616] = {.lex_state = 178, .external_lex_state = 64}, + [2617] = {.lex_state = 178, .external_lex_state = 64}, + [2618] = {.lex_state = 178, .external_lex_state = 64}, + [2619] = {.lex_state = 178, .external_lex_state = 64}, + [2620] = {.lex_state = 178, .external_lex_state = 64}, + [2621] = {.lex_state = 178, .external_lex_state = 64}, + [2622] = {.lex_state = 178, .external_lex_state = 64}, + [2623] = {.lex_state = 178, .external_lex_state = 64}, + [2624] = {.lex_state = 178, .external_lex_state = 64}, + [2625] = {.lex_state = 178, .external_lex_state = 64}, + [2626] = {.lex_state = 178, .external_lex_state = 64}, + [2627] = {.lex_state = 178, .external_lex_state = 64}, + [2628] = {.lex_state = 178, .external_lex_state = 64}, + [2629] = {.lex_state = 178, .external_lex_state = 64}, + [2630] = {.lex_state = 178, .external_lex_state = 66}, + [2631] = {.lex_state = 178, .external_lex_state = 64}, + [2632] = {.lex_state = 178, .external_lex_state = 64}, + [2633] = {.lex_state = 178, .external_lex_state = 64}, + [2634] = {.lex_state = 178, .external_lex_state = 64}, + [2635] = {.lex_state = 47, .external_lex_state = 71}, + [2636] = {.lex_state = 178, .external_lex_state = 64}, + [2637] = {.lex_state = 178, .external_lex_state = 64}, + [2638] = {.lex_state = 178, .external_lex_state = 64}, + [2639] = {.lex_state = 178, .external_lex_state = 68}, + [2640] = {.lex_state = 178, .external_lex_state = 68}, + [2641] = {.lex_state = 178, .external_lex_state = 64}, + [2642] = {.lex_state = 178, .external_lex_state = 64}, + [2643] = {.lex_state = 178, .external_lex_state = 64}, + [2644] = {.lex_state = 178, .external_lex_state = 64}, + [2645] = {.lex_state = 178, .external_lex_state = 64}, + [2646] = {.lex_state = 178, .external_lex_state = 64}, + [2647] = {.lex_state = 178, .external_lex_state = 64}, + [2648] = {.lex_state = 178, .external_lex_state = 64}, + [2649] = {.lex_state = 178, .external_lex_state = 64}, + [2650] = {.lex_state = 178, .external_lex_state = 64}, + [2651] = {.lex_state = 178, .external_lex_state = 64}, + [2652] = {.lex_state = 178, .external_lex_state = 64}, + [2653] = {.lex_state = 47, .external_lex_state = 71}, + [2654] = {.lex_state = 178, .external_lex_state = 64}, + [2655] = {.lex_state = 178, .external_lex_state = 64}, + [2656] = {.lex_state = 47, .external_lex_state = 71}, + [2657] = {.lex_state = 178, .external_lex_state = 64}, + [2658] = {.lex_state = 178, .external_lex_state = 68}, + [2659] = {.lex_state = 178, .external_lex_state = 64}, + [2660] = {.lex_state = 178, .external_lex_state = 64}, + [2661] = {.lex_state = 178, .external_lex_state = 64}, + [2662] = {.lex_state = 178, .external_lex_state = 64}, + [2663] = {.lex_state = 178, .external_lex_state = 64}, + [2664] = {.lex_state = 178, .external_lex_state = 68}, + [2665] = {.lex_state = 178, .external_lex_state = 68}, + [2666] = {.lex_state = 178, .external_lex_state = 64}, + [2667] = {.lex_state = 178, .external_lex_state = 66}, + [2668] = {.lex_state = 178, .external_lex_state = 64}, + [2669] = {.lex_state = 178, .external_lex_state = 64}, + [2670] = {.lex_state = 178, .external_lex_state = 64}, + [2671] = {.lex_state = 178, .external_lex_state = 64}, + [2672] = {.lex_state = 178, .external_lex_state = 68}, + [2673] = {.lex_state = 178, .external_lex_state = 64}, + [2674] = {.lex_state = 184, .external_lex_state = 82}, + [2675] = {.lex_state = 178, .external_lex_state = 68}, + [2676] = {.lex_state = 46, .external_lex_state = 74}, + [2677] = {.lex_state = 178, .external_lex_state = 64}, + [2678] = {.lex_state = 178, .external_lex_state = 64}, + [2679] = {.lex_state = 178, .external_lex_state = 64}, + [2680] = {.lex_state = 178, .external_lex_state = 64}, + [2681] = {.lex_state = 46, .external_lex_state = 74}, + [2682] = {.lex_state = 178, .external_lex_state = 64}, + [2683] = {.lex_state = 178, .external_lex_state = 64}, + [2684] = {.lex_state = 178, .external_lex_state = 68}, + [2685] = {.lex_state = 178, .external_lex_state = 64}, + [2686] = {.lex_state = 178, .external_lex_state = 64}, + [2687] = {.lex_state = 178, .external_lex_state = 64}, + [2688] = {.lex_state = 178, .external_lex_state = 64}, + [2689] = {.lex_state = 178, .external_lex_state = 64}, + [2690] = {.lex_state = 178, .external_lex_state = 64}, + [2691] = {.lex_state = 178, .external_lex_state = 68}, + [2692] = {.lex_state = 178, .external_lex_state = 64}, + [2693] = {.lex_state = 178, .external_lex_state = 64}, + [2694] = {.lex_state = 178, .external_lex_state = 64}, + [2695] = {.lex_state = 178, .external_lex_state = 68}, + [2696] = {.lex_state = 178, .external_lex_state = 68}, + [2697] = {.lex_state = 178, .external_lex_state = 64}, + [2698] = {.lex_state = 178, .external_lex_state = 68}, + [2699] = {.lex_state = 178, .external_lex_state = 64}, + [2700] = {.lex_state = 178, .external_lex_state = 64}, + [2701] = {.lex_state = 47, .external_lex_state = 71}, + [2702] = {.lex_state = 178, .external_lex_state = 64}, + [2703] = {.lex_state = 178, .external_lex_state = 64}, + [2704] = {.lex_state = 178, .external_lex_state = 64}, + [2705] = {.lex_state = 178, .external_lex_state = 64}, + [2706] = {.lex_state = 178, .external_lex_state = 64}, + [2707] = {.lex_state = 178, .external_lex_state = 64}, + [2708] = {.lex_state = 178, .external_lex_state = 64}, + [2709] = {.lex_state = 178, .external_lex_state = 64}, + [2710] = {.lex_state = 178, .external_lex_state = 64}, + [2711] = {.lex_state = 178, .external_lex_state = 64}, + [2712] = {.lex_state = 178, .external_lex_state = 64}, + [2713] = {.lex_state = 178, .external_lex_state = 64}, + [2714] = {.lex_state = 178, .external_lex_state = 64}, + [2715] = {.lex_state = 178, .external_lex_state = 64}, + [2716] = {.lex_state = 182, .external_lex_state = 68}, + [2717] = {.lex_state = 47, .external_lex_state = 71}, + [2718] = {.lex_state = 47, .external_lex_state = 71}, + [2719] = {.lex_state = 184, .external_lex_state = 82}, + [2720] = {.lex_state = 178, .external_lex_state = 64}, + [2721] = {.lex_state = 178, .external_lex_state = 64}, + [2722] = {.lex_state = 178, .external_lex_state = 64}, + [2723] = {.lex_state = 182, .external_lex_state = 70}, + [2724] = {.lex_state = 178, .external_lex_state = 68}, + [2725] = {.lex_state = 178, .external_lex_state = 68}, + [2726] = {.lex_state = 178, .external_lex_state = 64}, + [2727] = {.lex_state = 178, .external_lex_state = 64}, + [2728] = {.lex_state = 178, .external_lex_state = 64}, + [2729] = {.lex_state = 178, .external_lex_state = 64}, + [2730] = {.lex_state = 178, .external_lex_state = 64}, + [2731] = {.lex_state = 178, .external_lex_state = 64}, + [2732] = {.lex_state = 178, .external_lex_state = 64}, + [2733] = {.lex_state = 178, .external_lex_state = 64}, + [2734] = {.lex_state = 184, .external_lex_state = 84}, + [2735] = {.lex_state = 178, .external_lex_state = 64}, + [2736] = {.lex_state = 178, .external_lex_state = 64}, + [2737] = {.lex_state = 178, .external_lex_state = 64}, + [2738] = {.lex_state = 178, .external_lex_state = 64}, + [2739] = {.lex_state = 178, .external_lex_state = 64}, + [2740] = {.lex_state = 178, .external_lex_state = 64}, + [2741] = {.lex_state = 178, .external_lex_state = 64}, + [2742] = {.lex_state = 178, .external_lex_state = 64}, + [2743] = {.lex_state = 178, .external_lex_state = 64}, + [2744] = {.lex_state = 178, .external_lex_state = 64}, + [2745] = {.lex_state = 178, .external_lex_state = 64}, + [2746] = {.lex_state = 178, .external_lex_state = 64}, + [2747] = {.lex_state = 178, .external_lex_state = 64}, + [2748] = {.lex_state = 178, .external_lex_state = 64}, + [2749] = {.lex_state = 178, .external_lex_state = 64}, + [2750] = {.lex_state = 178, .external_lex_state = 64}, + [2751] = {.lex_state = 178, .external_lex_state = 64}, + [2752] = {.lex_state = 46, .external_lex_state = 74}, + [2753] = {.lex_state = 178, .external_lex_state = 68}, + [2754] = {.lex_state = 178, .external_lex_state = 64}, + [2755] = {.lex_state = 178, .external_lex_state = 64}, + [2756] = {.lex_state = 178, .external_lex_state = 64}, + [2757] = {.lex_state = 178, .external_lex_state = 64}, + [2758] = {.lex_state = 178, .external_lex_state = 68}, + [2759] = {.lex_state = 47, .external_lex_state = 71}, + [2760] = {.lex_state = 178, .external_lex_state = 64}, + [2761] = {.lex_state = 178, .external_lex_state = 64}, + [2762] = {.lex_state = 178, .external_lex_state = 64}, + [2763] = {.lex_state = 178, .external_lex_state = 64}, + [2764] = {.lex_state = 178, .external_lex_state = 64}, + [2765] = {.lex_state = 178, .external_lex_state = 68}, + [2766] = {.lex_state = 178, .external_lex_state = 64}, + [2767] = {.lex_state = 178, .external_lex_state = 64}, + [2768] = {.lex_state = 178, .external_lex_state = 64}, + [2769] = {.lex_state = 178, .external_lex_state = 64}, + [2770] = {.lex_state = 178, .external_lex_state = 64}, + [2771] = {.lex_state = 178, .external_lex_state = 64}, + [2772] = {.lex_state = 178, .external_lex_state = 64}, + [2773] = {.lex_state = 178, .external_lex_state = 68}, + [2774] = {.lex_state = 178, .external_lex_state = 68}, + [2775] = {.lex_state = 47, .external_lex_state = 71}, + [2776] = {.lex_state = 178, .external_lex_state = 68}, + [2777] = {.lex_state = 178, .external_lex_state = 68}, + [2778] = {.lex_state = 178, .external_lex_state = 68}, + [2779] = {.lex_state = 46, .external_lex_state = 74}, + [2780] = {.lex_state = 47, .external_lex_state = 71}, + [2781] = {.lex_state = 178, .external_lex_state = 66}, + [2782] = {.lex_state = 178, .external_lex_state = 66}, + [2783] = {.lex_state = 178, .external_lex_state = 66}, + [2784] = {.lex_state = 178, .external_lex_state = 66}, + [2785] = {.lex_state = 178, .external_lex_state = 66}, + [2786] = {.lex_state = 178, .external_lex_state = 70}, + [2787] = {.lex_state = 178, .external_lex_state = 66}, + [2788] = {.lex_state = 178, .external_lex_state = 66}, + [2789] = {.lex_state = 47, .external_lex_state = 71}, + [2790] = {.lex_state = 178, .external_lex_state = 66}, + [2791] = {.lex_state = 178, .external_lex_state = 66}, + [2792] = {.lex_state = 178, .external_lex_state = 66}, + [2793] = {.lex_state = 178, .external_lex_state = 66}, + [2794] = {.lex_state = 178, .external_lex_state = 66}, + [2795] = {.lex_state = 178, .external_lex_state = 70}, + [2796] = {.lex_state = 178, .external_lex_state = 84}, + [2797] = {.lex_state = 178, .external_lex_state = 66}, + [2798] = {.lex_state = 47, .external_lex_state = 71}, + [2799] = {.lex_state = 182, .external_lex_state = 73}, + [2800] = {.lex_state = 178, .external_lex_state = 66}, + [2801] = {.lex_state = 178, .external_lex_state = 73}, + [2802] = {.lex_state = 178, .external_lex_state = 73}, + [2803] = {.lex_state = 178, .external_lex_state = 73}, + [2804] = {.lex_state = 47, .external_lex_state = 71}, + [2805] = {.lex_state = 178, .external_lex_state = 73}, + [2806] = {.lex_state = 178, .external_lex_state = 66}, + [2807] = {.lex_state = 178, .external_lex_state = 66}, + [2808] = {.lex_state = 47, .external_lex_state = 71}, + [2809] = {.lex_state = 47, .external_lex_state = 71}, + [2810] = {.lex_state = 178, .external_lex_state = 66}, + [2811] = {.lex_state = 47, .external_lex_state = 71}, + [2812] = {.lex_state = 47, .external_lex_state = 71}, + [2813] = {.lex_state = 178, .external_lex_state = 66}, + [2814] = {.lex_state = 178, .external_lex_state = 66}, + [2815] = {.lex_state = 182, .external_lex_state = 66}, + [2816] = {.lex_state = 178, .external_lex_state = 68}, + [2817] = {.lex_state = 178, .external_lex_state = 66}, + [2818] = {.lex_state = 178, .external_lex_state = 66}, + [2819] = {.lex_state = 178, .external_lex_state = 84}, + [2820] = {.lex_state = 47, .external_lex_state = 71}, + [2821] = {.lex_state = 47, .external_lex_state = 71}, + [2822] = {.lex_state = 47, .external_lex_state = 71}, + [2823] = {.lex_state = 47, .external_lex_state = 71}, + [2824] = {.lex_state = 47, .external_lex_state = 71}, + [2825] = {.lex_state = 47, .external_lex_state = 71}, + [2826] = {.lex_state = 184, .external_lex_state = 66}, + [2827] = {.lex_state = 178, .external_lex_state = 70}, + [2828] = {.lex_state = 178, .external_lex_state = 66}, + [2829] = {.lex_state = 182, .external_lex_state = 76}, + [2830] = {.lex_state = 178, .external_lex_state = 66}, + [2831] = {.lex_state = 178, .external_lex_state = 66}, + [2832] = {.lex_state = 178, .external_lex_state = 85}, + [2833] = {.lex_state = 178, .external_lex_state = 73}, + [2834] = {.lex_state = 178, .external_lex_state = 73}, + [2835] = {.lex_state = 178, .external_lex_state = 73}, + [2836] = {.lex_state = 178, .external_lex_state = 73}, + [2837] = {.lex_state = 47, .external_lex_state = 71}, + [2838] = {.lex_state = 47, .external_lex_state = 71}, + [2839] = {.lex_state = 47, .external_lex_state = 71}, + [2840] = {.lex_state = 178, .external_lex_state = 66}, + [2841] = {.lex_state = 178, .external_lex_state = 66}, + [2842] = {.lex_state = 47, .external_lex_state = 71}, + [2843] = {.lex_state = 178, .external_lex_state = 68}, + [2844] = {.lex_state = 178, .external_lex_state = 66}, + [2845] = {.lex_state = 47, .external_lex_state = 71}, + [2846] = {.lex_state = 178, .external_lex_state = 66}, + [2847] = {.lex_state = 47, .external_lex_state = 71}, + [2848] = {.lex_state = 178, .external_lex_state = 66}, + [2849] = {.lex_state = 184, .external_lex_state = 66}, + [2850] = {.lex_state = 178, .external_lex_state = 85}, + [2851] = {.lex_state = 178, .external_lex_state = 66}, + [2852] = {.lex_state = 184, .external_lex_state = 66}, + [2853] = {.lex_state = 47, .external_lex_state = 71}, + [2854] = {.lex_state = 178, .external_lex_state = 85}, + [2855] = {.lex_state = 178, .external_lex_state = 66}, + [2856] = {.lex_state = 178, .external_lex_state = 84}, + [2857] = {.lex_state = 182, .external_lex_state = 66}, + [2858] = {.lex_state = 178, .external_lex_state = 66}, + [2859] = {.lex_state = 178, .external_lex_state = 66}, + [2860] = {.lex_state = 178, .external_lex_state = 66}, + [2861] = {.lex_state = 178, .external_lex_state = 66}, + [2862] = {.lex_state = 178, .external_lex_state = 70}, + [2863] = {.lex_state = 178, .external_lex_state = 66}, + [2864] = {.lex_state = 178, .external_lex_state = 66}, + [2865] = {.lex_state = 178, .external_lex_state = 66}, + [2866] = {.lex_state = 178, .external_lex_state = 70}, + [2867] = {.lex_state = 178, .external_lex_state = 85}, + [2868] = {.lex_state = 178, .external_lex_state = 66}, + [2869] = {.lex_state = 178, .external_lex_state = 70}, + [2870] = {.lex_state = 178, .external_lex_state = 70}, + [2871] = {.lex_state = 178, .external_lex_state = 66}, + [2872] = {.lex_state = 178, .external_lex_state = 66}, + [2873] = {.lex_state = 178, .external_lex_state = 66}, + [2874] = {.lex_state = 178, .external_lex_state = 66}, + [2875] = {.lex_state = 182, .external_lex_state = 76}, + [2876] = {.lex_state = 182, .external_lex_state = 76}, + [2877] = {.lex_state = 178, .external_lex_state = 68}, + [2878] = {.lex_state = 178, .external_lex_state = 66}, + [2879] = {.lex_state = 47, .external_lex_state = 71}, + [2880] = {.lex_state = 47, .external_lex_state = 71}, + [2881] = {.lex_state = 178, .external_lex_state = 66}, + [2882] = {.lex_state = 178, .external_lex_state = 66}, + [2883] = {.lex_state = 178, .external_lex_state = 66}, + [2884] = {.lex_state = 178, .external_lex_state = 66}, + [2885] = {.lex_state = 182, .external_lex_state = 76}, + [2886] = {.lex_state = 178, .external_lex_state = 82}, + [2887] = {.lex_state = 182, .external_lex_state = 76}, + [2888] = {.lex_state = 47, .external_lex_state = 71}, + [2889] = {.lex_state = 178, .external_lex_state = 66}, + [2890] = {.lex_state = 178, .external_lex_state = 66}, + [2891] = {.lex_state = 182, .external_lex_state = 70}, + [2892] = {.lex_state = 178, .external_lex_state = 70}, + [2893] = {.lex_state = 178, .external_lex_state = 66}, + [2894] = {.lex_state = 178, .external_lex_state = 66}, + [2895] = {.lex_state = 178, .external_lex_state = 66}, + [2896] = {.lex_state = 178, .external_lex_state = 66}, + [2897] = {.lex_state = 178, .external_lex_state = 66}, + [2898] = {.lex_state = 46, .external_lex_state = 74}, + [2899] = {.lex_state = 47, .external_lex_state = 71}, + [2900] = {.lex_state = 178, .external_lex_state = 66}, + [2901] = {.lex_state = 178, .external_lex_state = 66}, + [2902] = {.lex_state = 178, .external_lex_state = 68}, + [2903] = {.lex_state = 178, .external_lex_state = 66}, + [2904] = {.lex_state = 178, .external_lex_state = 70}, + [2905] = {.lex_state = 178, .external_lex_state = 66}, + [2906] = {.lex_state = 178, .external_lex_state = 66}, + [2907] = {.lex_state = 178, .external_lex_state = 68}, + [2908] = {.lex_state = 178, .external_lex_state = 68}, + [2909] = {.lex_state = 178, .external_lex_state = 66}, + [2910] = {.lex_state = 182, .external_lex_state = 71}, + [2911] = {.lex_state = 178, .external_lex_state = 66}, + [2912] = {.lex_state = 178, .external_lex_state = 66}, + [2913] = {.lex_state = 184, .external_lex_state = 86}, + [2914] = {.lex_state = 178, .external_lex_state = 70}, + [2915] = {.lex_state = 178, .external_lex_state = 66}, + [2916] = {.lex_state = 178, .external_lex_state = 66}, + [2917] = {.lex_state = 178, .external_lex_state = 68}, + [2918] = {.lex_state = 178, .external_lex_state = 70}, + [2919] = {.lex_state = 178, .external_lex_state = 68}, + [2920] = {.lex_state = 178, .external_lex_state = 66}, + [2921] = {.lex_state = 178, .external_lex_state = 70}, + [2922] = {.lex_state = 178, .external_lex_state = 66}, + [2923] = {.lex_state = 178, .external_lex_state = 73}, + [2924] = {.lex_state = 178, .external_lex_state = 66}, + [2925] = {.lex_state = 178, .external_lex_state = 66}, + [2926] = {.lex_state = 178, .external_lex_state = 66}, + [2927] = {.lex_state = 178, .external_lex_state = 66}, + [2928] = {.lex_state = 178, .external_lex_state = 73}, + [2929] = {.lex_state = 178, .external_lex_state = 66}, + [2930] = {.lex_state = 178, .external_lex_state = 66}, + [2931] = {.lex_state = 178, .external_lex_state = 73}, + [2932] = {.lex_state = 178, .external_lex_state = 73}, + [2933] = {.lex_state = 178, .external_lex_state = 66}, + [2934] = {.lex_state = 178, .external_lex_state = 73}, + [2935] = {.lex_state = 178, .external_lex_state = 73}, + [2936] = {.lex_state = 178, .external_lex_state = 73}, + [2937] = {.lex_state = 178, .external_lex_state = 73}, + [2938] = {.lex_state = 178, .external_lex_state = 73}, + [2939] = {.lex_state = 178, .external_lex_state = 66}, + [2940] = {.lex_state = 178, .external_lex_state = 70}, + [2941] = {.lex_state = 178, .external_lex_state = 73}, + [2942] = {.lex_state = 178, .external_lex_state = 73}, + [2943] = {.lex_state = 178, .external_lex_state = 73}, + [2944] = {.lex_state = 178, .external_lex_state = 66}, + [2945] = {.lex_state = 178, .external_lex_state = 66}, + [2946] = {.lex_state = 178, .external_lex_state = 66}, + [2947] = {.lex_state = 178, .external_lex_state = 66}, + [2948] = {.lex_state = 178, .external_lex_state = 73}, + [2949] = {.lex_state = 178, .external_lex_state = 73}, + [2950] = {.lex_state = 178, .external_lex_state = 66}, + [2951] = {.lex_state = 178, .external_lex_state = 66}, + [2952] = {.lex_state = 178, .external_lex_state = 66}, + [2953] = {.lex_state = 178, .external_lex_state = 66}, + [2954] = {.lex_state = 178, .external_lex_state = 70}, + [2955] = {.lex_state = 178, .external_lex_state = 66}, + [2956] = {.lex_state = 178, .external_lex_state = 66}, + [2957] = {.lex_state = 178, .external_lex_state = 73}, + [2958] = {.lex_state = 178, .external_lex_state = 66}, + [2959] = {.lex_state = 178, .external_lex_state = 73}, + [2960] = {.lex_state = 178, .external_lex_state = 66}, + [2961] = {.lex_state = 178, .external_lex_state = 70}, + [2962] = {.lex_state = 178, .external_lex_state = 66}, + [2963] = {.lex_state = 178, .external_lex_state = 66}, + [2964] = {.lex_state = 178, .external_lex_state = 66}, + [2965] = {.lex_state = 178, .external_lex_state = 70}, + [2966] = {.lex_state = 178, .external_lex_state = 66}, + [2967] = {.lex_state = 178, .external_lex_state = 66}, + [2968] = {.lex_state = 178, .external_lex_state = 70}, + [2969] = {.lex_state = 178, .external_lex_state = 66}, + [2970] = {.lex_state = 178, .external_lex_state = 66}, + [2971] = {.lex_state = 178, .external_lex_state = 66}, + [2972] = {.lex_state = 178, .external_lex_state = 66}, + [2973] = {.lex_state = 178, .external_lex_state = 66}, + [2974] = {.lex_state = 178, .external_lex_state = 66}, + [2975] = {.lex_state = 178, .external_lex_state = 66}, + [2976] = {.lex_state = 178, .external_lex_state = 66}, + [2977] = {.lex_state = 47, .external_lex_state = 74}, + [2978] = {.lex_state = 178, .external_lex_state = 66}, + [2979] = {.lex_state = 178, .external_lex_state = 66}, + [2980] = {.lex_state = 178, .external_lex_state = 66}, + [2981] = {.lex_state = 178, .external_lex_state = 66}, + [2982] = {.lex_state = 178, .external_lex_state = 66}, + [2983] = {.lex_state = 178, .external_lex_state = 66}, + [2984] = {.lex_state = 178, .external_lex_state = 66}, + [2985] = {.lex_state = 178, .external_lex_state = 66}, + [2986] = {.lex_state = 178, .external_lex_state = 66}, + [2987] = {.lex_state = 178, .external_lex_state = 70}, + [2988] = {.lex_state = 178, .external_lex_state = 70}, + [2989] = {.lex_state = 178, .external_lex_state = 66}, + [2990] = {.lex_state = 184, .external_lex_state = 84}, + [2991] = {.lex_state = 182, .external_lex_state = 73}, + [2992] = {.lex_state = 178, .external_lex_state = 68}, + [2993] = {.lex_state = 178, .external_lex_state = 70}, + [2994] = {.lex_state = 178, .external_lex_state = 70}, + [2995] = {.lex_state = 47, .external_lex_state = 74}, + [2996] = {.lex_state = 178, .external_lex_state = 66}, + [2997] = {.lex_state = 178, .external_lex_state = 70}, + [2998] = {.lex_state = 178, .external_lex_state = 66}, + [2999] = {.lex_state = 178, .external_lex_state = 70}, + [3000] = {.lex_state = 178, .external_lex_state = 66}, + [3001] = {.lex_state = 184, .external_lex_state = 87}, + [3002] = {.lex_state = 178, .external_lex_state = 66}, + [3003] = {.lex_state = 178, .external_lex_state = 66}, [3004] = {.lex_state = 47, .external_lex_state = 74}, - [3005] = {.lex_state = 177, .external_lex_state = 66}, - [3006] = {.lex_state = 177, .external_lex_state = 66}, - [3007] = {.lex_state = 177, .external_lex_state = 71}, - [3008] = {.lex_state = 177, .external_lex_state = 72}, - [3009] = {.lex_state = 177, .external_lex_state = 71}, - [3010] = {.lex_state = 177, .external_lex_state = 66}, - [3011] = {.lex_state = 177, .external_lex_state = 66}, - [3012] = {.lex_state = 177, .external_lex_state = 66}, - [3013] = {.lex_state = 177, .external_lex_state = 66}, - [3014] = {.lex_state = 177, .external_lex_state = 66}, - [3015] = {.lex_state = 177, .external_lex_state = 66}, - [3016] = {.lex_state = 177, .external_lex_state = 66}, - [3017] = {.lex_state = 177, .external_lex_state = 66}, - [3018] = {.lex_state = 177, .external_lex_state = 66}, - [3019] = {.lex_state = 177, .external_lex_state = 66}, - [3020] = {.lex_state = 177, .external_lex_state = 66}, - [3021] = {.lex_state = 177, .external_lex_state = 66}, - [3022] = {.lex_state = 177, .external_lex_state = 66}, - [3023] = {.lex_state = 177, .external_lex_state = 66}, - [3024] = {.lex_state = 177, .external_lex_state = 66}, - [3025] = {.lex_state = 177, .external_lex_state = 66}, - [3026] = {.lex_state = 177, .external_lex_state = 66}, - [3027] = {.lex_state = 177, .external_lex_state = 66}, - [3028] = {.lex_state = 177, .external_lex_state = 66}, - [3029] = {.lex_state = 177, .external_lex_state = 66}, - [3030] = {.lex_state = 177, .external_lex_state = 66}, - [3031] = {.lex_state = 177, .external_lex_state = 66}, - [3032] = {.lex_state = 177, .external_lex_state = 66}, - [3033] = {.lex_state = 177, .external_lex_state = 66}, - [3034] = {.lex_state = 177, .external_lex_state = 66}, - [3035] = {.lex_state = 177, .external_lex_state = 66}, - [3036] = {.lex_state = 177, .external_lex_state = 66}, - [3037] = {.lex_state = 177, .external_lex_state = 66}, - [3038] = {.lex_state = 177, .external_lex_state = 66}, - [3039] = {.lex_state = 177, .external_lex_state = 66}, - [3040] = {.lex_state = 177, .external_lex_state = 66}, - [3041] = {.lex_state = 177, .external_lex_state = 66}, - [3042] = {.lex_state = 177, .external_lex_state = 72}, - [3043] = {.lex_state = 177, .external_lex_state = 72}, - [3044] = {.lex_state = 177, .external_lex_state = 66}, - [3045] = {.lex_state = 177, .external_lex_state = 72}, - [3046] = {.lex_state = 177, .external_lex_state = 66}, - [3047] = {.lex_state = 177, .external_lex_state = 72}, - [3048] = {.lex_state = 177, .external_lex_state = 66}, - [3049] = {.lex_state = 177, .external_lex_state = 66}, - [3050] = {.lex_state = 177, .external_lex_state = 66}, - [3051] = {.lex_state = 177, .external_lex_state = 66}, - [3052] = {.lex_state = 177, .external_lex_state = 66}, - [3053] = {.lex_state = 177, .external_lex_state = 66}, - [3054] = {.lex_state = 177, .external_lex_state = 66}, - [3055] = {.lex_state = 177, .external_lex_state = 66}, - [3056] = {.lex_state = 177, .external_lex_state = 66}, - [3057] = {.lex_state = 177, .external_lex_state = 66}, - [3058] = {.lex_state = 177, .external_lex_state = 66}, - [3059] = {.lex_state = 177, .external_lex_state = 66}, - [3060] = {.lex_state = 177, .external_lex_state = 66}, - [3061] = {.lex_state = 177, .external_lex_state = 66}, - [3062] = {.lex_state = 177, .external_lex_state = 66}, - [3063] = {.lex_state = 177, .external_lex_state = 71}, - [3064] = {.lex_state = 177, .external_lex_state = 71}, - [3065] = {.lex_state = 177, .external_lex_state = 66}, - [3066] = {.lex_state = 177, .external_lex_state = 71}, - [3067] = {.lex_state = 177, .external_lex_state = 71}, - [3068] = {.lex_state = 177, .external_lex_state = 72}, - [3069] = {.lex_state = 177, .external_lex_state = 66}, - [3070] = {.lex_state = 177, .external_lex_state = 66}, - [3071] = {.lex_state = 177, .external_lex_state = 66}, - [3072] = {.lex_state = 177, .external_lex_state = 66}, - [3073] = {.lex_state = 177, .external_lex_state = 66}, - [3074] = {.lex_state = 177, .external_lex_state = 66}, - [3075] = {.lex_state = 177, .external_lex_state = 66}, - [3076] = {.lex_state = 177, .external_lex_state = 72}, - [3077] = {.lex_state = 177, .external_lex_state = 66}, - [3078] = {.lex_state = 181, .external_lex_state = 72}, - [3079] = {.lex_state = 177, .external_lex_state = 68}, - [3080] = {.lex_state = 177, .external_lex_state = 68}, - [3081] = {.lex_state = 177, .external_lex_state = 66}, - [3082] = {.lex_state = 177, .external_lex_state = 66}, - [3083] = {.lex_state = 177, .external_lex_state = 66}, - [3084] = {.lex_state = 177, .external_lex_state = 66}, - [3085] = {.lex_state = 177, .external_lex_state = 66}, - [3086] = {.lex_state = 177, .external_lex_state = 66}, - [3087] = {.lex_state = 177, .external_lex_state = 66}, - [3088] = {.lex_state = 177, .external_lex_state = 66}, - [3089] = {.lex_state = 177, .external_lex_state = 66}, - [3090] = {.lex_state = 177, .external_lex_state = 66}, - [3091] = {.lex_state = 177, .external_lex_state = 66}, - [3092] = {.lex_state = 177, .external_lex_state = 66}, - [3093] = {.lex_state = 177, .external_lex_state = 66}, - [3094] = {.lex_state = 177, .external_lex_state = 66}, - [3095] = {.lex_state = 177, .external_lex_state = 66}, - [3096] = {.lex_state = 177, .external_lex_state = 66}, - [3097] = {.lex_state = 177, .external_lex_state = 66}, - [3098] = {.lex_state = 177, .external_lex_state = 66}, - [3099] = {.lex_state = 177, .external_lex_state = 66}, - [3100] = {.lex_state = 177, .external_lex_state = 66}, - [3101] = {.lex_state = 177, .external_lex_state = 66}, - [3102] = {.lex_state = 177, .external_lex_state = 66}, - [3103] = {.lex_state = 177, .external_lex_state = 66}, - [3104] = {.lex_state = 177, .external_lex_state = 66}, - [3105] = {.lex_state = 177, .external_lex_state = 66}, - [3106] = {.lex_state = 177, .external_lex_state = 66}, - [3107] = {.lex_state = 177, .external_lex_state = 66}, - [3108] = {.lex_state = 177, .external_lex_state = 66}, - [3109] = {.lex_state = 177, .external_lex_state = 66}, - [3110] = {.lex_state = 177, .external_lex_state = 66}, - [3111] = {.lex_state = 177, .external_lex_state = 66}, - [3112] = {.lex_state = 177, .external_lex_state = 66}, - [3113] = {.lex_state = 177, .external_lex_state = 66}, - [3114] = {.lex_state = 177, .external_lex_state = 66}, - [3115] = {.lex_state = 177, .external_lex_state = 66}, - [3116] = {.lex_state = 177, .external_lex_state = 66}, - [3117] = {.lex_state = 177, .external_lex_state = 66}, - [3118] = {.lex_state = 177, .external_lex_state = 66}, - [3119] = {.lex_state = 47, .external_lex_state = 74}, - [3120] = {.lex_state = 47, .external_lex_state = 74}, - [3121] = {.lex_state = 177, .external_lex_state = 66}, - [3122] = {.lex_state = 177, .external_lex_state = 66}, - [3123] = {.lex_state = 177, .external_lex_state = 66}, - [3124] = {.lex_state = 47, .external_lex_state = 74}, - [3125] = {.lex_state = 47, .external_lex_state = 74}, - [3126] = {.lex_state = 177, .external_lex_state = 66}, - [3127] = {.lex_state = 177, .external_lex_state = 66}, - [3128] = {.lex_state = 177, .external_lex_state = 66}, - [3129] = {.lex_state = 177, .external_lex_state = 66}, - [3130] = {.lex_state = 177, .external_lex_state = 66}, - [3131] = {.lex_state = 47, .external_lex_state = 74}, - [3132] = {.lex_state = 177, .external_lex_state = 66}, - [3133] = {.lex_state = 47, .external_lex_state = 73}, - [3134] = {.lex_state = 183, .external_lex_state = 68}, - [3135] = {.lex_state = 47, .external_lex_state = 73}, - [3136] = {.lex_state = 177, .external_lex_state = 68}, - [3137] = {.lex_state = 177, .external_lex_state = 68}, - [3138] = {.lex_state = 47, .external_lex_state = 73}, - [3139] = {.lex_state = 47, .external_lex_state = 73}, - [3140] = {.lex_state = 177, .external_lex_state = 68}, - [3141] = {.lex_state = 177, .external_lex_state = 68}, - [3142] = {.lex_state = 177, .external_lex_state = 68}, - [3143] = {.lex_state = 177, .external_lex_state = 68}, - [3144] = {.lex_state = 177, .external_lex_state = 68}, - [3145] = {.lex_state = 177, .external_lex_state = 68}, - [3146] = {.lex_state = 177, .external_lex_state = 68}, - [3147] = {.lex_state = 177, .external_lex_state = 66}, - [3148] = {.lex_state = 47, .external_lex_state = 73}, - [3149] = {.lex_state = 177, .external_lex_state = 66}, - [3150] = {.lex_state = 177, .external_lex_state = 68}, - [3151] = {.lex_state = 47, .external_lex_state = 74}, - [3152] = {.lex_state = 177, .external_lex_state = 68}, - [3153] = {.lex_state = 177, .external_lex_state = 66}, - [3154] = {.lex_state = 177, .external_lex_state = 86}, - [3155] = {.lex_state = 47, .external_lex_state = 74}, - [3156] = {.lex_state = 177, .external_lex_state = 66}, - [3157] = {.lex_state = 47, .external_lex_state = 74}, - [3158] = {.lex_state = 177, .external_lex_state = 88}, - [3159] = {.lex_state = 47, .external_lex_state = 73}, - [3160] = {.lex_state = 47, .external_lex_state = 73}, - [3161] = {.lex_state = 47, .external_lex_state = 73}, - [3162] = {.lex_state = 47, .external_lex_state = 73}, - [3163] = {.lex_state = 47, .external_lex_state = 74}, - [3164] = {.lex_state = 177, .external_lex_state = 68}, - [3165] = {.lex_state = 177, .external_lex_state = 66}, - [3166] = {.lex_state = 177, .external_lex_state = 66}, - [3167] = {.lex_state = 183, .external_lex_state = 68}, - [3168] = {.lex_state = 177, .external_lex_state = 68}, - [3169] = {.lex_state = 177, .external_lex_state = 68}, - [3170] = {.lex_state = 177, .external_lex_state = 84}, - [3171] = {.lex_state = 47, .external_lex_state = 73}, - [3172] = {.lex_state = 177, .external_lex_state = 68}, - [3173] = {.lex_state = 177, .external_lex_state = 68}, - [3174] = {.lex_state = 177, .external_lex_state = 88}, - [3175] = {.lex_state = 177, .external_lex_state = 68}, - [3176] = {.lex_state = 177, .external_lex_state = 68}, - [3177] = {.lex_state = 177, .external_lex_state = 66}, - [3178] = {.lex_state = 47, .external_lex_state = 74}, - [3179] = {.lex_state = 177, .external_lex_state = 66}, - [3180] = {.lex_state = 177, .external_lex_state = 68}, - [3181] = {.lex_state = 177, .external_lex_state = 66}, - [3182] = {.lex_state = 177, .external_lex_state = 86}, - [3183] = {.lex_state = 177, .external_lex_state = 66}, - [3184] = {.lex_state = 177, .external_lex_state = 68}, - [3185] = {.lex_state = 177, .external_lex_state = 68}, - [3186] = {.lex_state = 177, .external_lex_state = 68}, - [3187] = {.lex_state = 177, .external_lex_state = 68}, - [3188] = {.lex_state = 177, .external_lex_state = 66}, - [3189] = {.lex_state = 177, .external_lex_state = 66}, - [3190] = {.lex_state = 177, .external_lex_state = 68}, - [3191] = {.lex_state = 177, .external_lex_state = 68}, - [3192] = {.lex_state = 177, .external_lex_state = 68}, - [3193] = {.lex_state = 181, .external_lex_state = 68}, - [3194] = {.lex_state = 177, .external_lex_state = 66}, - [3195] = {.lex_state = 177, .external_lex_state = 66}, - [3196] = {.lex_state = 177, .external_lex_state = 66}, - [3197] = {.lex_state = 47, .external_lex_state = 73}, - [3198] = {.lex_state = 177, .external_lex_state = 66}, - [3199] = {.lex_state = 177, .external_lex_state = 68}, - [3200] = {.lex_state = 177, .external_lex_state = 68}, - [3201] = {.lex_state = 177, .external_lex_state = 72}, - [3202] = {.lex_state = 177, .external_lex_state = 89}, - [3203] = {.lex_state = 183, .external_lex_state = 88}, - [3204] = {.lex_state = 183, .external_lex_state = 68}, - [3205] = {.lex_state = 177, .external_lex_state = 66}, - [3206] = {.lex_state = 47, .external_lex_state = 73}, - [3207] = {.lex_state = 177, .external_lex_state = 68}, - [3208] = {.lex_state = 47, .external_lex_state = 74}, - [3209] = {.lex_state = 47, .external_lex_state = 74}, + [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 = 68}, + [3010] = {.lex_state = 178, .external_lex_state = 66}, + [3011] = {.lex_state = 178, .external_lex_state = 66}, + [3012] = {.lex_state = 178, .external_lex_state = 66}, + [3013] = {.lex_state = 47, .external_lex_state = 74}, + [3014] = {.lex_state = 178, .external_lex_state = 66}, + [3015] = {.lex_state = 178, .external_lex_state = 66}, + [3016] = {.lex_state = 178, .external_lex_state = 66}, + [3017] = {.lex_state = 178, .external_lex_state = 66}, + [3018] = {.lex_state = 178, .external_lex_state = 70}, + [3019] = {.lex_state = 178, .external_lex_state = 66}, + [3020] = {.lex_state = 178, .external_lex_state = 66}, + [3021] = {.lex_state = 178, .external_lex_state = 66}, + [3022] = {.lex_state = 178, .external_lex_state = 66}, + [3023] = {.lex_state = 178, .external_lex_state = 66}, + [3024] = {.lex_state = 178, .external_lex_state = 66}, + [3025] = {.lex_state = 178, .external_lex_state = 73}, + [3026] = {.lex_state = 178, .external_lex_state = 73}, + [3027] = {.lex_state = 178, .external_lex_state = 66}, + [3028] = {.lex_state = 178, .external_lex_state = 73}, + [3029] = {.lex_state = 178, .external_lex_state = 73}, + [3030] = {.lex_state = 178, .external_lex_state = 73}, + [3031] = {.lex_state = 47, .external_lex_state = 74}, + [3032] = {.lex_state = 178, .external_lex_state = 66}, + [3033] = {.lex_state = 178, .external_lex_state = 66}, + [3034] = {.lex_state = 178, .external_lex_state = 66}, + [3035] = {.lex_state = 178, .external_lex_state = 66}, + [3036] = {.lex_state = 178, .external_lex_state = 66}, + [3037] = {.lex_state = 47, .external_lex_state = 74}, + [3038] = {.lex_state = 178, .external_lex_state = 66}, + [3039] = {.lex_state = 178, .external_lex_state = 66}, + [3040] = {.lex_state = 178, .external_lex_state = 66}, + [3041] = {.lex_state = 184, .external_lex_state = 84}, + [3042] = {.lex_state = 178, .external_lex_state = 66}, + [3043] = {.lex_state = 178, .external_lex_state = 66}, + [3044] = {.lex_state = 178, .external_lex_state = 66}, + [3045] = {.lex_state = 178, .external_lex_state = 66}, + [3046] = {.lex_state = 178, .external_lex_state = 70}, + [3047] = {.lex_state = 178, .external_lex_state = 66}, + [3048] = {.lex_state = 178, .external_lex_state = 66}, + [3049] = {.lex_state = 47, .external_lex_state = 74}, + [3050] = {.lex_state = 178, .external_lex_state = 66}, + [3051] = {.lex_state = 178, .external_lex_state = 66}, + [3052] = {.lex_state = 178, .external_lex_state = 66}, + [3053] = {.lex_state = 178, .external_lex_state = 66}, + [3054] = {.lex_state = 178, .external_lex_state = 66}, + [3055] = {.lex_state = 47, .external_lex_state = 74}, + [3056] = {.lex_state = 178, .external_lex_state = 66}, + [3057] = {.lex_state = 178, .external_lex_state = 66}, + [3058] = {.lex_state = 178, .external_lex_state = 66}, + [3059] = {.lex_state = 178, .external_lex_state = 66}, + [3060] = {.lex_state = 178, .external_lex_state = 66}, + [3061] = {.lex_state = 178, .external_lex_state = 66}, + [3062] = {.lex_state = 178, .external_lex_state = 66}, + [3063] = {.lex_state = 178, .external_lex_state = 66}, + [3064] = {.lex_state = 178, .external_lex_state = 66}, + [3065] = {.lex_state = 178, .external_lex_state = 66}, + [3066] = {.lex_state = 178, .external_lex_state = 66}, + [3067] = {.lex_state = 178, .external_lex_state = 66}, + [3068] = {.lex_state = 178, .external_lex_state = 66}, + [3069] = {.lex_state = 178, .external_lex_state = 66}, + [3070] = {.lex_state = 178, .external_lex_state = 66}, + [3071] = {.lex_state = 178, .external_lex_state = 66}, + [3072] = {.lex_state = 178, .external_lex_state = 66}, + [3073] = {.lex_state = 178, .external_lex_state = 66}, + [3074] = {.lex_state = 178, .external_lex_state = 66}, + [3075] = {.lex_state = 178, .external_lex_state = 66}, + [3076] = {.lex_state = 178, .external_lex_state = 66}, + [3077] = {.lex_state = 178, .external_lex_state = 66}, + [3078] = {.lex_state = 178, .external_lex_state = 66}, + [3079] = {.lex_state = 178, .external_lex_state = 66}, + [3080] = {.lex_state = 178, .external_lex_state = 66}, + [3081] = {.lex_state = 178, .external_lex_state = 66}, + [3082] = {.lex_state = 178, .external_lex_state = 66}, + [3083] = {.lex_state = 178, .external_lex_state = 66}, + [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}, + [3088] = {.lex_state = 178, .external_lex_state = 66}, + [3089] = {.lex_state = 178, .external_lex_state = 66}, + [3090] = {.lex_state = 47, .external_lex_state = 74}, + [3091] = {.lex_state = 178, .external_lex_state = 66}, + [3092] = {.lex_state = 178, .external_lex_state = 66}, + [3093] = {.lex_state = 178, .external_lex_state = 66}, + [3094] = {.lex_state = 178, .external_lex_state = 66}, + [3095] = {.lex_state = 178, .external_lex_state = 66}, + [3096] = {.lex_state = 178, .external_lex_state = 66}, + [3097] = {.lex_state = 178, .external_lex_state = 66}, + [3098] = {.lex_state = 178, .external_lex_state = 66}, + [3099] = {.lex_state = 178, .external_lex_state = 66}, + [3100] = {.lex_state = 182, .external_lex_state = 70}, + [3101] = {.lex_state = 178, .external_lex_state = 66}, + [3102] = {.lex_state = 184, .external_lex_state = 88}, + [3103] = {.lex_state = 178, .external_lex_state = 66}, + [3104] = {.lex_state = 178, .external_lex_state = 66}, + [3105] = {.lex_state = 178, .external_lex_state = 66}, + [3106] = {.lex_state = 178, .external_lex_state = 66}, + [3107] = {.lex_state = 178, .external_lex_state = 68}, + [3108] = {.lex_state = 178, .external_lex_state = 66}, + [3109] = {.lex_state = 178, .external_lex_state = 66}, + [3110] = {.lex_state = 178, .external_lex_state = 66}, + [3111] = {.lex_state = 178, .external_lex_state = 70}, + [3112] = {.lex_state = 178, .external_lex_state = 66}, + [3113] = {.lex_state = 178, .external_lex_state = 66}, + [3114] = {.lex_state = 178, .external_lex_state = 70}, + [3115] = {.lex_state = 178, .external_lex_state = 68}, + [3116] = {.lex_state = 178, .external_lex_state = 68}, + [3117] = {.lex_state = 178, .external_lex_state = 66}, + [3118] = {.lex_state = 178, .external_lex_state = 68}, + [3119] = {.lex_state = 178, .external_lex_state = 66}, + [3120] = {.lex_state = 178, .external_lex_state = 66}, + [3121] = {.lex_state = 47, .external_lex_state = 71}, + [3122] = {.lex_state = 178, .external_lex_state = 66}, + [3123] = {.lex_state = 178, .external_lex_state = 66}, + [3124] = {.lex_state = 178, .external_lex_state = 68}, + [3125] = {.lex_state = 178, .external_lex_state = 73}, + [3126] = {.lex_state = 178, .external_lex_state = 66}, + [3127] = {.lex_state = 178, .external_lex_state = 70}, + [3128] = {.lex_state = 178, .external_lex_state = 70}, + [3129] = {.lex_state = 178, .external_lex_state = 66}, + [3130] = {.lex_state = 47, .external_lex_state = 71}, + [3131] = {.lex_state = 178, .external_lex_state = 66}, + [3132] = {.lex_state = 178, .external_lex_state = 73}, + [3133] = {.lex_state = 178, .external_lex_state = 73}, + [3134] = {.lex_state = 178, .external_lex_state = 73}, + [3135] = {.lex_state = 178, .external_lex_state = 66}, + [3136] = {.lex_state = 178, .external_lex_state = 66}, + [3137] = {.lex_state = 178, .external_lex_state = 68}, + [3138] = {.lex_state = 178, .external_lex_state = 66}, + [3139] = {.lex_state = 178, .external_lex_state = 68}, + [3140] = {.lex_state = 182, .external_lex_state = 76}, + [3141] = {.lex_state = 178, .external_lex_state = 70}, + [3142] = {.lex_state = 178, .external_lex_state = 66}, + [3143] = {.lex_state = 178, .external_lex_state = 66}, + [3144] = {.lex_state = 47, .external_lex_state = 71}, + [3145] = {.lex_state = 178, .external_lex_state = 66}, + [3146] = {.lex_state = 178, .external_lex_state = 66}, + [3147] = {.lex_state = 178, .external_lex_state = 70}, + [3148] = {.lex_state = 178, .external_lex_state = 70}, + [3149] = {.lex_state = 178, .external_lex_state = 66}, + [3150] = {.lex_state = 178, .external_lex_state = 66}, + [3151] = {.lex_state = 178, .external_lex_state = 66}, + [3152] = {.lex_state = 178, .external_lex_state = 66}, + [3153] = {.lex_state = 178, .external_lex_state = 66}, + [3154] = {.lex_state = 178, .external_lex_state = 66}, + [3155] = {.lex_state = 178, .external_lex_state = 70}, + [3156] = {.lex_state = 178, .external_lex_state = 66}, + [3157] = {.lex_state = 178, .external_lex_state = 66}, + [3158] = {.lex_state = 178, .external_lex_state = 66}, + [3159] = {.lex_state = 178, .external_lex_state = 68}, + [3160] = {.lex_state = 184, .external_lex_state = 86}, + [3161] = {.lex_state = 47, .external_lex_state = 74}, + [3162] = {.lex_state = 178, .external_lex_state = 68}, + [3163] = {.lex_state = 178, .external_lex_state = 68}, + [3164] = {.lex_state = 178, .external_lex_state = 68}, + [3165] = {.lex_state = 178, .external_lex_state = 68}, + [3166] = {.lex_state = 178, .external_lex_state = 68}, + [3167] = {.lex_state = 178, .external_lex_state = 68}, + [3168] = {.lex_state = 184, .external_lex_state = 68}, + [3169] = {.lex_state = 178, .external_lex_state = 68}, + [3170] = {.lex_state = 47, .external_lex_state = 74}, + [3171] = {.lex_state = 178, .external_lex_state = 86}, + [3172] = {.lex_state = 47, .external_lex_state = 74}, + [3173] = {.lex_state = 47, .external_lex_state = 74}, + [3174] = {.lex_state = 47, .external_lex_state = 74}, + [3175] = {.lex_state = 47, .external_lex_state = 71}, + [3176] = {.lex_state = 47, .external_lex_state = 71}, + [3177] = {.lex_state = 178, .external_lex_state = 70}, + [3178] = {.lex_state = 178, .external_lex_state = 76}, + [3179] = {.lex_state = 178, .external_lex_state = 76}, + [3180] = {.lex_state = 47, .external_lex_state = 74}, + [3181] = {.lex_state = 178, .external_lex_state = 68}, + [3182] = {.lex_state = 178, .external_lex_state = 68}, + [3183] = {.lex_state = 178, .external_lex_state = 66}, + [3184] = {.lex_state = 178, .external_lex_state = 68}, + [3185] = {.lex_state = 178, .external_lex_state = 66}, + [3186] = {.lex_state = 178, .external_lex_state = 89}, + [3187] = {.lex_state = 178, .external_lex_state = 68}, + [3188] = {.lex_state = 178, .external_lex_state = 76}, + [3189] = {.lex_state = 178, .external_lex_state = 66}, + [3190] = {.lex_state = 178, .external_lex_state = 66}, + [3191] = {.lex_state = 178, .external_lex_state = 76}, + [3192] = {.lex_state = 47, .external_lex_state = 71}, + [3193] = {.lex_state = 178, .external_lex_state = 66}, + [3194] = {.lex_state = 47, .external_lex_state = 71}, + [3195] = {.lex_state = 178, .external_lex_state = 68}, + [3196] = {.lex_state = 47, .external_lex_state = 74}, + [3197] = {.lex_state = 178, .external_lex_state = 76}, + [3198] = {.lex_state = 178, .external_lex_state = 68}, + [3199] = {.lex_state = 178, .external_lex_state = 89}, + [3200] = {.lex_state = 47, .external_lex_state = 74}, + [3201] = {.lex_state = 178, .external_lex_state = 68}, + [3202] = {.lex_state = 47, .external_lex_state = 74}, + [3203] = {.lex_state = 178, .external_lex_state = 68}, + [3204] = {.lex_state = 178, .external_lex_state = 68}, + [3205] = {.lex_state = 178, .external_lex_state = 68}, + [3206] = {.lex_state = 178, .external_lex_state = 68}, + [3207] = {.lex_state = 178, .external_lex_state = 68}, + [3208] = {.lex_state = 178, .external_lex_state = 68}, + [3209] = {.lex_state = 178, .external_lex_state = 68}, [3210] = {.lex_state = 47, .external_lex_state = 74}, - [3211] = {.lex_state = 177, .external_lex_state = 66}, - [3212] = {.lex_state = 47, .external_lex_state = 74}, - [3213] = {.lex_state = 177, .external_lex_state = 86}, - [3214] = {.lex_state = 177, .external_lex_state = 68}, - [3215] = {.lex_state = 177, .external_lex_state = 72}, - [3216] = {.lex_state = 177, .external_lex_state = 87}, - [3217] = {.lex_state = 177, .external_lex_state = 68}, - [3218] = {.lex_state = 177, .external_lex_state = 66}, - [3219] = {.lex_state = 177, .external_lex_state = 66}, - [3220] = {.lex_state = 181, .external_lex_state = 75}, - [3221] = {.lex_state = 177, .external_lex_state = 89}, - [3222] = {.lex_state = 177, .external_lex_state = 75}, - [3223] = {.lex_state = 177, .external_lex_state = 75}, - [3224] = {.lex_state = 177, .external_lex_state = 66}, - [3225] = {.lex_state = 177, .external_lex_state = 66}, - [3226] = {.lex_state = 47, .external_lex_state = 73}, - [3227] = {.lex_state = 47, .external_lex_state = 73}, - [3228] = {.lex_state = 177, .external_lex_state = 75}, - [3229] = {.lex_state = 177, .external_lex_state = 75}, - [3230] = {.lex_state = 47, .external_lex_state = 74}, - [3231] = {.lex_state = 177, .external_lex_state = 75}, - [3232] = {.lex_state = 177, .external_lex_state = 87}, - [3233] = {.lex_state = 177, .external_lex_state = 71}, - [3234] = {.lex_state = 47, .external_lex_state = 74}, - [3235] = {.lex_state = 177, .external_lex_state = 68}, - [3236] = {.lex_state = 177, .external_lex_state = 75}, - [3237] = {.lex_state = 47, .external_lex_state = 74}, + [3211] = {.lex_state = 178, .external_lex_state = 68}, + [3212] = {.lex_state = 178, .external_lex_state = 76}, + [3213] = {.lex_state = 178, .external_lex_state = 68}, + [3214] = {.lex_state = 178, .external_lex_state = 68}, + [3215] = {.lex_state = 178, .external_lex_state = 68}, + [3216] = {.lex_state = 178, .external_lex_state = 68}, + [3217] = {.lex_state = 178, .external_lex_state = 68}, + [3218] = {.lex_state = 178, .external_lex_state = 68}, + [3219] = {.lex_state = 184, .external_lex_state = 68}, + [3220] = {.lex_state = 178, .external_lex_state = 66}, + [3221] = {.lex_state = 178, .external_lex_state = 68}, + [3222] = {.lex_state = 182, .external_lex_state = 76}, + [3223] = {.lex_state = 178, .external_lex_state = 68}, + [3224] = {.lex_state = 47, .external_lex_state = 71}, + [3225] = {.lex_state = 178, .external_lex_state = 68}, + [3226] = {.lex_state = 178, .external_lex_state = 68}, + [3227] = {.lex_state = 178, .external_lex_state = 73}, + [3228] = {.lex_state = 178, .external_lex_state = 73}, + [3229] = {.lex_state = 178, .external_lex_state = 66}, + [3230] = {.lex_state = 178, .external_lex_state = 68}, + [3231] = {.lex_state = 178, .external_lex_state = 68}, + [3232] = {.lex_state = 178, .external_lex_state = 68}, + [3233] = {.lex_state = 178, .external_lex_state = 76}, + [3234] = {.lex_state = 178, .external_lex_state = 68}, + [3235] = {.lex_state = 178, .external_lex_state = 68}, + [3236] = {.lex_state = 47, .external_lex_state = 74}, + [3237] = {.lex_state = 178, .external_lex_state = 88}, [3238] = {.lex_state = 47, .external_lex_state = 74}, - [3239] = {.lex_state = 47, .external_lex_state = 74}, - [3240] = {.lex_state = 47, .external_lex_state = 74}, - [3241] = {.lex_state = 177, .external_lex_state = 75}, - [3242] = {.lex_state = 177, .external_lex_state = 89}, - [3243] = {.lex_state = 177, .external_lex_state = 66}, - [3244] = {.lex_state = 47, .external_lex_state = 74}, - [3245] = {.lex_state = 183, .external_lex_state = 88}, - [3246] = {.lex_state = 177, .external_lex_state = 66}, - [3247] = {.lex_state = 177, .external_lex_state = 68}, + [3239] = {.lex_state = 178, .external_lex_state = 89}, + [3240] = {.lex_state = 182, .external_lex_state = 68}, + [3241] = {.lex_state = 178, .external_lex_state = 68}, + [3242] = {.lex_state = 178, .external_lex_state = 68}, + [3243] = {.lex_state = 47, .external_lex_state = 74}, + [3244] = {.lex_state = 178, .external_lex_state = 66}, + [3245] = {.lex_state = 178, .external_lex_state = 66}, + [3246] = {.lex_state = 178, .external_lex_state = 66}, + [3247] = {.lex_state = 178, .external_lex_state = 68}, [3248] = {.lex_state = 47, .external_lex_state = 74}, - [3249] = {.lex_state = 177, .external_lex_state = 68}, - [3250] = {.lex_state = 177, .external_lex_state = 75}, - [3251] = {.lex_state = 177, .external_lex_state = 89}, - [3252] = {.lex_state = 177, .external_lex_state = 68}, - [3253] = {.lex_state = 47, .external_lex_state = 74}, - [3254] = {.lex_state = 47, .external_lex_state = 74}, - [3255] = {.lex_state = 177, .external_lex_state = 66}, - [3256] = {.lex_state = 47, .external_lex_state = 73}, - [3257] = {.lex_state = 177, .external_lex_state = 87}, - [3258] = {.lex_state = 177, .external_lex_state = 68}, - [3259] = {.lex_state = 177, .external_lex_state = 68}, - [3260] = {.lex_state = 177, .external_lex_state = 68}, - [3261] = {.lex_state = 177, .external_lex_state = 68}, - [3262] = {.lex_state = 177, .external_lex_state = 68}, - [3263] = {.lex_state = 177, .external_lex_state = 68}, - [3264] = {.lex_state = 47, .external_lex_state = 74}, - [3265] = {.lex_state = 47, .external_lex_state = 74}, - [3266] = {.lex_state = 47, .external_lex_state = 74}, - [3267] = {.lex_state = 177, .external_lex_state = 66}, - [3268] = {.lex_state = 47, .external_lex_state = 74}, - [3269] = {.lex_state = 47, .external_lex_state = 74}, - [3270] = {.lex_state = 177, .external_lex_state = 88}, - [3271] = {.lex_state = 177, .external_lex_state = 75}, - [3272] = {.lex_state = 177, .external_lex_state = 68}, - [3273] = {.lex_state = 177, .external_lex_state = 68}, - [3274] = {.lex_state = 177, .external_lex_state = 68}, - [3275] = {.lex_state = 177, .external_lex_state = 68}, - [3276] = {.lex_state = 177, .external_lex_state = 68}, - [3277] = {.lex_state = 177, .external_lex_state = 68}, - [3278] = {.lex_state = 177, .external_lex_state = 68}, - [3279] = {.lex_state = 177, .external_lex_state = 68}, - [3280] = {.lex_state = 177, .external_lex_state = 68}, - [3281] = {.lex_state = 177, .external_lex_state = 68}, - [3282] = {.lex_state = 177, .external_lex_state = 68}, - [3283] = {.lex_state = 177, .external_lex_state = 71}, - [3284] = {.lex_state = 177, .external_lex_state = 68}, - [3285] = {.lex_state = 177, .external_lex_state = 68}, - [3286] = {.lex_state = 177, .external_lex_state = 68}, - [3287] = {.lex_state = 177, .external_lex_state = 68}, - [3288] = {.lex_state = 177, .external_lex_state = 68}, - [3289] = {.lex_state = 177, .external_lex_state = 71}, - [3290] = {.lex_state = 177, .external_lex_state = 68}, - [3291] = {.lex_state = 177, .external_lex_state = 71}, - [3292] = {.lex_state = 177, .external_lex_state = 71}, - [3293] = {.lex_state = 177, .external_lex_state = 68}, - [3294] = {.lex_state = 177, .external_lex_state = 68}, - [3295] = {.lex_state = 47, .external_lex_state = 73}, - [3296] = {.lex_state = 177, .external_lex_state = 68}, - [3297] = {.lex_state = 177, .external_lex_state = 68}, - [3298] = {.lex_state = 177, .external_lex_state = 68}, - [3299] = {.lex_state = 177, .external_lex_state = 68}, - [3300] = {.lex_state = 177, .external_lex_state = 68}, - [3301] = {.lex_state = 177, .external_lex_state = 68}, - [3302] = {.lex_state = 177, .external_lex_state = 68}, - [3303] = {.lex_state = 177, .external_lex_state = 68}, - [3304] = {.lex_state = 181, .external_lex_state = 77}, - [3305] = {.lex_state = 177, .external_lex_state = 68}, - [3306] = {.lex_state = 177, .external_lex_state = 68}, - [3307] = {.lex_state = 177, .external_lex_state = 68}, - [3308] = {.lex_state = 181, .external_lex_state = 77}, - [3309] = {.lex_state = 177, .external_lex_state = 68}, - [3310] = {.lex_state = 177, .external_lex_state = 68}, - [3311] = {.lex_state = 177, .external_lex_state = 68}, - [3312] = {.lex_state = 177, .external_lex_state = 68}, - [3313] = {.lex_state = 177, .external_lex_state = 68}, - [3314] = {.lex_state = 177, .external_lex_state = 68}, - [3315] = {.lex_state = 177, .external_lex_state = 68}, - [3316] = {.lex_state = 177, .external_lex_state = 68}, - [3317] = {.lex_state = 47, .external_lex_state = 90}, - [3318] = {.lex_state = 177, .external_lex_state = 68}, - [3319] = {.lex_state = 177, .external_lex_state = 68}, - [3320] = {.lex_state = 177, .external_lex_state = 68}, - [3321] = {.lex_state = 183, .external_lex_state = 86}, - [3322] = {.lex_state = 177, .external_lex_state = 68}, - [3323] = {.lex_state = 47, .external_lex_state = 90}, - [3324] = {.lex_state = 177, .external_lex_state = 68}, - [3325] = {.lex_state = 50, .external_lex_state = 73}, - [3326] = {.lex_state = 177, .external_lex_state = 68}, - [3327] = {.lex_state = 177, .external_lex_state = 68}, - [3328] = {.lex_state = 50, .external_lex_state = 73}, - [3329] = {.lex_state = 177, .external_lex_state = 68}, - [3330] = {.lex_state = 177, .external_lex_state = 71}, - [3331] = {.lex_state = 177, .external_lex_state = 68}, - [3332] = {.lex_state = 177, .external_lex_state = 68}, - [3333] = {.lex_state = 50, .external_lex_state = 73}, - [3334] = {.lex_state = 177, .external_lex_state = 68}, - [3335] = {.lex_state = 177, .external_lex_state = 68}, - [3336] = {.lex_state = 177, .external_lex_state = 68}, - [3337] = {.lex_state = 177, .external_lex_state = 68}, - [3338] = {.lex_state = 177, .external_lex_state = 68}, - [3339] = {.lex_state = 177, .external_lex_state = 68}, - [3340] = {.lex_state = 177, .external_lex_state = 68}, - [3341] = {.lex_state = 177, .external_lex_state = 68}, - [3342] = {.lex_state = 177, .external_lex_state = 68}, - [3343] = {.lex_state = 177, .external_lex_state = 68}, - [3344] = {.lex_state = 177, .external_lex_state = 68}, - [3345] = {.lex_state = 177, .external_lex_state = 71}, - [3346] = {.lex_state = 177, .external_lex_state = 68}, - [3347] = {.lex_state = 177, .external_lex_state = 68}, - [3348] = {.lex_state = 177, .external_lex_state = 68}, - [3349] = {.lex_state = 177, .external_lex_state = 68}, - [3350] = {.lex_state = 177, .external_lex_state = 68}, - [3351] = {.lex_state = 177, .external_lex_state = 68}, - [3352] = {.lex_state = 177, .external_lex_state = 68}, - [3353] = {.lex_state = 177, .external_lex_state = 68}, - [3354] = {.lex_state = 177, .external_lex_state = 68}, - [3355] = {.lex_state = 177, .external_lex_state = 68}, - [3356] = {.lex_state = 177, .external_lex_state = 68}, - [3357] = {.lex_state = 177, .external_lex_state = 75}, - [3358] = {.lex_state = 177, .external_lex_state = 68}, - [3359] = {.lex_state = 177, .external_lex_state = 68}, - [3360] = {.lex_state = 177, .external_lex_state = 68}, - [3361] = {.lex_state = 177, .external_lex_state = 68}, - [3362] = {.lex_state = 177, .external_lex_state = 68}, - [3363] = {.lex_state = 177, .external_lex_state = 68}, - [3364] = {.lex_state = 177, .external_lex_state = 68}, - [3365] = {.lex_state = 177, .external_lex_state = 68}, - [3366] = {.lex_state = 177, .external_lex_state = 75}, - [3367] = {.lex_state = 177, .external_lex_state = 68}, - [3368] = {.lex_state = 177, .external_lex_state = 68}, - [3369] = {.lex_state = 177, .external_lex_state = 68}, - [3370] = {.lex_state = 177, .external_lex_state = 68}, - [3371] = {.lex_state = 177, .external_lex_state = 68}, - [3372] = {.lex_state = 177, .external_lex_state = 68}, - [3373] = {.lex_state = 177, .external_lex_state = 68}, - [3374] = {.lex_state = 47, .external_lex_state = 88}, - [3375] = {.lex_state = 177, .external_lex_state = 68}, - [3376] = {.lex_state = 47, .external_lex_state = 74}, - [3377] = {.lex_state = 177, .external_lex_state = 68}, - [3378] = {.lex_state = 177, .external_lex_state = 68}, - [3379] = {.lex_state = 177, .external_lex_state = 68}, - [3380] = {.lex_state = 177, .external_lex_state = 68}, - [3381] = {.lex_state = 47, .external_lex_state = 73}, - [3382] = {.lex_state = 47, .external_lex_state = 90}, - [3383] = {.lex_state = 183, .external_lex_state = 87}, - [3384] = {.lex_state = 177, .external_lex_state = 68}, - [3385] = {.lex_state = 183, .external_lex_state = 86}, - [3386] = {.lex_state = 177, .external_lex_state = 68}, - [3387] = {.lex_state = 47, .external_lex_state = 90}, - [3388] = {.lex_state = 177, .external_lex_state = 68}, - [3389] = {.lex_state = 47, .external_lex_state = 73}, - [3390] = {.lex_state = 177, .external_lex_state = 75}, - [3391] = {.lex_state = 177, .external_lex_state = 75}, - [3392] = {.lex_state = 181, .external_lex_state = 74}, - [3393] = {.lex_state = 177, .external_lex_state = 75}, - [3394] = {.lex_state = 183, .external_lex_state = 87}, - [3395] = {.lex_state = 177, .external_lex_state = 75}, - [3396] = {.lex_state = 177, .external_lex_state = 68}, - [3397] = {.lex_state = 183, .external_lex_state = 91}, - [3398] = {.lex_state = 177, .external_lex_state = 68}, - [3399] = {.lex_state = 177, .external_lex_state = 68}, - [3400] = {.lex_state = 177, .external_lex_state = 68}, - [3401] = {.lex_state = 177, .external_lex_state = 68}, - [3402] = {.lex_state = 177, .external_lex_state = 68}, - [3403] = {.lex_state = 177, .external_lex_state = 68}, - [3404] = {.lex_state = 177, .external_lex_state = 68}, - [3405] = {.lex_state = 177, .external_lex_state = 68}, - [3406] = {.lex_state = 177, .external_lex_state = 68}, - [3407] = {.lex_state = 177, .external_lex_state = 68}, - [3408] = {.lex_state = 47, .external_lex_state = 73}, - [3409] = {.lex_state = 177, .external_lex_state = 68}, - [3410] = {.lex_state = 177, .external_lex_state = 68}, - [3411] = {.lex_state = 50, .external_lex_state = 73}, - [3412] = {.lex_state = 177, .external_lex_state = 68}, - [3413] = {.lex_state = 177, .external_lex_state = 68}, - [3414] = {.lex_state = 177, .external_lex_state = 68}, - [3415] = {.lex_state = 177, .external_lex_state = 68}, - [3416] = {.lex_state = 177, .external_lex_state = 68}, - [3417] = {.lex_state = 177, .external_lex_state = 68}, - [3418] = {.lex_state = 177, .external_lex_state = 68}, - [3419] = {.lex_state = 177, .external_lex_state = 68}, - [3420] = {.lex_state = 47, .external_lex_state = 73}, - [3421] = {.lex_state = 47, .external_lex_state = 73}, - [3422] = {.lex_state = 177, .external_lex_state = 68}, - [3423] = {.lex_state = 177, .external_lex_state = 68}, - [3424] = {.lex_state = 177, .external_lex_state = 68}, - [3425] = {.lex_state = 177, .external_lex_state = 68}, - [3426] = {.lex_state = 177, .external_lex_state = 68}, - [3427] = {.lex_state = 177, .external_lex_state = 68}, - [3428] = {.lex_state = 177, .external_lex_state = 68}, - [3429] = {.lex_state = 177, .external_lex_state = 71}, - [3430] = {.lex_state = 177, .external_lex_state = 71}, - [3431] = {.lex_state = 177, .external_lex_state = 68}, - [3432] = {.lex_state = 177, .external_lex_state = 68}, - [3433] = {.lex_state = 177, .external_lex_state = 68}, - [3434] = {.lex_state = 177, .external_lex_state = 68}, - [3435] = {.lex_state = 177, .external_lex_state = 68}, - [3436] = {.lex_state = 177, .external_lex_state = 68}, - [3437] = {.lex_state = 177, .external_lex_state = 68}, - [3438] = {.lex_state = 47, .external_lex_state = 73}, - [3439] = {.lex_state = 177, .external_lex_state = 75}, - [3440] = {.lex_state = 177, .external_lex_state = 68}, - [3441] = {.lex_state = 177, .external_lex_state = 72}, - [3442] = {.lex_state = 177, .external_lex_state = 68}, - [3443] = {.lex_state = 177, .external_lex_state = 71}, - [3444] = {.lex_state = 177, .external_lex_state = 68}, - [3445] = {.lex_state = 177, .external_lex_state = 68}, - [3446] = {.lex_state = 177, .external_lex_state = 68}, - [3447] = {.lex_state = 177, .external_lex_state = 68}, - [3448] = {.lex_state = 177, .external_lex_state = 71}, - [3449] = {.lex_state = 177, .external_lex_state = 68}, - [3450] = {.lex_state = 177, .external_lex_state = 75}, - [3451] = {.lex_state = 177, .external_lex_state = 68}, - [3452] = {.lex_state = 177, .external_lex_state = 68}, - [3453] = {.lex_state = 183, .external_lex_state = 73}, - [3454] = {.lex_state = 177, .external_lex_state = 75}, - [3455] = {.lex_state = 177, .external_lex_state = 68}, - [3456] = {.lex_state = 177, .external_lex_state = 68}, - [3457] = {.lex_state = 177, .external_lex_state = 68}, - [3458] = {.lex_state = 177, .external_lex_state = 75}, - [3459] = {.lex_state = 177, .external_lex_state = 68}, - [3460] = {.lex_state = 177, .external_lex_state = 75}, - [3461] = {.lex_state = 177, .external_lex_state = 75}, - [3462] = {.lex_state = 177, .external_lex_state = 75}, - [3463] = {.lex_state = 177, .external_lex_state = 75}, - [3464] = {.lex_state = 177, .external_lex_state = 68}, - [3465] = {.lex_state = 177, .external_lex_state = 75}, - [3466] = {.lex_state = 177, .external_lex_state = 68}, - [3467] = {.lex_state = 177, .external_lex_state = 68}, - [3468] = {.lex_state = 177, .external_lex_state = 68}, - [3469] = {.lex_state = 177, .external_lex_state = 68}, - [3470] = {.lex_state = 177, .external_lex_state = 68}, - [3471] = {.lex_state = 177, .external_lex_state = 75}, - [3472] = {.lex_state = 177, .external_lex_state = 75}, - [3473] = {.lex_state = 177, .external_lex_state = 75}, - [3474] = {.lex_state = 177, .external_lex_state = 68}, - [3475] = {.lex_state = 177, .external_lex_state = 75}, - [3476] = {.lex_state = 177, .external_lex_state = 75}, - [3477] = {.lex_state = 177, .external_lex_state = 68}, - [3478] = {.lex_state = 177, .external_lex_state = 68}, - [3479] = {.lex_state = 177, .external_lex_state = 68}, - [3480] = {.lex_state = 177, .external_lex_state = 68}, - [3481] = {.lex_state = 177, .external_lex_state = 68}, - [3482] = {.lex_state = 50, .external_lex_state = 73}, - [3483] = {.lex_state = 177, .external_lex_state = 75}, - [3484] = {.lex_state = 177, .external_lex_state = 68}, - [3485] = {.lex_state = 177, .external_lex_state = 68}, - [3486] = {.lex_state = 181, .external_lex_state = 75}, - [3487] = {.lex_state = 177, .external_lex_state = 68}, - [3488] = {.lex_state = 177, .external_lex_state = 68}, - [3489] = {.lex_state = 177, .external_lex_state = 68}, - [3490] = {.lex_state = 183, .external_lex_state = 73}, - [3491] = {.lex_state = 177, .external_lex_state = 68}, - [3492] = {.lex_state = 177, .external_lex_state = 71}, - [3493] = {.lex_state = 177, .external_lex_state = 68}, - [3494] = {.lex_state = 177, .external_lex_state = 68}, - [3495] = {.lex_state = 183, .external_lex_state = 92}, - [3496] = {.lex_state = 177, .external_lex_state = 75}, - [3497] = {.lex_state = 177, .external_lex_state = 68}, - [3498] = {.lex_state = 177, .external_lex_state = 68}, - [3499] = {.lex_state = 177, .external_lex_state = 68}, - [3500] = {.lex_state = 181, .external_lex_state = 77}, - [3501] = {.lex_state = 177, .external_lex_state = 68}, - [3502] = {.lex_state = 177, .external_lex_state = 68}, - [3503] = {.lex_state = 50, .external_lex_state = 73}, - [3504] = {.lex_state = 177, .external_lex_state = 71}, - [3505] = {.lex_state = 177, .external_lex_state = 71}, - [3506] = {.lex_state = 177, .external_lex_state = 68}, - [3507] = {.lex_state = 181, .external_lex_state = 77}, - [3508] = {.lex_state = 177, .external_lex_state = 71}, - [3509] = {.lex_state = 177, .external_lex_state = 75}, - [3510] = {.lex_state = 177, .external_lex_state = 68}, - [3511] = {.lex_state = 177, .external_lex_state = 68}, - [3512] = {.lex_state = 177, .external_lex_state = 75}, - [3513] = {.lex_state = 177, .external_lex_state = 68}, - [3514] = {.lex_state = 177, .external_lex_state = 68}, - [3515] = {.lex_state = 177, .external_lex_state = 71}, - [3516] = {.lex_state = 177, .external_lex_state = 68}, - [3517] = {.lex_state = 181, .external_lex_state = 77}, - [3518] = {.lex_state = 177, .external_lex_state = 68}, - [3519] = {.lex_state = 177, .external_lex_state = 68}, - [3520] = {.lex_state = 177, .external_lex_state = 68}, - [3521] = {.lex_state = 177, .external_lex_state = 68}, - [3522] = {.lex_state = 177, .external_lex_state = 68}, - [3523] = {.lex_state = 177, .external_lex_state = 68}, - [3524] = {.lex_state = 177, .external_lex_state = 68}, - [3525] = {.lex_state = 47, .external_lex_state = 73}, - [3526] = {.lex_state = 177, .external_lex_state = 71}, - [3527] = {.lex_state = 177, .external_lex_state = 71}, - [3528] = {.lex_state = 181, .external_lex_state = 71}, - [3529] = {.lex_state = 177, .external_lex_state = 93}, - [3530] = {.lex_state = 177, .external_lex_state = 93}, - [3531] = {.lex_state = 177, .external_lex_state = 71}, - [3532] = {.lex_state = 177, .external_lex_state = 71}, - [3533] = {.lex_state = 177, .external_lex_state = 71}, - [3534] = {.lex_state = 177, .external_lex_state = 71}, - [3535] = {.lex_state = 47, .external_lex_state = 73}, - [3536] = {.lex_state = 47, .external_lex_state = 73}, - [3537] = {.lex_state = 177, .external_lex_state = 73}, - [3538] = {.lex_state = 177, .external_lex_state = 87}, - [3539] = {.lex_state = 177, .external_lex_state = 71}, - [3540] = {.lex_state = 177, .external_lex_state = 93}, - [3541] = {.lex_state = 177, .external_lex_state = 93}, - [3542] = {.lex_state = 177, .external_lex_state = 71}, - [3543] = {.lex_state = 177, .external_lex_state = 72}, - [3544] = {.lex_state = 181, .external_lex_state = 77}, - [3545] = {.lex_state = 177, .external_lex_state = 91}, - [3546] = {.lex_state = 177, .external_lex_state = 71}, - [3547] = {.lex_state = 177, .external_lex_state = 71}, - [3548] = {.lex_state = 177, .external_lex_state = 71}, - [3549] = {.lex_state = 177, .external_lex_state = 71}, - [3550] = {.lex_state = 177, .external_lex_state = 71}, - [3551] = {.lex_state = 177, .external_lex_state = 71}, - [3552] = {.lex_state = 47, .external_lex_state = 73}, - [3553] = {.lex_state = 47, .external_lex_state = 73}, - [3554] = {.lex_state = 183, .external_lex_state = 71}, - [3555] = {.lex_state = 183, .external_lex_state = 71}, - [3556] = {.lex_state = 183, .external_lex_state = 71}, - [3557] = {.lex_state = 177, .external_lex_state = 94}, - [3558] = {.lex_state = 177, .external_lex_state = 94}, - [3559] = {.lex_state = 177, .external_lex_state = 72}, - [3560] = {.lex_state = 177, .external_lex_state = 72}, - [3561] = {.lex_state = 177, .external_lex_state = 72}, - [3562] = {.lex_state = 177, .external_lex_state = 72}, - [3563] = {.lex_state = 177, .external_lex_state = 71}, - [3564] = {.lex_state = 177, .external_lex_state = 71}, - [3565] = {.lex_state = 177, .external_lex_state = 71}, - [3566] = {.lex_state = 177, .external_lex_state = 71}, - [3567] = {.lex_state = 177, .external_lex_state = 86}, - [3568] = {.lex_state = 177, .external_lex_state = 94}, - [3569] = {.lex_state = 177, .external_lex_state = 94}, - [3570] = {.lex_state = 177, .external_lex_state = 72}, - [3571] = {.lex_state = 177, .external_lex_state = 71}, - [3572] = {.lex_state = 177, .external_lex_state = 71}, - [3573] = {.lex_state = 177, .external_lex_state = 71}, - [3574] = {.lex_state = 183, .external_lex_state = 91}, - [3575] = {.lex_state = 177, .external_lex_state = 71}, - [3576] = {.lex_state = 177, .external_lex_state = 72}, - [3577] = {.lex_state = 177, .external_lex_state = 72}, - [3578] = {.lex_state = 177, .external_lex_state = 71}, - [3579] = {.lex_state = 177, .external_lex_state = 71}, - [3580] = {.lex_state = 177, .external_lex_state = 71}, - [3581] = {.lex_state = 177, .external_lex_state = 71}, - [3582] = {.lex_state = 177, .external_lex_state = 71}, - [3583] = {.lex_state = 177, .external_lex_state = 71}, - [3584] = {.lex_state = 177, .external_lex_state = 71}, - [3585] = {.lex_state = 47, .external_lex_state = 73}, - [3586] = {.lex_state = 47, .external_lex_state = 73}, - [3587] = {.lex_state = 47, .external_lex_state = 73}, - [3588] = {.lex_state = 47, .external_lex_state = 73}, - [3589] = {.lex_state = 177, .external_lex_state = 73}, - [3590] = {.lex_state = 177, .external_lex_state = 92}, - [3591] = {.lex_state = 47, .external_lex_state = 73}, - [3592] = {.lex_state = 47, .external_lex_state = 73}, - [3593] = {.lex_state = 47, .external_lex_state = 73}, - [3594] = {.lex_state = 183, .external_lex_state = 72}, - [3595] = {.lex_state = 47, .external_lex_state = 73}, - [3596] = {.lex_state = 177, .external_lex_state = 71}, - [3597] = {.lex_state = 47, .external_lex_state = 73}, - [3598] = {.lex_state = 177, .external_lex_state = 75}, - [3599] = {.lex_state = 47, .external_lex_state = 73}, - [3600] = {.lex_state = 47, .external_lex_state = 73}, - [3601] = {.lex_state = 47, .external_lex_state = 73}, - [3602] = {.lex_state = 47, .external_lex_state = 73}, - [3603] = {.lex_state = 48, .external_lex_state = 73}, - [3604] = {.lex_state = 48, .external_lex_state = 73}, - [3605] = {.lex_state = 48, .external_lex_state = 73}, - [3606] = {.lex_state = 48, .external_lex_state = 73}, - [3607] = {.lex_state = 48, .external_lex_state = 73}, - [3608] = {.lex_state = 47, .external_lex_state = 73}, - [3609] = {.lex_state = 47, .external_lex_state = 73}, - [3610] = {.lex_state = 47, .external_lex_state = 73}, - [3611] = {.lex_state = 177, .external_lex_state = 75}, - [3612] = {.lex_state = 177, .external_lex_state = 73}, - [3613] = {.lex_state = 47, .external_lex_state = 73}, - [3614] = {.lex_state = 47, .external_lex_state = 73}, - [3615] = {.lex_state = 47, .external_lex_state = 73}, - [3616] = {.lex_state = 47, .external_lex_state = 73}, - [3617] = {.lex_state = 47, .external_lex_state = 73}, - [3618] = {.lex_state = 47, .external_lex_state = 73}, - [3619] = {.lex_state = 47, .external_lex_state = 73}, - [3620] = {.lex_state = 47, .external_lex_state = 73}, - [3621] = {.lex_state = 47, .external_lex_state = 73}, - [3622] = {.lex_state = 47, .external_lex_state = 73}, - [3623] = {.lex_state = 47, .external_lex_state = 73}, - [3624] = {.lex_state = 47, .external_lex_state = 73}, - [3625] = {.lex_state = 47, .external_lex_state = 73}, - [3626] = {.lex_state = 47, .external_lex_state = 73}, - [3627] = {.lex_state = 47, .external_lex_state = 73}, - [3628] = {.lex_state = 47, .external_lex_state = 73}, - [3629] = {.lex_state = 47, .external_lex_state = 73}, - [3630] = {.lex_state = 47, .external_lex_state = 73}, - [3631] = {.lex_state = 47, .external_lex_state = 73}, - [3632] = {.lex_state = 47, .external_lex_state = 73}, - [3633] = {.lex_state = 183, .external_lex_state = 72}, - [3634] = {.lex_state = 47, .external_lex_state = 73}, - [3635] = {.lex_state = 47, .external_lex_state = 73}, - [3636] = {.lex_state = 47, .external_lex_state = 73}, - [3637] = {.lex_state = 47, .external_lex_state = 73}, - [3638] = {.lex_state = 47, .external_lex_state = 73}, - [3639] = {.lex_state = 47, .external_lex_state = 73}, - [3640] = {.lex_state = 47, .external_lex_state = 73}, - [3641] = {.lex_state = 47, .external_lex_state = 73}, - [3642] = {.lex_state = 47, .external_lex_state = 73}, - [3643] = {.lex_state = 47, .external_lex_state = 73}, - [3644] = {.lex_state = 47, .external_lex_state = 73}, - [3645] = {.lex_state = 177, .external_lex_state = 73}, - [3646] = {.lex_state = 47, .external_lex_state = 73}, - [3647] = {.lex_state = 47, .external_lex_state = 73}, - [3648] = {.lex_state = 47, .external_lex_state = 73}, - [3649] = {.lex_state = 47, .external_lex_state = 73}, - [3650] = {.lex_state = 47, .external_lex_state = 73}, - [3651] = {.lex_state = 47, .external_lex_state = 73}, - [3652] = {.lex_state = 47, .external_lex_state = 73}, - [3653] = {.lex_state = 47, .external_lex_state = 73}, - [3654] = {.lex_state = 47, .external_lex_state = 73}, - [3655] = {.lex_state = 47, .external_lex_state = 73}, - [3656] = {.lex_state = 47, .external_lex_state = 73}, - [3657] = {.lex_state = 47, .external_lex_state = 73}, - [3658] = {.lex_state = 47, .external_lex_state = 73}, - [3659] = {.lex_state = 47, .external_lex_state = 73}, - [3660] = {.lex_state = 47, .external_lex_state = 73}, - [3661] = {.lex_state = 47, .external_lex_state = 73}, - [3662] = {.lex_state = 47, .external_lex_state = 73}, - [3663] = {.lex_state = 47, .external_lex_state = 73}, - [3664] = {.lex_state = 47, .external_lex_state = 73}, - [3665] = {.lex_state = 47, .external_lex_state = 73}, - [3666] = {.lex_state = 47, .external_lex_state = 73}, - [3667] = {.lex_state = 47, .external_lex_state = 73}, - [3668] = {.lex_state = 47, .external_lex_state = 73}, - [3669] = {.lex_state = 47, .external_lex_state = 73}, - [3670] = {.lex_state = 47, .external_lex_state = 73}, - [3671] = {.lex_state = 47, .external_lex_state = 73}, - [3672] = {.lex_state = 47, .external_lex_state = 73}, - [3673] = {.lex_state = 47, .external_lex_state = 73}, - [3674] = {.lex_state = 47, .external_lex_state = 73}, - [3675] = {.lex_state = 47, .external_lex_state = 73}, - [3676] = {.lex_state = 47, .external_lex_state = 73}, - [3677] = {.lex_state = 47, .external_lex_state = 73}, - [3678] = {.lex_state = 47, .external_lex_state = 73}, - [3679] = {.lex_state = 177, .external_lex_state = 73}, - [3680] = {.lex_state = 47, .external_lex_state = 73}, - [3681] = {.lex_state = 47, .external_lex_state = 73}, - [3682] = {.lex_state = 177, .external_lex_state = 72}, - [3683] = {.lex_state = 47, .external_lex_state = 73}, - [3684] = {.lex_state = 47, .external_lex_state = 73}, - [3685] = {.lex_state = 47, .external_lex_state = 73}, - [3686] = {.lex_state = 47, .external_lex_state = 73}, - [3687] = {.lex_state = 47, .external_lex_state = 73}, - [3688] = {.lex_state = 47, .external_lex_state = 73}, - [3689] = {.lex_state = 47, .external_lex_state = 73}, - [3690] = {.lex_state = 47, .external_lex_state = 73}, - [3691] = {.lex_state = 177, .external_lex_state = 91}, - [3692] = {.lex_state = 47, .external_lex_state = 73}, - [3693] = {.lex_state = 47, .external_lex_state = 73}, - [3694] = {.lex_state = 47, .external_lex_state = 73}, - [3695] = {.lex_state = 47, .external_lex_state = 73}, - [3696] = {.lex_state = 47, .external_lex_state = 73}, - [3697] = {.lex_state = 47, .external_lex_state = 73}, - [3698] = {.lex_state = 47, .external_lex_state = 73}, - [3699] = {.lex_state = 181, .external_lex_state = 72}, - [3700] = {.lex_state = 47, .external_lex_state = 73}, - [3701] = {.lex_state = 47, .external_lex_state = 73}, - [3702] = {.lex_state = 47, .external_lex_state = 73}, - [3703] = {.lex_state = 47, .external_lex_state = 73}, - [3704] = {.lex_state = 47, .external_lex_state = 73}, - [3705] = {.lex_state = 47, .external_lex_state = 73}, - [3706] = {.lex_state = 47, .external_lex_state = 73}, - [3707] = {.lex_state = 47, .external_lex_state = 73}, - [3708] = {.lex_state = 47, .external_lex_state = 73}, - [3709] = {.lex_state = 47, .external_lex_state = 73}, - [3710] = {.lex_state = 47, .external_lex_state = 73}, - [3711] = {.lex_state = 47, .external_lex_state = 73}, - [3712] = {.lex_state = 47, .external_lex_state = 73}, - [3713] = {.lex_state = 47, .external_lex_state = 73}, - [3714] = {.lex_state = 47, .external_lex_state = 73}, - [3715] = {.lex_state = 47, .external_lex_state = 73}, - [3716] = {.lex_state = 47, .external_lex_state = 73}, - [3717] = {.lex_state = 47, .external_lex_state = 73}, - [3718] = {.lex_state = 47, .external_lex_state = 73}, - [3719] = {.lex_state = 47, .external_lex_state = 73}, - [3720] = {.lex_state = 47, .external_lex_state = 73}, - [3721] = {.lex_state = 47, .external_lex_state = 73}, - [3722] = {.lex_state = 47, .external_lex_state = 73}, - [3723] = {.lex_state = 47, .external_lex_state = 73}, - [3724] = {.lex_state = 47, .external_lex_state = 73}, - [3725] = {.lex_state = 47, .external_lex_state = 73}, - [3726] = {.lex_state = 47, .external_lex_state = 73}, - [3727] = {.lex_state = 177, .external_lex_state = 73}, - [3728] = {.lex_state = 177, .external_lex_state = 73}, - [3729] = {.lex_state = 47, .external_lex_state = 73}, - [3730] = {.lex_state = 47, .external_lex_state = 73}, - [3731] = {.lex_state = 47, .external_lex_state = 73}, - [3732] = {.lex_state = 177, .external_lex_state = 73}, - [3733] = {.lex_state = 177, .external_lex_state = 73}, - [3734] = {.lex_state = 47, .external_lex_state = 73}, - [3735] = {.lex_state = 177, .external_lex_state = 73}, - [3736] = {.lex_state = 177, .external_lex_state = 73}, - [3737] = {.lex_state = 177, .external_lex_state = 72}, - [3738] = {.lex_state = 177, .external_lex_state = 71}, - [3739] = {.lex_state = 177, .external_lex_state = 71}, - [3740] = {.lex_state = 177, .external_lex_state = 72}, - [3741] = {.lex_state = 177, .external_lex_state = 71}, - [3742] = {.lex_state = 177, .external_lex_state = 71}, - [3743] = {.lex_state = 177, .external_lex_state = 71}, - [3744] = {.lex_state = 177, .external_lex_state = 71}, - [3745] = {.lex_state = 177, .external_lex_state = 72}, - [3746] = {.lex_state = 177, .external_lex_state = 73}, - [3747] = {.lex_state = 177, .external_lex_state = 73}, - [3748] = {.lex_state = 177, .external_lex_state = 73}, - [3749] = {.lex_state = 183, .external_lex_state = 73}, - [3750] = {.lex_state = 47, .external_lex_state = 74}, - [3751] = {.lex_state = 177, .external_lex_state = 72}, - [3752] = {.lex_state = 177, .external_lex_state = 72}, - [3753] = {.lex_state = 47, .external_lex_state = 73}, - [3754] = {.lex_state = 177, .external_lex_state = 72}, - [3755] = {.lex_state = 181, .external_lex_state = 72}, - [3756] = {.lex_state = 183, .external_lex_state = 72}, - [3757] = {.lex_state = 177, .external_lex_state = 73}, - [3758] = {.lex_state = 47, .external_lex_state = 73}, - [3759] = {.lex_state = 177, .external_lex_state = 73}, - [3760] = {.lex_state = 177, .external_lex_state = 73}, - [3761] = {.lex_state = 177, .external_lex_state = 73}, - [3762] = {.lex_state = 47, .external_lex_state = 73}, - [3763] = {.lex_state = 177, .external_lex_state = 73}, - [3764] = {.lex_state = 47, .external_lex_state = 73}, - [3765] = {.lex_state = 47, .external_lex_state = 73}, - [3766] = {.lex_state = 47, .external_lex_state = 73}, - [3767] = {.lex_state = 47, .external_lex_state = 73}, - [3768] = {.lex_state = 47, .external_lex_state = 73}, - [3769] = {.lex_state = 47, .external_lex_state = 73}, - [3770] = {.lex_state = 47, .external_lex_state = 73}, - [3771] = {.lex_state = 47, .external_lex_state = 73}, - [3772] = {.lex_state = 47, .external_lex_state = 73}, - [3773] = {.lex_state = 47, .external_lex_state = 73}, - [3774] = {.lex_state = 47, .external_lex_state = 73}, - [3775] = {.lex_state = 47, .external_lex_state = 73}, - [3776] = {.lex_state = 47, .external_lex_state = 73}, - [3777] = {.lex_state = 47, .external_lex_state = 73}, - [3778] = {.lex_state = 47, .external_lex_state = 73}, - [3779] = {.lex_state = 47, .external_lex_state = 73}, - [3780] = {.lex_state = 47, .external_lex_state = 73}, - [3781] = {.lex_state = 47, .external_lex_state = 73}, - [3782] = {.lex_state = 177, .external_lex_state = 91}, - [3783] = {.lex_state = 183, .external_lex_state = 91}, - [3784] = {.lex_state = 177, .external_lex_state = 72}, - [3785] = {.lex_state = 177, .external_lex_state = 72}, - [3786] = {.lex_state = 177, .external_lex_state = 72}, - [3787] = {.lex_state = 177, .external_lex_state = 73}, - [3788] = {.lex_state = 177, .external_lex_state = 72}, - [3789] = {.lex_state = 177, .external_lex_state = 72}, - [3790] = {.lex_state = 177, .external_lex_state = 72}, - [3791] = {.lex_state = 177, .external_lex_state = 72}, - [3792] = {.lex_state = 177, .external_lex_state = 72}, - [3793] = {.lex_state = 177, .external_lex_state = 72}, - [3794] = {.lex_state = 177, .external_lex_state = 72}, - [3795] = {.lex_state = 177, .external_lex_state = 92}, - [3796] = {.lex_state = 47, .external_lex_state = 73}, - [3797] = {.lex_state = 47, .external_lex_state = 74}, - [3798] = {.lex_state = 177, .external_lex_state = 73}, - [3799] = {.lex_state = 177, .external_lex_state = 73}, - [3800] = {.lex_state = 177, .external_lex_state = 92}, - [3801] = {.lex_state = 177, .external_lex_state = 71}, - [3802] = {.lex_state = 177, .external_lex_state = 71}, - [3803] = {.lex_state = 177, .external_lex_state = 71}, - [3804] = {.lex_state = 177, .external_lex_state = 71}, - [3805] = {.lex_state = 177, .external_lex_state = 71}, - [3806] = {.lex_state = 47, .external_lex_state = 73}, - [3807] = {.lex_state = 177, .external_lex_state = 71}, - [3808] = {.lex_state = 177, .external_lex_state = 71}, - [3809] = {.lex_state = 177, .external_lex_state = 71}, - [3810] = {.lex_state = 177, .external_lex_state = 71}, - [3811] = {.lex_state = 177, .external_lex_state = 71}, - [3812] = {.lex_state = 177, .external_lex_state = 71}, - [3813] = {.lex_state = 177, .external_lex_state = 71}, - [3814] = {.lex_state = 177, .external_lex_state = 71}, - [3815] = {.lex_state = 177, .external_lex_state = 72}, - [3816] = {.lex_state = 177, .external_lex_state = 71}, - [3817] = {.lex_state = 177, .external_lex_state = 72}, - [3818] = {.lex_state = 177, .external_lex_state = 72}, - [3819] = {.lex_state = 177, .external_lex_state = 72}, - [3820] = {.lex_state = 177, .external_lex_state = 72}, - [3821] = {.lex_state = 177, .external_lex_state = 71}, - [3822] = {.lex_state = 177, .external_lex_state = 71}, - [3823] = {.lex_state = 177, .external_lex_state = 71}, - [3824] = {.lex_state = 177, .external_lex_state = 71}, - [3825] = {.lex_state = 177, .external_lex_state = 71}, - [3826] = {.lex_state = 177, .external_lex_state = 72}, - [3827] = {.lex_state = 177, .external_lex_state = 72}, - [3828] = {.lex_state = 177, .external_lex_state = 72}, - [3829] = {.lex_state = 177, .external_lex_state = 72}, - [3830] = {.lex_state = 177, .external_lex_state = 72}, - [3831] = {.lex_state = 177, .external_lex_state = 72}, - [3832] = {.lex_state = 177, .external_lex_state = 72}, - [3833] = {.lex_state = 177, .external_lex_state = 72}, - [3834] = {.lex_state = 177, .external_lex_state = 72}, - [3835] = {.lex_state = 177, .external_lex_state = 72}, - [3836] = {.lex_state = 177, .external_lex_state = 72}, - [3837] = {.lex_state = 177, .external_lex_state = 71}, - [3838] = {.lex_state = 177, .external_lex_state = 72}, - [3839] = {.lex_state = 177, .external_lex_state = 72}, - [3840] = {.lex_state = 177, .external_lex_state = 72}, - [3841] = {.lex_state = 177, .external_lex_state = 72}, - [3842] = {.lex_state = 177, .external_lex_state = 71}, - [3843] = {.lex_state = 177, .external_lex_state = 72}, - [3844] = {.lex_state = 177, .external_lex_state = 72}, - [3845] = {.lex_state = 177, .external_lex_state = 72}, - [3846] = {.lex_state = 177, .external_lex_state = 72}, - [3847] = {.lex_state = 177, .external_lex_state = 71}, - [3848] = {.lex_state = 181, .external_lex_state = 77}, - [3849] = {.lex_state = 177, .external_lex_state = 77}, - [3850] = {.lex_state = 177, .external_lex_state = 71}, - [3851] = {.lex_state = 177, .external_lex_state = 77}, - [3852] = {.lex_state = 177, .external_lex_state = 77}, - [3853] = {.lex_state = 177, .external_lex_state = 71}, - [3854] = {.lex_state = 177, .external_lex_state = 71}, - [3855] = {.lex_state = 177, .external_lex_state = 71}, - [3856] = {.lex_state = 47, .external_lex_state = 95}, - [3857] = {.lex_state = 177, .external_lex_state = 71}, - [3858] = {.lex_state = 177, .external_lex_state = 71}, - [3859] = {.lex_state = 177, .external_lex_state = 72}, - [3860] = {.lex_state = 177, .external_lex_state = 77}, - [3861] = {.lex_state = 177, .external_lex_state = 71}, - [3862] = {.lex_state = 177, .external_lex_state = 71}, - [3863] = {.lex_state = 177, .external_lex_state = 71}, - [3864] = {.lex_state = 177, .external_lex_state = 71}, - [3865] = {.lex_state = 177, .external_lex_state = 72}, - [3866] = {.lex_state = 177, .external_lex_state = 72}, - [3867] = {.lex_state = 177, .external_lex_state = 72}, - [3868] = {.lex_state = 177, .external_lex_state = 72}, - [3869] = {.lex_state = 177, .external_lex_state = 72}, - [3870] = {.lex_state = 177, .external_lex_state = 72}, - [3871] = {.lex_state = 177, .external_lex_state = 72}, - [3872] = {.lex_state = 177, .external_lex_state = 72}, - [3873] = {.lex_state = 177, .external_lex_state = 71}, - [3874] = {.lex_state = 183, .external_lex_state = 74}, - [3875] = {.lex_state = 177, .external_lex_state = 72}, - [3876] = {.lex_state = 177, .external_lex_state = 72}, - [3877] = {.lex_state = 177, .external_lex_state = 72}, - [3878] = {.lex_state = 177, .external_lex_state = 72}, - [3879] = {.lex_state = 177, .external_lex_state = 72}, - [3880] = {.lex_state = 177, .external_lex_state = 72}, - [3881] = {.lex_state = 177, .external_lex_state = 72}, - [3882] = {.lex_state = 177, .external_lex_state = 72}, - [3883] = {.lex_state = 177, .external_lex_state = 72}, - [3884] = {.lex_state = 177, .external_lex_state = 72}, - [3885] = {.lex_state = 177, .external_lex_state = 72}, - [3886] = {.lex_state = 177, .external_lex_state = 72}, - [3887] = {.lex_state = 177, .external_lex_state = 72}, - [3888] = {.lex_state = 177, .external_lex_state = 72}, - [3889] = {.lex_state = 177, .external_lex_state = 72}, - [3890] = {.lex_state = 177, .external_lex_state = 72}, - [3891] = {.lex_state = 177, .external_lex_state = 72}, - [3892] = {.lex_state = 177, .external_lex_state = 72}, - [3893] = {.lex_state = 177, .external_lex_state = 72}, - [3894] = {.lex_state = 177, .external_lex_state = 72}, - [3895] = {.lex_state = 177, .external_lex_state = 72}, - [3896] = {.lex_state = 177, .external_lex_state = 71}, - [3897] = {.lex_state = 177, .external_lex_state = 72}, - [3898] = {.lex_state = 177, .external_lex_state = 72}, - [3899] = {.lex_state = 177, .external_lex_state = 72}, - [3900] = {.lex_state = 177, .external_lex_state = 72}, - [3901] = {.lex_state = 177, .external_lex_state = 71}, - [3902] = {.lex_state = 177, .external_lex_state = 71}, - [3903] = {.lex_state = 177, .external_lex_state = 72}, - [3904] = {.lex_state = 177, .external_lex_state = 72}, - [3905] = {.lex_state = 177, .external_lex_state = 72}, - [3906] = {.lex_state = 177, .external_lex_state = 72}, - [3907] = {.lex_state = 177, .external_lex_state = 71}, - [3908] = {.lex_state = 177, .external_lex_state = 72}, - [3909] = {.lex_state = 177, .external_lex_state = 72}, - [3910] = {.lex_state = 177, .external_lex_state = 72}, - [3911] = {.lex_state = 177, .external_lex_state = 72}, - [3912] = {.lex_state = 177, .external_lex_state = 72}, - [3913] = {.lex_state = 177, .external_lex_state = 72}, - [3914] = {.lex_state = 177, .external_lex_state = 72}, - [3915] = {.lex_state = 177, .external_lex_state = 72}, - [3916] = {.lex_state = 177, .external_lex_state = 72}, - [3917] = {.lex_state = 177, .external_lex_state = 72}, - [3918] = {.lex_state = 177, .external_lex_state = 72}, - [3919] = {.lex_state = 181, .external_lex_state = 78}, - [3920] = {.lex_state = 177, .external_lex_state = 72}, - [3921] = {.lex_state = 177, .external_lex_state = 72}, - [3922] = {.lex_state = 177, .external_lex_state = 72}, - [3923] = {.lex_state = 177, .external_lex_state = 71}, - [3924] = {.lex_state = 177, .external_lex_state = 72}, - [3925] = {.lex_state = 177, .external_lex_state = 72}, - [3926] = {.lex_state = 177, .external_lex_state = 72}, - [3927] = {.lex_state = 177, .external_lex_state = 72}, - [3928] = {.lex_state = 177, .external_lex_state = 75}, - [3929] = {.lex_state = 177, .external_lex_state = 72}, - [3930] = {.lex_state = 47, .external_lex_state = 95}, - [3931] = {.lex_state = 177, .external_lex_state = 72}, - [3932] = {.lex_state = 177, .external_lex_state = 72}, - [3933] = {.lex_state = 177, .external_lex_state = 72}, - [3934] = {.lex_state = 177, .external_lex_state = 72}, - [3935] = {.lex_state = 177, .external_lex_state = 72}, - [3936] = {.lex_state = 177, .external_lex_state = 72}, - [3937] = {.lex_state = 177, .external_lex_state = 72}, - [3938] = {.lex_state = 177, .external_lex_state = 72}, - [3939] = {.lex_state = 177, .external_lex_state = 72}, - [3940] = {.lex_state = 177, .external_lex_state = 72}, - [3941] = {.lex_state = 177, .external_lex_state = 72}, - [3942] = {.lex_state = 177, .external_lex_state = 72}, - [3943] = {.lex_state = 177, .external_lex_state = 72}, - [3944] = {.lex_state = 177, .external_lex_state = 72}, - [3945] = {.lex_state = 177, .external_lex_state = 72}, - [3946] = {.lex_state = 177, .external_lex_state = 72}, - [3947] = {.lex_state = 177, .external_lex_state = 77}, - [3948] = {.lex_state = 177, .external_lex_state = 77}, - [3949] = {.lex_state = 177, .external_lex_state = 72}, - [3950] = {.lex_state = 177, .external_lex_state = 77}, - [3951] = {.lex_state = 177, .external_lex_state = 77}, - [3952] = {.lex_state = 177, .external_lex_state = 72}, - [3953] = {.lex_state = 177, .external_lex_state = 71}, - [3954] = {.lex_state = 177, .external_lex_state = 72}, - [3955] = {.lex_state = 177, .external_lex_state = 72}, - [3956] = {.lex_state = 177, .external_lex_state = 72}, - [3957] = {.lex_state = 177, .external_lex_state = 72}, - [3958] = {.lex_state = 177, .external_lex_state = 72}, - [3959] = {.lex_state = 177, .external_lex_state = 72}, - [3960] = {.lex_state = 177, .external_lex_state = 72}, - [3961] = {.lex_state = 177, .external_lex_state = 72}, - [3962] = {.lex_state = 177, .external_lex_state = 72}, - [3963] = {.lex_state = 177, .external_lex_state = 72}, - [3964] = {.lex_state = 177, .external_lex_state = 72}, - [3965] = {.lex_state = 177, .external_lex_state = 72}, - [3966] = {.lex_state = 177, .external_lex_state = 71}, - [3967] = {.lex_state = 177, .external_lex_state = 71}, - [3968] = {.lex_state = 177, .external_lex_state = 71}, - [3969] = {.lex_state = 177, .external_lex_state = 71}, - [3970] = {.lex_state = 177, .external_lex_state = 71}, - [3971] = {.lex_state = 177, .external_lex_state = 71}, - [3972] = {.lex_state = 177, .external_lex_state = 71}, - [3973] = {.lex_state = 177, .external_lex_state = 71}, - [3974] = {.lex_state = 177, .external_lex_state = 73}, - [3975] = {.lex_state = 177, .external_lex_state = 71}, - [3976] = {.lex_state = 177, .external_lex_state = 71}, - [3977] = {.lex_state = 177, .external_lex_state = 71}, - [3978] = {.lex_state = 177, .external_lex_state = 71}, - [3979] = {.lex_state = 177, .external_lex_state = 71}, - [3980] = {.lex_state = 177, .external_lex_state = 71}, - [3981] = {.lex_state = 177, .external_lex_state = 71}, - [3982] = {.lex_state = 177, .external_lex_state = 71}, - [3983] = {.lex_state = 177, .external_lex_state = 71}, - [3984] = {.lex_state = 177, .external_lex_state = 71}, - [3985] = {.lex_state = 48, .external_lex_state = 73}, - [3986] = {.lex_state = 177, .external_lex_state = 71}, - [3987] = {.lex_state = 177, .external_lex_state = 71}, - [3988] = {.lex_state = 177, .external_lex_state = 71}, - [3989] = {.lex_state = 47, .external_lex_state = 91}, - [3990] = {.lex_state = 177, .external_lex_state = 71}, - [3991] = {.lex_state = 47, .external_lex_state = 74}, - [3992] = {.lex_state = 177, .external_lex_state = 71}, - [3993] = {.lex_state = 177, .external_lex_state = 71}, - [3994] = {.lex_state = 50, .external_lex_state = 74}, - [3995] = {.lex_state = 177, .external_lex_state = 71}, - [3996] = {.lex_state = 177, .external_lex_state = 71}, - [3997] = {.lex_state = 177, .external_lex_state = 71}, - [3998] = {.lex_state = 177, .external_lex_state = 71}, - [3999] = {.lex_state = 177, .external_lex_state = 71}, - [4000] = {.lex_state = 177, .external_lex_state = 71}, - [4001] = {.lex_state = 177, .external_lex_state = 71}, - [4002] = {.lex_state = 177, .external_lex_state = 71}, - [4003] = {.lex_state = 177, .external_lex_state = 71}, - [4004] = {.lex_state = 177, .external_lex_state = 71}, - [4005] = {.lex_state = 177, .external_lex_state = 71}, - [4006] = {.lex_state = 177, .external_lex_state = 71}, - [4007] = {.lex_state = 177, .external_lex_state = 71}, - [4008] = {.lex_state = 177, .external_lex_state = 71}, - [4009] = {.lex_state = 177, .external_lex_state = 71}, - [4010] = {.lex_state = 177, .external_lex_state = 71}, - [4011] = {.lex_state = 177, .external_lex_state = 71}, - [4012] = {.lex_state = 177, .external_lex_state = 73}, - [4013] = {.lex_state = 177, .external_lex_state = 71}, - [4014] = {.lex_state = 177, .external_lex_state = 71}, - [4015] = {.lex_state = 177, .external_lex_state = 71}, - [4016] = {.lex_state = 177, .external_lex_state = 71}, - [4017] = {.lex_state = 177, .external_lex_state = 71}, - [4018] = {.lex_state = 177, .external_lex_state = 71}, - [4019] = {.lex_state = 177, .external_lex_state = 71}, - [4020] = {.lex_state = 177, .external_lex_state = 71}, - [4021] = {.lex_state = 177, .external_lex_state = 71}, - [4022] = {.lex_state = 177, .external_lex_state = 72}, - [4023] = {.lex_state = 177, .external_lex_state = 71}, - [4024] = {.lex_state = 177, .external_lex_state = 71}, - [4025] = {.lex_state = 177, .external_lex_state = 71}, - [4026] = {.lex_state = 177, .external_lex_state = 73}, - [4027] = {.lex_state = 177, .external_lex_state = 73}, - [4028] = {.lex_state = 177, .external_lex_state = 72}, - [4029] = {.lex_state = 177, .external_lex_state = 73}, - [4030] = {.lex_state = 177, .external_lex_state = 71}, - [4031] = {.lex_state = 177, .external_lex_state = 71}, - [4032] = {.lex_state = 177, .external_lex_state = 71}, - [4033] = {.lex_state = 177, .external_lex_state = 71}, - [4034] = {.lex_state = 177, .external_lex_state = 73}, - [4035] = {.lex_state = 177, .external_lex_state = 73}, - [4036] = {.lex_state = 177, .external_lex_state = 73}, - [4037] = {.lex_state = 177, .external_lex_state = 73}, - [4038] = {.lex_state = 177, .external_lex_state = 73}, - [4039] = {.lex_state = 177, .external_lex_state = 73}, - [4040] = {.lex_state = 177, .external_lex_state = 73}, - [4041] = {.lex_state = 177, .external_lex_state = 73}, - [4042] = {.lex_state = 177, .external_lex_state = 73}, - [4043] = {.lex_state = 177, .external_lex_state = 73}, - [4044] = {.lex_state = 177, .external_lex_state = 73}, - [4045] = {.lex_state = 177, .external_lex_state = 71}, - [4046] = {.lex_state = 177, .external_lex_state = 71}, - [4047] = {.lex_state = 177, .external_lex_state = 71}, - [4048] = {.lex_state = 177, .external_lex_state = 71}, - [4049] = {.lex_state = 177, .external_lex_state = 71}, - [4050] = {.lex_state = 177, .external_lex_state = 71}, - [4051] = {.lex_state = 177, .external_lex_state = 71}, - [4052] = {.lex_state = 177, .external_lex_state = 71}, - [4053] = {.lex_state = 177, .external_lex_state = 71}, - [4054] = {.lex_state = 177, .external_lex_state = 71}, - [4055] = {.lex_state = 177, .external_lex_state = 71}, - [4056] = {.lex_state = 177, .external_lex_state = 71}, - [4057] = {.lex_state = 177, .external_lex_state = 71}, - [4058] = {.lex_state = 177, .external_lex_state = 71}, - [4059] = {.lex_state = 177, .external_lex_state = 71}, - [4060] = {.lex_state = 177, .external_lex_state = 71}, - [4061] = {.lex_state = 177, .external_lex_state = 71}, - [4062] = {.lex_state = 177, .external_lex_state = 71}, - [4063] = {.lex_state = 177, .external_lex_state = 71}, - [4064] = {.lex_state = 177, .external_lex_state = 71}, - [4065] = {.lex_state = 177, .external_lex_state = 71}, - [4066] = {.lex_state = 177, .external_lex_state = 71}, - [4067] = {.lex_state = 177, .external_lex_state = 71}, - [4068] = {.lex_state = 177, .external_lex_state = 72}, - [4069] = {.lex_state = 177, .external_lex_state = 71}, - [4070] = {.lex_state = 177, .external_lex_state = 71}, - [4071] = {.lex_state = 177, .external_lex_state = 71}, - [4072] = {.lex_state = 177, .external_lex_state = 71}, - [4073] = {.lex_state = 177, .external_lex_state = 71}, - [4074] = {.lex_state = 177, .external_lex_state = 71}, - [4075] = {.lex_state = 177, .external_lex_state = 71}, - [4076] = {.lex_state = 177, .external_lex_state = 71}, - [4077] = {.lex_state = 177, .external_lex_state = 71}, - [4078] = {.lex_state = 177, .external_lex_state = 73}, - [4079] = {.lex_state = 177, .external_lex_state = 71}, - [4080] = {.lex_state = 177, .external_lex_state = 71}, - [4081] = {.lex_state = 177, .external_lex_state = 71}, - [4082] = {.lex_state = 177, .external_lex_state = 71}, - [4083] = {.lex_state = 177, .external_lex_state = 71}, - [4084] = {.lex_state = 177, .external_lex_state = 71}, - [4085] = {.lex_state = 177, .external_lex_state = 71}, - [4086] = {.lex_state = 177, .external_lex_state = 71}, - [4087] = {.lex_state = 177, .external_lex_state = 71}, - [4088] = {.lex_state = 177, .external_lex_state = 71}, - [4089] = {.lex_state = 177, .external_lex_state = 71}, - [4090] = {.lex_state = 177, .external_lex_state = 71}, - [4091] = {.lex_state = 177, .external_lex_state = 71}, - [4092] = {.lex_state = 177, .external_lex_state = 71}, - [4093] = {.lex_state = 177, .external_lex_state = 71}, - [4094] = {.lex_state = 177, .external_lex_state = 71}, - [4095] = {.lex_state = 177, .external_lex_state = 71}, - [4096] = {.lex_state = 177, .external_lex_state = 71}, - [4097] = {.lex_state = 177, .external_lex_state = 73}, - [4098] = {.lex_state = 177, .external_lex_state = 71}, - [4099] = {.lex_state = 177, .external_lex_state = 71}, - [4100] = {.lex_state = 177, .external_lex_state = 71}, - [4101] = {.lex_state = 177, .external_lex_state = 71}, - [4102] = {.lex_state = 177, .external_lex_state = 71}, - [4103] = {.lex_state = 177, .external_lex_state = 71}, - [4104] = {.lex_state = 177, .external_lex_state = 71}, - [4105] = {.lex_state = 177, .external_lex_state = 73}, - [4106] = {.lex_state = 181, .external_lex_state = 79}, - [4107] = {.lex_state = 181, .external_lex_state = 79}, - [4108] = {.lex_state = 177, .external_lex_state = 72}, - [4109] = {.lex_state = 177, .external_lex_state = 71}, - [4110] = {.lex_state = 177, .external_lex_state = 72}, - [4111] = {.lex_state = 177, .external_lex_state = 71}, - [4112] = {.lex_state = 177, .external_lex_state = 71}, - [4113] = {.lex_state = 177, .external_lex_state = 72}, - [4114] = {.lex_state = 177, .external_lex_state = 71}, - [4115] = {.lex_state = 177, .external_lex_state = 72}, - [4116] = {.lex_state = 177, .external_lex_state = 72}, - [4117] = {.lex_state = 47, .external_lex_state = 74}, - [4118] = {.lex_state = 177, .external_lex_state = 72}, - [4119] = {.lex_state = 177, .external_lex_state = 72}, - [4120] = {.lex_state = 47, .external_lex_state = 74}, - [4121] = {.lex_state = 177, .external_lex_state = 72}, - [4122] = {.lex_state = 177, .external_lex_state = 72}, - [4123] = {.lex_state = 177, .external_lex_state = 72}, - [4124] = {.lex_state = 177, .external_lex_state = 72}, - [4125] = {.lex_state = 177, .external_lex_state = 72}, - [4126] = {.lex_state = 177, .external_lex_state = 72}, - [4127] = {.lex_state = 177, .external_lex_state = 72}, - [4128] = {.lex_state = 183, .external_lex_state = 92}, - [4129] = {.lex_state = 177, .external_lex_state = 71}, - [4130] = {.lex_state = 47, .external_lex_state = 74}, - [4131] = {.lex_state = 177, .external_lex_state = 72}, - [4132] = {.lex_state = 181, .external_lex_state = 78}, - [4133] = {.lex_state = 177, .external_lex_state = 72}, - [4134] = {.lex_state = 177, .external_lex_state = 72}, - [4135] = {.lex_state = 181, .external_lex_state = 78}, - [4136] = {.lex_state = 177, .external_lex_state = 72}, - [4137] = {.lex_state = 177, .external_lex_state = 72}, - [4138] = {.lex_state = 177, .external_lex_state = 72}, - [4139] = {.lex_state = 177, .external_lex_state = 72}, - [4140] = {.lex_state = 177, .external_lex_state = 72}, - [4141] = {.lex_state = 177, .external_lex_state = 72}, - [4142] = {.lex_state = 177, .external_lex_state = 72}, - [4143] = {.lex_state = 177, .external_lex_state = 72}, - [4144] = {.lex_state = 177, .external_lex_state = 72}, - [4145] = {.lex_state = 177, .external_lex_state = 72}, - [4146] = {.lex_state = 177, .external_lex_state = 72}, - [4147] = {.lex_state = 177, .external_lex_state = 72}, - [4148] = {.lex_state = 177, .external_lex_state = 72}, - [4149] = {.lex_state = 177, .external_lex_state = 72}, - [4150] = {.lex_state = 177, .external_lex_state = 72}, - [4151] = {.lex_state = 177, .external_lex_state = 72}, - [4152] = {.lex_state = 177, .external_lex_state = 72}, - [4153] = {.lex_state = 177, .external_lex_state = 72}, - [4154] = {.lex_state = 177, .external_lex_state = 71}, - [4155] = {.lex_state = 177, .external_lex_state = 73}, - [4156] = {.lex_state = 177, .external_lex_state = 73}, - [4157] = {.lex_state = 185, .external_lex_state = 96}, - [4158] = {.lex_state = 177, .external_lex_state = 72}, - [4159] = {.lex_state = 177, .external_lex_state = 72}, - [4160] = {.lex_state = 177, .external_lex_state = 72}, - [4161] = {.lex_state = 177, .external_lex_state = 71}, - [4162] = {.lex_state = 177, .external_lex_state = 72}, - [4163] = {.lex_state = 177, .external_lex_state = 72}, - [4164] = {.lex_state = 183, .external_lex_state = 92}, - [4165] = {.lex_state = 177, .external_lex_state = 72}, - [4166] = {.lex_state = 181, .external_lex_state = 79}, - [4167] = {.lex_state = 181, .external_lex_state = 78}, - [4168] = {.lex_state = 181, .external_lex_state = 78}, - [4169] = {.lex_state = 177, .external_lex_state = 71}, - [4170] = {.lex_state = 177, .external_lex_state = 71}, - [4171] = {.lex_state = 181, .external_lex_state = 79}, - [4172] = {.lex_state = 177, .external_lex_state = 71}, - [4173] = {.lex_state = 177, .external_lex_state = 71}, - [4174] = {.lex_state = 177, .external_lex_state = 72}, - [4175] = {.lex_state = 177, .external_lex_state = 71}, - [4176] = {.lex_state = 177, .external_lex_state = 71}, - [4177] = {.lex_state = 177, .external_lex_state = 71}, - [4178] = {.lex_state = 177, .external_lex_state = 71}, - [4179] = {.lex_state = 185, .external_lex_state = 96}, - [4180] = {.lex_state = 185, .external_lex_state = 96}, - [4181] = {.lex_state = 177, .external_lex_state = 72}, - [4182] = {.lex_state = 177, .external_lex_state = 73}, - [4183] = {.lex_state = 177, .external_lex_state = 73}, - [4184] = {.lex_state = 177, .external_lex_state = 73}, - [4185] = {.lex_state = 177, .external_lex_state = 72}, - [4186] = {.lex_state = 177, .external_lex_state = 72}, - [4187] = {.lex_state = 177, .external_lex_state = 72}, - [4188] = {.lex_state = 177, .external_lex_state = 72}, - [4189] = {.lex_state = 177, .external_lex_state = 72}, - [4190] = {.lex_state = 47, .external_lex_state = 95}, - [4191] = {.lex_state = 177, .external_lex_state = 71}, - [4192] = {.lex_state = 183, .external_lex_state = 74}, - [4193] = {.lex_state = 177, .external_lex_state = 72}, - [4194] = {.lex_state = 177, .external_lex_state = 71}, - [4195] = {.lex_state = 177, .external_lex_state = 72}, - [4196] = {.lex_state = 177, .external_lex_state = 72}, - [4197] = {.lex_state = 177, .external_lex_state = 72}, - [4198] = {.lex_state = 177, .external_lex_state = 72}, - [4199] = {.lex_state = 177, .external_lex_state = 72}, - [4200] = {.lex_state = 177, .external_lex_state = 72}, - [4201] = {.lex_state = 177, .external_lex_state = 72}, - [4202] = {.lex_state = 177, .external_lex_state = 72}, - [4203] = {.lex_state = 177, .external_lex_state = 72}, - [4204] = {.lex_state = 177, .external_lex_state = 72}, - [4205] = {.lex_state = 177, .external_lex_state = 72}, - [4206] = {.lex_state = 177, .external_lex_state = 72}, - [4207] = {.lex_state = 177, .external_lex_state = 72}, - [4208] = {.lex_state = 177, .external_lex_state = 72}, - [4209] = {.lex_state = 177, .external_lex_state = 71}, - [4210] = {.lex_state = 47, .external_lex_state = 74}, - [4211] = {.lex_state = 177, .external_lex_state = 72}, - [4212] = {.lex_state = 177, .external_lex_state = 71}, - [4213] = {.lex_state = 177, .external_lex_state = 72}, - [4214] = {.lex_state = 177, .external_lex_state = 72}, - [4215] = {.lex_state = 47, .external_lex_state = 95}, - [4216] = {.lex_state = 47, .external_lex_state = 74}, - [4217] = {.lex_state = 50, .external_lex_state = 74}, - [4218] = {.lex_state = 50, .external_lex_state = 74}, - [4219] = {.lex_state = 50, .external_lex_state = 74}, - [4220] = {.lex_state = 50, .external_lex_state = 74}, - [4221] = {.lex_state = 177, .external_lex_state = 71}, - [4222] = {.lex_state = 177, .external_lex_state = 72}, - [4223] = {.lex_state = 177, .external_lex_state = 72}, - [4224] = {.lex_state = 177, .external_lex_state = 72}, - [4225] = {.lex_state = 177, .external_lex_state = 72}, - [4226] = {.lex_state = 177, .external_lex_state = 72}, - [4227] = {.lex_state = 177, .external_lex_state = 72}, - [4228] = {.lex_state = 177, .external_lex_state = 72}, - [4229] = {.lex_state = 177, .external_lex_state = 72}, - [4230] = {.lex_state = 47, .external_lex_state = 74}, - [4231] = {.lex_state = 47, .external_lex_state = 74}, - [4232] = {.lex_state = 177, .external_lex_state = 72}, - [4233] = {.lex_state = 177, .external_lex_state = 72}, - [4234] = {.lex_state = 177, .external_lex_state = 72}, - [4235] = {.lex_state = 177, .external_lex_state = 72}, - [4236] = {.lex_state = 177, .external_lex_state = 72}, - [4237] = {.lex_state = 177, .external_lex_state = 72}, - [4238] = {.lex_state = 177, .external_lex_state = 72}, - [4239] = {.lex_state = 177, .external_lex_state = 73}, - [4240] = {.lex_state = 177, .external_lex_state = 73}, - [4241] = {.lex_state = 177, .external_lex_state = 73}, - [4242] = {.lex_state = 177, .external_lex_state = 73}, - [4243] = {.lex_state = 177, .external_lex_state = 73}, - [4244] = {.lex_state = 177, .external_lex_state = 73}, - [4245] = {.lex_state = 50, .external_lex_state = 74}, - [4246] = {.lex_state = 177, .external_lex_state = 71}, - [4247] = {.lex_state = 177, .external_lex_state = 71}, - [4248] = {.lex_state = 177, .external_lex_state = 72}, - [4249] = {.lex_state = 177, .external_lex_state = 72}, - [4250] = {.lex_state = 177, .external_lex_state = 72}, - [4251] = {.lex_state = 177, .external_lex_state = 72}, - [4252] = {.lex_state = 177, .external_lex_state = 72}, - [4253] = {.lex_state = 177, .external_lex_state = 72}, - [4254] = {.lex_state = 177, .external_lex_state = 72}, - [4255] = {.lex_state = 177, .external_lex_state = 71}, - [4256] = {.lex_state = 177, .external_lex_state = 71}, - [4257] = {.lex_state = 181, .external_lex_state = 79}, - [4258] = {.lex_state = 177, .external_lex_state = 71}, - [4259] = {.lex_state = 177, .external_lex_state = 71}, - [4260] = {.lex_state = 177, .external_lex_state = 71}, - [4261] = {.lex_state = 177, .external_lex_state = 71}, - [4262] = {.lex_state = 177, .external_lex_state = 71}, - [4263] = {.lex_state = 177, .external_lex_state = 72}, - [4264] = {.lex_state = 177, .external_lex_state = 72}, - [4265] = {.lex_state = 177, .external_lex_state = 71}, - [4266] = {.lex_state = 177, .external_lex_state = 71}, - [4267] = {.lex_state = 177, .external_lex_state = 74}, - [4268] = {.lex_state = 47, .external_lex_state = 74}, - [4269] = {.lex_state = 177, .external_lex_state = 77}, - [4270] = {.lex_state = 177, .external_lex_state = 72}, - [4271] = {.lex_state = 49, .external_lex_state = 73}, - [4272] = {.lex_state = 25, .external_lex_state = 74}, - [4273] = {.lex_state = 25, .external_lex_state = 74}, - [4274] = {.lex_state = 49, .external_lex_state = 73}, - [4275] = {.lex_state = 49, .external_lex_state = 73}, - [4276] = {.lex_state = 177, .external_lex_state = 75}, - [4277] = {.lex_state = 177, .external_lex_state = 72}, - [4278] = {.lex_state = 177, .external_lex_state = 72}, - [4279] = {.lex_state = 177, .external_lex_state = 72}, - [4280] = {.lex_state = 177, .external_lex_state = 77}, - [4281] = {.lex_state = 47, .external_lex_state = 74}, - [4282] = {.lex_state = 49, .external_lex_state = 73}, - [4283] = {.lex_state = 47, .external_lex_state = 74}, - [4284] = {.lex_state = 47, .external_lex_state = 74}, - [4285] = {.lex_state = 177, .external_lex_state = 75}, - [4286] = {.lex_state = 185, .external_lex_state = 96}, - [4287] = {.lex_state = 183, .external_lex_state = 75}, - [4288] = {.lex_state = 47, .external_lex_state = 74}, - [4289] = {.lex_state = 177, .external_lex_state = 77}, - [4290] = {.lex_state = 185, .external_lex_state = 96}, - [4291] = {.lex_state = 185, .external_lex_state = 96}, - [4292] = {.lex_state = 47, .external_lex_state = 74}, - [4293] = {.lex_state = 177, .external_lex_state = 72}, - [4294] = {.lex_state = 177, .external_lex_state = 72}, - [4295] = {.lex_state = 177, .external_lex_state = 72}, - [4296] = {.lex_state = 181, .external_lex_state = 77}, - [4297] = {.lex_state = 47, .external_lex_state = 74}, - [4298] = {.lex_state = 47, .external_lex_state = 74}, - [4299] = {.lex_state = 47, .external_lex_state = 74}, - [4300] = {.lex_state = 47, .external_lex_state = 74}, - [4301] = {.lex_state = 47, .external_lex_state = 74}, - [4302] = {.lex_state = 47, .external_lex_state = 74}, - [4303] = {.lex_state = 177, .external_lex_state = 77}, - [4304] = {.lex_state = 177, .external_lex_state = 72}, - [4305] = {.lex_state = 183, .external_lex_state = 97}, - [4306] = {.lex_state = 47, .external_lex_state = 74}, + [3249] = {.lex_state = 178, .external_lex_state = 66}, + [3250] = {.lex_state = 47, .external_lex_state = 71}, + [3251] = {.lex_state = 178, .external_lex_state = 68}, + [3252] = {.lex_state = 178, .external_lex_state = 68}, + [3253] = {.lex_state = 178, .external_lex_state = 68}, + [3254] = {.lex_state = 184, .external_lex_state = 68}, + [3255] = {.lex_state = 178, .external_lex_state = 66}, + [3256] = {.lex_state = 47, .external_lex_state = 71}, + [3257] = {.lex_state = 178, .external_lex_state = 66}, + [3258] = {.lex_state = 47, .external_lex_state = 71}, + [3259] = {.lex_state = 178, .external_lex_state = 66}, + [3260] = {.lex_state = 178, .external_lex_state = 66}, + [3261] = {.lex_state = 178, .external_lex_state = 68}, + [3262] = {.lex_state = 178, .external_lex_state = 68}, + [3263] = {.lex_state = 178, .external_lex_state = 68}, + [3264] = {.lex_state = 178, .external_lex_state = 68}, + [3265] = {.lex_state = 178, .external_lex_state = 68}, + [3266] = {.lex_state = 178, .external_lex_state = 68}, + [3267] = {.lex_state = 178, .external_lex_state = 68}, + [3268] = {.lex_state = 47, .external_lex_state = 71}, + [3269] = {.lex_state = 184, .external_lex_state = 86}, + [3270] = {.lex_state = 178, .external_lex_state = 84}, + [3271] = {.lex_state = 47, .external_lex_state = 74}, + [3272] = {.lex_state = 47, .external_lex_state = 74}, + [3273] = {.lex_state = 178, .external_lex_state = 73}, + [3274] = {.lex_state = 47, .external_lex_state = 71}, + [3275] = {.lex_state = 178, .external_lex_state = 68}, + [3276] = {.lex_state = 178, .external_lex_state = 66}, + [3277] = {.lex_state = 178, .external_lex_state = 68}, + [3278] = {.lex_state = 178, .external_lex_state = 68}, + [3279] = {.lex_state = 178, .external_lex_state = 66}, + [3280] = {.lex_state = 178, .external_lex_state = 68}, + [3281] = {.lex_state = 178, .external_lex_state = 66}, + [3282] = {.lex_state = 178, .external_lex_state = 66}, + [3283] = {.lex_state = 47, .external_lex_state = 74}, + [3284] = {.lex_state = 47, .external_lex_state = 74}, + [3285] = {.lex_state = 178, .external_lex_state = 66}, + [3286] = {.lex_state = 178, .external_lex_state = 68}, + [3287] = {.lex_state = 178, .external_lex_state = 68}, + [3288] = {.lex_state = 47, .external_lex_state = 71}, + [3289] = {.lex_state = 178, .external_lex_state = 70}, + [3290] = {.lex_state = 178, .external_lex_state = 68}, + [3291] = {.lex_state = 178, .external_lex_state = 86}, + [3292] = {.lex_state = 178, .external_lex_state = 68}, + [3293] = {.lex_state = 178, .external_lex_state = 68}, + [3294] = {.lex_state = 178, .external_lex_state = 87}, + [3295] = {.lex_state = 178, .external_lex_state = 68}, + [3296] = {.lex_state = 178, .external_lex_state = 66}, + [3297] = {.lex_state = 178, .external_lex_state = 68}, + [3298] = {.lex_state = 178, .external_lex_state = 68}, + [3299] = {.lex_state = 178, .external_lex_state = 68}, + [3300] = {.lex_state = 47, .external_lex_state = 74}, + [3301] = {.lex_state = 178, .external_lex_state = 68}, + [3302] = {.lex_state = 178, .external_lex_state = 68}, + [3303] = {.lex_state = 178, .external_lex_state = 88}, + [3304] = {.lex_state = 178, .external_lex_state = 87}, + [3305] = {.lex_state = 178, .external_lex_state = 66}, + [3306] = {.lex_state = 47, .external_lex_state = 71}, + [3307] = {.lex_state = 47, .external_lex_state = 74}, + [3308] = {.lex_state = 178, .external_lex_state = 66}, + [3309] = {.lex_state = 47, .external_lex_state = 74}, + [3310] = {.lex_state = 178, .external_lex_state = 66}, + [3311] = {.lex_state = 47, .external_lex_state = 74}, + [3312] = {.lex_state = 178, .external_lex_state = 68}, + [3313] = {.lex_state = 178, .external_lex_state = 87}, + [3314] = {.lex_state = 178, .external_lex_state = 68}, + [3315] = {.lex_state = 47, .external_lex_state = 74}, + [3316] = {.lex_state = 178, .external_lex_state = 68}, + [3317] = {.lex_state = 178, .external_lex_state = 68}, + [3318] = {.lex_state = 178, .external_lex_state = 68}, + [3319] = {.lex_state = 178, .external_lex_state = 68}, + [3320] = {.lex_state = 47, .external_lex_state = 74}, + [3321] = {.lex_state = 178, .external_lex_state = 68}, + [3322] = {.lex_state = 178, .external_lex_state = 86}, + [3323] = {.lex_state = 178, .external_lex_state = 66}, + [3324] = {.lex_state = 178, .external_lex_state = 88}, + [3325] = {.lex_state = 178, .external_lex_state = 89}, + [3326] = {.lex_state = 47, .external_lex_state = 74}, + [3327] = {.lex_state = 178, .external_lex_state = 68}, + [3328] = {.lex_state = 178, .external_lex_state = 66}, + [3329] = {.lex_state = 178, .external_lex_state = 66}, + [3330] = {.lex_state = 178, .external_lex_state = 66}, + [3331] = {.lex_state = 47, .external_lex_state = 71}, + [3332] = {.lex_state = 178, .external_lex_state = 76}, + [3333] = {.lex_state = 178, .external_lex_state = 68}, + [3334] = {.lex_state = 178, .external_lex_state = 68}, + [3335] = {.lex_state = 178, .external_lex_state = 68}, + [3336] = {.lex_state = 178, .external_lex_state = 68}, + [3337] = {.lex_state = 178, .external_lex_state = 68}, + [3338] = {.lex_state = 178, .external_lex_state = 68}, + [3339] = {.lex_state = 178, .external_lex_state = 68}, + [3340] = {.lex_state = 178, .external_lex_state = 68}, + [3341] = {.lex_state = 178, .external_lex_state = 68}, + [3342] = {.lex_state = 184, .external_lex_state = 88}, + [3343] = {.lex_state = 178, .external_lex_state = 68}, + [3344] = {.lex_state = 178, .external_lex_state = 68}, + [3345] = {.lex_state = 178, .external_lex_state = 68}, + [3346] = {.lex_state = 178, .external_lex_state = 68}, + [3347] = {.lex_state = 178, .external_lex_state = 68}, + [3348] = {.lex_state = 178, .external_lex_state = 73}, + [3349] = {.lex_state = 178, .external_lex_state = 68}, + [3350] = {.lex_state = 182, .external_lex_state = 77}, + [3351] = {.lex_state = 178, .external_lex_state = 68}, + [3352] = {.lex_state = 178, .external_lex_state = 68}, + [3353] = {.lex_state = 178, .external_lex_state = 68}, + [3354] = {.lex_state = 178, .external_lex_state = 68}, + [3355] = {.lex_state = 178, .external_lex_state = 68}, + [3356] = {.lex_state = 47, .external_lex_state = 90}, + [3357] = {.lex_state = 178, .external_lex_state = 68}, + [3358] = {.lex_state = 178, .external_lex_state = 68}, + [3359] = {.lex_state = 178, .external_lex_state = 68}, + [3360] = {.lex_state = 51, .external_lex_state = 71}, + [3361] = {.lex_state = 178, .external_lex_state = 68}, + [3362] = {.lex_state = 178, .external_lex_state = 68}, + [3363] = {.lex_state = 178, .external_lex_state = 68}, + [3364] = {.lex_state = 51, .external_lex_state = 71}, + [3365] = {.lex_state = 178, .external_lex_state = 76}, + [3366] = {.lex_state = 178, .external_lex_state = 76}, + [3367] = {.lex_state = 178, .external_lex_state = 68}, + [3368] = {.lex_state = 178, .external_lex_state = 76}, + [3369] = {.lex_state = 178, .external_lex_state = 76}, + [3370] = {.lex_state = 178, .external_lex_state = 68}, + [3371] = {.lex_state = 178, .external_lex_state = 68}, + [3372] = {.lex_state = 178, .external_lex_state = 68}, + [3373] = {.lex_state = 178, .external_lex_state = 76}, + [3374] = {.lex_state = 47, .external_lex_state = 86}, + [3375] = {.lex_state = 178, .external_lex_state = 68}, + [3376] = {.lex_state = 182, .external_lex_state = 77}, + [3377] = {.lex_state = 178, .external_lex_state = 68}, + [3378] = {.lex_state = 178, .external_lex_state = 73}, + [3379] = {.lex_state = 47, .external_lex_state = 71}, + [3380] = {.lex_state = 47, .external_lex_state = 71}, + [3381] = {.lex_state = 47, .external_lex_state = 71}, + [3382] = {.lex_state = 178, .external_lex_state = 68}, + [3383] = {.lex_state = 178, .external_lex_state = 68}, + [3384] = {.lex_state = 178, .external_lex_state = 68}, + [3385] = {.lex_state = 178, .external_lex_state = 68}, + [3386] = {.lex_state = 178, .external_lex_state = 68}, + [3387] = {.lex_state = 178, .external_lex_state = 68}, + [3388] = {.lex_state = 178, .external_lex_state = 68}, + [3389] = {.lex_state = 178, .external_lex_state = 68}, + [3390] = {.lex_state = 178, .external_lex_state = 68}, + [3391] = {.lex_state = 178, .external_lex_state = 68}, + [3392] = {.lex_state = 178, .external_lex_state = 68}, + [3393] = {.lex_state = 178, .external_lex_state = 68}, + [3394] = {.lex_state = 178, .external_lex_state = 68}, + [3395] = {.lex_state = 178, .external_lex_state = 68}, + [3396] = {.lex_state = 178, .external_lex_state = 68}, + [3397] = {.lex_state = 178, .external_lex_state = 68}, + [3398] = {.lex_state = 178, .external_lex_state = 68}, + [3399] = {.lex_state = 178, .external_lex_state = 68}, + [3400] = {.lex_state = 178, .external_lex_state = 68}, + [3401] = {.lex_state = 178, .external_lex_state = 68}, + [3402] = {.lex_state = 178, .external_lex_state = 68}, + [3403] = {.lex_state = 178, .external_lex_state = 73}, + [3404] = {.lex_state = 178, .external_lex_state = 70}, + [3405] = {.lex_state = 178, .external_lex_state = 68}, + [3406] = {.lex_state = 47, .external_lex_state = 71}, + [3407] = {.lex_state = 178, .external_lex_state = 68}, + [3408] = {.lex_state = 178, .external_lex_state = 68}, + [3409] = {.lex_state = 51, .external_lex_state = 71}, + [3410] = {.lex_state = 178, .external_lex_state = 76}, + [3411] = {.lex_state = 47, .external_lex_state = 71}, + [3412] = {.lex_state = 47, .external_lex_state = 90}, + [3413] = {.lex_state = 184, .external_lex_state = 88}, + [3414] = {.lex_state = 47, .external_lex_state = 71}, + [3415] = {.lex_state = 178, .external_lex_state = 68}, + [3416] = {.lex_state = 47, .external_lex_state = 71}, + [3417] = {.lex_state = 47, .external_lex_state = 71}, + [3418] = {.lex_state = 182, .external_lex_state = 74}, + [3419] = {.lex_state = 47, .external_lex_state = 71}, + [3420] = {.lex_state = 178, .external_lex_state = 68}, + [3421] = {.lex_state = 178, .external_lex_state = 76}, + [3422] = {.lex_state = 51, .external_lex_state = 71}, + [3423] = {.lex_state = 47, .external_lex_state = 71}, + [3424] = {.lex_state = 178, .external_lex_state = 68}, + [3425] = {.lex_state = 184, .external_lex_state = 91}, + [3426] = {.lex_state = 178, .external_lex_state = 68}, + [3427] = {.lex_state = 47, .external_lex_state = 90}, + [3428] = {.lex_state = 178, .external_lex_state = 68}, + [3429] = {.lex_state = 178, .external_lex_state = 68}, + [3430] = {.lex_state = 47, .external_lex_state = 71}, + [3431] = {.lex_state = 178, .external_lex_state = 68}, + [3432] = {.lex_state = 178, .external_lex_state = 68}, + [3433] = {.lex_state = 47, .external_lex_state = 71}, + [3434] = {.lex_state = 178, .external_lex_state = 68}, + [3435] = {.lex_state = 47, .external_lex_state = 71}, + [3436] = {.lex_state = 178, .external_lex_state = 68}, + [3437] = {.lex_state = 178, .external_lex_state = 76}, + [3438] = {.lex_state = 178, .external_lex_state = 68}, + [3439] = {.lex_state = 47, .external_lex_state = 71}, + [3440] = {.lex_state = 178, .external_lex_state = 73}, + [3441] = {.lex_state = 178, .external_lex_state = 73}, + [3442] = {.lex_state = 178, .external_lex_state = 73}, + [3443] = {.lex_state = 178, .external_lex_state = 73}, + [3444] = {.lex_state = 178, .external_lex_state = 68}, + [3445] = {.lex_state = 178, .external_lex_state = 68}, + [3446] = {.lex_state = 178, .external_lex_state = 76}, + [3447] = {.lex_state = 178, .external_lex_state = 68}, + [3448] = {.lex_state = 178, .external_lex_state = 68}, + [3449] = {.lex_state = 178, .external_lex_state = 73}, + [3450] = {.lex_state = 178, .external_lex_state = 76}, + [3451] = {.lex_state = 178, .external_lex_state = 68}, + [3452] = {.lex_state = 178, .external_lex_state = 76}, + [3453] = {.lex_state = 178, .external_lex_state = 68}, + [3454] = {.lex_state = 47, .external_lex_state = 71}, + [3455] = {.lex_state = 178, .external_lex_state = 68}, + [3456] = {.lex_state = 47, .external_lex_state = 90}, + [3457] = {.lex_state = 178, .external_lex_state = 68}, + [3458] = {.lex_state = 178, .external_lex_state = 68}, + [3459] = {.lex_state = 178, .external_lex_state = 68}, + [3460] = {.lex_state = 47, .external_lex_state = 71}, + [3461] = {.lex_state = 178, .external_lex_state = 68}, + [3462] = {.lex_state = 47, .external_lex_state = 71}, + [3463] = {.lex_state = 178, .external_lex_state = 68}, + [3464] = {.lex_state = 51, .external_lex_state = 71}, + [3465] = {.lex_state = 178, .external_lex_state = 68}, + [3466] = {.lex_state = 184, .external_lex_state = 71}, + [3467] = {.lex_state = 178, .external_lex_state = 68}, + [3468] = {.lex_state = 178, .external_lex_state = 68}, + [3469] = {.lex_state = 47, .external_lex_state = 71}, + [3470] = {.lex_state = 47, .external_lex_state = 71}, + [3471] = {.lex_state = 178, .external_lex_state = 68}, + [3472] = {.lex_state = 178, .external_lex_state = 68}, + [3473] = {.lex_state = 178, .external_lex_state = 68}, + [3474] = {.lex_state = 178, .external_lex_state = 68}, + [3475] = {.lex_state = 178, .external_lex_state = 68}, + [3476] = {.lex_state = 184, .external_lex_state = 87}, + [3477] = {.lex_state = 178, .external_lex_state = 68}, + [3478] = {.lex_state = 178, .external_lex_state = 68}, + [3479] = {.lex_state = 178, .external_lex_state = 68}, + [3480] = {.lex_state = 47, .external_lex_state = 71}, + [3481] = {.lex_state = 178, .external_lex_state = 68}, + [3482] = {.lex_state = 178, .external_lex_state = 76}, + [3483] = {.lex_state = 47, .external_lex_state = 74}, + [3484] = {.lex_state = 47, .external_lex_state = 71}, + [3485] = {.lex_state = 178, .external_lex_state = 68}, + [3486] = {.lex_state = 184, .external_lex_state = 71}, + [3487] = {.lex_state = 47, .external_lex_state = 71}, + [3488] = {.lex_state = 178, .external_lex_state = 76}, + [3489] = {.lex_state = 178, .external_lex_state = 68}, + [3490] = {.lex_state = 178, .external_lex_state = 68}, + [3491] = {.lex_state = 47, .external_lex_state = 71}, + [3492] = {.lex_state = 178, .external_lex_state = 68}, + [3493] = {.lex_state = 47, .external_lex_state = 71}, + [3494] = {.lex_state = 178, .external_lex_state = 68}, + [3495] = {.lex_state = 178, .external_lex_state = 68}, + [3496] = {.lex_state = 178, .external_lex_state = 68}, + [3497] = {.lex_state = 178, .external_lex_state = 68}, + [3498] = {.lex_state = 178, .external_lex_state = 68}, + [3499] = {.lex_state = 178, .external_lex_state = 76}, + [3500] = {.lex_state = 184, .external_lex_state = 87}, + [3501] = {.lex_state = 178, .external_lex_state = 68}, + [3502] = {.lex_state = 178, .external_lex_state = 68}, + [3503] = {.lex_state = 178, .external_lex_state = 71}, + [3504] = {.lex_state = 178, .external_lex_state = 68}, + [3505] = {.lex_state = 178, .external_lex_state = 68}, + [3506] = {.lex_state = 178, .external_lex_state = 73}, + [3507] = {.lex_state = 178, .external_lex_state = 68}, + [3508] = {.lex_state = 182, .external_lex_state = 77}, + [3509] = {.lex_state = 178, .external_lex_state = 68}, + [3510] = {.lex_state = 178, .external_lex_state = 76}, + [3511] = {.lex_state = 178, .external_lex_state = 76}, + [3512] = {.lex_state = 178, .external_lex_state = 68}, + [3513] = {.lex_state = 178, .external_lex_state = 76}, + [3514] = {.lex_state = 178, .external_lex_state = 68}, + [3515] = {.lex_state = 178, .external_lex_state = 76}, + [3516] = {.lex_state = 47, .external_lex_state = 71}, + [3517] = {.lex_state = 178, .external_lex_state = 68}, + [3518] = {.lex_state = 178, .external_lex_state = 68}, + [3519] = {.lex_state = 178, .external_lex_state = 76}, + [3520] = {.lex_state = 178, .external_lex_state = 76}, + [3521] = {.lex_state = 178, .external_lex_state = 68}, + [3522] = {.lex_state = 178, .external_lex_state = 76}, + [3523] = {.lex_state = 178, .external_lex_state = 68}, + [3524] = {.lex_state = 178, .external_lex_state = 76}, + [3525] = {.lex_state = 178, .external_lex_state = 68}, + [3526] = {.lex_state = 178, .external_lex_state = 68}, + [3527] = {.lex_state = 178, .external_lex_state = 68}, + [3528] = {.lex_state = 178, .external_lex_state = 68}, + [3529] = {.lex_state = 178, .external_lex_state = 68}, + [3530] = {.lex_state = 47, .external_lex_state = 71}, + [3531] = {.lex_state = 178, .external_lex_state = 68}, + [3532] = {.lex_state = 178, .external_lex_state = 68}, + [3533] = {.lex_state = 178, .external_lex_state = 68}, + [3534] = {.lex_state = 178, .external_lex_state = 68}, + [3535] = {.lex_state = 178, .external_lex_state = 68}, + [3536] = {.lex_state = 178, .external_lex_state = 68}, + [3537] = {.lex_state = 47, .external_lex_state = 71}, + [3538] = {.lex_state = 182, .external_lex_state = 76}, + [3539] = {.lex_state = 47, .external_lex_state = 71}, + [3540] = {.lex_state = 47, .external_lex_state = 71}, + [3541] = {.lex_state = 184, .external_lex_state = 92}, + [3542] = {.lex_state = 178, .external_lex_state = 68}, + [3543] = {.lex_state = 178, .external_lex_state = 68}, + [3544] = {.lex_state = 182, .external_lex_state = 77}, + [3545] = {.lex_state = 182, .external_lex_state = 77}, + [3546] = {.lex_state = 178, .external_lex_state = 68}, + [3547] = {.lex_state = 47, .external_lex_state = 71}, + [3548] = {.lex_state = 178, .external_lex_state = 68}, + [3549] = {.lex_state = 178, .external_lex_state = 68}, + [3550] = {.lex_state = 51, .external_lex_state = 71}, + [3551] = {.lex_state = 178, .external_lex_state = 73}, + [3552] = {.lex_state = 47, .external_lex_state = 71}, + [3553] = {.lex_state = 47, .external_lex_state = 71}, + [3554] = {.lex_state = 178, .external_lex_state = 68}, + [3555] = {.lex_state = 178, .external_lex_state = 68}, + [3556] = {.lex_state = 47, .external_lex_state = 71}, + [3557] = {.lex_state = 178, .external_lex_state = 68}, + [3558] = {.lex_state = 178, .external_lex_state = 68}, + [3559] = {.lex_state = 47, .external_lex_state = 71}, + [3560] = {.lex_state = 47, .external_lex_state = 71}, + [3561] = {.lex_state = 47, .external_lex_state = 71}, + [3562] = {.lex_state = 178, .external_lex_state = 68}, + [3563] = {.lex_state = 178, .external_lex_state = 68}, + [3564] = {.lex_state = 178, .external_lex_state = 73}, + [3565] = {.lex_state = 178, .external_lex_state = 73}, + [3566] = {.lex_state = 178, .external_lex_state = 73}, + [3567] = {.lex_state = 178, .external_lex_state = 73}, + [3568] = {.lex_state = 47, .external_lex_state = 71}, + [3569] = {.lex_state = 178, .external_lex_state = 68}, + [3570] = {.lex_state = 47, .external_lex_state = 71}, + [3571] = {.lex_state = 178, .external_lex_state = 68}, + [3572] = {.lex_state = 178, .external_lex_state = 70}, + [3573] = {.lex_state = 178, .external_lex_state = 68}, + [3574] = {.lex_state = 178, .external_lex_state = 76}, + [3575] = {.lex_state = 178, .external_lex_state = 76}, + [3576] = {.lex_state = 178, .external_lex_state = 68}, + [3577] = {.lex_state = 47, .external_lex_state = 71}, + [3578] = {.lex_state = 178, .external_lex_state = 68}, + [3579] = {.lex_state = 178, .external_lex_state = 68}, + [3580] = {.lex_state = 178, .external_lex_state = 68}, + [3581] = {.lex_state = 47, .external_lex_state = 71}, + [3582] = {.lex_state = 178, .external_lex_state = 68}, + [3583] = {.lex_state = 178, .external_lex_state = 68}, + [3584] = {.lex_state = 178, .external_lex_state = 68}, + [3585] = {.lex_state = 178, .external_lex_state = 68}, + [3586] = {.lex_state = 178, .external_lex_state = 68}, + [3587] = {.lex_state = 178, .external_lex_state = 76}, + [3588] = {.lex_state = 47, .external_lex_state = 71}, + [3589] = {.lex_state = 47, .external_lex_state = 71}, + [3590] = {.lex_state = 47, .external_lex_state = 71}, + [3591] = {.lex_state = 178, .external_lex_state = 93}, + [3592] = {.lex_state = 178, .external_lex_state = 93}, + [3593] = {.lex_state = 178, .external_lex_state = 73}, + [3594] = {.lex_state = 178, .external_lex_state = 73}, + [3595] = {.lex_state = 47, .external_lex_state = 71}, + [3596] = {.lex_state = 47, .external_lex_state = 71}, + [3597] = {.lex_state = 178, .external_lex_state = 70}, + [3598] = {.lex_state = 178, .external_lex_state = 73}, + [3599] = {.lex_state = 178, .external_lex_state = 71}, + [3600] = {.lex_state = 178, .external_lex_state = 71}, + [3601] = {.lex_state = 182, .external_lex_state = 77}, + [3602] = {.lex_state = 178, .external_lex_state = 71}, + [3603] = {.lex_state = 178, .external_lex_state = 71}, + [3604] = {.lex_state = 178, .external_lex_state = 71}, + [3605] = {.lex_state = 178, .external_lex_state = 71}, + [3606] = {.lex_state = 178, .external_lex_state = 71}, + [3607] = {.lex_state = 178, .external_lex_state = 71}, + [3608] = {.lex_state = 178, .external_lex_state = 91}, + [3609] = {.lex_state = 178, .external_lex_state = 73}, + [3610] = {.lex_state = 178, .external_lex_state = 73}, + [3611] = {.lex_state = 178, .external_lex_state = 73}, + [3612] = {.lex_state = 178, .external_lex_state = 70}, + [3613] = {.lex_state = 178, .external_lex_state = 73}, + [3614] = {.lex_state = 178, .external_lex_state = 73}, + [3615] = {.lex_state = 178, .external_lex_state = 70}, + [3616] = {.lex_state = 178, .external_lex_state = 73}, + [3617] = {.lex_state = 178, .external_lex_state = 73}, + [3618] = {.lex_state = 178, .external_lex_state = 73}, + [3619] = {.lex_state = 178, .external_lex_state = 73}, + [3620] = {.lex_state = 47, .external_lex_state = 71}, + [3621] = {.lex_state = 178, .external_lex_state = 73}, + [3622] = {.lex_state = 178, .external_lex_state = 73}, + [3623] = {.lex_state = 178, .external_lex_state = 73}, + [3624] = {.lex_state = 47, .external_lex_state = 71}, + [3625] = {.lex_state = 47, .external_lex_state = 71}, + [3626] = {.lex_state = 47, .external_lex_state = 71}, + [3627] = {.lex_state = 47, .external_lex_state = 71}, + [3628] = {.lex_state = 47, .external_lex_state = 71}, + [3629] = {.lex_state = 47, .external_lex_state = 71}, + [3630] = {.lex_state = 47, .external_lex_state = 71}, + [3631] = {.lex_state = 47, .external_lex_state = 71}, + [3632] = {.lex_state = 47, .external_lex_state = 71}, + [3633] = {.lex_state = 47, .external_lex_state = 71}, + [3634] = {.lex_state = 178, .external_lex_state = 73}, + [3635] = {.lex_state = 184, .external_lex_state = 91}, + [3636] = {.lex_state = 178, .external_lex_state = 73}, + [3637] = {.lex_state = 178, .external_lex_state = 71}, + [3638] = {.lex_state = 178, .external_lex_state = 71}, + [3639] = {.lex_state = 178, .external_lex_state = 71}, + [3640] = {.lex_state = 178, .external_lex_state = 73}, + [3641] = {.lex_state = 178, .external_lex_state = 91}, + [3642] = {.lex_state = 178, .external_lex_state = 73}, + [3643] = {.lex_state = 184, .external_lex_state = 70}, + [3644] = {.lex_state = 47, .external_lex_state = 71}, + [3645] = {.lex_state = 47, .external_lex_state = 71}, + [3646] = {.lex_state = 47, .external_lex_state = 71}, + [3647] = {.lex_state = 47, .external_lex_state = 71}, + [3648] = {.lex_state = 47, .external_lex_state = 71}, + [3649] = {.lex_state = 178, .external_lex_state = 73}, + [3650] = {.lex_state = 47, .external_lex_state = 71}, + [3651] = {.lex_state = 47, .external_lex_state = 71}, + [3652] = {.lex_state = 47, .external_lex_state = 71}, + [3653] = {.lex_state = 178, .external_lex_state = 71}, + [3654] = {.lex_state = 178, .external_lex_state = 71}, + [3655] = {.lex_state = 178, .external_lex_state = 73}, + [3656] = {.lex_state = 178, .external_lex_state = 70}, + [3657] = {.lex_state = 47, .external_lex_state = 71}, + [3658] = {.lex_state = 178, .external_lex_state = 73}, + [3659] = {.lex_state = 47, .external_lex_state = 71}, + [3660] = {.lex_state = 47, .external_lex_state = 71}, + [3661] = {.lex_state = 47, .external_lex_state = 71}, + [3662] = {.lex_state = 178, .external_lex_state = 73}, + [3663] = {.lex_state = 178, .external_lex_state = 73}, + [3664] = {.lex_state = 47, .external_lex_state = 71}, + [3665] = {.lex_state = 47, .external_lex_state = 71}, + [3666] = {.lex_state = 178, .external_lex_state = 73}, + [3667] = {.lex_state = 178, .external_lex_state = 73}, + [3668] = {.lex_state = 178, .external_lex_state = 73}, + [3669] = {.lex_state = 178, .external_lex_state = 73}, + [3670] = {.lex_state = 47, .external_lex_state = 71}, + [3671] = {.lex_state = 47, .external_lex_state = 71}, + [3672] = {.lex_state = 47, .external_lex_state = 71}, + [3673] = {.lex_state = 184, .external_lex_state = 73}, + [3674] = {.lex_state = 184, .external_lex_state = 73}, + [3675] = {.lex_state = 47, .external_lex_state = 71}, + [3676] = {.lex_state = 47, .external_lex_state = 71}, + [3677] = {.lex_state = 47, .external_lex_state = 71}, + [3678] = {.lex_state = 47, .external_lex_state = 71}, + [3679] = {.lex_state = 47, .external_lex_state = 71}, + [3680] = {.lex_state = 47, .external_lex_state = 71}, + [3681] = {.lex_state = 47, .external_lex_state = 71}, + [3682] = {.lex_state = 47, .external_lex_state = 71}, + [3683] = {.lex_state = 47, .external_lex_state = 71}, + [3684] = {.lex_state = 178, .external_lex_state = 70}, + [3685] = {.lex_state = 47, .external_lex_state = 71}, + [3686] = {.lex_state = 47, .external_lex_state = 71}, + [3687] = {.lex_state = 47, .external_lex_state = 71}, + [3688] = {.lex_state = 47, .external_lex_state = 71}, + [3689] = {.lex_state = 47, .external_lex_state = 71}, + [3690] = {.lex_state = 47, .external_lex_state = 71}, + [3691] = {.lex_state = 184, .external_lex_state = 73}, + [3692] = {.lex_state = 47, .external_lex_state = 71}, + [3693] = {.lex_state = 47, .external_lex_state = 71}, + [3694] = {.lex_state = 47, .external_lex_state = 71}, + [3695] = {.lex_state = 178, .external_lex_state = 70}, + [3696] = {.lex_state = 178, .external_lex_state = 70}, + [3697] = {.lex_state = 178, .external_lex_state = 70}, + [3698] = {.lex_state = 47, .external_lex_state = 71}, + [3699] = {.lex_state = 47, .external_lex_state = 71}, + [3700] = {.lex_state = 178, .external_lex_state = 70}, + [3701] = {.lex_state = 178, .external_lex_state = 70}, + [3702] = {.lex_state = 178, .external_lex_state = 70}, + [3703] = {.lex_state = 178, .external_lex_state = 71}, + [3704] = {.lex_state = 47, .external_lex_state = 71}, + [3705] = {.lex_state = 47, .external_lex_state = 71}, + [3706] = {.lex_state = 47, .external_lex_state = 71}, + [3707] = {.lex_state = 47, .external_lex_state = 71}, + [3708] = {.lex_state = 47, .external_lex_state = 71}, + [3709] = {.lex_state = 47, .external_lex_state = 71}, + [3710] = {.lex_state = 47, .external_lex_state = 71}, + [3711] = {.lex_state = 47, .external_lex_state = 71}, + [3712] = {.lex_state = 47, .external_lex_state = 71}, + [3713] = {.lex_state = 47, .external_lex_state = 71}, + [3714] = {.lex_state = 47, .external_lex_state = 71}, + [3715] = {.lex_state = 47, .external_lex_state = 71}, + [3716] = {.lex_state = 47, .external_lex_state = 71}, + [3717] = {.lex_state = 47, .external_lex_state = 71}, + [3718] = {.lex_state = 47, .external_lex_state = 71}, + [3719] = {.lex_state = 47, .external_lex_state = 71}, + [3720] = {.lex_state = 47, .external_lex_state = 71}, + [3721] = {.lex_state = 47, .external_lex_state = 71}, + [3722] = {.lex_state = 47, .external_lex_state = 71}, + [3723] = {.lex_state = 178, .external_lex_state = 88}, + [3724] = {.lex_state = 47, .external_lex_state = 71}, + [3725] = {.lex_state = 47, .external_lex_state = 71}, + [3726] = {.lex_state = 47, .external_lex_state = 71}, + [3727] = {.lex_state = 47, .external_lex_state = 71}, + [3728] = {.lex_state = 178, .external_lex_state = 73}, + [3729] = {.lex_state = 178, .external_lex_state = 70}, + [3730] = {.lex_state = 47, .external_lex_state = 71}, + [3731] = {.lex_state = 178, .external_lex_state = 73}, + [3732] = {.lex_state = 47, .external_lex_state = 71}, + [3733] = {.lex_state = 47, .external_lex_state = 71}, + [3734] = {.lex_state = 184, .external_lex_state = 71}, + [3735] = {.lex_state = 47, .external_lex_state = 71}, + [3736] = {.lex_state = 47, .external_lex_state = 71}, + [3737] = {.lex_state = 47, .external_lex_state = 71}, + [3738] = {.lex_state = 47, .external_lex_state = 71}, + [3739] = {.lex_state = 47, .external_lex_state = 71}, + [3740] = {.lex_state = 47, .external_lex_state = 71}, + [3741] = {.lex_state = 178, .external_lex_state = 73}, + [3742] = {.lex_state = 178, .external_lex_state = 73}, + [3743] = {.lex_state = 178, .external_lex_state = 73}, + [3744] = {.lex_state = 178, .external_lex_state = 73}, + [3745] = {.lex_state = 178, .external_lex_state = 73}, + [3746] = {.lex_state = 47, .external_lex_state = 71}, + [3747] = {.lex_state = 47, .external_lex_state = 71}, + [3748] = {.lex_state = 47, .external_lex_state = 71}, + [3749] = {.lex_state = 47, .external_lex_state = 71}, + [3750] = {.lex_state = 47, .external_lex_state = 71}, + [3751] = {.lex_state = 47, .external_lex_state = 71}, + [3752] = {.lex_state = 178, .external_lex_state = 73}, + [3753] = {.lex_state = 178, .external_lex_state = 73}, + [3754] = {.lex_state = 178, .external_lex_state = 73}, + [3755] = {.lex_state = 178, .external_lex_state = 73}, + [3756] = {.lex_state = 178, .external_lex_state = 73}, + [3757] = {.lex_state = 178, .external_lex_state = 73}, + [3758] = {.lex_state = 178, .external_lex_state = 73}, + [3759] = {.lex_state = 47, .external_lex_state = 71}, + [3760] = {.lex_state = 178, .external_lex_state = 73}, + [3761] = {.lex_state = 178, .external_lex_state = 73}, + [3762] = {.lex_state = 178, .external_lex_state = 73}, + [3763] = {.lex_state = 178, .external_lex_state = 73}, + [3764] = {.lex_state = 178, .external_lex_state = 70}, + [3765] = {.lex_state = 178, .external_lex_state = 70}, + [3766] = {.lex_state = 178, .external_lex_state = 70}, + [3767] = {.lex_state = 178, .external_lex_state = 94}, + [3768] = {.lex_state = 178, .external_lex_state = 73}, + [3769] = {.lex_state = 178, .external_lex_state = 73}, + [3770] = {.lex_state = 178, .external_lex_state = 73}, + [3771] = {.lex_state = 184, .external_lex_state = 91}, + [3772] = {.lex_state = 47, .external_lex_state = 74}, + [3773] = {.lex_state = 178, .external_lex_state = 70}, + [3774] = {.lex_state = 178, .external_lex_state = 70}, + [3775] = {.lex_state = 178, .external_lex_state = 73}, + [3776] = {.lex_state = 47, .external_lex_state = 71}, + [3777] = {.lex_state = 178, .external_lex_state = 73}, + [3778] = {.lex_state = 178, .external_lex_state = 94}, + [3779] = {.lex_state = 178, .external_lex_state = 70}, + [3780] = {.lex_state = 178, .external_lex_state = 70}, + [3781] = {.lex_state = 178, .external_lex_state = 70}, + [3782] = {.lex_state = 178, .external_lex_state = 70}, + [3783] = {.lex_state = 178, .external_lex_state = 70}, + [3784] = {.lex_state = 178, .external_lex_state = 70}, + [3785] = {.lex_state = 178, .external_lex_state = 70}, + [3786] = {.lex_state = 178, .external_lex_state = 70}, + [3787] = {.lex_state = 178, .external_lex_state = 70}, + [3788] = {.lex_state = 178, .external_lex_state = 70}, + [3789] = {.lex_state = 178, .external_lex_state = 70}, + [3790] = {.lex_state = 178, .external_lex_state = 70}, + [3791] = {.lex_state = 178, .external_lex_state = 70}, + [3792] = {.lex_state = 178, .external_lex_state = 70}, + [3793] = {.lex_state = 178, .external_lex_state = 70}, + [3794] = {.lex_state = 178, .external_lex_state = 70}, + [3795] = {.lex_state = 178, .external_lex_state = 73}, + [3796] = {.lex_state = 178, .external_lex_state = 70}, + [3797] = {.lex_state = 178, .external_lex_state = 70}, + [3798] = {.lex_state = 178, .external_lex_state = 73}, + [3799] = {.lex_state = 178, .external_lex_state = 73}, + [3800] = {.lex_state = 178, .external_lex_state = 70}, + [3801] = {.lex_state = 178, .external_lex_state = 70}, + [3802] = {.lex_state = 178, .external_lex_state = 70}, + [3803] = {.lex_state = 178, .external_lex_state = 70}, + [3804] = {.lex_state = 178, .external_lex_state = 73}, + [3805] = {.lex_state = 178, .external_lex_state = 94}, + [3806] = {.lex_state = 178, .external_lex_state = 70}, + [3807] = {.lex_state = 178, .external_lex_state = 92}, + [3808] = {.lex_state = 178, .external_lex_state = 70}, + [3809] = {.lex_state = 178, .external_lex_state = 70}, + [3810] = {.lex_state = 178, .external_lex_state = 70}, + [3811] = {.lex_state = 178, .external_lex_state = 73}, + [3812] = {.lex_state = 178, .external_lex_state = 70}, + [3813] = {.lex_state = 178, .external_lex_state = 70}, + [3814] = {.lex_state = 178, .external_lex_state = 70}, + [3815] = {.lex_state = 47, .external_lex_state = 74}, + [3816] = {.lex_state = 178, .external_lex_state = 70}, + [3817] = {.lex_state = 47, .external_lex_state = 71}, + [3818] = {.lex_state = 47, .external_lex_state = 71}, + [3819] = {.lex_state = 47, .external_lex_state = 71}, + [3820] = {.lex_state = 178, .external_lex_state = 70}, + [3821] = {.lex_state = 178, .external_lex_state = 70}, + [3822] = {.lex_state = 47, .external_lex_state = 71}, + [3823] = {.lex_state = 178, .external_lex_state = 71}, + [3824] = {.lex_state = 178, .external_lex_state = 92}, + [3825] = {.lex_state = 178, .external_lex_state = 73}, + [3826] = {.lex_state = 178, .external_lex_state = 92}, + [3827] = {.lex_state = 182, .external_lex_state = 70}, + [3828] = {.lex_state = 178, .external_lex_state = 70}, + [3829] = {.lex_state = 178, .external_lex_state = 73}, + [3830] = {.lex_state = 178, .external_lex_state = 73}, + [3831] = {.lex_state = 178, .external_lex_state = 94}, + [3832] = {.lex_state = 47, .external_lex_state = 71}, + [3833] = {.lex_state = 47, .external_lex_state = 71}, + [3834] = {.lex_state = 178, .external_lex_state = 71}, + [3835] = {.lex_state = 178, .external_lex_state = 73}, + [3836] = {.lex_state = 178, .external_lex_state = 76}, + [3837] = {.lex_state = 47, .external_lex_state = 71}, + [3838] = {.lex_state = 47, .external_lex_state = 71}, + [3839] = {.lex_state = 48, .external_lex_state = 71}, + [3840] = {.lex_state = 48, .external_lex_state = 71}, + [3841] = {.lex_state = 48, .external_lex_state = 71}, + [3842] = {.lex_state = 48, .external_lex_state = 71}, + [3843] = {.lex_state = 48, .external_lex_state = 71}, + [3844] = {.lex_state = 178, .external_lex_state = 76}, + [3845] = {.lex_state = 184, .external_lex_state = 70}, + [3846] = {.lex_state = 178, .external_lex_state = 71}, + [3847] = {.lex_state = 47, .external_lex_state = 71}, + [3848] = {.lex_state = 178, .external_lex_state = 70}, + [3849] = {.lex_state = 178, .external_lex_state = 70}, + [3850] = {.lex_state = 178, .external_lex_state = 70}, + [3851] = {.lex_state = 178, .external_lex_state = 70}, + [3852] = {.lex_state = 178, .external_lex_state = 70}, + [3853] = {.lex_state = 184, .external_lex_state = 70}, + [3854] = {.lex_state = 47, .external_lex_state = 71}, + [3855] = {.lex_state = 47, .external_lex_state = 71}, + [3856] = {.lex_state = 47, .external_lex_state = 71}, + [3857] = {.lex_state = 178, .external_lex_state = 73}, + [3858] = {.lex_state = 47, .external_lex_state = 71}, + [3859] = {.lex_state = 47, .external_lex_state = 71}, + [3860] = {.lex_state = 47, .external_lex_state = 71}, + [3861] = {.lex_state = 178, .external_lex_state = 73}, + [3862] = {.lex_state = 47, .external_lex_state = 71}, + [3863] = {.lex_state = 178, .external_lex_state = 73}, + [3864] = {.lex_state = 47, .external_lex_state = 71}, + [3865] = {.lex_state = 178, .external_lex_state = 71}, + [3866] = {.lex_state = 47, .external_lex_state = 71}, + [3867] = {.lex_state = 182, .external_lex_state = 73}, + [3868] = {.lex_state = 178, .external_lex_state = 71}, + [3869] = {.lex_state = 178, .external_lex_state = 93}, + [3870] = {.lex_state = 178, .external_lex_state = 93}, + [3871] = {.lex_state = 178, .external_lex_state = 73}, + [3872] = {.lex_state = 178, .external_lex_state = 73}, + [3873] = {.lex_state = 178, .external_lex_state = 73}, + [3874] = {.lex_state = 178, .external_lex_state = 73}, + [3875] = {.lex_state = 47, .external_lex_state = 71}, + [3876] = {.lex_state = 178, .external_lex_state = 73}, + [3877] = {.lex_state = 178, .external_lex_state = 71}, + [3878] = {.lex_state = 47, .external_lex_state = 71}, + [3879] = {.lex_state = 178, .external_lex_state = 71}, + [3880] = {.lex_state = 178, .external_lex_state = 91}, + [3881] = {.lex_state = 182, .external_lex_state = 70}, + [3882] = {.lex_state = 47, .external_lex_state = 71}, + [3883] = {.lex_state = 47, .external_lex_state = 71}, + [3884] = {.lex_state = 47, .external_lex_state = 71}, + [3885] = {.lex_state = 47, .external_lex_state = 71}, + [3886] = {.lex_state = 47, .external_lex_state = 71}, + [3887] = {.lex_state = 47, .external_lex_state = 71}, + [3888] = {.lex_state = 178, .external_lex_state = 87}, + [3889] = {.lex_state = 47, .external_lex_state = 71}, + [3890] = {.lex_state = 47, .external_lex_state = 71}, + [3891] = {.lex_state = 47, .external_lex_state = 71}, + [3892] = {.lex_state = 178, .external_lex_state = 73}, + [3893] = {.lex_state = 178, .external_lex_state = 73}, + [3894] = {.lex_state = 178, .external_lex_state = 73}, + [3895] = {.lex_state = 178, .external_lex_state = 73}, + [3896] = {.lex_state = 178, .external_lex_state = 73}, + [3897] = {.lex_state = 178, .external_lex_state = 73}, + [3898] = {.lex_state = 47, .external_lex_state = 71}, + [3899] = {.lex_state = 178, .external_lex_state = 70}, + [3900] = {.lex_state = 178, .external_lex_state = 73}, + [3901] = {.lex_state = 178, .external_lex_state = 71}, + [3902] = {.lex_state = 178, .external_lex_state = 70}, + [3903] = {.lex_state = 178, .external_lex_state = 70}, + [3904] = {.lex_state = 178, .external_lex_state = 73}, + [3905] = {.lex_state = 178, .external_lex_state = 73}, + [3906] = {.lex_state = 178, .external_lex_state = 70}, + [3907] = {.lex_state = 178, .external_lex_state = 71}, + [3908] = {.lex_state = 178, .external_lex_state = 70}, + [3909] = {.lex_state = 178, .external_lex_state = 73}, + [3910] = {.lex_state = 178, .external_lex_state = 70}, + [3911] = {.lex_state = 178, .external_lex_state = 70}, + [3912] = {.lex_state = 178, .external_lex_state = 73}, + [3913] = {.lex_state = 178, .external_lex_state = 70}, + [3914] = {.lex_state = 178, .external_lex_state = 73}, + [3915] = {.lex_state = 178, .external_lex_state = 70}, + [3916] = {.lex_state = 178, .external_lex_state = 73}, + [3917] = {.lex_state = 178, .external_lex_state = 70}, + [3918] = {.lex_state = 178, .external_lex_state = 73}, + [3919] = {.lex_state = 178, .external_lex_state = 73}, + [3920] = {.lex_state = 47, .external_lex_state = 74}, + [3921] = {.lex_state = 47, .external_lex_state = 74}, + [3922] = {.lex_state = 47, .external_lex_state = 74}, + [3923] = {.lex_state = 178, .external_lex_state = 73}, + [3924] = {.lex_state = 178, .external_lex_state = 73}, + [3925] = {.lex_state = 178, .external_lex_state = 73}, + [3926] = {.lex_state = 178, .external_lex_state = 73}, + [3927] = {.lex_state = 187, .external_lex_state = 95}, + [3928] = {.lex_state = 178, .external_lex_state = 73}, + [3929] = {.lex_state = 187, .external_lex_state = 95}, + [3930] = {.lex_state = 178, .external_lex_state = 73}, + [3931] = {.lex_state = 178, .external_lex_state = 73}, + [3932] = {.lex_state = 178, .external_lex_state = 73}, + [3933] = {.lex_state = 178, .external_lex_state = 70}, + [3934] = {.lex_state = 178, .external_lex_state = 70}, + [3935] = {.lex_state = 178, .external_lex_state = 73}, + [3936] = {.lex_state = 178, .external_lex_state = 70}, + [3937] = {.lex_state = 178, .external_lex_state = 70}, + [3938] = {.lex_state = 178, .external_lex_state = 70}, + [3939] = {.lex_state = 178, .external_lex_state = 70}, + [3940] = {.lex_state = 178, .external_lex_state = 70}, + [3941] = {.lex_state = 47, .external_lex_state = 74}, + [3942] = {.lex_state = 47, .external_lex_state = 74}, + [3943] = {.lex_state = 178, .external_lex_state = 73}, + [3944] = {.lex_state = 178, .external_lex_state = 73}, + [3945] = {.lex_state = 178, .external_lex_state = 73}, + [3946] = {.lex_state = 178, .external_lex_state = 73}, + [3947] = {.lex_state = 178, .external_lex_state = 71}, + [3948] = {.lex_state = 178, .external_lex_state = 71}, + [3949] = {.lex_state = 178, .external_lex_state = 71}, + [3950] = {.lex_state = 178, .external_lex_state = 71}, + [3951] = {.lex_state = 47, .external_lex_state = 74}, + [3952] = {.lex_state = 178, .external_lex_state = 70}, + [3953] = {.lex_state = 47, .external_lex_state = 74}, + [3954] = {.lex_state = 47, .external_lex_state = 74}, + [3955] = {.lex_state = 47, .external_lex_state = 74}, + [3956] = {.lex_state = 47, .external_lex_state = 74}, + [3957] = {.lex_state = 178, .external_lex_state = 71}, + [3958] = {.lex_state = 47, .external_lex_state = 74}, + [3959] = {.lex_state = 178, .external_lex_state = 70}, + [3960] = {.lex_state = 178, .external_lex_state = 70}, + [3961] = {.lex_state = 178, .external_lex_state = 71}, + [3962] = {.lex_state = 178, .external_lex_state = 71}, + [3963] = {.lex_state = 178, .external_lex_state = 73}, + [3964] = {.lex_state = 178, .external_lex_state = 71}, + [3965] = {.lex_state = 178, .external_lex_state = 71}, + [3966] = {.lex_state = 178, .external_lex_state = 71}, + [3967] = {.lex_state = 182, .external_lex_state = 79}, + [3968] = {.lex_state = 178, .external_lex_state = 71}, + [3969] = {.lex_state = 178, .external_lex_state = 70}, + [3970] = {.lex_state = 47, .external_lex_state = 91}, + [3971] = {.lex_state = 178, .external_lex_state = 70}, + [3972] = {.lex_state = 178, .external_lex_state = 73}, + [3973] = {.lex_state = 178, .external_lex_state = 73}, + [3974] = {.lex_state = 178, .external_lex_state = 73}, + [3975] = {.lex_state = 178, .external_lex_state = 73}, + [3976] = {.lex_state = 178, .external_lex_state = 73}, + [3977] = {.lex_state = 178, .external_lex_state = 73}, + [3978] = {.lex_state = 178, .external_lex_state = 73}, + [3979] = {.lex_state = 178, .external_lex_state = 73}, + [3980] = {.lex_state = 178, .external_lex_state = 73}, + [3981] = {.lex_state = 178, .external_lex_state = 73}, + [3982] = {.lex_state = 178, .external_lex_state = 73}, + [3983] = {.lex_state = 178, .external_lex_state = 73}, + [3984] = {.lex_state = 178, .external_lex_state = 73}, + [3985] = {.lex_state = 178, .external_lex_state = 73}, + [3986] = {.lex_state = 178, .external_lex_state = 73}, + [3987] = {.lex_state = 178, .external_lex_state = 73}, + [3988] = {.lex_state = 178, .external_lex_state = 70}, + [3989] = {.lex_state = 178, .external_lex_state = 73}, + [3990] = {.lex_state = 182, .external_lex_state = 79}, + [3991] = {.lex_state = 182, .external_lex_state = 79}, + [3992] = {.lex_state = 178, .external_lex_state = 70}, + [3993] = {.lex_state = 178, .external_lex_state = 73}, + [3994] = {.lex_state = 178, .external_lex_state = 73}, + [3995] = {.lex_state = 178, .external_lex_state = 70}, + [3996] = {.lex_state = 178, .external_lex_state = 70}, + [3997] = {.lex_state = 178, .external_lex_state = 70}, + [3998] = {.lex_state = 178, .external_lex_state = 70}, + [3999] = {.lex_state = 178, .external_lex_state = 73}, + [4000] = {.lex_state = 178, .external_lex_state = 73}, + [4001] = {.lex_state = 47, .external_lex_state = 96}, + [4002] = {.lex_state = 182, .external_lex_state = 79}, + [4003] = {.lex_state = 182, .external_lex_state = 79}, + [4004] = {.lex_state = 178, .external_lex_state = 73}, + [4005] = {.lex_state = 178, .external_lex_state = 70}, + [4006] = {.lex_state = 178, .external_lex_state = 70}, + [4007] = {.lex_state = 178, .external_lex_state = 71}, + [4008] = {.lex_state = 47, .external_lex_state = 74}, + [4009] = {.lex_state = 47, .external_lex_state = 74}, + [4010] = {.lex_state = 47, .external_lex_state = 74}, + [4011] = {.lex_state = 47, .external_lex_state = 74}, + [4012] = {.lex_state = 178, .external_lex_state = 70}, + [4013] = {.lex_state = 47, .external_lex_state = 74}, + [4014] = {.lex_state = 184, .external_lex_state = 92}, + [4015] = {.lex_state = 178, .external_lex_state = 70}, + [4016] = {.lex_state = 182, .external_lex_state = 78}, + [4017] = {.lex_state = 182, .external_lex_state = 78}, + [4018] = {.lex_state = 178, .external_lex_state = 73}, + [4019] = {.lex_state = 178, .external_lex_state = 70}, + [4020] = {.lex_state = 47, .external_lex_state = 74}, + [4021] = {.lex_state = 47, .external_lex_state = 74}, + [4022] = {.lex_state = 47, .external_lex_state = 74}, + [4023] = {.lex_state = 47, .external_lex_state = 74}, + [4024] = {.lex_state = 47, .external_lex_state = 74}, + [4025] = {.lex_state = 47, .external_lex_state = 74}, + [4026] = {.lex_state = 178, .external_lex_state = 70}, + [4027] = {.lex_state = 47, .external_lex_state = 74}, + [4028] = {.lex_state = 178, .external_lex_state = 73}, + [4029] = {.lex_state = 178, .external_lex_state = 73}, + [4030] = {.lex_state = 178, .external_lex_state = 70}, + [4031] = {.lex_state = 178, .external_lex_state = 70}, + [4032] = {.lex_state = 47, .external_lex_state = 74}, + [4033] = {.lex_state = 47, .external_lex_state = 74}, + [4034] = {.lex_state = 47, .external_lex_state = 74}, + [4035] = {.lex_state = 47, .external_lex_state = 74}, + [4036] = {.lex_state = 178, .external_lex_state = 73}, + [4037] = {.lex_state = 184, .external_lex_state = 92}, + [4038] = {.lex_state = 178, .external_lex_state = 70}, + [4039] = {.lex_state = 178, .external_lex_state = 70}, + [4040] = {.lex_state = 178, .external_lex_state = 71}, + [4041] = {.lex_state = 178, .external_lex_state = 70}, + [4042] = {.lex_state = 182, .external_lex_state = 78}, + [4043] = {.lex_state = 182, .external_lex_state = 78}, + [4044] = {.lex_state = 178, .external_lex_state = 73}, + [4045] = {.lex_state = 178, .external_lex_state = 73}, + [4046] = {.lex_state = 178, .external_lex_state = 73}, + [4047] = {.lex_state = 178, .external_lex_state = 73}, + [4048] = {.lex_state = 178, .external_lex_state = 73}, + [4049] = {.lex_state = 178, .external_lex_state = 73}, + [4050] = {.lex_state = 178, .external_lex_state = 73}, + [4051] = {.lex_state = 178, .external_lex_state = 73}, + [4052] = {.lex_state = 178, .external_lex_state = 73}, + [4053] = {.lex_state = 178, .external_lex_state = 73}, + [4054] = {.lex_state = 178, .external_lex_state = 73}, + [4055] = {.lex_state = 178, .external_lex_state = 73}, + [4056] = {.lex_state = 178, .external_lex_state = 73}, + [4057] = {.lex_state = 178, .external_lex_state = 73}, + [4058] = {.lex_state = 178, .external_lex_state = 73}, + [4059] = {.lex_state = 178, .external_lex_state = 70}, + [4060] = {.lex_state = 178, .external_lex_state = 71}, + [4061] = {.lex_state = 178, .external_lex_state = 70}, + [4062] = {.lex_state = 178, .external_lex_state = 70}, + [4063] = {.lex_state = 178, .external_lex_state = 71}, + [4064] = {.lex_state = 178, .external_lex_state = 70}, + [4065] = {.lex_state = 47, .external_lex_state = 74}, + [4066] = {.lex_state = 51, .external_lex_state = 74}, + [4067] = {.lex_state = 51, .external_lex_state = 74}, + [4068] = {.lex_state = 178, .external_lex_state = 73}, + [4069] = {.lex_state = 178, .external_lex_state = 70}, + [4070] = {.lex_state = 178, .external_lex_state = 71}, + [4071] = {.lex_state = 178, .external_lex_state = 71}, + [4072] = {.lex_state = 178, .external_lex_state = 70}, + [4073] = {.lex_state = 47, .external_lex_state = 96}, + [4074] = {.lex_state = 178, .external_lex_state = 73}, + [4075] = {.lex_state = 51, .external_lex_state = 74}, + [4076] = {.lex_state = 178, .external_lex_state = 70}, + [4077] = {.lex_state = 178, .external_lex_state = 71}, + [4078] = {.lex_state = 178, .external_lex_state = 71}, + [4079] = {.lex_state = 178, .external_lex_state = 71}, + [4080] = {.lex_state = 184, .external_lex_state = 74}, + [4081] = {.lex_state = 178, .external_lex_state = 70}, + [4082] = {.lex_state = 178, .external_lex_state = 70}, + [4083] = {.lex_state = 178, .external_lex_state = 71}, + [4084] = {.lex_state = 178, .external_lex_state = 73}, + [4085] = {.lex_state = 47, .external_lex_state = 96}, + [4086] = {.lex_state = 178, .external_lex_state = 73}, + [4087] = {.lex_state = 178, .external_lex_state = 73}, + [4088] = {.lex_state = 178, .external_lex_state = 73}, + [4089] = {.lex_state = 178, .external_lex_state = 73}, + [4090] = {.lex_state = 178, .external_lex_state = 70}, + [4091] = {.lex_state = 178, .external_lex_state = 70}, + [4092] = {.lex_state = 178, .external_lex_state = 70}, + [4093] = {.lex_state = 178, .external_lex_state = 73}, + [4094] = {.lex_state = 178, .external_lex_state = 73}, + [4095] = {.lex_state = 178, .external_lex_state = 70}, + [4096] = {.lex_state = 178, .external_lex_state = 70}, + [4097] = {.lex_state = 178, .external_lex_state = 70}, + [4098] = {.lex_state = 178, .external_lex_state = 73}, + [4099] = {.lex_state = 178, .external_lex_state = 73}, + [4100] = {.lex_state = 178, .external_lex_state = 70}, + [4101] = {.lex_state = 178, .external_lex_state = 70}, + [4102] = {.lex_state = 178, .external_lex_state = 70}, + [4103] = {.lex_state = 178, .external_lex_state = 70}, + [4104] = {.lex_state = 178, .external_lex_state = 70}, + [4105] = {.lex_state = 178, .external_lex_state = 70}, + [4106] = {.lex_state = 178, .external_lex_state = 70}, + [4107] = {.lex_state = 178, .external_lex_state = 70}, + [4108] = {.lex_state = 178, .external_lex_state = 70}, + [4109] = {.lex_state = 178, .external_lex_state = 70}, + [4110] = {.lex_state = 178, .external_lex_state = 70}, + [4111] = {.lex_state = 178, .external_lex_state = 70}, + [4112] = {.lex_state = 178, .external_lex_state = 70}, + [4113] = {.lex_state = 178, .external_lex_state = 70}, + [4114] = {.lex_state = 178, .external_lex_state = 70}, + [4115] = {.lex_state = 47, .external_lex_state = 74}, + [4116] = {.lex_state = 178, .external_lex_state = 70}, + [4117] = {.lex_state = 178, .external_lex_state = 73}, + [4118] = {.lex_state = 178, .external_lex_state = 70}, + [4119] = {.lex_state = 178, .external_lex_state = 70}, + [4120] = {.lex_state = 178, .external_lex_state = 70}, + [4121] = {.lex_state = 178, .external_lex_state = 70}, + [4122] = {.lex_state = 47, .external_lex_state = 74}, + [4123] = {.lex_state = 178, .external_lex_state = 70}, + [4124] = {.lex_state = 178, .external_lex_state = 70}, + [4125] = {.lex_state = 178, .external_lex_state = 70}, + [4126] = {.lex_state = 178, .external_lex_state = 70}, + [4127] = {.lex_state = 178, .external_lex_state = 70}, + [4128] = {.lex_state = 47, .external_lex_state = 74}, + [4129] = {.lex_state = 182, .external_lex_state = 77}, + [4130] = {.lex_state = 178, .external_lex_state = 70}, + [4131] = {.lex_state = 178, .external_lex_state = 77}, + [4132] = {.lex_state = 178, .external_lex_state = 73}, + [4133] = {.lex_state = 178, .external_lex_state = 70}, + [4134] = {.lex_state = 178, .external_lex_state = 70}, + [4135] = {.lex_state = 178, .external_lex_state = 77}, + [4136] = {.lex_state = 178, .external_lex_state = 77}, + [4137] = {.lex_state = 178, .external_lex_state = 70}, + [4138] = {.lex_state = 178, .external_lex_state = 73}, + [4139] = {.lex_state = 178, .external_lex_state = 73}, + [4140] = {.lex_state = 178, .external_lex_state = 73}, + [4141] = {.lex_state = 47, .external_lex_state = 74}, + [4142] = {.lex_state = 178, .external_lex_state = 73}, + [4143] = {.lex_state = 178, .external_lex_state = 73}, + [4144] = {.lex_state = 178, .external_lex_state = 70}, + [4145] = {.lex_state = 178, .external_lex_state = 73}, + [4146] = {.lex_state = 178, .external_lex_state = 77}, + [4147] = {.lex_state = 178, .external_lex_state = 73}, + [4148] = {.lex_state = 178, .external_lex_state = 70}, + [4149] = {.lex_state = 178, .external_lex_state = 70}, + [4150] = {.lex_state = 178, .external_lex_state = 70}, + [4151] = {.lex_state = 178, .external_lex_state = 70}, + [4152] = {.lex_state = 178, .external_lex_state = 70}, + [4153] = {.lex_state = 178, .external_lex_state = 70}, + [4154] = {.lex_state = 178, .external_lex_state = 70}, + [4155] = {.lex_state = 178, .external_lex_state = 70}, + [4156] = {.lex_state = 178, .external_lex_state = 70}, + [4157] = {.lex_state = 178, .external_lex_state = 70}, + [4158] = {.lex_state = 178, .external_lex_state = 74}, + [4159] = {.lex_state = 178, .external_lex_state = 70}, + [4160] = {.lex_state = 178, .external_lex_state = 70}, + [4161] = {.lex_state = 178, .external_lex_state = 70}, + [4162] = {.lex_state = 178, .external_lex_state = 70}, + [4163] = {.lex_state = 178, .external_lex_state = 73}, + [4164] = {.lex_state = 178, .external_lex_state = 70}, + [4165] = {.lex_state = 178, .external_lex_state = 70}, + [4166] = {.lex_state = 178, .external_lex_state = 70}, + [4167] = {.lex_state = 178, .external_lex_state = 70}, + [4168] = {.lex_state = 178, .external_lex_state = 70}, + [4169] = {.lex_state = 178, .external_lex_state = 70}, + [4170] = {.lex_state = 178, .external_lex_state = 70}, + [4171] = {.lex_state = 178, .external_lex_state = 70}, + [4172] = {.lex_state = 178, .external_lex_state = 70}, + [4173] = {.lex_state = 178, .external_lex_state = 70}, + [4174] = {.lex_state = 178, .external_lex_state = 70}, + [4175] = {.lex_state = 178, .external_lex_state = 70}, + [4176] = {.lex_state = 178, .external_lex_state = 70}, + [4177] = {.lex_state = 178, .external_lex_state = 70}, + [4178] = {.lex_state = 178, .external_lex_state = 70}, + [4179] = {.lex_state = 178, .external_lex_state = 70}, + [4180] = {.lex_state = 178, .external_lex_state = 70}, + [4181] = {.lex_state = 178, .external_lex_state = 70}, + [4182] = {.lex_state = 178, .external_lex_state = 70}, + [4183] = {.lex_state = 178, .external_lex_state = 70}, + [4184] = {.lex_state = 178, .external_lex_state = 70}, + [4185] = {.lex_state = 178, .external_lex_state = 70}, + [4186] = {.lex_state = 178, .external_lex_state = 70}, + [4187] = {.lex_state = 178, .external_lex_state = 70}, + [4188] = {.lex_state = 178, .external_lex_state = 70}, + [4189] = {.lex_state = 178, .external_lex_state = 70}, + [4190] = {.lex_state = 178, .external_lex_state = 70}, + [4191] = {.lex_state = 178, .external_lex_state = 70}, + [4192] = {.lex_state = 178, .external_lex_state = 70}, + [4193] = {.lex_state = 178, .external_lex_state = 70}, + [4194] = {.lex_state = 51, .external_lex_state = 74}, + [4195] = {.lex_state = 178, .external_lex_state = 70}, + [4196] = {.lex_state = 178, .external_lex_state = 70}, + [4197] = {.lex_state = 178, .external_lex_state = 70}, + [4198] = {.lex_state = 178, .external_lex_state = 70}, + [4199] = {.lex_state = 178, .external_lex_state = 70}, + [4200] = {.lex_state = 178, .external_lex_state = 70}, + [4201] = {.lex_state = 178, .external_lex_state = 70}, + [4202] = {.lex_state = 178, .external_lex_state = 73}, + [4203] = {.lex_state = 178, .external_lex_state = 70}, + [4204] = {.lex_state = 178, .external_lex_state = 73}, + [4205] = {.lex_state = 178, .external_lex_state = 73}, + [4206] = {.lex_state = 182, .external_lex_state = 78}, + [4207] = {.lex_state = 178, .external_lex_state = 76}, + [4208] = {.lex_state = 178, .external_lex_state = 70}, + [4209] = {.lex_state = 178, .external_lex_state = 73}, + [4210] = {.lex_state = 178, .external_lex_state = 70}, + [4211] = {.lex_state = 178, .external_lex_state = 70}, + [4212] = {.lex_state = 178, .external_lex_state = 70}, + [4213] = {.lex_state = 178, .external_lex_state = 70}, + [4214] = {.lex_state = 178, .external_lex_state = 73}, + [4215] = {.lex_state = 178, .external_lex_state = 73}, + [4216] = {.lex_state = 178, .external_lex_state = 73}, + [4217] = {.lex_state = 178, .external_lex_state = 77}, + [4218] = {.lex_state = 178, .external_lex_state = 77}, + [4219] = {.lex_state = 178, .external_lex_state = 77}, + [4220] = {.lex_state = 178, .external_lex_state = 77}, + [4221] = {.lex_state = 178, .external_lex_state = 70}, + [4222] = {.lex_state = 178, .external_lex_state = 70}, + [4223] = {.lex_state = 178, .external_lex_state = 70}, + [4224] = {.lex_state = 178, .external_lex_state = 70}, + [4225] = {.lex_state = 178, .external_lex_state = 70}, + [4226] = {.lex_state = 178, .external_lex_state = 70}, + [4227] = {.lex_state = 178, .external_lex_state = 70}, + [4228] = {.lex_state = 178, .external_lex_state = 73}, + [4229] = {.lex_state = 178, .external_lex_state = 73}, + [4230] = {.lex_state = 178, .external_lex_state = 73}, + [4231] = {.lex_state = 178, .external_lex_state = 71}, + [4232] = {.lex_state = 178, .external_lex_state = 71}, + [4233] = {.lex_state = 178, .external_lex_state = 71}, + [4234] = {.lex_state = 178, .external_lex_state = 71}, + [4235] = {.lex_state = 178, .external_lex_state = 71}, + [4236] = {.lex_state = 178, .external_lex_state = 71}, + [4237] = {.lex_state = 48, .external_lex_state = 71}, + [4238] = {.lex_state = 47, .external_lex_state = 74}, + [4239] = {.lex_state = 178, .external_lex_state = 73}, + [4240] = {.lex_state = 178, .external_lex_state = 70}, + [4241] = {.lex_state = 178, .external_lex_state = 71}, + [4242] = {.lex_state = 178, .external_lex_state = 70}, + [4243] = {.lex_state = 178, .external_lex_state = 70}, + [4244] = {.lex_state = 47, .external_lex_state = 74}, + [4245] = {.lex_state = 47, .external_lex_state = 74}, + [4246] = {.lex_state = 51, .external_lex_state = 74}, + [4247] = {.lex_state = 47, .external_lex_state = 74}, + [4248] = {.lex_state = 178, .external_lex_state = 70}, + [4249] = {.lex_state = 178, .external_lex_state = 76}, + [4250] = {.lex_state = 47, .external_lex_state = 74}, + [4251] = {.lex_state = 178, .external_lex_state = 73}, + [4252] = {.lex_state = 178, .external_lex_state = 73}, + [4253] = {.lex_state = 178, .external_lex_state = 70}, + [4254] = {.lex_state = 178, .external_lex_state = 73}, + [4255] = {.lex_state = 178, .external_lex_state = 73}, + [4256] = {.lex_state = 178, .external_lex_state = 73}, + [4257] = {.lex_state = 178, .external_lex_state = 70}, + [4258] = {.lex_state = 187, .external_lex_state = 95}, + [4259] = {.lex_state = 178, .external_lex_state = 73}, + [4260] = {.lex_state = 178, .external_lex_state = 70}, + [4261] = {.lex_state = 178, .external_lex_state = 70}, + [4262] = {.lex_state = 178, .external_lex_state = 70}, + [4263] = {.lex_state = 178, .external_lex_state = 70}, + [4264] = {.lex_state = 178, .external_lex_state = 70}, + [4265] = {.lex_state = 178, .external_lex_state = 70}, + [4266] = {.lex_state = 178, .external_lex_state = 73}, + [4267] = {.lex_state = 178, .external_lex_state = 73}, + [4268] = {.lex_state = 178, .external_lex_state = 73}, + [4269] = {.lex_state = 178, .external_lex_state = 73}, + [4270] = {.lex_state = 178, .external_lex_state = 73}, + [4271] = {.lex_state = 178, .external_lex_state = 70}, + [4272] = {.lex_state = 178, .external_lex_state = 73}, + [4273] = {.lex_state = 178, .external_lex_state = 70}, + [4274] = {.lex_state = 178, .external_lex_state = 73}, + [4275] = {.lex_state = 178, .external_lex_state = 73}, + [4276] = {.lex_state = 178, .external_lex_state = 73}, + [4277] = {.lex_state = 178, .external_lex_state = 73}, + [4278] = {.lex_state = 178, .external_lex_state = 73}, + [4279] = {.lex_state = 178, .external_lex_state = 73}, + [4280] = {.lex_state = 178, .external_lex_state = 73}, + [4281] = {.lex_state = 178, .external_lex_state = 73}, + [4282] = {.lex_state = 178, .external_lex_state = 73}, + [4283] = {.lex_state = 178, .external_lex_state = 73}, + [4284] = {.lex_state = 178, .external_lex_state = 73}, + [4285] = {.lex_state = 178, .external_lex_state = 73}, + [4286] = {.lex_state = 178, .external_lex_state = 70}, + [4287] = {.lex_state = 178, .external_lex_state = 73}, + [4288] = {.lex_state = 178, .external_lex_state = 70}, + [4289] = {.lex_state = 178, .external_lex_state = 71}, + [4290] = {.lex_state = 178, .external_lex_state = 73}, + [4291] = {.lex_state = 178, .external_lex_state = 73}, + [4292] = {.lex_state = 178, .external_lex_state = 73}, + [4293] = {.lex_state = 178, .external_lex_state = 70}, + [4294] = {.lex_state = 178, .external_lex_state = 70}, + [4295] = {.lex_state = 51, .external_lex_state = 74}, + [4296] = {.lex_state = 178, .external_lex_state = 70}, + [4297] = {.lex_state = 178, .external_lex_state = 70}, + [4298] = {.lex_state = 178, .external_lex_state = 73}, + [4299] = {.lex_state = 178, .external_lex_state = 73}, + [4300] = {.lex_state = 178, .external_lex_state = 73}, + [4301] = {.lex_state = 178, .external_lex_state = 73}, + [4302] = {.lex_state = 178, .external_lex_state = 73}, + [4303] = {.lex_state = 178, .external_lex_state = 73}, + [4304] = {.lex_state = 178, .external_lex_state = 73}, + [4305] = {.lex_state = 178, .external_lex_state = 73}, + [4306] = {.lex_state = 178, .external_lex_state = 70}, [4307] = {.lex_state = 47, .external_lex_state = 74}, - [4308] = {.lex_state = 177, .external_lex_state = 72}, - [4309] = {.lex_state = 177, .external_lex_state = 77}, - [4310] = {.lex_state = 47, .external_lex_state = 74}, - [4311] = {.lex_state = 47, .external_lex_state = 74}, - [4312] = {.lex_state = 47, .external_lex_state = 74}, - [4313] = {.lex_state = 47, .external_lex_state = 74}, - [4314] = {.lex_state = 177, .external_lex_state = 74}, - [4315] = {.lex_state = 47, .external_lex_state = 74}, - [4316] = {.lex_state = 47, .external_lex_state = 74}, - [4317] = {.lex_state = 177, .external_lex_state = 75}, - [4318] = {.lex_state = 177, .external_lex_state = 75}, - [4319] = {.lex_state = 181, .external_lex_state = 78}, - [4320] = {.lex_state = 177, .external_lex_state = 77}, - [4321] = {.lex_state = 183, .external_lex_state = 75}, - [4322] = {.lex_state = 177, .external_lex_state = 72}, - [4323] = {.lex_state = 177, .external_lex_state = 75}, - [4324] = {.lex_state = 47, .external_lex_state = 74}, - [4325] = {.lex_state = 47, .external_lex_state = 74}, - [4326] = {.lex_state = 177, .external_lex_state = 72}, - [4327] = {.lex_state = 47, .external_lex_state = 74}, - [4328] = {.lex_state = 47, .external_lex_state = 74}, - [4329] = {.lex_state = 47, .external_lex_state = 74}, - [4330] = {.lex_state = 47, .external_lex_state = 74}, - [4331] = {.lex_state = 47, .external_lex_state = 74}, - [4332] = {.lex_state = 177, .external_lex_state = 72}, - [4333] = {.lex_state = 177, .external_lex_state = 72}, - [4334] = {.lex_state = 177, .external_lex_state = 72}, - [4335] = {.lex_state = 177, .external_lex_state = 72}, - [4336] = {.lex_state = 47, .external_lex_state = 74}, - [4337] = {.lex_state = 177, .external_lex_state = 72}, - [4338] = {.lex_state = 177, .external_lex_state = 72}, - [4339] = {.lex_state = 47, .external_lex_state = 74}, - [4340] = {.lex_state = 47, .external_lex_state = 74}, - [4341] = {.lex_state = 47, .external_lex_state = 74}, - [4342] = {.lex_state = 47, .external_lex_state = 74}, - [4343] = {.lex_state = 47, .external_lex_state = 74}, - [4344] = {.lex_state = 47, .external_lex_state = 74}, + [4308] = {.lex_state = 178, .external_lex_state = 70}, + [4309] = {.lex_state = 178, .external_lex_state = 70}, + [4310] = {.lex_state = 178, .external_lex_state = 70}, + [4311] = {.lex_state = 178, .external_lex_state = 73}, + [4312] = {.lex_state = 178, .external_lex_state = 70}, + [4313] = {.lex_state = 178, .external_lex_state = 73}, + [4314] = {.lex_state = 178, .external_lex_state = 73}, + [4315] = {.lex_state = 178, .external_lex_state = 73}, + [4316] = {.lex_state = 178, .external_lex_state = 73}, + [4317] = {.lex_state = 178, .external_lex_state = 73}, + [4318] = {.lex_state = 178, .external_lex_state = 73}, + [4319] = {.lex_state = 178, .external_lex_state = 73}, + [4320] = {.lex_state = 178, .external_lex_state = 73}, + [4321] = {.lex_state = 178, .external_lex_state = 73}, + [4322] = {.lex_state = 178, .external_lex_state = 73}, + [4323] = {.lex_state = 178, .external_lex_state = 73}, + [4324] = {.lex_state = 178, .external_lex_state = 70}, + [4325] = {.lex_state = 178, .external_lex_state = 73}, + [4326] = {.lex_state = 178, .external_lex_state = 73}, + [4327] = {.lex_state = 47, .external_lex_state = 96}, + [4328] = {.lex_state = 184, .external_lex_state = 74}, + [4329] = {.lex_state = 178, .external_lex_state = 74}, + [4330] = {.lex_state = 178, .external_lex_state = 77}, + [4331] = {.lex_state = 178, .external_lex_state = 77}, + [4332] = {.lex_state = 178, .external_lex_state = 77}, + [4333] = {.lex_state = 178, .external_lex_state = 77}, + [4334] = {.lex_state = 47, .external_lex_state = 74}, + [4335] = {.lex_state = 47, .external_lex_state = 74}, + [4336] = {.lex_state = 178, .external_lex_state = 77}, + [4337] = {.lex_state = 178, .external_lex_state = 77}, + [4338] = {.lex_state = 178, .external_lex_state = 77}, + [4339] = {.lex_state = 178, .external_lex_state = 77}, + [4340] = {.lex_state = 178, .external_lex_state = 77}, + [4341] = {.lex_state = 178, .external_lex_state = 77}, + [4342] = {.lex_state = 178, .external_lex_state = 70}, + [4343] = {.lex_state = 184, .external_lex_state = 74}, + [4344] = {.lex_state = 178, .external_lex_state = 74}, [4345] = {.lex_state = 47, .external_lex_state = 74}, - [4346] = {.lex_state = 177, .external_lex_state = 74}, - [4347] = {.lex_state = 47, .external_lex_state = 74}, - [4348] = {.lex_state = 177, .external_lex_state = 74}, + [4346] = {.lex_state = 47, .external_lex_state = 74}, + [4347] = {.lex_state = 182, .external_lex_state = 77}, + [4348] = {.lex_state = 178, .external_lex_state = 77}, [4349] = {.lex_state = 47, .external_lex_state = 74}, [4350] = {.lex_state = 47, .external_lex_state = 74}, - [4351] = {.lex_state = 177, .external_lex_state = 72}, + [4351] = {.lex_state = 47, .external_lex_state = 74}, [4352] = {.lex_state = 47, .external_lex_state = 74}, - [4353] = {.lex_state = 25, .external_lex_state = 66}, + [4353] = {.lex_state = 47, .external_lex_state = 74}, [4354] = {.lex_state = 47, .external_lex_state = 74}, - [4355] = {.lex_state = 47, .external_lex_state = 74}, - [4356] = {.lex_state = 177, .external_lex_state = 72}, - [4357] = {.lex_state = 47, .external_lex_state = 74}, + [4355] = {.lex_state = 178, .external_lex_state = 70}, + [4356] = {.lex_state = 47, .external_lex_state = 74}, + [4357] = {.lex_state = 182, .external_lex_state = 76}, [4358] = {.lex_state = 47, .external_lex_state = 74}, [4359] = {.lex_state = 47, .external_lex_state = 74}, - [4360] = {.lex_state = 47, .external_lex_state = 74}, - [4361] = {.lex_state = 47, .external_lex_state = 74}, + [4360] = {.lex_state = 178, .external_lex_state = 76}, + [4361] = {.lex_state = 178, .external_lex_state = 70}, [4362] = {.lex_state = 47, .external_lex_state = 74}, - [4363] = {.lex_state = 177, .external_lex_state = 77}, - [4364] = {.lex_state = 47, .external_lex_state = 74}, - [4365] = {.lex_state = 177, .external_lex_state = 72}, - [4366] = {.lex_state = 49, .external_lex_state = 73}, + [4363] = {.lex_state = 178, .external_lex_state = 97}, + [4364] = {.lex_state = 178, .external_lex_state = 76}, + [4365] = {.lex_state = 178, .external_lex_state = 97}, + [4366] = {.lex_state = 182, .external_lex_state = 78}, [4367] = {.lex_state = 47, .external_lex_state = 74}, - [4368] = {.lex_state = 49, .external_lex_state = 73}, - [4369] = {.lex_state = 177, .external_lex_state = 72}, - [4370] = {.lex_state = 49, .external_lex_state = 73}, - [4371] = {.lex_state = 177, .external_lex_state = 77}, - [4372] = {.lex_state = 47, .external_lex_state = 74}, - [4373] = {.lex_state = 49, .external_lex_state = 73}, - [4374] = {.lex_state = 177, .external_lex_state = 77}, - [4375] = {.lex_state = 177, .external_lex_state = 77}, - [4376] = {.lex_state = 47, .external_lex_state = 74}, - [4377] = {.lex_state = 177, .external_lex_state = 77}, - [4378] = {.lex_state = 177, .external_lex_state = 72}, - [4379] = {.lex_state = 177, .external_lex_state = 77}, - [4380] = {.lex_state = 177, .external_lex_state = 77}, - [4381] = {.lex_state = 177, .external_lex_state = 72}, - [4382] = {.lex_state = 177, .external_lex_state = 74}, - [4383] = {.lex_state = 177, .external_lex_state = 77}, - [4384] = {.lex_state = 177, .external_lex_state = 74}, - [4385] = {.lex_state = 181, .external_lex_state = 79}, - [4386] = {.lex_state = 47, .external_lex_state = 74}, - [4387] = {.lex_state = 177, .external_lex_state = 75}, - [4388] = {.lex_state = 177, .external_lex_state = 75}, - [4389] = {.lex_state = 177, .external_lex_state = 75}, - [4390] = {.lex_state = 47, .external_lex_state = 74}, - [4391] = {.lex_state = 177, .external_lex_state = 72}, - [4392] = {.lex_state = 47, .external_lex_state = 74}, + [4368] = {.lex_state = 47, .external_lex_state = 74}, + [4369] = {.lex_state = 47, .external_lex_state = 74}, + [4370] = {.lex_state = 47, .external_lex_state = 74}, + [4371] = {.lex_state = 47, .external_lex_state = 74}, + [4372] = {.lex_state = 178, .external_lex_state = 76}, + [4373] = {.lex_state = 178, .external_lex_state = 76}, + [4374] = {.lex_state = 47, .external_lex_state = 74}, + [4375] = {.lex_state = 178, .external_lex_state = 76}, + [4376] = {.lex_state = 178, .external_lex_state = 76}, + [4377] = {.lex_state = 47, .external_lex_state = 74}, + [4378] = {.lex_state = 47, .external_lex_state = 74}, + [4379] = {.lex_state = 47, .external_lex_state = 74}, + [4380] = {.lex_state = 178, .external_lex_state = 76}, + [4381] = {.lex_state = 178, .external_lex_state = 76}, + [4382] = {.lex_state = 47, .external_lex_state = 74}, + [4383] = {.lex_state = 178, .external_lex_state = 76}, + [4384] = {.lex_state = 47, .external_lex_state = 74}, + [4385] = {.lex_state = 178, .external_lex_state = 70}, + [4386] = {.lex_state = 178, .external_lex_state = 76}, + [4387] = {.lex_state = 47, .external_lex_state = 74}, + [4388] = {.lex_state = 47, .external_lex_state = 74}, + [4389] = {.lex_state = 178, .external_lex_state = 74}, + [4390] = {.lex_state = 178, .external_lex_state = 76}, + [4391] = {.lex_state = 178, .external_lex_state = 76}, + [4392] = {.lex_state = 178, .external_lex_state = 76}, [4393] = {.lex_state = 47, .external_lex_state = 74}, - [4394] = {.lex_state = 47, .external_lex_state = 74}, - [4395] = {.lex_state = 47, .external_lex_state = 74}, - [4396] = {.lex_state = 47, .external_lex_state = 74}, + [4394] = {.lex_state = 178, .external_lex_state = 76}, + [4395] = {.lex_state = 178, .external_lex_state = 77}, + [4396] = {.lex_state = 178, .external_lex_state = 70}, [4397] = {.lex_state = 47, .external_lex_state = 74}, - [4398] = {.lex_state = 47, .external_lex_state = 74}, - [4399] = {.lex_state = 47, .external_lex_state = 74}, - [4400] = {.lex_state = 177, .external_lex_state = 77}, + [4398] = {.lex_state = 178, .external_lex_state = 76}, + [4399] = {.lex_state = 178, .external_lex_state = 76}, + [4400] = {.lex_state = 47, .external_lex_state = 74}, [4401] = {.lex_state = 47, .external_lex_state = 74}, [4402] = {.lex_state = 47, .external_lex_state = 74}, - [4403] = {.lex_state = 47, .external_lex_state = 74}, - [4404] = {.lex_state = 177, .external_lex_state = 77}, - [4405] = {.lex_state = 47, .external_lex_state = 74}, - [4406] = {.lex_state = 47, .external_lex_state = 74}, - [4407] = {.lex_state = 47, .external_lex_state = 74}, - [4408] = {.lex_state = 47, .external_lex_state = 74}, - [4409] = {.lex_state = 47, .external_lex_state = 74}, - [4410] = {.lex_state = 177, .external_lex_state = 74}, - [4411] = {.lex_state = 47, .external_lex_state = 74}, - [4412] = {.lex_state = 177, .external_lex_state = 77}, - [4413] = {.lex_state = 47, .external_lex_state = 74}, - [4414] = {.lex_state = 47, .external_lex_state = 74}, + [4403] = {.lex_state = 178, .external_lex_state = 70}, + [4404] = {.lex_state = 178, .external_lex_state = 76}, + [4405] = {.lex_state = 178, .external_lex_state = 70}, + [4406] = {.lex_state = 178, .external_lex_state = 70}, + [4407] = {.lex_state = 178, .external_lex_state = 70}, + [4408] = {.lex_state = 178, .external_lex_state = 76}, + [4409] = {.lex_state = 178, .external_lex_state = 76}, + [4410] = {.lex_state = 178, .external_lex_state = 76}, + [4411] = {.lex_state = 178, .external_lex_state = 70}, + [4412] = {.lex_state = 178, .external_lex_state = 92}, + [4413] = {.lex_state = 178, .external_lex_state = 76}, + [4414] = {.lex_state = 178, .external_lex_state = 77}, [4415] = {.lex_state = 47, .external_lex_state = 74}, - [4416] = {.lex_state = 177, .external_lex_state = 74}, - [4417] = {.lex_state = 47, .external_lex_state = 74}, - [4418] = {.lex_state = 47, .external_lex_state = 74}, - [4419] = {.lex_state = 177, .external_lex_state = 72}, - [4420] = {.lex_state = 47, .external_lex_state = 74}, - [4421] = {.lex_state = 47, .external_lex_state = 74}, - [4422] = {.lex_state = 47, .external_lex_state = 74}, + [4416] = {.lex_state = 178, .external_lex_state = 97}, + [4417] = {.lex_state = 178, .external_lex_state = 76}, + [4418] = {.lex_state = 178, .external_lex_state = 76}, + [4419] = {.lex_state = 178, .external_lex_state = 97}, + [4420] = {.lex_state = 178, .external_lex_state = 76}, + [4421] = {.lex_state = 178, .external_lex_state = 76}, + [4422] = {.lex_state = 178, .external_lex_state = 70}, [4423] = {.lex_state = 47, .external_lex_state = 74}, - [4424] = {.lex_state = 47, .external_lex_state = 74}, - [4425] = {.lex_state = 47, .external_lex_state = 74}, + [4424] = {.lex_state = 178, .external_lex_state = 76}, + [4425] = {.lex_state = 178, .external_lex_state = 76}, [4426] = {.lex_state = 47, .external_lex_state = 74}, [4427] = {.lex_state = 47, .external_lex_state = 74}, [4428] = {.lex_state = 47, .external_lex_state = 74}, - [4429] = {.lex_state = 47, .external_lex_state = 74}, + [4429] = {.lex_state = 178, .external_lex_state = 74}, [4430] = {.lex_state = 47, .external_lex_state = 74}, [4431] = {.lex_state = 47, .external_lex_state = 74}, - [4432] = {.lex_state = 177, .external_lex_state = 77}, - [4433] = {.lex_state = 177, .external_lex_state = 77}, - [4434] = {.lex_state = 177, .external_lex_state = 77}, + [4432] = {.lex_state = 25, .external_lex_state = 66}, + [4433] = {.lex_state = 47, .external_lex_state = 74}, + [4434] = {.lex_state = 47, .external_lex_state = 74}, [4435] = {.lex_state = 47, .external_lex_state = 74}, - [4436] = {.lex_state = 47, .external_lex_state = 74}, - [4437] = {.lex_state = 47, .external_lex_state = 74}, - [4438] = {.lex_state = 177, .external_lex_state = 77}, - [4439] = {.lex_state = 181, .external_lex_state = 75}, - [4440] = {.lex_state = 177, .external_lex_state = 74}, + [4436] = {.lex_state = 178, .external_lex_state = 74}, + [4437] = {.lex_state = 182, .external_lex_state = 79}, + [4438] = {.lex_state = 47, .external_lex_state = 74}, + [4439] = {.lex_state = 47, .external_lex_state = 74}, + [4440] = {.lex_state = 178, .external_lex_state = 76}, [4441] = {.lex_state = 47, .external_lex_state = 74}, [4442] = {.lex_state = 47, .external_lex_state = 74}, [4443] = {.lex_state = 47, .external_lex_state = 74}, [4444] = {.lex_state = 47, .external_lex_state = 74}, - [4445] = {.lex_state = 47, .external_lex_state = 74}, - [4446] = {.lex_state = 47, .external_lex_state = 74}, - [4447] = {.lex_state = 47, .external_lex_state = 74}, - [4448] = {.lex_state = 47, .external_lex_state = 74}, - [4449] = {.lex_state = 177, .external_lex_state = 77}, + [4445] = {.lex_state = 178, .external_lex_state = 76}, + [4446] = {.lex_state = 178, .external_lex_state = 76}, + [4447] = {.lex_state = 178, .external_lex_state = 76}, + [4448] = {.lex_state = 178, .external_lex_state = 70}, + [4449] = {.lex_state = 178, .external_lex_state = 76}, [4450] = {.lex_state = 47, .external_lex_state = 74}, [4451] = {.lex_state = 47, .external_lex_state = 74}, - [4452] = {.lex_state = 47, .external_lex_state = 74}, + [4452] = {.lex_state = 178, .external_lex_state = 76}, [4453] = {.lex_state = 47, .external_lex_state = 74}, - [4454] = {.lex_state = 47, .external_lex_state = 74}, - [4455] = {.lex_state = 47, .external_lex_state = 74}, - [4456] = {.lex_state = 47, .external_lex_state = 74}, - [4457] = {.lex_state = 47, .external_lex_state = 74}, - [4458] = {.lex_state = 47, .external_lex_state = 74}, - [4459] = {.lex_state = 47, .external_lex_state = 74}, - [4460] = {.lex_state = 47, .external_lex_state = 74}, - [4461] = {.lex_state = 47, .external_lex_state = 74}, - [4462] = {.lex_state = 177, .external_lex_state = 72}, - [4463] = {.lex_state = 177, .external_lex_state = 72}, - [4464] = {.lex_state = 47, .external_lex_state = 74}, - [4465] = {.lex_state = 47, .external_lex_state = 74}, - [4466] = {.lex_state = 47, .external_lex_state = 74}, - [4467] = {.lex_state = 47, .external_lex_state = 74}, - [4468] = {.lex_state = 47, .external_lex_state = 74}, - [4469] = {.lex_state = 47, .external_lex_state = 74}, - [4470] = {.lex_state = 47, .external_lex_state = 74}, - [4471] = {.lex_state = 47, .external_lex_state = 74}, + [4454] = {.lex_state = 25, .external_lex_state = 74}, + [4455] = {.lex_state = 184, .external_lex_state = 76}, + [4456] = {.lex_state = 25, .external_lex_state = 74}, + [4457] = {.lex_state = 25, .external_lex_state = 74}, + [4458] = {.lex_state = 178, .external_lex_state = 76}, + [4459] = {.lex_state = 48, .external_lex_state = 71}, + [4460] = {.lex_state = 185, .external_lex_state = 71}, + [4461] = {.lex_state = 25, .external_lex_state = 74}, + [4462] = {.lex_state = 25, .external_lex_state = 74}, + [4463] = {.lex_state = 185, .external_lex_state = 71}, + [4464] = {.lex_state = 185, .external_lex_state = 71}, + [4465] = {.lex_state = 185, .external_lex_state = 71}, + [4466] = {.lex_state = 178, .external_lex_state = 76}, + [4467] = {.lex_state = 178, .external_lex_state = 76}, + [4468] = {.lex_state = 178, .external_lex_state = 70}, + [4469] = {.lex_state = 187, .external_lex_state = 95}, + [4470] = {.lex_state = 187, .external_lex_state = 95}, + [4471] = {.lex_state = 187, .external_lex_state = 95}, [4472] = {.lex_state = 47, .external_lex_state = 74}, - [4473] = {.lex_state = 47, .external_lex_state = 74}, + [4473] = {.lex_state = 178, .external_lex_state = 76}, [4474] = {.lex_state = 47, .external_lex_state = 74}, - [4475] = {.lex_state = 181, .external_lex_state = 75}, - [4476] = {.lex_state = 47, .external_lex_state = 74}, + [4475] = {.lex_state = 178, .external_lex_state = 70}, + [4476] = {.lex_state = 178, .external_lex_state = 76}, [4477] = {.lex_state = 47, .external_lex_state = 74}, [4478] = {.lex_state = 47, .external_lex_state = 74}, - [4479] = {.lex_state = 177, .external_lex_state = 75}, - [4480] = {.lex_state = 177, .external_lex_state = 75}, - [4481] = {.lex_state = 25, .external_lex_state = 74}, - [4482] = {.lex_state = 177, .external_lex_state = 98}, - [4483] = {.lex_state = 177, .external_lex_state = 98}, - [4484] = {.lex_state = 177, .external_lex_state = 75}, - [4485] = {.lex_state = 177, .external_lex_state = 75}, - [4486] = {.lex_state = 177, .external_lex_state = 75}, - [4487] = {.lex_state = 47, .external_lex_state = 74}, + [4479] = {.lex_state = 47, .external_lex_state = 74}, + [4480] = {.lex_state = 47, .external_lex_state = 74}, + [4481] = {.lex_state = 178, .external_lex_state = 77}, + [4482] = {.lex_state = 47, .external_lex_state = 74}, + [4483] = {.lex_state = 47, .external_lex_state = 74}, + [4484] = {.lex_state = 47, .external_lex_state = 74}, + [4485] = {.lex_state = 47, .external_lex_state = 74}, + [4486] = {.lex_state = 47, .external_lex_state = 74}, + [4487] = {.lex_state = 178, .external_lex_state = 70}, [4488] = {.lex_state = 47, .external_lex_state = 74}, - [4489] = {.lex_state = 47, .external_lex_state = 74}, - [4490] = {.lex_state = 177, .external_lex_state = 77}, - [4491] = {.lex_state = 177, .external_lex_state = 77}, - [4492] = {.lex_state = 25, .external_lex_state = 74}, - [4493] = {.lex_state = 47, .external_lex_state = 74}, - [4494] = {.lex_state = 177, .external_lex_state = 75}, - [4495] = {.lex_state = 25, .external_lex_state = 74}, + [4489] = {.lex_state = 178, .external_lex_state = 70}, + [4490] = {.lex_state = 47, .external_lex_state = 74}, + [4491] = {.lex_state = 178, .external_lex_state = 70}, + [4492] = {.lex_state = 178, .external_lex_state = 70}, + [4493] = {.lex_state = 178, .external_lex_state = 76}, + [4494] = {.lex_state = 47, .external_lex_state = 74}, + [4495] = {.lex_state = 47, .external_lex_state = 74}, [4496] = {.lex_state = 47, .external_lex_state = 74}, [4497] = {.lex_state = 47, .external_lex_state = 74}, - [4498] = {.lex_state = 183, .external_lex_state = 75}, + [4498] = {.lex_state = 47, .external_lex_state = 74}, [4499] = {.lex_state = 47, .external_lex_state = 74}, - [4500] = {.lex_state = 47, .external_lex_state = 74}, - [4501] = {.lex_state = 47, .external_lex_state = 74}, + [4500] = {.lex_state = 178, .external_lex_state = 70}, + [4501] = {.lex_state = 178, .external_lex_state = 76}, [4502] = {.lex_state = 47, .external_lex_state = 74}, - [4503] = {.lex_state = 177, .external_lex_state = 75}, - [4504] = {.lex_state = 177, .external_lex_state = 75}, - [4505] = {.lex_state = 47, .external_lex_state = 74}, - [4506] = {.lex_state = 177, .external_lex_state = 75}, - [4507] = {.lex_state = 47, .external_lex_state = 74}, - [4508] = {.lex_state = 47, .external_lex_state = 74}, - [4509] = {.lex_state = 47, .external_lex_state = 74}, - [4510] = {.lex_state = 47, .external_lex_state = 74}, - [4511] = {.lex_state = 47, .external_lex_state = 74}, - [4512] = {.lex_state = 47, .external_lex_state = 74}, - [4513] = {.lex_state = 177, .external_lex_state = 92}, - [4514] = {.lex_state = 177, .external_lex_state = 75}, - [4515] = {.lex_state = 177, .external_lex_state = 98}, - [4516] = {.lex_state = 177, .external_lex_state = 98}, - [4517] = {.lex_state = 177, .external_lex_state = 75}, - [4518] = {.lex_state = 47, .external_lex_state = 74}, - [4519] = {.lex_state = 177, .external_lex_state = 75}, - [4520] = {.lex_state = 47, .external_lex_state = 74}, - [4521] = {.lex_state = 47, .external_lex_state = 74}, - [4522] = {.lex_state = 47, .external_lex_state = 74}, - [4523] = {.lex_state = 47, .external_lex_state = 74}, + [4503] = {.lex_state = 47, .external_lex_state = 74}, + [4504] = {.lex_state = 47, .external_lex_state = 74}, + [4505] = {.lex_state = 178, .external_lex_state = 74}, + [4506] = {.lex_state = 178, .external_lex_state = 76}, + [4507] = {.lex_state = 178, .external_lex_state = 76}, + [4508] = {.lex_state = 178, .external_lex_state = 76}, + [4509] = {.lex_state = 178, .external_lex_state = 76}, + [4510] = {.lex_state = 178, .external_lex_state = 76}, + [4511] = {.lex_state = 178, .external_lex_state = 76}, + [4512] = {.lex_state = 178, .external_lex_state = 76}, + [4513] = {.lex_state = 185, .external_lex_state = 71}, + [4514] = {.lex_state = 185, .external_lex_state = 71}, + [4515] = {.lex_state = 185, .external_lex_state = 71}, + [4516] = {.lex_state = 185, .external_lex_state = 71}, + [4517] = {.lex_state = 47, .external_lex_state = 74}, + [4518] = {.lex_state = 178, .external_lex_state = 76}, + [4519] = {.lex_state = 178, .external_lex_state = 76}, + [4520] = {.lex_state = 178, .external_lex_state = 76}, + [4521] = {.lex_state = 178, .external_lex_state = 76}, + [4522] = {.lex_state = 178, .external_lex_state = 77}, + [4523] = {.lex_state = 178, .external_lex_state = 77}, [4524] = {.lex_state = 47, .external_lex_state = 74}, - [4525] = {.lex_state = 183, .external_lex_state = 74}, - [4526] = {.lex_state = 47, .external_lex_state = 74}, - [4527] = {.lex_state = 47, .external_lex_state = 74}, - [4528] = {.lex_state = 47, .external_lex_state = 74}, - [4529] = {.lex_state = 177, .external_lex_state = 75}, + [4525] = {.lex_state = 178, .external_lex_state = 77}, + [4526] = {.lex_state = 178, .external_lex_state = 76}, + [4527] = {.lex_state = 178, .external_lex_state = 77}, + [4528] = {.lex_state = 178, .external_lex_state = 70}, + [4529] = {.lex_state = 47, .external_lex_state = 74}, [4530] = {.lex_state = 47, .external_lex_state = 74}, - [4531] = {.lex_state = 177, .external_lex_state = 75}, - [4532] = {.lex_state = 177, .external_lex_state = 77}, - [4533] = {.lex_state = 177, .external_lex_state = 74}, + [4531] = {.lex_state = 47, .external_lex_state = 74}, + [4532] = {.lex_state = 47, .external_lex_state = 74}, + [4533] = {.lex_state = 47, .external_lex_state = 74}, [4534] = {.lex_state = 47, .external_lex_state = 74}, - [4535] = {.lex_state = 48, .external_lex_state = 73}, - [4536] = {.lex_state = 177, .external_lex_state = 75}, + [4535] = {.lex_state = 178, .external_lex_state = 70}, + [4536] = {.lex_state = 47, .external_lex_state = 74}, [4537] = {.lex_state = 47, .external_lex_state = 74}, [4538] = {.lex_state = 47, .external_lex_state = 74}, - [4539] = {.lex_state = 177, .external_lex_state = 75}, - [4540] = {.lex_state = 177, .external_lex_state = 75}, - [4541] = {.lex_state = 47, .external_lex_state = 74}, - [4542] = {.lex_state = 177, .external_lex_state = 75}, - [4543] = {.lex_state = 177, .external_lex_state = 74}, - [4544] = {.lex_state = 177, .external_lex_state = 75}, - [4545] = {.lex_state = 177, .external_lex_state = 75}, - [4546] = {.lex_state = 177, .external_lex_state = 75}, - [4547] = {.lex_state = 177, .external_lex_state = 75}, - [4548] = {.lex_state = 177, .external_lex_state = 75}, - [4549] = {.lex_state = 181, .external_lex_state = 78}, - [4550] = {.lex_state = 177, .external_lex_state = 78}, - [4551] = {.lex_state = 177, .external_lex_state = 75}, - [4552] = {.lex_state = 177, .external_lex_state = 75}, - [4553] = {.lex_state = 177, .external_lex_state = 78}, - [4554] = {.lex_state = 177, .external_lex_state = 78}, - [4555] = {.lex_state = 177, .external_lex_state = 78}, - [4556] = {.lex_state = 177, .external_lex_state = 75}, - [4557] = {.lex_state = 177, .external_lex_state = 74}, - [4558] = {.lex_state = 177, .external_lex_state = 74}, - [4559] = {.lex_state = 177, .external_lex_state = 75}, - [4560] = {.lex_state = 177, .external_lex_state = 75}, - [4561] = {.lex_state = 177, .external_lex_state = 75}, - [4562] = {.lex_state = 177, .external_lex_state = 75}, - [4563] = {.lex_state = 177, .external_lex_state = 75}, - [4564] = {.lex_state = 177, .external_lex_state = 75}, - [4565] = {.lex_state = 177, .external_lex_state = 75}, - [4566] = {.lex_state = 177, .external_lex_state = 75}, - [4567] = {.lex_state = 177, .external_lex_state = 75}, - [4568] = {.lex_state = 177, .external_lex_state = 75}, - [4569] = {.lex_state = 177, .external_lex_state = 75}, - [4570] = {.lex_state = 177, .external_lex_state = 75}, - [4571] = {.lex_state = 177, .external_lex_state = 77}, - [4572] = {.lex_state = 177, .external_lex_state = 75}, - [4573] = {.lex_state = 177, .external_lex_state = 75}, - [4574] = {.lex_state = 177, .external_lex_state = 75}, - [4575] = {.lex_state = 177, .external_lex_state = 75}, - [4576] = {.lex_state = 177, .external_lex_state = 75}, - [4577] = {.lex_state = 49, .external_lex_state = 73}, - [4578] = {.lex_state = 177, .external_lex_state = 75}, - [4579] = {.lex_state = 25, .external_lex_state = 74}, - [4580] = {.lex_state = 49, .external_lex_state = 73}, - [4581] = {.lex_state = 49, .external_lex_state = 73}, - [4582] = {.lex_state = 49, .external_lex_state = 73}, - [4583] = {.lex_state = 177, .external_lex_state = 78}, - [4584] = {.lex_state = 49, .external_lex_state = 73}, - [4585] = {.lex_state = 49, .external_lex_state = 73}, - [4586] = {.lex_state = 49, .external_lex_state = 73}, - [4587] = {.lex_state = 49, .external_lex_state = 73}, - [4588] = {.lex_state = 49, .external_lex_state = 73}, - [4589] = {.lex_state = 49, .external_lex_state = 73}, - [4590] = {.lex_state = 49, .external_lex_state = 73}, - [4591] = {.lex_state = 177, .external_lex_state = 78}, - [4592] = {.lex_state = 49, .external_lex_state = 73}, - [4593] = {.lex_state = 49, .external_lex_state = 73}, - [4594] = {.lex_state = 49, .external_lex_state = 73}, - [4595] = {.lex_state = 49, .external_lex_state = 73}, - [4596] = {.lex_state = 49, .external_lex_state = 73}, - [4597] = {.lex_state = 49, .external_lex_state = 73}, - [4598] = {.lex_state = 49, .external_lex_state = 73}, - [4599] = {.lex_state = 49, .external_lex_state = 73}, - [4600] = {.lex_state = 177, .external_lex_state = 78}, - [4601] = {.lex_state = 177, .external_lex_state = 78}, - [4602] = {.lex_state = 177, .external_lex_state = 75}, - [4603] = {.lex_state = 177, .external_lex_state = 75}, - [4604] = {.lex_state = 177, .external_lex_state = 75}, - [4605] = {.lex_state = 177, .external_lex_state = 75}, - [4606] = {.lex_state = 177, .external_lex_state = 75}, - [4607] = {.lex_state = 177, .external_lex_state = 75}, - [4608] = {.lex_state = 177, .external_lex_state = 75}, - [4609] = {.lex_state = 177, .external_lex_state = 75}, - [4610] = {.lex_state = 177, .external_lex_state = 75}, - [4611] = {.lex_state = 177, .external_lex_state = 75}, - [4612] = {.lex_state = 177, .external_lex_state = 75}, - [4613] = {.lex_state = 177, .external_lex_state = 75}, - [4614] = {.lex_state = 177, .external_lex_state = 75}, - [4615] = {.lex_state = 177, .external_lex_state = 75}, - [4616] = {.lex_state = 49, .external_lex_state = 73}, - [4617] = {.lex_state = 49, .external_lex_state = 73}, - [4618] = {.lex_state = 177, .external_lex_state = 75}, - [4619] = {.lex_state = 49, .external_lex_state = 73}, - [4620] = {.lex_state = 177, .external_lex_state = 75}, - [4621] = {.lex_state = 49, .external_lex_state = 73}, - [4622] = {.lex_state = 177, .external_lex_state = 75}, - [4623] = {.lex_state = 177, .external_lex_state = 75}, - [4624] = {.lex_state = 177, .external_lex_state = 75}, - [4625] = {.lex_state = 177, .external_lex_state = 75}, - [4626] = {.lex_state = 177, .external_lex_state = 75}, - [4627] = {.lex_state = 177, .external_lex_state = 75}, - [4628] = {.lex_state = 177, .external_lex_state = 75}, - [4629] = {.lex_state = 177, .external_lex_state = 75}, - [4630] = {.lex_state = 177, .external_lex_state = 74}, - [4631] = {.lex_state = 177, .external_lex_state = 75}, - [4632] = {.lex_state = 177, .external_lex_state = 75}, - [4633] = {.lex_state = 177, .external_lex_state = 75}, - [4634] = {.lex_state = 177, .external_lex_state = 75}, - [4635] = {.lex_state = 177, .external_lex_state = 75}, - [4636] = {.lex_state = 177, .external_lex_state = 75}, - [4637] = {.lex_state = 177, .external_lex_state = 75}, - [4638] = {.lex_state = 177, .external_lex_state = 75}, - [4639] = {.lex_state = 177, .external_lex_state = 75}, - [4640] = {.lex_state = 177, .external_lex_state = 75}, - [4641] = {.lex_state = 177, .external_lex_state = 74}, - [4642] = {.lex_state = 170, .external_lex_state = 80}, - [4643] = {.lex_state = 177, .external_lex_state = 75}, - [4644] = {.lex_state = 177, .external_lex_state = 74}, - [4645] = {.lex_state = 170, .external_lex_state = 80}, - [4646] = {.lex_state = 170, .external_lex_state = 80}, - [4647] = {.lex_state = 177, .external_lex_state = 74}, - [4648] = {.lex_state = 49, .external_lex_state = 73}, - [4649] = {.lex_state = 49, .external_lex_state = 73}, - [4650] = {.lex_state = 177, .external_lex_state = 75}, - [4651] = {.lex_state = 177, .external_lex_state = 97}, - [4652] = {.lex_state = 177, .external_lex_state = 74}, - [4653] = {.lex_state = 177, .external_lex_state = 75}, - [4654] = {.lex_state = 170, .external_lex_state = 80}, - [4655] = {.lex_state = 170, .external_lex_state = 80}, - [4656] = {.lex_state = 177, .external_lex_state = 97}, - [4657] = {.lex_state = 177, .external_lex_state = 74}, - [4658] = {.lex_state = 177, .external_lex_state = 75}, - [4659] = {.lex_state = 177, .external_lex_state = 75}, - [4660] = {.lex_state = 177, .external_lex_state = 74}, - [4661] = {.lex_state = 177, .external_lex_state = 79}, - [4662] = {.lex_state = 177, .external_lex_state = 74}, - [4663] = {.lex_state = 177, .external_lex_state = 74}, - [4664] = {.lex_state = 177, .external_lex_state = 74}, - [4665] = {.lex_state = 177, .external_lex_state = 74}, - [4666] = {.lex_state = 177, .external_lex_state = 75}, - [4667] = {.lex_state = 177, .external_lex_state = 74}, - [4668] = {.lex_state = 177, .external_lex_state = 74}, - [4669] = {.lex_state = 177, .external_lex_state = 74}, - [4670] = {.lex_state = 177, .external_lex_state = 97}, - [4671] = {.lex_state = 177, .external_lex_state = 74}, - [4672] = {.lex_state = 177, .external_lex_state = 74}, - [4673] = {.lex_state = 177, .external_lex_state = 74}, - [4674] = {.lex_state = 177, .external_lex_state = 74}, - [4675] = {.lex_state = 177, .external_lex_state = 74}, - [4676] = {.lex_state = 177, .external_lex_state = 74}, - [4677] = {.lex_state = 177, .external_lex_state = 74}, - [4678] = {.lex_state = 177, .external_lex_state = 74}, - [4679] = {.lex_state = 181, .external_lex_state = 79}, - [4680] = {.lex_state = 177, .external_lex_state = 79}, - [4681] = {.lex_state = 177, .external_lex_state = 75}, - [4682] = {.lex_state = 177, .external_lex_state = 75}, - [4683] = {.lex_state = 177, .external_lex_state = 79}, - [4684] = {.lex_state = 177, .external_lex_state = 74}, - [4685] = {.lex_state = 177, .external_lex_state = 75}, - [4686] = {.lex_state = 177, .external_lex_state = 75}, - [4687] = {.lex_state = 177, .external_lex_state = 74}, - [4688] = {.lex_state = 177, .external_lex_state = 75}, - [4689] = {.lex_state = 177, .external_lex_state = 74}, - [4690] = {.lex_state = 177, .external_lex_state = 79}, - [4691] = {.lex_state = 177, .external_lex_state = 79}, - [4692] = {.lex_state = 177, .external_lex_state = 74}, - [4693] = {.lex_state = 177, .external_lex_state = 79}, - [4694] = {.lex_state = 177, .external_lex_state = 74}, - [4695] = {.lex_state = 177, .external_lex_state = 75}, - [4696] = {.lex_state = 177, .external_lex_state = 75}, - [4697] = {.lex_state = 47, .external_lex_state = 74}, - [4698] = {.lex_state = 47, .external_lex_state = 74}, - [4699] = {.lex_state = 177, .external_lex_state = 75}, - [4700] = {.lex_state = 177, .external_lex_state = 75}, - [4701] = {.lex_state = 177, .external_lex_state = 75}, - [4702] = {.lex_state = 177, .external_lex_state = 75}, - [4703] = {.lex_state = 177, .external_lex_state = 75}, - [4704] = {.lex_state = 177, .external_lex_state = 75}, - [4705] = {.lex_state = 177, .external_lex_state = 74}, - [4706] = {.lex_state = 177, .external_lex_state = 75}, - [4707] = {.lex_state = 177, .external_lex_state = 75}, - [4708] = {.lex_state = 177, .external_lex_state = 75}, - [4709] = {.lex_state = 177, .external_lex_state = 75}, - [4710] = {.lex_state = 177, .external_lex_state = 75}, - [4711] = {.lex_state = 177, .external_lex_state = 75}, - [4712] = {.lex_state = 177, .external_lex_state = 75}, - [4713] = {.lex_state = 177, .external_lex_state = 75}, - [4714] = {.lex_state = 177, .external_lex_state = 75}, - [4715] = {.lex_state = 177, .external_lex_state = 75}, - [4716] = {.lex_state = 177, .external_lex_state = 75}, - [4717] = {.lex_state = 177, .external_lex_state = 75}, - [4718] = {.lex_state = 177, .external_lex_state = 75}, - [4719] = {.lex_state = 177, .external_lex_state = 75}, - [4720] = {.lex_state = 177, .external_lex_state = 75}, - [4721] = {.lex_state = 177, .external_lex_state = 75}, - [4722] = {.lex_state = 177, .external_lex_state = 75}, - [4723] = {.lex_state = 177, .external_lex_state = 75}, - [4724] = {.lex_state = 177, .external_lex_state = 75}, - [4725] = {.lex_state = 177, .external_lex_state = 75}, - [4726] = {.lex_state = 177, .external_lex_state = 75}, - [4727] = {.lex_state = 177, .external_lex_state = 75}, - [4728] = {.lex_state = 177, .external_lex_state = 75}, - [4729] = {.lex_state = 177, .external_lex_state = 75}, - [4730] = {.lex_state = 177, .external_lex_state = 75}, - [4731] = {.lex_state = 177, .external_lex_state = 75}, - [4732] = {.lex_state = 177, .external_lex_state = 75}, - [4733] = {.lex_state = 177, .external_lex_state = 74}, - [4734] = {.lex_state = 177, .external_lex_state = 75}, - [4735] = {.lex_state = 177, .external_lex_state = 75}, - [4736] = {.lex_state = 177, .external_lex_state = 75}, - [4737] = {.lex_state = 177, .external_lex_state = 75}, - [4738] = {.lex_state = 177, .external_lex_state = 74}, - [4739] = {.lex_state = 177, .external_lex_state = 75}, - [4740] = {.lex_state = 177, .external_lex_state = 75}, - [4741] = {.lex_state = 177, .external_lex_state = 75}, - [4742] = {.lex_state = 177, .external_lex_state = 75}, - [4743] = {.lex_state = 177, .external_lex_state = 75}, - [4744] = {.lex_state = 177, .external_lex_state = 74}, - [4745] = {.lex_state = 177, .external_lex_state = 74}, - [4746] = {.lex_state = 48, .external_lex_state = 73}, - [4747] = {.lex_state = 177, .external_lex_state = 74}, - [4748] = {.lex_state = 57, .external_lex_state = 88}, - [4749] = {.lex_state = 177, .external_lex_state = 75}, - [4750] = {.lex_state = 177, .external_lex_state = 75}, - [4751] = {.lex_state = 177, .external_lex_state = 75}, - [4752] = {.lex_state = 177, .external_lex_state = 75}, - [4753] = {.lex_state = 177, .external_lex_state = 75}, - [4754] = {.lex_state = 47, .external_lex_state = 74}, - [4755] = {.lex_state = 47, .external_lex_state = 74}, - [4756] = {.lex_state = 177, .external_lex_state = 79}, - [4757] = {.lex_state = 47, .external_lex_state = 74}, - [4758] = {.lex_state = 177, .external_lex_state = 75}, - [4759] = {.lex_state = 177, .external_lex_state = 75}, - [4760] = {.lex_state = 177, .external_lex_state = 74}, - [4761] = {.lex_state = 177, .external_lex_state = 75}, - [4762] = {.lex_state = 177, .external_lex_state = 75}, - [4763] = {.lex_state = 177, .external_lex_state = 75}, - [4764] = {.lex_state = 177, .external_lex_state = 75}, - [4765] = {.lex_state = 177, .external_lex_state = 75}, - [4766] = {.lex_state = 177, .external_lex_state = 75}, - [4767] = {.lex_state = 177, .external_lex_state = 75}, - [4768] = {.lex_state = 177, .external_lex_state = 75}, - [4769] = {.lex_state = 177, .external_lex_state = 75}, - [4770] = {.lex_state = 177, .external_lex_state = 75}, - [4771] = {.lex_state = 177, .external_lex_state = 74}, - [4772] = {.lex_state = 177, .external_lex_state = 75}, - [4773] = {.lex_state = 177, .external_lex_state = 75}, - [4774] = {.lex_state = 177, .external_lex_state = 75}, - [4775] = {.lex_state = 177, .external_lex_state = 75}, - [4776] = {.lex_state = 177, .external_lex_state = 75}, - [4777] = {.lex_state = 177, .external_lex_state = 75}, - [4778] = {.lex_state = 177, .external_lex_state = 75}, - [4779] = {.lex_state = 177, .external_lex_state = 75}, - [4780] = {.lex_state = 177, .external_lex_state = 75}, - [4781] = {.lex_state = 177, .external_lex_state = 75}, - [4782] = {.lex_state = 177, .external_lex_state = 75}, - [4783] = {.lex_state = 177, .external_lex_state = 75}, - [4784] = {.lex_state = 177, .external_lex_state = 75}, - [4785] = {.lex_state = 177, .external_lex_state = 75}, - [4786] = {.lex_state = 177, .external_lex_state = 75}, - [4787] = {.lex_state = 177, .external_lex_state = 75}, - [4788] = {.lex_state = 177, .external_lex_state = 75}, - [4789] = {.lex_state = 177, .external_lex_state = 75}, - [4790] = {.lex_state = 177, .external_lex_state = 75}, - [4791] = {.lex_state = 177, .external_lex_state = 75}, - [4792] = {.lex_state = 177, .external_lex_state = 75}, - [4793] = {.lex_state = 177, .external_lex_state = 75}, - [4794] = {.lex_state = 177, .external_lex_state = 75}, - [4795] = {.lex_state = 177, .external_lex_state = 75}, - [4796] = {.lex_state = 177, .external_lex_state = 75}, - [4797] = {.lex_state = 177, .external_lex_state = 75}, - [4798] = {.lex_state = 177, .external_lex_state = 75}, - [4799] = {.lex_state = 177, .external_lex_state = 75}, - [4800] = {.lex_state = 177, .external_lex_state = 75}, - [4801] = {.lex_state = 177, .external_lex_state = 75}, - [4802] = {.lex_state = 177, .external_lex_state = 75}, - [4803] = {.lex_state = 177, .external_lex_state = 75}, - [4804] = {.lex_state = 177, .external_lex_state = 75}, - [4805] = {.lex_state = 177, .external_lex_state = 75}, - [4806] = {.lex_state = 177, .external_lex_state = 75}, - [4807] = {.lex_state = 177, .external_lex_state = 75}, - [4808] = {.lex_state = 177, .external_lex_state = 75}, - [4809] = {.lex_state = 177, .external_lex_state = 75}, - [4810] = {.lex_state = 177, .external_lex_state = 75}, - [4811] = {.lex_state = 177, .external_lex_state = 75}, - [4812] = {.lex_state = 177, .external_lex_state = 75}, - [4813] = {.lex_state = 177, .external_lex_state = 75}, - [4814] = {.lex_state = 177, .external_lex_state = 75}, - [4815] = {.lex_state = 177, .external_lex_state = 75}, - [4816] = {.lex_state = 177, .external_lex_state = 75}, - [4817] = {.lex_state = 177, .external_lex_state = 75}, - [4818] = {.lex_state = 177, .external_lex_state = 75}, - [4819] = {.lex_state = 177, .external_lex_state = 75}, - [4820] = {.lex_state = 177, .external_lex_state = 75}, - [4821] = {.lex_state = 177, .external_lex_state = 75}, - [4822] = {.lex_state = 177, .external_lex_state = 75}, - [4823] = {.lex_state = 177, .external_lex_state = 75}, - [4824] = {.lex_state = 177, .external_lex_state = 75}, - [4825] = {.lex_state = 177, .external_lex_state = 75}, - [4826] = {.lex_state = 177, .external_lex_state = 75}, - [4827] = {.lex_state = 177, .external_lex_state = 75}, - [4828] = {.lex_state = 177, .external_lex_state = 75}, - [4829] = {.lex_state = 177, .external_lex_state = 75}, - [4830] = {.lex_state = 177, .external_lex_state = 75}, - [4831] = {.lex_state = 177, .external_lex_state = 75}, - [4832] = {.lex_state = 177, .external_lex_state = 75}, - [4833] = {.lex_state = 177, .external_lex_state = 75}, - [4834] = {.lex_state = 177, .external_lex_state = 75}, - [4835] = {.lex_state = 177, .external_lex_state = 75}, - [4836] = {.lex_state = 177, .external_lex_state = 75}, - [4837] = {.lex_state = 177, .external_lex_state = 75}, - [4838] = {.lex_state = 177, .external_lex_state = 79}, - [4839] = {.lex_state = 177, .external_lex_state = 75}, - [4840] = {.lex_state = 177, .external_lex_state = 75}, - [4841] = {.lex_state = 177, .external_lex_state = 75}, - [4842] = {.lex_state = 177, .external_lex_state = 75}, - [4843] = {.lex_state = 177, .external_lex_state = 75}, - [4844] = {.lex_state = 47, .external_lex_state = 74}, - [4845] = {.lex_state = 33, .external_lex_state = 99}, - [4846] = {.lex_state = 177, .external_lex_state = 78}, - [4847] = {.lex_state = 33, .external_lex_state = 99}, - [4848] = {.lex_state = 33, .external_lex_state = 99}, - [4849] = {.lex_state = 33, .external_lex_state = 99}, - [4850] = {.lex_state = 177, .external_lex_state = 78}, - [4851] = {.lex_state = 33, .external_lex_state = 99}, - [4852] = {.lex_state = 177, .external_lex_state = 75}, - [4853] = {.lex_state = 33, .external_lex_state = 99}, - [4854] = {.lex_state = 177, .external_lex_state = 78}, - [4855] = {.lex_state = 177, .external_lex_state = 78}, - [4856] = {.lex_state = 33, .external_lex_state = 99}, - [4857] = {.lex_state = 177, .external_lex_state = 78}, - [4858] = {.lex_state = 33, .external_lex_state = 99}, - [4859] = {.lex_state = 33, .external_lex_state = 99}, - [4860] = {.lex_state = 177, .external_lex_state = 78}, - [4861] = {.lex_state = 33, .external_lex_state = 99}, - [4862] = {.lex_state = 177, .external_lex_state = 78}, - [4863] = {.lex_state = 177, .external_lex_state = 78}, - [4864] = {.lex_state = 177, .external_lex_state = 77}, - [4865] = {.lex_state = 177, .external_lex_state = 77}, - [4866] = {.lex_state = 177, .external_lex_state = 78}, - [4867] = {.lex_state = 181, .external_lex_state = 79}, - [4868] = {.lex_state = 33, .external_lex_state = 99}, - [4869] = {.lex_state = 177, .external_lex_state = 77}, - [4870] = {.lex_state = 183, .external_lex_state = 100}, - [4871] = {.lex_state = 177, .external_lex_state = 78}, - [4872] = {.lex_state = 33, .external_lex_state = 99}, - [4873] = {.lex_state = 177, .external_lex_state = 78}, - [4874] = {.lex_state = 177, .external_lex_state = 78}, - [4875] = {.lex_state = 33, .external_lex_state = 99}, - [4876] = {.lex_state = 177, .external_lex_state = 79}, - [4877] = {.lex_state = 177, .external_lex_state = 78}, - [4878] = {.lex_state = 33, .external_lex_state = 99}, - [4879] = {.lex_state = 177, .external_lex_state = 75}, - [4880] = {.lex_state = 33, .external_lex_state = 99}, - [4881] = {.lex_state = 177, .external_lex_state = 77}, - [4882] = {.lex_state = 177, .external_lex_state = 78}, - [4883] = {.lex_state = 177, .external_lex_state = 78}, + [4539] = {.lex_state = 47, .external_lex_state = 74}, + [4540] = {.lex_state = 47, .external_lex_state = 74}, + [4541] = {.lex_state = 182, .external_lex_state = 76}, + [4542] = {.lex_state = 47, .external_lex_state = 74}, + [4543] = {.lex_state = 47, .external_lex_state = 74}, + [4544] = {.lex_state = 47, .external_lex_state = 74}, + [4545] = {.lex_state = 184, .external_lex_state = 76}, + [4546] = {.lex_state = 47, .external_lex_state = 74}, + [4547] = {.lex_state = 178, .external_lex_state = 70}, + [4548] = {.lex_state = 178, .external_lex_state = 70}, + [4549] = {.lex_state = 178, .external_lex_state = 76}, + [4550] = {.lex_state = 47, .external_lex_state = 74}, + [4551] = {.lex_state = 47, .external_lex_state = 74}, + [4552] = {.lex_state = 47, .external_lex_state = 74}, + [4553] = {.lex_state = 47, .external_lex_state = 74}, + [4554] = {.lex_state = 47, .external_lex_state = 74}, + [4555] = {.lex_state = 47, .external_lex_state = 74}, + [4556] = {.lex_state = 47, .external_lex_state = 74}, + [4557] = {.lex_state = 47, .external_lex_state = 74}, + [4558] = {.lex_state = 184, .external_lex_state = 76}, + [4559] = {.lex_state = 47, .external_lex_state = 74}, + [4560] = {.lex_state = 178, .external_lex_state = 77}, + [4561] = {.lex_state = 47, .external_lex_state = 74}, + [4562] = {.lex_state = 47, .external_lex_state = 74}, + [4563] = {.lex_state = 178, .external_lex_state = 74}, + [4564] = {.lex_state = 47, .external_lex_state = 74}, + [4565] = {.lex_state = 178, .external_lex_state = 70}, + [4566] = {.lex_state = 47, .external_lex_state = 74}, + [4567] = {.lex_state = 184, .external_lex_state = 98}, + [4568] = {.lex_state = 178, .external_lex_state = 70}, + [4569] = {.lex_state = 178, .external_lex_state = 77}, + [4570] = {.lex_state = 47, .external_lex_state = 74}, + [4571] = {.lex_state = 178, .external_lex_state = 77}, + [4572] = {.lex_state = 178, .external_lex_state = 70}, + [4573] = {.lex_state = 178, .external_lex_state = 74}, + [4574] = {.lex_state = 47, .external_lex_state = 74}, + [4575] = {.lex_state = 47, .external_lex_state = 74}, + [4576] = {.lex_state = 178, .external_lex_state = 70}, + [4577] = {.lex_state = 47, .external_lex_state = 74}, + [4578] = {.lex_state = 47, .external_lex_state = 74}, + [4579] = {.lex_state = 47, .external_lex_state = 74}, + [4580] = {.lex_state = 47, .external_lex_state = 74}, + [4581] = {.lex_state = 47, .external_lex_state = 74}, + [4582] = {.lex_state = 47, .external_lex_state = 74}, + [4583] = {.lex_state = 178, .external_lex_state = 77}, + [4584] = {.lex_state = 47, .external_lex_state = 74}, + [4585] = {.lex_state = 47, .external_lex_state = 74}, + [4586] = {.lex_state = 178, .external_lex_state = 77}, + [4587] = {.lex_state = 47, .external_lex_state = 74}, + [4588] = {.lex_state = 47, .external_lex_state = 74}, + [4589] = {.lex_state = 47, .external_lex_state = 74}, + [4590] = {.lex_state = 178, .external_lex_state = 77}, + [4591] = {.lex_state = 178, .external_lex_state = 77}, + [4592] = {.lex_state = 47, .external_lex_state = 74}, + [4593] = {.lex_state = 47, .external_lex_state = 74}, + [4594] = {.lex_state = 47, .external_lex_state = 74}, + [4595] = {.lex_state = 47, .external_lex_state = 74}, + [4596] = {.lex_state = 178, .external_lex_state = 70}, + [4597] = {.lex_state = 47, .external_lex_state = 74}, + [4598] = {.lex_state = 178, .external_lex_state = 74}, + [4599] = {.lex_state = 178, .external_lex_state = 76}, + [4600] = {.lex_state = 47, .external_lex_state = 74}, + [4601] = {.lex_state = 178, .external_lex_state = 76}, + [4602] = {.lex_state = 47, .external_lex_state = 74}, + [4603] = {.lex_state = 47, .external_lex_state = 74}, + [4604] = {.lex_state = 47, .external_lex_state = 74}, + [4605] = {.lex_state = 178, .external_lex_state = 76}, + [4606] = {.lex_state = 178, .external_lex_state = 76}, + [4607] = {.lex_state = 178, .external_lex_state = 76}, + [4608] = {.lex_state = 178, .external_lex_state = 76}, + [4609] = {.lex_state = 178, .external_lex_state = 76}, + [4610] = {.lex_state = 178, .external_lex_state = 76}, + [4611] = {.lex_state = 178, .external_lex_state = 76}, + [4612] = {.lex_state = 185, .external_lex_state = 71}, + [4613] = {.lex_state = 178, .external_lex_state = 74}, + [4614] = {.lex_state = 178, .external_lex_state = 76}, + [4615] = {.lex_state = 178, .external_lex_state = 76}, + [4616] = {.lex_state = 25, .external_lex_state = 74}, + [4617] = {.lex_state = 178, .external_lex_state = 76}, + [4618] = {.lex_state = 178, .external_lex_state = 76}, + [4619] = {.lex_state = 185, .external_lex_state = 71}, + [4620] = {.lex_state = 178, .external_lex_state = 78}, + [4621] = {.lex_state = 178, .external_lex_state = 78}, + [4622] = {.lex_state = 178, .external_lex_state = 76}, + [4623] = {.lex_state = 185, .external_lex_state = 71}, + [4624] = {.lex_state = 185, .external_lex_state = 71}, + [4625] = {.lex_state = 178, .external_lex_state = 78}, + [4626] = {.lex_state = 185, .external_lex_state = 71}, + [4627] = {.lex_state = 185, .external_lex_state = 71}, + [4628] = {.lex_state = 185, .external_lex_state = 71}, + [4629] = {.lex_state = 185, .external_lex_state = 71}, + [4630] = {.lex_state = 185, .external_lex_state = 71}, + [4631] = {.lex_state = 185, .external_lex_state = 71}, + [4632] = {.lex_state = 178, .external_lex_state = 76}, + [4633] = {.lex_state = 185, .external_lex_state = 71}, + [4634] = {.lex_state = 178, .external_lex_state = 76}, + [4635] = {.lex_state = 178, .external_lex_state = 78}, + [4636] = {.lex_state = 185, .external_lex_state = 71}, + [4637] = {.lex_state = 185, .external_lex_state = 71}, + [4638] = {.lex_state = 185, .external_lex_state = 71}, + [4639] = {.lex_state = 185, .external_lex_state = 71}, + [4640] = {.lex_state = 185, .external_lex_state = 71}, + [4641] = {.lex_state = 185, .external_lex_state = 71}, + [4642] = {.lex_state = 185, .external_lex_state = 71}, + [4643] = {.lex_state = 185, .external_lex_state = 71}, + [4644] = {.lex_state = 178, .external_lex_state = 76}, + [4645] = {.lex_state = 178, .external_lex_state = 78}, + [4646] = {.lex_state = 178, .external_lex_state = 76}, + [4647] = {.lex_state = 178, .external_lex_state = 76}, + [4648] = {.lex_state = 178, .external_lex_state = 78}, + [4649] = {.lex_state = 178, .external_lex_state = 76}, + [4650] = {.lex_state = 178, .external_lex_state = 74}, + [4651] = {.lex_state = 178, .external_lex_state = 76}, + [4652] = {.lex_state = 178, .external_lex_state = 76}, + [4653] = {.lex_state = 178, .external_lex_state = 76}, + [4654] = {.lex_state = 178, .external_lex_state = 76}, + [4655] = {.lex_state = 178, .external_lex_state = 74}, + [4656] = {.lex_state = 178, .external_lex_state = 76}, + [4657] = {.lex_state = 178, .external_lex_state = 76}, + [4658] = {.lex_state = 178, .external_lex_state = 76}, + [4659] = {.lex_state = 178, .external_lex_state = 76}, + [4660] = {.lex_state = 178, .external_lex_state = 76}, + [4661] = {.lex_state = 178, .external_lex_state = 76}, + [4662] = {.lex_state = 178, .external_lex_state = 76}, + [4663] = {.lex_state = 178, .external_lex_state = 76}, + [4664] = {.lex_state = 178, .external_lex_state = 76}, + [4665] = {.lex_state = 178, .external_lex_state = 76}, + [4666] = {.lex_state = 178, .external_lex_state = 76}, + [4667] = {.lex_state = 178, .external_lex_state = 76}, + [4668] = {.lex_state = 178, .external_lex_state = 76}, + [4669] = {.lex_state = 178, .external_lex_state = 76}, + [4670] = {.lex_state = 47, .external_lex_state = 74}, + [4671] = {.lex_state = 178, .external_lex_state = 74}, + [4672] = {.lex_state = 178, .external_lex_state = 76}, + [4673] = {.lex_state = 178, .external_lex_state = 76}, + [4674] = {.lex_state = 178, .external_lex_state = 76}, + [4675] = {.lex_state = 47, .external_lex_state = 74}, + [4676] = {.lex_state = 178, .external_lex_state = 76}, + [4677] = {.lex_state = 47, .external_lex_state = 74}, + [4678] = {.lex_state = 178, .external_lex_state = 74}, + [4679] = {.lex_state = 178, .external_lex_state = 76}, + [4680] = {.lex_state = 178, .external_lex_state = 76}, + [4681] = {.lex_state = 178, .external_lex_state = 76}, + [4682] = {.lex_state = 178, .external_lex_state = 74}, + [4683] = {.lex_state = 178, .external_lex_state = 74}, + [4684] = {.lex_state = 178, .external_lex_state = 76}, + [4685] = {.lex_state = 178, .external_lex_state = 76}, + [4686] = {.lex_state = 178, .external_lex_state = 76}, + [4687] = {.lex_state = 178, .external_lex_state = 76}, + [4688] = {.lex_state = 178, .external_lex_state = 76}, + [4689] = {.lex_state = 178, .external_lex_state = 76}, + [4690] = {.lex_state = 178, .external_lex_state = 74}, + [4691] = {.lex_state = 178, .external_lex_state = 76}, + [4692] = {.lex_state = 178, .external_lex_state = 74}, + [4693] = {.lex_state = 178, .external_lex_state = 74}, + [4694] = {.lex_state = 178, .external_lex_state = 76}, + [4695] = {.lex_state = 178, .external_lex_state = 76}, + [4696] = {.lex_state = 178, .external_lex_state = 74}, + [4697] = {.lex_state = 178, .external_lex_state = 76}, + [4698] = {.lex_state = 178, .external_lex_state = 76}, + [4699] = {.lex_state = 178, .external_lex_state = 79}, + [4700] = {.lex_state = 178, .external_lex_state = 76}, + [4701] = {.lex_state = 178, .external_lex_state = 74}, + [4702] = {.lex_state = 178, .external_lex_state = 74}, + [4703] = {.lex_state = 178, .external_lex_state = 76}, + [4704] = {.lex_state = 178, .external_lex_state = 74}, + [4705] = {.lex_state = 185, .external_lex_state = 71}, + [4706] = {.lex_state = 178, .external_lex_state = 76}, + [4707] = {.lex_state = 185, .external_lex_state = 71}, + [4708] = {.lex_state = 178, .external_lex_state = 76}, + [4709] = {.lex_state = 178, .external_lex_state = 76}, + [4710] = {.lex_state = 178, .external_lex_state = 76}, + [4711] = {.lex_state = 178, .external_lex_state = 74}, + [4712] = {.lex_state = 178, .external_lex_state = 76}, + [4713] = {.lex_state = 178, .external_lex_state = 76}, + [4714] = {.lex_state = 178, .external_lex_state = 76}, + [4715] = {.lex_state = 178, .external_lex_state = 76}, + [4716] = {.lex_state = 178, .external_lex_state = 76}, + [4717] = {.lex_state = 178, .external_lex_state = 76}, + [4718] = {.lex_state = 178, .external_lex_state = 76}, + [4719] = {.lex_state = 178, .external_lex_state = 76}, + [4720] = {.lex_state = 178, .external_lex_state = 76}, + [4721] = {.lex_state = 178, .external_lex_state = 76}, + [4722] = {.lex_state = 178, .external_lex_state = 76}, + [4723] = {.lex_state = 178, .external_lex_state = 76}, + [4724] = {.lex_state = 178, .external_lex_state = 74}, + [4725] = {.lex_state = 178, .external_lex_state = 76}, + [4726] = {.lex_state = 178, .external_lex_state = 74}, + [4727] = {.lex_state = 178, .external_lex_state = 76}, + [4728] = {.lex_state = 178, .external_lex_state = 76}, + [4729] = {.lex_state = 178, .external_lex_state = 76}, + [4730] = {.lex_state = 178, .external_lex_state = 74}, + [4731] = {.lex_state = 178, .external_lex_state = 76}, + [4732] = {.lex_state = 178, .external_lex_state = 76}, + [4733] = {.lex_state = 178, .external_lex_state = 76}, + [4734] = {.lex_state = 178, .external_lex_state = 76}, + [4735] = {.lex_state = 178, .external_lex_state = 76}, + [4736] = {.lex_state = 178, .external_lex_state = 74}, + [4737] = {.lex_state = 178, .external_lex_state = 76}, + [4738] = {.lex_state = 178, .external_lex_state = 76}, + [4739] = {.lex_state = 178, .external_lex_state = 76}, + [4740] = {.lex_state = 178, .external_lex_state = 76}, + [4741] = {.lex_state = 178, .external_lex_state = 76}, + [4742] = {.lex_state = 178, .external_lex_state = 76}, + [4743] = {.lex_state = 178, .external_lex_state = 74}, + [4744] = {.lex_state = 178, .external_lex_state = 74}, + [4745] = {.lex_state = 178, .external_lex_state = 74}, + [4746] = {.lex_state = 178, .external_lex_state = 74}, + [4747] = {.lex_state = 178, .external_lex_state = 76}, + [4748] = {.lex_state = 178, .external_lex_state = 76}, + [4749] = {.lex_state = 178, .external_lex_state = 76}, + [4750] = {.lex_state = 178, .external_lex_state = 76}, + [4751] = {.lex_state = 178, .external_lex_state = 76}, + [4752] = {.lex_state = 178, .external_lex_state = 76}, + [4753] = {.lex_state = 178, .external_lex_state = 79}, + [4754] = {.lex_state = 178, .external_lex_state = 76}, + [4755] = {.lex_state = 178, .external_lex_state = 76}, + [4756] = {.lex_state = 171, .external_lex_state = 81}, + [4757] = {.lex_state = 178, .external_lex_state = 76}, + [4758] = {.lex_state = 178, .external_lex_state = 76}, + [4759] = {.lex_state = 178, .external_lex_state = 76}, + [4760] = {.lex_state = 178, .external_lex_state = 76}, + [4761] = {.lex_state = 178, .external_lex_state = 79}, + [4762] = {.lex_state = 178, .external_lex_state = 76}, + [4763] = {.lex_state = 178, .external_lex_state = 77}, + [4764] = {.lex_state = 171, .external_lex_state = 81}, + [4765] = {.lex_state = 178, .external_lex_state = 76}, + [4766] = {.lex_state = 178, .external_lex_state = 74}, + [4767] = {.lex_state = 178, .external_lex_state = 74}, + [4768] = {.lex_state = 182, .external_lex_state = 79}, + [4769] = {.lex_state = 178, .external_lex_state = 76}, + [4770] = {.lex_state = 178, .external_lex_state = 76}, + [4771] = {.lex_state = 178, .external_lex_state = 74}, + [4772] = {.lex_state = 178, .external_lex_state = 79}, + [4773] = {.lex_state = 178, .external_lex_state = 74}, + [4774] = {.lex_state = 178, .external_lex_state = 74}, + [4775] = {.lex_state = 178, .external_lex_state = 74}, + [4776] = {.lex_state = 182, .external_lex_state = 78}, + [4777] = {.lex_state = 178, .external_lex_state = 78}, + [4778] = {.lex_state = 178, .external_lex_state = 74}, + [4779] = {.lex_state = 171, .external_lex_state = 81}, + [4780] = {.lex_state = 178, .external_lex_state = 76}, + [4781] = {.lex_state = 178, .external_lex_state = 74}, + [4782] = {.lex_state = 178, .external_lex_state = 76}, + [4783] = {.lex_state = 178, .external_lex_state = 76}, + [4784] = {.lex_state = 178, .external_lex_state = 78}, + [4785] = {.lex_state = 178, .external_lex_state = 76}, + [4786] = {.lex_state = 178, .external_lex_state = 76}, + [4787] = {.lex_state = 178, .external_lex_state = 98}, + [4788] = {.lex_state = 185, .external_lex_state = 71}, + [4789] = {.lex_state = 185, .external_lex_state = 71}, + [4790] = {.lex_state = 178, .external_lex_state = 76}, + [4791] = {.lex_state = 185, .external_lex_state = 71}, + [4792] = {.lex_state = 178, .external_lex_state = 76}, + [4793] = {.lex_state = 185, .external_lex_state = 71}, + [4794] = {.lex_state = 178, .external_lex_state = 76}, + [4795] = {.lex_state = 178, .external_lex_state = 76}, + [4796] = {.lex_state = 178, .external_lex_state = 76}, + [4797] = {.lex_state = 178, .external_lex_state = 76}, + [4798] = {.lex_state = 178, .external_lex_state = 76}, + [4799] = {.lex_state = 178, .external_lex_state = 76}, + [4800] = {.lex_state = 48, .external_lex_state = 71}, + [4801] = {.lex_state = 178, .external_lex_state = 76}, + [4802] = {.lex_state = 171, .external_lex_state = 81}, + [4803] = {.lex_state = 178, .external_lex_state = 76}, + [4804] = {.lex_state = 58, .external_lex_state = 86}, + [4805] = {.lex_state = 178, .external_lex_state = 76}, + [4806] = {.lex_state = 171, .external_lex_state = 81}, + [4807] = {.lex_state = 178, .external_lex_state = 76}, + [4808] = {.lex_state = 178, .external_lex_state = 76}, + [4809] = {.lex_state = 178, .external_lex_state = 76}, + [4810] = {.lex_state = 178, .external_lex_state = 77}, + [4811] = {.lex_state = 178, .external_lex_state = 74}, + [4812] = {.lex_state = 178, .external_lex_state = 76}, + [4813] = {.lex_state = 178, .external_lex_state = 76}, + [4814] = {.lex_state = 178, .external_lex_state = 76}, + [4815] = {.lex_state = 178, .external_lex_state = 76}, + [4816] = {.lex_state = 178, .external_lex_state = 76}, + [4817] = {.lex_state = 178, .external_lex_state = 76}, + [4818] = {.lex_state = 178, .external_lex_state = 79}, + [4819] = {.lex_state = 178, .external_lex_state = 79}, + [4820] = {.lex_state = 178, .external_lex_state = 76}, + [4821] = {.lex_state = 178, .external_lex_state = 74}, + [4822] = {.lex_state = 178, .external_lex_state = 74}, + [4823] = {.lex_state = 178, .external_lex_state = 76}, + [4824] = {.lex_state = 178, .external_lex_state = 76}, + [4825] = {.lex_state = 178, .external_lex_state = 74}, + [4826] = {.lex_state = 178, .external_lex_state = 76}, + [4827] = {.lex_state = 178, .external_lex_state = 76}, + [4828] = {.lex_state = 178, .external_lex_state = 76}, + [4829] = {.lex_state = 178, .external_lex_state = 77}, + [4830] = {.lex_state = 178, .external_lex_state = 98}, + [4831] = {.lex_state = 178, .external_lex_state = 76}, + [4832] = {.lex_state = 178, .external_lex_state = 76}, + [4833] = {.lex_state = 178, .external_lex_state = 76}, + [4834] = {.lex_state = 178, .external_lex_state = 76}, + [4835] = {.lex_state = 178, .external_lex_state = 74}, + [4836] = {.lex_state = 178, .external_lex_state = 76}, + [4837] = {.lex_state = 178, .external_lex_state = 74}, + [4838] = {.lex_state = 178, .external_lex_state = 76}, + [4839] = {.lex_state = 178, .external_lex_state = 98}, + [4840] = {.lex_state = 178, .external_lex_state = 76}, + [4841] = {.lex_state = 178, .external_lex_state = 76}, + [4842] = {.lex_state = 178, .external_lex_state = 76}, + [4843] = {.lex_state = 178, .external_lex_state = 76}, + [4844] = {.lex_state = 178, .external_lex_state = 76}, + [4845] = {.lex_state = 178, .external_lex_state = 76}, + [4846] = {.lex_state = 178, .external_lex_state = 76}, + [4847] = {.lex_state = 178, .external_lex_state = 76}, + [4848] = {.lex_state = 178, .external_lex_state = 74}, + [4849] = {.lex_state = 178, .external_lex_state = 76}, + [4850] = {.lex_state = 178, .external_lex_state = 76}, + [4851] = {.lex_state = 178, .external_lex_state = 76}, + [4852] = {.lex_state = 178, .external_lex_state = 76}, + [4853] = {.lex_state = 178, .external_lex_state = 79}, + [4854] = {.lex_state = 178, .external_lex_state = 76}, + [4855] = {.lex_state = 178, .external_lex_state = 76}, + [4856] = {.lex_state = 178, .external_lex_state = 76}, + [4857] = {.lex_state = 178, .external_lex_state = 76}, + [4858] = {.lex_state = 178, .external_lex_state = 76}, + [4859] = {.lex_state = 178, .external_lex_state = 76}, + [4860] = {.lex_state = 178, .external_lex_state = 76}, + [4861] = {.lex_state = 47, .external_lex_state = 74}, + [4862] = {.lex_state = 178, .external_lex_state = 79}, + [4863] = {.lex_state = 178, .external_lex_state = 76}, + [4864] = {.lex_state = 178, .external_lex_state = 76}, + [4865] = {.lex_state = 178, .external_lex_state = 76}, + [4866] = {.lex_state = 178, .external_lex_state = 74}, + [4867] = {.lex_state = 178, .external_lex_state = 76}, + [4868] = {.lex_state = 178, .external_lex_state = 76}, + [4869] = {.lex_state = 47, .external_lex_state = 74}, + [4870] = {.lex_state = 178, .external_lex_state = 76}, + [4871] = {.lex_state = 178, .external_lex_state = 76}, + [4872] = {.lex_state = 178, .external_lex_state = 76}, + [4873] = {.lex_state = 178, .external_lex_state = 76}, + [4874] = {.lex_state = 178, .external_lex_state = 76}, + [4875] = {.lex_state = 178, .external_lex_state = 76}, + [4876] = {.lex_state = 178, .external_lex_state = 76}, + [4877] = {.lex_state = 178, .external_lex_state = 76}, + [4878] = {.lex_state = 178, .external_lex_state = 74}, + [4879] = {.lex_state = 178, .external_lex_state = 76}, + [4880] = {.lex_state = 178, .external_lex_state = 76}, + [4881] = {.lex_state = 178, .external_lex_state = 79}, + [4882] = {.lex_state = 178, .external_lex_state = 76}, + [4883] = {.lex_state = 178, .external_lex_state = 78}, [4884] = {.lex_state = 33, .external_lex_state = 99}, - [4885] = {.lex_state = 177, .external_lex_state = 78}, - [4886] = {.lex_state = 177, .external_lex_state = 75}, - [4887] = {.lex_state = 33, .external_lex_state = 99}, - [4888] = {.lex_state = 33, .external_lex_state = 99}, - [4889] = {.lex_state = 177, .external_lex_state = 79}, - [4890] = {.lex_state = 177, .external_lex_state = 74}, - [4891] = {.lex_state = 25, .external_lex_state = 74}, - [4892] = {.lex_state = 33, .external_lex_state = 99}, - [4893] = {.lex_state = 25, .external_lex_state = 74}, - [4894] = {.lex_state = 177, .external_lex_state = 74}, - [4895] = {.lex_state = 177, .external_lex_state = 79}, - [4896] = {.lex_state = 177, .external_lex_state = 78}, - [4897] = {.lex_state = 33, .external_lex_state = 99}, - [4898] = {.lex_state = 177, .external_lex_state = 75}, - [4899] = {.lex_state = 177, .external_lex_state = 75}, - [4900] = {.lex_state = 183, .external_lex_state = 97}, - [4901] = {.lex_state = 177, .external_lex_state = 74}, - [4902] = {.lex_state = 25, .external_lex_state = 74}, - [4903] = {.lex_state = 177, .external_lex_state = 75}, - [4904] = {.lex_state = 33, .external_lex_state = 99}, - [4905] = {.lex_state = 25, .external_lex_state = 74}, - [4906] = {.lex_state = 177, .external_lex_state = 75}, - [4907] = {.lex_state = 177, .external_lex_state = 75}, - [4908] = {.lex_state = 33, .external_lex_state = 99}, - [4909] = {.lex_state = 49, .external_lex_state = 88}, - [4910] = {.lex_state = 177, .external_lex_state = 75}, - [4911] = {.lex_state = 177, .external_lex_state = 75}, - [4912] = {.lex_state = 33, .external_lex_state = 99}, - [4913] = {.lex_state = 177, .external_lex_state = 77}, - [4914] = {.lex_state = 33, .external_lex_state = 99}, - [4915] = {.lex_state = 25, .external_lex_state = 74}, - [4916] = {.lex_state = 25, .external_lex_state = 74}, - [4917] = {.lex_state = 33, .external_lex_state = 99}, - [4918] = {.lex_state = 49, .external_lex_state = 73}, - [4919] = {.lex_state = 25, .external_lex_state = 74}, - [4920] = {.lex_state = 177, .external_lex_state = 79}, - [4921] = {.lex_state = 177, .external_lex_state = 79}, - [4922] = {.lex_state = 49, .external_lex_state = 88}, - [4923] = {.lex_state = 25, .external_lex_state = 74}, - [4924] = {.lex_state = 33, .external_lex_state = 99}, - [4925] = {.lex_state = 33, .external_lex_state = 99}, - [4926] = {.lex_state = 33, .external_lex_state = 99}, - [4927] = {.lex_state = 33, .external_lex_state = 99}, - [4928] = {.lex_state = 177, .external_lex_state = 79}, - [4929] = {.lex_state = 177, .external_lex_state = 79}, - [4930] = {.lex_state = 177, .external_lex_state = 79}, - [4931] = {.lex_state = 177, .external_lex_state = 79}, - [4932] = {.lex_state = 177, .external_lex_state = 79}, - [4933] = {.lex_state = 25, .external_lex_state = 74}, - [4934] = {.lex_state = 33, .external_lex_state = 99}, + [4885] = {.lex_state = 178, .external_lex_state = 77}, + [4886] = {.lex_state = 178, .external_lex_state = 77}, + [4887] = {.lex_state = 178, .external_lex_state = 77}, + [4888] = {.lex_state = 178, .external_lex_state = 78}, + [4889] = {.lex_state = 178, .external_lex_state = 77}, + [4890] = {.lex_state = 178, .external_lex_state = 77}, + [4891] = {.lex_state = 178, .external_lex_state = 78}, + [4892] = {.lex_state = 178, .external_lex_state = 76}, + [4893] = {.lex_state = 178, .external_lex_state = 76}, + [4894] = {.lex_state = 184, .external_lex_state = 98}, + [4895] = {.lex_state = 178, .external_lex_state = 76}, + [4896] = {.lex_state = 178, .external_lex_state = 76}, + [4897] = {.lex_state = 178, .external_lex_state = 76}, + [4898] = {.lex_state = 178, .external_lex_state = 76}, + [4899] = {.lex_state = 178, .external_lex_state = 76}, + [4900] = {.lex_state = 178, .external_lex_state = 76}, + [4901] = {.lex_state = 178, .external_lex_state = 79}, + [4902] = {.lex_state = 178, .external_lex_state = 76}, + [4903] = {.lex_state = 184, .external_lex_state = 98}, + [4904] = {.lex_state = 178, .external_lex_state = 76}, + [4905] = {.lex_state = 178, .external_lex_state = 76}, + [4906] = {.lex_state = 178, .external_lex_state = 76}, + [4907] = {.lex_state = 178, .external_lex_state = 76}, + [4908] = {.lex_state = 178, .external_lex_state = 76}, + [4909] = {.lex_state = 178, .external_lex_state = 76}, + [4910] = {.lex_state = 178, .external_lex_state = 76}, + [4911] = {.lex_state = 178, .external_lex_state = 76}, + [4912] = {.lex_state = 178, .external_lex_state = 76}, + [4913] = {.lex_state = 178, .external_lex_state = 76}, + [4914] = {.lex_state = 178, .external_lex_state = 76}, + [4915] = {.lex_state = 178, .external_lex_state = 76}, + [4916] = {.lex_state = 178, .external_lex_state = 76}, + [4917] = {.lex_state = 178, .external_lex_state = 76}, + [4918] = {.lex_state = 178, .external_lex_state = 78}, + [4919] = {.lex_state = 178, .external_lex_state = 79}, + [4920] = {.lex_state = 33, .external_lex_state = 99}, + [4921] = {.lex_state = 33, .external_lex_state = 99}, + [4922] = {.lex_state = 178, .external_lex_state = 76}, + [4923] = {.lex_state = 178, .external_lex_state = 78}, + [4924] = {.lex_state = 178, .external_lex_state = 79}, + [4925] = {.lex_state = 178, .external_lex_state = 76}, + [4926] = {.lex_state = 178, .external_lex_state = 76}, + [4927] = {.lex_state = 178, .external_lex_state = 76}, + [4928] = {.lex_state = 178, .external_lex_state = 79}, + [4929] = {.lex_state = 178, .external_lex_state = 79}, + [4930] = {.lex_state = 33, .external_lex_state = 99}, + [4931] = {.lex_state = 33, .external_lex_state = 99}, + [4932] = {.lex_state = 185, .external_lex_state = 86}, + [4933] = {.lex_state = 185, .external_lex_state = 86}, + [4934] = {.lex_state = 185, .external_lex_state = 86}, [4935] = {.lex_state = 33, .external_lex_state = 99}, [4936] = {.lex_state = 33, .external_lex_state = 99}, - [4937] = {.lex_state = 33, .external_lex_state = 99}, - [4938] = {.lex_state = 177, .external_lex_state = 75}, - [4939] = {.lex_state = 177, .external_lex_state = 79}, - [4940] = {.lex_state = 33, .external_lex_state = 99}, - [4941] = {.lex_state = 183, .external_lex_state = 97}, - [4942] = {.lex_state = 177, .external_lex_state = 79}, - [4943] = {.lex_state = 177, .external_lex_state = 79}, - [4944] = {.lex_state = 177, .external_lex_state = 79}, - [4945] = {.lex_state = 177, .external_lex_state = 79}, - [4946] = {.lex_state = 33, .external_lex_state = 99}, - [4947] = {.lex_state = 177, .external_lex_state = 78}, - [4948] = {.lex_state = 177, .external_lex_state = 79}, - [4949] = {.lex_state = 177, .external_lex_state = 79}, - [4950] = {.lex_state = 177, .external_lex_state = 77}, - [4951] = {.lex_state = 177, .external_lex_state = 77}, - [4952] = {.lex_state = 33, .external_lex_state = 99}, - [4953] = {.lex_state = 33, .external_lex_state = 99}, - [4954] = {.lex_state = 177, .external_lex_state = 78}, + [4937] = {.lex_state = 178, .external_lex_state = 77}, + [4938] = {.lex_state = 178, .external_lex_state = 77}, + [4939] = {.lex_state = 33, .external_lex_state = 99}, + [4940] = {.lex_state = 178, .external_lex_state = 78}, + [4941] = {.lex_state = 178, .external_lex_state = 78}, + [4942] = {.lex_state = 178, .external_lex_state = 78}, + [4943] = {.lex_state = 33, .external_lex_state = 99}, + [4944] = {.lex_state = 178, .external_lex_state = 78}, + [4945] = {.lex_state = 178, .external_lex_state = 78}, + [4946] = {.lex_state = 178, .external_lex_state = 78}, + [4947] = {.lex_state = 178, .external_lex_state = 78}, + [4948] = {.lex_state = 178, .external_lex_state = 78}, + [4949] = {.lex_state = 178, .external_lex_state = 78}, + [4950] = {.lex_state = 178, .external_lex_state = 78}, + [4951] = {.lex_state = 178, .external_lex_state = 78}, + [4952] = {.lex_state = 178, .external_lex_state = 78}, + [4953] = {.lex_state = 178, .external_lex_state = 78}, + [4954] = {.lex_state = 178, .external_lex_state = 78}, [4955] = {.lex_state = 33, .external_lex_state = 99}, [4956] = {.lex_state = 33, .external_lex_state = 99}, - [4957] = {.lex_state = 49, .external_lex_state = 88}, - [4958] = {.lex_state = 177, .external_lex_state = 75}, - [4959] = {.lex_state = 177, .external_lex_state = 75}, - [4960] = {.lex_state = 33, .external_lex_state = 99}, - [4961] = {.lex_state = 177, .external_lex_state = 75}, - [4962] = {.lex_state = 48, .external_lex_state = 73}, - [4963] = {.lex_state = 183, .external_lex_state = 88}, + [4957] = {.lex_state = 182, .external_lex_state = 79}, + [4958] = {.lex_state = 184, .external_lex_state = 100}, + [4959] = {.lex_state = 25, .external_lex_state = 74}, + [4960] = {.lex_state = 25, .external_lex_state = 74}, + [4961] = {.lex_state = 25, .external_lex_state = 74}, + [4962] = {.lex_state = 25, .external_lex_state = 74}, + [4963] = {.lex_state = 25, .external_lex_state = 74}, [4964] = {.lex_state = 33, .external_lex_state = 99}, - [4965] = {.lex_state = 33, .external_lex_state = 99}, - [4966] = {.lex_state = 177, .external_lex_state = 79}, - [4967] = {.lex_state = 33, .external_lex_state = 99}, - [4968] = {.lex_state = 181, .external_lex_state = 78}, - [4969] = {.lex_state = 177, .external_lex_state = 79}, - [4970] = {.lex_state = 177, .external_lex_state = 75}, - [4971] = {.lex_state = 177, .external_lex_state = 75}, - [4972] = {.lex_state = 177, .external_lex_state = 75}, - [4973] = {.lex_state = 177, .external_lex_state = 75}, - [4974] = {.lex_state = 177, .external_lex_state = 75}, - [4975] = {.lex_state = 177, .external_lex_state = 75}, - [4976] = {.lex_state = 177, .external_lex_state = 75}, - [4977] = {.lex_state = 177, .external_lex_state = 75}, - [4978] = {.lex_state = 177, .external_lex_state = 75}, - [4979] = {.lex_state = 177, .external_lex_state = 75}, - [4980] = {.lex_state = 177, .external_lex_state = 75}, - [4981] = {.lex_state = 183, .external_lex_state = 101}, - [4982] = {.lex_state = 177, .external_lex_state = 78}, - [4983] = {.lex_state = 177, .external_lex_state = 79}, - [4984] = {.lex_state = 177, .external_lex_state = 79}, + [4965] = {.lex_state = 25, .external_lex_state = 74}, + [4966] = {.lex_state = 25, .external_lex_state = 74}, + [4967] = {.lex_state = 25, .external_lex_state = 74}, + [4968] = {.lex_state = 25, .external_lex_state = 74}, + [4969] = {.lex_state = 185, .external_lex_state = 71}, + [4970] = {.lex_state = 178, .external_lex_state = 79}, + [4971] = {.lex_state = 178, .external_lex_state = 79}, + [4972] = {.lex_state = 178, .external_lex_state = 79}, + [4973] = {.lex_state = 178, .external_lex_state = 79}, + [4974] = {.lex_state = 178, .external_lex_state = 78}, + [4975] = {.lex_state = 178, .external_lex_state = 78}, + [4976] = {.lex_state = 178, .external_lex_state = 78}, + [4977] = {.lex_state = 178, .external_lex_state = 78}, + [4978] = {.lex_state = 33, .external_lex_state = 99}, + [4979] = {.lex_state = 178, .external_lex_state = 77}, + [4980] = {.lex_state = 178, .external_lex_state = 79}, + [4981] = {.lex_state = 178, .external_lex_state = 79}, + [4982] = {.lex_state = 185, .external_lex_state = 71}, + [4983] = {.lex_state = 178, .external_lex_state = 78}, + [4984] = {.lex_state = 178, .external_lex_state = 78}, [4985] = {.lex_state = 33, .external_lex_state = 99}, [4986] = {.lex_state = 33, .external_lex_state = 99}, - [4987] = {.lex_state = 177, .external_lex_state = 79}, - [4988] = {.lex_state = 177, .external_lex_state = 78}, - [4989] = {.lex_state = 177, .external_lex_state = 78}, - [4990] = {.lex_state = 177, .external_lex_state = 78}, + [4987] = {.lex_state = 33, .external_lex_state = 99}, + [4988] = {.lex_state = 33, .external_lex_state = 99}, + [4989] = {.lex_state = 33, .external_lex_state = 99}, + [4990] = {.lex_state = 33, .external_lex_state = 99}, [4991] = {.lex_state = 33, .external_lex_state = 99}, - [4992] = {.lex_state = 177, .external_lex_state = 77}, - [4993] = {.lex_state = 177, .external_lex_state = 79}, - [4994] = {.lex_state = 177, .external_lex_state = 77}, - [4995] = {.lex_state = 177, .external_lex_state = 75}, + [4992] = {.lex_state = 33, .external_lex_state = 99}, + [4993] = {.lex_state = 33, .external_lex_state = 99}, + [4994] = {.lex_state = 33, .external_lex_state = 99}, + [4995] = {.lex_state = 33, .external_lex_state = 99}, [4996] = {.lex_state = 33, .external_lex_state = 99}, - [4997] = {.lex_state = 177, .external_lex_state = 77}, - [4998] = {.lex_state = 177, .external_lex_state = 77}, + [4997] = {.lex_state = 33, .external_lex_state = 99}, + [4998] = {.lex_state = 33, .external_lex_state = 99}, [4999] = {.lex_state = 33, .external_lex_state = 99}, - [5000] = {.lex_state = 177, .external_lex_state = 77}, - [5001] = {.lex_state = 177, .external_lex_state = 77}, + [5000] = {.lex_state = 33, .external_lex_state = 99}, + [5001] = {.lex_state = 33, .external_lex_state = 99}, [5002] = {.lex_state = 33, .external_lex_state = 99}, - [5003] = {.lex_state = 177, .external_lex_state = 78}, - [5004] = {.lex_state = 170, .external_lex_state = 80}, - [5005] = {.lex_state = 177, .external_lex_state = 78}, - [5006] = {.lex_state = 177, .external_lex_state = 75}, - [5007] = {.lex_state = 33, .external_lex_state = 99}, + [5003] = {.lex_state = 33, .external_lex_state = 99}, + [5004] = {.lex_state = 33, .external_lex_state = 99}, + [5005] = {.lex_state = 182, .external_lex_state = 78}, + [5006] = {.lex_state = 184, .external_lex_state = 101}, + [5007] = {.lex_state = 178, .external_lex_state = 77}, [5008] = {.lex_state = 33, .external_lex_state = 99}, - [5009] = {.lex_state = 177, .external_lex_state = 79}, - [5010] = {.lex_state = 177, .external_lex_state = 77}, - [5011] = {.lex_state = 177, .external_lex_state = 77}, - [5012] = {.lex_state = 33, .external_lex_state = 99}, - [5013] = {.lex_state = 177, .external_lex_state = 79}, - [5014] = {.lex_state = 56, .external_lex_state = 88}, - [5015] = {.lex_state = 177, .external_lex_state = 77}, - [5016] = {.lex_state = 177, .external_lex_state = 102}, - [5017] = {.lex_state = 25, .external_lex_state = 74}, - [5018] = {.lex_state = 177, .external_lex_state = 102}, - [5019] = {.lex_state = 177, .external_lex_state = 77}, - [5020] = {.lex_state = 181, .external_lex_state = 77}, - [5021] = {.lex_state = 177, .external_lex_state = 77}, - [5022] = {.lex_state = 25, .external_lex_state = 74}, - [5023] = {.lex_state = 25, .external_lex_state = 74}, - [5024] = {.lex_state = 25, .external_lex_state = 74}, - [5025] = {.lex_state = 177, .external_lex_state = 77}, - [5026] = {.lex_state = 177, .external_lex_state = 77}, - [5027] = {.lex_state = 25, .external_lex_state = 74}, - [5028] = {.lex_state = 177, .external_lex_state = 77}, - [5029] = {.lex_state = 177, .external_lex_state = 77}, - [5030] = {.lex_state = 177, .external_lex_state = 77}, - [5031] = {.lex_state = 49, .external_lex_state = 73}, - [5032] = {.lex_state = 177, .external_lex_state = 77}, - [5033] = {.lex_state = 177, .external_lex_state = 77}, - [5034] = {.lex_state = 177, .external_lex_state = 77}, - [5035] = {.lex_state = 183, .external_lex_state = 77}, - [5036] = {.lex_state = 177, .external_lex_state = 101}, - [5037] = {.lex_state = 183, .external_lex_state = 77}, - [5038] = {.lex_state = 57, .external_lex_state = 88}, - [5039] = {.lex_state = 57, .external_lex_state = 88}, - [5040] = {.lex_state = 177, .external_lex_state = 101}, - [5041] = {.lex_state = 185, .external_lex_state = 103}, - [5042] = {.lex_state = 172, .external_lex_state = 80}, - [5043] = {.lex_state = 49, .external_lex_state = 73}, - [5044] = {.lex_state = 49, .external_lex_state = 73}, - [5045] = {.lex_state = 185, .external_lex_state = 103}, - [5046] = {.lex_state = 185, .external_lex_state = 103}, - [5047] = {.lex_state = 49, .external_lex_state = 73}, - [5048] = {.lex_state = 177, .external_lex_state = 79}, - [5049] = {.lex_state = 177, .external_lex_state = 101}, - [5050] = {.lex_state = 177, .external_lex_state = 74}, - [5051] = {.lex_state = 177, .external_lex_state = 74}, - [5052] = {.lex_state = 177, .external_lex_state = 74}, - [5053] = {.lex_state = 177, .external_lex_state = 74}, - [5054] = {.lex_state = 177, .external_lex_state = 74}, - [5055] = {.lex_state = 177, .external_lex_state = 74}, - [5056] = {.lex_state = 177, .external_lex_state = 74}, - [5057] = {.lex_state = 177, .external_lex_state = 74}, - [5058] = {.lex_state = 177, .external_lex_state = 74}, - [5059] = {.lex_state = 177, .external_lex_state = 74}, - [5060] = {.lex_state = 177, .external_lex_state = 74}, - [5061] = {.lex_state = 177, .external_lex_state = 74}, - [5062] = {.lex_state = 177, .external_lex_state = 74}, - [5063] = {.lex_state = 177, .external_lex_state = 74}, - [5064] = {.lex_state = 177, .external_lex_state = 74}, - [5065] = {.lex_state = 177, .external_lex_state = 74}, - [5066] = {.lex_state = 177, .external_lex_state = 74}, - [5067] = {.lex_state = 177, .external_lex_state = 74}, - [5068] = {.lex_state = 177, .external_lex_state = 77}, - [5069] = {.lex_state = 177, .external_lex_state = 100}, - [5070] = {.lex_state = 25, .external_lex_state = 74}, - [5071] = {.lex_state = 25, .external_lex_state = 74}, - [5072] = {.lex_state = 172, .external_lex_state = 80}, - [5073] = {.lex_state = 25, .external_lex_state = 74}, - [5074] = {.lex_state = 25, .external_lex_state = 74}, - [5075] = {.lex_state = 47, .external_lex_state = 88}, - [5076] = {.lex_state = 47, .external_lex_state = 88}, - [5077] = {.lex_state = 47, .external_lex_state = 88}, - [5078] = {.lex_state = 56, .external_lex_state = 88}, - [5079] = {.lex_state = 49, .external_lex_state = 73}, - [5080] = {.lex_state = 49, .external_lex_state = 73}, - [5081] = {.lex_state = 172, .external_lex_state = 80}, - [5082] = {.lex_state = 172, .external_lex_state = 80}, - [5083] = {.lex_state = 177, .external_lex_state = 77}, - [5084] = {.lex_state = 170, .external_lex_state = 80}, - [5085] = {.lex_state = 172, .external_lex_state = 80}, - [5086] = {.lex_state = 177, .external_lex_state = 100}, - [5087] = {.lex_state = 177, .external_lex_state = 77}, - [5088] = {.lex_state = 177, .external_lex_state = 77}, - [5089] = {.lex_state = 49, .external_lex_state = 73}, - [5090] = {.lex_state = 177, .external_lex_state = 77}, - [5091] = {.lex_state = 49, .external_lex_state = 73}, - [5092] = {.lex_state = 172, .external_lex_state = 80}, - [5093] = {.lex_state = 172, .external_lex_state = 80}, - [5094] = {.lex_state = 177, .external_lex_state = 77}, - [5095] = {.lex_state = 177, .external_lex_state = 100}, - [5096] = {.lex_state = 172, .external_lex_state = 80}, + [5009] = {.lex_state = 178, .external_lex_state = 77}, + [5010] = {.lex_state = 178, .external_lex_state = 77}, + [5011] = {.lex_state = 178, .external_lex_state = 77}, + [5012] = {.lex_state = 178, .external_lex_state = 77}, + [5013] = {.lex_state = 171, .external_lex_state = 81}, + [5014] = {.lex_state = 33, .external_lex_state = 99}, + [5015] = {.lex_state = 48, .external_lex_state = 71}, + [5016] = {.lex_state = 184, .external_lex_state = 86}, + [5017] = {.lex_state = 33, .external_lex_state = 99}, + [5018] = {.lex_state = 33, .external_lex_state = 99}, + [5019] = {.lex_state = 33, .external_lex_state = 99}, + [5020] = {.lex_state = 33, .external_lex_state = 99}, + [5021] = {.lex_state = 33, .external_lex_state = 99}, + [5022] = {.lex_state = 33, .external_lex_state = 99}, + [5023] = {.lex_state = 33, .external_lex_state = 99}, + [5024] = {.lex_state = 33, .external_lex_state = 99}, + [5025] = {.lex_state = 178, .external_lex_state = 79}, + [5026] = {.lex_state = 33, .external_lex_state = 99}, + [5027] = {.lex_state = 178, .external_lex_state = 74}, + [5028] = {.lex_state = 178, .external_lex_state = 77}, + [5029] = {.lex_state = 178, .external_lex_state = 74}, + [5030] = {.lex_state = 33, .external_lex_state = 99}, + [5031] = {.lex_state = 178, .external_lex_state = 79}, + [5032] = {.lex_state = 178, .external_lex_state = 79}, + [5033] = {.lex_state = 33, .external_lex_state = 99}, + [5034] = {.lex_state = 33, .external_lex_state = 99}, + [5035] = {.lex_state = 33, .external_lex_state = 99}, + [5036] = {.lex_state = 178, .external_lex_state = 79}, + [5037] = {.lex_state = 178, .external_lex_state = 79}, + [5038] = {.lex_state = 178, .external_lex_state = 79}, + [5039] = {.lex_state = 178, .external_lex_state = 79}, + [5040] = {.lex_state = 178, .external_lex_state = 79}, + [5041] = {.lex_state = 33, .external_lex_state = 99}, + [5042] = {.lex_state = 33, .external_lex_state = 99}, + [5043] = {.lex_state = 33, .external_lex_state = 99}, + [5044] = {.lex_state = 185, .external_lex_state = 71}, + [5045] = {.lex_state = 178, .external_lex_state = 79}, + [5046] = {.lex_state = 178, .external_lex_state = 79}, + [5047] = {.lex_state = 178, .external_lex_state = 79}, + [5048] = {.lex_state = 178, .external_lex_state = 79}, + [5049] = {.lex_state = 178, .external_lex_state = 79}, + [5050] = {.lex_state = 33, .external_lex_state = 99}, + [5051] = {.lex_state = 178, .external_lex_state = 77}, + [5052] = {.lex_state = 185, .external_lex_state = 71}, + [5053] = {.lex_state = 185, .external_lex_state = 71}, + [5054] = {.lex_state = 185, .external_lex_state = 71}, + [5055] = {.lex_state = 185, .external_lex_state = 71}, + [5056] = {.lex_state = 173, .external_lex_state = 81}, + [5057] = {.lex_state = 178, .external_lex_state = 77}, + [5058] = {.lex_state = 173, .external_lex_state = 81}, + [5059] = {.lex_state = 173, .external_lex_state = 81}, + [5060] = {.lex_state = 173, .external_lex_state = 81}, + [5061] = {.lex_state = 178, .external_lex_state = 77}, + [5062] = {.lex_state = 178, .external_lex_state = 77}, + [5063] = {.lex_state = 185, .external_lex_state = 71}, + [5064] = {.lex_state = 185, .external_lex_state = 71}, + [5065] = {.lex_state = 185, .external_lex_state = 71}, + [5066] = {.lex_state = 185, .external_lex_state = 71}, + [5067] = {.lex_state = 185, .external_lex_state = 71}, + [5068] = {.lex_state = 178, .external_lex_state = 77}, + [5069] = {.lex_state = 178, .external_lex_state = 77}, + [5070] = {.lex_state = 178, .external_lex_state = 77}, + [5071] = {.lex_state = 178, .external_lex_state = 77}, + [5072] = {.lex_state = 185, .external_lex_state = 71}, + [5073] = {.lex_state = 178, .external_lex_state = 100}, + [5074] = {.lex_state = 178, .external_lex_state = 77}, + [5075] = {.lex_state = 178, .external_lex_state = 77}, + [5076] = {.lex_state = 178, .external_lex_state = 77}, + [5077] = {.lex_state = 178, .external_lex_state = 77}, + [5078] = {.lex_state = 187, .external_lex_state = 102}, + [5079] = {.lex_state = 187, .external_lex_state = 102}, + [5080] = {.lex_state = 187, .external_lex_state = 102}, + [5081] = {.lex_state = 178, .external_lex_state = 79}, + [5082] = {.lex_state = 57, .external_lex_state = 86}, + [5083] = {.lex_state = 57, .external_lex_state = 86}, + [5084] = {.lex_state = 178, .external_lex_state = 77}, + [5085] = {.lex_state = 25, .external_lex_state = 74}, + [5086] = {.lex_state = 25, .external_lex_state = 74}, + [5087] = {.lex_state = 25, .external_lex_state = 74}, + [5088] = {.lex_state = 178, .external_lex_state = 78}, + [5089] = {.lex_state = 25, .external_lex_state = 74}, + [5090] = {.lex_state = 48, .external_lex_state = 74}, + [5091] = {.lex_state = 25, .external_lex_state = 74}, + [5092] = {.lex_state = 25, .external_lex_state = 74}, + [5093] = {.lex_state = 25, .external_lex_state = 74}, + [5094] = {.lex_state = 25, .external_lex_state = 74}, + [5095] = {.lex_state = 25, .external_lex_state = 74}, + [5096] = {.lex_state = 25, .external_lex_state = 74}, [5097] = {.lex_state = 25, .external_lex_state = 74}, - [5098] = {.lex_state = 177, .external_lex_state = 77}, - [5099] = {.lex_state = 25, .external_lex_state = 74}, - [5100] = {.lex_state = 49, .external_lex_state = 73}, - [5101] = {.lex_state = 177, .external_lex_state = 74}, - [5102] = {.lex_state = 183, .external_lex_state = 77}, - [5103] = {.lex_state = 177, .external_lex_state = 77}, - [5104] = {.lex_state = 177, .external_lex_state = 77}, - [5105] = {.lex_state = 177, .external_lex_state = 77}, - [5106] = {.lex_state = 177, .external_lex_state = 77}, - [5107] = {.lex_state = 177, .external_lex_state = 77}, - [5108] = {.lex_state = 177, .external_lex_state = 77}, - [5109] = {.lex_state = 177, .external_lex_state = 77}, - [5110] = {.lex_state = 177, .external_lex_state = 77}, - [5111] = {.lex_state = 177, .external_lex_state = 77}, - [5112] = {.lex_state = 177, .external_lex_state = 77}, - [5113] = {.lex_state = 177, .external_lex_state = 77}, - [5114] = {.lex_state = 177, .external_lex_state = 77}, - [5115] = {.lex_state = 48, .external_lex_state = 74}, - [5116] = {.lex_state = 177, .external_lex_state = 77}, - [5117] = {.lex_state = 177, .external_lex_state = 77}, - [5118] = {.lex_state = 177, .external_lex_state = 102}, - [5119] = {.lex_state = 57, .external_lex_state = 91}, - [5120] = {.lex_state = 177, .external_lex_state = 102}, - [5121] = {.lex_state = 177, .external_lex_state = 77}, - [5122] = {.lex_state = 177, .external_lex_state = 77}, - [5123] = {.lex_state = 177, .external_lex_state = 77}, - [5124] = {.lex_state = 25, .external_lex_state = 74}, - [5125] = {.lex_state = 49, .external_lex_state = 73}, - [5126] = {.lex_state = 177, .external_lex_state = 78}, - [5127] = {.lex_state = 49, .external_lex_state = 73}, - [5128] = {.lex_state = 177, .external_lex_state = 77}, - [5129] = {.lex_state = 49, .external_lex_state = 73}, - [5130] = {.lex_state = 49, .external_lex_state = 73}, - [5131] = {.lex_state = 49, .external_lex_state = 73}, - [5132] = {.lex_state = 25, .external_lex_state = 74}, - [5133] = {.lex_state = 49, .external_lex_state = 73}, - [5134] = {.lex_state = 25, .external_lex_state = 74}, - [5135] = {.lex_state = 25, .external_lex_state = 74}, - [5136] = {.lex_state = 25, .external_lex_state = 74}, - [5137] = {.lex_state = 25, .external_lex_state = 74}, - [5138] = {.lex_state = 25, .external_lex_state = 74}, - [5139] = {.lex_state = 25, .external_lex_state = 74}, - [5140] = {.lex_state = 25, .external_lex_state = 74}, - [5141] = {.lex_state = 177, .external_lex_state = 97}, - [5142] = {.lex_state = 25, .external_lex_state = 74}, - [5143] = {.lex_state = 25, .external_lex_state = 74}, - [5144] = {.lex_state = 25, .external_lex_state = 74}, - [5145] = {.lex_state = 25, .external_lex_state = 74}, - [5146] = {.lex_state = 25, .external_lex_state = 74}, - [5147] = {.lex_state = 177, .external_lex_state = 77}, - [5148] = {.lex_state = 177, .external_lex_state = 77}, - [5149] = {.lex_state = 177, .external_lex_state = 77}, - [5150] = {.lex_state = 177, .external_lex_state = 77}, - [5151] = {.lex_state = 177, .external_lex_state = 77}, - [5152] = {.lex_state = 177, .external_lex_state = 77}, - [5153] = {.lex_state = 177, .external_lex_state = 77}, - [5154] = {.lex_state = 177, .external_lex_state = 77}, - [5155] = {.lex_state = 177, .external_lex_state = 77}, - [5156] = {.lex_state = 177, .external_lex_state = 77}, - [5157] = {.lex_state = 177, .external_lex_state = 77}, - [5158] = {.lex_state = 177, .external_lex_state = 77}, - [5159] = {.lex_state = 177, .external_lex_state = 77}, - [5160] = {.lex_state = 177, .external_lex_state = 77}, - [5161] = {.lex_state = 177, .external_lex_state = 77}, - [5162] = {.lex_state = 177, .external_lex_state = 77}, - [5163] = {.lex_state = 177, .external_lex_state = 77}, - [5164] = {.lex_state = 183, .external_lex_state = 100}, - [5165] = {.lex_state = 177, .external_lex_state = 77}, - [5166] = {.lex_state = 49, .external_lex_state = 73}, - [5167] = {.lex_state = 177, .external_lex_state = 78}, - [5168] = {.lex_state = 49, .external_lex_state = 73}, - [5169] = {.lex_state = 177, .external_lex_state = 78}, - [5170] = {.lex_state = 177, .external_lex_state = 78}, - [5171] = {.lex_state = 177, .external_lex_state = 78}, - [5172] = {.lex_state = 177, .external_lex_state = 78}, - [5173] = {.lex_state = 177, .external_lex_state = 78}, - [5174] = {.lex_state = 177, .external_lex_state = 77}, - [5175] = {.lex_state = 56, .external_lex_state = 73}, - [5176] = {.lex_state = 177, .external_lex_state = 77}, - [5177] = {.lex_state = 177, .external_lex_state = 77}, - [5178] = {.lex_state = 25, .external_lex_state = 91}, - [5179] = {.lex_state = 181, .external_lex_state = 80}, - [5180] = {.lex_state = 177, .external_lex_state = 79}, - [5181] = {.lex_state = 49, .external_lex_state = 73}, - [5182] = {.lex_state = 177, .external_lex_state = 77}, - [5183] = {.lex_state = 49, .external_lex_state = 73}, - [5184] = {.lex_state = 49, .external_lex_state = 73}, - [5185] = {.lex_state = 183, .external_lex_state = 104}, - [5186] = {.lex_state = 177, .external_lex_state = 77}, - [5187] = {.lex_state = 177, .external_lex_state = 77}, - [5188] = {.lex_state = 57, .external_lex_state = 73}, - [5189] = {.lex_state = 57, .external_lex_state = 73}, - [5190] = {.lex_state = 49, .external_lex_state = 73}, - [5191] = {.lex_state = 25, .external_lex_state = 74}, - [5192] = {.lex_state = 49, .external_lex_state = 90}, - [5193] = {.lex_state = 177, .external_lex_state = 77}, - [5194] = {.lex_state = 49, .external_lex_state = 73}, - [5195] = {.lex_state = 172, .external_lex_state = 80}, - [5196] = {.lex_state = 172, .external_lex_state = 80}, - [5197] = {.lex_state = 172, .external_lex_state = 80}, - [5198] = {.lex_state = 172, .external_lex_state = 80}, - [5199] = {.lex_state = 177, .external_lex_state = 77}, - [5200] = {.lex_state = 185, .external_lex_state = 103}, - [5201] = {.lex_state = 177, .external_lex_state = 77}, - [5202] = {.lex_state = 177, .external_lex_state = 77}, - [5203] = {.lex_state = 49, .external_lex_state = 73}, - [5204] = {.lex_state = 185, .external_lex_state = 103}, - [5205] = {.lex_state = 185, .external_lex_state = 103}, - [5206] = {.lex_state = 177, .external_lex_state = 77}, - [5207] = {.lex_state = 49, .external_lex_state = 90}, - [5208] = {.lex_state = 49, .external_lex_state = 73}, - [5209] = {.lex_state = 49, .external_lex_state = 73}, - [5210] = {.lex_state = 183, .external_lex_state = 101}, - [5211] = {.lex_state = 177, .external_lex_state = 77}, - [5212] = {.lex_state = 177, .external_lex_state = 77}, - [5213] = {.lex_state = 177, .external_lex_state = 77}, - [5214] = {.lex_state = 177, .external_lex_state = 77}, - [5215] = {.lex_state = 49, .external_lex_state = 73}, - [5216] = {.lex_state = 177, .external_lex_state = 77}, - [5217] = {.lex_state = 177, .external_lex_state = 77}, - [5218] = {.lex_state = 177, .external_lex_state = 77}, - [5219] = {.lex_state = 177, .external_lex_state = 77}, - [5220] = {.lex_state = 177, .external_lex_state = 77}, - [5221] = {.lex_state = 177, .external_lex_state = 77}, - [5222] = {.lex_state = 177, .external_lex_state = 77}, - [5223] = {.lex_state = 177, .external_lex_state = 77}, - [5224] = {.lex_state = 177, .external_lex_state = 77}, - [5225] = {.lex_state = 177, .external_lex_state = 77}, - [5226] = {.lex_state = 177, .external_lex_state = 77}, - [5227] = {.lex_state = 177, .external_lex_state = 77}, - [5228] = {.lex_state = 177, .external_lex_state = 77}, - [5229] = {.lex_state = 177, .external_lex_state = 77}, - [5230] = {.lex_state = 49, .external_lex_state = 73}, - [5231] = {.lex_state = 177, .external_lex_state = 77}, - [5232] = {.lex_state = 49, .external_lex_state = 73}, - [5233] = {.lex_state = 177, .external_lex_state = 77}, - [5234] = {.lex_state = 177, .external_lex_state = 77}, - [5235] = {.lex_state = 49, .external_lex_state = 73}, - [5236] = {.lex_state = 177, .external_lex_state = 77}, - [5237] = {.lex_state = 177, .external_lex_state = 77}, - [5238] = {.lex_state = 177, .external_lex_state = 77}, - [5239] = {.lex_state = 172, .external_lex_state = 80}, - [5240] = {.lex_state = 177, .external_lex_state = 77}, - [5241] = {.lex_state = 177, .external_lex_state = 77}, - [5242] = {.lex_state = 177, .external_lex_state = 77}, - [5243] = {.lex_state = 177, .external_lex_state = 77}, - [5244] = {.lex_state = 177, .external_lex_state = 77}, - [5245] = {.lex_state = 177, .external_lex_state = 77}, - [5246] = {.lex_state = 49, .external_lex_state = 73}, - [5247] = {.lex_state = 49, .external_lex_state = 73}, - [5248] = {.lex_state = 177, .external_lex_state = 79}, - [5249] = {.lex_state = 49, .external_lex_state = 73}, - [5250] = {.lex_state = 49, .external_lex_state = 73}, - [5251] = {.lex_state = 177, .external_lex_state = 77}, - [5252] = {.lex_state = 177, .external_lex_state = 77}, - [5253] = {.lex_state = 177, .external_lex_state = 77}, - [5254] = {.lex_state = 177, .external_lex_state = 78}, - [5255] = {.lex_state = 172, .external_lex_state = 80}, - [5256] = {.lex_state = 177, .external_lex_state = 77}, - [5257] = {.lex_state = 177, .external_lex_state = 77}, - [5258] = {.lex_state = 177, .external_lex_state = 77}, - [5259] = {.lex_state = 25, .external_lex_state = 91}, - [5260] = {.lex_state = 177, .external_lex_state = 77}, - [5261] = {.lex_state = 177, .external_lex_state = 77}, - [5262] = {.lex_state = 177, .external_lex_state = 77}, - [5263] = {.lex_state = 177, .external_lex_state = 77}, - [5264] = {.lex_state = 177, .external_lex_state = 77}, - [5265] = {.lex_state = 177, .external_lex_state = 77}, - [5266] = {.lex_state = 177, .external_lex_state = 77}, - [5267] = {.lex_state = 172, .external_lex_state = 80}, - [5268] = {.lex_state = 177, .external_lex_state = 77}, - [5269] = {.lex_state = 172, .external_lex_state = 79}, - [5270] = {.lex_state = 177, .external_lex_state = 77}, - [5271] = {.lex_state = 177, .external_lex_state = 77}, - [5272] = {.lex_state = 177, .external_lex_state = 77}, - [5273] = {.lex_state = 177, .external_lex_state = 77}, - [5274] = {.lex_state = 177, .external_lex_state = 77}, - [5275] = {.lex_state = 177, .external_lex_state = 77}, - [5276] = {.lex_state = 49, .external_lex_state = 73}, - [5277] = {.lex_state = 177, .external_lex_state = 77}, - [5278] = {.lex_state = 172, .external_lex_state = 80}, - [5279] = {.lex_state = 177, .external_lex_state = 77}, - [5280] = {.lex_state = 183, .external_lex_state = 101}, - [5281] = {.lex_state = 172, .external_lex_state = 80}, - [5282] = {.lex_state = 49, .external_lex_state = 73}, - [5283] = {.lex_state = 48, .external_lex_state = 73}, - [5284] = {.lex_state = 177, .external_lex_state = 77}, - [5285] = {.lex_state = 177, .external_lex_state = 77}, - [5286] = {.lex_state = 172, .external_lex_state = 80}, - [5287] = {.lex_state = 172, .external_lex_state = 80}, - [5288] = {.lex_state = 49, .external_lex_state = 90}, - [5289] = {.lex_state = 177, .external_lex_state = 77}, - [5290] = {.lex_state = 56, .external_lex_state = 73}, - [5291] = {.lex_state = 177, .external_lex_state = 77}, - [5292] = {.lex_state = 177, .external_lex_state = 77}, - [5293] = {.lex_state = 177, .external_lex_state = 77}, - [5294] = {.lex_state = 177, .external_lex_state = 77}, - [5295] = {.lex_state = 177, .external_lex_state = 77}, - [5296] = {.lex_state = 177, .external_lex_state = 77}, - [5297] = {.lex_state = 49, .external_lex_state = 73}, - [5298] = {.lex_state = 49, .external_lex_state = 90}, - [5299] = {.lex_state = 49, .external_lex_state = 73}, - [5300] = {.lex_state = 49, .external_lex_state = 73}, - [5301] = {.lex_state = 49, .external_lex_state = 73}, - [5302] = {.lex_state = 172, .external_lex_state = 80}, - [5303] = {.lex_state = 172, .external_lex_state = 80}, - [5304] = {.lex_state = 172, .external_lex_state = 80}, - [5305] = {.lex_state = 172, .external_lex_state = 80}, - [5306] = {.lex_state = 172, .external_lex_state = 80}, - [5307] = {.lex_state = 177, .external_lex_state = 77}, - [5308] = {.lex_state = 177, .external_lex_state = 77}, - [5309] = {.lex_state = 177, .external_lex_state = 77}, - [5310] = {.lex_state = 177, .external_lex_state = 77}, - [5311] = {.lex_state = 177, .external_lex_state = 77}, - [5312] = {.lex_state = 177, .external_lex_state = 77}, - [5313] = {.lex_state = 177, .external_lex_state = 77}, - [5314] = {.lex_state = 177, .external_lex_state = 77}, - [5315] = {.lex_state = 177, .external_lex_state = 77}, - [5316] = {.lex_state = 177, .external_lex_state = 77}, - [5317] = {.lex_state = 48, .external_lex_state = 74}, - [5318] = {.lex_state = 49, .external_lex_state = 73}, - [5319] = {.lex_state = 183, .external_lex_state = 91}, - [5320] = {.lex_state = 172, .external_lex_state = 80}, - [5321] = {.lex_state = 172, .external_lex_state = 80}, - [5322] = {.lex_state = 172, .external_lex_state = 80}, - [5323] = {.lex_state = 172, .external_lex_state = 80}, - [5324] = {.lex_state = 177, .external_lex_state = 77}, - [5325] = {.lex_state = 177, .external_lex_state = 77}, - [5326] = {.lex_state = 177, .external_lex_state = 77}, - [5327] = {.lex_state = 177, .external_lex_state = 77}, - [5328] = {.lex_state = 177, .external_lex_state = 77}, - [5329] = {.lex_state = 172, .external_lex_state = 80}, - [5330] = {.lex_state = 172, .external_lex_state = 80}, - [5331] = {.lex_state = 177, .external_lex_state = 77}, - [5332] = {.lex_state = 177, .external_lex_state = 77}, - [5333] = {.lex_state = 49, .external_lex_state = 73}, - [5334] = {.lex_state = 177, .external_lex_state = 77}, - [5335] = {.lex_state = 172, .external_lex_state = 80}, - [5336] = {.lex_state = 57, .external_lex_state = 73}, - [5337] = {.lex_state = 177, .external_lex_state = 77}, - [5338] = {.lex_state = 177, .external_lex_state = 77}, - [5339] = {.lex_state = 177, .external_lex_state = 77}, - [5340] = {.lex_state = 177, .external_lex_state = 77}, - [5341] = {.lex_state = 177, .external_lex_state = 77}, - [5342] = {.lex_state = 177, .external_lex_state = 77}, - [5343] = {.lex_state = 183, .external_lex_state = 100}, - [5344] = {.lex_state = 177, .external_lex_state = 77}, - [5345] = {.lex_state = 177, .external_lex_state = 77}, - [5346] = {.lex_state = 177, .external_lex_state = 77}, - [5347] = {.lex_state = 177, .external_lex_state = 77}, - [5348] = {.lex_state = 177, .external_lex_state = 77}, - [5349] = {.lex_state = 177, .external_lex_state = 77}, - [5350] = {.lex_state = 177, .external_lex_state = 77}, - [5351] = {.lex_state = 177, .external_lex_state = 77}, - [5352] = {.lex_state = 177, .external_lex_state = 77}, - [5353] = {.lex_state = 177, .external_lex_state = 77}, - [5354] = {.lex_state = 177, .external_lex_state = 77}, - [5355] = {.lex_state = 177, .external_lex_state = 77}, - [5356] = {.lex_state = 177, .external_lex_state = 77}, - [5357] = {.lex_state = 177, .external_lex_state = 77}, - [5358] = {.lex_state = 177, .external_lex_state = 77}, - [5359] = {.lex_state = 177, .external_lex_state = 77}, - [5360] = {.lex_state = 177, .external_lex_state = 77}, - [5361] = {.lex_state = 177, .external_lex_state = 77}, - [5362] = {.lex_state = 177, .external_lex_state = 77}, - [5363] = {.lex_state = 177, .external_lex_state = 77}, - [5364] = {.lex_state = 177, .external_lex_state = 77}, - [5365] = {.lex_state = 177, .external_lex_state = 77}, - [5366] = {.lex_state = 177, .external_lex_state = 77}, - [5367] = {.lex_state = 49, .external_lex_state = 73}, - [5368] = {.lex_state = 177, .external_lex_state = 77}, - [5369] = {.lex_state = 177, .external_lex_state = 77}, - [5370] = {.lex_state = 177, .external_lex_state = 77}, - [5371] = {.lex_state = 177, .external_lex_state = 77}, - [5372] = {.lex_state = 49, .external_lex_state = 73}, - [5373] = {.lex_state = 177, .external_lex_state = 77}, - [5374] = {.lex_state = 177, .external_lex_state = 77}, - [5375] = {.lex_state = 177, .external_lex_state = 77}, - [5376] = {.lex_state = 177, .external_lex_state = 77}, - [5377] = {.lex_state = 177, .external_lex_state = 77}, - [5378] = {.lex_state = 177, .external_lex_state = 77}, - [5379] = {.lex_state = 177, .external_lex_state = 78}, - [5380] = {.lex_state = 177, .external_lex_state = 78}, - [5381] = {.lex_state = 177, .external_lex_state = 77}, - [5382] = {.lex_state = 177, .external_lex_state = 77}, - [5383] = {.lex_state = 177, .external_lex_state = 77}, - [5384] = {.lex_state = 49, .external_lex_state = 88}, - [5385] = {.lex_state = 177, .external_lex_state = 78}, - [5386] = {.lex_state = 177, .external_lex_state = 78}, - [5387] = {.lex_state = 49, .external_lex_state = 73}, - [5388] = {.lex_state = 177, .external_lex_state = 77}, - [5389] = {.lex_state = 49, .external_lex_state = 73}, - [5390] = {.lex_state = 177, .external_lex_state = 77}, - [5391] = {.lex_state = 177, .external_lex_state = 78}, - [5392] = {.lex_state = 177, .external_lex_state = 77}, - [5393] = {.lex_state = 177, .external_lex_state = 77}, - [5394] = {.lex_state = 25, .external_lex_state = 91}, - [5395] = {.lex_state = 49, .external_lex_state = 73}, - [5396] = {.lex_state = 49, .external_lex_state = 73}, - [5397] = {.lex_state = 49, .external_lex_state = 73}, - [5398] = {.lex_state = 49, .external_lex_state = 73}, - [5399] = {.lex_state = 177, .external_lex_state = 78}, - [5400] = {.lex_state = 177, .external_lex_state = 77}, - [5401] = {.lex_state = 177, .external_lex_state = 77}, - [5402] = {.lex_state = 172, .external_lex_state = 80}, - [5403] = {.lex_state = 172, .external_lex_state = 80}, - [5404] = {.lex_state = 177, .external_lex_state = 77}, - [5405] = {.lex_state = 177, .external_lex_state = 77}, - [5406] = {.lex_state = 177, .external_lex_state = 78}, - [5407] = {.lex_state = 177, .external_lex_state = 77}, - [5408] = {.lex_state = 177, .external_lex_state = 77}, - [5409] = {.lex_state = 177, .external_lex_state = 77}, - [5410] = {.lex_state = 177, .external_lex_state = 77}, - [5411] = {.lex_state = 177, .external_lex_state = 77}, - [5412] = {.lex_state = 177, .external_lex_state = 77}, - [5413] = {.lex_state = 177, .external_lex_state = 77}, - [5414] = {.lex_state = 177, .external_lex_state = 77}, - [5415] = {.lex_state = 177, .external_lex_state = 77}, - [5416] = {.lex_state = 177, .external_lex_state = 77}, - [5417] = {.lex_state = 177, .external_lex_state = 77}, - [5418] = {.lex_state = 177, .external_lex_state = 77}, - [5419] = {.lex_state = 177, .external_lex_state = 77}, - [5420] = {.lex_state = 177, .external_lex_state = 77}, - [5421] = {.lex_state = 177, .external_lex_state = 77}, - [5422] = {.lex_state = 49, .external_lex_state = 73}, - [5423] = {.lex_state = 177, .external_lex_state = 77}, - [5424] = {.lex_state = 177, .external_lex_state = 77}, - [5425] = {.lex_state = 177, .external_lex_state = 77}, - [5426] = {.lex_state = 177, .external_lex_state = 77}, - [5427] = {.lex_state = 177, .external_lex_state = 77}, - [5428] = {.lex_state = 177, .external_lex_state = 78}, - [5429] = {.lex_state = 177, .external_lex_state = 77}, - [5430] = {.lex_state = 177, .external_lex_state = 77}, - [5431] = {.lex_state = 177, .external_lex_state = 77}, - [5432] = {.lex_state = 177, .external_lex_state = 77}, - [5433] = {.lex_state = 177, .external_lex_state = 77}, - [5434] = {.lex_state = 177, .external_lex_state = 77}, - [5435] = {.lex_state = 177, .external_lex_state = 77}, - [5436] = {.lex_state = 177, .external_lex_state = 77}, - [5437] = {.lex_state = 49, .external_lex_state = 73}, - [5438] = {.lex_state = 177, .external_lex_state = 78}, - [5439] = {.lex_state = 185, .external_lex_state = 105}, - [5440] = {.lex_state = 47, .external_lex_state = 73}, - [5441] = {.lex_state = 49, .external_lex_state = 73}, - [5442] = {.lex_state = 49, .external_lex_state = 73}, - [5443] = {.lex_state = 49, .external_lex_state = 73}, - [5444] = {.lex_state = 49, .external_lex_state = 73}, - [5445] = {.lex_state = 177, .external_lex_state = 78}, - [5446] = {.lex_state = 177, .external_lex_state = 96}, - [5447] = {.lex_state = 49, .external_lex_state = 73}, - [5448] = {.lex_state = 49, .external_lex_state = 73}, - [5449] = {.lex_state = 49, .external_lex_state = 73}, - [5450] = {.lex_state = 49, .external_lex_state = 73}, - [5451] = {.lex_state = 177, .external_lex_state = 78}, - [5452] = {.lex_state = 49, .external_lex_state = 73}, - [5453] = {.lex_state = 49, .external_lex_state = 73}, - [5454] = {.lex_state = 49, .external_lex_state = 73}, - [5455] = {.lex_state = 49, .external_lex_state = 73}, - [5456] = {.lex_state = 177, .external_lex_state = 78}, - [5457] = {.lex_state = 49, .external_lex_state = 73}, - [5458] = {.lex_state = 49, .external_lex_state = 73}, - [5459] = {.lex_state = 49, .external_lex_state = 73}, - [5460] = {.lex_state = 177, .external_lex_state = 78}, - [5461] = {.lex_state = 177, .external_lex_state = 73}, - [5462] = {.lex_state = 177, .external_lex_state = 73}, - [5463] = {.lex_state = 49, .external_lex_state = 73}, - [5464] = {.lex_state = 49, .external_lex_state = 73}, - [5465] = {.lex_state = 177, .external_lex_state = 79}, - [5466] = {.lex_state = 49, .external_lex_state = 73}, - [5467] = {.lex_state = 177, .external_lex_state = 79}, - [5468] = {.lex_state = 172, .external_lex_state = 80}, - [5469] = {.lex_state = 177, .external_lex_state = 79}, - [5470] = {.lex_state = 49, .external_lex_state = 73}, - [5471] = {.lex_state = 177, .external_lex_state = 78}, - [5472] = {.lex_state = 49, .external_lex_state = 73}, - [5473] = {.lex_state = 49, .external_lex_state = 73}, - [5474] = {.lex_state = 49, .external_lex_state = 73}, - [5475] = {.lex_state = 49, .external_lex_state = 73}, - [5476] = {.lex_state = 49, .external_lex_state = 73}, - [5477] = {.lex_state = 49, .external_lex_state = 73}, - [5478] = {.lex_state = 49, .external_lex_state = 73}, - [5479] = {.lex_state = 49, .external_lex_state = 73}, - [5480] = {.lex_state = 49, .external_lex_state = 73}, - [5481] = {.lex_state = 177, .external_lex_state = 78}, - [5482] = {.lex_state = 177, .external_lex_state = 79}, - [5483] = {.lex_state = 49, .external_lex_state = 73}, - [5484] = {.lex_state = 49, .external_lex_state = 73}, - [5485] = {.lex_state = 49, .external_lex_state = 73}, - [5486] = {.lex_state = 177, .external_lex_state = 100}, - [5487] = {.lex_state = 177, .external_lex_state = 78}, - [5488] = {.lex_state = 49, .external_lex_state = 73}, - [5489] = {.lex_state = 49, .external_lex_state = 73}, - [5490] = {.lex_state = 49, .external_lex_state = 73}, - [5491] = {.lex_state = 172, .external_lex_state = 104}, - [5492] = {.lex_state = 49, .external_lex_state = 73}, - [5493] = {.lex_state = 49, .external_lex_state = 73}, - [5494] = {.lex_state = 49, .external_lex_state = 73}, - [5495] = {.lex_state = 49, .external_lex_state = 73}, - [5496] = {.lex_state = 49, .external_lex_state = 73}, - [5497] = {.lex_state = 49, .external_lex_state = 73}, - [5498] = {.lex_state = 49, .external_lex_state = 73}, - [5499] = {.lex_state = 49, .external_lex_state = 73}, - [5500] = {.lex_state = 49, .external_lex_state = 73}, - [5501] = {.lex_state = 49, .external_lex_state = 73}, - [5502] = {.lex_state = 47, .external_lex_state = 73}, - [5503] = {.lex_state = 49, .external_lex_state = 73}, - [5504] = {.lex_state = 49, .external_lex_state = 73}, - [5505] = {.lex_state = 49, .external_lex_state = 73}, - [5506] = {.lex_state = 49, .external_lex_state = 73}, - [5507] = {.lex_state = 49, .external_lex_state = 73}, - [5508] = {.lex_state = 49, .external_lex_state = 73}, - [5509] = {.lex_state = 47, .external_lex_state = 73}, - [5510] = {.lex_state = 49, .external_lex_state = 73}, - [5511] = {.lex_state = 49, .external_lex_state = 73}, - [5512] = {.lex_state = 49, .external_lex_state = 73}, - [5513] = {.lex_state = 177, .external_lex_state = 78}, - [5514] = {.lex_state = 49, .external_lex_state = 73}, - [5515] = {.lex_state = 49, .external_lex_state = 73}, - [5516] = {.lex_state = 177, .external_lex_state = 78}, - [5517] = {.lex_state = 177, .external_lex_state = 78}, - [5518] = {.lex_state = 49, .external_lex_state = 73}, - [5519] = {.lex_state = 177, .external_lex_state = 73}, - [5520] = {.lex_state = 177, .external_lex_state = 73}, - [5521] = {.lex_state = 49, .external_lex_state = 73}, - [5522] = {.lex_state = 47, .external_lex_state = 73}, - [5523] = {.lex_state = 183, .external_lex_state = 79}, - [5524] = {.lex_state = 49, .external_lex_state = 73}, - [5525] = {.lex_state = 47, .external_lex_state = 73}, - [5526] = {.lex_state = 177, .external_lex_state = 79}, - [5527] = {.lex_state = 47, .external_lex_state = 73}, - [5528] = {.lex_state = 49, .external_lex_state = 73}, - [5529] = {.lex_state = 177, .external_lex_state = 106}, - [5530] = {.lex_state = 47, .external_lex_state = 73}, - [5531] = {.lex_state = 49, .external_lex_state = 73}, - [5532] = {.lex_state = 49, .external_lex_state = 73}, - [5533] = {.lex_state = 49, .external_lex_state = 73}, - [5534] = {.lex_state = 49, .external_lex_state = 73}, - [5535] = {.lex_state = 49, .external_lex_state = 73}, - [5536] = {.lex_state = 49, .external_lex_state = 73}, - [5537] = {.lex_state = 49, .external_lex_state = 73}, - [5538] = {.lex_state = 49, .external_lex_state = 73}, - [5539] = {.lex_state = 49, .external_lex_state = 73}, - [5540] = {.lex_state = 49, .external_lex_state = 73}, - [5541] = {.lex_state = 49, .external_lex_state = 73}, - [5542] = {.lex_state = 177, .external_lex_state = 79}, - [5543] = {.lex_state = 49, .external_lex_state = 73}, - [5544] = {.lex_state = 49, .external_lex_state = 73}, - [5545] = {.lex_state = 49, .external_lex_state = 73}, - [5546] = {.lex_state = 49, .external_lex_state = 73}, - [5547] = {.lex_state = 47, .external_lex_state = 73}, - [5548] = {.lex_state = 49, .external_lex_state = 73}, - [5549] = {.lex_state = 49, .external_lex_state = 73}, - [5550] = {.lex_state = 34, .external_lex_state = 99}, - [5551] = {.lex_state = 172, .external_lex_state = 104}, - [5552] = {.lex_state = 49, .external_lex_state = 73}, - [5553] = {.lex_state = 49, .external_lex_state = 73}, - [5554] = {.lex_state = 49, .external_lex_state = 73}, - [5555] = {.lex_state = 49, .external_lex_state = 73}, - [5556] = {.lex_state = 49, .external_lex_state = 73}, - [5557] = {.lex_state = 177, .external_lex_state = 79}, - [5558] = {.lex_state = 181, .external_lex_state = 79}, - [5559] = {.lex_state = 177, .external_lex_state = 96}, - [5560] = {.lex_state = 49, .external_lex_state = 73}, - [5561] = {.lex_state = 49, .external_lex_state = 73}, - [5562] = {.lex_state = 177, .external_lex_state = 106}, - [5563] = {.lex_state = 49, .external_lex_state = 73}, - [5564] = {.lex_state = 183, .external_lex_state = 79}, - [5565] = {.lex_state = 49, .external_lex_state = 73}, - [5566] = {.lex_state = 177, .external_lex_state = 78}, - [5567] = {.lex_state = 177, .external_lex_state = 78}, - [5568] = {.lex_state = 49, .external_lex_state = 73}, - [5569] = {.lex_state = 49, .external_lex_state = 73}, - [5570] = {.lex_state = 49, .external_lex_state = 73}, - [5571] = {.lex_state = 49, .external_lex_state = 73}, - [5572] = {.lex_state = 49, .external_lex_state = 73}, - [5573] = {.lex_state = 49, .external_lex_state = 73}, - [5574] = {.lex_state = 47, .external_lex_state = 91}, - [5575] = {.lex_state = 49, .external_lex_state = 73}, - [5576] = {.lex_state = 49, .external_lex_state = 73}, - [5577] = {.lex_state = 177, .external_lex_state = 106}, - [5578] = {.lex_state = 172, .external_lex_state = 104}, - [5579] = {.lex_state = 49, .external_lex_state = 73}, - [5580] = {.lex_state = 183, .external_lex_state = 79}, - [5581] = {.lex_state = 47, .external_lex_state = 91}, - [5582] = {.lex_state = 49, .external_lex_state = 73}, - [5583] = {.lex_state = 177, .external_lex_state = 79}, - [5584] = {.lex_state = 177, .external_lex_state = 107}, - [5585] = {.lex_state = 57, .external_lex_state = 91}, - [5586] = {.lex_state = 49, .external_lex_state = 73}, - [5587] = {.lex_state = 177, .external_lex_state = 107}, - [5588] = {.lex_state = 177, .external_lex_state = 79}, - [5589] = {.lex_state = 177, .external_lex_state = 78}, - [5590] = {.lex_state = 183, .external_lex_state = 78}, - [5591] = {.lex_state = 177, .external_lex_state = 78}, - [5592] = {.lex_state = 177, .external_lex_state = 78}, - [5593] = {.lex_state = 177, .external_lex_state = 79}, - [5594] = {.lex_state = 49, .external_lex_state = 73}, - [5595] = {.lex_state = 177, .external_lex_state = 79}, - [5596] = {.lex_state = 177, .external_lex_state = 79}, - [5597] = {.lex_state = 49, .external_lex_state = 73}, - [5598] = {.lex_state = 181, .external_lex_state = 78}, - [5599] = {.lex_state = 177, .external_lex_state = 78}, - [5600] = {.lex_state = 49, .external_lex_state = 73}, - [5601] = {.lex_state = 49, .external_lex_state = 73}, - [5602] = {.lex_state = 49, .external_lex_state = 73}, - [5603] = {.lex_state = 49, .external_lex_state = 73}, - [5604] = {.lex_state = 177, .external_lex_state = 78}, - [5605] = {.lex_state = 177, .external_lex_state = 78}, - [5606] = {.lex_state = 177, .external_lex_state = 79}, - [5607] = {.lex_state = 177, .external_lex_state = 78}, - [5608] = {.lex_state = 177, .external_lex_state = 78}, - [5609] = {.lex_state = 185, .external_lex_state = 105}, - [5610] = {.lex_state = 177, .external_lex_state = 78}, - [5611] = {.lex_state = 49, .external_lex_state = 73}, - [5612] = {.lex_state = 49, .external_lex_state = 73}, - [5613] = {.lex_state = 49, .external_lex_state = 73}, - [5614] = {.lex_state = 47, .external_lex_state = 91}, - [5615] = {.lex_state = 49, .external_lex_state = 73}, - [5616] = {.lex_state = 49, .external_lex_state = 73}, - [5617] = {.lex_state = 49, .external_lex_state = 73}, - [5618] = {.lex_state = 49, .external_lex_state = 73}, - [5619] = {.lex_state = 49, .external_lex_state = 73}, - [5620] = {.lex_state = 49, .external_lex_state = 73}, - [5621] = {.lex_state = 49, .external_lex_state = 73}, - [5622] = {.lex_state = 177, .external_lex_state = 78}, - [5623] = {.lex_state = 177, .external_lex_state = 78}, - [5624] = {.lex_state = 177, .external_lex_state = 78}, - [5625] = {.lex_state = 177, .external_lex_state = 78}, - [5626] = {.lex_state = 49, .external_lex_state = 73}, - [5627] = {.lex_state = 49, .external_lex_state = 73}, - [5628] = {.lex_state = 177, .external_lex_state = 78}, - [5629] = {.lex_state = 177, .external_lex_state = 78}, - [5630] = {.lex_state = 177, .external_lex_state = 79}, - [5631] = {.lex_state = 177, .external_lex_state = 78}, - [5632] = {.lex_state = 177, .external_lex_state = 79}, - [5633] = {.lex_state = 177, .external_lex_state = 78}, - [5634] = {.lex_state = 47, .external_lex_state = 73}, - [5635] = {.lex_state = 177, .external_lex_state = 79}, - [5636] = {.lex_state = 49, .external_lex_state = 73}, - [5637] = {.lex_state = 177, .external_lex_state = 79}, - [5638] = {.lex_state = 49, .external_lex_state = 73}, - [5639] = {.lex_state = 49, .external_lex_state = 73}, - [5640] = {.lex_state = 49, .external_lex_state = 73}, - [5641] = {.lex_state = 49, .external_lex_state = 73}, - [5642] = {.lex_state = 49, .external_lex_state = 73}, - [5643] = {.lex_state = 49, .external_lex_state = 73}, - [5644] = {.lex_state = 49, .external_lex_state = 73}, - [5645] = {.lex_state = 49, .external_lex_state = 73}, - [5646] = {.lex_state = 177, .external_lex_state = 79}, - [5647] = {.lex_state = 49, .external_lex_state = 73}, - [5648] = {.lex_state = 177, .external_lex_state = 79}, - [5649] = {.lex_state = 47, .external_lex_state = 73}, - [5650] = {.lex_state = 177, .external_lex_state = 79}, - [5651] = {.lex_state = 49, .external_lex_state = 73}, - [5652] = {.lex_state = 177, .external_lex_state = 101}, - [5653] = {.lex_state = 47, .external_lex_state = 73}, - [5654] = {.lex_state = 183, .external_lex_state = 73}, - [5655] = {.lex_state = 57, .external_lex_state = 91}, - [5656] = {.lex_state = 49, .external_lex_state = 73}, - [5657] = {.lex_state = 177, .external_lex_state = 78}, - [5658] = {.lex_state = 49, .external_lex_state = 73}, - [5659] = {.lex_state = 49, .external_lex_state = 73}, - [5660] = {.lex_state = 47, .external_lex_state = 73}, - [5661] = {.lex_state = 49, .external_lex_state = 73}, - [5662] = {.lex_state = 47, .external_lex_state = 73}, - [5663] = {.lex_state = 47, .external_lex_state = 73}, - [5664] = {.lex_state = 49, .external_lex_state = 73}, - [5665] = {.lex_state = 47, .external_lex_state = 73}, - [5666] = {.lex_state = 49, .external_lex_state = 73}, - [5667] = {.lex_state = 49, .external_lex_state = 73}, - [5668] = {.lex_state = 47, .external_lex_state = 73}, - [5669] = {.lex_state = 49, .external_lex_state = 73}, - [5670] = {.lex_state = 47, .external_lex_state = 73}, - [5671] = {.lex_state = 47, .external_lex_state = 73}, - [5672] = {.lex_state = 47, .external_lex_state = 73}, - [5673] = {.lex_state = 47, .external_lex_state = 73}, - [5674] = {.lex_state = 47, .external_lex_state = 73}, - [5675] = {.lex_state = 47, .external_lex_state = 73}, - [5676] = {.lex_state = 177, .external_lex_state = 106}, - [5677] = {.lex_state = 49, .external_lex_state = 73}, - [5678] = {.lex_state = 49, .external_lex_state = 73}, - [5679] = {.lex_state = 49, .external_lex_state = 73}, - [5680] = {.lex_state = 34, .external_lex_state = 99}, - [5681] = {.lex_state = 49, .external_lex_state = 73}, - [5682] = {.lex_state = 49, .external_lex_state = 73}, - [5683] = {.lex_state = 177, .external_lex_state = 78}, - [5684] = {.lex_state = 47, .external_lex_state = 73}, - [5685] = {.lex_state = 183, .external_lex_state = 78}, - [5686] = {.lex_state = 177, .external_lex_state = 78}, - [5687] = {.lex_state = 49, .external_lex_state = 73}, - [5688] = {.lex_state = 177, .external_lex_state = 78}, - [5689] = {.lex_state = 25, .external_lex_state = 74}, - [5690] = {.lex_state = 49, .external_lex_state = 73}, - [5691] = {.lex_state = 177, .external_lex_state = 78}, - [5692] = {.lex_state = 49, .external_lex_state = 73}, - [5693] = {.lex_state = 49, .external_lex_state = 73}, - [5694] = {.lex_state = 49, .external_lex_state = 73}, - [5695] = {.lex_state = 49, .external_lex_state = 73}, - [5696] = {.lex_state = 49, .external_lex_state = 73}, - [5697] = {.lex_state = 183, .external_lex_state = 78}, - [5698] = {.lex_state = 49, .external_lex_state = 73}, - [5699] = {.lex_state = 49, .external_lex_state = 73}, - [5700] = {.lex_state = 49, .external_lex_state = 73}, - [5701] = {.lex_state = 49, .external_lex_state = 73}, - [5702] = {.lex_state = 49, .external_lex_state = 73}, - [5703] = {.lex_state = 172, .external_lex_state = 80}, - [5704] = {.lex_state = 49, .external_lex_state = 73}, - [5705] = {.lex_state = 177, .external_lex_state = 79}, - [5706] = {.lex_state = 49, .external_lex_state = 73}, - [5707] = {.lex_state = 177, .external_lex_state = 107}, - [5708] = {.lex_state = 49, .external_lex_state = 73}, - [5709] = {.lex_state = 177, .external_lex_state = 78}, - [5710] = {.lex_state = 49, .external_lex_state = 73}, - [5711] = {.lex_state = 49, .external_lex_state = 73}, - [5712] = {.lex_state = 49, .external_lex_state = 73}, - [5713] = {.lex_state = 49, .external_lex_state = 73}, - [5714] = {.lex_state = 49, .external_lex_state = 73}, - [5715] = {.lex_state = 49, .external_lex_state = 73}, - [5716] = {.lex_state = 49, .external_lex_state = 73}, - [5717] = {.lex_state = 49, .external_lex_state = 73}, - [5718] = {.lex_state = 49, .external_lex_state = 73}, - [5719] = {.lex_state = 49, .external_lex_state = 73}, - [5720] = {.lex_state = 49, .external_lex_state = 73}, - [5721] = {.lex_state = 177, .external_lex_state = 107}, - [5722] = {.lex_state = 49, .external_lex_state = 73}, - [5723] = {.lex_state = 47, .external_lex_state = 73}, - [5724] = {.lex_state = 34, .external_lex_state = 99}, - [5725] = {.lex_state = 177, .external_lex_state = 78}, - [5726] = {.lex_state = 47, .external_lex_state = 73}, - [5727] = {.lex_state = 177, .external_lex_state = 78}, - [5728] = {.lex_state = 49, .external_lex_state = 73}, - [5729] = {.lex_state = 49, .external_lex_state = 73}, - [5730] = {.lex_state = 177, .external_lex_state = 79}, - [5731] = {.lex_state = 49, .external_lex_state = 73}, - [5732] = {.lex_state = 49, .external_lex_state = 73}, - [5733] = {.lex_state = 49, .external_lex_state = 73}, - [5734] = {.lex_state = 177, .external_lex_state = 78}, - [5735] = {.lex_state = 49, .external_lex_state = 73}, - [5736] = {.lex_state = 34, .external_lex_state = 99}, - [5737] = {.lex_state = 177, .external_lex_state = 79}, - [5738] = {.lex_state = 49, .external_lex_state = 73}, - [5739] = {.lex_state = 49, .external_lex_state = 73}, - [5740] = {.lex_state = 47, .external_lex_state = 73}, - [5741] = {.lex_state = 185, .external_lex_state = 105}, - [5742] = {.lex_state = 49, .external_lex_state = 73}, - [5743] = {.lex_state = 49, .external_lex_state = 73}, - [5744] = {.lex_state = 177, .external_lex_state = 78}, - [5745] = {.lex_state = 49, .external_lex_state = 73}, - [5746] = {.lex_state = 47, .external_lex_state = 73}, - [5747] = {.lex_state = 49, .external_lex_state = 73}, - [5748] = {.lex_state = 49, .external_lex_state = 73}, - [5749] = {.lex_state = 47, .external_lex_state = 73}, - [5750] = {.lex_state = 177, .external_lex_state = 78}, - [5751] = {.lex_state = 172, .external_lex_state = 74}, - [5752] = {.lex_state = 47, .external_lex_state = 73}, - [5753] = {.lex_state = 172, .external_lex_state = 74}, - [5754] = {.lex_state = 177, .external_lex_state = 78}, - [5755] = {.lex_state = 177, .external_lex_state = 78}, - [5756] = {.lex_state = 177, .external_lex_state = 78}, - [5757] = {.lex_state = 177, .external_lex_state = 79}, - [5758] = {.lex_state = 66, .external_lex_state = 108}, - [5759] = {.lex_state = 177, .external_lex_state = 78}, - [5760] = {.lex_state = 47, .external_lex_state = 73}, - [5761] = {.lex_state = 177, .external_lex_state = 78}, - [5762] = {.lex_state = 177, .external_lex_state = 78}, - [5763] = {.lex_state = 177, .external_lex_state = 78}, - [5764] = {.lex_state = 177, .external_lex_state = 78}, - [5765] = {.lex_state = 177, .external_lex_state = 79}, - [5766] = {.lex_state = 177, .external_lex_state = 78}, - [5767] = {.lex_state = 177, .external_lex_state = 78}, - [5768] = {.lex_state = 177, .external_lex_state = 78}, - [5769] = {.lex_state = 177, .external_lex_state = 78}, - [5770] = {.lex_state = 177, .external_lex_state = 78}, - [5771] = {.lex_state = 177, .external_lex_state = 78}, - [5772] = {.lex_state = 177, .external_lex_state = 79}, - [5773] = {.lex_state = 177, .external_lex_state = 78}, - [5774] = {.lex_state = 172, .external_lex_state = 74}, - [5775] = {.lex_state = 177, .external_lex_state = 78}, - [5776] = {.lex_state = 177, .external_lex_state = 78}, - [5777] = {.lex_state = 66, .external_lex_state = 108}, - [5778] = {.lex_state = 177, .external_lex_state = 79}, - [5779] = {.lex_state = 177, .external_lex_state = 79}, - [5780] = {.lex_state = 177, .external_lex_state = 79}, - [5781] = {.lex_state = 177, .external_lex_state = 78}, - [5782] = {.lex_state = 47, .external_lex_state = 73}, - [5783] = {.lex_state = 177, .external_lex_state = 79}, - [5784] = {.lex_state = 177, .external_lex_state = 78}, - [5785] = {.lex_state = 177, .external_lex_state = 78}, - [5786] = {.lex_state = 177, .external_lex_state = 78}, - [5787] = {.lex_state = 177, .external_lex_state = 78}, - [5788] = {.lex_state = 177, .external_lex_state = 78}, - [5789] = {.lex_state = 177, .external_lex_state = 78}, - [5790] = {.lex_state = 177, .external_lex_state = 78}, - [5791] = {.lex_state = 177, .external_lex_state = 78}, - [5792] = {.lex_state = 177, .external_lex_state = 79}, - [5793] = {.lex_state = 172, .external_lex_state = 74}, - [5794] = {.lex_state = 177, .external_lex_state = 79}, - [5795] = {.lex_state = 25, .external_lex_state = 91}, - [5796] = {.lex_state = 66, .external_lex_state = 108}, - [5797] = {.lex_state = 177, .external_lex_state = 79}, - [5798] = {.lex_state = 177, .external_lex_state = 78}, - [5799] = {.lex_state = 177, .external_lex_state = 78}, - [5800] = {.lex_state = 25, .external_lex_state = 74}, - [5801] = {.lex_state = 177, .external_lex_state = 78}, - [5802] = {.lex_state = 177, .external_lex_state = 78}, - [5803] = {.lex_state = 177, .external_lex_state = 78}, - [5804] = {.lex_state = 177, .external_lex_state = 78}, - [5805] = {.lex_state = 177, .external_lex_state = 79}, - [5806] = {.lex_state = 177, .external_lex_state = 78}, - [5807] = {.lex_state = 177, .external_lex_state = 78}, - [5808] = {.lex_state = 177, .external_lex_state = 78}, - [5809] = {.lex_state = 177, .external_lex_state = 78}, - [5810] = {.lex_state = 177, .external_lex_state = 78}, - [5811] = {.lex_state = 177, .external_lex_state = 78}, - [5812] = {.lex_state = 177, .external_lex_state = 78}, - [5813] = {.lex_state = 177, .external_lex_state = 78}, - [5814] = {.lex_state = 177, .external_lex_state = 78}, - [5815] = {.lex_state = 177, .external_lex_state = 78}, - [5816] = {.lex_state = 177, .external_lex_state = 78}, - [5817] = {.lex_state = 172, .external_lex_state = 74}, - [5818] = {.lex_state = 177, .external_lex_state = 78}, - [5819] = {.lex_state = 177, .external_lex_state = 78}, - [5820] = {.lex_state = 177, .external_lex_state = 78}, - [5821] = {.lex_state = 177, .external_lex_state = 78}, - [5822] = {.lex_state = 177, .external_lex_state = 79}, - [5823] = {.lex_state = 66, .external_lex_state = 108}, - [5824] = {.lex_state = 177, .external_lex_state = 78}, - [5825] = {.lex_state = 177, .external_lex_state = 79}, - [5826] = {.lex_state = 177, .external_lex_state = 78}, - [5827] = {.lex_state = 177, .external_lex_state = 79}, - [5828] = {.lex_state = 177, .external_lex_state = 79}, - [5829] = {.lex_state = 177, .external_lex_state = 79}, - [5830] = {.lex_state = 177, .external_lex_state = 78}, - [5831] = {.lex_state = 177, .external_lex_state = 79}, - [5832] = {.lex_state = 177, .external_lex_state = 79}, - [5833] = {.lex_state = 177, .external_lex_state = 79}, - [5834] = {.lex_state = 177, .external_lex_state = 78}, - [5835] = {.lex_state = 177, .external_lex_state = 79}, - [5836] = {.lex_state = 25, .external_lex_state = 74}, - [5837] = {.lex_state = 177, .external_lex_state = 78}, - [5838] = {.lex_state = 177, .external_lex_state = 78}, - [5839] = {.lex_state = 177, .external_lex_state = 79}, - [5840] = {.lex_state = 177, .external_lex_state = 78}, - [5841] = {.lex_state = 177, .external_lex_state = 78}, - [5842] = {.lex_state = 177, .external_lex_state = 78}, - [5843] = {.lex_state = 177, .external_lex_state = 79}, - [5844] = {.lex_state = 177, .external_lex_state = 78}, - [5845] = {.lex_state = 177, .external_lex_state = 79}, - [5846] = {.lex_state = 66, .external_lex_state = 108}, - [5847] = {.lex_state = 177, .external_lex_state = 78}, - [5848] = {.lex_state = 177, .external_lex_state = 78}, - [5849] = {.lex_state = 177, .external_lex_state = 78}, - [5850] = {.lex_state = 177, .external_lex_state = 78}, - [5851] = {.lex_state = 177, .external_lex_state = 78}, - [5852] = {.lex_state = 177, .external_lex_state = 78}, - [5853] = {.lex_state = 177, .external_lex_state = 78}, - [5854] = {.lex_state = 177, .external_lex_state = 78}, - [5855] = {.lex_state = 177, .external_lex_state = 78}, - [5856] = {.lex_state = 177, .external_lex_state = 78}, - [5857] = {.lex_state = 177, .external_lex_state = 78}, - [5858] = {.lex_state = 177, .external_lex_state = 78}, - [5859] = {.lex_state = 177, .external_lex_state = 78}, - [5860] = {.lex_state = 177, .external_lex_state = 78}, - [5861] = {.lex_state = 177, .external_lex_state = 78}, - [5862] = {.lex_state = 177, .external_lex_state = 78}, - [5863] = {.lex_state = 177, .external_lex_state = 78}, - [5864] = {.lex_state = 177, .external_lex_state = 78}, - [5865] = {.lex_state = 177, .external_lex_state = 78}, - [5866] = {.lex_state = 177, .external_lex_state = 78}, - [5867] = {.lex_state = 177, .external_lex_state = 78}, - [5868] = {.lex_state = 177, .external_lex_state = 78}, - [5869] = {.lex_state = 177, .external_lex_state = 78}, - [5870] = {.lex_state = 177, .external_lex_state = 78}, - [5871] = {.lex_state = 172, .external_lex_state = 74}, - [5872] = {.lex_state = 177, .external_lex_state = 78}, - [5873] = {.lex_state = 177, .external_lex_state = 78}, - [5874] = {.lex_state = 177, .external_lex_state = 78}, - [5875] = {.lex_state = 66, .external_lex_state = 108}, - [5876] = {.lex_state = 177, .external_lex_state = 78}, - [5877] = {.lex_state = 177, .external_lex_state = 78}, - [5878] = {.lex_state = 177, .external_lex_state = 78}, - [5879] = {.lex_state = 177, .external_lex_state = 78}, - [5880] = {.lex_state = 177, .external_lex_state = 79}, - [5881] = {.lex_state = 177, .external_lex_state = 78}, - [5882] = {.lex_state = 177, .external_lex_state = 78}, - [5883] = {.lex_state = 177, .external_lex_state = 78}, - [5884] = {.lex_state = 177, .external_lex_state = 78}, - [5885] = {.lex_state = 177, .external_lex_state = 78}, - [5886] = {.lex_state = 177, .external_lex_state = 79}, - [5887] = {.lex_state = 177, .external_lex_state = 78}, - [5888] = {.lex_state = 177, .external_lex_state = 78}, - [5889] = {.lex_state = 177, .external_lex_state = 78}, - [5890] = {.lex_state = 177, .external_lex_state = 78}, - [5891] = {.lex_state = 177, .external_lex_state = 78}, - [5892] = {.lex_state = 172, .external_lex_state = 74}, - [5893] = {.lex_state = 177, .external_lex_state = 78}, - [5894] = {.lex_state = 177, .external_lex_state = 78}, - [5895] = {.lex_state = 66, .external_lex_state = 108}, - [5896] = {.lex_state = 32, .external_lex_state = 74}, - [5897] = {.lex_state = 177, .external_lex_state = 79}, - [5898] = {.lex_state = 177, .external_lex_state = 79}, - [5899] = {.lex_state = 177, .external_lex_state = 79}, - [5900] = {.lex_state = 177, .external_lex_state = 79}, - [5901] = {.lex_state = 177, .external_lex_state = 78}, - [5902] = {.lex_state = 177, .external_lex_state = 78}, - [5903] = {.lex_state = 177, .external_lex_state = 78}, - [5904] = {.lex_state = 177, .external_lex_state = 78}, - [5905] = {.lex_state = 177, .external_lex_state = 78}, - [5906] = {.lex_state = 177, .external_lex_state = 78}, - [5907] = {.lex_state = 177, .external_lex_state = 78}, - [5908] = {.lex_state = 177, .external_lex_state = 78}, - [5909] = {.lex_state = 177, .external_lex_state = 78}, - [5910] = {.lex_state = 177, .external_lex_state = 78}, - [5911] = {.lex_state = 177, .external_lex_state = 78}, - [5912] = {.lex_state = 177, .external_lex_state = 78}, - [5913] = {.lex_state = 177, .external_lex_state = 78}, - [5914] = {.lex_state = 66, .external_lex_state = 108}, - [5915] = {.lex_state = 177, .external_lex_state = 78}, - [5916] = {.lex_state = 177, .external_lex_state = 78}, - [5917] = {.lex_state = 177, .external_lex_state = 78}, - [5918] = {.lex_state = 177, .external_lex_state = 78}, - [5919] = {.lex_state = 177, .external_lex_state = 78}, - [5920] = {.lex_state = 177, .external_lex_state = 78}, - [5921] = {.lex_state = 177, .external_lex_state = 78}, - [5922] = {.lex_state = 177, .external_lex_state = 78}, - [5923] = {.lex_state = 66, .external_lex_state = 108}, - [5924] = {.lex_state = 49, .external_lex_state = 74}, - [5925] = {.lex_state = 66, .external_lex_state = 108}, - [5926] = {.lex_state = 177, .external_lex_state = 79}, - [5927] = {.lex_state = 177, .external_lex_state = 78}, - [5928] = {.lex_state = 177, .external_lex_state = 78}, - [5929] = {.lex_state = 177, .external_lex_state = 78}, - [5930] = {.lex_state = 177, .external_lex_state = 78}, - [5931] = {.lex_state = 66, .external_lex_state = 108}, - [5932] = {.lex_state = 177, .external_lex_state = 78}, - [5933] = {.lex_state = 66, .external_lex_state = 108}, - [5934] = {.lex_state = 66, .external_lex_state = 108}, - [5935] = {.lex_state = 66, .external_lex_state = 108}, - [5936] = {.lex_state = 66, .external_lex_state = 108}, - [5937] = {.lex_state = 25, .external_lex_state = 95}, - [5938] = {.lex_state = 177, .external_lex_state = 78}, - [5939] = {.lex_state = 177, .external_lex_state = 78}, - [5940] = {.lex_state = 177, .external_lex_state = 78}, - [5941] = {.lex_state = 177, .external_lex_state = 78}, - [5942] = {.lex_state = 177, .external_lex_state = 78}, - [5943] = {.lex_state = 177, .external_lex_state = 78}, - [5944] = {.lex_state = 177, .external_lex_state = 78}, - [5945] = {.lex_state = 177, .external_lex_state = 78}, - [5946] = {.lex_state = 177, .external_lex_state = 78}, - [5947] = {.lex_state = 177, .external_lex_state = 78}, - [5948] = {.lex_state = 177, .external_lex_state = 78}, - [5949] = {.lex_state = 177, .external_lex_state = 78}, - [5950] = {.lex_state = 177, .external_lex_state = 78}, - [5951] = {.lex_state = 177, .external_lex_state = 78}, - [5952] = {.lex_state = 177, .external_lex_state = 78}, - [5953] = {.lex_state = 177, .external_lex_state = 78}, - [5954] = {.lex_state = 177, .external_lex_state = 78}, - [5955] = {.lex_state = 177, .external_lex_state = 78}, - [5956] = {.lex_state = 177, .external_lex_state = 78}, - [5957] = {.lex_state = 177, .external_lex_state = 78}, - [5958] = {.lex_state = 177, .external_lex_state = 78}, - [5959] = {.lex_state = 177, .external_lex_state = 78}, - [5960] = {.lex_state = 177, .external_lex_state = 78}, - [5961] = {.lex_state = 177, .external_lex_state = 78}, - [5962] = {.lex_state = 177, .external_lex_state = 78}, - [5963] = {.lex_state = 177, .external_lex_state = 78}, - [5964] = {.lex_state = 177, .external_lex_state = 78}, - [5965] = {.lex_state = 177, .external_lex_state = 78}, - [5966] = {.lex_state = 177, .external_lex_state = 78}, - [5967] = {.lex_state = 177, .external_lex_state = 79}, - [5968] = {.lex_state = 25, .external_lex_state = 95}, - [5969] = {.lex_state = 47, .external_lex_state = 73}, - [5970] = {.lex_state = 25, .external_lex_state = 74}, - [5971] = {.lex_state = 47, .external_lex_state = 73}, - [5972] = {.lex_state = 47, .external_lex_state = 73}, - [5973] = {.lex_state = 49, .external_lex_state = 74}, - [5974] = {.lex_state = 47, .external_lex_state = 73}, - [5975] = {.lex_state = 47, .external_lex_state = 73}, - [5976] = {.lex_state = 47, .external_lex_state = 73}, - [5977] = {.lex_state = 177, .external_lex_state = 79}, - [5978] = {.lex_state = 177, .external_lex_state = 79}, - [5979] = {.lex_state = 177, .external_lex_state = 79}, - [5980] = {.lex_state = 177, .external_lex_state = 79}, - [5981] = {.lex_state = 177, .external_lex_state = 79}, - [5982] = {.lex_state = 25, .external_lex_state = 74}, - [5983] = {.lex_state = 177, .external_lex_state = 79}, - [5984] = {.lex_state = 177, .external_lex_state = 79}, - [5985] = {.lex_state = 177, .external_lex_state = 79}, - [5986] = {.lex_state = 177, .external_lex_state = 79}, - [5987] = {.lex_state = 177, .external_lex_state = 79}, - [5988] = {.lex_state = 177, .external_lex_state = 79}, - [5989] = {.lex_state = 177, .external_lex_state = 79}, - [5990] = {.lex_state = 177, .external_lex_state = 79}, - [5991] = {.lex_state = 177, .external_lex_state = 79}, - [5992] = {.lex_state = 177, .external_lex_state = 79}, - [5993] = {.lex_state = 177, .external_lex_state = 79}, - [5994] = {.lex_state = 177, .external_lex_state = 79}, - [5995] = {.lex_state = 177, .external_lex_state = 79}, - [5996] = {.lex_state = 177, .external_lex_state = 79}, - [5997] = {.lex_state = 177, .external_lex_state = 79}, - [5998] = {.lex_state = 177, .external_lex_state = 79}, - [5999] = {.lex_state = 177, .external_lex_state = 79}, - [6000] = {.lex_state = 177, .external_lex_state = 79}, - [6001] = {.lex_state = 177, .external_lex_state = 78}, - [6002] = {.lex_state = 177, .external_lex_state = 79}, - [6003] = {.lex_state = 177, .external_lex_state = 79}, - [6004] = {.lex_state = 177, .external_lex_state = 79}, - [6005] = {.lex_state = 177, .external_lex_state = 79}, - [6006] = {.lex_state = 177, .external_lex_state = 79}, - [6007] = {.lex_state = 177, .external_lex_state = 78}, - [6008] = {.lex_state = 177, .external_lex_state = 79}, - [6009] = {.lex_state = 177, .external_lex_state = 79}, - [6010] = {.lex_state = 177, .external_lex_state = 79}, - [6011] = {.lex_state = 177, .external_lex_state = 79}, - [6012] = {.lex_state = 177, .external_lex_state = 79}, - [6013] = {.lex_state = 177, .external_lex_state = 79}, - [6014] = {.lex_state = 177, .external_lex_state = 79}, - [6015] = {.lex_state = 177, .external_lex_state = 79}, - [6016] = {.lex_state = 177, .external_lex_state = 79}, - [6017] = {.lex_state = 177, .external_lex_state = 78}, - [6018] = {.lex_state = 47, .external_lex_state = 73}, - [6019] = {.lex_state = 177, .external_lex_state = 79}, - [6020] = {.lex_state = 177, .external_lex_state = 79}, - [6021] = {.lex_state = 47, .external_lex_state = 73}, - [6022] = {.lex_state = 177, .external_lex_state = 78}, - [6023] = {.lex_state = 25, .external_lex_state = 74}, - [6024] = {.lex_state = 177, .external_lex_state = 79}, - [6025] = {.lex_state = 177, .external_lex_state = 79}, - [6026] = {.lex_state = 177, .external_lex_state = 78}, - [6027] = {.lex_state = 177, .external_lex_state = 79}, - [6028] = {.lex_state = 177, .external_lex_state = 79}, - [6029] = {.lex_state = 177, .external_lex_state = 79}, - [6030] = {.lex_state = 177, .external_lex_state = 79}, - [6031] = {.lex_state = 177, .external_lex_state = 79}, - [6032] = {.lex_state = 47, .external_lex_state = 73}, - [6033] = {.lex_state = 177, .external_lex_state = 79}, - [6034] = {.lex_state = 177, .external_lex_state = 79}, - [6035] = {.lex_state = 47, .external_lex_state = 73}, - [6036] = {.lex_state = 177, .external_lex_state = 79}, - [6037] = {.lex_state = 177, .external_lex_state = 79}, - [6038] = {.lex_state = 177, .external_lex_state = 79}, - [6039] = {.lex_state = 177, .external_lex_state = 79}, - [6040] = {.lex_state = 177, .external_lex_state = 79}, - [6041] = {.lex_state = 25, .external_lex_state = 95}, - [6042] = {.lex_state = 172, .external_lex_state = 80}, - [6043] = {.lex_state = 177, .external_lex_state = 79}, - [6044] = {.lex_state = 177, .external_lex_state = 79}, - [6045] = {.lex_state = 177, .external_lex_state = 79}, - [6046] = {.lex_state = 177, .external_lex_state = 79}, - [6047] = {.lex_state = 177, .external_lex_state = 79}, - [6048] = {.lex_state = 172, .external_lex_state = 74}, - [6049] = {.lex_state = 177, .external_lex_state = 79}, - [6050] = {.lex_state = 177, .external_lex_state = 79}, - [6051] = {.lex_state = 177, .external_lex_state = 78}, - [6052] = {.lex_state = 177, .external_lex_state = 79}, - [6053] = {.lex_state = 177, .external_lex_state = 79}, - [6054] = {.lex_state = 177, .external_lex_state = 79}, - [6055] = {.lex_state = 177, .external_lex_state = 79}, - [6056] = {.lex_state = 177, .external_lex_state = 79}, - [6057] = {.lex_state = 177, .external_lex_state = 79}, - [6058] = {.lex_state = 177, .external_lex_state = 79}, - [6059] = {.lex_state = 66, .external_lex_state = 108}, - [6060] = {.lex_state = 177, .external_lex_state = 78}, - [6061] = {.lex_state = 177, .external_lex_state = 79}, - [6062] = {.lex_state = 177, .external_lex_state = 79}, - [6063] = {.lex_state = 177, .external_lex_state = 79}, - [6064] = {.lex_state = 172, .external_lex_state = 74}, - [6065] = {.lex_state = 49, .external_lex_state = 74}, - [6066] = {.lex_state = 177, .external_lex_state = 79}, - [6067] = {.lex_state = 177, .external_lex_state = 79}, - [6068] = {.lex_state = 32, .external_lex_state = 74}, - [6069] = {.lex_state = 177, .external_lex_state = 79}, - [6070] = {.lex_state = 183, .external_lex_state = 104}, - [6071] = {.lex_state = 177, .external_lex_state = 79}, - [6072] = {.lex_state = 177, .external_lex_state = 79}, - [6073] = {.lex_state = 177, .external_lex_state = 79}, - [6074] = {.lex_state = 177, .external_lex_state = 79}, - [6075] = {.lex_state = 177, .external_lex_state = 79}, - [6076] = {.lex_state = 177, .external_lex_state = 79}, - [6077] = {.lex_state = 177, .external_lex_state = 79}, - [6078] = {.lex_state = 177, .external_lex_state = 78}, - [6079] = {.lex_state = 177, .external_lex_state = 78}, - [6080] = {.lex_state = 177, .external_lex_state = 79}, - [6081] = {.lex_state = 25, .external_lex_state = 95}, - [6082] = {.lex_state = 32, .external_lex_state = 74}, - [6083] = {.lex_state = 32, .external_lex_state = 74}, - [6084] = {.lex_state = 32, .external_lex_state = 74}, - [6085] = {.lex_state = 172, .external_lex_state = 74}, - [6086] = {.lex_state = 66, .external_lex_state = 108}, - [6087] = {.lex_state = 177, .external_lex_state = 79}, - [6088] = {.lex_state = 49, .external_lex_state = 74}, - [6089] = {.lex_state = 177, .external_lex_state = 79}, - [6090] = {.lex_state = 177, .external_lex_state = 79}, - [6091] = {.lex_state = 177, .external_lex_state = 79}, - [6092] = {.lex_state = 177, .external_lex_state = 79}, - [6093] = {.lex_state = 177, .external_lex_state = 79}, - [6094] = {.lex_state = 32, .external_lex_state = 74}, - [6095] = {.lex_state = 177, .external_lex_state = 78}, - [6096] = {.lex_state = 177, .external_lex_state = 79}, - [6097] = {.lex_state = 177, .external_lex_state = 78}, - [6098] = {.lex_state = 177, .external_lex_state = 79}, - [6099] = {.lex_state = 177, .external_lex_state = 79}, - [6100] = {.lex_state = 177, .external_lex_state = 79}, - [6101] = {.lex_state = 57, .external_lex_state = 74}, - [6102] = {.lex_state = 177, .external_lex_state = 79}, - [6103] = {.lex_state = 177, .external_lex_state = 79}, - [6104] = {.lex_state = 177, .external_lex_state = 79}, - [6105] = {.lex_state = 177, .external_lex_state = 79}, - [6106] = {.lex_state = 177, .external_lex_state = 79}, - [6107] = {.lex_state = 25, .external_lex_state = 74}, - [6108] = {.lex_state = 25, .external_lex_state = 74}, - [6109] = {.lex_state = 25, .external_lex_state = 74}, - [6110] = {.lex_state = 177, .external_lex_state = 78}, - [6111] = {.lex_state = 177, .external_lex_state = 78}, - [6112] = {.lex_state = 177, .external_lex_state = 79}, - [6113] = {.lex_state = 172, .external_lex_state = 74}, - [6114] = {.lex_state = 177, .external_lex_state = 79}, - [6115] = {.lex_state = 177, .external_lex_state = 79}, - [6116] = {.lex_state = 177, .external_lex_state = 79}, - [6117] = {.lex_state = 177, .external_lex_state = 79}, - [6118] = {.lex_state = 177, .external_lex_state = 79}, - [6119] = {.lex_state = 47, .external_lex_state = 73}, - [6120] = {.lex_state = 177, .external_lex_state = 79}, - [6121] = {.lex_state = 177, .external_lex_state = 79}, - [6122] = {.lex_state = 47, .external_lex_state = 73}, - [6123] = {.lex_state = 177, .external_lex_state = 78}, - [6124] = {.lex_state = 177, .external_lex_state = 78}, - [6125] = {.lex_state = 177, .external_lex_state = 79}, - [6126] = {.lex_state = 177, .external_lex_state = 78}, - [6127] = {.lex_state = 66, .external_lex_state = 108}, - [6128] = {.lex_state = 177, .external_lex_state = 79}, - [6129] = {.lex_state = 25, .external_lex_state = 74}, - [6130] = {.lex_state = 177, .external_lex_state = 79}, - [6131] = {.lex_state = 177, .external_lex_state = 79}, - [6132] = {.lex_state = 177, .external_lex_state = 79}, - [6133] = {.lex_state = 177, .external_lex_state = 79}, - [6134] = {.lex_state = 177, .external_lex_state = 79}, - [6135] = {.lex_state = 177, .external_lex_state = 79}, - [6136] = {.lex_state = 177, .external_lex_state = 78}, - [6137] = {.lex_state = 57, .external_lex_state = 74}, - [6138] = {.lex_state = 177, .external_lex_state = 79}, - [6139] = {.lex_state = 177, .external_lex_state = 79}, - [6140] = {.lex_state = 177, .external_lex_state = 79}, - [6141] = {.lex_state = 177, .external_lex_state = 79}, - [6142] = {.lex_state = 183, .external_lex_state = 104}, - [6143] = {.lex_state = 49, .external_lex_state = 74}, - [6144] = {.lex_state = 25, .external_lex_state = 74}, - [6145] = {.lex_state = 57, .external_lex_state = 74}, - [6146] = {.lex_state = 177, .external_lex_state = 78}, - [6147] = {.lex_state = 177, .external_lex_state = 79}, - [6148] = {.lex_state = 25, .external_lex_state = 74}, - [6149] = {.lex_state = 172, .external_lex_state = 74}, - [6150] = {.lex_state = 25, .external_lex_state = 74}, - [6151] = {.lex_state = 177, .external_lex_state = 79}, - [6152] = {.lex_state = 66, .external_lex_state = 108}, - [6153] = {.lex_state = 49, .external_lex_state = 74}, - [6154] = {.lex_state = 177, .external_lex_state = 79}, - [6155] = {.lex_state = 177, .external_lex_state = 79}, - [6156] = {.lex_state = 177, .external_lex_state = 79}, - [6157] = {.lex_state = 185, .external_lex_state = 105}, - [6158] = {.lex_state = 177, .external_lex_state = 79}, - [6159] = {.lex_state = 172, .external_lex_state = 74}, - [6160] = {.lex_state = 185, .external_lex_state = 105}, - [6161] = {.lex_state = 177, .external_lex_state = 79}, - [6162] = {.lex_state = 185, .external_lex_state = 105}, - [6163] = {.lex_state = 177, .external_lex_state = 79}, - [6164] = {.lex_state = 177, .external_lex_state = 79}, - [6165] = {.lex_state = 47, .external_lex_state = 73}, - [6166] = {.lex_state = 177, .external_lex_state = 79}, - [6167] = {.lex_state = 177, .external_lex_state = 79}, - [6168] = {.lex_state = 177, .external_lex_state = 79}, - [6169] = {.lex_state = 177, .external_lex_state = 79}, - [6170] = {.lex_state = 177, .external_lex_state = 79}, - [6171] = {.lex_state = 177, .external_lex_state = 79}, - [6172] = {.lex_state = 177, .external_lex_state = 79}, - [6173] = {.lex_state = 177, .external_lex_state = 79}, - [6174] = {.lex_state = 47, .external_lex_state = 73}, - [6175] = {.lex_state = 172, .external_lex_state = 74}, - [6176] = {.lex_state = 177, .external_lex_state = 79}, - [6177] = {.lex_state = 47, .external_lex_state = 73}, - [6178] = {.lex_state = 177, .external_lex_state = 79}, - [6179] = {.lex_state = 66, .external_lex_state = 108}, - [6180] = {.lex_state = 177, .external_lex_state = 79}, - [6181] = {.lex_state = 177, .external_lex_state = 79}, - [6182] = {.lex_state = 177, .external_lex_state = 79}, - [6183] = {.lex_state = 177, .external_lex_state = 79}, - [6184] = {.lex_state = 172, .external_lex_state = 74}, - [6185] = {.lex_state = 177, .external_lex_state = 78}, - [6186] = {.lex_state = 177, .external_lex_state = 79}, - [6187] = {.lex_state = 177, .external_lex_state = 79}, - [6188] = {.lex_state = 177, .external_lex_state = 79}, - [6189] = {.lex_state = 177, .external_lex_state = 79}, - [6190] = {.lex_state = 177, .external_lex_state = 79}, - [6191] = {.lex_state = 47, .external_lex_state = 73}, - [6192] = {.lex_state = 177, .external_lex_state = 79}, - [6193] = {.lex_state = 172, .external_lex_state = 74}, - [6194] = {.lex_state = 177, .external_lex_state = 79}, - [6195] = {.lex_state = 177, .external_lex_state = 79}, - [6196] = {.lex_state = 47, .external_lex_state = 73}, - [6197] = {.lex_state = 66, .external_lex_state = 108}, - [6198] = {.lex_state = 177, .external_lex_state = 79}, - [6199] = {.lex_state = 47, .external_lex_state = 73}, - [6200] = {.lex_state = 25, .external_lex_state = 74}, - [6201] = {.lex_state = 177, .external_lex_state = 79}, - [6202] = {.lex_state = 47, .external_lex_state = 73}, - [6203] = {.lex_state = 177, .external_lex_state = 78}, - [6204] = {.lex_state = 177, .external_lex_state = 78}, - [6205] = {.lex_state = 177, .external_lex_state = 78}, - [6206] = {.lex_state = 47, .external_lex_state = 73}, - [6207] = {.lex_state = 66, .external_lex_state = 108}, - [6208] = {.lex_state = 47, .external_lex_state = 73}, - [6209] = {.lex_state = 177, .external_lex_state = 78}, - [6210] = {.lex_state = 177, .external_lex_state = 78}, - [6211] = {.lex_state = 172, .external_lex_state = 79}, - [6212] = {.lex_state = 25, .external_lex_state = 74}, - [6213] = {.lex_state = 25, .external_lex_state = 74}, - [6214] = {.lex_state = 25, .external_lex_state = 74}, - [6215] = {.lex_state = 172, .external_lex_state = 74}, - [6216] = {.lex_state = 172, .external_lex_state = 109}, - [6217] = {.lex_state = 172, .external_lex_state = 74}, - [6218] = {.lex_state = 25, .external_lex_state = 74}, - [6219] = {.lex_state = 25, .external_lex_state = 74}, - [6220] = {.lex_state = 172, .external_lex_state = 80}, - [6221] = {.lex_state = 172, .external_lex_state = 74}, - [6222] = {.lex_state = 34, .external_lex_state = 99}, - [6223] = {.lex_state = 172, .external_lex_state = 79}, - [6224] = {.lex_state = 172, .external_lex_state = 74}, - [6225] = {.lex_state = 25, .external_lex_state = 74}, - [6226] = {.lex_state = 25, .external_lex_state = 74}, - [6227] = {.lex_state = 25, .external_lex_state = 74}, - [6228] = {.lex_state = 170, .external_lex_state = 80}, - [6229] = {.lex_state = 25, .external_lex_state = 74}, - [6230] = {.lex_state = 172, .external_lex_state = 79}, - [6231] = {.lex_state = 172, .external_lex_state = 74}, - [6232] = {.lex_state = 172, .external_lex_state = 74}, - [6233] = {.lex_state = 172, .external_lex_state = 74}, - [6234] = {.lex_state = 172, .external_lex_state = 74}, - [6235] = {.lex_state = 25, .external_lex_state = 74}, - [6236] = {.lex_state = 25, .external_lex_state = 74}, - [6237] = {.lex_state = 25, .external_lex_state = 74}, - [6238] = {.lex_state = 172, .external_lex_state = 74}, - [6239] = {.lex_state = 25, .external_lex_state = 74}, - [6240] = {.lex_state = 25, .external_lex_state = 74}, - [6241] = {.lex_state = 25, .external_lex_state = 74}, - [6242] = {.lex_state = 25, .external_lex_state = 74}, - [6243] = {.lex_state = 177, .external_lex_state = 80}, - [6244] = {.lex_state = 177, .external_lex_state = 80}, - [6245] = {.lex_state = 177, .external_lex_state = 80}, - [6246] = {.lex_state = 47, .external_lex_state = 74}, - [6247] = {.lex_state = 25, .external_lex_state = 74}, - [6248] = {.lex_state = 47, .external_lex_state = 74}, - [6249] = {.lex_state = 177, .external_lex_state = 79}, - [6250] = {.lex_state = 25, .external_lex_state = 74}, - [6251] = {.lex_state = 25, .external_lex_state = 74}, - [6252] = {.lex_state = 25, .external_lex_state = 74}, - [6253] = {.lex_state = 25, .external_lex_state = 74}, - [6254] = {.lex_state = 25, .external_lex_state = 74}, - [6255] = {.lex_state = 183, .external_lex_state = 74}, - [6256] = {.lex_state = 172, .external_lex_state = 74}, - [6257] = {.lex_state = 25, .external_lex_state = 74}, - [6258] = {.lex_state = 25, .external_lex_state = 74}, - [6259] = {.lex_state = 47, .external_lex_state = 91}, - [6260] = {.lex_state = 172, .external_lex_state = 74}, - [6261] = {.lex_state = 47, .external_lex_state = 91}, - [6262] = {.lex_state = 25, .external_lex_state = 74}, - [6263] = {.lex_state = 25, .external_lex_state = 74}, - [6264] = {.lex_state = 25, .external_lex_state = 74}, - [6265] = {.lex_state = 25, .external_lex_state = 74}, - [6266] = {.lex_state = 25, .external_lex_state = 74}, - [6267] = {.lex_state = 25, .external_lex_state = 74}, - [6268] = {.lex_state = 25, .external_lex_state = 74}, - [6269] = {.lex_state = 25, .external_lex_state = 74}, - [6270] = {.lex_state = 25, .external_lex_state = 74}, - [6271] = {.lex_state = 25, .external_lex_state = 74}, - [6272] = {.lex_state = 25, .external_lex_state = 74}, - [6273] = {.lex_state = 25, .external_lex_state = 74}, - [6274] = {.lex_state = 25, .external_lex_state = 74}, - [6275] = {.lex_state = 25, .external_lex_state = 74}, - [6276] = {.lex_state = 25, .external_lex_state = 74}, - [6277] = {.lex_state = 25, .external_lex_state = 74}, - [6278] = {.lex_state = 25, .external_lex_state = 74}, - [6279] = {.lex_state = 25, .external_lex_state = 74}, - [6280] = {.lex_state = 25, .external_lex_state = 74}, - [6281] = {.lex_state = 25, .external_lex_state = 74}, - [6282] = {.lex_state = 25, .external_lex_state = 74}, - [6283] = {.lex_state = 172, .external_lex_state = 74}, - [6284] = {.lex_state = 172, .external_lex_state = 74}, + [5098] = {.lex_state = 25, .external_lex_state = 74}, + [5099] = {.lex_state = 58, .external_lex_state = 91}, + [5100] = {.lex_state = 25, .external_lex_state = 74}, + [5101] = {.lex_state = 25, .external_lex_state = 74}, + [5102] = {.lex_state = 25, .external_lex_state = 74}, + [5103] = {.lex_state = 25, .external_lex_state = 74}, + [5104] = {.lex_state = 25, .external_lex_state = 74}, + [5105] = {.lex_state = 25, .external_lex_state = 74}, + [5106] = {.lex_state = 25, .external_lex_state = 74}, + [5107] = {.lex_state = 185, .external_lex_state = 71}, + [5108] = {.lex_state = 58, .external_lex_state = 86}, + [5109] = {.lex_state = 58, .external_lex_state = 86}, + [5110] = {.lex_state = 178, .external_lex_state = 100}, + [5111] = {.lex_state = 173, .external_lex_state = 81}, + [5112] = {.lex_state = 173, .external_lex_state = 81}, + [5113] = {.lex_state = 25, .external_lex_state = 74}, + [5114] = {.lex_state = 25, .external_lex_state = 74}, + [5115] = {.lex_state = 25, .external_lex_state = 74}, + [5116] = {.lex_state = 25, .external_lex_state = 74}, + [5117] = {.lex_state = 178, .external_lex_state = 78}, + [5118] = {.lex_state = 184, .external_lex_state = 77}, + [5119] = {.lex_state = 178, .external_lex_state = 77}, + [5120] = {.lex_state = 178, .external_lex_state = 77}, + [5121] = {.lex_state = 178, .external_lex_state = 77}, + [5122] = {.lex_state = 178, .external_lex_state = 77}, + [5123] = {.lex_state = 178, .external_lex_state = 77}, + [5124] = {.lex_state = 178, .external_lex_state = 77}, + [5125] = {.lex_state = 178, .external_lex_state = 78}, + [5126] = {.lex_state = 185, .external_lex_state = 71}, + [5127] = {.lex_state = 178, .external_lex_state = 77}, + [5128] = {.lex_state = 178, .external_lex_state = 77}, + [5129] = {.lex_state = 25, .external_lex_state = 74}, + [5130] = {.lex_state = 25, .external_lex_state = 74}, + [5131] = {.lex_state = 178, .external_lex_state = 77}, + [5132] = {.lex_state = 178, .external_lex_state = 77}, + [5133] = {.lex_state = 178, .external_lex_state = 77}, + [5134] = {.lex_state = 178, .external_lex_state = 77}, + [5135] = {.lex_state = 178, .external_lex_state = 77}, + [5136] = {.lex_state = 182, .external_lex_state = 77}, + [5137] = {.lex_state = 171, .external_lex_state = 81}, + [5138] = {.lex_state = 178, .external_lex_state = 77}, + [5139] = {.lex_state = 178, .external_lex_state = 100}, + [5140] = {.lex_state = 178, .external_lex_state = 77}, + [5141] = {.lex_state = 178, .external_lex_state = 77}, + [5142] = {.lex_state = 178, .external_lex_state = 77}, + [5143] = {.lex_state = 185, .external_lex_state = 71}, + [5144] = {.lex_state = 178, .external_lex_state = 77}, + [5145] = {.lex_state = 178, .external_lex_state = 103}, + [5146] = {.lex_state = 178, .external_lex_state = 103}, + [5147] = {.lex_state = 178, .external_lex_state = 77}, + [5148] = {.lex_state = 178, .external_lex_state = 77}, + [5149] = {.lex_state = 178, .external_lex_state = 77}, + [5150] = {.lex_state = 178, .external_lex_state = 77}, + [5151] = {.lex_state = 173, .external_lex_state = 81}, + [5152] = {.lex_state = 178, .external_lex_state = 98}, + [5153] = {.lex_state = 178, .external_lex_state = 77}, + [5154] = {.lex_state = 178, .external_lex_state = 103}, + [5155] = {.lex_state = 178, .external_lex_state = 74}, + [5156] = {.lex_state = 178, .external_lex_state = 74}, + [5157] = {.lex_state = 178, .external_lex_state = 74}, + [5158] = {.lex_state = 178, .external_lex_state = 74}, + [5159] = {.lex_state = 178, .external_lex_state = 74}, + [5160] = {.lex_state = 178, .external_lex_state = 74}, + [5161] = {.lex_state = 178, .external_lex_state = 74}, + [5162] = {.lex_state = 178, .external_lex_state = 74}, + [5163] = {.lex_state = 178, .external_lex_state = 103}, + [5164] = {.lex_state = 178, .external_lex_state = 74}, + [5165] = {.lex_state = 178, .external_lex_state = 74}, + [5166] = {.lex_state = 178, .external_lex_state = 74}, + [5167] = {.lex_state = 178, .external_lex_state = 74}, + [5168] = {.lex_state = 178, .external_lex_state = 74}, + [5169] = {.lex_state = 178, .external_lex_state = 74}, + [5170] = {.lex_state = 178, .external_lex_state = 74}, + [5171] = {.lex_state = 178, .external_lex_state = 74}, + [5172] = {.lex_state = 178, .external_lex_state = 74}, + [5173] = {.lex_state = 178, .external_lex_state = 77}, + [5174] = {.lex_state = 178, .external_lex_state = 77}, + [5175] = {.lex_state = 178, .external_lex_state = 74}, + [5176] = {.lex_state = 178, .external_lex_state = 74}, + [5177] = {.lex_state = 178, .external_lex_state = 77}, + [5178] = {.lex_state = 178, .external_lex_state = 77}, + [5179] = {.lex_state = 173, .external_lex_state = 81}, + [5180] = {.lex_state = 178, .external_lex_state = 77}, + [5181] = {.lex_state = 178, .external_lex_state = 77}, + [5182] = {.lex_state = 178, .external_lex_state = 77}, + [5183] = {.lex_state = 178, .external_lex_state = 77}, + [5184] = {.lex_state = 178, .external_lex_state = 77}, + [5185] = {.lex_state = 178, .external_lex_state = 77}, + [5186] = {.lex_state = 47, .external_lex_state = 86}, + [5187] = {.lex_state = 47, .external_lex_state = 86}, + [5188] = {.lex_state = 47, .external_lex_state = 86}, + [5189] = {.lex_state = 178, .external_lex_state = 77}, + [5190] = {.lex_state = 178, .external_lex_state = 77}, + [5191] = {.lex_state = 178, .external_lex_state = 77}, + [5192] = {.lex_state = 178, .external_lex_state = 77}, + [5193] = {.lex_state = 178, .external_lex_state = 77}, + [5194] = {.lex_state = 178, .external_lex_state = 77}, + [5195] = {.lex_state = 178, .external_lex_state = 77}, + [5196] = {.lex_state = 178, .external_lex_state = 77}, + [5197] = {.lex_state = 178, .external_lex_state = 77}, + [5198] = {.lex_state = 178, .external_lex_state = 77}, + [5199] = {.lex_state = 178, .external_lex_state = 77}, + [5200] = {.lex_state = 178, .external_lex_state = 77}, + [5201] = {.lex_state = 178, .external_lex_state = 77}, + [5202] = {.lex_state = 178, .external_lex_state = 77}, + [5203] = {.lex_state = 184, .external_lex_state = 77}, + [5204] = {.lex_state = 178, .external_lex_state = 101}, + [5205] = {.lex_state = 178, .external_lex_state = 101}, + [5206] = {.lex_state = 184, .external_lex_state = 77}, + [5207] = {.lex_state = 178, .external_lex_state = 77}, + [5208] = {.lex_state = 178, .external_lex_state = 74}, + [5209] = {.lex_state = 178, .external_lex_state = 77}, + [5210] = {.lex_state = 178, .external_lex_state = 77}, + [5211] = {.lex_state = 178, .external_lex_state = 77}, + [5212] = {.lex_state = 178, .external_lex_state = 77}, + [5213] = {.lex_state = 178, .external_lex_state = 77}, + [5214] = {.lex_state = 178, .external_lex_state = 77}, + [5215] = {.lex_state = 178, .external_lex_state = 101}, + [5216] = {.lex_state = 178, .external_lex_state = 77}, + [5217] = {.lex_state = 185, .external_lex_state = 71}, + [5218] = {.lex_state = 178, .external_lex_state = 77}, + [5219] = {.lex_state = 178, .external_lex_state = 77}, + [5220] = {.lex_state = 178, .external_lex_state = 78}, + [5221] = {.lex_state = 185, .external_lex_state = 71}, + [5222] = {.lex_state = 185, .external_lex_state = 71}, + [5223] = {.lex_state = 25, .external_lex_state = 91}, + [5224] = {.lex_state = 185, .external_lex_state = 86}, + [5225] = {.lex_state = 178, .external_lex_state = 77}, + [5226] = {.lex_state = 178, .external_lex_state = 78}, + [5227] = {.lex_state = 185, .external_lex_state = 71}, + [5228] = {.lex_state = 178, .external_lex_state = 77}, + [5229] = {.lex_state = 178, .external_lex_state = 77}, + [5230] = {.lex_state = 185, .external_lex_state = 71}, + [5231] = {.lex_state = 185, .external_lex_state = 71}, + [5232] = {.lex_state = 185, .external_lex_state = 71}, + [5233] = {.lex_state = 185, .external_lex_state = 71}, + [5234] = {.lex_state = 185, .external_lex_state = 71}, + [5235] = {.lex_state = 185, .external_lex_state = 71}, + [5236] = {.lex_state = 185, .external_lex_state = 71}, + [5237] = {.lex_state = 185, .external_lex_state = 71}, + [5238] = {.lex_state = 173, .external_lex_state = 81}, + [5239] = {.lex_state = 173, .external_lex_state = 81}, + [5240] = {.lex_state = 178, .external_lex_state = 79}, + [5241] = {.lex_state = 47, .external_lex_state = 71}, + [5242] = {.lex_state = 185, .external_lex_state = 71}, + [5243] = {.lex_state = 178, .external_lex_state = 77}, + [5244] = {.lex_state = 185, .external_lex_state = 71}, + [5245] = {.lex_state = 185, .external_lex_state = 71}, + [5246] = {.lex_state = 178, .external_lex_state = 77}, + [5247] = {.lex_state = 178, .external_lex_state = 77}, + [5248] = {.lex_state = 185, .external_lex_state = 71}, + [5249] = {.lex_state = 178, .external_lex_state = 77}, + [5250] = {.lex_state = 185, .external_lex_state = 71}, + [5251] = {.lex_state = 173, .external_lex_state = 81}, + [5252] = {.lex_state = 173, .external_lex_state = 81}, + [5253] = {.lex_state = 173, .external_lex_state = 81}, + [5254] = {.lex_state = 185, .external_lex_state = 71}, + [5255] = {.lex_state = 185, .external_lex_state = 71}, + [5256] = {.lex_state = 178, .external_lex_state = 77}, + [5257] = {.lex_state = 182, .external_lex_state = 81}, + [5258] = {.lex_state = 184, .external_lex_state = 104}, + [5259] = {.lex_state = 185, .external_lex_state = 71}, + [5260] = {.lex_state = 178, .external_lex_state = 77}, + [5261] = {.lex_state = 185, .external_lex_state = 71}, + [5262] = {.lex_state = 185, .external_lex_state = 71}, + [5263] = {.lex_state = 185, .external_lex_state = 71}, + [5264] = {.lex_state = 185, .external_lex_state = 71}, + [5265] = {.lex_state = 185, .external_lex_state = 71}, + [5266] = {.lex_state = 173, .external_lex_state = 81}, + [5267] = {.lex_state = 178, .external_lex_state = 77}, + [5268] = {.lex_state = 185, .external_lex_state = 71}, + [5269] = {.lex_state = 173, .external_lex_state = 81}, + [5270] = {.lex_state = 178, .external_lex_state = 77}, + [5271] = {.lex_state = 178, .external_lex_state = 78}, + [5272] = {.lex_state = 185, .external_lex_state = 71}, + [5273] = {.lex_state = 178, .external_lex_state = 77}, + [5274] = {.lex_state = 178, .external_lex_state = 77}, + [5275] = {.lex_state = 178, .external_lex_state = 77}, + [5276] = {.lex_state = 178, .external_lex_state = 77}, + [5277] = {.lex_state = 185, .external_lex_state = 71}, + [5278] = {.lex_state = 173, .external_lex_state = 81}, + [5279] = {.lex_state = 178, .external_lex_state = 77}, + [5280] = {.lex_state = 178, .external_lex_state = 77}, + [5281] = {.lex_state = 178, .external_lex_state = 77}, + [5282] = {.lex_state = 178, .external_lex_state = 77}, + [5283] = {.lex_state = 185, .external_lex_state = 71}, + [5284] = {.lex_state = 178, .external_lex_state = 77}, + [5285] = {.lex_state = 178, .external_lex_state = 77}, + [5286] = {.lex_state = 178, .external_lex_state = 77}, + [5287] = {.lex_state = 185, .external_lex_state = 71}, + [5288] = {.lex_state = 178, .external_lex_state = 77}, + [5289] = {.lex_state = 178, .external_lex_state = 77}, + [5290] = {.lex_state = 178, .external_lex_state = 77}, + [5291] = {.lex_state = 58, .external_lex_state = 71}, + [5292] = {.lex_state = 58, .external_lex_state = 71}, + [5293] = {.lex_state = 48, .external_lex_state = 71}, + [5294] = {.lex_state = 178, .external_lex_state = 77}, + [5295] = {.lex_state = 178, .external_lex_state = 77}, + [5296] = {.lex_state = 178, .external_lex_state = 77}, + [5297] = {.lex_state = 173, .external_lex_state = 81}, + [5298] = {.lex_state = 178, .external_lex_state = 77}, + [5299] = {.lex_state = 173, .external_lex_state = 81}, + [5300] = {.lex_state = 178, .external_lex_state = 77}, + [5301] = {.lex_state = 185, .external_lex_state = 90}, + [5302] = {.lex_state = 178, .external_lex_state = 77}, + [5303] = {.lex_state = 178, .external_lex_state = 77}, + [5304] = {.lex_state = 178, .external_lex_state = 77}, + [5305] = {.lex_state = 178, .external_lex_state = 77}, + [5306] = {.lex_state = 178, .external_lex_state = 77}, + [5307] = {.lex_state = 178, .external_lex_state = 77}, + [5308] = {.lex_state = 178, .external_lex_state = 77}, + [5309] = {.lex_state = 178, .external_lex_state = 77}, + [5310] = {.lex_state = 57, .external_lex_state = 71}, + [5311] = {.lex_state = 178, .external_lex_state = 77}, + [5312] = {.lex_state = 178, .external_lex_state = 77}, + [5313] = {.lex_state = 178, .external_lex_state = 77}, + [5314] = {.lex_state = 178, .external_lex_state = 77}, + [5315] = {.lex_state = 178, .external_lex_state = 77}, + [5316] = {.lex_state = 178, .external_lex_state = 77}, + [5317] = {.lex_state = 178, .external_lex_state = 77}, + [5318] = {.lex_state = 178, .external_lex_state = 77}, + [5319] = {.lex_state = 178, .external_lex_state = 77}, + [5320] = {.lex_state = 185, .external_lex_state = 71}, + [5321] = {.lex_state = 178, .external_lex_state = 77}, + [5322] = {.lex_state = 178, .external_lex_state = 77}, + [5323] = {.lex_state = 178, .external_lex_state = 77}, + [5324] = {.lex_state = 185, .external_lex_state = 90}, + [5325] = {.lex_state = 178, .external_lex_state = 77}, + [5326] = {.lex_state = 178, .external_lex_state = 77}, + [5327] = {.lex_state = 185, .external_lex_state = 71}, + [5328] = {.lex_state = 178, .external_lex_state = 77}, + [5329] = {.lex_state = 185, .external_lex_state = 71}, + [5330] = {.lex_state = 185, .external_lex_state = 71}, + [5331] = {.lex_state = 185, .external_lex_state = 71}, + [5332] = {.lex_state = 178, .external_lex_state = 77}, + [5333] = {.lex_state = 178, .external_lex_state = 77}, + [5334] = {.lex_state = 185, .external_lex_state = 90}, + [5335] = {.lex_state = 178, .external_lex_state = 77}, + [5336] = {.lex_state = 185, .external_lex_state = 71}, + [5337] = {.lex_state = 185, .external_lex_state = 71}, + [5338] = {.lex_state = 185, .external_lex_state = 71}, + [5339] = {.lex_state = 185, .external_lex_state = 71}, + [5340] = {.lex_state = 57, .external_lex_state = 71}, + [5341] = {.lex_state = 185, .external_lex_state = 71}, + [5342] = {.lex_state = 185, .external_lex_state = 90}, + [5343] = {.lex_state = 185, .external_lex_state = 71}, + [5344] = {.lex_state = 185, .external_lex_state = 71}, + [5345] = {.lex_state = 178, .external_lex_state = 77}, + [5346] = {.lex_state = 178, .external_lex_state = 77}, + [5347] = {.lex_state = 178, .external_lex_state = 77}, + [5348] = {.lex_state = 185, .external_lex_state = 71}, + [5349] = {.lex_state = 178, .external_lex_state = 77}, + [5350] = {.lex_state = 178, .external_lex_state = 77}, + [5351] = {.lex_state = 185, .external_lex_state = 71}, + [5352] = {.lex_state = 185, .external_lex_state = 71}, + [5353] = {.lex_state = 185, .external_lex_state = 71}, + [5354] = {.lex_state = 178, .external_lex_state = 77}, + [5355] = {.lex_state = 173, .external_lex_state = 81}, + [5356] = {.lex_state = 185, .external_lex_state = 71}, + [5357] = {.lex_state = 185, .external_lex_state = 71}, + [5358] = {.lex_state = 178, .external_lex_state = 77}, + [5359] = {.lex_state = 178, .external_lex_state = 77}, + [5360] = {.lex_state = 173, .external_lex_state = 79}, + [5361] = {.lex_state = 178, .external_lex_state = 77}, + [5362] = {.lex_state = 178, .external_lex_state = 77}, + [5363] = {.lex_state = 185, .external_lex_state = 71}, + [5364] = {.lex_state = 178, .external_lex_state = 77}, + [5365] = {.lex_state = 178, .external_lex_state = 77}, + [5366] = {.lex_state = 178, .external_lex_state = 77}, + [5367] = {.lex_state = 178, .external_lex_state = 77}, + [5368] = {.lex_state = 178, .external_lex_state = 77}, + [5369] = {.lex_state = 178, .external_lex_state = 77}, + [5370] = {.lex_state = 178, .external_lex_state = 77}, + [5371] = {.lex_state = 178, .external_lex_state = 77}, + [5372] = {.lex_state = 178, .external_lex_state = 77}, + [5373] = {.lex_state = 178, .external_lex_state = 77}, + [5374] = {.lex_state = 178, .external_lex_state = 77}, + [5375] = {.lex_state = 178, .external_lex_state = 77}, + [5376] = {.lex_state = 178, .external_lex_state = 77}, + [5377] = {.lex_state = 178, .external_lex_state = 77}, + [5378] = {.lex_state = 178, .external_lex_state = 77}, + [5379] = {.lex_state = 178, .external_lex_state = 77}, + [5380] = {.lex_state = 25, .external_lex_state = 91}, + [5381] = {.lex_state = 178, .external_lex_state = 77}, + [5382] = {.lex_state = 178, .external_lex_state = 77}, + [5383] = {.lex_state = 178, .external_lex_state = 77}, + [5384] = {.lex_state = 178, .external_lex_state = 77}, + [5385] = {.lex_state = 178, .external_lex_state = 77}, + [5386] = {.lex_state = 178, .external_lex_state = 77}, + [5387] = {.lex_state = 178, .external_lex_state = 77}, + [5388] = {.lex_state = 178, .external_lex_state = 77}, + [5389] = {.lex_state = 178, .external_lex_state = 77}, + [5390] = {.lex_state = 178, .external_lex_state = 77}, + [5391] = {.lex_state = 178, .external_lex_state = 77}, + [5392] = {.lex_state = 185, .external_lex_state = 71}, + [5393] = {.lex_state = 178, .external_lex_state = 77}, + [5394] = {.lex_state = 178, .external_lex_state = 77}, + [5395] = {.lex_state = 178, .external_lex_state = 77}, + [5396] = {.lex_state = 178, .external_lex_state = 77}, + [5397] = {.lex_state = 178, .external_lex_state = 77}, + [5398] = {.lex_state = 178, .external_lex_state = 77}, + [5399] = {.lex_state = 178, .external_lex_state = 77}, + [5400] = {.lex_state = 185, .external_lex_state = 71}, + [5401] = {.lex_state = 58, .external_lex_state = 71}, + [5402] = {.lex_state = 178, .external_lex_state = 77}, + [5403] = {.lex_state = 178, .external_lex_state = 77}, + [5404] = {.lex_state = 173, .external_lex_state = 81}, + [5405] = {.lex_state = 178, .external_lex_state = 77}, + [5406] = {.lex_state = 48, .external_lex_state = 74}, + [5407] = {.lex_state = 178, .external_lex_state = 77}, + [5408] = {.lex_state = 178, .external_lex_state = 77}, + [5409] = {.lex_state = 173, .external_lex_state = 81}, + [5410] = {.lex_state = 185, .external_lex_state = 71}, + [5411] = {.lex_state = 185, .external_lex_state = 71}, + [5412] = {.lex_state = 173, .external_lex_state = 81}, + [5413] = {.lex_state = 173, .external_lex_state = 81}, + [5414] = {.lex_state = 178, .external_lex_state = 77}, + [5415] = {.lex_state = 178, .external_lex_state = 77}, + [5416] = {.lex_state = 178, .external_lex_state = 77}, + [5417] = {.lex_state = 178, .external_lex_state = 77}, + [5418] = {.lex_state = 178, .external_lex_state = 77}, + [5419] = {.lex_state = 178, .external_lex_state = 77}, + [5420] = {.lex_state = 178, .external_lex_state = 77}, + [5421] = {.lex_state = 178, .external_lex_state = 77}, + [5422] = {.lex_state = 178, .external_lex_state = 77}, + [5423] = {.lex_state = 178, .external_lex_state = 77}, + [5424] = {.lex_state = 178, .external_lex_state = 77}, + [5425] = {.lex_state = 178, .external_lex_state = 77}, + [5426] = {.lex_state = 178, .external_lex_state = 77}, + [5427] = {.lex_state = 185, .external_lex_state = 71}, + [5428] = {.lex_state = 178, .external_lex_state = 77}, + [5429] = {.lex_state = 178, .external_lex_state = 77}, + [5430] = {.lex_state = 178, .external_lex_state = 77}, + [5431] = {.lex_state = 178, .external_lex_state = 77}, + [5432] = {.lex_state = 178, .external_lex_state = 77}, + [5433] = {.lex_state = 178, .external_lex_state = 77}, + [5434] = {.lex_state = 185, .external_lex_state = 71}, + [5435] = {.lex_state = 178, .external_lex_state = 77}, + [5436] = {.lex_state = 178, .external_lex_state = 77}, + [5437] = {.lex_state = 173, .external_lex_state = 81}, + [5438] = {.lex_state = 178, .external_lex_state = 77}, + [5439] = {.lex_state = 178, .external_lex_state = 77}, + [5440] = {.lex_state = 178, .external_lex_state = 78}, + [5441] = {.lex_state = 178, .external_lex_state = 77}, + [5442] = {.lex_state = 178, .external_lex_state = 77}, + [5443] = {.lex_state = 178, .external_lex_state = 77}, + [5444] = {.lex_state = 178, .external_lex_state = 77}, + [5445] = {.lex_state = 178, .external_lex_state = 77}, + [5446] = {.lex_state = 178, .external_lex_state = 77}, + [5447] = {.lex_state = 178, .external_lex_state = 77}, + [5448] = {.lex_state = 184, .external_lex_state = 101}, + [5449] = {.lex_state = 178, .external_lex_state = 77}, + [5450] = {.lex_state = 178, .external_lex_state = 77}, + [5451] = {.lex_state = 178, .external_lex_state = 77}, + [5452] = {.lex_state = 178, .external_lex_state = 77}, + [5453] = {.lex_state = 178, .external_lex_state = 77}, + [5454] = {.lex_state = 185, .external_lex_state = 71}, + [5455] = {.lex_state = 178, .external_lex_state = 77}, + [5456] = {.lex_state = 185, .external_lex_state = 71}, + [5457] = {.lex_state = 178, .external_lex_state = 77}, + [5458] = {.lex_state = 178, .external_lex_state = 77}, + [5459] = {.lex_state = 173, .external_lex_state = 81}, + [5460] = {.lex_state = 178, .external_lex_state = 77}, + [5461] = {.lex_state = 178, .external_lex_state = 77}, + [5462] = {.lex_state = 178, .external_lex_state = 77}, + [5463] = {.lex_state = 185, .external_lex_state = 71}, + [5464] = {.lex_state = 178, .external_lex_state = 77}, + [5465] = {.lex_state = 178, .external_lex_state = 77}, + [5466] = {.lex_state = 25, .external_lex_state = 74}, + [5467] = {.lex_state = 173, .external_lex_state = 81}, + [5468] = {.lex_state = 184, .external_lex_state = 91}, + [5469] = {.lex_state = 178, .external_lex_state = 77}, + [5470] = {.lex_state = 173, .external_lex_state = 81}, + [5471] = {.lex_state = 178, .external_lex_state = 77}, + [5472] = {.lex_state = 173, .external_lex_state = 81}, + [5473] = {.lex_state = 185, .external_lex_state = 71}, + [5474] = {.lex_state = 178, .external_lex_state = 78}, + [5475] = {.lex_state = 173, .external_lex_state = 81}, + [5476] = {.lex_state = 178, .external_lex_state = 78}, + [5477] = {.lex_state = 178, .external_lex_state = 78}, + [5478] = {.lex_state = 173, .external_lex_state = 81}, + [5479] = {.lex_state = 178, .external_lex_state = 78}, + [5480] = {.lex_state = 173, .external_lex_state = 81}, + [5481] = {.lex_state = 178, .external_lex_state = 79}, + [5482] = {.lex_state = 187, .external_lex_state = 102}, + [5483] = {.lex_state = 178, .external_lex_state = 77}, + [5484] = {.lex_state = 184, .external_lex_state = 101}, + [5485] = {.lex_state = 185, .external_lex_state = 71}, + [5486] = {.lex_state = 187, .external_lex_state = 102}, + [5487] = {.lex_state = 185, .external_lex_state = 71}, + [5488] = {.lex_state = 187, .external_lex_state = 102}, + [5489] = {.lex_state = 173, .external_lex_state = 81}, + [5490] = {.lex_state = 178, .external_lex_state = 79}, + [5491] = {.lex_state = 185, .external_lex_state = 71}, + [5492] = {.lex_state = 185, .external_lex_state = 71}, + [5493] = {.lex_state = 185, .external_lex_state = 71}, + [5494] = {.lex_state = 185, .external_lex_state = 71}, + [5495] = {.lex_state = 178, .external_lex_state = 78}, + [5496] = {.lex_state = 185, .external_lex_state = 71}, + [5497] = {.lex_state = 185, .external_lex_state = 71}, + [5498] = {.lex_state = 184, .external_lex_state = 100}, + [5499] = {.lex_state = 173, .external_lex_state = 81}, + [5500] = {.lex_state = 178, .external_lex_state = 78}, + [5501] = {.lex_state = 25, .external_lex_state = 91}, + [5502] = {.lex_state = 178, .external_lex_state = 78}, + [5503] = {.lex_state = 178, .external_lex_state = 78}, + [5504] = {.lex_state = 178, .external_lex_state = 78}, + [5505] = {.lex_state = 178, .external_lex_state = 78}, + [5506] = {.lex_state = 185, .external_lex_state = 71}, + [5507] = {.lex_state = 185, .external_lex_state = 71}, + [5508] = {.lex_state = 184, .external_lex_state = 100}, + [5509] = {.lex_state = 178, .external_lex_state = 77}, + [5510] = {.lex_state = 178, .external_lex_state = 78}, + [5511] = {.lex_state = 178, .external_lex_state = 79}, + [5512] = {.lex_state = 178, .external_lex_state = 78}, + [5513] = {.lex_state = 47, .external_lex_state = 71}, + [5514] = {.lex_state = 178, .external_lex_state = 78}, + [5515] = {.lex_state = 178, .external_lex_state = 78}, + [5516] = {.lex_state = 178, .external_lex_state = 78}, + [5517] = {.lex_state = 185, .external_lex_state = 71}, + [5518] = {.lex_state = 25, .external_lex_state = 74}, + [5519] = {.lex_state = 185, .external_lex_state = 71}, + [5520] = {.lex_state = 185, .external_lex_state = 71}, + [5521] = {.lex_state = 185, .external_lex_state = 71}, + [5522] = {.lex_state = 178, .external_lex_state = 78}, + [5523] = {.lex_state = 182, .external_lex_state = 78}, + [5524] = {.lex_state = 185, .external_lex_state = 71}, + [5525] = {.lex_state = 185, .external_lex_state = 71}, + [5526] = {.lex_state = 185, .external_lex_state = 71}, + [5527] = {.lex_state = 185, .external_lex_state = 71}, + [5528] = {.lex_state = 178, .external_lex_state = 78}, + [5529] = {.lex_state = 185, .external_lex_state = 71}, + [5530] = {.lex_state = 185, .external_lex_state = 71}, + [5531] = {.lex_state = 185, .external_lex_state = 71}, + [5532] = {.lex_state = 185, .external_lex_state = 71}, + [5533] = {.lex_state = 185, .external_lex_state = 71}, + [5534] = {.lex_state = 178, .external_lex_state = 105}, + [5535] = {.lex_state = 185, .external_lex_state = 71}, + [5536] = {.lex_state = 185, .external_lex_state = 71}, + [5537] = {.lex_state = 185, .external_lex_state = 71}, + [5538] = {.lex_state = 178, .external_lex_state = 78}, + [5539] = {.lex_state = 185, .external_lex_state = 71}, + [5540] = {.lex_state = 185, .external_lex_state = 71}, + [5541] = {.lex_state = 185, .external_lex_state = 71}, + [5542] = {.lex_state = 178, .external_lex_state = 105}, + [5543] = {.lex_state = 185, .external_lex_state = 71}, + [5544] = {.lex_state = 185, .external_lex_state = 71}, + [5545] = {.lex_state = 185, .external_lex_state = 71}, + [5546] = {.lex_state = 185, .external_lex_state = 71}, + [5547] = {.lex_state = 184, .external_lex_state = 78}, + [5548] = {.lex_state = 185, .external_lex_state = 71}, + [5549] = {.lex_state = 178, .external_lex_state = 79}, + [5550] = {.lex_state = 185, .external_lex_state = 71}, + [5551] = {.lex_state = 185, .external_lex_state = 71}, + [5552] = {.lex_state = 185, .external_lex_state = 71}, + [5553] = {.lex_state = 185, .external_lex_state = 71}, + [5554] = {.lex_state = 185, .external_lex_state = 71}, + [5555] = {.lex_state = 185, .external_lex_state = 71}, + [5556] = {.lex_state = 185, .external_lex_state = 71}, + [5557] = {.lex_state = 185, .external_lex_state = 71}, + [5558] = {.lex_state = 178, .external_lex_state = 79}, + [5559] = {.lex_state = 178, .external_lex_state = 78}, + [5560] = {.lex_state = 178, .external_lex_state = 79}, + [5561] = {.lex_state = 178, .external_lex_state = 78}, + [5562] = {.lex_state = 185, .external_lex_state = 71}, + [5563] = {.lex_state = 178, .external_lex_state = 78}, + [5564] = {.lex_state = 47, .external_lex_state = 91}, + [5565] = {.lex_state = 185, .external_lex_state = 71}, + [5566] = {.lex_state = 185, .external_lex_state = 71}, + [5567] = {.lex_state = 185, .external_lex_state = 71}, + [5568] = {.lex_state = 178, .external_lex_state = 78}, + [5569] = {.lex_state = 185, .external_lex_state = 71}, + [5570] = {.lex_state = 178, .external_lex_state = 78}, + [5571] = {.lex_state = 185, .external_lex_state = 71}, + [5572] = {.lex_state = 185, .external_lex_state = 71}, + [5573] = {.lex_state = 185, .external_lex_state = 71}, + [5574] = {.lex_state = 178, .external_lex_state = 79}, + [5575] = {.lex_state = 185, .external_lex_state = 71}, + [5576] = {.lex_state = 185, .external_lex_state = 71}, + [5577] = {.lex_state = 185, .external_lex_state = 71}, + [5578] = {.lex_state = 185, .external_lex_state = 71}, + [5579] = {.lex_state = 185, .external_lex_state = 71}, + [5580] = {.lex_state = 185, .external_lex_state = 71}, + [5581] = {.lex_state = 185, .external_lex_state = 71}, + [5582] = {.lex_state = 47, .external_lex_state = 91}, + [5583] = {.lex_state = 185, .external_lex_state = 71}, + [5584] = {.lex_state = 185, .external_lex_state = 71}, + [5585] = {.lex_state = 185, .external_lex_state = 71}, + [5586] = {.lex_state = 185, .external_lex_state = 71}, + [5587] = {.lex_state = 185, .external_lex_state = 71}, + [5588] = {.lex_state = 185, .external_lex_state = 71}, + [5589] = {.lex_state = 185, .external_lex_state = 71}, + [5590] = {.lex_state = 185, .external_lex_state = 71}, + [5591] = {.lex_state = 185, .external_lex_state = 71}, + [5592] = {.lex_state = 185, .external_lex_state = 71}, + [5593] = {.lex_state = 182, .external_lex_state = 79}, + [5594] = {.lex_state = 185, .external_lex_state = 71}, + [5595] = {.lex_state = 185, .external_lex_state = 71}, + [5596] = {.lex_state = 47, .external_lex_state = 71}, + [5597] = {.lex_state = 185, .external_lex_state = 71}, + [5598] = {.lex_state = 185, .external_lex_state = 71}, + [5599] = {.lex_state = 184, .external_lex_state = 79}, + [5600] = {.lex_state = 47, .external_lex_state = 71}, + [5601] = {.lex_state = 47, .external_lex_state = 91}, + [5602] = {.lex_state = 185, .external_lex_state = 71}, + [5603] = {.lex_state = 47, .external_lex_state = 71}, + [5604] = {.lex_state = 47, .external_lex_state = 71}, + [5605] = {.lex_state = 185, .external_lex_state = 71}, + [5606] = {.lex_state = 185, .external_lex_state = 71}, + [5607] = {.lex_state = 185, .external_lex_state = 71}, + [5608] = {.lex_state = 185, .external_lex_state = 71}, + [5609] = {.lex_state = 185, .external_lex_state = 71}, + [5610] = {.lex_state = 173, .external_lex_state = 81}, + [5611] = {.lex_state = 185, .external_lex_state = 71}, + [5612] = {.lex_state = 185, .external_lex_state = 71}, + [5613] = {.lex_state = 185, .external_lex_state = 71}, + [5614] = {.lex_state = 58, .external_lex_state = 91}, + [5615] = {.lex_state = 178, .external_lex_state = 78}, + [5616] = {.lex_state = 178, .external_lex_state = 79}, + [5617] = {.lex_state = 178, .external_lex_state = 78}, + [5618] = {.lex_state = 178, .external_lex_state = 79}, + [5619] = {.lex_state = 178, .external_lex_state = 79}, + [5620] = {.lex_state = 58, .external_lex_state = 91}, + [5621] = {.lex_state = 178, .external_lex_state = 79}, + [5622] = {.lex_state = 185, .external_lex_state = 71}, + [5623] = {.lex_state = 178, .external_lex_state = 105}, + [5624] = {.lex_state = 185, .external_lex_state = 71}, + [5625] = {.lex_state = 178, .external_lex_state = 79}, + [5626] = {.lex_state = 184, .external_lex_state = 71}, + [5627] = {.lex_state = 178, .external_lex_state = 105}, + [5628] = {.lex_state = 25, .external_lex_state = 74}, + [5629] = {.lex_state = 178, .external_lex_state = 79}, + [5630] = {.lex_state = 178, .external_lex_state = 79}, + [5631] = {.lex_state = 178, .external_lex_state = 79}, + [5632] = {.lex_state = 178, .external_lex_state = 79}, + [5633] = {.lex_state = 178, .external_lex_state = 79}, + [5634] = {.lex_state = 178, .external_lex_state = 78}, + [5635] = {.lex_state = 178, .external_lex_state = 78}, + [5636] = {.lex_state = 185, .external_lex_state = 71}, + [5637] = {.lex_state = 185, .external_lex_state = 71}, + [5638] = {.lex_state = 185, .external_lex_state = 71}, + [5639] = {.lex_state = 185, .external_lex_state = 71}, + [5640] = {.lex_state = 185, .external_lex_state = 71}, + [5641] = {.lex_state = 185, .external_lex_state = 71}, + [5642] = {.lex_state = 185, .external_lex_state = 71}, + [5643] = {.lex_state = 178, .external_lex_state = 78}, + [5644] = {.lex_state = 185, .external_lex_state = 71}, + [5645] = {.lex_state = 185, .external_lex_state = 71}, + [5646] = {.lex_state = 185, .external_lex_state = 71}, + [5647] = {.lex_state = 178, .external_lex_state = 79}, + [5648] = {.lex_state = 178, .external_lex_state = 78}, + [5649] = {.lex_state = 178, .external_lex_state = 78}, + [5650] = {.lex_state = 185, .external_lex_state = 71}, + [5651] = {.lex_state = 185, .external_lex_state = 71}, + [5652] = {.lex_state = 178, .external_lex_state = 78}, + [5653] = {.lex_state = 185, .external_lex_state = 71}, + [5654] = {.lex_state = 185, .external_lex_state = 71}, + [5655] = {.lex_state = 187, .external_lex_state = 106}, + [5656] = {.lex_state = 187, .external_lex_state = 106}, + [5657] = {.lex_state = 187, .external_lex_state = 106}, + [5658] = {.lex_state = 185, .external_lex_state = 71}, + [5659] = {.lex_state = 178, .external_lex_state = 79}, + [5660] = {.lex_state = 178, .external_lex_state = 79}, + [5661] = {.lex_state = 185, .external_lex_state = 71}, + [5662] = {.lex_state = 178, .external_lex_state = 79}, + [5663] = {.lex_state = 178, .external_lex_state = 79}, + [5664] = {.lex_state = 185, .external_lex_state = 71}, + [5665] = {.lex_state = 185, .external_lex_state = 71}, + [5666] = {.lex_state = 185, .external_lex_state = 71}, + [5667] = {.lex_state = 185, .external_lex_state = 71}, + [5668] = {.lex_state = 185, .external_lex_state = 71}, + [5669] = {.lex_state = 178, .external_lex_state = 95}, + [5670] = {.lex_state = 185, .external_lex_state = 71}, + [5671] = {.lex_state = 185, .external_lex_state = 71}, + [5672] = {.lex_state = 185, .external_lex_state = 71}, + [5673] = {.lex_state = 185, .external_lex_state = 71}, + [5674] = {.lex_state = 185, .external_lex_state = 71}, + [5675] = {.lex_state = 178, .external_lex_state = 78}, + [5676] = {.lex_state = 185, .external_lex_state = 71}, + [5677] = {.lex_state = 185, .external_lex_state = 71}, + [5678] = {.lex_state = 178, .external_lex_state = 79}, + [5679] = {.lex_state = 178, .external_lex_state = 78}, + [5680] = {.lex_state = 178, .external_lex_state = 78}, + [5681] = {.lex_state = 178, .external_lex_state = 78}, + [5682] = {.lex_state = 178, .external_lex_state = 79}, + [5683] = {.lex_state = 178, .external_lex_state = 79}, + [5684] = {.lex_state = 185, .external_lex_state = 71}, + [5685] = {.lex_state = 185, .external_lex_state = 71}, + [5686] = {.lex_state = 185, .external_lex_state = 71}, + [5687] = {.lex_state = 185, .external_lex_state = 71}, + [5688] = {.lex_state = 185, .external_lex_state = 71}, + [5689] = {.lex_state = 34, .external_lex_state = 99}, + [5690] = {.lex_state = 185, .external_lex_state = 71}, + [5691] = {.lex_state = 185, .external_lex_state = 71}, + [5692] = {.lex_state = 185, .external_lex_state = 71}, + [5693] = {.lex_state = 185, .external_lex_state = 71}, + [5694] = {.lex_state = 185, .external_lex_state = 71}, + [5695] = {.lex_state = 185, .external_lex_state = 71}, + [5696] = {.lex_state = 185, .external_lex_state = 71}, + [5697] = {.lex_state = 185, .external_lex_state = 71}, + [5698] = {.lex_state = 184, .external_lex_state = 79}, + [5699] = {.lex_state = 184, .external_lex_state = 78}, + [5700] = {.lex_state = 178, .external_lex_state = 78}, + [5701] = {.lex_state = 178, .external_lex_state = 78}, + [5702] = {.lex_state = 178, .external_lex_state = 78}, + [5703] = {.lex_state = 178, .external_lex_state = 78}, + [5704] = {.lex_state = 178, .external_lex_state = 95}, + [5705] = {.lex_state = 178, .external_lex_state = 78}, + [5706] = {.lex_state = 178, .external_lex_state = 78}, + [5707] = {.lex_state = 185, .external_lex_state = 71}, + [5708] = {.lex_state = 47, .external_lex_state = 71}, + [5709] = {.lex_state = 185, .external_lex_state = 71}, + [5710] = {.lex_state = 185, .external_lex_state = 71}, + [5711] = {.lex_state = 178, .external_lex_state = 79}, + [5712] = {.lex_state = 178, .external_lex_state = 79}, + [5713] = {.lex_state = 47, .external_lex_state = 71}, + [5714] = {.lex_state = 47, .external_lex_state = 71}, + [5715] = {.lex_state = 185, .external_lex_state = 71}, + [5716] = {.lex_state = 185, .external_lex_state = 71}, + [5717] = {.lex_state = 47, .external_lex_state = 71}, + [5718] = {.lex_state = 185, .external_lex_state = 71}, + [5719] = {.lex_state = 178, .external_lex_state = 79}, + [5720] = {.lex_state = 178, .external_lex_state = 71}, + [5721] = {.lex_state = 178, .external_lex_state = 71}, + [5722] = {.lex_state = 178, .external_lex_state = 79}, + [5723] = {.lex_state = 178, .external_lex_state = 79}, + [5724] = {.lex_state = 185, .external_lex_state = 71}, + [5725] = {.lex_state = 184, .external_lex_state = 78}, + [5726] = {.lex_state = 185, .external_lex_state = 71}, + [5727] = {.lex_state = 185, .external_lex_state = 71}, + [5728] = {.lex_state = 178, .external_lex_state = 79}, + [5729] = {.lex_state = 185, .external_lex_state = 71}, + [5730] = {.lex_state = 185, .external_lex_state = 71}, + [5731] = {.lex_state = 185, .external_lex_state = 71}, + [5732] = {.lex_state = 185, .external_lex_state = 71}, + [5733] = {.lex_state = 185, .external_lex_state = 71}, + [5734] = {.lex_state = 178, .external_lex_state = 79}, + [5735] = {.lex_state = 185, .external_lex_state = 71}, + [5736] = {.lex_state = 185, .external_lex_state = 71}, + [5737] = {.lex_state = 34, .external_lex_state = 99}, + [5738] = {.lex_state = 185, .external_lex_state = 71}, + [5739] = {.lex_state = 185, .external_lex_state = 71}, + [5740] = {.lex_state = 185, .external_lex_state = 71}, + [5741] = {.lex_state = 185, .external_lex_state = 71}, + [5742] = {.lex_state = 178, .external_lex_state = 79}, + [5743] = {.lex_state = 185, .external_lex_state = 71}, + [5744] = {.lex_state = 178, .external_lex_state = 78}, + [5745] = {.lex_state = 178, .external_lex_state = 107}, + [5746] = {.lex_state = 47, .external_lex_state = 71}, + [5747] = {.lex_state = 178, .external_lex_state = 107}, + [5748] = {.lex_state = 178, .external_lex_state = 78}, + [5749] = {.lex_state = 178, .external_lex_state = 78}, + [5750] = {.lex_state = 178, .external_lex_state = 78}, + [5751] = {.lex_state = 178, .external_lex_state = 78}, + [5752] = {.lex_state = 47, .external_lex_state = 71}, + [5753] = {.lex_state = 47, .external_lex_state = 71}, + [5754] = {.lex_state = 178, .external_lex_state = 101}, + [5755] = {.lex_state = 47, .external_lex_state = 71}, + [5756] = {.lex_state = 47, .external_lex_state = 71}, + [5757] = {.lex_state = 47, .external_lex_state = 71}, + [5758] = {.lex_state = 178, .external_lex_state = 79}, + [5759] = {.lex_state = 185, .external_lex_state = 71}, + [5760] = {.lex_state = 178, .external_lex_state = 78}, + [5761] = {.lex_state = 178, .external_lex_state = 107}, + [5762] = {.lex_state = 34, .external_lex_state = 99}, + [5763] = {.lex_state = 178, .external_lex_state = 107}, + [5764] = {.lex_state = 178, .external_lex_state = 78}, + [5765] = {.lex_state = 178, .external_lex_state = 78}, + [5766] = {.lex_state = 178, .external_lex_state = 79}, + [5767] = {.lex_state = 178, .external_lex_state = 79}, + [5768] = {.lex_state = 185, .external_lex_state = 71}, + [5769] = {.lex_state = 178, .external_lex_state = 78}, + [5770] = {.lex_state = 178, .external_lex_state = 78}, + [5771] = {.lex_state = 178, .external_lex_state = 78}, + [5772] = {.lex_state = 178, .external_lex_state = 79}, + [5773] = {.lex_state = 47, .external_lex_state = 71}, + [5774] = {.lex_state = 47, .external_lex_state = 71}, + [5775] = {.lex_state = 47, .external_lex_state = 71}, + [5776] = {.lex_state = 47, .external_lex_state = 71}, + [5777] = {.lex_state = 47, .external_lex_state = 71}, + [5778] = {.lex_state = 47, .external_lex_state = 71}, + [5779] = {.lex_state = 178, .external_lex_state = 79}, + [5780] = {.lex_state = 178, .external_lex_state = 79}, + [5781] = {.lex_state = 185, .external_lex_state = 71}, + [5782] = {.lex_state = 178, .external_lex_state = 71}, + [5783] = {.lex_state = 178, .external_lex_state = 79}, + [5784] = {.lex_state = 178, .external_lex_state = 71}, + [5785] = {.lex_state = 185, .external_lex_state = 71}, + [5786] = {.lex_state = 185, .external_lex_state = 71}, + [5787] = {.lex_state = 185, .external_lex_state = 71}, + [5788] = {.lex_state = 178, .external_lex_state = 79}, + [5789] = {.lex_state = 185, .external_lex_state = 71}, + [5790] = {.lex_state = 178, .external_lex_state = 79}, + [5791] = {.lex_state = 178, .external_lex_state = 79}, + [5792] = {.lex_state = 178, .external_lex_state = 78}, + [5793] = {.lex_state = 178, .external_lex_state = 78}, + [5794] = {.lex_state = 178, .external_lex_state = 78}, + [5795] = {.lex_state = 178, .external_lex_state = 78}, + [5796] = {.lex_state = 178, .external_lex_state = 78}, + [5797] = {.lex_state = 178, .external_lex_state = 78}, + [5798] = {.lex_state = 185, .external_lex_state = 71}, + [5799] = {.lex_state = 178, .external_lex_state = 78}, + [5800] = {.lex_state = 178, .external_lex_state = 79}, + [5801] = {.lex_state = 178, .external_lex_state = 78}, + [5802] = {.lex_state = 178, .external_lex_state = 78}, + [5803] = {.lex_state = 178, .external_lex_state = 79}, + [5804] = {.lex_state = 178, .external_lex_state = 79}, + [5805] = {.lex_state = 178, .external_lex_state = 78}, + [5806] = {.lex_state = 178, .external_lex_state = 78}, + [5807] = {.lex_state = 178, .external_lex_state = 78}, + [5808] = {.lex_state = 178, .external_lex_state = 78}, + [5809] = {.lex_state = 178, .external_lex_state = 78}, + [5810] = {.lex_state = 178, .external_lex_state = 79}, + [5811] = {.lex_state = 185, .external_lex_state = 71}, + [5812] = {.lex_state = 178, .external_lex_state = 78}, + [5813] = {.lex_state = 178, .external_lex_state = 78}, + [5814] = {.lex_state = 178, .external_lex_state = 79}, + [5815] = {.lex_state = 178, .external_lex_state = 78}, + [5816] = {.lex_state = 34, .external_lex_state = 99}, + [5817] = {.lex_state = 178, .external_lex_state = 78}, + [5818] = {.lex_state = 173, .external_lex_state = 104}, + [5819] = {.lex_state = 185, .external_lex_state = 71}, + [5820] = {.lex_state = 184, .external_lex_state = 79}, + [5821] = {.lex_state = 47, .external_lex_state = 71}, + [5822] = {.lex_state = 47, .external_lex_state = 71}, + [5823] = {.lex_state = 47, .external_lex_state = 71}, + [5824] = {.lex_state = 47, .external_lex_state = 71}, + [5825] = {.lex_state = 47, .external_lex_state = 71}, + [5826] = {.lex_state = 47, .external_lex_state = 71}, + [5827] = {.lex_state = 178, .external_lex_state = 79}, + [5828] = {.lex_state = 178, .external_lex_state = 78}, + [5829] = {.lex_state = 178, .external_lex_state = 78}, + [5830] = {.lex_state = 178, .external_lex_state = 78}, + [5831] = {.lex_state = 178, .external_lex_state = 78}, + [5832] = {.lex_state = 173, .external_lex_state = 104}, + [5833] = {.lex_state = 178, .external_lex_state = 100}, + [5834] = {.lex_state = 178, .external_lex_state = 79}, + [5835] = {.lex_state = 173, .external_lex_state = 104}, + [5836] = {.lex_state = 178, .external_lex_state = 78}, + [5837] = {.lex_state = 185, .external_lex_state = 71}, + [5838] = {.lex_state = 178, .external_lex_state = 79}, + [5839] = {.lex_state = 173, .external_lex_state = 81}, + [5840] = {.lex_state = 178, .external_lex_state = 79}, + [5841] = {.lex_state = 178, .external_lex_state = 78}, + [5842] = {.lex_state = 178, .external_lex_state = 79}, + [5843] = {.lex_state = 178, .external_lex_state = 78}, + [5844] = {.lex_state = 178, .external_lex_state = 78}, + [5845] = {.lex_state = 178, .external_lex_state = 78}, + [5846] = {.lex_state = 178, .external_lex_state = 79}, + [5847] = {.lex_state = 178, .external_lex_state = 78}, + [5848] = {.lex_state = 178, .external_lex_state = 78}, + [5849] = {.lex_state = 178, .external_lex_state = 78}, + [5850] = {.lex_state = 178, .external_lex_state = 78}, + [5851] = {.lex_state = 185, .external_lex_state = 71}, + [5852] = {.lex_state = 178, .external_lex_state = 78}, + [5853] = {.lex_state = 178, .external_lex_state = 79}, + [5854] = {.lex_state = 178, .external_lex_state = 78}, + [5855] = {.lex_state = 25, .external_lex_state = 74}, + [5856] = {.lex_state = 178, .external_lex_state = 79}, + [5857] = {.lex_state = 178, .external_lex_state = 79}, + [5858] = {.lex_state = 58, .external_lex_state = 74}, + [5859] = {.lex_state = 25, .external_lex_state = 74}, + [5860] = {.lex_state = 178, .external_lex_state = 79}, + [5861] = {.lex_state = 178, .external_lex_state = 79}, + [5862] = {.lex_state = 25, .external_lex_state = 74}, + [5863] = {.lex_state = 25, .external_lex_state = 74}, + [5864] = {.lex_state = 25, .external_lex_state = 74}, + [5865] = {.lex_state = 178, .external_lex_state = 79}, + [5866] = {.lex_state = 178, .external_lex_state = 79}, + [5867] = {.lex_state = 178, .external_lex_state = 79}, + [5868] = {.lex_state = 178, .external_lex_state = 79}, + [5869] = {.lex_state = 178, .external_lex_state = 79}, + [5870] = {.lex_state = 178, .external_lex_state = 79}, + [5871] = {.lex_state = 178, .external_lex_state = 79}, + [5872] = {.lex_state = 178, .external_lex_state = 79}, + [5873] = {.lex_state = 178, .external_lex_state = 79}, + [5874] = {.lex_state = 178, .external_lex_state = 79}, + [5875] = {.lex_state = 25, .external_lex_state = 74}, + [5876] = {.lex_state = 25, .external_lex_state = 74}, + [5877] = {.lex_state = 25, .external_lex_state = 74}, + [5878] = {.lex_state = 25, .external_lex_state = 74}, + [5879] = {.lex_state = 178, .external_lex_state = 79}, + [5880] = {.lex_state = 178, .external_lex_state = 79}, + [5881] = {.lex_state = 178, .external_lex_state = 79}, + [5882] = {.lex_state = 25, .external_lex_state = 74}, + [5883] = {.lex_state = 25, .external_lex_state = 74}, + [5884] = {.lex_state = 25, .external_lex_state = 74}, + [5885] = {.lex_state = 25, .external_lex_state = 74}, + [5886] = {.lex_state = 178, .external_lex_state = 79}, + [5887] = {.lex_state = 25, .external_lex_state = 74}, + [5888] = {.lex_state = 25, .external_lex_state = 74}, + [5889] = {.lex_state = 25, .external_lex_state = 74}, + [5890] = {.lex_state = 25, .external_lex_state = 74}, + [5891] = {.lex_state = 25, .external_lex_state = 74}, + [5892] = {.lex_state = 25, .external_lex_state = 74}, + [5893] = {.lex_state = 25, .external_lex_state = 74}, + [5894] = {.lex_state = 25, .external_lex_state = 74}, + [5895] = {.lex_state = 25, .external_lex_state = 74}, + [5896] = {.lex_state = 178, .external_lex_state = 79}, + [5897] = {.lex_state = 178, .external_lex_state = 79}, + [5898] = {.lex_state = 25, .external_lex_state = 74}, + [5899] = {.lex_state = 25, .external_lex_state = 74}, + [5900] = {.lex_state = 178, .external_lex_state = 79}, + [5901] = {.lex_state = 25, .external_lex_state = 74}, + [5902] = {.lex_state = 25, .external_lex_state = 74}, + [5903] = {.lex_state = 25, .external_lex_state = 74}, + [5904] = {.lex_state = 25, .external_lex_state = 74}, + [5905] = {.lex_state = 25, .external_lex_state = 74}, + [5906] = {.lex_state = 25, .external_lex_state = 74}, + [5907] = {.lex_state = 25, .external_lex_state = 74}, + [5908] = {.lex_state = 25, .external_lex_state = 74}, + [5909] = {.lex_state = 25, .external_lex_state = 74}, + [5910] = {.lex_state = 25, .external_lex_state = 74}, + [5911] = {.lex_state = 47, .external_lex_state = 71}, + [5912] = {.lex_state = 25, .external_lex_state = 74}, + [5913] = {.lex_state = 178, .external_lex_state = 79}, + [5914] = {.lex_state = 178, .external_lex_state = 79}, + [5915] = {.lex_state = 178, .external_lex_state = 79}, + [5916] = {.lex_state = 47, .external_lex_state = 71}, + [5917] = {.lex_state = 47, .external_lex_state = 71}, + [5918] = {.lex_state = 178, .external_lex_state = 79}, + [5919] = {.lex_state = 47, .external_lex_state = 71}, + [5920] = {.lex_state = 47, .external_lex_state = 71}, + [5921] = {.lex_state = 47, .external_lex_state = 71}, + [5922] = {.lex_state = 47, .external_lex_state = 71}, + [5923] = {.lex_state = 47, .external_lex_state = 71}, + [5924] = {.lex_state = 47, .external_lex_state = 71}, + [5925] = {.lex_state = 47, .external_lex_state = 71}, + [5926] = {.lex_state = 47, .external_lex_state = 71}, + [5927] = {.lex_state = 47, .external_lex_state = 71}, + [5928] = {.lex_state = 47, .external_lex_state = 71}, + [5929] = {.lex_state = 47, .external_lex_state = 71}, + [5930] = {.lex_state = 47, .external_lex_state = 71}, + [5931] = {.lex_state = 25, .external_lex_state = 74}, + [5932] = {.lex_state = 178, .external_lex_state = 79}, + [5933] = {.lex_state = 178, .external_lex_state = 79}, + [5934] = {.lex_state = 47, .external_lex_state = 71}, + [5935] = {.lex_state = 178, .external_lex_state = 79}, + [5936] = {.lex_state = 178, .external_lex_state = 79}, + [5937] = {.lex_state = 178, .external_lex_state = 79}, + [5938] = {.lex_state = 47, .external_lex_state = 71}, + [5939] = {.lex_state = 47, .external_lex_state = 71}, + [5940] = {.lex_state = 178, .external_lex_state = 79}, + [5941] = {.lex_state = 178, .external_lex_state = 79}, + [5942] = {.lex_state = 178, .external_lex_state = 79}, + [5943] = {.lex_state = 47, .external_lex_state = 71}, + [5944] = {.lex_state = 184, .external_lex_state = 104}, + [5945] = {.lex_state = 178, .external_lex_state = 79}, + [5946] = {.lex_state = 178, .external_lex_state = 79}, + [5947] = {.lex_state = 178, .external_lex_state = 79}, + [5948] = {.lex_state = 178, .external_lex_state = 79}, + [5949] = {.lex_state = 32, .external_lex_state = 74}, + [5950] = {.lex_state = 25, .external_lex_state = 74}, + [5951] = {.lex_state = 25, .external_lex_state = 74}, + [5952] = {.lex_state = 178, .external_lex_state = 79}, + [5953] = {.lex_state = 25, .external_lex_state = 74}, + [5954] = {.lex_state = 178, .external_lex_state = 79}, + [5955] = {.lex_state = 25, .external_lex_state = 96}, + [5956] = {.lex_state = 178, .external_lex_state = 79}, + [5957] = {.lex_state = 25, .external_lex_state = 96}, + [5958] = {.lex_state = 32, .external_lex_state = 74}, + [5959] = {.lex_state = 184, .external_lex_state = 104}, + [5960] = {.lex_state = 32, .external_lex_state = 74}, + [5961] = {.lex_state = 32, .external_lex_state = 74}, + [5962] = {.lex_state = 178, .external_lex_state = 79}, + [5963] = {.lex_state = 178, .external_lex_state = 79}, + [5964] = {.lex_state = 32, .external_lex_state = 74}, + [5965] = {.lex_state = 178, .external_lex_state = 79}, + [5966] = {.lex_state = 25, .external_lex_state = 74}, + [5967] = {.lex_state = 178, .external_lex_state = 79}, + [5968] = {.lex_state = 178, .external_lex_state = 79}, + [5969] = {.lex_state = 178, .external_lex_state = 79}, + [5970] = {.lex_state = 187, .external_lex_state = 106}, + [5971] = {.lex_state = 187, .external_lex_state = 106}, + [5972] = {.lex_state = 187, .external_lex_state = 106}, + [5973] = {.lex_state = 25, .external_lex_state = 91}, + [5974] = {.lex_state = 173, .external_lex_state = 74}, + [5975] = {.lex_state = 67, .external_lex_state = 108}, + [5976] = {.lex_state = 47, .external_lex_state = 71}, + [5977] = {.lex_state = 47, .external_lex_state = 71}, + [5978] = {.lex_state = 185, .external_lex_state = 74}, + [5979] = {.lex_state = 47, .external_lex_state = 71}, + [5980] = {.lex_state = 47, .external_lex_state = 71}, + [5981] = {.lex_state = 47, .external_lex_state = 71}, + [5982] = {.lex_state = 25, .external_lex_state = 96}, + [5983] = {.lex_state = 178, .external_lex_state = 79}, + [5984] = {.lex_state = 47, .external_lex_state = 71}, + [5985] = {.lex_state = 25, .external_lex_state = 96}, + [5986] = {.lex_state = 185, .external_lex_state = 74}, + [5987] = {.lex_state = 173, .external_lex_state = 74}, + [5988] = {.lex_state = 67, .external_lex_state = 108}, + [5989] = {.lex_state = 178, .external_lex_state = 79}, + [5990] = {.lex_state = 178, .external_lex_state = 79}, + [5991] = {.lex_state = 25, .external_lex_state = 74}, + [5992] = {.lex_state = 173, .external_lex_state = 74}, + [5993] = {.lex_state = 178, .external_lex_state = 79}, + [5994] = {.lex_state = 67, .external_lex_state = 108}, + [5995] = {.lex_state = 178, .external_lex_state = 79}, + [5996] = {.lex_state = 173, .external_lex_state = 74}, + [5997] = {.lex_state = 67, .external_lex_state = 108}, + [5998] = {.lex_state = 173, .external_lex_state = 74}, + [5999] = {.lex_state = 173, .external_lex_state = 74}, + [6000] = {.lex_state = 67, .external_lex_state = 108}, + [6001] = {.lex_state = 67, .external_lex_state = 108}, + [6002] = {.lex_state = 173, .external_lex_state = 74}, + [6003] = {.lex_state = 67, .external_lex_state = 108}, + [6004] = {.lex_state = 173, .external_lex_state = 74}, + [6005] = {.lex_state = 67, .external_lex_state = 108}, + [6006] = {.lex_state = 173, .external_lex_state = 74}, + [6007] = {.lex_state = 67, .external_lex_state = 108}, + [6008] = {.lex_state = 185, .external_lex_state = 74}, + [6009] = {.lex_state = 173, .external_lex_state = 74}, + [6010] = {.lex_state = 67, .external_lex_state = 108}, + [6011] = {.lex_state = 173, .external_lex_state = 74}, + [6012] = {.lex_state = 67, .external_lex_state = 108}, + [6013] = {.lex_state = 173, .external_lex_state = 74}, + [6014] = {.lex_state = 67, .external_lex_state = 108}, + [6015] = {.lex_state = 173, .external_lex_state = 74}, + [6016] = {.lex_state = 67, .external_lex_state = 108}, + [6017] = {.lex_state = 185, .external_lex_state = 74}, + [6018] = {.lex_state = 173, .external_lex_state = 74}, + [6019] = {.lex_state = 67, .external_lex_state = 108}, + [6020] = {.lex_state = 173, .external_lex_state = 74}, + [6021] = {.lex_state = 67, .external_lex_state = 108}, + [6022] = {.lex_state = 178, .external_lex_state = 79}, + [6023] = {.lex_state = 67, .external_lex_state = 108}, + [6024] = {.lex_state = 32, .external_lex_state = 74}, + [6025] = {.lex_state = 67, .external_lex_state = 108}, + [6026] = {.lex_state = 67, .external_lex_state = 108}, + [6027] = {.lex_state = 25, .external_lex_state = 74}, + [6028] = {.lex_state = 67, .external_lex_state = 108}, + [6029] = {.lex_state = 67, .external_lex_state = 108}, + [6030] = {.lex_state = 67, .external_lex_state = 108}, + [6031] = {.lex_state = 67, .external_lex_state = 108}, + [6032] = {.lex_state = 185, .external_lex_state = 74}, + [6033] = {.lex_state = 185, .external_lex_state = 74}, + [6034] = {.lex_state = 178, .external_lex_state = 79}, + [6035] = {.lex_state = 173, .external_lex_state = 79}, + [6036] = {.lex_state = 178, .external_lex_state = 79}, + [6037] = {.lex_state = 178, .external_lex_state = 79}, + [6038] = {.lex_state = 178, .external_lex_state = 79}, + [6039] = {.lex_state = 178, .external_lex_state = 79}, + [6040] = {.lex_state = 178, .external_lex_state = 78}, + [6041] = {.lex_state = 178, .external_lex_state = 78}, + [6042] = {.lex_state = 178, .external_lex_state = 79}, + [6043] = {.lex_state = 178, .external_lex_state = 79}, + [6044] = {.lex_state = 178, .external_lex_state = 79}, + [6045] = {.lex_state = 178, .external_lex_state = 79}, + [6046] = {.lex_state = 178, .external_lex_state = 79}, + [6047] = {.lex_state = 178, .external_lex_state = 79}, + [6048] = {.lex_state = 178, .external_lex_state = 79}, + [6049] = {.lex_state = 178, .external_lex_state = 79}, + [6050] = {.lex_state = 178, .external_lex_state = 79}, + [6051] = {.lex_state = 58, .external_lex_state = 74}, + [6052] = {.lex_state = 178, .external_lex_state = 79}, + [6053] = {.lex_state = 178, .external_lex_state = 79}, + [6054] = {.lex_state = 178, .external_lex_state = 79}, + [6055] = {.lex_state = 178, .external_lex_state = 79}, + [6056] = {.lex_state = 178, .external_lex_state = 79}, + [6057] = {.lex_state = 178, .external_lex_state = 79}, + [6058] = {.lex_state = 178, .external_lex_state = 79}, + [6059] = {.lex_state = 58, .external_lex_state = 74}, + [6060] = {.lex_state = 178, .external_lex_state = 79}, + [6061] = {.lex_state = 178, .external_lex_state = 79}, + [6062] = {.lex_state = 178, .external_lex_state = 78}, + [6063] = {.lex_state = 178, .external_lex_state = 79}, + [6064] = {.lex_state = 178, .external_lex_state = 79}, + [6065] = {.lex_state = 178, .external_lex_state = 79}, + [6066] = {.lex_state = 178, .external_lex_state = 79}, + [6067] = {.lex_state = 178, .external_lex_state = 79}, + [6068] = {.lex_state = 178, .external_lex_state = 79}, + [6069] = {.lex_state = 178, .external_lex_state = 79}, + [6070] = {.lex_state = 178, .external_lex_state = 79}, + [6071] = {.lex_state = 178, .external_lex_state = 78}, + [6072] = {.lex_state = 178, .external_lex_state = 78}, + [6073] = {.lex_state = 178, .external_lex_state = 79}, + [6074] = {.lex_state = 178, .external_lex_state = 79}, + [6075] = {.lex_state = 178, .external_lex_state = 78}, + [6076] = {.lex_state = 178, .external_lex_state = 79}, + [6077] = {.lex_state = 178, .external_lex_state = 79}, + [6078] = {.lex_state = 178, .external_lex_state = 79}, + [6079] = {.lex_state = 178, .external_lex_state = 79}, + [6080] = {.lex_state = 178, .external_lex_state = 79}, + [6081] = {.lex_state = 178, .external_lex_state = 79}, + [6082] = {.lex_state = 178, .external_lex_state = 79}, + [6083] = {.lex_state = 178, .external_lex_state = 79}, + [6084] = {.lex_state = 178, .external_lex_state = 79}, + [6085] = {.lex_state = 178, .external_lex_state = 79}, + [6086] = {.lex_state = 178, .external_lex_state = 79}, + [6087] = {.lex_state = 178, .external_lex_state = 79}, + [6088] = {.lex_state = 178, .external_lex_state = 79}, + [6089] = {.lex_state = 178, .external_lex_state = 79}, + [6090] = {.lex_state = 173, .external_lex_state = 81}, + [6091] = {.lex_state = 178, .external_lex_state = 79}, + [6092] = {.lex_state = 178, .external_lex_state = 79}, + [6093] = {.lex_state = 178, .external_lex_state = 79}, + [6094] = {.lex_state = 178, .external_lex_state = 79}, + [6095] = {.lex_state = 178, .external_lex_state = 79}, + [6096] = {.lex_state = 178, .external_lex_state = 79}, + [6097] = {.lex_state = 178, .external_lex_state = 79}, + [6098] = {.lex_state = 178, .external_lex_state = 79}, + [6099] = {.lex_state = 178, .external_lex_state = 78}, + [6100] = {.lex_state = 178, .external_lex_state = 79}, + [6101] = {.lex_state = 178, .external_lex_state = 79}, + [6102] = {.lex_state = 178, .external_lex_state = 79}, + [6103] = {.lex_state = 178, .external_lex_state = 78}, + [6104] = {.lex_state = 178, .external_lex_state = 78}, + [6105] = {.lex_state = 178, .external_lex_state = 78}, + [6106] = {.lex_state = 178, .external_lex_state = 78}, + [6107] = {.lex_state = 178, .external_lex_state = 78}, + [6108] = {.lex_state = 178, .external_lex_state = 78}, + [6109] = {.lex_state = 178, .external_lex_state = 78}, + [6110] = {.lex_state = 178, .external_lex_state = 78}, + [6111] = {.lex_state = 178, .external_lex_state = 78}, + [6112] = {.lex_state = 178, .external_lex_state = 78}, + [6113] = {.lex_state = 178, .external_lex_state = 78}, + [6114] = {.lex_state = 178, .external_lex_state = 78}, + [6115] = {.lex_state = 178, .external_lex_state = 78}, + [6116] = {.lex_state = 178, .external_lex_state = 78}, + [6117] = {.lex_state = 178, .external_lex_state = 79}, + [6118] = {.lex_state = 178, .external_lex_state = 79}, + [6119] = {.lex_state = 178, .external_lex_state = 78}, + [6120] = {.lex_state = 178, .external_lex_state = 78}, + [6121] = {.lex_state = 178, .external_lex_state = 78}, + [6122] = {.lex_state = 178, .external_lex_state = 78}, + [6123] = {.lex_state = 178, .external_lex_state = 78}, + [6124] = {.lex_state = 178, .external_lex_state = 78}, + [6125] = {.lex_state = 178, .external_lex_state = 78}, + [6126] = {.lex_state = 178, .external_lex_state = 78}, + [6127] = {.lex_state = 178, .external_lex_state = 78}, + [6128] = {.lex_state = 178, .external_lex_state = 78}, + [6129] = {.lex_state = 178, .external_lex_state = 78}, + [6130] = {.lex_state = 178, .external_lex_state = 78}, + [6131] = {.lex_state = 178, .external_lex_state = 78}, + [6132] = {.lex_state = 178, .external_lex_state = 79}, + [6133] = {.lex_state = 178, .external_lex_state = 78}, + [6134] = {.lex_state = 178, .external_lex_state = 78}, + [6135] = {.lex_state = 178, .external_lex_state = 78}, + [6136] = {.lex_state = 178, .external_lex_state = 78}, + [6137] = {.lex_state = 178, .external_lex_state = 79}, + [6138] = {.lex_state = 178, .external_lex_state = 78}, + [6139] = {.lex_state = 178, .external_lex_state = 78}, + [6140] = {.lex_state = 178, .external_lex_state = 78}, + [6141] = {.lex_state = 178, .external_lex_state = 78}, + [6142] = {.lex_state = 178, .external_lex_state = 78}, + [6143] = {.lex_state = 178, .external_lex_state = 78}, + [6144] = {.lex_state = 178, .external_lex_state = 78}, + [6145] = {.lex_state = 178, .external_lex_state = 78}, + [6146] = {.lex_state = 178, .external_lex_state = 78}, + [6147] = {.lex_state = 178, .external_lex_state = 78}, + [6148] = {.lex_state = 178, .external_lex_state = 78}, + [6149] = {.lex_state = 178, .external_lex_state = 78}, + [6150] = {.lex_state = 178, .external_lex_state = 79}, + [6151] = {.lex_state = 178, .external_lex_state = 78}, + [6152] = {.lex_state = 178, .external_lex_state = 78}, + [6153] = {.lex_state = 178, .external_lex_state = 78}, + [6154] = {.lex_state = 178, .external_lex_state = 78}, + [6155] = {.lex_state = 178, .external_lex_state = 78}, + [6156] = {.lex_state = 178, .external_lex_state = 78}, + [6157] = {.lex_state = 173, .external_lex_state = 74}, + [6158] = {.lex_state = 178, .external_lex_state = 78}, + [6159] = {.lex_state = 178, .external_lex_state = 78}, + [6160] = {.lex_state = 178, .external_lex_state = 79}, + [6161] = {.lex_state = 178, .external_lex_state = 79}, + [6162] = {.lex_state = 178, .external_lex_state = 79}, + [6163] = {.lex_state = 178, .external_lex_state = 78}, + [6164] = {.lex_state = 178, .external_lex_state = 78}, + [6165] = {.lex_state = 178, .external_lex_state = 79}, + [6166] = {.lex_state = 178, .external_lex_state = 78}, + [6167] = {.lex_state = 178, .external_lex_state = 78}, + [6168] = {.lex_state = 178, .external_lex_state = 78}, + [6169] = {.lex_state = 178, .external_lex_state = 78}, + [6170] = {.lex_state = 178, .external_lex_state = 78}, + [6171] = {.lex_state = 178, .external_lex_state = 79}, + [6172] = {.lex_state = 178, .external_lex_state = 78}, + [6173] = {.lex_state = 178, .external_lex_state = 78}, + [6174] = {.lex_state = 178, .external_lex_state = 78}, + [6175] = {.lex_state = 178, .external_lex_state = 78}, + [6176] = {.lex_state = 178, .external_lex_state = 79}, + [6177] = {.lex_state = 178, .external_lex_state = 78}, + [6178] = {.lex_state = 178, .external_lex_state = 78}, + [6179] = {.lex_state = 178, .external_lex_state = 78}, + [6180] = {.lex_state = 178, .external_lex_state = 79}, + [6181] = {.lex_state = 178, .external_lex_state = 79}, + [6182] = {.lex_state = 178, .external_lex_state = 79}, + [6183] = {.lex_state = 178, .external_lex_state = 79}, + [6184] = {.lex_state = 178, .external_lex_state = 79}, + [6185] = {.lex_state = 178, .external_lex_state = 79}, + [6186] = {.lex_state = 178, .external_lex_state = 79}, + [6187] = {.lex_state = 178, .external_lex_state = 79}, + [6188] = {.lex_state = 178, .external_lex_state = 79}, + [6189] = {.lex_state = 178, .external_lex_state = 78}, + [6190] = {.lex_state = 178, .external_lex_state = 78}, + [6191] = {.lex_state = 178, .external_lex_state = 78}, + [6192] = {.lex_state = 178, .external_lex_state = 78}, + [6193] = {.lex_state = 178, .external_lex_state = 78}, + [6194] = {.lex_state = 178, .external_lex_state = 78}, + [6195] = {.lex_state = 173, .external_lex_state = 81}, + [6196] = {.lex_state = 178, .external_lex_state = 79}, + [6197] = {.lex_state = 178, .external_lex_state = 79}, + [6198] = {.lex_state = 178, .external_lex_state = 79}, + [6199] = {.lex_state = 178, .external_lex_state = 78}, + [6200] = {.lex_state = 178, .external_lex_state = 79}, + [6201] = {.lex_state = 178, .external_lex_state = 78}, + [6202] = {.lex_state = 178, .external_lex_state = 78}, + [6203] = {.lex_state = 178, .external_lex_state = 78}, + [6204] = {.lex_state = 178, .external_lex_state = 78}, + [6205] = {.lex_state = 178, .external_lex_state = 78}, + [6206] = {.lex_state = 178, .external_lex_state = 78}, + [6207] = {.lex_state = 178, .external_lex_state = 78}, + [6208] = {.lex_state = 178, .external_lex_state = 78}, + [6209] = {.lex_state = 178, .external_lex_state = 78}, + [6210] = {.lex_state = 178, .external_lex_state = 78}, + [6211] = {.lex_state = 178, .external_lex_state = 78}, + [6212] = {.lex_state = 178, .external_lex_state = 78}, + [6213] = {.lex_state = 178, .external_lex_state = 78}, + [6214] = {.lex_state = 178, .external_lex_state = 78}, + [6215] = {.lex_state = 178, .external_lex_state = 78}, + [6216] = {.lex_state = 178, .external_lex_state = 78}, + [6217] = {.lex_state = 178, .external_lex_state = 78}, + [6218] = {.lex_state = 178, .external_lex_state = 78}, + [6219] = {.lex_state = 178, .external_lex_state = 78}, + [6220] = {.lex_state = 178, .external_lex_state = 79}, + [6221] = {.lex_state = 178, .external_lex_state = 79}, + [6222] = {.lex_state = 178, .external_lex_state = 78}, + [6223] = {.lex_state = 178, .external_lex_state = 78}, + [6224] = {.lex_state = 178, .external_lex_state = 78}, + [6225] = {.lex_state = 178, .external_lex_state = 78}, + [6226] = {.lex_state = 178, .external_lex_state = 79}, + [6227] = {.lex_state = 178, .external_lex_state = 78}, + [6228] = {.lex_state = 178, .external_lex_state = 78}, + [6229] = {.lex_state = 178, .external_lex_state = 78}, + [6230] = {.lex_state = 178, .external_lex_state = 78}, + [6231] = {.lex_state = 178, .external_lex_state = 78}, + [6232] = {.lex_state = 178, .external_lex_state = 78}, + [6233] = {.lex_state = 178, .external_lex_state = 78}, + [6234] = {.lex_state = 178, .external_lex_state = 78}, + [6235] = {.lex_state = 178, .external_lex_state = 78}, + [6236] = {.lex_state = 178, .external_lex_state = 78}, + [6237] = {.lex_state = 178, .external_lex_state = 78}, + [6238] = {.lex_state = 178, .external_lex_state = 78}, + [6239] = {.lex_state = 178, .external_lex_state = 78}, + [6240] = {.lex_state = 178, .external_lex_state = 78}, + [6241] = {.lex_state = 178, .external_lex_state = 79}, + [6242] = {.lex_state = 178, .external_lex_state = 78}, + [6243] = {.lex_state = 178, .external_lex_state = 78}, + [6244] = {.lex_state = 178, .external_lex_state = 78}, + [6245] = {.lex_state = 178, .external_lex_state = 78}, + [6246] = {.lex_state = 178, .external_lex_state = 78}, + [6247] = {.lex_state = 178, .external_lex_state = 79}, + [6248] = {.lex_state = 178, .external_lex_state = 78}, + [6249] = {.lex_state = 47, .external_lex_state = 74}, + [6250] = {.lex_state = 178, .external_lex_state = 79}, + [6251] = {.lex_state = 178, .external_lex_state = 79}, + [6252] = {.lex_state = 178, .external_lex_state = 79}, + [6253] = {.lex_state = 178, .external_lex_state = 79}, + [6254] = {.lex_state = 178, .external_lex_state = 79}, + [6255] = {.lex_state = 178, .external_lex_state = 78}, + [6256] = {.lex_state = 178, .external_lex_state = 78}, + [6257] = {.lex_state = 178, .external_lex_state = 78}, + [6258] = {.lex_state = 178, .external_lex_state = 79}, + [6259] = {.lex_state = 178, .external_lex_state = 79}, + [6260] = {.lex_state = 178, .external_lex_state = 79}, + [6261] = {.lex_state = 178, .external_lex_state = 78}, + [6262] = {.lex_state = 178, .external_lex_state = 78}, + [6263] = {.lex_state = 178, .external_lex_state = 78}, + [6264] = {.lex_state = 178, .external_lex_state = 78}, + [6265] = {.lex_state = 178, .external_lex_state = 78}, + [6266] = {.lex_state = 178, .external_lex_state = 78}, + [6267] = {.lex_state = 178, .external_lex_state = 78}, + [6268] = {.lex_state = 178, .external_lex_state = 78}, + [6269] = {.lex_state = 178, .external_lex_state = 78}, + [6270] = {.lex_state = 178, .external_lex_state = 78}, + [6271] = {.lex_state = 178, .external_lex_state = 78}, + [6272] = {.lex_state = 178, .external_lex_state = 78}, + [6273] = {.lex_state = 178, .external_lex_state = 79}, + [6274] = {.lex_state = 178, .external_lex_state = 78}, + [6275] = {.lex_state = 178, .external_lex_state = 78}, + [6276] = {.lex_state = 178, .external_lex_state = 78}, + [6277] = {.lex_state = 178, .external_lex_state = 78}, + [6278] = {.lex_state = 178, .external_lex_state = 78}, + [6279] = {.lex_state = 178, .external_lex_state = 78}, + [6280] = {.lex_state = 178, .external_lex_state = 78}, + [6281] = {.lex_state = 178, .external_lex_state = 78}, + [6282] = {.lex_state = 178, .external_lex_state = 79}, + [6283] = {.lex_state = 178, .external_lex_state = 79}, + [6284] = {.lex_state = 67, .external_lex_state = 108}, [6285] = {.lex_state = 25, .external_lex_state = 74}, - [6286] = {.lex_state = 172, .external_lex_state = 74}, - [6287] = {.lex_state = 172, .external_lex_state = 79}, - [6288] = {.lex_state = 172, .external_lex_state = 80}, - [6289] = {.lex_state = 172, .external_lex_state = 109}, - [6290] = {.lex_state = 172, .external_lex_state = 80}, - [6291] = {.lex_state = 172, .external_lex_state = 74}, - [6292] = {.lex_state = 172, .external_lex_state = 74}, - [6293] = {.lex_state = 172, .external_lex_state = 74}, - [6294] = {.lex_state = 172, .external_lex_state = 74}, - [6295] = {.lex_state = 25, .external_lex_state = 74}, - [6296] = {.lex_state = 172, .external_lex_state = 74}, - [6297] = {.lex_state = 34, .external_lex_state = 99}, - [6298] = {.lex_state = 172, .external_lex_state = 74}, - [6299] = {.lex_state = 172, .external_lex_state = 74}, - [6300] = {.lex_state = 177, .external_lex_state = 79}, - [6301] = {.lex_state = 25, .external_lex_state = 74}, - [6302] = {.lex_state = 34, .external_lex_state = 99}, - [6303] = {.lex_state = 34, .external_lex_state = 99}, - [6304] = {.lex_state = 172, .external_lex_state = 74}, - [6305] = {.lex_state = 172, .external_lex_state = 79}, - [6306] = {.lex_state = 172, .external_lex_state = 79}, - [6307] = {.lex_state = 172, .external_lex_state = 79}, - [6308] = {.lex_state = 172, .external_lex_state = 79}, - [6309] = {.lex_state = 34, .external_lex_state = 99}, - [6310] = {.lex_state = 66, .external_lex_state = 108}, - [6311] = {.lex_state = 66, .external_lex_state = 108}, - [6312] = {.lex_state = 66, .external_lex_state = 108}, - [6313] = {.lex_state = 34, .external_lex_state = 99}, - [6314] = {.lex_state = 34, .external_lex_state = 99}, - [6315] = {.lex_state = 172, .external_lex_state = 79}, - [6316] = {.lex_state = 172, .external_lex_state = 79}, - [6317] = {.lex_state = 172, .external_lex_state = 79}, - [6318] = {.lex_state = 172, .external_lex_state = 79}, - [6319] = {.lex_state = 66, .external_lex_state = 108}, - [6320] = {.lex_state = 66, .external_lex_state = 108}, - [6321] = {.lex_state = 177, .external_lex_state = 79}, - [6322] = {.lex_state = 66, .external_lex_state = 108}, - [6323] = {.lex_state = 172, .external_lex_state = 79}, - [6324] = {.lex_state = 172, .external_lex_state = 79}, + [6286] = {.lex_state = 25, .external_lex_state = 74}, + [6287] = {.lex_state = 47, .external_lex_state = 91}, + [6288] = {.lex_state = 173, .external_lex_state = 79}, + [6289] = {.lex_state = 173, .external_lex_state = 79}, + [6290] = {.lex_state = 25, .external_lex_state = 74}, + [6291] = {.lex_state = 25, .external_lex_state = 74}, + [6292] = {.lex_state = 25, .external_lex_state = 74}, + [6293] = {.lex_state = 25, .external_lex_state = 74}, + [6294] = {.lex_state = 173, .external_lex_state = 79}, + [6295] = {.lex_state = 173, .external_lex_state = 79}, + [6296] = {.lex_state = 25, .external_lex_state = 74}, + [6297] = {.lex_state = 25, .external_lex_state = 74}, + [6298] = {.lex_state = 47, .external_lex_state = 91}, + [6299] = {.lex_state = 25, .external_lex_state = 74}, + [6300] = {.lex_state = 67, .external_lex_state = 108}, + [6301] = {.lex_state = 67, .external_lex_state = 108}, + [6302] = {.lex_state = 67, .external_lex_state = 108}, + [6303] = {.lex_state = 25, .external_lex_state = 74}, + [6304] = {.lex_state = 25, .external_lex_state = 74}, + [6305] = {.lex_state = 25, .external_lex_state = 74}, + [6306] = {.lex_state = 173, .external_lex_state = 81}, + [6307] = {.lex_state = 25, .external_lex_state = 74}, + [6308] = {.lex_state = 184, .external_lex_state = 81}, + [6309] = {.lex_state = 25, .external_lex_state = 74}, + [6310] = {.lex_state = 25, .external_lex_state = 74}, + [6311] = {.lex_state = 25, .external_lex_state = 74}, + [6312] = {.lex_state = 25, .external_lex_state = 74}, + [6313] = {.lex_state = 173, .external_lex_state = 81}, + [6314] = {.lex_state = 25, .external_lex_state = 74}, + [6315] = {.lex_state = 25, .external_lex_state = 74}, + [6316] = {.lex_state = 25, .external_lex_state = 74}, + [6317] = {.lex_state = 25, .external_lex_state = 74}, + [6318] = {.lex_state = 25, .external_lex_state = 74}, + [6319] = {.lex_state = 47, .external_lex_state = 74}, + [6320] = {.lex_state = 25, .external_lex_state = 74}, + [6321] = {.lex_state = 25, .external_lex_state = 74}, + [6322] = {.lex_state = 25, .external_lex_state = 74}, + [6323] = {.lex_state = 25, .external_lex_state = 74}, + [6324] = {.lex_state = 25, .external_lex_state = 74}, [6325] = {.lex_state = 25, .external_lex_state = 74}, - [6326] = {.lex_state = 172, .external_lex_state = 79}, - [6327] = {.lex_state = 172, .external_lex_state = 79}, + [6326] = {.lex_state = 25, .external_lex_state = 74}, + [6327] = {.lex_state = 173, .external_lex_state = 79}, [6328] = {.lex_state = 25, .external_lex_state = 74}, [6329] = {.lex_state = 25, .external_lex_state = 74}, - [6330] = {.lex_state = 66, .external_lex_state = 108}, - [6331] = {.lex_state = 66, .external_lex_state = 108}, + [6330] = {.lex_state = 173, .external_lex_state = 79}, + [6331] = {.lex_state = 25, .external_lex_state = 74}, [6332] = {.lex_state = 25, .external_lex_state = 74}, - [6333] = {.lex_state = 25, .external_lex_state = 74}, - [6334] = {.lex_state = 172, .external_lex_state = 74}, - [6335] = {.lex_state = 66, .external_lex_state = 108}, - [6336] = {.lex_state = 25, .external_lex_state = 74}, + [6333] = {.lex_state = 173, .external_lex_state = 81}, + [6334] = {.lex_state = 173, .external_lex_state = 81}, + [6335] = {.lex_state = 25, .external_lex_state = 74}, + [6336] = {.lex_state = 173, .external_lex_state = 74}, [6337] = {.lex_state = 25, .external_lex_state = 74}, - [6338] = {.lex_state = 172, .external_lex_state = 79}, - [6339] = {.lex_state = 172, .external_lex_state = 79}, - [6340] = {.lex_state = 172, .external_lex_state = 74}, - [6341] = {.lex_state = 172, .external_lex_state = 79}, + [6338] = {.lex_state = 25, .external_lex_state = 74}, + [6339] = {.lex_state = 173, .external_lex_state = 81}, + [6340] = {.lex_state = 25, .external_lex_state = 74}, + [6341] = {.lex_state = 25, .external_lex_state = 74}, [6342] = {.lex_state = 25, .external_lex_state = 74}, - [6343] = {.lex_state = 25, .external_lex_state = 74}, - [6344] = {.lex_state = 172, .external_lex_state = 79}, - [6345] = {.lex_state = 66, .external_lex_state = 108}, - [6346] = {.lex_state = 66, .external_lex_state = 108}, - [6347] = {.lex_state = 172, .external_lex_state = 74}, - [6348] = {.lex_state = 172, .external_lex_state = 74}, - [6349] = {.lex_state = 172, .external_lex_state = 74}, - [6350] = {.lex_state = 66, .external_lex_state = 108}, + [6343] = {.lex_state = 178, .external_lex_state = 79}, + [6344] = {.lex_state = 25, .external_lex_state = 74}, + [6345] = {.lex_state = 173, .external_lex_state = 81}, + [6346] = {.lex_state = 25, .external_lex_state = 74}, + [6347] = {.lex_state = 67, .external_lex_state = 108}, + [6348] = {.lex_state = 25, .external_lex_state = 74}, + [6349] = {.lex_state = 25, .external_lex_state = 74}, + [6350] = {.lex_state = 25, .external_lex_state = 74}, [6351] = {.lex_state = 25, .external_lex_state = 74}, - [6352] = {.lex_state = 172, .external_lex_state = 74}, - [6353] = {.lex_state = 172, .external_lex_state = 79}, - [6354] = {.lex_state = 172, .external_lex_state = 79}, - [6355] = {.lex_state = 172, .external_lex_state = 79}, - [6356] = {.lex_state = 172, .external_lex_state = 79}, - [6357] = {.lex_state = 25, .external_lex_state = 74}, - [6358] = {.lex_state = 25, .external_lex_state = 74}, - [6359] = {.lex_state = 66, .external_lex_state = 108}, - [6360] = {.lex_state = 66, .external_lex_state = 108}, - [6361] = {.lex_state = 25, .external_lex_state = 74}, - [6362] = {.lex_state = 66, .external_lex_state = 108}, - [6363] = {.lex_state = 172, .external_lex_state = 79}, - [6364] = {.lex_state = 25, .external_lex_state = 74}, - [6365] = {.lex_state = 172, .external_lex_state = 79}, - [6366] = {.lex_state = 172, .external_lex_state = 79}, - [6367] = {.lex_state = 25, .external_lex_state = 74}, - [6368] = {.lex_state = 172, .external_lex_state = 79}, - [6369] = {.lex_state = 172, .external_lex_state = 79}, + [6352] = {.lex_state = 25, .external_lex_state = 74}, + [6353] = {.lex_state = 25, .external_lex_state = 74}, + [6354] = {.lex_state = 173, .external_lex_state = 81}, + [6355] = {.lex_state = 47, .external_lex_state = 74}, + [6356] = {.lex_state = 173, .external_lex_state = 81}, + [6357] = {.lex_state = 173, .external_lex_state = 81}, + [6358] = {.lex_state = 173, .external_lex_state = 81}, + [6359] = {.lex_state = 173, .external_lex_state = 81}, + [6360] = {.lex_state = 25, .external_lex_state = 74}, + [6361] = {.lex_state = 173, .external_lex_state = 81}, + [6362] = {.lex_state = 47, .external_lex_state = 74}, + [6363] = {.lex_state = 178, .external_lex_state = 81}, + [6364] = {.lex_state = 178, .external_lex_state = 81}, + [6365] = {.lex_state = 178, .external_lex_state = 81}, + [6366] = {.lex_state = 184, .external_lex_state = 74}, + [6367] = {.lex_state = 173, .external_lex_state = 81}, + [6368] = {.lex_state = 25, .external_lex_state = 74}, + [6369] = {.lex_state = 173, .external_lex_state = 109}, [6370] = {.lex_state = 25, .external_lex_state = 74}, - [6371] = {.lex_state = 66, .external_lex_state = 108}, - [6372] = {.lex_state = 66, .external_lex_state = 108}, + [6371] = {.lex_state = 173, .external_lex_state = 81}, + [6372] = {.lex_state = 173, .external_lex_state = 81}, [6373] = {.lex_state = 25, .external_lex_state = 74}, - [6374] = {.lex_state = 25, .external_lex_state = 74}, - [6375] = {.lex_state = 183, .external_lex_state = 80}, - [6376] = {.lex_state = 66, .external_lex_state = 108}, - [6377] = {.lex_state = 25, .external_lex_state = 74}, - [6378] = {.lex_state = 25, .external_lex_state = 74}, - [6379] = {.lex_state = 172, .external_lex_state = 79}, - [6380] = {.lex_state = 172, .external_lex_state = 79}, - [6381] = {.lex_state = 25, .external_lex_state = 74}, - [6382] = {.lex_state = 172, .external_lex_state = 79}, - [6383] = {.lex_state = 172, .external_lex_state = 79}, - [6384] = {.lex_state = 66, .external_lex_state = 108}, - [6385] = {.lex_state = 66, .external_lex_state = 108}, - [6386] = {.lex_state = 172, .external_lex_state = 74}, - [6387] = {.lex_state = 172, .external_lex_state = 79}, - [6388] = {.lex_state = 25, .external_lex_state = 74}, - [6389] = {.lex_state = 66, .external_lex_state = 108}, - [6390] = {.lex_state = 172, .external_lex_state = 74}, - [6391] = {.lex_state = 172, .external_lex_state = 79}, - [6392] = {.lex_state = 172, .external_lex_state = 79}, - [6393] = {.lex_state = 172, .external_lex_state = 79}, - [6394] = {.lex_state = 172, .external_lex_state = 79}, - [6395] = {.lex_state = 47, .external_lex_state = 74}, - [6396] = {.lex_state = 66, .external_lex_state = 108}, - [6397] = {.lex_state = 66, .external_lex_state = 108}, - [6398] = {.lex_state = 66, .external_lex_state = 108}, - [6399] = {.lex_state = 25, .external_lex_state = 74}, + [6374] = {.lex_state = 173, .external_lex_state = 81}, + [6375] = {.lex_state = 173, .external_lex_state = 74}, + [6376] = {.lex_state = 173, .external_lex_state = 81}, + [6377] = {.lex_state = 173, .external_lex_state = 81}, + [6378] = {.lex_state = 173, .external_lex_state = 81}, + [6379] = {.lex_state = 173, .external_lex_state = 81}, + [6380] = {.lex_state = 173, .external_lex_state = 81}, + [6381] = {.lex_state = 178, .external_lex_state = 79}, + [6382] = {.lex_state = 34, .external_lex_state = 99}, + [6383] = {.lex_state = 25, .external_lex_state = 74}, + [6384] = {.lex_state = 173, .external_lex_state = 81}, + [6385] = {.lex_state = 173, .external_lex_state = 81}, + [6386] = {.lex_state = 173, .external_lex_state = 81}, + [6387] = {.lex_state = 173, .external_lex_state = 81}, + [6388] = {.lex_state = 173, .external_lex_state = 74}, + [6389] = {.lex_state = 178, .external_lex_state = 79}, + [6390] = {.lex_state = 173, .external_lex_state = 74}, + [6391] = {.lex_state = 25, .external_lex_state = 74}, + [6392] = {.lex_state = 173, .external_lex_state = 74}, + [6393] = {.lex_state = 25, .external_lex_state = 74}, + [6394] = {.lex_state = 25, .external_lex_state = 74}, + [6395] = {.lex_state = 25, .external_lex_state = 74}, + [6396] = {.lex_state = 47, .external_lex_state = 74}, + [6397] = {.lex_state = 173, .external_lex_state = 74}, + [6398] = {.lex_state = 47, .external_lex_state = 74}, + [6399] = {.lex_state = 173, .external_lex_state = 74}, [6400] = {.lex_state = 25, .external_lex_state = 74}, - [6401] = {.lex_state = 172, .external_lex_state = 79}, - [6402] = {.lex_state = 172, .external_lex_state = 79}, - [6403] = {.lex_state = 25, .external_lex_state = 74}, - [6404] = {.lex_state = 172, .external_lex_state = 79}, - [6405] = {.lex_state = 172, .external_lex_state = 79}, - [6406] = {.lex_state = 172, .external_lex_state = 74}, + [6401] = {.lex_state = 173, .external_lex_state = 74}, + [6402] = {.lex_state = 25, .external_lex_state = 74}, + [6403] = {.lex_state = 34, .external_lex_state = 99}, + [6404] = {.lex_state = 173, .external_lex_state = 81}, + [6405] = {.lex_state = 25, .external_lex_state = 74}, + [6406] = {.lex_state = 173, .external_lex_state = 74}, [6407] = {.lex_state = 25, .external_lex_state = 74}, - [6408] = {.lex_state = 66, .external_lex_state = 108}, - [6409] = {.lex_state = 66, .external_lex_state = 108}, - [6410] = {.lex_state = 66, .external_lex_state = 108}, - [6411] = {.lex_state = 172, .external_lex_state = 74}, - [6412] = {.lex_state = 183, .external_lex_state = 80}, - [6413] = {.lex_state = 172, .external_lex_state = 79}, - [6414] = {.lex_state = 172, .external_lex_state = 79}, - [6415] = {.lex_state = 25, .external_lex_state = 74}, - [6416] = {.lex_state = 172, .external_lex_state = 79}, - [6417] = {.lex_state = 172, .external_lex_state = 79}, - [6418] = {.lex_state = 172, .external_lex_state = 80}, - [6419] = {.lex_state = 66, .external_lex_state = 108}, - [6420] = {.lex_state = 66, .external_lex_state = 108}, - [6421] = {.lex_state = 25, .external_lex_state = 74}, - [6422] = {.lex_state = 25, .external_lex_state = 74}, - [6423] = {.lex_state = 25, .external_lex_state = 74}, - [6424] = {.lex_state = 66, .external_lex_state = 108}, - [6425] = {.lex_state = 25, .external_lex_state = 74}, - [6426] = {.lex_state = 25, .external_lex_state = 74}, - [6427] = {.lex_state = 172, .external_lex_state = 79}, - [6428] = {.lex_state = 172, .external_lex_state = 79}, - [6429] = {.lex_state = 47, .external_lex_state = 74}, - [6430] = {.lex_state = 172, .external_lex_state = 79}, - [6431] = {.lex_state = 172, .external_lex_state = 79}, - [6432] = {.lex_state = 66, .external_lex_state = 108}, - [6433] = {.lex_state = 66, .external_lex_state = 108}, - [6434] = {.lex_state = 172, .external_lex_state = 74}, + [6408] = {.lex_state = 25, .external_lex_state = 74}, + [6409] = {.lex_state = 25, .external_lex_state = 74}, + [6410] = {.lex_state = 171, .external_lex_state = 81}, + [6411] = {.lex_state = 173, .external_lex_state = 74}, + [6412] = {.lex_state = 67, .external_lex_state = 108}, + [6413] = {.lex_state = 173, .external_lex_state = 79}, + [6414] = {.lex_state = 173, .external_lex_state = 79}, + [6415] = {.lex_state = 173, .external_lex_state = 81}, + [6416] = {.lex_state = 173, .external_lex_state = 79}, + [6417] = {.lex_state = 173, .external_lex_state = 79}, + [6418] = {.lex_state = 173, .external_lex_state = 81}, + [6419] = {.lex_state = 173, .external_lex_state = 81}, + [6420] = {.lex_state = 67, .external_lex_state = 108}, + [6421] = {.lex_state = 67, .external_lex_state = 108}, + [6422] = {.lex_state = 67, .external_lex_state = 108}, + [6423] = {.lex_state = 34, .external_lex_state = 99}, + [6424] = {.lex_state = 173, .external_lex_state = 79}, + [6425] = {.lex_state = 173, .external_lex_state = 79}, + [6426] = {.lex_state = 173, .external_lex_state = 79}, + [6427] = {.lex_state = 173, .external_lex_state = 79}, + [6428] = {.lex_state = 173, .external_lex_state = 79}, + [6429] = {.lex_state = 173, .external_lex_state = 79}, + [6430] = {.lex_state = 67, .external_lex_state = 108}, + [6431] = {.lex_state = 67, .external_lex_state = 108}, + [6432] = {.lex_state = 67, .external_lex_state = 108}, + [6433] = {.lex_state = 173, .external_lex_state = 109}, + [6434] = {.lex_state = 25, .external_lex_state = 74}, [6435] = {.lex_state = 25, .external_lex_state = 74}, - [6436] = {.lex_state = 66, .external_lex_state = 108}, - [6437] = {.lex_state = 47, .external_lex_state = 74}, - [6438] = {.lex_state = 25, .external_lex_state = 74}, - [6439] = {.lex_state = 172, .external_lex_state = 79}, - [6440] = {.lex_state = 172, .external_lex_state = 79}, - [6441] = {.lex_state = 172, .external_lex_state = 79}, - [6442] = {.lex_state = 172, .external_lex_state = 79}, - [6443] = {.lex_state = 25, .external_lex_state = 74}, - [6444] = {.lex_state = 66, .external_lex_state = 108}, - [6445] = {.lex_state = 66, .external_lex_state = 108}, - [6446] = {.lex_state = 25, .external_lex_state = 74}, - [6447] = {.lex_state = 25, .external_lex_state = 74}, - [6448] = {.lex_state = 172, .external_lex_state = 80}, - [6449] = {.lex_state = 66, .external_lex_state = 108}, + [6436] = {.lex_state = 173, .external_lex_state = 79}, + [6437] = {.lex_state = 173, .external_lex_state = 79}, + [6438] = {.lex_state = 173, .external_lex_state = 79}, + [6439] = {.lex_state = 173, .external_lex_state = 79}, + [6440] = {.lex_state = 67, .external_lex_state = 108}, + [6441] = {.lex_state = 67, .external_lex_state = 108}, + [6442] = {.lex_state = 25, .external_lex_state = 74}, + [6443] = {.lex_state = 67, .external_lex_state = 108}, + [6444] = {.lex_state = 173, .external_lex_state = 79}, + [6445] = {.lex_state = 173, .external_lex_state = 79}, + [6446] = {.lex_state = 173, .external_lex_state = 79}, + [6447] = {.lex_state = 173, .external_lex_state = 79}, + [6448] = {.lex_state = 67, .external_lex_state = 108}, + [6449] = {.lex_state = 67, .external_lex_state = 108}, [6450] = {.lex_state = 25, .external_lex_state = 74}, - [6451] = {.lex_state = 25, .external_lex_state = 74}, - [6452] = {.lex_state = 47, .external_lex_state = 74}, - [6453] = {.lex_state = 25, .external_lex_state = 74}, - [6454] = {.lex_state = 25, .external_lex_state = 74}, - [6455] = {.lex_state = 172, .external_lex_state = 74}, - [6456] = {.lex_state = 25, .external_lex_state = 74}, - [6457] = {.lex_state = 172, .external_lex_state = 74}, + [6451] = {.lex_state = 67, .external_lex_state = 108}, + [6452] = {.lex_state = 25, .external_lex_state = 74}, + [6453] = {.lex_state = 173, .external_lex_state = 109}, + [6454] = {.lex_state = 173, .external_lex_state = 79}, + [6455] = {.lex_state = 173, .external_lex_state = 79}, + [6456] = {.lex_state = 173, .external_lex_state = 79}, + [6457] = {.lex_state = 173, .external_lex_state = 79}, [6458] = {.lex_state = 25, .external_lex_state = 74}, - [6459] = {.lex_state = 25, .external_lex_state = 74}, - [6460] = {.lex_state = 66, .external_lex_state = 108}, - [6461] = {.lex_state = 25, .external_lex_state = 74}, - [6462] = {.lex_state = 172, .external_lex_state = 74}, - [6463] = {.lex_state = 47, .external_lex_state = 74}, - [6464] = {.lex_state = 172, .external_lex_state = 74}, - [6465] = {.lex_state = 172, .external_lex_state = 74}, - [6466] = {.lex_state = 25, .external_lex_state = 74}, - [6467] = {.lex_state = 25, .external_lex_state = 74}, - [6468] = {.lex_state = 172, .external_lex_state = 74}, - [6469] = {.lex_state = 172, .external_lex_state = 109}, + [6459] = {.lex_state = 67, .external_lex_state = 108}, + [6460] = {.lex_state = 67, .external_lex_state = 108}, + [6461] = {.lex_state = 187, .external_lex_state = 110}, + [6462] = {.lex_state = 67, .external_lex_state = 108}, + [6463] = {.lex_state = 25, .external_lex_state = 74}, + [6464] = {.lex_state = 173, .external_lex_state = 81}, + [6465] = {.lex_state = 173, .external_lex_state = 79}, + [6466] = {.lex_state = 173, .external_lex_state = 79}, + [6467] = {.lex_state = 173, .external_lex_state = 79}, + [6468] = {.lex_state = 173, .external_lex_state = 79}, + [6469] = {.lex_state = 25, .external_lex_state = 74}, [6470] = {.lex_state = 25, .external_lex_state = 74}, - [6471] = {.lex_state = 172, .external_lex_state = 74}, - [6472] = {.lex_state = 172, .external_lex_state = 74}, + [6471] = {.lex_state = 67, .external_lex_state = 108}, + [6472] = {.lex_state = 67, .external_lex_state = 108}, [6473] = {.lex_state = 25, .external_lex_state = 74}, - [6474] = {.lex_state = 172, .external_lex_state = 74}, - [6475] = {.lex_state = 34, .external_lex_state = 99}, + [6474] = {.lex_state = 173, .external_lex_state = 81}, + [6475] = {.lex_state = 67, .external_lex_state = 108}, [6476] = {.lex_state = 25, .external_lex_state = 74}, - [6477] = {.lex_state = 66, .external_lex_state = 108}, - [6478] = {.lex_state = 172, .external_lex_state = 74}, - [6479] = {.lex_state = 172, .external_lex_state = 74}, - [6480] = {.lex_state = 172, .external_lex_state = 74}, - [6481] = {.lex_state = 185, .external_lex_state = 110}, - [6482] = {.lex_state = 25, .external_lex_state = 74}, + [6477] = {.lex_state = 25, .external_lex_state = 74}, + [6478] = {.lex_state = 173, .external_lex_state = 79}, + [6479] = {.lex_state = 173, .external_lex_state = 79}, + [6480] = {.lex_state = 173, .external_lex_state = 81}, + [6481] = {.lex_state = 173, .external_lex_state = 79}, + [6482] = {.lex_state = 173, .external_lex_state = 79}, [6483] = {.lex_state = 25, .external_lex_state = 74}, - [6484] = {.lex_state = 25, .external_lex_state = 74}, - [6485] = {.lex_state = 172, .external_lex_state = 74}, - [6486] = {.lex_state = 185, .external_lex_state = 110}, - [6487] = {.lex_state = 177, .external_lex_state = 79}, - [6488] = {.lex_state = 25, .external_lex_state = 74}, - [6489] = {.lex_state = 172, .external_lex_state = 74}, - [6490] = {.lex_state = 172, .external_lex_state = 80}, - [6491] = {.lex_state = 172, .external_lex_state = 79}, - [6492] = {.lex_state = 34, .external_lex_state = 99}, - [6493] = {.lex_state = 25, .external_lex_state = 74}, + [6484] = {.lex_state = 67, .external_lex_state = 108}, + [6485] = {.lex_state = 67, .external_lex_state = 108}, + [6486] = {.lex_state = 67, .external_lex_state = 108}, + [6487] = {.lex_state = 25, .external_lex_state = 74}, + [6488] = {.lex_state = 173, .external_lex_state = 79}, + [6489] = {.lex_state = 173, .external_lex_state = 79}, + [6490] = {.lex_state = 173, .external_lex_state = 79}, + [6491] = {.lex_state = 173, .external_lex_state = 79}, + [6492] = {.lex_state = 67, .external_lex_state = 108}, + [6493] = {.lex_state = 67, .external_lex_state = 108}, [6494] = {.lex_state = 25, .external_lex_state = 74}, - [6495] = {.lex_state = 172, .external_lex_state = 79}, - [6496] = {.lex_state = 172, .external_lex_state = 79}, - [6497] = {.lex_state = 25, .external_lex_state = 74}, - [6498] = {.lex_state = 25, .external_lex_state = 74}, - [6499] = {.lex_state = 172, .external_lex_state = 74}, - [6500] = {.lex_state = 172, .external_lex_state = 74}, - [6501] = {.lex_state = 177, .external_lex_state = 79}, - [6502] = {.lex_state = 172, .external_lex_state = 74}, - [6503] = {.lex_state = 25, .external_lex_state = 74}, + [6495] = {.lex_state = 67, .external_lex_state = 108}, + [6496] = {.lex_state = 173, .external_lex_state = 81}, + [6497] = {.lex_state = 173, .external_lex_state = 79}, + [6498] = {.lex_state = 173, .external_lex_state = 79}, + [6499] = {.lex_state = 173, .external_lex_state = 79}, + [6500] = {.lex_state = 173, .external_lex_state = 79}, + [6501] = {.lex_state = 67, .external_lex_state = 108}, + [6502] = {.lex_state = 67, .external_lex_state = 108}, + [6503] = {.lex_state = 67, .external_lex_state = 108}, [6504] = {.lex_state = 25, .external_lex_state = 74}, [6505] = {.lex_state = 25, .external_lex_state = 74}, - [6506] = {.lex_state = 25, .external_lex_state = 74}, - [6507] = {.lex_state = 172, .external_lex_state = 80}, - [6508] = {.lex_state = 25, .external_lex_state = 74}, - [6509] = {.lex_state = 25, .external_lex_state = 74}, - [6510] = {.lex_state = 25, .external_lex_state = 74}, - [6511] = {.lex_state = 25, .external_lex_state = 74}, - [6512] = {.lex_state = 177, .external_lex_state = 80}, - [6513] = {.lex_state = 172, .external_lex_state = 80}, - [6514] = {.lex_state = 177, .external_lex_state = 80}, - [6515] = {.lex_state = 172, .external_lex_state = 80}, - [6516] = {.lex_state = 177, .external_lex_state = 80}, - [6517] = {.lex_state = 172, .external_lex_state = 74}, - [6518] = {.lex_state = 25, .external_lex_state = 74}, - [6519] = {.lex_state = 172, .external_lex_state = 80}, - [6520] = {.lex_state = 25, .external_lex_state = 74}, - [6521] = {.lex_state = 25, .external_lex_state = 74}, - [6522] = {.lex_state = 25, .external_lex_state = 74}, - [6523] = {.lex_state = 25, .external_lex_state = 74}, - [6524] = {.lex_state = 172, .external_lex_state = 79}, - [6525] = {.lex_state = 172, .external_lex_state = 79}, - [6526] = {.lex_state = 183, .external_lex_state = 80}, - [6527] = {.lex_state = 25, .external_lex_state = 74}, - [6528] = {.lex_state = 25, .external_lex_state = 74}, - [6529] = {.lex_state = 25, .external_lex_state = 74}, - [6530] = {.lex_state = 172, .external_lex_state = 80}, - [6531] = {.lex_state = 25, .external_lex_state = 74}, - [6532] = {.lex_state = 25, .external_lex_state = 74}, - [6533] = {.lex_state = 25, .external_lex_state = 74}, - [6534] = {.lex_state = 25, .external_lex_state = 74}, - [6535] = {.lex_state = 25, .external_lex_state = 74}, - [6536] = {.lex_state = 172, .external_lex_state = 74}, - [6537] = {.lex_state = 25, .external_lex_state = 74}, - [6538] = {.lex_state = 25, .external_lex_state = 74}, - [6539] = {.lex_state = 25, .external_lex_state = 74}, + [6506] = {.lex_state = 173, .external_lex_state = 79}, + [6507] = {.lex_state = 173, .external_lex_state = 79}, + [6508] = {.lex_state = 173, .external_lex_state = 81}, + [6509] = {.lex_state = 173, .external_lex_state = 79}, + [6510] = {.lex_state = 173, .external_lex_state = 79}, + [6511] = {.lex_state = 173, .external_lex_state = 109}, + [6512] = {.lex_state = 47, .external_lex_state = 74}, + [6513] = {.lex_state = 67, .external_lex_state = 108}, + [6514] = {.lex_state = 67, .external_lex_state = 108}, + [6515] = {.lex_state = 173, .external_lex_state = 81}, + [6516] = {.lex_state = 173, .external_lex_state = 74}, + [6517] = {.lex_state = 34, .external_lex_state = 99}, + [6518] = {.lex_state = 67, .external_lex_state = 108}, + [6519] = {.lex_state = 173, .external_lex_state = 79}, + [6520] = {.lex_state = 173, .external_lex_state = 79}, + [6521] = {.lex_state = 173, .external_lex_state = 79}, + [6522] = {.lex_state = 173, .external_lex_state = 79}, + [6523] = {.lex_state = 178, .external_lex_state = 79}, + [6524] = {.lex_state = 25, .external_lex_state = 74}, + [6525] = {.lex_state = 67, .external_lex_state = 108}, + [6526] = {.lex_state = 173, .external_lex_state = 79}, + [6527] = {.lex_state = 173, .external_lex_state = 79}, + [6528] = {.lex_state = 173, .external_lex_state = 79}, + [6529] = {.lex_state = 173, .external_lex_state = 79}, + [6530] = {.lex_state = 173, .external_lex_state = 79}, + [6531] = {.lex_state = 67, .external_lex_state = 108}, + [6532] = {.lex_state = 67, .external_lex_state = 108}, + [6533] = {.lex_state = 173, .external_lex_state = 81}, + [6534] = {.lex_state = 173, .external_lex_state = 74}, + [6535] = {.lex_state = 67, .external_lex_state = 108}, + [6536] = {.lex_state = 173, .external_lex_state = 74}, + [6537] = {.lex_state = 173, .external_lex_state = 74}, + [6538] = {.lex_state = 173, .external_lex_state = 81}, + [6539] = {.lex_state = 47, .external_lex_state = 74}, [6540] = {.lex_state = 25, .external_lex_state = 74}, - [6541] = {.lex_state = 34, .external_lex_state = 99}, - [6542] = {.lex_state = 25, .external_lex_state = 74}, - [6543] = {.lex_state = 25, .external_lex_state = 74}, + [6541] = {.lex_state = 173, .external_lex_state = 79}, + [6542] = {.lex_state = 173, .external_lex_state = 79}, + [6543] = {.lex_state = 173, .external_lex_state = 81}, [6544] = {.lex_state = 25, .external_lex_state = 74}, - [6545] = {.lex_state = 172, .external_lex_state = 74}, - [6546] = {.lex_state = 66, .external_lex_state = 108}, - [6547] = {.lex_state = 66, .external_lex_state = 108}, - [6548] = {.lex_state = 172, .external_lex_state = 74}, - [6549] = {.lex_state = 172, .external_lex_state = 74}, - [6550] = {.lex_state = 172, .external_lex_state = 74}, - [6551] = {.lex_state = 172, .external_lex_state = 74}, - [6552] = {.lex_state = 25, .external_lex_state = 74}, + [6545] = {.lex_state = 25, .external_lex_state = 74}, + [6546] = {.lex_state = 25, .external_lex_state = 74}, + [6547] = {.lex_state = 25, .external_lex_state = 74}, + [6548] = {.lex_state = 25, .external_lex_state = 74}, + [6549] = {.lex_state = 25, .external_lex_state = 74}, + [6550] = {.lex_state = 25, .external_lex_state = 74}, + [6551] = {.lex_state = 25, .external_lex_state = 74}, + [6552] = {.lex_state = 173, .external_lex_state = 74}, [6553] = {.lex_state = 25, .external_lex_state = 74}, - [6554] = {.lex_state = 172, .external_lex_state = 109}, - [6555] = {.lex_state = 172, .external_lex_state = 74}, - [6556] = {.lex_state = 25, .external_lex_state = 74}, - [6557] = {.lex_state = 25, .external_lex_state = 74}, - [6558] = {.lex_state = 25, .external_lex_state = 74}, - [6559] = {.lex_state = 172, .external_lex_state = 74}, + [6554] = {.lex_state = 34, .external_lex_state = 99}, + [6555] = {.lex_state = 173, .external_lex_state = 81}, + [6556] = {.lex_state = 173, .external_lex_state = 74}, + [6557] = {.lex_state = 173, .external_lex_state = 74}, + [6558] = {.lex_state = 173, .external_lex_state = 74}, + [6559] = {.lex_state = 25, .external_lex_state = 74}, [6560] = {.lex_state = 25, .external_lex_state = 74}, - [6561] = {.lex_state = 172, .external_lex_state = 74}, - [6562] = {.lex_state = 172, .external_lex_state = 74}, - [6563] = {.lex_state = 34, .external_lex_state = 99}, - [6564] = {.lex_state = 25, .external_lex_state = 74}, - [6565] = {.lex_state = 172, .external_lex_state = 74}, + [6561] = {.lex_state = 173, .external_lex_state = 74}, + [6562] = {.lex_state = 34, .external_lex_state = 99}, + [6563] = {.lex_state = 25, .external_lex_state = 74}, + [6564] = {.lex_state = 173, .external_lex_state = 74}, + [6565] = {.lex_state = 34, .external_lex_state = 99}, [6566] = {.lex_state = 25, .external_lex_state = 74}, - [6567] = {.lex_state = 47, .external_lex_state = 74}, - [6568] = {.lex_state = 66, .external_lex_state = 108}, - [6569] = {.lex_state = 47, .external_lex_state = 74}, - [6570] = {.lex_state = 47, .external_lex_state = 74}, - [6571] = {.lex_state = 25, .external_lex_state = 74}, - [6572] = {.lex_state = 34, .external_lex_state = 99}, - [6573] = {.lex_state = 172, .external_lex_state = 74}, - [6574] = {.lex_state = 25, .external_lex_state = 74}, - [6575] = {.lex_state = 25, .external_lex_state = 74}, - [6576] = {.lex_state = 25, .external_lex_state = 74}, + [6567] = {.lex_state = 173, .external_lex_state = 74}, + [6568] = {.lex_state = 34, .external_lex_state = 99}, + [6569] = {.lex_state = 25, .external_lex_state = 74}, + [6570] = {.lex_state = 173, .external_lex_state = 74}, + [6571] = {.lex_state = 187, .external_lex_state = 110}, + [6572] = {.lex_state = 173, .external_lex_state = 74}, + [6573] = {.lex_state = 173, .external_lex_state = 74}, + [6574] = {.lex_state = 173, .external_lex_state = 74}, + [6575] = {.lex_state = 187, .external_lex_state = 110}, + [6576] = {.lex_state = 184, .external_lex_state = 81}, [6577] = {.lex_state = 25, .external_lex_state = 74}, - [6578] = {.lex_state = 172, .external_lex_state = 74}, - [6579] = {.lex_state = 172, .external_lex_state = 74}, - [6580] = {.lex_state = 172, .external_lex_state = 74}, - [6581] = {.lex_state = 34, .external_lex_state = 99}, - [6582] = {.lex_state = 172, .external_lex_state = 104}, - [6583] = {.lex_state = 172, .external_lex_state = 74}, - [6584] = {.lex_state = 34, .external_lex_state = 99}, - [6585] = {.lex_state = 172, .external_lex_state = 74}, - [6586] = {.lex_state = 34, .external_lex_state = 99}, - [6587] = {.lex_state = 34, .external_lex_state = 99}, - [6588] = {.lex_state = 34, .external_lex_state = 99}, - [6589] = {.lex_state = 172, .external_lex_state = 80}, - [6590] = {.lex_state = 172, .external_lex_state = 80}, - [6591] = {.lex_state = 34, .external_lex_state = 99}, - [6592] = {.lex_state = 172, .external_lex_state = 80}, - [6593] = {.lex_state = 172, .external_lex_state = 80}, - [6594] = {.lex_state = 34, .external_lex_state = 99}, - [6595] = {.lex_state = 34, .external_lex_state = 99}, - [6596] = {.lex_state = 25, .external_lex_state = 74}, + [6578] = {.lex_state = 173, .external_lex_state = 74}, + [6579] = {.lex_state = 25, .external_lex_state = 74}, + [6580] = {.lex_state = 34, .external_lex_state = 99}, + [6581] = {.lex_state = 25, .external_lex_state = 74}, + [6582] = {.lex_state = 173, .external_lex_state = 74}, + [6583] = {.lex_state = 173, .external_lex_state = 74}, + [6584] = {.lex_state = 25, .external_lex_state = 74}, + [6585] = {.lex_state = 173, .external_lex_state = 74}, + [6586] = {.lex_state = 25, .external_lex_state = 74}, + [6587] = {.lex_state = 25, .external_lex_state = 74}, + [6588] = {.lex_state = 184, .external_lex_state = 81}, + [6589] = {.lex_state = 25, .external_lex_state = 74}, + [6590] = {.lex_state = 173, .external_lex_state = 74}, + [6591] = {.lex_state = 25, .external_lex_state = 74}, + [6592] = {.lex_state = 34, .external_lex_state = 99}, + [6593] = {.lex_state = 25, .external_lex_state = 74}, + [6594] = {.lex_state = 173, .external_lex_state = 74}, + [6595] = {.lex_state = 173, .external_lex_state = 74}, + [6596] = {.lex_state = 67, .external_lex_state = 108}, [6597] = {.lex_state = 25, .external_lex_state = 74}, - [6598] = {.lex_state = 185, .external_lex_state = 110}, - [6599] = {.lex_state = 25, .external_lex_state = 74}, - [6600] = {.lex_state = 25, .external_lex_state = 74}, - [6601] = {.lex_state = 34, .external_lex_state = 99}, - [6602] = {.lex_state = 34, .external_lex_state = 99}, + [6598] = {.lex_state = 173, .external_lex_state = 74}, + [6599] = {.lex_state = 173, .external_lex_state = 81}, + [6600] = {.lex_state = 173, .external_lex_state = 81}, + [6601] = {.lex_state = 173, .external_lex_state = 74}, + [6602] = {.lex_state = 25, .external_lex_state = 74}, [6603] = {.lex_state = 34, .external_lex_state = 99}, - [6604] = {.lex_state = 34, .external_lex_state = 99}, - [6605] = {.lex_state = 34, .external_lex_state = 99}, - [6606] = {.lex_state = 66, .external_lex_state = 108}, - [6607] = {.lex_state = 172, .external_lex_state = 74}, - [6608] = {.lex_state = 172, .external_lex_state = 80}, - [6609] = {.lex_state = 172, .external_lex_state = 74}, - [6610] = {.lex_state = 172, .external_lex_state = 74}, - [6611] = {.lex_state = 25, .external_lex_state = 74}, - [6612] = {.lex_state = 172, .external_lex_state = 74}, - [6613] = {.lex_state = 25, .external_lex_state = 74}, - [6614] = {.lex_state = 25, .external_lex_state = 74}, - [6615] = {.lex_state = 25, .external_lex_state = 74}, + [6604] = {.lex_state = 178, .external_lex_state = 81}, + [6605] = {.lex_state = 25, .external_lex_state = 74}, + [6606] = {.lex_state = 173, .external_lex_state = 74}, + [6607] = {.lex_state = 178, .external_lex_state = 79}, + [6608] = {.lex_state = 173, .external_lex_state = 74}, + [6609] = {.lex_state = 178, .external_lex_state = 81}, + [6610] = {.lex_state = 25, .external_lex_state = 74}, + [6611] = {.lex_state = 173, .external_lex_state = 81}, + [6612] = {.lex_state = 178, .external_lex_state = 81}, + [6613] = {.lex_state = 173, .external_lex_state = 74}, + [6614] = {.lex_state = 47, .external_lex_state = 74}, + [6615] = {.lex_state = 173, .external_lex_state = 74}, [6616] = {.lex_state = 25, .external_lex_state = 74}, - [6617] = {.lex_state = 25, .external_lex_state = 74}, + [6617] = {.lex_state = 34, .external_lex_state = 99}, [6618] = {.lex_state = 25, .external_lex_state = 74}, - [6619] = {.lex_state = 25, .external_lex_state = 74}, - [6620] = {.lex_state = 25, .external_lex_state = 74}, + [6619] = {.lex_state = 173, .external_lex_state = 74}, + [6620] = {.lex_state = 173, .external_lex_state = 74}, [6621] = {.lex_state = 25, .external_lex_state = 74}, - [6622] = {.lex_state = 25, .external_lex_state = 74}, - [6623] = {.lex_state = 25, .external_lex_state = 74}, - [6624] = {.lex_state = 25, .external_lex_state = 74}, - [6625] = {.lex_state = 25, .external_lex_state = 74}, - [6626] = {.lex_state = 172, .external_lex_state = 74}, + [6622] = {.lex_state = 173, .external_lex_state = 74}, + [6623] = {.lex_state = 173, .external_lex_state = 74}, + [6624] = {.lex_state = 173, .external_lex_state = 74}, + [6625] = {.lex_state = 173, .external_lex_state = 74}, + [6626] = {.lex_state = 173, .external_lex_state = 74}, [6627] = {.lex_state = 34, .external_lex_state = 99}, [6628] = {.lex_state = 25, .external_lex_state = 74}, - [6629] = {.lex_state = 172, .external_lex_state = 79}, - [6630] = {.lex_state = 25, .external_lex_state = 74}, + [6629] = {.lex_state = 173, .external_lex_state = 74}, + [6630] = {.lex_state = 173, .external_lex_state = 74}, [6631] = {.lex_state = 25, .external_lex_state = 74}, [6632] = {.lex_state = 25, .external_lex_state = 74}, - [6633] = {.lex_state = 25, .external_lex_state = 74}, - [6634] = {.lex_state = 172, .external_lex_state = 74}, - [6635] = {.lex_state = 172, .external_lex_state = 74}, - [6636] = {.lex_state = 172, .external_lex_state = 74}, - [6637] = {.lex_state = 177, .external_lex_state = 79}, - [6638] = {.lex_state = 25, .external_lex_state = 74}, - [6639] = {.lex_state = 172, .external_lex_state = 80}, + [6633] = {.lex_state = 173, .external_lex_state = 74}, + [6634] = {.lex_state = 34, .external_lex_state = 99}, + [6635] = {.lex_state = 173, .external_lex_state = 81}, + [6636] = {.lex_state = 173, .external_lex_state = 81}, + [6637] = {.lex_state = 25, .external_lex_state = 74}, + [6638] = {.lex_state = 173, .external_lex_state = 74}, + [6639] = {.lex_state = 173, .external_lex_state = 74}, [6640] = {.lex_state = 25, .external_lex_state = 74}, - [6641] = {.lex_state = 34, .external_lex_state = 99}, + [6641] = {.lex_state = 25, .external_lex_state = 74}, [6642] = {.lex_state = 25, .external_lex_state = 74}, [6643] = {.lex_state = 25, .external_lex_state = 74}, [6644] = {.lex_state = 25, .external_lex_state = 74}, - [6645] = {.lex_state = 25, .external_lex_state = 74}, - [6646] = {.lex_state = 25, .external_lex_state = 74}, - [6647] = {.lex_state = 25, .external_lex_state = 74}, - [6648] = {.lex_state = 25, .external_lex_state = 74}, + [6645] = {.lex_state = 173, .external_lex_state = 74}, + [6646] = {.lex_state = 173, .external_lex_state = 81}, + [6647] = {.lex_state = 173, .external_lex_state = 74}, + [6648] = {.lex_state = 173, .external_lex_state = 74}, [6649] = {.lex_state = 25, .external_lex_state = 74}, - [6650] = {.lex_state = 172, .external_lex_state = 80}, - [6651] = {.lex_state = 172, .external_lex_state = 80}, - [6652] = {.lex_state = 172, .external_lex_state = 80}, - [6653] = {.lex_state = 172, .external_lex_state = 80}, - [6654] = {.lex_state = 172, .external_lex_state = 79}, - [6655] = {.lex_state = 47, .external_lex_state = 74}, - [6656] = {.lex_state = 172, .external_lex_state = 80}, - [6657] = {.lex_state = 172, .external_lex_state = 80}, - [6658] = {.lex_state = 33, .external_lex_state = 99}, - [6659] = {.lex_state = 172, .external_lex_state = 80}, - [6660] = {.lex_state = 172, .external_lex_state = 80}, - [6661] = {.lex_state = 172, .external_lex_state = 80}, - [6662] = {.lex_state = 172, .external_lex_state = 80}, - [6663] = {.lex_state = 172, .external_lex_state = 80}, - [6664] = {.lex_state = 172, .external_lex_state = 80}, - [6665] = {.lex_state = 172, .external_lex_state = 80}, - [6666] = {.lex_state = 172, .external_lex_state = 80}, - [6667] = {.lex_state = 172, .external_lex_state = 80}, - [6668] = {.lex_state = 172, .external_lex_state = 80}, - [6669] = {.lex_state = 172, .external_lex_state = 80}, - [6670] = {.lex_state = 172, .external_lex_state = 80}, - [6671] = {.lex_state = 172, .external_lex_state = 80}, - [6672] = {.lex_state = 172, .external_lex_state = 80}, - [6673] = {.lex_state = 172, .external_lex_state = 80}, - [6674] = {.lex_state = 172, .external_lex_state = 80}, - [6675] = {.lex_state = 172, .external_lex_state = 80}, - [6676] = {.lex_state = 172, .external_lex_state = 80}, - [6677] = {.lex_state = 172, .external_lex_state = 80}, - [6678] = {.lex_state = 172, .external_lex_state = 80}, - [6679] = {.lex_state = 172, .external_lex_state = 80}, - [6680] = {.lex_state = 172, .external_lex_state = 80}, - [6681] = {.lex_state = 172, .external_lex_state = 80}, - [6682] = {.lex_state = 172, .external_lex_state = 80}, - [6683] = {.lex_state = 172, .external_lex_state = 80}, - [6684] = {.lex_state = 172, .external_lex_state = 80}, - [6685] = {.lex_state = 172, .external_lex_state = 80}, - [6686] = {.lex_state = 33, .external_lex_state = 99}, - [6687] = {.lex_state = 170, .external_lex_state = 74}, - [6688] = {.lex_state = 172, .external_lex_state = 80}, - [6689] = {.lex_state = 172, .external_lex_state = 80}, - [6690] = {.lex_state = 170, .external_lex_state = 74}, - [6691] = {.lex_state = 172, .external_lex_state = 80}, - [6692] = {.lex_state = 172, .external_lex_state = 74}, - [6693] = {.lex_state = 177, .external_lex_state = 80}, - [6694] = {.lex_state = 172, .external_lex_state = 80}, - [6695] = {.lex_state = 172, .external_lex_state = 80}, - [6696] = {.lex_state = 172, .external_lex_state = 80}, - [6697] = {.lex_state = 172, .external_lex_state = 80}, - [6698] = {.lex_state = 172, .external_lex_state = 80}, - [6699] = {.lex_state = 172, .external_lex_state = 79}, - [6700] = {.lex_state = 172, .external_lex_state = 80}, - [6701] = {.lex_state = 172, .external_lex_state = 80}, - [6702] = {.lex_state = 172, .external_lex_state = 80}, - [6703] = {.lex_state = 172, .external_lex_state = 79}, - [6704] = {.lex_state = 172, .external_lex_state = 80}, - [6705] = {.lex_state = 172, .external_lex_state = 80}, - [6706] = {.lex_state = 172, .external_lex_state = 80}, - [6707] = {.lex_state = 172, .external_lex_state = 80}, - [6708] = {.lex_state = 172, .external_lex_state = 80}, - [6709] = {.lex_state = 172, .external_lex_state = 80}, - [6710] = {.lex_state = 172, .external_lex_state = 80}, - [6711] = {.lex_state = 172, .external_lex_state = 80}, - [6712] = {.lex_state = 172, .external_lex_state = 80}, - [6713] = {.lex_state = 172, .external_lex_state = 80}, - [6714] = {.lex_state = 172, .external_lex_state = 74}, - [6715] = {.lex_state = 172, .external_lex_state = 80}, - [6716] = {.lex_state = 172, .external_lex_state = 80}, - [6717] = {.lex_state = 172, .external_lex_state = 80}, - [6718] = {.lex_state = 172, .external_lex_state = 80}, - [6719] = {.lex_state = 172, .external_lex_state = 80}, - [6720] = {.lex_state = 172, .external_lex_state = 80}, - [6721] = {.lex_state = 172, .external_lex_state = 80}, - [6722] = {.lex_state = 172, .external_lex_state = 80}, - [6723] = {.lex_state = 172, .external_lex_state = 80}, - [6724] = {.lex_state = 172, .external_lex_state = 80}, - [6725] = {.lex_state = 172, .external_lex_state = 74}, - [6726] = {.lex_state = 172, .external_lex_state = 80}, - [6727] = {.lex_state = 172, .external_lex_state = 80}, - [6728] = {.lex_state = 172, .external_lex_state = 80}, + [6650] = {.lex_state = 25, .external_lex_state = 74}, + [6651] = {.lex_state = 173, .external_lex_state = 74}, + [6652] = {.lex_state = 25, .external_lex_state = 74}, + [6653] = {.lex_state = 25, .external_lex_state = 74}, + [6654] = {.lex_state = 173, .external_lex_state = 74}, + [6655] = {.lex_state = 173, .external_lex_state = 74}, + [6656] = {.lex_state = 25, .external_lex_state = 74}, + [6657] = {.lex_state = 173, .external_lex_state = 104}, + [6658] = {.lex_state = 25, .external_lex_state = 74}, + [6659] = {.lex_state = 34, .external_lex_state = 99}, + [6660] = {.lex_state = 173, .external_lex_state = 74}, + [6661] = {.lex_state = 173, .external_lex_state = 74}, + [6662] = {.lex_state = 25, .external_lex_state = 74}, + [6663] = {.lex_state = 47, .external_lex_state = 74}, + [6664] = {.lex_state = 25, .external_lex_state = 74}, + [6665] = {.lex_state = 173, .external_lex_state = 74}, + [6666] = {.lex_state = 173, .external_lex_state = 74}, + [6667] = {.lex_state = 25, .external_lex_state = 74}, + [6668] = {.lex_state = 47, .external_lex_state = 74}, + [6669] = {.lex_state = 25, .external_lex_state = 74}, + [6670] = {.lex_state = 34, .external_lex_state = 99}, + [6671] = {.lex_state = 173, .external_lex_state = 74}, + [6672] = {.lex_state = 173, .external_lex_state = 74}, + [6673] = {.lex_state = 173, .external_lex_state = 74}, + [6674] = {.lex_state = 178, .external_lex_state = 79}, + [6675] = {.lex_state = 25, .external_lex_state = 74}, + [6676] = {.lex_state = 173, .external_lex_state = 81}, + [6677] = {.lex_state = 173, .external_lex_state = 74}, + [6678] = {.lex_state = 173, .external_lex_state = 74}, + [6679] = {.lex_state = 34, .external_lex_state = 99}, + [6680] = {.lex_state = 173, .external_lex_state = 74}, + [6681] = {.lex_state = 34, .external_lex_state = 99}, + [6682] = {.lex_state = 173, .external_lex_state = 74}, + [6683] = {.lex_state = 34, .external_lex_state = 99}, + [6684] = {.lex_state = 34, .external_lex_state = 99}, + [6685] = {.lex_state = 34, .external_lex_state = 99}, + [6686] = {.lex_state = 25, .external_lex_state = 74}, + [6687] = {.lex_state = 34, .external_lex_state = 99}, + [6688] = {.lex_state = 25, .external_lex_state = 74}, + [6689] = {.lex_state = 25, .external_lex_state = 74}, + [6690] = {.lex_state = 173, .external_lex_state = 74}, + [6691] = {.lex_state = 173, .external_lex_state = 74}, + [6692] = {.lex_state = 25, .external_lex_state = 74}, + [6693] = {.lex_state = 25, .external_lex_state = 74}, + [6694] = {.lex_state = 25, .external_lex_state = 74}, + [6695] = {.lex_state = 173, .external_lex_state = 74}, + [6696] = {.lex_state = 34, .external_lex_state = 99}, + [6697] = {.lex_state = 34, .external_lex_state = 99}, + [6698] = {.lex_state = 34, .external_lex_state = 99}, + [6699] = {.lex_state = 34, .external_lex_state = 99}, + [6700] = {.lex_state = 34, .external_lex_state = 99}, + [6701] = {.lex_state = 173, .external_lex_state = 74}, + [6702] = {.lex_state = 25, .external_lex_state = 74}, + [6703] = {.lex_state = 173, .external_lex_state = 74}, + [6704] = {.lex_state = 173, .external_lex_state = 81}, + [6705] = {.lex_state = 25, .external_lex_state = 74}, + [6706] = {.lex_state = 25, .external_lex_state = 74}, + [6707] = {.lex_state = 25, .external_lex_state = 74}, + [6708] = {.lex_state = 173, .external_lex_state = 74}, + [6709] = {.lex_state = 25, .external_lex_state = 74}, + [6710] = {.lex_state = 173, .external_lex_state = 74}, + [6711] = {.lex_state = 25, .external_lex_state = 74}, + [6712] = {.lex_state = 25, .external_lex_state = 74}, + [6713] = {.lex_state = 25, .external_lex_state = 74}, + [6714] = {.lex_state = 173, .external_lex_state = 74}, + [6715] = {.lex_state = 25, .external_lex_state = 74}, + [6716] = {.lex_state = 25, .external_lex_state = 74}, + [6717] = {.lex_state = 25, .external_lex_state = 74}, + [6718] = {.lex_state = 173, .external_lex_state = 74}, + [6719] = {.lex_state = 25, .external_lex_state = 74}, + [6720] = {.lex_state = 25, .external_lex_state = 74}, + [6721] = {.lex_state = 25, .external_lex_state = 74}, + [6722] = {.lex_state = 67, .external_lex_state = 108}, + [6723] = {.lex_state = 173, .external_lex_state = 81}, + [6724] = {.lex_state = 173, .external_lex_state = 81}, + [6725] = {.lex_state = 173, .external_lex_state = 81}, + [6726] = {.lex_state = 33, .external_lex_state = 99}, + [6727] = {.lex_state = 178, .external_lex_state = 81}, + [6728] = {.lex_state = 173, .external_lex_state = 81}, [6729] = {.lex_state = 33, .external_lex_state = 99}, - [6730] = {.lex_state = 172, .external_lex_state = 80}, - [6731] = {.lex_state = 172, .external_lex_state = 80}, - [6732] = {.lex_state = 172, .external_lex_state = 80}, - [6733] = {.lex_state = 172, .external_lex_state = 80}, - [6734] = {.lex_state = 172, .external_lex_state = 80}, - [6735] = {.lex_state = 172, .external_lex_state = 80}, - [6736] = {.lex_state = 172, .external_lex_state = 80}, - [6737] = {.lex_state = 172, .external_lex_state = 79}, - [6738] = {.lex_state = 172, .external_lex_state = 80}, - [6739] = {.lex_state = 172, .external_lex_state = 80}, - [6740] = {.lex_state = 172, .external_lex_state = 80}, - [6741] = {.lex_state = 172, .external_lex_state = 80}, - [6742] = {.lex_state = 172, .external_lex_state = 80}, - [6743] = {.lex_state = 172, .external_lex_state = 80}, - [6744] = {.lex_state = 172, .external_lex_state = 80}, - [6745] = {.lex_state = 172, .external_lex_state = 80}, - [6746] = {.lex_state = 172, .external_lex_state = 74}, - [6747] = {.lex_state = 172, .external_lex_state = 80}, - [6748] = {.lex_state = 172, .external_lex_state = 80}, - [6749] = {.lex_state = 172, .external_lex_state = 80}, - [6750] = {.lex_state = 33, .external_lex_state = 99}, - [6751] = {.lex_state = 172, .external_lex_state = 80}, - [6752] = {.lex_state = 172, .external_lex_state = 80}, - [6753] = {.lex_state = 172, .external_lex_state = 80}, - [6754] = {.lex_state = 172, .external_lex_state = 80}, - [6755] = {.lex_state = 172, .external_lex_state = 79}, - [6756] = {.lex_state = 172, .external_lex_state = 80}, - [6757] = {.lex_state = 177, .external_lex_state = 80}, - [6758] = {.lex_state = 172, .external_lex_state = 80}, - [6759] = {.lex_state = 172, .external_lex_state = 80}, - [6760] = {.lex_state = 172, .external_lex_state = 80}, - [6761] = {.lex_state = 33, .external_lex_state = 99}, - [6762] = {.lex_state = 172, .external_lex_state = 79}, - [6763] = {.lex_state = 172, .external_lex_state = 80}, - [6764] = {.lex_state = 172, .external_lex_state = 80}, - [6765] = {.lex_state = 172, .external_lex_state = 79}, - [6766] = {.lex_state = 172, .external_lex_state = 79}, - [6767] = {.lex_state = 172, .external_lex_state = 80}, - [6768] = {.lex_state = 172, .external_lex_state = 80}, - [6769] = {.lex_state = 172, .external_lex_state = 80}, - [6770] = {.lex_state = 172, .external_lex_state = 80}, - [6771] = {.lex_state = 172, .external_lex_state = 79}, - [6772] = {.lex_state = 172, .external_lex_state = 79}, - [6773] = {.lex_state = 172, .external_lex_state = 74}, - [6774] = {.lex_state = 172, .external_lex_state = 80}, - [6775] = {.lex_state = 172, .external_lex_state = 80}, - [6776] = {.lex_state = 177, .external_lex_state = 80}, - [6777] = {.lex_state = 172, .external_lex_state = 80}, - [6778] = {.lex_state = 47, .external_lex_state = 74}, - [6779] = {.lex_state = 172, .external_lex_state = 80}, - [6780] = {.lex_state = 172, .external_lex_state = 80}, - [6781] = {.lex_state = 172, .external_lex_state = 80}, - [6782] = {.lex_state = 33, .external_lex_state = 99}, - [6783] = {.lex_state = 172, .external_lex_state = 80}, - [6784] = {.lex_state = 172, .external_lex_state = 80}, - [6785] = {.lex_state = 33, .external_lex_state = 99}, - [6786] = {.lex_state = 172, .external_lex_state = 80}, - [6787] = {.lex_state = 47, .external_lex_state = 74}, - [6788] = {.lex_state = 172, .external_lex_state = 80}, - [6789] = {.lex_state = 172, .external_lex_state = 80}, - [6790] = {.lex_state = 172, .external_lex_state = 80}, - [6791] = {.lex_state = 172, .external_lex_state = 80}, - [6792] = {.lex_state = 33, .external_lex_state = 99}, - [6793] = {.lex_state = 172, .external_lex_state = 80}, - [6794] = {.lex_state = 172, .external_lex_state = 80}, - [6795] = {.lex_state = 172, .external_lex_state = 80}, - [6796] = {.lex_state = 47, .external_lex_state = 74}, - [6797] = {.lex_state = 47, .external_lex_state = 74}, - [6798] = {.lex_state = 47, .external_lex_state = 74}, - [6799] = {.lex_state = 47, .external_lex_state = 74}, - [6800] = {.lex_state = 47, .external_lex_state = 74}, - [6801] = {.lex_state = 47, .external_lex_state = 74}, - [6802] = {.lex_state = 47, .external_lex_state = 74}, - [6803] = {.lex_state = 47, .external_lex_state = 74}, - [6804] = {.lex_state = 47, .external_lex_state = 74}, - [6805] = {.lex_state = 47, .external_lex_state = 74}, - [6806] = {.lex_state = 47, .external_lex_state = 74}, - [6807] = {.lex_state = 47, .external_lex_state = 74}, - [6808] = {.lex_state = 47, .external_lex_state = 74}, - [6809] = {.lex_state = 47, .external_lex_state = 74}, - [6810] = {.lex_state = 47, .external_lex_state = 74}, - [6811] = {.lex_state = 172, .external_lex_state = 79}, - [6812] = {.lex_state = 172, .external_lex_state = 80}, - [6813] = {.lex_state = 47, .external_lex_state = 74}, - [6814] = {.lex_state = 172, .external_lex_state = 80}, - [6815] = {.lex_state = 185, .external_lex_state = 110}, - [6816] = {.lex_state = 172, .external_lex_state = 80}, - [6817] = {.lex_state = 47, .external_lex_state = 74}, - [6818] = {.lex_state = 47, .external_lex_state = 74}, - [6819] = {.lex_state = 185, .external_lex_state = 110}, - [6820] = {.lex_state = 172, .external_lex_state = 80}, - [6821] = {.lex_state = 185, .external_lex_state = 110}, - [6822] = {.lex_state = 172, .external_lex_state = 80}, - [6823] = {.lex_state = 172, .external_lex_state = 80}, - [6824] = {.lex_state = 172, .external_lex_state = 80}, - [6825] = {.lex_state = 172, .external_lex_state = 74}, - [6826] = {.lex_state = 172, .external_lex_state = 80}, - [6827] = {.lex_state = 172, .external_lex_state = 80}, - [6828] = {.lex_state = 47, .external_lex_state = 74}, - [6829] = {.lex_state = 172, .external_lex_state = 80}, - [6830] = {.lex_state = 172, .external_lex_state = 80}, - [6831] = {.lex_state = 172, .external_lex_state = 80}, - [6832] = {.lex_state = 172, .external_lex_state = 79}, - [6833] = {.lex_state = 33, .external_lex_state = 99}, - [6834] = {.lex_state = 172, .external_lex_state = 80}, - [6835] = {.lex_state = 172, .external_lex_state = 79}, - [6836] = {.lex_state = 172, .external_lex_state = 80}, - [6837] = {.lex_state = 172, .external_lex_state = 80}, - [6838] = {.lex_state = 172, .external_lex_state = 80}, - [6839] = {.lex_state = 177, .external_lex_state = 80}, - [6840] = {.lex_state = 172, .external_lex_state = 80}, - [6841] = {.lex_state = 172, .external_lex_state = 80}, - [6842] = {.lex_state = 172, .external_lex_state = 80}, - [6843] = {.lex_state = 172, .external_lex_state = 80}, - [6844] = {.lex_state = 172, .external_lex_state = 80}, - [6845] = {.lex_state = 47, .external_lex_state = 74}, - [6846] = {.lex_state = 47, .external_lex_state = 74}, - [6847] = {.lex_state = 172, .external_lex_state = 80}, - [6848] = {.lex_state = 172, .external_lex_state = 80}, - [6849] = {.lex_state = 172, .external_lex_state = 80}, - [6850] = {.lex_state = 172, .external_lex_state = 80}, - [6851] = {.lex_state = 172, .external_lex_state = 80}, - [6852] = {.lex_state = 33, .external_lex_state = 99}, - [6853] = {.lex_state = 172, .external_lex_state = 79}, - [6854] = {.lex_state = 33, .external_lex_state = 99}, - [6855] = {.lex_state = 172, .external_lex_state = 80}, - [6856] = {.lex_state = 172, .external_lex_state = 80}, - [6857] = {.lex_state = 172, .external_lex_state = 80}, - [6858] = {.lex_state = 172, .external_lex_state = 80}, - [6859] = {.lex_state = 172, .external_lex_state = 80}, - [6860] = {.lex_state = 172, .external_lex_state = 79}, - [6861] = {.lex_state = 172, .external_lex_state = 80}, - [6862] = {.lex_state = 172, .external_lex_state = 80}, - [6863] = {.lex_state = 172, .external_lex_state = 80}, - [6864] = {.lex_state = 33, .external_lex_state = 99}, - [6865] = {.lex_state = 172, .external_lex_state = 80}, - [6866] = {.lex_state = 172, .external_lex_state = 79}, - [6867] = {.lex_state = 47, .external_lex_state = 74}, - [6868] = {.lex_state = 172, .external_lex_state = 80}, - [6869] = {.lex_state = 172, .external_lex_state = 74}, - [6870] = {.lex_state = 172, .external_lex_state = 80}, - [6871] = {.lex_state = 172, .external_lex_state = 80}, - [6872] = {.lex_state = 172, .external_lex_state = 80}, - [6873] = {.lex_state = 172, .external_lex_state = 80}, - [6874] = {.lex_state = 172, .external_lex_state = 79}, - [6875] = {.lex_state = 172, .external_lex_state = 74}, - [6876] = {.lex_state = 172, .external_lex_state = 80}, - [6877] = {.lex_state = 172, .external_lex_state = 80}, - [6878] = {.lex_state = 47, .external_lex_state = 74}, - [6879] = {.lex_state = 172, .external_lex_state = 74}, - [6880] = {.lex_state = 172, .external_lex_state = 80}, - [6881] = {.lex_state = 172, .external_lex_state = 80}, - [6882] = {.lex_state = 172, .external_lex_state = 80}, - [6883] = {.lex_state = 172, .external_lex_state = 80}, - [6884] = {.lex_state = 172, .external_lex_state = 80}, - [6885] = {.lex_state = 172, .external_lex_state = 80}, - [6886] = {.lex_state = 172, .external_lex_state = 74}, - [6887] = {.lex_state = 172, .external_lex_state = 80}, - [6888] = {.lex_state = 177, .external_lex_state = 80}, - [6889] = {.lex_state = 172, .external_lex_state = 80}, - [6890] = {.lex_state = 172, .external_lex_state = 80}, - [6891] = {.lex_state = 172, .external_lex_state = 80}, - [6892] = {.lex_state = 172, .external_lex_state = 80}, - [6893] = {.lex_state = 172, .external_lex_state = 80}, - [6894] = {.lex_state = 172, .external_lex_state = 80}, - [6895] = {.lex_state = 170, .external_lex_state = 74}, - [6896] = {.lex_state = 177, .external_lex_state = 80}, - [6897] = {.lex_state = 172, .external_lex_state = 80}, - [6898] = {.lex_state = 172, .external_lex_state = 80}, - [6899] = {.lex_state = 172, .external_lex_state = 80}, - [6900] = {.lex_state = 47, .external_lex_state = 74}, - [6901] = {.lex_state = 172, .external_lex_state = 79}, - [6902] = {.lex_state = 33, .external_lex_state = 99}, - [6903] = {.lex_state = 172, .external_lex_state = 74}, - [6904] = {.lex_state = 172, .external_lex_state = 80}, - [6905] = {.lex_state = 33, .external_lex_state = 99}, - [6906] = {.lex_state = 172, .external_lex_state = 80}, - [6907] = {.lex_state = 172, .external_lex_state = 80}, - [6908] = {.lex_state = 47, .external_lex_state = 74}, - [6909] = {.lex_state = 172, .external_lex_state = 79}, - [6910] = {.lex_state = 172, .external_lex_state = 80}, - [6911] = {.lex_state = 172, .external_lex_state = 80}, - [6912] = {.lex_state = 172, .external_lex_state = 80}, - [6913] = {.lex_state = 172, .external_lex_state = 80}, - [6914] = {.lex_state = 172, .external_lex_state = 80}, - [6915] = {.lex_state = 47, .external_lex_state = 74}, - [6916] = {.lex_state = 172, .external_lex_state = 80}, - [6917] = {.lex_state = 172, .external_lex_state = 80}, + [6730] = {.lex_state = 173, .external_lex_state = 74}, + [6731] = {.lex_state = 33, .external_lex_state = 99}, + [6732] = {.lex_state = 173, .external_lex_state = 81}, + [6733] = {.lex_state = 173, .external_lex_state = 81}, + [6734] = {.lex_state = 33, .external_lex_state = 99}, + [6735] = {.lex_state = 33, .external_lex_state = 99}, + [6736] = {.lex_state = 173, .external_lex_state = 81}, + [6737] = {.lex_state = 173, .external_lex_state = 81}, + [6738] = {.lex_state = 173, .external_lex_state = 81}, + [6739] = {.lex_state = 33, .external_lex_state = 99}, + [6740] = {.lex_state = 173, .external_lex_state = 81}, + [6741] = {.lex_state = 173, .external_lex_state = 81}, + [6742] = {.lex_state = 173, .external_lex_state = 81}, + [6743] = {.lex_state = 33, .external_lex_state = 99}, + [6744] = {.lex_state = 173, .external_lex_state = 81}, + [6745] = {.lex_state = 173, .external_lex_state = 81}, + [6746] = {.lex_state = 173, .external_lex_state = 81}, + [6747] = {.lex_state = 173, .external_lex_state = 81}, + [6748] = {.lex_state = 33, .external_lex_state = 99}, + [6749] = {.lex_state = 173, .external_lex_state = 81}, + [6750] = {.lex_state = 187, .external_lex_state = 110}, + [6751] = {.lex_state = 33, .external_lex_state = 99}, + [6752] = {.lex_state = 173, .external_lex_state = 79}, + [6753] = {.lex_state = 173, .external_lex_state = 81}, + [6754] = {.lex_state = 173, .external_lex_state = 81}, + [6755] = {.lex_state = 33, .external_lex_state = 99}, + [6756] = {.lex_state = 173, .external_lex_state = 81}, + [6757] = {.lex_state = 173, .external_lex_state = 81}, + [6758] = {.lex_state = 173, .external_lex_state = 81}, + [6759] = {.lex_state = 33, .external_lex_state = 99}, + [6760] = {.lex_state = 173, .external_lex_state = 81}, + [6761] = {.lex_state = 173, .external_lex_state = 79}, + [6762] = {.lex_state = 187, .external_lex_state = 110}, + [6763] = {.lex_state = 187, .external_lex_state = 110}, + [6764] = {.lex_state = 173, .external_lex_state = 79}, + [6765] = {.lex_state = 173, .external_lex_state = 79}, + [6766] = {.lex_state = 173, .external_lex_state = 81}, + [6767] = {.lex_state = 173, .external_lex_state = 81}, + [6768] = {.lex_state = 47, .external_lex_state = 74}, + [6769] = {.lex_state = 173, .external_lex_state = 81}, + [6770] = {.lex_state = 173, .external_lex_state = 81}, + [6771] = {.lex_state = 173, .external_lex_state = 81}, + [6772] = {.lex_state = 173, .external_lex_state = 74}, + [6773] = {.lex_state = 173, .external_lex_state = 81}, + [6774] = {.lex_state = 173, .external_lex_state = 74}, + [6775] = {.lex_state = 173, .external_lex_state = 79}, + [6776] = {.lex_state = 173, .external_lex_state = 74}, + [6777] = {.lex_state = 173, .external_lex_state = 81}, + [6778] = {.lex_state = 173, .external_lex_state = 81}, + [6779] = {.lex_state = 173, .external_lex_state = 81}, + [6780] = {.lex_state = 173, .external_lex_state = 74}, + [6781] = {.lex_state = 173, .external_lex_state = 81}, + [6782] = {.lex_state = 173, .external_lex_state = 81}, + [6783] = {.lex_state = 173, .external_lex_state = 81}, + [6784] = {.lex_state = 173, .external_lex_state = 81}, + [6785] = {.lex_state = 173, .external_lex_state = 81}, + [6786] = {.lex_state = 173, .external_lex_state = 79}, + [6787] = {.lex_state = 173, .external_lex_state = 81}, + [6788] = {.lex_state = 173, .external_lex_state = 81}, + [6789] = {.lex_state = 173, .external_lex_state = 81}, + [6790] = {.lex_state = 173, .external_lex_state = 81}, + [6791] = {.lex_state = 173, .external_lex_state = 81}, + [6792] = {.lex_state = 173, .external_lex_state = 81}, + [6793] = {.lex_state = 173, .external_lex_state = 81}, + [6794] = {.lex_state = 173, .external_lex_state = 81}, + [6795] = {.lex_state = 173, .external_lex_state = 81}, + [6796] = {.lex_state = 173, .external_lex_state = 81}, + [6797] = {.lex_state = 173, .external_lex_state = 81}, + [6798] = {.lex_state = 173, .external_lex_state = 81}, + [6799] = {.lex_state = 173, .external_lex_state = 81}, + [6800] = {.lex_state = 173, .external_lex_state = 81}, + [6801] = {.lex_state = 173, .external_lex_state = 81}, + [6802] = {.lex_state = 33, .external_lex_state = 99}, + [6803] = {.lex_state = 173, .external_lex_state = 79}, + [6804] = {.lex_state = 173, .external_lex_state = 81}, + [6805] = {.lex_state = 173, .external_lex_state = 81}, + [6806] = {.lex_state = 173, .external_lex_state = 81}, + [6807] = {.lex_state = 173, .external_lex_state = 81}, + [6808] = {.lex_state = 173, .external_lex_state = 79}, + [6809] = {.lex_state = 173, .external_lex_state = 81}, + [6810] = {.lex_state = 173, .external_lex_state = 81}, + [6811] = {.lex_state = 173, .external_lex_state = 81}, + [6812] = {.lex_state = 173, .external_lex_state = 81}, + [6813] = {.lex_state = 173, .external_lex_state = 79}, + [6814] = {.lex_state = 173, .external_lex_state = 81}, + [6815] = {.lex_state = 173, .external_lex_state = 81}, + [6816] = {.lex_state = 173, .external_lex_state = 81}, + [6817] = {.lex_state = 173, .external_lex_state = 81}, + [6818] = {.lex_state = 173, .external_lex_state = 81}, + [6819] = {.lex_state = 173, .external_lex_state = 81}, + [6820] = {.lex_state = 173, .external_lex_state = 81}, + [6821] = {.lex_state = 173, .external_lex_state = 79}, + [6822] = {.lex_state = 173, .external_lex_state = 81}, + [6823] = {.lex_state = 173, .external_lex_state = 81}, + [6824] = {.lex_state = 173, .external_lex_state = 81}, + [6825] = {.lex_state = 173, .external_lex_state = 81}, + [6826] = {.lex_state = 173, .external_lex_state = 81}, + [6827] = {.lex_state = 173, .external_lex_state = 79}, + [6828] = {.lex_state = 173, .external_lex_state = 79}, + [6829] = {.lex_state = 173, .external_lex_state = 81}, + [6830] = {.lex_state = 173, .external_lex_state = 79}, + [6831] = {.lex_state = 173, .external_lex_state = 79}, + [6832] = {.lex_state = 173, .external_lex_state = 79}, + [6833] = {.lex_state = 173, .external_lex_state = 79}, + [6834] = {.lex_state = 173, .external_lex_state = 79}, + [6835] = {.lex_state = 173, .external_lex_state = 81}, + [6836] = {.lex_state = 173, .external_lex_state = 81}, + [6837] = {.lex_state = 173, .external_lex_state = 81}, + [6838] = {.lex_state = 173, .external_lex_state = 81}, + [6839] = {.lex_state = 173, .external_lex_state = 81}, + [6840] = {.lex_state = 173, .external_lex_state = 81}, + [6841] = {.lex_state = 173, .external_lex_state = 81}, + [6842] = {.lex_state = 173, .external_lex_state = 81}, + [6843] = {.lex_state = 173, .external_lex_state = 81}, + [6844] = {.lex_state = 173, .external_lex_state = 81}, + [6845] = {.lex_state = 178, .external_lex_state = 81}, + [6846] = {.lex_state = 173, .external_lex_state = 81}, + [6847] = {.lex_state = 173, .external_lex_state = 81}, + [6848] = {.lex_state = 173, .external_lex_state = 81}, + [6849] = {.lex_state = 171, .external_lex_state = 74}, + [6850] = {.lex_state = 173, .external_lex_state = 81}, + [6851] = {.lex_state = 173, .external_lex_state = 81}, + [6852] = {.lex_state = 173, .external_lex_state = 79}, + [6853] = {.lex_state = 173, .external_lex_state = 81}, + [6854] = {.lex_state = 173, .external_lex_state = 81}, + [6855] = {.lex_state = 173, .external_lex_state = 81}, + [6856] = {.lex_state = 173, .external_lex_state = 81}, + [6857] = {.lex_state = 178, .external_lex_state = 81}, + [6858] = {.lex_state = 173, .external_lex_state = 81}, + [6859] = {.lex_state = 173, .external_lex_state = 81}, + [6860] = {.lex_state = 173, .external_lex_state = 81}, + [6861] = {.lex_state = 173, .external_lex_state = 81}, + [6862] = {.lex_state = 173, .external_lex_state = 81}, + [6863] = {.lex_state = 173, .external_lex_state = 81}, + [6864] = {.lex_state = 173, .external_lex_state = 81}, + [6865] = {.lex_state = 173, .external_lex_state = 81}, + [6866] = {.lex_state = 178, .external_lex_state = 81}, + [6867] = {.lex_state = 173, .external_lex_state = 81}, + [6868] = {.lex_state = 173, .external_lex_state = 81}, + [6869] = {.lex_state = 173, .external_lex_state = 81}, + [6870] = {.lex_state = 173, .external_lex_state = 81}, + [6871] = {.lex_state = 173, .external_lex_state = 81}, + [6872] = {.lex_state = 173, .external_lex_state = 81}, + [6873] = {.lex_state = 173, .external_lex_state = 81}, + [6874] = {.lex_state = 173, .external_lex_state = 81}, + [6875] = {.lex_state = 173, .external_lex_state = 81}, + [6876] = {.lex_state = 173, .external_lex_state = 81}, + [6877] = {.lex_state = 173, .external_lex_state = 81}, + [6878] = {.lex_state = 173, .external_lex_state = 81}, + [6879] = {.lex_state = 173, .external_lex_state = 81}, + [6880] = {.lex_state = 171, .external_lex_state = 74}, + [6881] = {.lex_state = 173, .external_lex_state = 81}, + [6882] = {.lex_state = 173, .external_lex_state = 81}, + [6883] = {.lex_state = 33, .external_lex_state = 99}, + [6884] = {.lex_state = 173, .external_lex_state = 81}, + [6885] = {.lex_state = 173, .external_lex_state = 81}, + [6886] = {.lex_state = 173, .external_lex_state = 74}, + [6887] = {.lex_state = 47, .external_lex_state = 74}, + [6888] = {.lex_state = 47, .external_lex_state = 74}, + [6889] = {.lex_state = 47, .external_lex_state = 74}, + [6890] = {.lex_state = 173, .external_lex_state = 74}, + [6891] = {.lex_state = 173, .external_lex_state = 74}, + [6892] = {.lex_state = 47, .external_lex_state = 74}, + [6893] = {.lex_state = 47, .external_lex_state = 74}, + [6894] = {.lex_state = 47, .external_lex_state = 74}, + [6895] = {.lex_state = 173, .external_lex_state = 81}, + [6896] = {.lex_state = 173, .external_lex_state = 81}, + [6897] = {.lex_state = 173, .external_lex_state = 81}, + [6898] = {.lex_state = 173, .external_lex_state = 81}, + [6899] = {.lex_state = 173, .external_lex_state = 81}, + [6900] = {.lex_state = 173, .external_lex_state = 81}, + [6901] = {.lex_state = 173, .external_lex_state = 79}, + [6902] = {.lex_state = 173, .external_lex_state = 81}, + [6903] = {.lex_state = 173, .external_lex_state = 81}, + [6904] = {.lex_state = 173, .external_lex_state = 81}, + [6905] = {.lex_state = 173, .external_lex_state = 81}, + [6906] = {.lex_state = 173, .external_lex_state = 79}, + [6907] = {.lex_state = 173, .external_lex_state = 81}, + [6908] = {.lex_state = 173, .external_lex_state = 81}, + [6909] = {.lex_state = 47, .external_lex_state = 74}, + [6910] = {.lex_state = 47, .external_lex_state = 74}, + [6911] = {.lex_state = 173, .external_lex_state = 81}, + [6912] = {.lex_state = 173, .external_lex_state = 81}, + [6913] = {.lex_state = 173, .external_lex_state = 81}, + [6914] = {.lex_state = 173, .external_lex_state = 81}, + [6915] = {.lex_state = 173, .external_lex_state = 81}, + [6916] = {.lex_state = 173, .external_lex_state = 74}, + [6917] = {.lex_state = 47, .external_lex_state = 74}, [6918] = {.lex_state = 47, .external_lex_state = 74}, - [6919] = {.lex_state = 172, .external_lex_state = 80}, - [6920] = {.lex_state = 172, .external_lex_state = 80}, - [6921] = {.lex_state = 172, .external_lex_state = 80}, + [6919] = {.lex_state = 47, .external_lex_state = 74}, + [6920] = {.lex_state = 47, .external_lex_state = 74}, + [6921] = {.lex_state = 173, .external_lex_state = 74}, [6922] = {.lex_state = 47, .external_lex_state = 74}, - [6923] = {.lex_state = 172, .external_lex_state = 74}, - [6924] = {.lex_state = 172, .external_lex_state = 80}, + [6923] = {.lex_state = 47, .external_lex_state = 74}, + [6924] = {.lex_state = 47, .external_lex_state = 74}, [6925] = {.lex_state = 47, .external_lex_state = 74}, [6926] = {.lex_state = 47, .external_lex_state = 74}, - [6927] = {.lex_state = 172, .external_lex_state = 80}, - [6928] = {.lex_state = 172, .external_lex_state = 74}, + [6927] = {.lex_state = 47, .external_lex_state = 74}, + [6928] = {.lex_state = 47, .external_lex_state = 74}, [6929] = {.lex_state = 47, .external_lex_state = 74}, - [6930] = {.lex_state = 172, .external_lex_state = 74}, + [6930] = {.lex_state = 47, .external_lex_state = 74}, [6931] = {.lex_state = 47, .external_lex_state = 74}, [6932] = {.lex_state = 47, .external_lex_state = 74}, - [6933] = {.lex_state = 47, .external_lex_state = 74}, - [6934] = {.lex_state = 172, .external_lex_state = 80}, + [6933] = {.lex_state = 173, .external_lex_state = 81}, + [6934] = {.lex_state = 47, .external_lex_state = 74}, [6935] = {.lex_state = 47, .external_lex_state = 74}, - [6936] = {.lex_state = 172, .external_lex_state = 80}, + [6936] = {.lex_state = 173, .external_lex_state = 81}, [6937] = {.lex_state = 47, .external_lex_state = 74}, - [6938] = {.lex_state = 172, .external_lex_state = 74}, - [6939] = {.lex_state = 34, .external_lex_state = 99}, - [6940] = {.lex_state = 172, .external_lex_state = 80}, - [6941] = {.lex_state = 172, .external_lex_state = 80}, - [6942] = {.lex_state = 172, .external_lex_state = 80}, - [6943] = {.lex_state = 172, .external_lex_state = 80}, - [6944] = {.lex_state = 172, .external_lex_state = 80}, - [6945] = {.lex_state = 47, .external_lex_state = 74}, - [6946] = {.lex_state = 47, .external_lex_state = 74}, - [6947] = {.lex_state = 34, .external_lex_state = 99}, - [6948] = {.lex_state = 47, .external_lex_state = 74}, - [6949] = {.lex_state = 172, .external_lex_state = 80}, - [6950] = {.lex_state = 172, .external_lex_state = 80}, - [6951] = {.lex_state = 172, .external_lex_state = 80}, - [6952] = {.lex_state = 172, .external_lex_state = 80}, - [6953] = {.lex_state = 172, .external_lex_state = 80}, - [6954] = {.lex_state = 47, .external_lex_state = 74}, - [6955] = {.lex_state = 47, .external_lex_state = 74}, - [6956] = {.lex_state = 172, .external_lex_state = 74}, - [6957] = {.lex_state = 172, .external_lex_state = 74}, - [6958] = {.lex_state = 47, .external_lex_state = 74}, - [6959] = {.lex_state = 47, .external_lex_state = 74}, - [6960] = {.lex_state = 47, .external_lex_state = 74}, - [6961] = {.lex_state = 47, .external_lex_state = 74}, + [6938] = {.lex_state = 47, .external_lex_state = 74}, + [6939] = {.lex_state = 171, .external_lex_state = 74}, + [6940] = {.lex_state = 173, .external_lex_state = 81}, + [6941] = {.lex_state = 47, .external_lex_state = 74}, + [6942] = {.lex_state = 173, .external_lex_state = 81}, + [6943] = {.lex_state = 173, .external_lex_state = 81}, + [6944] = {.lex_state = 173, .external_lex_state = 81}, + [6945] = {.lex_state = 33, .external_lex_state = 99}, + [6946] = {.lex_state = 173, .external_lex_state = 81}, + [6947] = {.lex_state = 173, .external_lex_state = 81}, + [6948] = {.lex_state = 173, .external_lex_state = 81}, + [6949] = {.lex_state = 173, .external_lex_state = 81}, + [6950] = {.lex_state = 173, .external_lex_state = 74}, + [6951] = {.lex_state = 173, .external_lex_state = 81}, + [6952] = {.lex_state = 178, .external_lex_state = 81}, + [6953] = {.lex_state = 173, .external_lex_state = 81}, + [6954] = {.lex_state = 173, .external_lex_state = 81}, + [6955] = {.lex_state = 173, .external_lex_state = 81}, + [6956] = {.lex_state = 173, .external_lex_state = 81}, + [6957] = {.lex_state = 173, .external_lex_state = 81}, + [6958] = {.lex_state = 173, .external_lex_state = 81}, + [6959] = {.lex_state = 178, .external_lex_state = 81}, + [6960] = {.lex_state = 173, .external_lex_state = 81}, + [6961] = {.lex_state = 34, .external_lex_state = 99}, [6962] = {.lex_state = 47, .external_lex_state = 74}, - [6963] = {.lex_state = 172, .external_lex_state = 80}, - [6964] = {.lex_state = 47, .external_lex_state = 74}, - [6965] = {.lex_state = 172, .external_lex_state = 80}, - [6966] = {.lex_state = 172, .external_lex_state = 80}, - [6967] = {.lex_state = 47, .external_lex_state = 74}, - [6968] = {.lex_state = 172, .external_lex_state = 80}, - [6969] = {.lex_state = 172, .external_lex_state = 80}, + [6963] = {.lex_state = 173, .external_lex_state = 81}, + [6964] = {.lex_state = 173, .external_lex_state = 81}, + [6965] = {.lex_state = 173, .external_lex_state = 81}, + [6966] = {.lex_state = 173, .external_lex_state = 74}, + [6967] = {.lex_state = 173, .external_lex_state = 81}, + [6968] = {.lex_state = 173, .external_lex_state = 81}, + [6969] = {.lex_state = 173, .external_lex_state = 74}, [6970] = {.lex_state = 47, .external_lex_state = 74}, - [6971] = {.lex_state = 47, .external_lex_state = 74}, - [6972] = {.lex_state = 172, .external_lex_state = 80}, + [6971] = {.lex_state = 173, .external_lex_state = 81}, + [6972] = {.lex_state = 173, .external_lex_state = 81}, [6973] = {.lex_state = 47, .external_lex_state = 74}, - [6974] = {.lex_state = 172, .external_lex_state = 80}, - [6975] = {.lex_state = 172, .external_lex_state = 80}, + [6974] = {.lex_state = 173, .external_lex_state = 81}, + [6975] = {.lex_state = 47, .external_lex_state = 74}, [6976] = {.lex_state = 47, .external_lex_state = 74}, - [6977] = {.lex_state = 47, .external_lex_state = 74}, + [6977] = {.lex_state = 173, .external_lex_state = 81}, [6978] = {.lex_state = 47, .external_lex_state = 74}, - [6979] = {.lex_state = 172, .external_lex_state = 80}, - [6980] = {.lex_state = 34, .external_lex_state = 99}, - [6981] = {.lex_state = 47, .external_lex_state = 74}, - [6982] = {.lex_state = 172, .external_lex_state = 74}, - [6983] = {.lex_state = 177, .external_lex_state = 103}, - [6984] = {.lex_state = 47, .external_lex_state = 74}, - [6985] = {.lex_state = 47, .external_lex_state = 74}, - [6986] = {.lex_state = 47, .external_lex_state = 74}, - [6987] = {.lex_state = 47, .external_lex_state = 74}, - [6988] = {.lex_state = 172, .external_lex_state = 80}, - [6989] = {.lex_state = 177, .external_lex_state = 103}, - [6990] = {.lex_state = 47, .external_lex_state = 74}, - [6991] = {.lex_state = 172, .external_lex_state = 80}, - [6992] = {.lex_state = 47, .external_lex_state = 74}, - [6993] = {.lex_state = 47, .external_lex_state = 74}, - [6994] = {.lex_state = 34, .external_lex_state = 99}, - [6995] = {.lex_state = 172, .external_lex_state = 80}, - [6996] = {.lex_state = 47, .external_lex_state = 74}, - [6997] = {.lex_state = 172, .external_lex_state = 80}, + [6979] = {.lex_state = 173, .external_lex_state = 81}, + [6980] = {.lex_state = 173, .external_lex_state = 74}, + [6981] = {.lex_state = 173, .external_lex_state = 81}, + [6982] = {.lex_state = 173, .external_lex_state = 81}, + [6983] = {.lex_state = 47, .external_lex_state = 74}, + [6984] = {.lex_state = 173, .external_lex_state = 81}, + [6985] = {.lex_state = 173, .external_lex_state = 81}, + [6986] = {.lex_state = 173, .external_lex_state = 81}, + [6987] = {.lex_state = 173, .external_lex_state = 81}, + [6988] = {.lex_state = 173, .external_lex_state = 81}, + [6989] = {.lex_state = 47, .external_lex_state = 74}, + [6990] = {.lex_state = 173, .external_lex_state = 81}, + [6991] = {.lex_state = 173, .external_lex_state = 81}, + [6992] = {.lex_state = 173, .external_lex_state = 81}, + [6993] = {.lex_state = 173, .external_lex_state = 81}, + [6994] = {.lex_state = 178, .external_lex_state = 102}, + [6995] = {.lex_state = 173, .external_lex_state = 81}, + [6996] = {.lex_state = 173, .external_lex_state = 81}, + [6997] = {.lex_state = 34, .external_lex_state = 99}, [6998] = {.lex_state = 47, .external_lex_state = 74}, - [6999] = {.lex_state = 172, .external_lex_state = 80}, + [6999] = {.lex_state = 173, .external_lex_state = 81}, [7000] = {.lex_state = 47, .external_lex_state = 74}, - [7001] = {.lex_state = 172, .external_lex_state = 80}, - [7002] = {.lex_state = 172, .external_lex_state = 80}, - [7003] = {.lex_state = 172, .external_lex_state = 74}, - [7004] = {.lex_state = 172, .external_lex_state = 74}, - [7005] = {.lex_state = 172, .external_lex_state = 80}, - [7006] = {.lex_state = 47, .external_lex_state = 74}, + [7001] = {.lex_state = 47, .external_lex_state = 74}, + [7002] = {.lex_state = 47, .external_lex_state = 74}, + [7003] = {.lex_state = 47, .external_lex_state = 74}, + [7004] = {.lex_state = 173, .external_lex_state = 74}, + [7005] = {.lex_state = 173, .external_lex_state = 81}, + [7006] = {.lex_state = 173, .external_lex_state = 81}, [7007] = {.lex_state = 47, .external_lex_state = 74}, - [7008] = {.lex_state = 47, .external_lex_state = 74}, - [7009] = {.lex_state = 185, .external_lex_state = 110}, - [7010] = {.lex_state = 185, .external_lex_state = 110}, - [7011] = {.lex_state = 185, .external_lex_state = 110}, - [7012] = {.lex_state = 185, .external_lex_state = 110}, - [7013] = {.lex_state = 185, .external_lex_state = 110}, - [7014] = {.lex_state = 172, .external_lex_state = 74}, - [7015] = {.lex_state = 172, .external_lex_state = 74}, - [7016] = {.lex_state = 172, .external_lex_state = 74}, - [7017] = {.lex_state = 172, .external_lex_state = 74}, - [7018] = {.lex_state = 172, .external_lex_state = 74}, - [7019] = {.lex_state = 172, .external_lex_state = 74}, - [7020] = {.lex_state = 172, .external_lex_state = 74}, - [7021] = {.lex_state = 172, .external_lex_state = 74}, - [7022] = {.lex_state = 185, .external_lex_state = 110}, - [7023] = {.lex_state = 172, .external_lex_state = 74}, - [7024] = {.lex_state = 172, .external_lex_state = 74}, - [7025] = {.lex_state = 172, .external_lex_state = 74}, - [7026] = {.lex_state = 177, .external_lex_state = 111}, - [7027] = {.lex_state = 177, .external_lex_state = 105}, - [7028] = {.lex_state = 185, .external_lex_state = 111}, - [7029] = {.lex_state = 177, .external_lex_state = 105}, - [7030] = {.lex_state = 185, .external_lex_state = 111}, - [7031] = {.lex_state = 185, .external_lex_state = 111}, - [7032] = {.lex_state = 185, .external_lex_state = 111}, - [7033] = {.lex_state = 185, .external_lex_state = 111}, - [7034] = {.lex_state = 185, .external_lex_state = 111}, - [7035] = {.lex_state = 185, .external_lex_state = 112}, - [7036] = {.lex_state = 185, .external_lex_state = 112}, - [7037] = {.lex_state = 185, .external_lex_state = 112}, - [7038] = {.lex_state = 185, .external_lex_state = 112}, - [7039] = {.lex_state = 185, .external_lex_state = 112}, - [7040] = {.lex_state = 177, .external_lex_state = 110}, - [7041] = {.lex_state = 185, .external_lex_state = 112}, - [7042] = {.lex_state = 177, .external_lex_state = 110}, - [7043] = {.lex_state = 177, .external_lex_state = 110}, - [7044] = {.lex_state = 177, .external_lex_state = 110}, - [7045] = {.lex_state = 177, .external_lex_state = 110}, - [7046] = {.lex_state = 177, .external_lex_state = 110}, - [7047] = {.lex_state = 177, .external_lex_state = 110}, - [7048] = {.lex_state = 177, .external_lex_state = 110}, - [7049] = {.lex_state = 177, .external_lex_state = 110}, - [7050] = {.lex_state = 177, .external_lex_state = 110}, - [7051] = {.lex_state = 177, .external_lex_state = 110}, - [7052] = {.lex_state = 177, .external_lex_state = 110}, - [7053] = {.lex_state = 177, .external_lex_state = 110}, - [7054] = {.lex_state = 177, .external_lex_state = 110}, - [7055] = {.lex_state = 177, .external_lex_state = 110}, - [7056] = {.lex_state = 177, .external_lex_state = 110}, - [7057] = {.lex_state = 177, .external_lex_state = 110}, - [7058] = {.lex_state = 177, .external_lex_state = 110}, - [7059] = {.lex_state = 177, .external_lex_state = 110}, - [7060] = {.lex_state = 177, .external_lex_state = 110}, - [7061] = {.lex_state = 177, .external_lex_state = 110}, - [7062] = {.lex_state = 177, .external_lex_state = 110}, - [7063] = {.lex_state = 177, .external_lex_state = 110}, - [7064] = {.lex_state = 177, .external_lex_state = 110}, - [7065] = {.lex_state = 177, .external_lex_state = 110}, - [7066] = {.lex_state = 177, .external_lex_state = 110}, - [7067] = {.lex_state = 177, .external_lex_state = 110}, - [7068] = {.lex_state = 177, .external_lex_state = 110}, - [7069] = {.lex_state = 177, .external_lex_state = 110}, - [7070] = {.lex_state = 177, .external_lex_state = 110}, - [7071] = {.lex_state = 177, .external_lex_state = 110}, - [7072] = {.lex_state = 177, .external_lex_state = 110}, - [7073] = {.lex_state = 177, .external_lex_state = 110}, - [7074] = {.lex_state = 177, .external_lex_state = 110}, - [7075] = {.lex_state = 177, .external_lex_state = 110}, - [7076] = {.lex_state = 177, .external_lex_state = 110}, - [7077] = {.lex_state = 177, .external_lex_state = 110}, - [7078] = {.lex_state = 177, .external_lex_state = 110}, - [7079] = {.lex_state = 177, .external_lex_state = 110}, - [7080] = {.lex_state = 177, .external_lex_state = 110}, - [7081] = {.lex_state = 177, .external_lex_state = 110}, - [7082] = {.lex_state = 177, .external_lex_state = 110}, - [7083] = {.lex_state = 177, .external_lex_state = 110}, - [7084] = {.lex_state = 177, .external_lex_state = 110}, - [7085] = {.lex_state = 177, .external_lex_state = 110}, - [7086] = {.lex_state = 177, .external_lex_state = 110}, - [7087] = {.lex_state = 177, .external_lex_state = 110}, - [7088] = {.lex_state = 177, .external_lex_state = 110}, - [7089] = {.lex_state = 177, .external_lex_state = 110}, - [7090] = {.lex_state = 177, .external_lex_state = 110}, - [7091] = {.lex_state = 177, .external_lex_state = 110}, - [7092] = {.lex_state = 177, .external_lex_state = 110}, - [7093] = {.lex_state = 177, .external_lex_state = 110}, - [7094] = {.lex_state = 177, .external_lex_state = 110}, - [7095] = {.lex_state = 177, .external_lex_state = 110}, - [7096] = {.lex_state = 177, .external_lex_state = 110}, - [7097] = {.lex_state = 177, .external_lex_state = 110}, - [7098] = {.lex_state = 185, .external_lex_state = 110}, - [7099] = {.lex_state = 177, .external_lex_state = 110}, - [7100] = {.lex_state = 177, .external_lex_state = 110}, - [7101] = {.lex_state = 177, .external_lex_state = 110}, - [7102] = {.lex_state = 177, .external_lex_state = 110}, - [7103] = {.lex_state = 177, .external_lex_state = 110}, - [7104] = {.lex_state = 177, .external_lex_state = 110}, - [7105] = {.lex_state = 177, .external_lex_state = 110}, - [7106] = {.lex_state = 177, .external_lex_state = 110}, - [7107] = {.lex_state = 177, .external_lex_state = 110}, - [7108] = {.lex_state = 177, .external_lex_state = 110}, - [7109] = {.lex_state = 177, .external_lex_state = 110}, - [7110] = {.lex_state = 185, .external_lex_state = 110}, - [7111] = {.lex_state = 177, .external_lex_state = 110}, - [7112] = {.lex_state = 177, .external_lex_state = 110}, - [7113] = {.lex_state = 177, .external_lex_state = 110}, - [7114] = {.lex_state = 177, .external_lex_state = 110}, - [7115] = {.lex_state = 177, .external_lex_state = 110}, - [7116] = {.lex_state = 177, .external_lex_state = 110}, - [7117] = {.lex_state = 177, .external_lex_state = 110}, - [7118] = {.lex_state = 177, .external_lex_state = 110}, - [7119] = {.lex_state = 177, .external_lex_state = 110}, - [7120] = {.lex_state = 177, .external_lex_state = 110}, - [7121] = {.lex_state = 177, .external_lex_state = 110}, - [7122] = {.lex_state = 177, .external_lex_state = 110}, - [7123] = {.lex_state = 177, .external_lex_state = 110}, - [7124] = {.lex_state = 177, .external_lex_state = 110}, - [7125] = {.lex_state = 177, .external_lex_state = 110}, - [7126] = {.lex_state = 177, .external_lex_state = 110}, - [7127] = {.lex_state = 177, .external_lex_state = 110}, - [7128] = {.lex_state = 177, .external_lex_state = 110}, - [7129] = {.lex_state = 177, .external_lex_state = 110}, - [7130] = {.lex_state = 177, .external_lex_state = 110}, - [7131] = {.lex_state = 177, .external_lex_state = 110}, - [7132] = {.lex_state = 177, .external_lex_state = 110}, - [7133] = {.lex_state = 177, .external_lex_state = 110}, - [7134] = {.lex_state = 177, .external_lex_state = 110}, - [7135] = {.lex_state = 177, .external_lex_state = 110}, - [7136] = {.lex_state = 177, .external_lex_state = 110}, - [7137] = {.lex_state = 177, .external_lex_state = 110}, - [7138] = {.lex_state = 177, .external_lex_state = 110}, - [7139] = {.lex_state = 177, .external_lex_state = 110}, - [7140] = {.lex_state = 177, .external_lex_state = 110}, - [7141] = {.lex_state = 177, .external_lex_state = 110}, - [7142] = {.lex_state = 177, .external_lex_state = 110}, - [7143] = {.lex_state = 177, .external_lex_state = 110}, - [7144] = {.lex_state = 177, .external_lex_state = 110}, - [7145] = {.lex_state = 177, .external_lex_state = 110}, - [7146] = {.lex_state = 177, .external_lex_state = 110}, - [7147] = {.lex_state = 177, .external_lex_state = 110}, - [7148] = {.lex_state = 177, .external_lex_state = 110}, - [7149] = {.lex_state = 177, .external_lex_state = 110}, - [7150] = {.lex_state = 177, .external_lex_state = 110}, - [7151] = {.lex_state = 177, .external_lex_state = 110}, - [7152] = {.lex_state = 177, .external_lex_state = 110}, - [7153] = {.lex_state = 177, .external_lex_state = 110}, - [7154] = {.lex_state = 177, .external_lex_state = 110}, - [7155] = {.lex_state = 177, .external_lex_state = 110}, - [7156] = {.lex_state = 177, .external_lex_state = 110}, - [7157] = {.lex_state = 177, .external_lex_state = 110}, - [7158] = {.lex_state = 177, .external_lex_state = 110}, - [7159] = {.lex_state = 177, .external_lex_state = 110}, - [7160] = {.lex_state = 177, .external_lex_state = 110}, - [7161] = {.lex_state = 177, .external_lex_state = 110}, - [7162] = {.lex_state = 177, .external_lex_state = 110}, - [7163] = {.lex_state = 177, .external_lex_state = 110}, - [7164] = {.lex_state = 177, .external_lex_state = 110}, - [7165] = {.lex_state = 177, .external_lex_state = 110}, - [7166] = {.lex_state = 177, .external_lex_state = 110}, - [7167] = {.lex_state = 177, .external_lex_state = 110}, - [7168] = {.lex_state = 177, .external_lex_state = 110}, - [7169] = {.lex_state = 177, .external_lex_state = 110}, - [7170] = {.lex_state = 177, .external_lex_state = 110}, - [7171] = {.lex_state = 177, .external_lex_state = 110}, - [7172] = {.lex_state = 177, .external_lex_state = 110}, - [7173] = {.lex_state = 177, .external_lex_state = 110}, - [7174] = {.lex_state = 177, .external_lex_state = 110}, - [7175] = {.lex_state = 177, .external_lex_state = 110}, - [7176] = {.lex_state = 177, .external_lex_state = 110}, - [7177] = {.lex_state = 177, .external_lex_state = 110}, - [7178] = {.lex_state = 177, .external_lex_state = 110}, - [7179] = {.lex_state = 177, .external_lex_state = 110}, - [7180] = {.lex_state = 177, .external_lex_state = 110}, - [7181] = {.lex_state = 177, .external_lex_state = 110}, - [7182] = {.lex_state = 177, .external_lex_state = 110}, - [7183] = {.lex_state = 177, .external_lex_state = 110}, - [7184] = {.lex_state = 177, .external_lex_state = 110}, - [7185] = {.lex_state = 177, .external_lex_state = 110}, - [7186] = {.lex_state = 177, .external_lex_state = 110}, - [7187] = {.lex_state = 177, .external_lex_state = 110}, - [7188] = {.lex_state = 177, .external_lex_state = 110}, - [7189] = {.lex_state = 177, .external_lex_state = 110}, - [7190] = {.lex_state = 177, .external_lex_state = 110}, - [7191] = {.lex_state = 177, .external_lex_state = 110}, - [7192] = {.lex_state = 177, .external_lex_state = 110}, - [7193] = {.lex_state = 177, .external_lex_state = 110}, - [7194] = {.lex_state = 177, .external_lex_state = 110}, - [7195] = {.lex_state = 177, .external_lex_state = 110}, - [7196] = {.lex_state = 177, .external_lex_state = 110}, - [7197] = {.lex_state = 177, .external_lex_state = 110}, - [7198] = {.lex_state = 177, .external_lex_state = 110}, - [7199] = {.lex_state = 177, .external_lex_state = 110}, - [7200] = {.lex_state = 177, .external_lex_state = 110}, - [7201] = {.lex_state = 177, .external_lex_state = 110}, - [7202] = {.lex_state = 177, .external_lex_state = 110}, - [7203] = {.lex_state = 177, .external_lex_state = 110}, - [7204] = {.lex_state = 177, .external_lex_state = 110}, - [7205] = {.lex_state = 177, .external_lex_state = 110}, - [7206] = {.lex_state = 177, .external_lex_state = 110}, - [7207] = {.lex_state = 177, .external_lex_state = 110}, - [7208] = {.lex_state = 177, .external_lex_state = 110}, - [7209] = {.lex_state = 177, .external_lex_state = 110}, - [7210] = {.lex_state = 177, .external_lex_state = 110}, - [7211] = {.lex_state = 177, .external_lex_state = 110}, - [7212] = {.lex_state = 177, .external_lex_state = 110}, - [7213] = {.lex_state = 177, .external_lex_state = 110}, - [7214] = {.lex_state = 177, .external_lex_state = 110}, - [7215] = {.lex_state = 177, .external_lex_state = 110}, - [7216] = {.lex_state = 177, .external_lex_state = 110}, - [7217] = {.lex_state = 177, .external_lex_state = 110}, - [7218] = {.lex_state = 177, .external_lex_state = 110}, - [7219] = {.lex_state = 177, .external_lex_state = 110}, - [7220] = {.lex_state = 177, .external_lex_state = 110}, - [7221] = {.lex_state = 177, .external_lex_state = 110}, - [7222] = {.lex_state = 177, .external_lex_state = 110}, - [7223] = {.lex_state = 177, .external_lex_state = 110}, - [7224] = {.lex_state = 177, .external_lex_state = 110}, - [7225] = {.lex_state = 177, .external_lex_state = 110}, - [7226] = {.lex_state = 177, .external_lex_state = 110}, - [7227] = {.lex_state = 177, .external_lex_state = 110}, - [7228] = {.lex_state = 177, .external_lex_state = 110}, - [7229] = {.lex_state = 177, .external_lex_state = 110}, - [7230] = {.lex_state = 177, .external_lex_state = 110}, - [7231] = {.lex_state = 177, .external_lex_state = 110}, - [7232] = {.lex_state = 177, .external_lex_state = 110}, - [7233] = {.lex_state = 177, .external_lex_state = 110}, - [7234] = {.lex_state = 177, .external_lex_state = 110}, - [7235] = {.lex_state = 177, .external_lex_state = 110}, - [7236] = {.lex_state = 177, .external_lex_state = 110}, - [7237] = {.lex_state = 177, .external_lex_state = 110}, - [7238] = {.lex_state = 177, .external_lex_state = 110}, - [7239] = {.lex_state = 177, .external_lex_state = 110}, - [7240] = {.lex_state = 177, .external_lex_state = 110}, - [7241] = {.lex_state = 177, .external_lex_state = 110}, - [7242] = {.lex_state = 177, .external_lex_state = 110}, - [7243] = {.lex_state = 177, .external_lex_state = 110}, - [7244] = {.lex_state = 177, .external_lex_state = 110}, - [7245] = {.lex_state = 177, .external_lex_state = 110}, - [7246] = {.lex_state = 177, .external_lex_state = 110}, - [7247] = {.lex_state = 177, .external_lex_state = 110}, - [7248] = {.lex_state = 177, .external_lex_state = 110}, - [7249] = {.lex_state = 177, .external_lex_state = 110}, - [7250] = {.lex_state = 177, .external_lex_state = 110}, - [7251] = {.lex_state = 177, .external_lex_state = 110}, - [7252] = {.lex_state = 177, .external_lex_state = 110}, - [7253] = {.lex_state = 177, .external_lex_state = 110}, - [7254] = {.lex_state = 177, .external_lex_state = 110}, - [7255] = {.lex_state = 177, .external_lex_state = 110}, - [7256] = {.lex_state = 177, .external_lex_state = 110}, - [7257] = {.lex_state = 177, .external_lex_state = 110}, - [7258] = {.lex_state = 177, .external_lex_state = 110}, - [7259] = {.lex_state = 177, .external_lex_state = 110}, - [7260] = {.lex_state = 177, .external_lex_state = 110}, - [7261] = {.lex_state = 177, .external_lex_state = 110}, - [7262] = {.lex_state = 177, .external_lex_state = 110}, - [7263] = {.lex_state = 177, .external_lex_state = 110}, - [7264] = {.lex_state = 177, .external_lex_state = 110}, - [7265] = {.lex_state = 177, .external_lex_state = 110}, - [7266] = {.lex_state = 177, .external_lex_state = 110}, - [7267] = {.lex_state = 177, .external_lex_state = 110}, - [7268] = {.lex_state = 177, .external_lex_state = 110}, - [7269] = {.lex_state = 177, .external_lex_state = 110}, - [7270] = {.lex_state = 177, .external_lex_state = 110}, - [7271] = {.lex_state = 177, .external_lex_state = 110}, - [7272] = {.lex_state = 177, .external_lex_state = 110}, - [7273] = {.lex_state = 177, .external_lex_state = 110}, - [7274] = {.lex_state = 177, .external_lex_state = 110}, - [7275] = {.lex_state = 177, .external_lex_state = 110}, - [7276] = {.lex_state = 177, .external_lex_state = 110}, - [7277] = {.lex_state = 177, .external_lex_state = 110}, - [7278] = {.lex_state = 177, .external_lex_state = 110}, - [7279] = {.lex_state = 177, .external_lex_state = 110}, - [7280] = {.lex_state = 177, .external_lex_state = 110}, - [7281] = {.lex_state = 177, .external_lex_state = 110}, - [7282] = {.lex_state = 177, .external_lex_state = 110}, - [7283] = {.lex_state = 177, .external_lex_state = 110}, - [7284] = {.lex_state = 177, .external_lex_state = 110}, - [7285] = {.lex_state = 177, .external_lex_state = 110}, - [7286] = {.lex_state = 177, .external_lex_state = 110}, - [7287] = {.lex_state = 177, .external_lex_state = 110}, - [7288] = {.lex_state = 177, .external_lex_state = 110}, - [7289] = {.lex_state = 177, .external_lex_state = 110}, - [7290] = {.lex_state = 177, .external_lex_state = 110}, - [7291] = {.lex_state = 177, .external_lex_state = 110}, - [7292] = {.lex_state = 177, .external_lex_state = 110}, - [7293] = {.lex_state = 177, .external_lex_state = 110}, - [7294] = {.lex_state = 177, .external_lex_state = 110}, - [7295] = {.lex_state = 177, .external_lex_state = 110}, - [7296] = {.lex_state = 177, .external_lex_state = 110}, - [7297] = {.lex_state = 177, .external_lex_state = 110}, - [7298] = {.lex_state = 177, .external_lex_state = 110}, - [7299] = {.lex_state = 177, .external_lex_state = 110}, - [7300] = {.lex_state = 177, .external_lex_state = 110}, - [7301] = {.lex_state = 177, .external_lex_state = 110}, - [7302] = {.lex_state = 177, .external_lex_state = 110}, - [7303] = {.lex_state = 177, .external_lex_state = 110}, - [7304] = {.lex_state = 177, .external_lex_state = 110}, - [7305] = {.lex_state = 177, .external_lex_state = 110}, - [7306] = {.lex_state = 177, .external_lex_state = 110}, - [7307] = {.lex_state = 177, .external_lex_state = 110}, - [7308] = {.lex_state = 177, .external_lex_state = 110}, - [7309] = {.lex_state = 177, .external_lex_state = 110}, - [7310] = {.lex_state = 177, .external_lex_state = 110}, - [7311] = {.lex_state = 177, .external_lex_state = 110}, - [7312] = {.lex_state = 177, .external_lex_state = 110}, - [7313] = {.lex_state = 177, .external_lex_state = 110}, - [7314] = {.lex_state = 177, .external_lex_state = 110}, - [7315] = {.lex_state = 177, .external_lex_state = 110}, - [7316] = {.lex_state = 177, .external_lex_state = 110}, - [7317] = {.lex_state = 177, .external_lex_state = 110}, - [7318] = {.lex_state = 177, .external_lex_state = 110}, - [7319] = {.lex_state = 177, .external_lex_state = 110}, - [7320] = {.lex_state = 177, .external_lex_state = 110}, - [7321] = {.lex_state = 177, .external_lex_state = 110}, - [7322] = {.lex_state = 177, .external_lex_state = 110}, - [7323] = {.lex_state = 177, .external_lex_state = 110}, - [7324] = {.lex_state = 177, .external_lex_state = 110}, - [7325] = {.lex_state = 177, .external_lex_state = 110}, - [7326] = {.lex_state = 177, .external_lex_state = 110}, - [7327] = {.lex_state = 177, .external_lex_state = 110}, - [7328] = {.lex_state = 177, .external_lex_state = 110}, - [7329] = {.lex_state = 177, .external_lex_state = 110}, - [7330] = {.lex_state = 177, .external_lex_state = 110}, - [7331] = {.lex_state = 177, .external_lex_state = 110}, - [7332] = {.lex_state = 177, .external_lex_state = 110}, - [7333] = {.lex_state = 177, .external_lex_state = 110}, - [7334] = {.lex_state = 177, .external_lex_state = 110}, - [7335] = {.lex_state = 177, .external_lex_state = 110}, - [7336] = {.lex_state = 177, .external_lex_state = 110}, - [7337] = {.lex_state = 177, .external_lex_state = 110}, - [7338] = {.lex_state = 177, .external_lex_state = 110}, - [7339] = {.lex_state = 177, .external_lex_state = 110}, - [7340] = {.lex_state = 177, .external_lex_state = 110}, - [7341] = {.lex_state = 177, .external_lex_state = 110}, - [7342] = {.lex_state = 177, .external_lex_state = 110}, - [7343] = {.lex_state = 177, .external_lex_state = 110}, - [7344] = {.lex_state = 177, .external_lex_state = 110}, - [7345] = {.lex_state = 177, .external_lex_state = 110}, - [7346] = {.lex_state = 177, .external_lex_state = 110}, - [7347] = {.lex_state = 177, .external_lex_state = 110}, - [7348] = {.lex_state = 177, .external_lex_state = 110}, - [7349] = {.lex_state = 177, .external_lex_state = 110}, - [7350] = {.lex_state = 177, .external_lex_state = 110}, - [7351] = {.lex_state = 177, .external_lex_state = 110}, - [7352] = {.lex_state = 177, .external_lex_state = 110}, - [7353] = {.lex_state = 177, .external_lex_state = 110}, - [7354] = {.lex_state = 177, .external_lex_state = 110}, - [7355] = {.lex_state = 177, .external_lex_state = 110}, - [7356] = {.lex_state = 177, .external_lex_state = 110}, - [7357] = {.lex_state = 177, .external_lex_state = 110}, - [7358] = {.lex_state = 177, .external_lex_state = 110}, - [7359] = {.lex_state = 177, .external_lex_state = 110}, - [7360] = {.lex_state = 177, .external_lex_state = 110}, - [7361] = {.lex_state = 177, .external_lex_state = 110}, - [7362] = {.lex_state = 177, .external_lex_state = 110}, - [7363] = {.lex_state = 177, .external_lex_state = 110}, - [7364] = {.lex_state = 177, .external_lex_state = 110}, - [7365] = {.lex_state = 177, .external_lex_state = 110}, - [7366] = {.lex_state = 177, .external_lex_state = 110}, - [7367] = {.lex_state = 177, .external_lex_state = 110}, - [7368] = {.lex_state = 177, .external_lex_state = 110}, - [7369] = {.lex_state = 177, .external_lex_state = 110}, - [7370] = {.lex_state = 177, .external_lex_state = 110}, - [7371] = {.lex_state = 177, .external_lex_state = 110}, - [7372] = {.lex_state = 177, .external_lex_state = 110}, - [7373] = {.lex_state = 177, .external_lex_state = 110}, - [7374] = {.lex_state = 177, .external_lex_state = 110}, - [7375] = {.lex_state = 177, .external_lex_state = 110}, - [7376] = {.lex_state = 177, .external_lex_state = 110}, - [7377] = {.lex_state = 177, .external_lex_state = 110}, - [7378] = {.lex_state = 177, .external_lex_state = 110}, - [7379] = {.lex_state = 177, .external_lex_state = 110}, - [7380] = {.lex_state = 177, .external_lex_state = 110}, - [7381] = {.lex_state = 177, .external_lex_state = 110}, - [7382] = {.lex_state = 177, .external_lex_state = 110}, - [7383] = {.lex_state = 177, .external_lex_state = 110}, - [7384] = {.lex_state = 177, .external_lex_state = 110}, - [7385] = {.lex_state = 177, .external_lex_state = 110}, - [7386] = {.lex_state = 177, .external_lex_state = 110}, - [7387] = {.lex_state = 177, .external_lex_state = 110}, - [7388] = {.lex_state = 177, .external_lex_state = 110}, - [7389] = {.lex_state = 177, .external_lex_state = 110}, - [7390] = {.lex_state = 177, .external_lex_state = 110}, - [7391] = {.lex_state = 177, .external_lex_state = 110}, - [7392] = {.lex_state = 177, .external_lex_state = 110}, - [7393] = {.lex_state = 177, .external_lex_state = 110}, - [7394] = {.lex_state = 177, .external_lex_state = 110}, - [7395] = {.lex_state = 177, .external_lex_state = 110}, - [7396] = {.lex_state = 177, .external_lex_state = 110}, - [7397] = {.lex_state = 177, .external_lex_state = 110}, - [7398] = {.lex_state = 177, .external_lex_state = 110}, - [7399] = {.lex_state = 177, .external_lex_state = 110}, - [7400] = {.lex_state = 177, .external_lex_state = 110}, - [7401] = {.lex_state = 177, .external_lex_state = 110}, - [7402] = {.lex_state = 177, .external_lex_state = 110}, - [7403] = {.lex_state = 177, .external_lex_state = 110}, - [7404] = {.lex_state = 177, .external_lex_state = 110}, - [7405] = {.lex_state = 177, .external_lex_state = 110}, - [7406] = {.lex_state = 177, .external_lex_state = 110}, - [7407] = {.lex_state = 177, .external_lex_state = 110}, - [7408] = {.lex_state = 177, .external_lex_state = 110}, - [7409] = {.lex_state = 177, .external_lex_state = 110}, - [7410] = {.lex_state = 177, .external_lex_state = 110}, - [7411] = {.lex_state = 177, .external_lex_state = 110}, - [7412] = {.lex_state = 177, .external_lex_state = 110}, - [7413] = {.lex_state = 177, .external_lex_state = 110}, - [7414] = {.lex_state = 177, .external_lex_state = 110}, - [7415] = {.lex_state = 177, .external_lex_state = 110}, - [7416] = {.lex_state = 177, .external_lex_state = 110}, - [7417] = {.lex_state = 177, .external_lex_state = 110}, - [7418] = {.lex_state = 177, .external_lex_state = 110}, - [7419] = {.lex_state = 177, .external_lex_state = 110}, - [7420] = {.lex_state = 177, .external_lex_state = 110}, - [7421] = {.lex_state = 177, .external_lex_state = 110}, - [7422] = {.lex_state = 177, .external_lex_state = 110}, - [7423] = {.lex_state = 177, .external_lex_state = 110}, - [7424] = {.lex_state = 177, .external_lex_state = 110}, - [7425] = {.lex_state = 177, .external_lex_state = 110}, - [7426] = {.lex_state = 177, .external_lex_state = 110}, - [7427] = {.lex_state = 177, .external_lex_state = 110}, - [7428] = {.lex_state = 177, .external_lex_state = 110}, - [7429] = {.lex_state = 177, .external_lex_state = 110}, - [7430] = {.lex_state = 177, .external_lex_state = 110}, - [7431] = {.lex_state = 177, .external_lex_state = 110}, - [7432] = {.lex_state = 177, .external_lex_state = 110}, - [7433] = {.lex_state = 177, .external_lex_state = 110}, - [7434] = {.lex_state = 177, .external_lex_state = 110}, - [7435] = {.lex_state = 177, .external_lex_state = 110}, - [7436] = {.lex_state = 177, .external_lex_state = 110}, - [7437] = {.lex_state = 177, .external_lex_state = 110}, - [7438] = {.lex_state = 177, .external_lex_state = 110}, - [7439] = {.lex_state = 177, .external_lex_state = 110}, - [7440] = {.lex_state = 177, .external_lex_state = 110}, - [7441] = {.lex_state = 177, .external_lex_state = 110}, - [7442] = {.lex_state = 177, .external_lex_state = 110}, - [7443] = {.lex_state = 177, .external_lex_state = 110}, - [7444] = {.lex_state = 177, .external_lex_state = 110}, - [7445] = {.lex_state = 177, .external_lex_state = 110}, - [7446] = {.lex_state = 177, .external_lex_state = 110}, - [7447] = {.lex_state = 177, .external_lex_state = 110}, - [7448] = {.lex_state = 177, .external_lex_state = 110}, - [7449] = {.lex_state = 177, .external_lex_state = 110}, - [7450] = {.lex_state = 177, .external_lex_state = 110}, - [7451] = {.lex_state = 177, .external_lex_state = 110}, - [7452] = {.lex_state = 177, .external_lex_state = 110}, - [7453] = {.lex_state = 177, .external_lex_state = 110}, - [7454] = {.lex_state = 177, .external_lex_state = 110}, - [7455] = {.lex_state = 177, .external_lex_state = 110}, - [7456] = {.lex_state = 177, .external_lex_state = 110}, - [7457] = {.lex_state = 177, .external_lex_state = 110}, - [7458] = {.lex_state = 177, .external_lex_state = 110}, - [7459] = {.lex_state = 177, .external_lex_state = 110}, - [7460] = {.lex_state = 177, .external_lex_state = 110}, - [7461] = {.lex_state = 177, .external_lex_state = 110}, - [7462] = {.lex_state = 177, .external_lex_state = 110}, - [7463] = {.lex_state = 177, .external_lex_state = 110}, - [7464] = {.lex_state = 177, .external_lex_state = 110}, - [7465] = {.lex_state = 177, .external_lex_state = 110}, - [7466] = {.lex_state = 177, .external_lex_state = 110}, - [7467] = {.lex_state = 177, .external_lex_state = 110}, - [7468] = {.lex_state = 177, .external_lex_state = 110}, - [7469] = {.lex_state = 177, .external_lex_state = 110}, - [7470] = {.lex_state = 177, .external_lex_state = 110}, - [7471] = {.lex_state = 177, .external_lex_state = 110}, - [7472] = {.lex_state = 177, .external_lex_state = 110}, - [7473] = {.lex_state = 177, .external_lex_state = 110}, - [7474] = {.lex_state = 177, .external_lex_state = 110}, - [7475] = {.lex_state = 177, .external_lex_state = 110}, - [7476] = {.lex_state = 177, .external_lex_state = 110}, - [7477] = {.lex_state = 177, .external_lex_state = 110}, - [7478] = {.lex_state = 177, .external_lex_state = 110}, - [7479] = {.lex_state = 177, .external_lex_state = 110}, - [7480] = {.lex_state = 177, .external_lex_state = 110}, - [7481] = {.lex_state = 177, .external_lex_state = 110}, - [7482] = {.lex_state = 177, .external_lex_state = 110}, - [7483] = {.lex_state = 177, .external_lex_state = 110}, - [7484] = {.lex_state = 177, .external_lex_state = 110}, - [7485] = {.lex_state = 177, .external_lex_state = 110}, - [7486] = {.lex_state = 177, .external_lex_state = 110}, - [7487] = {.lex_state = 177, .external_lex_state = 110}, - [7488] = {.lex_state = 177, .external_lex_state = 110}, - [7489] = {.lex_state = 177, .external_lex_state = 110}, - [7490] = {.lex_state = 177, .external_lex_state = 110}, - [7491] = {.lex_state = 177, .external_lex_state = 110}, - [7492] = {.lex_state = 177, .external_lex_state = 110}, - [7493] = {.lex_state = 177, .external_lex_state = 110}, - [7494] = {.lex_state = 177, .external_lex_state = 110}, - [7495] = {.lex_state = 177, .external_lex_state = 110}, - [7496] = {.lex_state = 177, .external_lex_state = 110}, - [7497] = {.lex_state = 177, .external_lex_state = 110}, - [7498] = {.lex_state = 177, .external_lex_state = 110}, - [7499] = {.lex_state = 177, .external_lex_state = 110}, - [7500] = {.lex_state = 177, .external_lex_state = 110}, - [7501] = {.lex_state = 177, .external_lex_state = 110}, - [7502] = {.lex_state = 177, .external_lex_state = 110}, - [7503] = {.lex_state = 177, .external_lex_state = 110}, - [7504] = {.lex_state = 177, .external_lex_state = 110}, - [7505] = {.lex_state = 177, .external_lex_state = 110}, - [7506] = {.lex_state = 177, .external_lex_state = 110}, - [7507] = {.lex_state = 177, .external_lex_state = 110}, - [7508] = {.lex_state = 177, .external_lex_state = 110}, - [7509] = {.lex_state = 177, .external_lex_state = 110}, - [7510] = {.lex_state = 177, .external_lex_state = 110}, - [7511] = {.lex_state = 177, .external_lex_state = 110}, - [7512] = {.lex_state = 177, .external_lex_state = 110}, - [7513] = {.lex_state = 177, .external_lex_state = 110}, - [7514] = {.lex_state = 177, .external_lex_state = 110}, - [7515] = {.lex_state = 177, .external_lex_state = 110}, - [7516] = {.lex_state = 177, .external_lex_state = 110}, - [7517] = {.lex_state = 177, .external_lex_state = 110}, - [7518] = {.lex_state = 177, .external_lex_state = 110}, - [7519] = {.lex_state = 177, .external_lex_state = 110}, - [7520] = {.lex_state = 177, .external_lex_state = 110}, - [7521] = {.lex_state = 177, .external_lex_state = 110}, - [7522] = {.lex_state = 177, .external_lex_state = 110}, - [7523] = {.lex_state = 177, .external_lex_state = 110}, - [7524] = {.lex_state = 177, .external_lex_state = 110}, - [7525] = {.lex_state = 177, .external_lex_state = 110}, - [7526] = {.lex_state = 177, .external_lex_state = 110}, - [7527] = {.lex_state = 177, .external_lex_state = 110}, - [7528] = {.lex_state = 177, .external_lex_state = 110}, - [7529] = {.lex_state = 177, .external_lex_state = 110}, - [7530] = {.lex_state = 177, .external_lex_state = 110}, - [7531] = {.lex_state = 177, .external_lex_state = 110}, - [7532] = {.lex_state = 177, .external_lex_state = 110}, - [7533] = {.lex_state = 177, .external_lex_state = 110}, - [7534] = {.lex_state = 177, .external_lex_state = 110}, - [7535] = {.lex_state = 177, .external_lex_state = 110}, - [7536] = {.lex_state = 177, .external_lex_state = 110}, - [7537] = {.lex_state = 177, .external_lex_state = 110}, - [7538] = {.lex_state = 177, .external_lex_state = 110}, - [7539] = {.lex_state = 177, .external_lex_state = 110}, - [7540] = {.lex_state = 177, .external_lex_state = 110}, - [7541] = {.lex_state = 177, .external_lex_state = 110}, - [7542] = {.lex_state = 177, .external_lex_state = 110}, - [7543] = {.lex_state = 177, .external_lex_state = 110}, - [7544] = {.lex_state = 177, .external_lex_state = 110}, - [7545] = {.lex_state = 177, .external_lex_state = 110}, - [7546] = {.lex_state = 177, .external_lex_state = 110}, - [7547] = {.lex_state = 177, .external_lex_state = 110}, - [7548] = {.lex_state = 177, .external_lex_state = 110}, - [7549] = {.lex_state = 177, .external_lex_state = 110}, - [7550] = {.lex_state = 177, .external_lex_state = 110}, - [7551] = {.lex_state = 177, .external_lex_state = 110}, - [7552] = {.lex_state = 177, .external_lex_state = 110}, - [7553] = {.lex_state = 177, .external_lex_state = 110}, - [7554] = {.lex_state = 177, .external_lex_state = 110}, - [7555] = {.lex_state = 177, .external_lex_state = 110}, - [7556] = {.lex_state = 177, .external_lex_state = 110}, - [7557] = {.lex_state = 177, .external_lex_state = 110}, - [7558] = {.lex_state = 177, .external_lex_state = 110}, - [7559] = {.lex_state = 177, .external_lex_state = 110}, - [7560] = {.lex_state = 177, .external_lex_state = 110}, - [7561] = {.lex_state = 177, .external_lex_state = 110}, - [7562] = {.lex_state = 177, .external_lex_state = 110}, - [7563] = {.lex_state = 177, .external_lex_state = 110}, - [7564] = {.lex_state = 177, .external_lex_state = 110}, - [7565] = {.lex_state = 177, .external_lex_state = 110}, - [7566] = {.lex_state = 177, .external_lex_state = 110}, - [7567] = {.lex_state = 177, .external_lex_state = 110}, - [7568] = {.lex_state = 177, .external_lex_state = 110}, - [7569] = {.lex_state = 177, .external_lex_state = 110}, - [7570] = {.lex_state = 177, .external_lex_state = 110}, - [7571] = {.lex_state = 177, .external_lex_state = 110}, - [7572] = {.lex_state = 177, .external_lex_state = 110}, - [7573] = {.lex_state = 177, .external_lex_state = 110}, - [7574] = {.lex_state = 177, .external_lex_state = 110}, - [7575] = {.lex_state = 177, .external_lex_state = 110}, - [7576] = {.lex_state = 177, .external_lex_state = 110}, - [7577] = {.lex_state = 177, .external_lex_state = 110}, - [7578] = {.lex_state = 177, .external_lex_state = 110}, - [7579] = {.lex_state = 177, .external_lex_state = 110}, - [7580] = {.lex_state = 177, .external_lex_state = 110}, - [7581] = {.lex_state = 177, .external_lex_state = 110}, - [7582] = {.lex_state = 177, .external_lex_state = 110}, - [7583] = {.lex_state = 177, .external_lex_state = 110}, - [7584] = {.lex_state = 177, .external_lex_state = 110}, - [7585] = {.lex_state = 177, .external_lex_state = 110}, - [7586] = {.lex_state = 177, .external_lex_state = 110}, - [7587] = {.lex_state = 177, .external_lex_state = 110}, - [7588] = {.lex_state = 177, .external_lex_state = 110}, - [7589] = {.lex_state = 177, .external_lex_state = 110}, - [7590] = {.lex_state = 177, .external_lex_state = 110}, - [7591] = {.lex_state = 177, .external_lex_state = 110}, - [7592] = {.lex_state = 177, .external_lex_state = 110}, - [7593] = {.lex_state = 177, .external_lex_state = 110}, - [7594] = {.lex_state = 177, .external_lex_state = 110}, - [7595] = {.lex_state = 177, .external_lex_state = 110}, - [7596] = {.lex_state = 177, .external_lex_state = 110}, - [7597] = {.lex_state = 177, .external_lex_state = 110}, - [7598] = {.lex_state = 177, .external_lex_state = 110}, - [7599] = {.lex_state = 177, .external_lex_state = 110}, - [7600] = {.lex_state = 177, .external_lex_state = 110}, - [7601] = {.lex_state = 177, .external_lex_state = 110}, - [7602] = {.lex_state = 177, .external_lex_state = 110}, - [7603] = {.lex_state = 177, .external_lex_state = 110}, - [7604] = {.lex_state = 177, .external_lex_state = 110}, - [7605] = {.lex_state = 177, .external_lex_state = 110}, - [7606] = {.lex_state = 177, .external_lex_state = 110}, - [7607] = {.lex_state = 177, .external_lex_state = 110}, - [7608] = {.lex_state = 177, .external_lex_state = 110}, - [7609] = {.lex_state = 177, .external_lex_state = 110}, - [7610] = {.lex_state = 177, .external_lex_state = 110}, - [7611] = {.lex_state = 177, .external_lex_state = 110}, - [7612] = {.lex_state = 177, .external_lex_state = 110}, - [7613] = {.lex_state = 177, .external_lex_state = 110}, - [7614] = {.lex_state = 177, .external_lex_state = 110}, - [7615] = {.lex_state = 177, .external_lex_state = 110}, - [7616] = {.lex_state = 177, .external_lex_state = 110}, - [7617] = {.lex_state = 177, .external_lex_state = 110}, - [7618] = {.lex_state = 177, .external_lex_state = 110}, - [7619] = {.lex_state = 177, .external_lex_state = 110}, - [7620] = {.lex_state = 177, .external_lex_state = 110}, - [7621] = {.lex_state = 177, .external_lex_state = 110}, - [7622] = {.lex_state = 177, .external_lex_state = 99}, - [7623] = {.lex_state = 177, .external_lex_state = 110}, - [7624] = {.lex_state = 177, .external_lex_state = 110}, - [7625] = {.lex_state = 177, .external_lex_state = 110}, - [7626] = {.lex_state = 177, .external_lex_state = 110}, - [7627] = {.lex_state = 177, .external_lex_state = 99}, - [7628] = {.lex_state = 177, .external_lex_state = 110}, - [7629] = {.lex_state = 177, .external_lex_state = 110}, - [7630] = {.lex_state = 177, .external_lex_state = 110}, - [7631] = {.lex_state = 177, .external_lex_state = 110}, - [7632] = {.lex_state = 177, .external_lex_state = 110}, - [7633] = {.lex_state = 177, .external_lex_state = 110}, - [7634] = {.lex_state = 177, .external_lex_state = 110}, - [7635] = {.lex_state = 177, .external_lex_state = 110}, - [7636] = {.lex_state = 177, .external_lex_state = 110}, - [7637] = {.lex_state = 177, .external_lex_state = 110}, - [7638] = {.lex_state = 177, .external_lex_state = 110}, - [7639] = {.lex_state = 177, .external_lex_state = 110}, - [7640] = {.lex_state = 177, .external_lex_state = 110}, - [7641] = {.lex_state = 177, .external_lex_state = 110}, - [7642] = {.lex_state = 177, .external_lex_state = 99}, - [7643] = {.lex_state = 177, .external_lex_state = 110}, - [7644] = {.lex_state = 177, .external_lex_state = 110}, - [7645] = {.lex_state = 177, .external_lex_state = 99}, - [7646] = {.lex_state = 177, .external_lex_state = 111}, - [7647] = {.lex_state = 177, .external_lex_state = 99}, - [7648] = {.lex_state = 177, .external_lex_state = 110}, - [7649] = {.lex_state = 177, .external_lex_state = 99}, - [7650] = {.lex_state = 177, .external_lex_state = 111}, - [7651] = {.lex_state = 177, .external_lex_state = 99}, - [7652] = {.lex_state = 177, .external_lex_state = 99}, - [7653] = {.lex_state = 177, .external_lex_state = 112}, - [7654] = {.lex_state = 186, .external_lex_state = 113}, - [7655] = {.lex_state = 186, .external_lex_state = 113}, - [7656] = {.lex_state = 186, .external_lex_state = 113}, - [7657] = {.lex_state = 177, .external_lex_state = 110}, - [7658] = {.lex_state = 177, .external_lex_state = 112}, - [7659] = {.lex_state = 177, .external_lex_state = 110}, - [7660] = {.lex_state = 186, .external_lex_state = 113}, - [7661] = {.lex_state = 186, .external_lex_state = 113}, - [7662] = {.lex_state = 186, .external_lex_state = 113}, - [7663] = {.lex_state = 177, .external_lex_state = 110}, - [7664] = {.lex_state = 177, .external_lex_state = 110}, - [7665] = {.lex_state = 177, .external_lex_state = 110}, - [7666] = {.lex_state = 177, .external_lex_state = 110}, - [7667] = {.lex_state = 177, .external_lex_state = 110}, - [7668] = {.lex_state = 177, .external_lex_state = 110}, - [7669] = {.lex_state = 177, .external_lex_state = 110}, - [7670] = {.lex_state = 177, .external_lex_state = 110}, - [7671] = {.lex_state = 185, .external_lex_state = 113}, - [7672] = {.lex_state = 185, .external_lex_state = 99}, - [7673] = {.lex_state = 185, .external_lex_state = 99}, - [7674] = {.lex_state = 177, .external_lex_state = 110}, - [7675] = {.lex_state = 177, .external_lex_state = 110}, - [7676] = {.lex_state = 177, .external_lex_state = 110}, - [7677] = {.lex_state = 177, .external_lex_state = 110}, - [7678] = {.lex_state = 177, .external_lex_state = 110}, - [7679] = {.lex_state = 177, .external_lex_state = 110}, - [7680] = {.lex_state = 185, .external_lex_state = 113}, - [7681] = {.lex_state = 185, .external_lex_state = 99}, - [7682] = {.lex_state = 177, .external_lex_state = 110}, - [7683] = {.lex_state = 185, .external_lex_state = 99}, - [7684] = {.lex_state = 185, .external_lex_state = 99}, - [7685] = {.lex_state = 177, .external_lex_state = 110}, - [7686] = {.lex_state = 177, .external_lex_state = 110}, - [7687] = {.lex_state = 177, .external_lex_state = 110}, - [7688] = {.lex_state = 177, .external_lex_state = 110}, - [7689] = {.lex_state = 177, .external_lex_state = 110}, - [7690] = {.lex_state = 177, .external_lex_state = 110}, - [7691] = {.lex_state = 177, .external_lex_state = 110}, - [7692] = {.lex_state = 177, .external_lex_state = 110}, - [7693] = {.lex_state = 177, .external_lex_state = 110}, - [7694] = {.lex_state = 185, .external_lex_state = 113}, - [7695] = {.lex_state = 177, .external_lex_state = 110}, - [7696] = {.lex_state = 177, .external_lex_state = 110}, - [7697] = {.lex_state = 177, .external_lex_state = 110}, - [7698] = {.lex_state = 177, .external_lex_state = 110}, - [7699] = {.lex_state = 177, .external_lex_state = 110}, - [7700] = {.lex_state = 177, .external_lex_state = 110}, - [7701] = {.lex_state = 177, .external_lex_state = 110}, - [7702] = {.lex_state = 185, .external_lex_state = 113}, - [7703] = {.lex_state = 177, .external_lex_state = 110}, - [7704] = {.lex_state = 177, .external_lex_state = 110}, - [7705] = {.lex_state = 177, .external_lex_state = 110}, - [7706] = {.lex_state = 177, .external_lex_state = 110}, - [7707] = {.lex_state = 177, .external_lex_state = 110}, - [7708] = {.lex_state = 185, .external_lex_state = 113}, - [7709] = {.lex_state = 177, .external_lex_state = 110}, - [7710] = {.lex_state = 177, .external_lex_state = 110}, - [7711] = {.lex_state = 177, .external_lex_state = 110}, - [7712] = {.lex_state = 177, .external_lex_state = 110}, - [7713] = {.lex_state = 177, .external_lex_state = 110}, - [7714] = {.lex_state = 177, .external_lex_state = 110}, - [7715] = {.lex_state = 177, .external_lex_state = 110}, - [7716] = {.lex_state = 177, .external_lex_state = 110}, - [7717] = {.lex_state = 177, .external_lex_state = 110}, - [7718] = {.lex_state = 177, .external_lex_state = 110}, - [7719] = {.lex_state = 177, .external_lex_state = 110}, - [7720] = {.lex_state = 177, .external_lex_state = 110}, - [7721] = {.lex_state = 185, .external_lex_state = 113}, - [7722] = {.lex_state = 185, .external_lex_state = 113}, - [7723] = {.lex_state = 177, .external_lex_state = 110}, - [7724] = {.lex_state = 177, .external_lex_state = 110}, - [7725] = {.lex_state = 177, .external_lex_state = 110}, - [7726] = {.lex_state = 177, .external_lex_state = 110}, - [7727] = {.lex_state = 177, .external_lex_state = 110}, - [7728] = {.lex_state = 186, .external_lex_state = 113}, - [7729] = {.lex_state = 177, .external_lex_state = 110}, - [7730] = {.lex_state = 185, .external_lex_state = 113}, - [7731] = {.lex_state = 177, .external_lex_state = 110}, - [7732] = {.lex_state = 177, .external_lex_state = 110}, - [7733] = {.lex_state = 177, .external_lex_state = 110}, - [7734] = {.lex_state = 177, .external_lex_state = 110}, - [7735] = {.lex_state = 177, .external_lex_state = 110}, - [7736] = {.lex_state = 177, .external_lex_state = 110}, - [7737] = {.lex_state = 177, .external_lex_state = 110}, - [7738] = {.lex_state = 177, .external_lex_state = 110}, - [7739] = {.lex_state = 177, .external_lex_state = 110}, - [7740] = {.lex_state = 177, .external_lex_state = 110}, - [7741] = {.lex_state = 186, .external_lex_state = 99}, - [7742] = {.lex_state = 186, .external_lex_state = 99}, - [7743] = {.lex_state = 186, .external_lex_state = 99}, - [7744] = {.lex_state = 177, .external_lex_state = 110}, - [7745] = {.lex_state = 186, .external_lex_state = 99}, - [7746] = {.lex_state = 186, .external_lex_state = 99}, - [7747] = {.lex_state = 177, .external_lex_state = 110}, - [7748] = {.lex_state = 177, .external_lex_state = 110}, - [7749] = {.lex_state = 177, .external_lex_state = 110}, - [7750] = {.lex_state = 177, .external_lex_state = 110}, - [7751] = {.lex_state = 185, .external_lex_state = 113}, - [7752] = {.lex_state = 185, .external_lex_state = 113}, - [7753] = {.lex_state = 185, .external_lex_state = 113}, - [7754] = {.lex_state = 185, .external_lex_state = 113}, - [7755] = {.lex_state = 185, .external_lex_state = 113}, - [7756] = {.lex_state = 185, .external_lex_state = 113}, - [7757] = {.lex_state = 185, .external_lex_state = 113}, - [7758] = {.lex_state = 185, .external_lex_state = 113}, - [7759] = {.lex_state = 185, .external_lex_state = 99}, - [7760] = {.lex_state = 185, .external_lex_state = 113}, - [7761] = {.lex_state = 185, .external_lex_state = 113}, - [7762] = {.lex_state = 185, .external_lex_state = 113}, - [7763] = {.lex_state = 186, .external_lex_state = 99}, - [7764] = {.lex_state = 185, .external_lex_state = 113}, - [7765] = {.lex_state = 185, .external_lex_state = 113}, - [7766] = {.lex_state = 185, .external_lex_state = 113}, - [7767] = {.lex_state = 185, .external_lex_state = 113}, - [7768] = {.lex_state = 185, .external_lex_state = 113}, - [7769] = {.lex_state = 185, .external_lex_state = 113}, - [7770] = {.lex_state = 186, .external_lex_state = 114}, - [7771] = {.lex_state = 185, .external_lex_state = 113}, - [7772] = {.lex_state = 186, .external_lex_state = 114}, - [7773] = {.lex_state = 185, .external_lex_state = 113}, - [7774] = {.lex_state = 185, .external_lex_state = 113}, - [7775] = {.lex_state = 185, .external_lex_state = 113}, - [7776] = {.lex_state = 185, .external_lex_state = 113}, - [7777] = {.lex_state = 186, .external_lex_state = 99}, - [7778] = {.lex_state = 186, .external_lex_state = 114}, - [7779] = {.lex_state = 185, .external_lex_state = 113}, - [7780] = {.lex_state = 185, .external_lex_state = 113}, - [7781] = {.lex_state = 186, .external_lex_state = 114}, - [7782] = {.lex_state = 185, .external_lex_state = 113}, - [7783] = {.lex_state = 186, .external_lex_state = 114}, - [7784] = {.lex_state = 185, .external_lex_state = 99}, - [7785] = {.lex_state = 185, .external_lex_state = 99}, - [7786] = {.lex_state = 185, .external_lex_state = 99}, - [7787] = {.lex_state = 185, .external_lex_state = 99}, - [7788] = {.lex_state = 185, .external_lex_state = 99}, - [7789] = {.lex_state = 185, .external_lex_state = 99}, - [7790] = {.lex_state = 185, .external_lex_state = 99}, - [7791] = {.lex_state = 185, .external_lex_state = 99}, - [7792] = {.lex_state = 185, .external_lex_state = 99}, - [7793] = {.lex_state = 185, .external_lex_state = 99}, - [7794] = {.lex_state = 185, .external_lex_state = 99}, - [7795] = {.lex_state = 185, .external_lex_state = 99}, - [7796] = {.lex_state = 185, .external_lex_state = 99}, - [7797] = {.lex_state = 185, .external_lex_state = 99}, - [7798] = {.lex_state = 185, .external_lex_state = 99}, - [7799] = {.lex_state = 185, .external_lex_state = 99}, - [7800] = {.lex_state = 186, .external_lex_state = 114}, - [7801] = {.lex_state = 185, .external_lex_state = 99}, - [7802] = {.lex_state = 186, .external_lex_state = 115}, - [7803] = {.lex_state = 185, .external_lex_state = 114}, - [7804] = {.lex_state = 38, .external_lex_state = 99}, - [7805] = {.lex_state = 38, .external_lex_state = 99}, - [7806] = {.lex_state = 185, .external_lex_state = 114}, - [7807] = {.lex_state = 38, .external_lex_state = 99}, - [7808] = {.lex_state = 38, .external_lex_state = 99}, - [7809] = {.lex_state = 38, .external_lex_state = 99}, - [7810] = {.lex_state = 38, .external_lex_state = 99}, - [7811] = {.lex_state = 38, .external_lex_state = 99}, - [7812] = {.lex_state = 38, .external_lex_state = 99}, - [7813] = {.lex_state = 185, .external_lex_state = 114}, - [7814] = {.lex_state = 38, .external_lex_state = 99}, - [7815] = {.lex_state = 185, .external_lex_state = 114}, - [7816] = {.lex_state = 185, .external_lex_state = 114}, - [7817] = {.lex_state = 185, .external_lex_state = 114}, - [7818] = {.lex_state = 186, .external_lex_state = 115}, - [7819] = {.lex_state = 186, .external_lex_state = 115}, - [7820] = {.lex_state = 186, .external_lex_state = 115}, - [7821] = {.lex_state = 186, .external_lex_state = 115}, - [7822] = {.lex_state = 185, .external_lex_state = 114}, - [7823] = {.lex_state = 185, .external_lex_state = 114}, - [7824] = {.lex_state = 186, .external_lex_state = 114}, - [7825] = {.lex_state = 185, .external_lex_state = 114}, - [7826] = {.lex_state = 49, .external_lex_state = 99}, - [7827] = {.lex_state = 38, .external_lex_state = 99}, - [7828] = {.lex_state = 38, .external_lex_state = 99}, - [7829] = {.lex_state = 49, .external_lex_state = 99}, - [7830] = {.lex_state = 38, .external_lex_state = 99}, - [7831] = {.lex_state = 185, .external_lex_state = 113}, - [7832] = {.lex_state = 185, .external_lex_state = 114}, - [7833] = {.lex_state = 185, .external_lex_state = 114}, - [7834] = {.lex_state = 38, .external_lex_state = 99}, - [7835] = {.lex_state = 38, .external_lex_state = 99}, - [7836] = {.lex_state = 185, .external_lex_state = 114}, - [7837] = {.lex_state = 38, .external_lex_state = 99}, - [7838] = {.lex_state = 38, .external_lex_state = 99}, - [7839] = {.lex_state = 185, .external_lex_state = 114}, - [7840] = {.lex_state = 38, .external_lex_state = 99}, - [7841] = {.lex_state = 49, .external_lex_state = 99}, - [7842] = {.lex_state = 38, .external_lex_state = 99}, - [7843] = {.lex_state = 38, .external_lex_state = 99}, - [7844] = {.lex_state = 49, .external_lex_state = 99}, - [7845] = {.lex_state = 38, .external_lex_state = 99}, - [7846] = {.lex_state = 49, .external_lex_state = 99}, - [7847] = {.lex_state = 185, .external_lex_state = 114}, - [7848] = {.lex_state = 185, .external_lex_state = 114}, - [7849] = {.lex_state = 38, .external_lex_state = 99}, - [7850] = {.lex_state = 177, .external_lex_state = 99}, - [7851] = {.lex_state = 49, .external_lex_state = 99}, + [7008] = {.lex_state = 173, .external_lex_state = 74}, + [7009] = {.lex_state = 173, .external_lex_state = 74}, + [7010] = {.lex_state = 47, .external_lex_state = 74}, + [7011] = {.lex_state = 173, .external_lex_state = 74}, + [7012] = {.lex_state = 173, .external_lex_state = 81}, + [7013] = {.lex_state = 47, .external_lex_state = 74}, + [7014] = {.lex_state = 47, .external_lex_state = 74}, + [7015] = {.lex_state = 173, .external_lex_state = 81}, + [7016] = {.lex_state = 47, .external_lex_state = 74}, + [7017] = {.lex_state = 47, .external_lex_state = 74}, + [7018] = {.lex_state = 47, .external_lex_state = 74}, + [7019] = {.lex_state = 47, .external_lex_state = 74}, + [7020] = {.lex_state = 47, .external_lex_state = 74}, + [7021] = {.lex_state = 173, .external_lex_state = 81}, + [7022] = {.lex_state = 47, .external_lex_state = 74}, + [7023] = {.lex_state = 173, .external_lex_state = 81}, + [7024] = {.lex_state = 47, .external_lex_state = 74}, + [7025] = {.lex_state = 47, .external_lex_state = 74}, + [7026] = {.lex_state = 173, .external_lex_state = 81}, + [7027] = {.lex_state = 47, .external_lex_state = 74}, + [7028] = {.lex_state = 47, .external_lex_state = 74}, + [7029] = {.lex_state = 47, .external_lex_state = 74}, + [7030] = {.lex_state = 47, .external_lex_state = 74}, + [7031] = {.lex_state = 47, .external_lex_state = 74}, + [7032] = {.lex_state = 47, .external_lex_state = 74}, + [7033] = {.lex_state = 173, .external_lex_state = 81}, + [7034] = {.lex_state = 173, .external_lex_state = 81}, + [7035] = {.lex_state = 47, .external_lex_state = 74}, + [7036] = {.lex_state = 47, .external_lex_state = 74}, + [7037] = {.lex_state = 34, .external_lex_state = 99}, + [7038] = {.lex_state = 47, .external_lex_state = 74}, + [7039] = {.lex_state = 47, .external_lex_state = 74}, + [7040] = {.lex_state = 173, .external_lex_state = 74}, + [7041] = {.lex_state = 47, .external_lex_state = 74}, + [7042] = {.lex_state = 47, .external_lex_state = 74}, + [7043] = {.lex_state = 173, .external_lex_state = 74}, + [7044] = {.lex_state = 47, .external_lex_state = 74}, + [7045] = {.lex_state = 173, .external_lex_state = 81}, + [7046] = {.lex_state = 173, .external_lex_state = 81}, + [7047] = {.lex_state = 47, .external_lex_state = 74}, + [7048] = {.lex_state = 47, .external_lex_state = 74}, + [7049] = {.lex_state = 47, .external_lex_state = 74}, + [7050] = {.lex_state = 47, .external_lex_state = 74}, + [7051] = {.lex_state = 47, .external_lex_state = 74}, + [7052] = {.lex_state = 34, .external_lex_state = 99}, + [7053] = {.lex_state = 173, .external_lex_state = 81}, + [7054] = {.lex_state = 178, .external_lex_state = 102}, + [7055] = {.lex_state = 173, .external_lex_state = 74}, + [7056] = {.lex_state = 173, .external_lex_state = 74}, + [7057] = {.lex_state = 173, .external_lex_state = 74}, + [7058] = {.lex_state = 187, .external_lex_state = 110}, + [7059] = {.lex_state = 173, .external_lex_state = 74}, + [7060] = {.lex_state = 187, .external_lex_state = 110}, + [7061] = {.lex_state = 187, .external_lex_state = 110}, + [7062] = {.lex_state = 173, .external_lex_state = 74}, + [7063] = {.lex_state = 173, .external_lex_state = 74}, + [7064] = {.lex_state = 187, .external_lex_state = 110}, + [7065] = {.lex_state = 187, .external_lex_state = 110}, + [7066] = {.lex_state = 173, .external_lex_state = 74}, + [7067] = {.lex_state = 173, .external_lex_state = 74}, + [7068] = {.lex_state = 173, .external_lex_state = 74}, + [7069] = {.lex_state = 173, .external_lex_state = 74}, + [7070] = {.lex_state = 187, .external_lex_state = 110}, + [7071] = {.lex_state = 173, .external_lex_state = 74}, + [7072] = {.lex_state = 178, .external_lex_state = 106}, + [7073] = {.lex_state = 187, .external_lex_state = 111}, + [7074] = {.lex_state = 178, .external_lex_state = 106}, + [7075] = {.lex_state = 187, .external_lex_state = 111}, + [7076] = {.lex_state = 187, .external_lex_state = 111}, + [7077] = {.lex_state = 178, .external_lex_state = 111}, + [7078] = {.lex_state = 187, .external_lex_state = 112}, + [7079] = {.lex_state = 187, .external_lex_state = 112}, + [7080] = {.lex_state = 187, .external_lex_state = 111}, + [7081] = {.lex_state = 187, .external_lex_state = 111}, + [7082] = {.lex_state = 187, .external_lex_state = 111}, + [7083] = {.lex_state = 187, .external_lex_state = 112}, + [7084] = {.lex_state = 178, .external_lex_state = 110}, + [7085] = {.lex_state = 187, .external_lex_state = 112}, + [7086] = {.lex_state = 187, .external_lex_state = 112}, + [7087] = {.lex_state = 178, .external_lex_state = 110}, + [7088] = {.lex_state = 187, .external_lex_state = 112}, + [7089] = {.lex_state = 178, .external_lex_state = 110}, + [7090] = {.lex_state = 178, .external_lex_state = 110}, + [7091] = {.lex_state = 178, .external_lex_state = 110}, + [7092] = {.lex_state = 178, .external_lex_state = 110}, + [7093] = {.lex_state = 178, .external_lex_state = 110}, + [7094] = {.lex_state = 178, .external_lex_state = 110}, + [7095] = {.lex_state = 178, .external_lex_state = 110}, + [7096] = {.lex_state = 178, .external_lex_state = 110}, + [7097] = {.lex_state = 178, .external_lex_state = 110}, + [7098] = {.lex_state = 178, .external_lex_state = 110}, + [7099] = {.lex_state = 178, .external_lex_state = 110}, + [7100] = {.lex_state = 178, .external_lex_state = 110}, + [7101] = {.lex_state = 178, .external_lex_state = 110}, + [7102] = {.lex_state = 178, .external_lex_state = 110}, + [7103] = {.lex_state = 178, .external_lex_state = 110}, + [7104] = {.lex_state = 178, .external_lex_state = 110}, + [7105] = {.lex_state = 178, .external_lex_state = 110}, + [7106] = {.lex_state = 178, .external_lex_state = 110}, + [7107] = {.lex_state = 178, .external_lex_state = 110}, + [7108] = {.lex_state = 178, .external_lex_state = 110}, + [7109] = {.lex_state = 178, .external_lex_state = 110}, + [7110] = {.lex_state = 178, .external_lex_state = 110}, + [7111] = {.lex_state = 178, .external_lex_state = 110}, + [7112] = {.lex_state = 178, .external_lex_state = 110}, + [7113] = {.lex_state = 178, .external_lex_state = 110}, + [7114] = {.lex_state = 178, .external_lex_state = 110}, + [7115] = {.lex_state = 178, .external_lex_state = 110}, + [7116] = {.lex_state = 178, .external_lex_state = 110}, + [7117] = {.lex_state = 178, .external_lex_state = 110}, + [7118] = {.lex_state = 178, .external_lex_state = 110}, + [7119] = {.lex_state = 178, .external_lex_state = 110}, + [7120] = {.lex_state = 178, .external_lex_state = 110}, + [7121] = {.lex_state = 178, .external_lex_state = 110}, + [7122] = {.lex_state = 178, .external_lex_state = 110}, + [7123] = {.lex_state = 178, .external_lex_state = 110}, + [7124] = {.lex_state = 178, .external_lex_state = 110}, + [7125] = {.lex_state = 178, .external_lex_state = 110}, + [7126] = {.lex_state = 178, .external_lex_state = 110}, + [7127] = {.lex_state = 178, .external_lex_state = 110}, + [7128] = {.lex_state = 178, .external_lex_state = 110}, + [7129] = {.lex_state = 178, .external_lex_state = 110}, + [7130] = {.lex_state = 178, .external_lex_state = 110}, + [7131] = {.lex_state = 178, .external_lex_state = 110}, + [7132] = {.lex_state = 178, .external_lex_state = 110}, + [7133] = {.lex_state = 178, .external_lex_state = 110}, + [7134] = {.lex_state = 178, .external_lex_state = 110}, + [7135] = {.lex_state = 178, .external_lex_state = 110}, + [7136] = {.lex_state = 178, .external_lex_state = 110}, + [7137] = {.lex_state = 178, .external_lex_state = 110}, + [7138] = {.lex_state = 178, .external_lex_state = 110}, + [7139] = {.lex_state = 178, .external_lex_state = 110}, + [7140] = {.lex_state = 178, .external_lex_state = 110}, + [7141] = {.lex_state = 178, .external_lex_state = 110}, + [7142] = {.lex_state = 178, .external_lex_state = 110}, + [7143] = {.lex_state = 178, .external_lex_state = 110}, + [7144] = {.lex_state = 178, .external_lex_state = 110}, + [7145] = {.lex_state = 178, .external_lex_state = 110}, + [7146] = {.lex_state = 178, .external_lex_state = 110}, + [7147] = {.lex_state = 178, .external_lex_state = 110}, + [7148] = {.lex_state = 178, .external_lex_state = 110}, + [7149] = {.lex_state = 178, .external_lex_state = 110}, + [7150] = {.lex_state = 178, .external_lex_state = 110}, + [7151] = {.lex_state = 178, .external_lex_state = 110}, + [7152] = {.lex_state = 178, .external_lex_state = 110}, + [7153] = {.lex_state = 178, .external_lex_state = 110}, + [7154] = {.lex_state = 187, .external_lex_state = 110}, + [7155] = {.lex_state = 178, .external_lex_state = 110}, + [7156] = {.lex_state = 178, .external_lex_state = 110}, + [7157] = {.lex_state = 178, .external_lex_state = 110}, + [7158] = {.lex_state = 178, .external_lex_state = 110}, + [7159] = {.lex_state = 178, .external_lex_state = 110}, + [7160] = {.lex_state = 178, .external_lex_state = 110}, + [7161] = {.lex_state = 178, .external_lex_state = 110}, + [7162] = {.lex_state = 178, .external_lex_state = 110}, + [7163] = {.lex_state = 178, .external_lex_state = 110}, + [7164] = {.lex_state = 178, .external_lex_state = 110}, + [7165] = {.lex_state = 178, .external_lex_state = 110}, + [7166] = {.lex_state = 187, .external_lex_state = 110}, + [7167] = {.lex_state = 178, .external_lex_state = 110}, + [7168] = {.lex_state = 178, .external_lex_state = 110}, + [7169] = {.lex_state = 178, .external_lex_state = 110}, + [7170] = {.lex_state = 178, .external_lex_state = 110}, + [7171] = {.lex_state = 178, .external_lex_state = 110}, + [7172] = {.lex_state = 178, .external_lex_state = 110}, + [7173] = {.lex_state = 178, .external_lex_state = 110}, + [7174] = {.lex_state = 178, .external_lex_state = 110}, + [7175] = {.lex_state = 178, .external_lex_state = 110}, + [7176] = {.lex_state = 178, .external_lex_state = 110}, + [7177] = {.lex_state = 178, .external_lex_state = 110}, + [7178] = {.lex_state = 178, .external_lex_state = 110}, + [7179] = {.lex_state = 178, .external_lex_state = 110}, + [7180] = {.lex_state = 178, .external_lex_state = 110}, + [7181] = {.lex_state = 178, .external_lex_state = 110}, + [7182] = {.lex_state = 178, .external_lex_state = 110}, + [7183] = {.lex_state = 178, .external_lex_state = 110}, + [7184] = {.lex_state = 178, .external_lex_state = 110}, + [7185] = {.lex_state = 178, .external_lex_state = 110}, + [7186] = {.lex_state = 178, .external_lex_state = 110}, + [7187] = {.lex_state = 178, .external_lex_state = 110}, + [7188] = {.lex_state = 178, .external_lex_state = 110}, + [7189] = {.lex_state = 178, .external_lex_state = 110}, + [7190] = {.lex_state = 178, .external_lex_state = 110}, + [7191] = {.lex_state = 178, .external_lex_state = 110}, + [7192] = {.lex_state = 178, .external_lex_state = 110}, + [7193] = {.lex_state = 178, .external_lex_state = 110}, + [7194] = {.lex_state = 178, .external_lex_state = 110}, + [7195] = {.lex_state = 178, .external_lex_state = 110}, + [7196] = {.lex_state = 178, .external_lex_state = 110}, + [7197] = {.lex_state = 178, .external_lex_state = 110}, + [7198] = {.lex_state = 178, .external_lex_state = 110}, + [7199] = {.lex_state = 178, .external_lex_state = 110}, + [7200] = {.lex_state = 178, .external_lex_state = 110}, + [7201] = {.lex_state = 178, .external_lex_state = 110}, + [7202] = {.lex_state = 178, .external_lex_state = 110}, + [7203] = {.lex_state = 178, .external_lex_state = 110}, + [7204] = {.lex_state = 178, .external_lex_state = 110}, + [7205] = {.lex_state = 178, .external_lex_state = 110}, + [7206] = {.lex_state = 178, .external_lex_state = 110}, + [7207] = {.lex_state = 178, .external_lex_state = 110}, + [7208] = {.lex_state = 178, .external_lex_state = 110}, + [7209] = {.lex_state = 178, .external_lex_state = 110}, + [7210] = {.lex_state = 178, .external_lex_state = 110}, + [7211] = {.lex_state = 178, .external_lex_state = 110}, + [7212] = {.lex_state = 178, .external_lex_state = 110}, + [7213] = {.lex_state = 178, .external_lex_state = 110}, + [7214] = {.lex_state = 178, .external_lex_state = 110}, + [7215] = {.lex_state = 178, .external_lex_state = 110}, + [7216] = {.lex_state = 178, .external_lex_state = 110}, + [7217] = {.lex_state = 178, .external_lex_state = 110}, + [7218] = {.lex_state = 178, .external_lex_state = 110}, + [7219] = {.lex_state = 178, .external_lex_state = 110}, + [7220] = {.lex_state = 178, .external_lex_state = 110}, + [7221] = {.lex_state = 178, .external_lex_state = 110}, + [7222] = {.lex_state = 178, .external_lex_state = 110}, + [7223] = {.lex_state = 178, .external_lex_state = 110}, + [7224] = {.lex_state = 178, .external_lex_state = 110}, + [7225] = {.lex_state = 178, .external_lex_state = 110}, + [7226] = {.lex_state = 178, .external_lex_state = 110}, + [7227] = {.lex_state = 178, .external_lex_state = 110}, + [7228] = {.lex_state = 178, .external_lex_state = 110}, + [7229] = {.lex_state = 178, .external_lex_state = 110}, + [7230] = {.lex_state = 178, .external_lex_state = 110}, + [7231] = {.lex_state = 178, .external_lex_state = 110}, + [7232] = {.lex_state = 178, .external_lex_state = 110}, + [7233] = {.lex_state = 178, .external_lex_state = 110}, + [7234] = {.lex_state = 178, .external_lex_state = 110}, + [7235] = {.lex_state = 178, .external_lex_state = 110}, + [7236] = {.lex_state = 178, .external_lex_state = 110}, + [7237] = {.lex_state = 178, .external_lex_state = 110}, + [7238] = {.lex_state = 178, .external_lex_state = 110}, + [7239] = {.lex_state = 178, .external_lex_state = 110}, + [7240] = {.lex_state = 178, .external_lex_state = 110}, + [7241] = {.lex_state = 178, .external_lex_state = 110}, + [7242] = {.lex_state = 178, .external_lex_state = 110}, + [7243] = {.lex_state = 178, .external_lex_state = 110}, + [7244] = {.lex_state = 178, .external_lex_state = 110}, + [7245] = {.lex_state = 178, .external_lex_state = 110}, + [7246] = {.lex_state = 178, .external_lex_state = 110}, + [7247] = {.lex_state = 178, .external_lex_state = 110}, + [7248] = {.lex_state = 178, .external_lex_state = 110}, + [7249] = {.lex_state = 178, .external_lex_state = 110}, + [7250] = {.lex_state = 178, .external_lex_state = 110}, + [7251] = {.lex_state = 178, .external_lex_state = 110}, + [7252] = {.lex_state = 178, .external_lex_state = 110}, + [7253] = {.lex_state = 178, .external_lex_state = 110}, + [7254] = {.lex_state = 178, .external_lex_state = 110}, + [7255] = {.lex_state = 178, .external_lex_state = 110}, + [7256] = {.lex_state = 178, .external_lex_state = 110}, + [7257] = {.lex_state = 178, .external_lex_state = 110}, + [7258] = {.lex_state = 178, .external_lex_state = 110}, + [7259] = {.lex_state = 178, .external_lex_state = 110}, + [7260] = {.lex_state = 178, .external_lex_state = 110}, + [7261] = {.lex_state = 178, .external_lex_state = 110}, + [7262] = {.lex_state = 178, .external_lex_state = 110}, + [7263] = {.lex_state = 178, .external_lex_state = 110}, + [7264] = {.lex_state = 178, .external_lex_state = 110}, + [7265] = {.lex_state = 178, .external_lex_state = 110}, + [7266] = {.lex_state = 178, .external_lex_state = 110}, + [7267] = {.lex_state = 178, .external_lex_state = 110}, + [7268] = {.lex_state = 178, .external_lex_state = 110}, + [7269] = {.lex_state = 178, .external_lex_state = 110}, + [7270] = {.lex_state = 178, .external_lex_state = 110}, + [7271] = {.lex_state = 178, .external_lex_state = 110}, + [7272] = {.lex_state = 178, .external_lex_state = 110}, + [7273] = {.lex_state = 178, .external_lex_state = 110}, + [7274] = {.lex_state = 178, .external_lex_state = 110}, + [7275] = {.lex_state = 178, .external_lex_state = 110}, + [7276] = {.lex_state = 178, .external_lex_state = 110}, + [7277] = {.lex_state = 178, .external_lex_state = 110}, + [7278] = {.lex_state = 178, .external_lex_state = 110}, + [7279] = {.lex_state = 178, .external_lex_state = 110}, + [7280] = {.lex_state = 178, .external_lex_state = 110}, + [7281] = {.lex_state = 178, .external_lex_state = 110}, + [7282] = {.lex_state = 178, .external_lex_state = 110}, + [7283] = {.lex_state = 178, .external_lex_state = 110}, + [7284] = {.lex_state = 178, .external_lex_state = 110}, + [7285] = {.lex_state = 178, .external_lex_state = 110}, + [7286] = {.lex_state = 178, .external_lex_state = 110}, + [7287] = {.lex_state = 178, .external_lex_state = 110}, + [7288] = {.lex_state = 178, .external_lex_state = 110}, + [7289] = {.lex_state = 178, .external_lex_state = 110}, + [7290] = {.lex_state = 178, .external_lex_state = 110}, + [7291] = {.lex_state = 178, .external_lex_state = 110}, + [7292] = {.lex_state = 178, .external_lex_state = 110}, + [7293] = {.lex_state = 178, .external_lex_state = 110}, + [7294] = {.lex_state = 178, .external_lex_state = 110}, + [7295] = {.lex_state = 178, .external_lex_state = 110}, + [7296] = {.lex_state = 178, .external_lex_state = 110}, + [7297] = {.lex_state = 178, .external_lex_state = 110}, + [7298] = {.lex_state = 178, .external_lex_state = 110}, + [7299] = {.lex_state = 178, .external_lex_state = 110}, + [7300] = {.lex_state = 178, .external_lex_state = 110}, + [7301] = {.lex_state = 178, .external_lex_state = 110}, + [7302] = {.lex_state = 178, .external_lex_state = 110}, + [7303] = {.lex_state = 178, .external_lex_state = 110}, + [7304] = {.lex_state = 178, .external_lex_state = 110}, + [7305] = {.lex_state = 178, .external_lex_state = 110}, + [7306] = {.lex_state = 178, .external_lex_state = 110}, + [7307] = {.lex_state = 178, .external_lex_state = 110}, + [7308] = {.lex_state = 178, .external_lex_state = 110}, + [7309] = {.lex_state = 178, .external_lex_state = 110}, + [7310] = {.lex_state = 178, .external_lex_state = 110}, + [7311] = {.lex_state = 178, .external_lex_state = 110}, + [7312] = {.lex_state = 178, .external_lex_state = 110}, + [7313] = {.lex_state = 178, .external_lex_state = 110}, + [7314] = {.lex_state = 178, .external_lex_state = 110}, + [7315] = {.lex_state = 178, .external_lex_state = 110}, + [7316] = {.lex_state = 178, .external_lex_state = 110}, + [7317] = {.lex_state = 178, .external_lex_state = 110}, + [7318] = {.lex_state = 178, .external_lex_state = 110}, + [7319] = {.lex_state = 178, .external_lex_state = 110}, + [7320] = {.lex_state = 178, .external_lex_state = 110}, + [7321] = {.lex_state = 178, .external_lex_state = 110}, + [7322] = {.lex_state = 178, .external_lex_state = 110}, + [7323] = {.lex_state = 178, .external_lex_state = 110}, + [7324] = {.lex_state = 178, .external_lex_state = 110}, + [7325] = {.lex_state = 178, .external_lex_state = 110}, + [7326] = {.lex_state = 178, .external_lex_state = 110}, + [7327] = {.lex_state = 178, .external_lex_state = 110}, + [7328] = {.lex_state = 178, .external_lex_state = 110}, + [7329] = {.lex_state = 178, .external_lex_state = 110}, + [7330] = {.lex_state = 178, .external_lex_state = 110}, + [7331] = {.lex_state = 178, .external_lex_state = 110}, + [7332] = {.lex_state = 178, .external_lex_state = 110}, + [7333] = {.lex_state = 178, .external_lex_state = 110}, + [7334] = {.lex_state = 178, .external_lex_state = 110}, + [7335] = {.lex_state = 178, .external_lex_state = 110}, + [7336] = {.lex_state = 178, .external_lex_state = 110}, + [7337] = {.lex_state = 178, .external_lex_state = 110}, + [7338] = {.lex_state = 178, .external_lex_state = 110}, + [7339] = {.lex_state = 178, .external_lex_state = 110}, + [7340] = {.lex_state = 178, .external_lex_state = 110}, + [7341] = {.lex_state = 178, .external_lex_state = 110}, + [7342] = {.lex_state = 178, .external_lex_state = 110}, + [7343] = {.lex_state = 178, .external_lex_state = 110}, + [7344] = {.lex_state = 178, .external_lex_state = 110}, + [7345] = {.lex_state = 178, .external_lex_state = 110}, + [7346] = {.lex_state = 178, .external_lex_state = 110}, + [7347] = {.lex_state = 178, .external_lex_state = 110}, + [7348] = {.lex_state = 178, .external_lex_state = 110}, + [7349] = {.lex_state = 178, .external_lex_state = 110}, + [7350] = {.lex_state = 178, .external_lex_state = 110}, + [7351] = {.lex_state = 178, .external_lex_state = 110}, + [7352] = {.lex_state = 178, .external_lex_state = 110}, + [7353] = {.lex_state = 178, .external_lex_state = 110}, + [7354] = {.lex_state = 178, .external_lex_state = 110}, + [7355] = {.lex_state = 178, .external_lex_state = 110}, + [7356] = {.lex_state = 178, .external_lex_state = 110}, + [7357] = {.lex_state = 178, .external_lex_state = 110}, + [7358] = {.lex_state = 178, .external_lex_state = 110}, + [7359] = {.lex_state = 178, .external_lex_state = 110}, + [7360] = {.lex_state = 178, .external_lex_state = 110}, + [7361] = {.lex_state = 178, .external_lex_state = 110}, + [7362] = {.lex_state = 178, .external_lex_state = 110}, + [7363] = {.lex_state = 178, .external_lex_state = 110}, + [7364] = {.lex_state = 178, .external_lex_state = 110}, + [7365] = {.lex_state = 178, .external_lex_state = 110}, + [7366] = {.lex_state = 178, .external_lex_state = 110}, + [7367] = {.lex_state = 178, .external_lex_state = 110}, + [7368] = {.lex_state = 178, .external_lex_state = 110}, + [7369] = {.lex_state = 178, .external_lex_state = 110}, + [7370] = {.lex_state = 178, .external_lex_state = 110}, + [7371] = {.lex_state = 178, .external_lex_state = 110}, + [7372] = {.lex_state = 178, .external_lex_state = 110}, + [7373] = {.lex_state = 178, .external_lex_state = 110}, + [7374] = {.lex_state = 178, .external_lex_state = 110}, + [7375] = {.lex_state = 178, .external_lex_state = 110}, + [7376] = {.lex_state = 178, .external_lex_state = 110}, + [7377] = {.lex_state = 178, .external_lex_state = 110}, + [7378] = {.lex_state = 178, .external_lex_state = 110}, + [7379] = {.lex_state = 178, .external_lex_state = 110}, + [7380] = {.lex_state = 178, .external_lex_state = 110}, + [7381] = {.lex_state = 178, .external_lex_state = 110}, + [7382] = {.lex_state = 178, .external_lex_state = 110}, + [7383] = {.lex_state = 178, .external_lex_state = 110}, + [7384] = {.lex_state = 178, .external_lex_state = 110}, + [7385] = {.lex_state = 178, .external_lex_state = 110}, + [7386] = {.lex_state = 178, .external_lex_state = 110}, + [7387] = {.lex_state = 178, .external_lex_state = 110}, + [7388] = {.lex_state = 178, .external_lex_state = 110}, + [7389] = {.lex_state = 178, .external_lex_state = 110}, + [7390] = {.lex_state = 178, .external_lex_state = 110}, + [7391] = {.lex_state = 178, .external_lex_state = 110}, + [7392] = {.lex_state = 178, .external_lex_state = 110}, + [7393] = {.lex_state = 178, .external_lex_state = 110}, + [7394] = {.lex_state = 178, .external_lex_state = 110}, + [7395] = {.lex_state = 178, .external_lex_state = 110}, + [7396] = {.lex_state = 178, .external_lex_state = 110}, + [7397] = {.lex_state = 178, .external_lex_state = 110}, + [7398] = {.lex_state = 178, .external_lex_state = 110}, + [7399] = {.lex_state = 178, .external_lex_state = 110}, + [7400] = {.lex_state = 178, .external_lex_state = 110}, + [7401] = {.lex_state = 178, .external_lex_state = 110}, + [7402] = {.lex_state = 178, .external_lex_state = 110}, + [7403] = {.lex_state = 178, .external_lex_state = 110}, + [7404] = {.lex_state = 178, .external_lex_state = 110}, + [7405] = {.lex_state = 178, .external_lex_state = 110}, + [7406] = {.lex_state = 178, .external_lex_state = 110}, + [7407] = {.lex_state = 178, .external_lex_state = 110}, + [7408] = {.lex_state = 178, .external_lex_state = 110}, + [7409] = {.lex_state = 178, .external_lex_state = 110}, + [7410] = {.lex_state = 178, .external_lex_state = 110}, + [7411] = {.lex_state = 178, .external_lex_state = 110}, + [7412] = {.lex_state = 178, .external_lex_state = 110}, + [7413] = {.lex_state = 178, .external_lex_state = 110}, + [7414] = {.lex_state = 178, .external_lex_state = 110}, + [7415] = {.lex_state = 178, .external_lex_state = 110}, + [7416] = {.lex_state = 178, .external_lex_state = 110}, + [7417] = {.lex_state = 178, .external_lex_state = 110}, + [7418] = {.lex_state = 178, .external_lex_state = 110}, + [7419] = {.lex_state = 178, .external_lex_state = 110}, + [7420] = {.lex_state = 178, .external_lex_state = 110}, + [7421] = {.lex_state = 178, .external_lex_state = 110}, + [7422] = {.lex_state = 178, .external_lex_state = 110}, + [7423] = {.lex_state = 178, .external_lex_state = 110}, + [7424] = {.lex_state = 178, .external_lex_state = 110}, + [7425] = {.lex_state = 178, .external_lex_state = 110}, + [7426] = {.lex_state = 178, .external_lex_state = 110}, + [7427] = {.lex_state = 178, .external_lex_state = 110}, + [7428] = {.lex_state = 178, .external_lex_state = 110}, + [7429] = {.lex_state = 178, .external_lex_state = 110}, + [7430] = {.lex_state = 178, .external_lex_state = 110}, + [7431] = {.lex_state = 178, .external_lex_state = 110}, + [7432] = {.lex_state = 178, .external_lex_state = 110}, + [7433] = {.lex_state = 178, .external_lex_state = 110}, + [7434] = {.lex_state = 178, .external_lex_state = 110}, + [7435] = {.lex_state = 178, .external_lex_state = 110}, + [7436] = {.lex_state = 178, .external_lex_state = 110}, + [7437] = {.lex_state = 178, .external_lex_state = 110}, + [7438] = {.lex_state = 178, .external_lex_state = 110}, + [7439] = {.lex_state = 178, .external_lex_state = 110}, + [7440] = {.lex_state = 178, .external_lex_state = 110}, + [7441] = {.lex_state = 178, .external_lex_state = 110}, + [7442] = {.lex_state = 178, .external_lex_state = 110}, + [7443] = {.lex_state = 178, .external_lex_state = 110}, + [7444] = {.lex_state = 178, .external_lex_state = 110}, + [7445] = {.lex_state = 178, .external_lex_state = 110}, + [7446] = {.lex_state = 178, .external_lex_state = 110}, + [7447] = {.lex_state = 178, .external_lex_state = 110}, + [7448] = {.lex_state = 178, .external_lex_state = 110}, + [7449] = {.lex_state = 178, .external_lex_state = 110}, + [7450] = {.lex_state = 178, .external_lex_state = 110}, + [7451] = {.lex_state = 178, .external_lex_state = 110}, + [7452] = {.lex_state = 178, .external_lex_state = 110}, + [7453] = {.lex_state = 178, .external_lex_state = 110}, + [7454] = {.lex_state = 178, .external_lex_state = 110}, + [7455] = {.lex_state = 178, .external_lex_state = 110}, + [7456] = {.lex_state = 178, .external_lex_state = 110}, + [7457] = {.lex_state = 178, .external_lex_state = 110}, + [7458] = {.lex_state = 178, .external_lex_state = 110}, + [7459] = {.lex_state = 178, .external_lex_state = 110}, + [7460] = {.lex_state = 178, .external_lex_state = 110}, + [7461] = {.lex_state = 178, .external_lex_state = 110}, + [7462] = {.lex_state = 178, .external_lex_state = 110}, + [7463] = {.lex_state = 178, .external_lex_state = 110}, + [7464] = {.lex_state = 178, .external_lex_state = 110}, + [7465] = {.lex_state = 178, .external_lex_state = 110}, + [7466] = {.lex_state = 178, .external_lex_state = 110}, + [7467] = {.lex_state = 178, .external_lex_state = 110}, + [7468] = {.lex_state = 178, .external_lex_state = 110}, + [7469] = {.lex_state = 178, .external_lex_state = 110}, + [7470] = {.lex_state = 178, .external_lex_state = 110}, + [7471] = {.lex_state = 178, .external_lex_state = 110}, + [7472] = {.lex_state = 178, .external_lex_state = 110}, + [7473] = {.lex_state = 178, .external_lex_state = 110}, + [7474] = {.lex_state = 178, .external_lex_state = 110}, + [7475] = {.lex_state = 178, .external_lex_state = 110}, + [7476] = {.lex_state = 178, .external_lex_state = 110}, + [7477] = {.lex_state = 178, .external_lex_state = 110}, + [7478] = {.lex_state = 178, .external_lex_state = 110}, + [7479] = {.lex_state = 178, .external_lex_state = 110}, + [7480] = {.lex_state = 178, .external_lex_state = 110}, + [7481] = {.lex_state = 178, .external_lex_state = 110}, + [7482] = {.lex_state = 178, .external_lex_state = 110}, + [7483] = {.lex_state = 178, .external_lex_state = 110}, + [7484] = {.lex_state = 178, .external_lex_state = 110}, + [7485] = {.lex_state = 178, .external_lex_state = 110}, + [7486] = {.lex_state = 178, .external_lex_state = 110}, + [7487] = {.lex_state = 178, .external_lex_state = 110}, + [7488] = {.lex_state = 178, .external_lex_state = 110}, + [7489] = {.lex_state = 178, .external_lex_state = 110}, + [7490] = {.lex_state = 178, .external_lex_state = 110}, + [7491] = {.lex_state = 178, .external_lex_state = 110}, + [7492] = {.lex_state = 178, .external_lex_state = 110}, + [7493] = {.lex_state = 178, .external_lex_state = 110}, + [7494] = {.lex_state = 178, .external_lex_state = 110}, + [7495] = {.lex_state = 178, .external_lex_state = 110}, + [7496] = {.lex_state = 178, .external_lex_state = 110}, + [7497] = {.lex_state = 178, .external_lex_state = 110}, + [7498] = {.lex_state = 178, .external_lex_state = 110}, + [7499] = {.lex_state = 178, .external_lex_state = 110}, + [7500] = {.lex_state = 178, .external_lex_state = 110}, + [7501] = {.lex_state = 178, .external_lex_state = 110}, + [7502] = {.lex_state = 178, .external_lex_state = 110}, + [7503] = {.lex_state = 178, .external_lex_state = 110}, + [7504] = {.lex_state = 178, .external_lex_state = 110}, + [7505] = {.lex_state = 178, .external_lex_state = 110}, + [7506] = {.lex_state = 178, .external_lex_state = 110}, + [7507] = {.lex_state = 178, .external_lex_state = 110}, + [7508] = {.lex_state = 178, .external_lex_state = 110}, + [7509] = {.lex_state = 178, .external_lex_state = 110}, + [7510] = {.lex_state = 178, .external_lex_state = 110}, + [7511] = {.lex_state = 178, .external_lex_state = 110}, + [7512] = {.lex_state = 178, .external_lex_state = 110}, + [7513] = {.lex_state = 178, .external_lex_state = 110}, + [7514] = {.lex_state = 178, .external_lex_state = 110}, + [7515] = {.lex_state = 178, .external_lex_state = 110}, + [7516] = {.lex_state = 178, .external_lex_state = 110}, + [7517] = {.lex_state = 178, .external_lex_state = 110}, + [7518] = {.lex_state = 178, .external_lex_state = 110}, + [7519] = {.lex_state = 178, .external_lex_state = 110}, + [7520] = {.lex_state = 178, .external_lex_state = 110}, + [7521] = {.lex_state = 178, .external_lex_state = 110}, + [7522] = {.lex_state = 178, .external_lex_state = 110}, + [7523] = {.lex_state = 178, .external_lex_state = 110}, + [7524] = {.lex_state = 178, .external_lex_state = 110}, + [7525] = {.lex_state = 178, .external_lex_state = 110}, + [7526] = {.lex_state = 178, .external_lex_state = 110}, + [7527] = {.lex_state = 178, .external_lex_state = 110}, + [7528] = {.lex_state = 178, .external_lex_state = 110}, + [7529] = {.lex_state = 178, .external_lex_state = 110}, + [7530] = {.lex_state = 178, .external_lex_state = 110}, + [7531] = {.lex_state = 178, .external_lex_state = 110}, + [7532] = {.lex_state = 178, .external_lex_state = 110}, + [7533] = {.lex_state = 178, .external_lex_state = 110}, + [7534] = {.lex_state = 178, .external_lex_state = 110}, + [7535] = {.lex_state = 178, .external_lex_state = 110}, + [7536] = {.lex_state = 178, .external_lex_state = 110}, + [7537] = {.lex_state = 178, .external_lex_state = 110}, + [7538] = {.lex_state = 178, .external_lex_state = 110}, + [7539] = {.lex_state = 178, .external_lex_state = 110}, + [7540] = {.lex_state = 178, .external_lex_state = 110}, + [7541] = {.lex_state = 178, .external_lex_state = 110}, + [7542] = {.lex_state = 178, .external_lex_state = 110}, + [7543] = {.lex_state = 178, .external_lex_state = 110}, + [7544] = {.lex_state = 178, .external_lex_state = 110}, + [7545] = {.lex_state = 178, .external_lex_state = 110}, + [7546] = {.lex_state = 178, .external_lex_state = 110}, + [7547] = {.lex_state = 178, .external_lex_state = 110}, + [7548] = {.lex_state = 178, .external_lex_state = 110}, + [7549] = {.lex_state = 178, .external_lex_state = 110}, + [7550] = {.lex_state = 178, .external_lex_state = 110}, + [7551] = {.lex_state = 178, .external_lex_state = 110}, + [7552] = {.lex_state = 178, .external_lex_state = 110}, + [7553] = {.lex_state = 178, .external_lex_state = 110}, + [7554] = {.lex_state = 178, .external_lex_state = 110}, + [7555] = {.lex_state = 178, .external_lex_state = 110}, + [7556] = {.lex_state = 178, .external_lex_state = 110}, + [7557] = {.lex_state = 178, .external_lex_state = 110}, + [7558] = {.lex_state = 178, .external_lex_state = 110}, + [7559] = {.lex_state = 178, .external_lex_state = 110}, + [7560] = {.lex_state = 178, .external_lex_state = 110}, + [7561] = {.lex_state = 178, .external_lex_state = 110}, + [7562] = {.lex_state = 178, .external_lex_state = 110}, + [7563] = {.lex_state = 178, .external_lex_state = 110}, + [7564] = {.lex_state = 178, .external_lex_state = 110}, + [7565] = {.lex_state = 178, .external_lex_state = 110}, + [7566] = {.lex_state = 178, .external_lex_state = 110}, + [7567] = {.lex_state = 178, .external_lex_state = 110}, + [7568] = {.lex_state = 178, .external_lex_state = 110}, + [7569] = {.lex_state = 178, .external_lex_state = 110}, + [7570] = {.lex_state = 178, .external_lex_state = 110}, + [7571] = {.lex_state = 178, .external_lex_state = 110}, + [7572] = {.lex_state = 178, .external_lex_state = 110}, + [7573] = {.lex_state = 178, .external_lex_state = 110}, + [7574] = {.lex_state = 178, .external_lex_state = 110}, + [7575] = {.lex_state = 178, .external_lex_state = 110}, + [7576] = {.lex_state = 178, .external_lex_state = 110}, + [7577] = {.lex_state = 178, .external_lex_state = 110}, + [7578] = {.lex_state = 178, .external_lex_state = 110}, + [7579] = {.lex_state = 178, .external_lex_state = 110}, + [7580] = {.lex_state = 178, .external_lex_state = 110}, + [7581] = {.lex_state = 178, .external_lex_state = 110}, + [7582] = {.lex_state = 178, .external_lex_state = 110}, + [7583] = {.lex_state = 178, .external_lex_state = 110}, + [7584] = {.lex_state = 178, .external_lex_state = 110}, + [7585] = {.lex_state = 178, .external_lex_state = 110}, + [7586] = {.lex_state = 178, .external_lex_state = 110}, + [7587] = {.lex_state = 178, .external_lex_state = 110}, + [7588] = {.lex_state = 178, .external_lex_state = 110}, + [7589] = {.lex_state = 178, .external_lex_state = 110}, + [7590] = {.lex_state = 178, .external_lex_state = 110}, + [7591] = {.lex_state = 178, .external_lex_state = 110}, + [7592] = {.lex_state = 178, .external_lex_state = 110}, + [7593] = {.lex_state = 178, .external_lex_state = 110}, + [7594] = {.lex_state = 178, .external_lex_state = 110}, + [7595] = {.lex_state = 178, .external_lex_state = 110}, + [7596] = {.lex_state = 178, .external_lex_state = 110}, + [7597] = {.lex_state = 178, .external_lex_state = 110}, + [7598] = {.lex_state = 178, .external_lex_state = 110}, + [7599] = {.lex_state = 178, .external_lex_state = 110}, + [7600] = {.lex_state = 178, .external_lex_state = 110}, + [7601] = {.lex_state = 178, .external_lex_state = 110}, + [7602] = {.lex_state = 178, .external_lex_state = 110}, + [7603] = {.lex_state = 178, .external_lex_state = 110}, + [7604] = {.lex_state = 178, .external_lex_state = 110}, + [7605] = {.lex_state = 178, .external_lex_state = 110}, + [7606] = {.lex_state = 178, .external_lex_state = 110}, + [7607] = {.lex_state = 178, .external_lex_state = 110}, + [7608] = {.lex_state = 178, .external_lex_state = 110}, + [7609] = {.lex_state = 178, .external_lex_state = 110}, + [7610] = {.lex_state = 178, .external_lex_state = 110}, + [7611] = {.lex_state = 178, .external_lex_state = 110}, + [7612] = {.lex_state = 178, .external_lex_state = 110}, + [7613] = {.lex_state = 178, .external_lex_state = 110}, + [7614] = {.lex_state = 178, .external_lex_state = 110}, + [7615] = {.lex_state = 178, .external_lex_state = 110}, + [7616] = {.lex_state = 178, .external_lex_state = 110}, + [7617] = {.lex_state = 178, .external_lex_state = 110}, + [7618] = {.lex_state = 178, .external_lex_state = 110}, + [7619] = {.lex_state = 178, .external_lex_state = 110}, + [7620] = {.lex_state = 178, .external_lex_state = 110}, + [7621] = {.lex_state = 178, .external_lex_state = 110}, + [7622] = {.lex_state = 178, .external_lex_state = 110}, + [7623] = {.lex_state = 178, .external_lex_state = 110}, + [7624] = {.lex_state = 178, .external_lex_state = 110}, + [7625] = {.lex_state = 178, .external_lex_state = 110}, + [7626] = {.lex_state = 178, .external_lex_state = 110}, + [7627] = {.lex_state = 178, .external_lex_state = 110}, + [7628] = {.lex_state = 178, .external_lex_state = 110}, + [7629] = {.lex_state = 178, .external_lex_state = 110}, + [7630] = {.lex_state = 178, .external_lex_state = 110}, + [7631] = {.lex_state = 178, .external_lex_state = 110}, + [7632] = {.lex_state = 178, .external_lex_state = 110}, + [7633] = {.lex_state = 178, .external_lex_state = 110}, + [7634] = {.lex_state = 178, .external_lex_state = 110}, + [7635] = {.lex_state = 178, .external_lex_state = 110}, + [7636] = {.lex_state = 178, .external_lex_state = 110}, + [7637] = {.lex_state = 178, .external_lex_state = 110}, + [7638] = {.lex_state = 178, .external_lex_state = 110}, + [7639] = {.lex_state = 178, .external_lex_state = 110}, + [7640] = {.lex_state = 178, .external_lex_state = 110}, + [7641] = {.lex_state = 178, .external_lex_state = 110}, + [7642] = {.lex_state = 178, .external_lex_state = 110}, + [7643] = {.lex_state = 178, .external_lex_state = 110}, + [7644] = {.lex_state = 178, .external_lex_state = 110}, + [7645] = {.lex_state = 178, .external_lex_state = 110}, + [7646] = {.lex_state = 178, .external_lex_state = 110}, + [7647] = {.lex_state = 178, .external_lex_state = 110}, + [7648] = {.lex_state = 178, .external_lex_state = 110}, + [7649] = {.lex_state = 178, .external_lex_state = 110}, + [7650] = {.lex_state = 178, .external_lex_state = 110}, + [7651] = {.lex_state = 178, .external_lex_state = 110}, + [7652] = {.lex_state = 178, .external_lex_state = 110}, + [7653] = {.lex_state = 178, .external_lex_state = 110}, + [7654] = {.lex_state = 178, .external_lex_state = 110}, + [7655] = {.lex_state = 178, .external_lex_state = 110}, + [7656] = {.lex_state = 178, .external_lex_state = 110}, + [7657] = {.lex_state = 178, .external_lex_state = 110}, + [7658] = {.lex_state = 178, .external_lex_state = 110}, + [7659] = {.lex_state = 178, .external_lex_state = 110}, + [7660] = {.lex_state = 178, .external_lex_state = 110}, + [7661] = {.lex_state = 178, .external_lex_state = 110}, + [7662] = {.lex_state = 178, .external_lex_state = 110}, + [7663] = {.lex_state = 178, .external_lex_state = 110}, + [7664] = {.lex_state = 178, .external_lex_state = 110}, + [7665] = {.lex_state = 178, .external_lex_state = 110}, + [7666] = {.lex_state = 178, .external_lex_state = 110}, + [7667] = {.lex_state = 178, .external_lex_state = 99}, + [7668] = {.lex_state = 178, .external_lex_state = 99}, + [7669] = {.lex_state = 178, .external_lex_state = 110}, + [7670] = {.lex_state = 178, .external_lex_state = 111}, + [7671] = {.lex_state = 178, .external_lex_state = 111}, + [7672] = {.lex_state = 178, .external_lex_state = 99}, + [7673] = {.lex_state = 178, .external_lex_state = 110}, + [7674] = {.lex_state = 178, .external_lex_state = 110}, + [7675] = {.lex_state = 178, .external_lex_state = 110}, + [7676] = {.lex_state = 178, .external_lex_state = 110}, + [7677] = {.lex_state = 178, .external_lex_state = 110}, + [7678] = {.lex_state = 178, .external_lex_state = 99}, + [7679] = {.lex_state = 178, .external_lex_state = 110}, + [7680] = {.lex_state = 178, .external_lex_state = 110}, + [7681] = {.lex_state = 178, .external_lex_state = 110}, + [7682] = {.lex_state = 178, .external_lex_state = 110}, + [7683] = {.lex_state = 178, .external_lex_state = 110}, + [7684] = {.lex_state = 178, .external_lex_state = 110}, + [7685] = {.lex_state = 178, .external_lex_state = 110}, + [7686] = {.lex_state = 178, .external_lex_state = 110}, + [7687] = {.lex_state = 178, .external_lex_state = 99}, + [7688] = {.lex_state = 178, .external_lex_state = 110}, + [7689] = {.lex_state = 178, .external_lex_state = 110}, + [7690] = {.lex_state = 178, .external_lex_state = 110}, + [7691] = {.lex_state = 178, .external_lex_state = 110}, + [7692] = {.lex_state = 178, .external_lex_state = 110}, + [7693] = {.lex_state = 178, .external_lex_state = 110}, + [7694] = {.lex_state = 178, .external_lex_state = 110}, + [7695] = {.lex_state = 178, .external_lex_state = 99}, + [7696] = {.lex_state = 178, .external_lex_state = 110}, + [7697] = {.lex_state = 178, .external_lex_state = 99}, + [7698] = {.lex_state = 188, .external_lex_state = 113}, + [7699] = {.lex_state = 188, .external_lex_state = 113}, + [7700] = {.lex_state = 178, .external_lex_state = 110}, + [7701] = {.lex_state = 178, .external_lex_state = 99}, + [7702] = {.lex_state = 188, .external_lex_state = 113}, + [7703] = {.lex_state = 178, .external_lex_state = 112}, + [7704] = {.lex_state = 188, .external_lex_state = 113}, + [7705] = {.lex_state = 178, .external_lex_state = 110}, + [7706] = {.lex_state = 188, .external_lex_state = 113}, + [7707] = {.lex_state = 178, .external_lex_state = 112}, + [7708] = {.lex_state = 188, .external_lex_state = 113}, + [7709] = {.lex_state = 178, .external_lex_state = 110}, + [7710] = {.lex_state = 178, .external_lex_state = 110}, + [7711] = {.lex_state = 187, .external_lex_state = 99}, + [7712] = {.lex_state = 178, .external_lex_state = 110}, + [7713] = {.lex_state = 178, .external_lex_state = 110}, + [7714] = {.lex_state = 178, .external_lex_state = 110}, + [7715] = {.lex_state = 187, .external_lex_state = 99}, + [7716] = {.lex_state = 178, .external_lex_state = 110}, + [7717] = {.lex_state = 178, .external_lex_state = 110}, + [7718] = {.lex_state = 187, .external_lex_state = 99}, + [7719] = {.lex_state = 178, .external_lex_state = 110}, + [7720] = {.lex_state = 178, .external_lex_state = 110}, + [7721] = {.lex_state = 178, .external_lex_state = 110}, + [7722] = {.lex_state = 178, .external_lex_state = 110}, + [7723] = {.lex_state = 178, .external_lex_state = 110}, + [7724] = {.lex_state = 178, .external_lex_state = 110}, + [7725] = {.lex_state = 178, .external_lex_state = 110}, + [7726] = {.lex_state = 178, .external_lex_state = 110}, + [7727] = {.lex_state = 178, .external_lex_state = 110}, + [7728] = {.lex_state = 178, .external_lex_state = 110}, + [7729] = {.lex_state = 187, .external_lex_state = 113}, + [7730] = {.lex_state = 178, .external_lex_state = 110}, + [7731] = {.lex_state = 178, .external_lex_state = 110}, + [7732] = {.lex_state = 178, .external_lex_state = 110}, + [7733] = {.lex_state = 178, .external_lex_state = 110}, + [7734] = {.lex_state = 188, .external_lex_state = 113}, + [7735] = {.lex_state = 178, .external_lex_state = 110}, + [7736] = {.lex_state = 178, .external_lex_state = 110}, + [7737] = {.lex_state = 187, .external_lex_state = 113}, + [7738] = {.lex_state = 178, .external_lex_state = 110}, + [7739] = {.lex_state = 178, .external_lex_state = 110}, + [7740] = {.lex_state = 178, .external_lex_state = 110}, + [7741] = {.lex_state = 178, .external_lex_state = 110}, + [7742] = {.lex_state = 178, .external_lex_state = 110}, + [7743] = {.lex_state = 178, .external_lex_state = 110}, + [7744] = {.lex_state = 178, .external_lex_state = 110}, + [7745] = {.lex_state = 178, .external_lex_state = 110}, + [7746] = {.lex_state = 178, .external_lex_state = 110}, + [7747] = {.lex_state = 178, .external_lex_state = 110}, + [7748] = {.lex_state = 178, .external_lex_state = 110}, + [7749] = {.lex_state = 178, .external_lex_state = 110}, + [7750] = {.lex_state = 178, .external_lex_state = 110}, + [7751] = {.lex_state = 178, .external_lex_state = 110}, + [7752] = {.lex_state = 178, .external_lex_state = 110}, + [7753] = {.lex_state = 178, .external_lex_state = 110}, + [7754] = {.lex_state = 178, .external_lex_state = 110}, + [7755] = {.lex_state = 178, .external_lex_state = 110}, + [7756] = {.lex_state = 178, .external_lex_state = 110}, + [7757] = {.lex_state = 178, .external_lex_state = 110}, + [7758] = {.lex_state = 178, .external_lex_state = 110}, + [7759] = {.lex_state = 178, .external_lex_state = 110}, + [7760] = {.lex_state = 178, .external_lex_state = 110}, + [7761] = {.lex_state = 178, .external_lex_state = 110}, + [7762] = {.lex_state = 178, .external_lex_state = 110}, + [7763] = {.lex_state = 178, .external_lex_state = 110}, + [7764] = {.lex_state = 178, .external_lex_state = 110}, + [7765] = {.lex_state = 178, .external_lex_state = 110}, + [7766] = {.lex_state = 178, .external_lex_state = 110}, + [7767] = {.lex_state = 178, .external_lex_state = 110}, + [7768] = {.lex_state = 178, .external_lex_state = 110}, + [7769] = {.lex_state = 178, .external_lex_state = 110}, + [7770] = {.lex_state = 187, .external_lex_state = 113}, + [7771] = {.lex_state = 178, .external_lex_state = 110}, + [7772] = {.lex_state = 188, .external_lex_state = 99}, + [7773] = {.lex_state = 188, .external_lex_state = 99}, + [7774] = {.lex_state = 188, .external_lex_state = 99}, + [7775] = {.lex_state = 178, .external_lex_state = 110}, + [7776] = {.lex_state = 188, .external_lex_state = 99}, + [7777] = {.lex_state = 188, .external_lex_state = 99}, + [7778] = {.lex_state = 178, .external_lex_state = 110}, + [7779] = {.lex_state = 178, .external_lex_state = 110}, + [7780] = {.lex_state = 178, .external_lex_state = 110}, + [7781] = {.lex_state = 187, .external_lex_state = 113}, + [7782] = {.lex_state = 187, .external_lex_state = 113}, + [7783] = {.lex_state = 187, .external_lex_state = 113}, + [7784] = {.lex_state = 178, .external_lex_state = 110}, + [7785] = {.lex_state = 178, .external_lex_state = 110}, + [7786] = {.lex_state = 178, .external_lex_state = 110}, + [7787] = {.lex_state = 178, .external_lex_state = 110}, + [7788] = {.lex_state = 178, .external_lex_state = 110}, + [7789] = {.lex_state = 187, .external_lex_state = 99}, + [7790] = {.lex_state = 187, .external_lex_state = 99}, + [7791] = {.lex_state = 178, .external_lex_state = 110}, + [7792] = {.lex_state = 187, .external_lex_state = 113}, + [7793] = {.lex_state = 187, .external_lex_state = 113}, + [7794] = {.lex_state = 178, .external_lex_state = 110}, + [7795] = {.lex_state = 178, .external_lex_state = 110}, + [7796] = {.lex_state = 178, .external_lex_state = 110}, + [7797] = {.lex_state = 187, .external_lex_state = 99}, + [7798] = {.lex_state = 187, .external_lex_state = 113}, + [7799] = {.lex_state = 187, .external_lex_state = 113}, + [7800] = {.lex_state = 187, .external_lex_state = 113}, + [7801] = {.lex_state = 187, .external_lex_state = 113}, + [7802] = {.lex_state = 187, .external_lex_state = 113}, + [7803] = {.lex_state = 187, .external_lex_state = 113}, + [7804] = {.lex_state = 187, .external_lex_state = 113}, + [7805] = {.lex_state = 187, .external_lex_state = 113}, + [7806] = {.lex_state = 187, .external_lex_state = 113}, + [7807] = {.lex_state = 187, .external_lex_state = 113}, + [7808] = {.lex_state = 187, .external_lex_state = 113}, + [7809] = {.lex_state = 187, .external_lex_state = 113}, + [7810] = {.lex_state = 187, .external_lex_state = 113}, + [7811] = {.lex_state = 188, .external_lex_state = 99}, + [7812] = {.lex_state = 187, .external_lex_state = 113}, + [7813] = {.lex_state = 187, .external_lex_state = 113}, + [7814] = {.lex_state = 187, .external_lex_state = 113}, + [7815] = {.lex_state = 187, .external_lex_state = 113}, + [7816] = {.lex_state = 188, .external_lex_state = 114}, + [7817] = {.lex_state = 188, .external_lex_state = 99}, + [7818] = {.lex_state = 188, .external_lex_state = 114}, + [7819] = {.lex_state = 188, .external_lex_state = 114}, + [7820] = {.lex_state = 188, .external_lex_state = 114}, + [7821] = {.lex_state = 187, .external_lex_state = 113}, + [7822] = {.lex_state = 187, .external_lex_state = 113}, + [7823] = {.lex_state = 187, .external_lex_state = 113}, + [7824] = {.lex_state = 187, .external_lex_state = 113}, + [7825] = {.lex_state = 187, .external_lex_state = 113}, + [7826] = {.lex_state = 188, .external_lex_state = 114}, + [7827] = {.lex_state = 187, .external_lex_state = 113}, + [7828] = {.lex_state = 187, .external_lex_state = 113}, + [7829] = {.lex_state = 187, .external_lex_state = 113}, + [7830] = {.lex_state = 188, .external_lex_state = 114}, + [7831] = {.lex_state = 187, .external_lex_state = 99}, + [7832] = {.lex_state = 187, .external_lex_state = 99}, + [7833] = {.lex_state = 187, .external_lex_state = 99}, + [7834] = {.lex_state = 187, .external_lex_state = 99}, + [7835] = {.lex_state = 187, .external_lex_state = 99}, + [7836] = {.lex_state = 187, .external_lex_state = 99}, + [7837] = {.lex_state = 187, .external_lex_state = 99}, + [7838] = {.lex_state = 187, .external_lex_state = 99}, + [7839] = {.lex_state = 187, .external_lex_state = 99}, + [7840] = {.lex_state = 187, .external_lex_state = 99}, + [7841] = {.lex_state = 187, .external_lex_state = 99}, + [7842] = {.lex_state = 187, .external_lex_state = 99}, + [7843] = {.lex_state = 187, .external_lex_state = 99}, + [7844] = {.lex_state = 187, .external_lex_state = 99}, + [7845] = {.lex_state = 187, .external_lex_state = 99}, + [7846] = {.lex_state = 187, .external_lex_state = 99}, + [7847] = {.lex_state = 187, .external_lex_state = 99}, + [7848] = {.lex_state = 188, .external_lex_state = 115}, + [7849] = {.lex_state = 187, .external_lex_state = 114}, + [7850] = {.lex_state = 187, .external_lex_state = 114}, + [7851] = {.lex_state = 38, .external_lex_state = 99}, [7852] = {.lex_state = 38, .external_lex_state = 99}, - [7853] = {.lex_state = 185, .external_lex_state = 114}, - [7854] = {.lex_state = 186, .external_lex_state = 115}, - [7855] = {.lex_state = 185, .external_lex_state = 114}, - [7856] = {.lex_state = 38, .external_lex_state = 99}, - [7857] = {.lex_state = 185, .external_lex_state = 114}, - [7858] = {.lex_state = 177, .external_lex_state = 113}, - [7859] = {.lex_state = 185, .external_lex_state = 114}, - [7860] = {.lex_state = 38, .external_lex_state = 99}, - [7861] = {.lex_state = 38, .external_lex_state = 99}, - [7862] = {.lex_state = 185, .external_lex_state = 114}, - [7863] = {.lex_state = 38, .external_lex_state = 99}, - [7864] = {.lex_state = 185, .external_lex_state = 114}, - [7865] = {.lex_state = 49, .external_lex_state = 99}, - [7866] = {.lex_state = 38, .external_lex_state = 99}, - [7867] = {.lex_state = 185, .external_lex_state = 114}, - [7868] = {.lex_state = 49, .external_lex_state = 99}, + [7853] = {.lex_state = 188, .external_lex_state = 115}, + [7854] = {.lex_state = 38, .external_lex_state = 99}, + [7855] = {.lex_state = 38, .external_lex_state = 99}, + [7856] = {.lex_state = 188, .external_lex_state = 115}, + [7857] = {.lex_state = 187, .external_lex_state = 114}, + [7858] = {.lex_state = 38, .external_lex_state = 99}, + [7859] = {.lex_state = 38, .external_lex_state = 99}, + [7860] = {.lex_state = 187, .external_lex_state = 114}, + [7861] = {.lex_state = 187, .external_lex_state = 114}, + [7862] = {.lex_state = 38, .external_lex_state = 99}, + [7863] = {.lex_state = 187, .external_lex_state = 114}, + [7864] = {.lex_state = 188, .external_lex_state = 114}, + [7865] = {.lex_state = 188, .external_lex_state = 115}, + [7866] = {.lex_state = 188, .external_lex_state = 115}, + [7867] = {.lex_state = 187, .external_lex_state = 114}, + [7868] = {.lex_state = 187, .external_lex_state = 114}, [7869] = {.lex_state = 38, .external_lex_state = 99}, - [7870] = {.lex_state = 185, .external_lex_state = 114}, - [7871] = {.lex_state = 38, .external_lex_state = 99}, + [7870] = {.lex_state = 38, .external_lex_state = 99}, + [7871] = {.lex_state = 187, .external_lex_state = 114}, [7872] = {.lex_state = 185, .external_lex_state = 113}, - [7873] = {.lex_state = 38, .external_lex_state = 99}, - [7874] = {.lex_state = 185, .external_lex_state = 114}, - [7875] = {.lex_state = 38, .external_lex_state = 99}, - [7876] = {.lex_state = 38, .external_lex_state = 99}, - [7877] = {.lex_state = 185, .external_lex_state = 114}, - [7878] = {.lex_state = 185, .external_lex_state = 114}, - [7879] = {.lex_state = 177, .external_lex_state = 99}, - [7880] = {.lex_state = 177, .external_lex_state = 99}, - [7881] = {.lex_state = 177, .external_lex_state = 99}, - [7882] = {.lex_state = 177, .external_lex_state = 99}, - [7883] = {.lex_state = 185, .external_lex_state = 99}, - [7884] = {.lex_state = 185, .external_lex_state = 99}, - [7885] = {.lex_state = 185, .external_lex_state = 99}, - [7886] = {.lex_state = 177, .external_lex_state = 99}, - [7887] = {.lex_state = 185, .external_lex_state = 115}, - [7888] = {.lex_state = 185, .external_lex_state = 114}, - [7889] = {.lex_state = 186, .external_lex_state = 115}, - [7890] = {.lex_state = 185, .external_lex_state = 115}, - [7891] = {.lex_state = 185, .external_lex_state = 115}, - [7892] = {.lex_state = 185, .external_lex_state = 115}, - [7893] = {.lex_state = 185, .external_lex_state = 115}, - [7894] = {.lex_state = 185, .external_lex_state = 99}, - [7895] = {.lex_state = 185, .external_lex_state = 115}, - [7896] = {.lex_state = 185, .external_lex_state = 99}, - [7897] = {.lex_state = 177, .external_lex_state = 99}, - [7898] = {.lex_state = 177, .external_lex_state = 99}, - [7899] = {.lex_state = 185, .external_lex_state = 99}, - [7900] = {.lex_state = 185, .external_lex_state = 115}, - [7901] = {.lex_state = 177, .external_lex_state = 113}, - [7902] = {.lex_state = 185, .external_lex_state = 114}, - [7903] = {.lex_state = 181, .external_lex_state = 113}, - [7904] = {.lex_state = 185, .external_lex_state = 114}, - [7905] = {.lex_state = 185, .external_lex_state = 114}, - [7906] = {.lex_state = 185, .external_lex_state = 114}, - [7907] = {.lex_state = 185, .external_lex_state = 114}, - [7908] = {.lex_state = 185, .external_lex_state = 114}, - [7909] = {.lex_state = 181, .external_lex_state = 113}, - [7910] = {.lex_state = 177, .external_lex_state = 99}, - [7911] = {.lex_state = 185, .external_lex_state = 113}, - [7912] = {.lex_state = 181, .external_lex_state = 113}, - [7913] = {.lex_state = 181, .external_lex_state = 113}, - [7914] = {.lex_state = 185, .external_lex_state = 115}, - [7915] = {.lex_state = 185, .external_lex_state = 99}, - [7916] = {.lex_state = 185, .external_lex_state = 99}, - [7917] = {.lex_state = 33, .external_lex_state = 116}, - [7918] = {.lex_state = 185, .external_lex_state = 115}, - [7919] = {.lex_state = 185, .external_lex_state = 115}, - [7920] = {.lex_state = 185, .external_lex_state = 115}, - [7921] = {.lex_state = 33, .external_lex_state = 116}, - [7922] = {.lex_state = 33, .external_lex_state = 116}, - [7923] = {.lex_state = 33, .external_lex_state = 116}, - [7924] = {.lex_state = 33, .external_lex_state = 116}, - [7925] = {.lex_state = 177, .external_lex_state = 113}, - [7926] = {.lex_state = 185, .external_lex_state = 115}, - [7927] = {.lex_state = 185, .external_lex_state = 115}, - [7928] = {.lex_state = 177, .external_lex_state = 113}, - [7929] = {.lex_state = 185, .external_lex_state = 115}, - [7930] = {.lex_state = 185, .external_lex_state = 115}, - [7931] = {.lex_state = 33, .external_lex_state = 116}, - [7932] = {.lex_state = 177, .external_lex_state = 99}, - [7933] = {.lex_state = 177, .external_lex_state = 99}, - [7934] = {.lex_state = 33, .external_lex_state = 116}, - [7935] = {.lex_state = 185, .external_lex_state = 115}, - [7936] = {.lex_state = 177, .external_lex_state = 113}, - [7937] = {.lex_state = 177, .external_lex_state = 113}, - [7938] = {.lex_state = 33, .external_lex_state = 116}, - [7939] = {.lex_state = 185, .external_lex_state = 115}, - [7940] = {.lex_state = 177, .external_lex_state = 113}, - [7941] = {.lex_state = 185, .external_lex_state = 115}, - [7942] = {.lex_state = 33, .external_lex_state = 116}, - [7943] = {.lex_state = 33, .external_lex_state = 116}, - [7944] = {.lex_state = 177, .external_lex_state = 113}, - [7945] = {.lex_state = 177, .external_lex_state = 113}, - [7946] = {.lex_state = 33, .external_lex_state = 116}, - [7947] = {.lex_state = 177, .external_lex_state = 113}, - [7948] = {.lex_state = 177, .external_lex_state = 113}, - [7949] = {.lex_state = 185, .external_lex_state = 115}, - [7950] = {.lex_state = 185, .external_lex_state = 115}, - [7951] = {.lex_state = 177, .external_lex_state = 113}, - [7952] = {.lex_state = 33, .external_lex_state = 116}, - [7953] = {.lex_state = 185, .external_lex_state = 115}, - [7954] = {.lex_state = 185, .external_lex_state = 115}, - [7955] = {.lex_state = 185, .external_lex_state = 115}, - [7956] = {.lex_state = 177, .external_lex_state = 113}, - [7957] = {.lex_state = 185, .external_lex_state = 115}, - [7958] = {.lex_state = 185, .external_lex_state = 115}, - [7959] = {.lex_state = 177, .external_lex_state = 113}, - [7960] = {.lex_state = 33, .external_lex_state = 116}, - [7961] = {.lex_state = 177, .external_lex_state = 113}, - [7962] = {.lex_state = 177, .external_lex_state = 113}, - [7963] = {.lex_state = 33, .external_lex_state = 116}, - [7964] = {.lex_state = 177, .external_lex_state = 113}, - [7965] = {.lex_state = 65, .external_lex_state = 99}, - [7966] = {.lex_state = 65, .external_lex_state = 99}, - [7967] = {.lex_state = 185, .external_lex_state = 99}, - [7968] = {.lex_state = 186, .external_lex_state = 117}, - [7969] = {.lex_state = 65, .external_lex_state = 99}, - [7970] = {.lex_state = 185, .external_lex_state = 115}, - [7971] = {.lex_state = 185, .external_lex_state = 99}, - [7972] = {.lex_state = 185, .external_lex_state = 99}, - [7973] = {.lex_state = 65, .external_lex_state = 99}, - [7974] = {.lex_state = 177, .external_lex_state = 113}, - [7975] = {.lex_state = 185, .external_lex_state = 99}, - [7976] = {.lex_state = 185, .external_lex_state = 99}, - [7977] = {.lex_state = 65, .external_lex_state = 99}, - [7978] = {.lex_state = 185, .external_lex_state = 115}, - [7979] = {.lex_state = 185, .external_lex_state = 115}, - [7980] = {.lex_state = 185, .external_lex_state = 115}, - [7981] = {.lex_state = 65, .external_lex_state = 99}, - [7982] = {.lex_state = 179, .external_lex_state = 113}, - [7983] = {.lex_state = 185, .external_lex_state = 115}, - [7984] = {.lex_state = 185, .external_lex_state = 99}, - [7985] = {.lex_state = 186, .external_lex_state = 117}, - [7986] = {.lex_state = 186, .external_lex_state = 117}, - [7987] = {.lex_state = 185, .external_lex_state = 99}, - [7988] = {.lex_state = 177, .external_lex_state = 113}, - [7989] = {.lex_state = 177, .external_lex_state = 113}, - [7990] = {.lex_state = 185, .external_lex_state = 115}, - [7991] = {.lex_state = 186, .external_lex_state = 117}, - [7992] = {.lex_state = 185, .external_lex_state = 99}, - [7993] = {.lex_state = 179, .external_lex_state = 113}, - [7994] = {.lex_state = 185, .external_lex_state = 115}, - [7995] = {.lex_state = 177, .external_lex_state = 113}, - [7996] = {.lex_state = 186, .external_lex_state = 117}, - [7997] = {.lex_state = 185, .external_lex_state = 99}, - [7998] = {.lex_state = 177, .external_lex_state = 113}, - [7999] = {.lex_state = 65, .external_lex_state = 99}, - [8000] = {.lex_state = 185, .external_lex_state = 115}, - [8001] = {.lex_state = 65, .external_lex_state = 99}, - [8002] = {.lex_state = 177, .external_lex_state = 113}, - [8003] = {.lex_state = 177, .external_lex_state = 113}, - [8004] = {.lex_state = 177, .external_lex_state = 113}, - [8005] = {.lex_state = 177, .external_lex_state = 113}, - [8006] = {.lex_state = 177, .external_lex_state = 113}, - [8007] = {.lex_state = 177, .external_lex_state = 113}, - [8008] = {.lex_state = 177, .external_lex_state = 118}, - [8009] = {.lex_state = 177, .external_lex_state = 113}, - [8010] = {.lex_state = 177, .external_lex_state = 113}, - [8011] = {.lex_state = 177, .external_lex_state = 118}, - [8012] = {.lex_state = 177, .external_lex_state = 113}, - [8013] = {.lex_state = 177, .external_lex_state = 113}, - [8014] = {.lex_state = 177, .external_lex_state = 113}, - [8015] = {.lex_state = 177, .external_lex_state = 118}, - [8016] = {.lex_state = 177, .external_lex_state = 113}, - [8017] = {.lex_state = 177, .external_lex_state = 113}, - [8018] = {.lex_state = 177, .external_lex_state = 113}, - [8019] = {.lex_state = 186, .external_lex_state = 117}, - [8020] = {.lex_state = 177, .external_lex_state = 113}, - [8021] = {.lex_state = 177, .external_lex_state = 113}, - [8022] = {.lex_state = 177, .external_lex_state = 113}, - [8023] = {.lex_state = 177, .external_lex_state = 118}, - [8024] = {.lex_state = 177, .external_lex_state = 113}, - [8025] = {.lex_state = 177, .external_lex_state = 113}, - [8026] = {.lex_state = 177, .external_lex_state = 113}, - [8027] = {.lex_state = 177, .external_lex_state = 113}, - [8028] = {.lex_state = 177, .external_lex_state = 113}, - [8029] = {.lex_state = 177, .external_lex_state = 113}, - [8030] = {.lex_state = 177, .external_lex_state = 118}, - [8031] = {.lex_state = 177, .external_lex_state = 113}, - [8032] = {.lex_state = 177, .external_lex_state = 113}, - [8033] = {.lex_state = 177, .external_lex_state = 113}, - [8034] = {.lex_state = 177, .external_lex_state = 113}, - [8035] = {.lex_state = 177, .external_lex_state = 113}, - [8036] = {.lex_state = 177, .external_lex_state = 113}, - [8037] = {.lex_state = 177, .external_lex_state = 113}, - [8038] = {.lex_state = 177, .external_lex_state = 118}, - [8039] = {.lex_state = 177, .external_lex_state = 118}, - [8040] = {.lex_state = 177, .external_lex_state = 113}, - [8041] = {.lex_state = 177, .external_lex_state = 113}, - [8042] = {.lex_state = 177, .external_lex_state = 113}, - [8043] = {.lex_state = 177, .external_lex_state = 113}, - [8044] = {.lex_state = 177, .external_lex_state = 113}, - [8045] = {.lex_state = 177, .external_lex_state = 113}, - [8046] = {.lex_state = 177, .external_lex_state = 113}, - [8047] = {.lex_state = 177, .external_lex_state = 118}, - [8048] = {.lex_state = 65, .external_lex_state = 99}, - [8049] = {.lex_state = 177, .external_lex_state = 113}, - [8050] = {.lex_state = 177, .external_lex_state = 113}, - [8051] = {.lex_state = 177, .external_lex_state = 113}, - [8052] = {.lex_state = 177, .external_lex_state = 113}, - [8053] = {.lex_state = 185, .external_lex_state = 114}, - [8054] = {.lex_state = 177, .external_lex_state = 113}, - [8055] = {.lex_state = 177, .external_lex_state = 118}, - [8056] = {.lex_state = 177, .external_lex_state = 113}, - [8057] = {.lex_state = 177, .external_lex_state = 113}, - [8058] = {.lex_state = 177, .external_lex_state = 113}, - [8059] = {.lex_state = 177, .external_lex_state = 113}, - [8060] = {.lex_state = 177, .external_lex_state = 113}, - [8061] = {.lex_state = 177, .external_lex_state = 118}, - [8062] = {.lex_state = 177, .external_lex_state = 113}, - [8063] = {.lex_state = 177, .external_lex_state = 118}, - [8064] = {.lex_state = 177, .external_lex_state = 113}, - [8065] = {.lex_state = 177, .external_lex_state = 118}, - [8066] = {.lex_state = 177, .external_lex_state = 113}, - [8067] = {.lex_state = 177, .external_lex_state = 113}, - [8068] = {.lex_state = 177, .external_lex_state = 113}, - [8069] = {.lex_state = 177, .external_lex_state = 118}, - [8070] = {.lex_state = 177, .external_lex_state = 113}, - [8071] = {.lex_state = 177, .external_lex_state = 113}, - [8072] = {.lex_state = 177, .external_lex_state = 113}, - [8073] = {.lex_state = 177, .external_lex_state = 113}, - [8074] = {.lex_state = 177, .external_lex_state = 113}, - [8075] = {.lex_state = 177, .external_lex_state = 113}, - [8076] = {.lex_state = 177, .external_lex_state = 113}, - [8077] = {.lex_state = 177, .external_lex_state = 113}, - [8078] = {.lex_state = 177, .external_lex_state = 113}, - [8079] = {.lex_state = 177, .external_lex_state = 113}, - [8080] = {.lex_state = 177, .external_lex_state = 113}, - [8081] = {.lex_state = 177, .external_lex_state = 113}, - [8082] = {.lex_state = 177, .external_lex_state = 118}, - [8083] = {.lex_state = 177, .external_lex_state = 113}, - [8084] = {.lex_state = 65, .external_lex_state = 99}, - [8085] = {.lex_state = 177, .external_lex_state = 113}, - [8086] = {.lex_state = 177, .external_lex_state = 113}, - [8087] = {.lex_state = 177, .external_lex_state = 113}, - [8088] = {.lex_state = 177, .external_lex_state = 113}, - [8089] = {.lex_state = 177, .external_lex_state = 113}, - [8090] = {.lex_state = 177, .external_lex_state = 113}, - [8091] = {.lex_state = 177, .external_lex_state = 113}, - [8092] = {.lex_state = 177, .external_lex_state = 113}, - [8093] = {.lex_state = 177, .external_lex_state = 114}, - [8094] = {.lex_state = 177, .external_lex_state = 113}, - [8095] = {.lex_state = 177, .external_lex_state = 113}, - [8096] = {.lex_state = 177, .external_lex_state = 113}, - [8097] = {.lex_state = 177, .external_lex_state = 113}, - [8098] = {.lex_state = 177, .external_lex_state = 113}, - [8099] = {.lex_state = 177, .external_lex_state = 113}, - [8100] = {.lex_state = 177, .external_lex_state = 113}, - [8101] = {.lex_state = 177, .external_lex_state = 113}, - [8102] = {.lex_state = 177, .external_lex_state = 113}, - [8103] = {.lex_state = 177, .external_lex_state = 113}, - [8104] = {.lex_state = 177, .external_lex_state = 113}, - [8105] = {.lex_state = 177, .external_lex_state = 113}, - [8106] = {.lex_state = 177, .external_lex_state = 113}, - [8107] = {.lex_state = 177, .external_lex_state = 113}, - [8108] = {.lex_state = 177, .external_lex_state = 113}, - [8109] = {.lex_state = 177, .external_lex_state = 118}, - [8110] = {.lex_state = 177, .external_lex_state = 113}, - [8111] = {.lex_state = 177, .external_lex_state = 113}, - [8112] = {.lex_state = 177, .external_lex_state = 113}, - [8113] = {.lex_state = 177, .external_lex_state = 113}, - [8114] = {.lex_state = 177, .external_lex_state = 113}, - [8115] = {.lex_state = 177, .external_lex_state = 113}, - [8116] = {.lex_state = 177, .external_lex_state = 113}, - [8117] = {.lex_state = 177, .external_lex_state = 113}, - [8118] = {.lex_state = 177, .external_lex_state = 113}, - [8119] = {.lex_state = 177, .external_lex_state = 113}, - [8120] = {.lex_state = 177, .external_lex_state = 113}, - [8121] = {.lex_state = 177, .external_lex_state = 113}, - [8122] = {.lex_state = 177, .external_lex_state = 113}, - [8123] = {.lex_state = 177, .external_lex_state = 113}, - [8124] = {.lex_state = 177, .external_lex_state = 113}, - [8125] = {.lex_state = 177, .external_lex_state = 113}, - [8126] = {.lex_state = 177, .external_lex_state = 113}, - [8127] = {.lex_state = 177, .external_lex_state = 113}, - [8128] = {.lex_state = 177, .external_lex_state = 113}, - [8129] = {.lex_state = 177, .external_lex_state = 113}, - [8130] = {.lex_state = 177, .external_lex_state = 113}, - [8131] = {.lex_state = 177, .external_lex_state = 113}, - [8132] = {.lex_state = 177, .external_lex_state = 113}, - [8133] = {.lex_state = 177, .external_lex_state = 113}, - [8134] = {.lex_state = 177, .external_lex_state = 113}, - [8135] = {.lex_state = 177, .external_lex_state = 113}, - [8136] = {.lex_state = 177, .external_lex_state = 113}, - [8137] = {.lex_state = 177, .external_lex_state = 113}, - [8138] = {.lex_state = 177, .external_lex_state = 113}, - [8139] = {.lex_state = 177, .external_lex_state = 113}, - [8140] = {.lex_state = 177, .external_lex_state = 113}, - [8141] = {.lex_state = 177, .external_lex_state = 113}, - [8142] = {.lex_state = 177, .external_lex_state = 113}, - [8143] = {.lex_state = 177, .external_lex_state = 113}, - [8144] = {.lex_state = 177, .external_lex_state = 113}, - [8145] = {.lex_state = 177, .external_lex_state = 113}, - [8146] = {.lex_state = 177, .external_lex_state = 113}, - [8147] = {.lex_state = 177, .external_lex_state = 113}, - [8148] = {.lex_state = 177, .external_lex_state = 113}, - [8149] = {.lex_state = 177, .external_lex_state = 113}, - [8150] = {.lex_state = 177, .external_lex_state = 118}, - [8151] = {.lex_state = 177, .external_lex_state = 113}, - [8152] = {.lex_state = 177, .external_lex_state = 113}, - [8153] = {.lex_state = 177, .external_lex_state = 113}, - [8154] = {.lex_state = 177, .external_lex_state = 113}, - [8155] = {.lex_state = 177, .external_lex_state = 113}, - [8156] = {.lex_state = 177, .external_lex_state = 113}, - [8157] = {.lex_state = 177, .external_lex_state = 113}, - [8158] = {.lex_state = 177, .external_lex_state = 113}, - [8159] = {.lex_state = 177, .external_lex_state = 113}, - [8160] = {.lex_state = 177, .external_lex_state = 113}, - [8161] = {.lex_state = 177, .external_lex_state = 113}, - [8162] = {.lex_state = 177, .external_lex_state = 113}, - [8163] = {.lex_state = 177, .external_lex_state = 113}, - [8164] = {.lex_state = 177, .external_lex_state = 113}, - [8165] = {.lex_state = 177, .external_lex_state = 113}, - [8166] = {.lex_state = 177, .external_lex_state = 113}, - [8167] = {.lex_state = 177, .external_lex_state = 113}, - [8168] = {.lex_state = 177, .external_lex_state = 113}, - [8169] = {.lex_state = 177, .external_lex_state = 113}, - [8170] = {.lex_state = 177, .external_lex_state = 118}, - [8171] = {.lex_state = 177, .external_lex_state = 113}, - [8172] = {.lex_state = 177, .external_lex_state = 113}, - [8173] = {.lex_state = 177, .external_lex_state = 113}, - [8174] = {.lex_state = 177, .external_lex_state = 113}, - [8175] = {.lex_state = 177, .external_lex_state = 113}, - [8176] = {.lex_state = 177, .external_lex_state = 113}, - [8177] = {.lex_state = 185, .external_lex_state = 99}, - [8178] = {.lex_state = 177, .external_lex_state = 113}, - [8179] = {.lex_state = 177, .external_lex_state = 113}, - [8180] = {.lex_state = 177, .external_lex_state = 113}, - [8181] = {.lex_state = 177, .external_lex_state = 113}, - [8182] = {.lex_state = 177, .external_lex_state = 118}, - [8183] = {.lex_state = 177, .external_lex_state = 113}, - [8184] = {.lex_state = 177, .external_lex_state = 113}, - [8185] = {.lex_state = 177, .external_lex_state = 113}, - [8186] = {.lex_state = 177, .external_lex_state = 113}, - [8187] = {.lex_state = 177, .external_lex_state = 113}, - [8188] = {.lex_state = 177, .external_lex_state = 113}, - [8189] = {.lex_state = 177, .external_lex_state = 113}, - [8190] = {.lex_state = 177, .external_lex_state = 113}, - [8191] = {.lex_state = 177, .external_lex_state = 113}, - [8192] = {.lex_state = 177, .external_lex_state = 113}, - [8193] = {.lex_state = 177, .external_lex_state = 113}, - [8194] = {.lex_state = 177, .external_lex_state = 113}, - [8195] = {.lex_state = 177, .external_lex_state = 113}, - [8196] = {.lex_state = 177, .external_lex_state = 113}, - [8197] = {.lex_state = 177, .external_lex_state = 113}, - [8198] = {.lex_state = 177, .external_lex_state = 113}, - [8199] = {.lex_state = 177, .external_lex_state = 113}, - [8200] = {.lex_state = 177, .external_lex_state = 113}, - [8201] = {.lex_state = 177, .external_lex_state = 113}, - [8202] = {.lex_state = 177, .external_lex_state = 113}, - [8203] = {.lex_state = 177, .external_lex_state = 118}, - [8204] = {.lex_state = 185, .external_lex_state = 114}, - [8205] = {.lex_state = 177, .external_lex_state = 113}, - [8206] = {.lex_state = 177, .external_lex_state = 118}, - [8207] = {.lex_state = 177, .external_lex_state = 113}, - [8208] = {.lex_state = 177, .external_lex_state = 113}, - [8209] = {.lex_state = 177, .external_lex_state = 113}, - [8210] = {.lex_state = 177, .external_lex_state = 113}, - [8211] = {.lex_state = 177, .external_lex_state = 113}, - [8212] = {.lex_state = 177, .external_lex_state = 113}, - [8213] = {.lex_state = 177, .external_lex_state = 113}, - [8214] = {.lex_state = 177, .external_lex_state = 113}, - [8215] = {.lex_state = 177, .external_lex_state = 113}, - [8216] = {.lex_state = 177, .external_lex_state = 113}, - [8217] = {.lex_state = 177, .external_lex_state = 113}, - [8218] = {.lex_state = 177, .external_lex_state = 113}, - [8219] = {.lex_state = 177, .external_lex_state = 113}, - [8220] = {.lex_state = 177, .external_lex_state = 113}, - [8221] = {.lex_state = 177, .external_lex_state = 113}, - [8222] = {.lex_state = 177, .external_lex_state = 113}, - [8223] = {.lex_state = 177, .external_lex_state = 113}, - [8224] = {.lex_state = 177, .external_lex_state = 113}, - [8225] = {.lex_state = 177, .external_lex_state = 113}, - [8226] = {.lex_state = 177, .external_lex_state = 113}, - [8227] = {.lex_state = 177, .external_lex_state = 118}, - [8228] = {.lex_state = 177, .external_lex_state = 118}, - [8229] = {.lex_state = 177, .external_lex_state = 113}, - [8230] = {.lex_state = 177, .external_lex_state = 113}, - [8231] = {.lex_state = 177, .external_lex_state = 113}, - [8232] = {.lex_state = 177, .external_lex_state = 113}, - [8233] = {.lex_state = 177, .external_lex_state = 113}, - [8234] = {.lex_state = 177, .external_lex_state = 113}, - [8235] = {.lex_state = 177, .external_lex_state = 113}, - [8236] = {.lex_state = 177, .external_lex_state = 113}, - [8237] = {.lex_state = 177, .external_lex_state = 113}, - [8238] = {.lex_state = 181, .external_lex_state = 114}, - [8239] = {.lex_state = 185, .external_lex_state = 114}, - [8240] = {.lex_state = 181, .external_lex_state = 114}, - [8241] = {.lex_state = 177, .external_lex_state = 99}, - [8242] = {.lex_state = 177, .external_lex_state = 99}, - [8243] = {.lex_state = 181, .external_lex_state = 114}, - [8244] = {.lex_state = 181, .external_lex_state = 114}, - [8245] = {.lex_state = 177, .external_lex_state = 114}, - [8246] = {.lex_state = 175, .external_lex_state = 99}, - [8247] = {.lex_state = 175, .external_lex_state = 99}, - [8248] = {.lex_state = 175, .external_lex_state = 99}, - [8249] = {.lex_state = 177, .external_lex_state = 114}, - [8250] = {.lex_state = 177, .external_lex_state = 99}, - [8251] = {.lex_state = 177, .external_lex_state = 114}, - [8252] = {.lex_state = 177, .external_lex_state = 114}, - [8253] = {.lex_state = 177, .external_lex_state = 114}, - [8254] = {.lex_state = 177, .external_lex_state = 114}, - [8255] = {.lex_state = 186, .external_lex_state = 116}, - [8256] = {.lex_state = 175, .external_lex_state = 99}, - [8257] = {.lex_state = 177, .external_lex_state = 114}, - [8258] = {.lex_state = 177, .external_lex_state = 114}, - [8259] = {.lex_state = 175, .external_lex_state = 99}, - [8260] = {.lex_state = 177, .external_lex_state = 114}, - [8261] = {.lex_state = 186, .external_lex_state = 116}, - [8262] = {.lex_state = 177, .external_lex_state = 114}, - [8263] = {.lex_state = 177, .external_lex_state = 114}, - [8264] = {.lex_state = 185, .external_lex_state = 115}, - [8265] = {.lex_state = 175, .external_lex_state = 99}, - [8266] = {.lex_state = 177, .external_lex_state = 114}, - [8267] = {.lex_state = 177, .external_lex_state = 115}, - [8268] = {.lex_state = 186, .external_lex_state = 116}, - [8269] = {.lex_state = 186, .external_lex_state = 116}, - [8270] = {.lex_state = 186, .external_lex_state = 116}, - [8271] = {.lex_state = 175, .external_lex_state = 99}, - [8272] = {.lex_state = 175, .external_lex_state = 99}, - [8273] = {.lex_state = 186, .external_lex_state = 99}, - [8274] = {.lex_state = 177, .external_lex_state = 114}, - [8275] = {.lex_state = 185, .external_lex_state = 115}, - [8276] = {.lex_state = 177, .external_lex_state = 114}, - [8277] = {.lex_state = 177, .external_lex_state = 114}, - [8278] = {.lex_state = 177, .external_lex_state = 114}, - [8279] = {.lex_state = 186, .external_lex_state = 117}, - [8280] = {.lex_state = 175, .external_lex_state = 99}, - [8281] = {.lex_state = 185, .external_lex_state = 117}, - [8282] = {.lex_state = 175, .external_lex_state = 99}, - [8283] = {.lex_state = 185, .external_lex_state = 117}, - [8284] = {.lex_state = 177, .external_lex_state = 114}, - [8285] = {.lex_state = 177, .external_lex_state = 114}, - [8286] = {.lex_state = 185, .external_lex_state = 117}, - [8287] = {.lex_state = 185, .external_lex_state = 117}, - [8288] = {.lex_state = 185, .external_lex_state = 117}, - [8289] = {.lex_state = 177, .external_lex_state = 99}, - [8290] = {.lex_state = 177, .external_lex_state = 114}, - [8291] = {.lex_state = 175, .external_lex_state = 99}, - [8292] = {.lex_state = 185, .external_lex_state = 117}, - [8293] = {.lex_state = 185, .external_lex_state = 117}, - [8294] = {.lex_state = 185, .external_lex_state = 117}, - [8295] = {.lex_state = 175, .external_lex_state = 99}, - [8296] = {.lex_state = 185, .external_lex_state = 117}, - [8297] = {.lex_state = 185, .external_lex_state = 117}, - [8298] = {.lex_state = 175, .external_lex_state = 99}, - [8299] = {.lex_state = 177, .external_lex_state = 99}, - [8300] = {.lex_state = 175, .external_lex_state = 99}, - [8301] = {.lex_state = 177, .external_lex_state = 114}, - [8302] = {.lex_state = 175, .external_lex_state = 99}, - [8303] = {.lex_state = 185, .external_lex_state = 115}, - [8304] = {.lex_state = 175, .external_lex_state = 99}, - [8305] = {.lex_state = 179, .external_lex_state = 114}, - [8306] = {.lex_state = 179, .external_lex_state = 114}, - [8307] = {.lex_state = 177, .external_lex_state = 114}, - [8308] = {.lex_state = 181, .external_lex_state = 115}, - [8309] = {.lex_state = 183, .external_lex_state = 99}, - [8310] = {.lex_state = 177, .external_lex_state = 115}, - [8311] = {.lex_state = 181, .external_lex_state = 115}, - [8312] = {.lex_state = 177, .external_lex_state = 114}, - [8313] = {.lex_state = 186, .external_lex_state = 116}, - [8314] = {.lex_state = 181, .external_lex_state = 115}, - [8315] = {.lex_state = 181, .external_lex_state = 115}, - [8316] = {.lex_state = 177, .external_lex_state = 114}, - [8317] = {.lex_state = 177, .external_lex_state = 114}, - [8318] = {.lex_state = 177, .external_lex_state = 114}, - [8319] = {.lex_state = 177, .external_lex_state = 114}, - [8320] = {.lex_state = 177, .external_lex_state = 114}, - [8321] = {.lex_state = 177, .external_lex_state = 114}, - [8322] = {.lex_state = 177, .external_lex_state = 114}, - [8323] = {.lex_state = 177, .external_lex_state = 114}, - [8324] = {.lex_state = 177, .external_lex_state = 119}, - [8325] = {.lex_state = 177, .external_lex_state = 114}, - [8326] = {.lex_state = 177, .external_lex_state = 114}, - [8327] = {.lex_state = 177, .external_lex_state = 114}, - [8328] = {.lex_state = 177, .external_lex_state = 114}, - [8329] = {.lex_state = 177, .external_lex_state = 114}, - [8330] = {.lex_state = 177, .external_lex_state = 114}, - [8331] = {.lex_state = 177, .external_lex_state = 114}, - [8332] = {.lex_state = 177, .external_lex_state = 114}, - [8333] = {.lex_state = 177, .external_lex_state = 114}, - [8334] = {.lex_state = 177, .external_lex_state = 114}, - [8335] = {.lex_state = 177, .external_lex_state = 114}, - [8336] = {.lex_state = 177, .external_lex_state = 114}, - [8337] = {.lex_state = 177, .external_lex_state = 114}, - [8338] = {.lex_state = 177, .external_lex_state = 114}, - [8339] = {.lex_state = 177, .external_lex_state = 114}, - [8340] = {.lex_state = 177, .external_lex_state = 114}, - [8341] = {.lex_state = 177, .external_lex_state = 115}, - [8342] = {.lex_state = 177, .external_lex_state = 114}, - [8343] = {.lex_state = 177, .external_lex_state = 114}, - [8344] = {.lex_state = 177, .external_lex_state = 114}, - [8345] = {.lex_state = 177, .external_lex_state = 114}, - [8346] = {.lex_state = 177, .external_lex_state = 114}, - [8347] = {.lex_state = 177, .external_lex_state = 114}, - [8348] = {.lex_state = 177, .external_lex_state = 114}, - [8349] = {.lex_state = 177, .external_lex_state = 114}, - [8350] = {.lex_state = 177, .external_lex_state = 114}, - [8351] = {.lex_state = 177, .external_lex_state = 114}, - [8352] = {.lex_state = 177, .external_lex_state = 114}, - [8353] = {.lex_state = 177, .external_lex_state = 114}, - [8354] = {.lex_state = 185, .external_lex_state = 117}, - [8355] = {.lex_state = 185, .external_lex_state = 116}, - [8356] = {.lex_state = 177, .external_lex_state = 114}, - [8357] = {.lex_state = 177, .external_lex_state = 114}, - [8358] = {.lex_state = 185, .external_lex_state = 117}, - [8359] = {.lex_state = 185, .external_lex_state = 117}, - [8360] = {.lex_state = 177, .external_lex_state = 114}, - [8361] = {.lex_state = 177, .external_lex_state = 114}, - [8362] = {.lex_state = 177, .external_lex_state = 114}, - [8363] = {.lex_state = 177, .external_lex_state = 114}, - [8364] = {.lex_state = 177, .external_lex_state = 114}, - [8365] = {.lex_state = 177, .external_lex_state = 114}, - [8366] = {.lex_state = 177, .external_lex_state = 114}, - [8367] = {.lex_state = 185, .external_lex_state = 116}, - [8368] = {.lex_state = 177, .external_lex_state = 114}, - [8369] = {.lex_state = 177, .external_lex_state = 114}, - [8370] = {.lex_state = 177, .external_lex_state = 114}, - [8371] = {.lex_state = 177, .external_lex_state = 114}, - [8372] = {.lex_state = 177, .external_lex_state = 114}, - [8373] = {.lex_state = 177, .external_lex_state = 114}, - [8374] = {.lex_state = 177, .external_lex_state = 114}, - [8375] = {.lex_state = 177, .external_lex_state = 114}, - [8376] = {.lex_state = 177, .external_lex_state = 114}, - [8377] = {.lex_state = 177, .external_lex_state = 114}, - [8378] = {.lex_state = 185, .external_lex_state = 117}, - [8379] = {.lex_state = 185, .external_lex_state = 117}, - [8380] = {.lex_state = 185, .external_lex_state = 117}, - [8381] = {.lex_state = 185, .external_lex_state = 117}, - [8382] = {.lex_state = 177, .external_lex_state = 114}, - [8383] = {.lex_state = 177, .external_lex_state = 114}, - [8384] = {.lex_state = 177, .external_lex_state = 114}, - [8385] = {.lex_state = 177, .external_lex_state = 114}, - [8386] = {.lex_state = 177, .external_lex_state = 114}, - [8387] = {.lex_state = 177, .external_lex_state = 114}, - [8388] = {.lex_state = 177, .external_lex_state = 114}, - [8389] = {.lex_state = 177, .external_lex_state = 114}, - [8390] = {.lex_state = 185, .external_lex_state = 117}, - [8391] = {.lex_state = 185, .external_lex_state = 117}, - [8392] = {.lex_state = 185, .external_lex_state = 117}, - [8393] = {.lex_state = 177, .external_lex_state = 114}, - [8394] = {.lex_state = 177, .external_lex_state = 114}, - [8395] = {.lex_state = 177, .external_lex_state = 114}, - [8396] = {.lex_state = 185, .external_lex_state = 117}, - [8397] = {.lex_state = 185, .external_lex_state = 117}, - [8398] = {.lex_state = 177, .external_lex_state = 114}, - [8399] = {.lex_state = 186, .external_lex_state = 116}, - [8400] = {.lex_state = 177, .external_lex_state = 114}, - [8401] = {.lex_state = 177, .external_lex_state = 114}, - [8402] = {.lex_state = 177, .external_lex_state = 114}, - [8403] = {.lex_state = 177, .external_lex_state = 114}, - [8404] = {.lex_state = 177, .external_lex_state = 114}, - [8405] = {.lex_state = 177, .external_lex_state = 114}, - [8406] = {.lex_state = 177, .external_lex_state = 114}, - [8407] = {.lex_state = 177, .external_lex_state = 114}, - [8408] = {.lex_state = 177, .external_lex_state = 114}, - [8409] = {.lex_state = 177, .external_lex_state = 114}, - [8410] = {.lex_state = 177, .external_lex_state = 114}, - [8411] = {.lex_state = 177, .external_lex_state = 114}, - [8412] = {.lex_state = 177, .external_lex_state = 114}, - [8413] = {.lex_state = 177, .external_lex_state = 114}, - [8414] = {.lex_state = 177, .external_lex_state = 114}, - [8415] = {.lex_state = 177, .external_lex_state = 114}, - [8416] = {.lex_state = 177, .external_lex_state = 114}, - [8417] = {.lex_state = 177, .external_lex_state = 114}, - [8418] = {.lex_state = 177, .external_lex_state = 114}, - [8419] = {.lex_state = 177, .external_lex_state = 114}, - [8420] = {.lex_state = 177, .external_lex_state = 114}, - [8421] = {.lex_state = 177, .external_lex_state = 114}, - [8422] = {.lex_state = 177, .external_lex_state = 114}, - [8423] = {.lex_state = 177, .external_lex_state = 114}, - [8424] = {.lex_state = 177, .external_lex_state = 114}, - [8425] = {.lex_state = 177, .external_lex_state = 114}, - [8426] = {.lex_state = 177, .external_lex_state = 114}, - [8427] = {.lex_state = 177, .external_lex_state = 114}, - [8428] = {.lex_state = 177, .external_lex_state = 114}, - [8429] = {.lex_state = 177, .external_lex_state = 114}, - [8430] = {.lex_state = 177, .external_lex_state = 114}, - [8431] = {.lex_state = 177, .external_lex_state = 114}, - [8432] = {.lex_state = 185, .external_lex_state = 116}, - [8433] = {.lex_state = 177, .external_lex_state = 114}, - [8434] = {.lex_state = 177, .external_lex_state = 114}, - [8435] = {.lex_state = 185, .external_lex_state = 117}, - [8436] = {.lex_state = 177, .external_lex_state = 114}, - [8437] = {.lex_state = 177, .external_lex_state = 114}, - [8438] = {.lex_state = 177, .external_lex_state = 114}, - [8439] = {.lex_state = 177, .external_lex_state = 114}, - [8440] = {.lex_state = 177, .external_lex_state = 114}, - [8441] = {.lex_state = 177, .external_lex_state = 115}, - [8442] = {.lex_state = 177, .external_lex_state = 114}, - [8443] = {.lex_state = 177, .external_lex_state = 114}, - [8444] = {.lex_state = 177, .external_lex_state = 114}, - [8445] = {.lex_state = 177, .external_lex_state = 114}, - [8446] = {.lex_state = 177, .external_lex_state = 114}, - [8447] = {.lex_state = 177, .external_lex_state = 114}, - [8448] = {.lex_state = 177, .external_lex_state = 114}, - [8449] = {.lex_state = 177, .external_lex_state = 114}, - [8450] = {.lex_state = 177, .external_lex_state = 114}, - [8451] = {.lex_state = 177, .external_lex_state = 114}, - [8452] = {.lex_state = 177, .external_lex_state = 114}, - [8453] = {.lex_state = 177, .external_lex_state = 114}, - [8454] = {.lex_state = 177, .external_lex_state = 114}, - [8455] = {.lex_state = 177, .external_lex_state = 114}, - [8456] = {.lex_state = 185, .external_lex_state = 116}, - [8457] = {.lex_state = 177, .external_lex_state = 114}, - [8458] = {.lex_state = 177, .external_lex_state = 114}, - [8459] = {.lex_state = 177, .external_lex_state = 114}, - [8460] = {.lex_state = 177, .external_lex_state = 114}, - [8461] = {.lex_state = 177, .external_lex_state = 114}, - [8462] = {.lex_state = 177, .external_lex_state = 114}, - [8463] = {.lex_state = 177, .external_lex_state = 114}, - [8464] = {.lex_state = 177, .external_lex_state = 114}, - [8465] = {.lex_state = 177, .external_lex_state = 114}, - [8466] = {.lex_state = 177, .external_lex_state = 114}, - [8467] = {.lex_state = 177, .external_lex_state = 114}, - [8468] = {.lex_state = 177, .external_lex_state = 114}, - [8469] = {.lex_state = 177, .external_lex_state = 114}, - [8470] = {.lex_state = 185, .external_lex_state = 117}, - [8471] = {.lex_state = 177, .external_lex_state = 114}, - [8472] = {.lex_state = 177, .external_lex_state = 114}, - [8473] = {.lex_state = 177, .external_lex_state = 114}, - [8474] = {.lex_state = 177, .external_lex_state = 114}, - [8475] = {.lex_state = 177, .external_lex_state = 114}, - [8476] = {.lex_state = 177, .external_lex_state = 114}, - [8477] = {.lex_state = 177, .external_lex_state = 114}, - [8478] = {.lex_state = 177, .external_lex_state = 114}, - [8479] = {.lex_state = 177, .external_lex_state = 114}, - [8480] = {.lex_state = 177, .external_lex_state = 114}, - [8481] = {.lex_state = 177, .external_lex_state = 114}, - [8482] = {.lex_state = 177, .external_lex_state = 114}, - [8483] = {.lex_state = 177, .external_lex_state = 114}, - [8484] = {.lex_state = 177, .external_lex_state = 114}, - [8485] = {.lex_state = 177, .external_lex_state = 114}, - [8486] = {.lex_state = 177, .external_lex_state = 114}, - [8487] = {.lex_state = 177, .external_lex_state = 114}, - [8488] = {.lex_state = 177, .external_lex_state = 114}, - [8489] = {.lex_state = 177, .external_lex_state = 114}, - [8490] = {.lex_state = 185, .external_lex_state = 117}, - [8491] = {.lex_state = 177, .external_lex_state = 114}, - [8492] = {.lex_state = 177, .external_lex_state = 114}, - [8493] = {.lex_state = 177, .external_lex_state = 114}, - [8494] = {.lex_state = 177, .external_lex_state = 114}, - [8495] = {.lex_state = 177, .external_lex_state = 114}, - [8496] = {.lex_state = 177, .external_lex_state = 114}, - [8497] = {.lex_state = 177, .external_lex_state = 114}, - [8498] = {.lex_state = 177, .external_lex_state = 114}, - [8499] = {.lex_state = 177, .external_lex_state = 114}, - [8500] = {.lex_state = 177, .external_lex_state = 114}, - [8501] = {.lex_state = 177, .external_lex_state = 114}, - [8502] = {.lex_state = 177, .external_lex_state = 114}, - [8503] = {.lex_state = 177, .external_lex_state = 114}, - [8504] = {.lex_state = 177, .external_lex_state = 114}, - [8505] = {.lex_state = 177, .external_lex_state = 114}, - [8506] = {.lex_state = 177, .external_lex_state = 114}, - [8507] = {.lex_state = 177, .external_lex_state = 114}, - [8508] = {.lex_state = 177, .external_lex_state = 115}, - [8509] = {.lex_state = 177, .external_lex_state = 114}, - [8510] = {.lex_state = 177, .external_lex_state = 114}, - [8511] = {.lex_state = 185, .external_lex_state = 116}, - [8512] = {.lex_state = 185, .external_lex_state = 116}, - [8513] = {.lex_state = 177, .external_lex_state = 115}, - [8514] = {.lex_state = 185, .external_lex_state = 116}, - [8515] = {.lex_state = 177, .external_lex_state = 114}, - [8516] = {.lex_state = 177, .external_lex_state = 114}, - [8517] = {.lex_state = 177, .external_lex_state = 114}, - [8518] = {.lex_state = 177, .external_lex_state = 114}, - [8519] = {.lex_state = 177, .external_lex_state = 114}, - [8520] = {.lex_state = 177, .external_lex_state = 114}, - [8521] = {.lex_state = 177, .external_lex_state = 114}, - [8522] = {.lex_state = 177, .external_lex_state = 114}, - [8523] = {.lex_state = 177, .external_lex_state = 115}, - [8524] = {.lex_state = 177, .external_lex_state = 114}, - [8525] = {.lex_state = 177, .external_lex_state = 115}, - [8526] = {.lex_state = 177, .external_lex_state = 115}, - [8527] = {.lex_state = 177, .external_lex_state = 114}, - [8528] = {.lex_state = 177, .external_lex_state = 114}, - [8529] = {.lex_state = 177, .external_lex_state = 114}, - [8530] = {.lex_state = 177, .external_lex_state = 114}, - [8531] = {.lex_state = 177, .external_lex_state = 114}, - [8532] = {.lex_state = 177, .external_lex_state = 114}, - [8533] = {.lex_state = 177, .external_lex_state = 114}, - [8534] = {.lex_state = 177, .external_lex_state = 114}, - [8535] = {.lex_state = 177, .external_lex_state = 114}, - [8536] = {.lex_state = 177, .external_lex_state = 114}, - [8537] = {.lex_state = 177, .external_lex_state = 114}, - [8538] = {.lex_state = 177, .external_lex_state = 114}, - [8539] = {.lex_state = 177, .external_lex_state = 114}, - [8540] = {.lex_state = 177, .external_lex_state = 115}, - [8541] = {.lex_state = 177, .external_lex_state = 114}, - [8542] = {.lex_state = 185, .external_lex_state = 116}, - [8543] = {.lex_state = 177, .external_lex_state = 114}, - [8544] = {.lex_state = 177, .external_lex_state = 114}, - [8545] = {.lex_state = 177, .external_lex_state = 115}, - [8546] = {.lex_state = 177, .external_lex_state = 114}, - [8547] = {.lex_state = 177, .external_lex_state = 114}, - [8548] = {.lex_state = 177, .external_lex_state = 114}, - [8549] = {.lex_state = 177, .external_lex_state = 115}, - [8550] = {.lex_state = 177, .external_lex_state = 114}, - [8551] = {.lex_state = 177, .external_lex_state = 114}, - [8552] = {.lex_state = 177, .external_lex_state = 115}, - [8553] = {.lex_state = 177, .external_lex_state = 114}, - [8554] = {.lex_state = 177, .external_lex_state = 115}, - [8555] = {.lex_state = 177, .external_lex_state = 115}, - [8556] = {.lex_state = 177, .external_lex_state = 114}, - [8557] = {.lex_state = 177, .external_lex_state = 115}, - [8558] = {.lex_state = 177, .external_lex_state = 114}, - [8559] = {.lex_state = 177, .external_lex_state = 114}, - [8560] = {.lex_state = 177, .external_lex_state = 114}, - [8561] = {.lex_state = 177, .external_lex_state = 120}, - [8562] = {.lex_state = 177, .external_lex_state = 120}, - [8563] = {.lex_state = 34, .external_lex_state = 121}, - [8564] = {.lex_state = 65, .external_lex_state = 99}, - [8565] = {.lex_state = 177, .external_lex_state = 99}, - [8566] = {.lex_state = 34, .external_lex_state = 121}, - [8567] = {.lex_state = 185, .external_lex_state = 117}, - [8568] = {.lex_state = 34, .external_lex_state = 121}, - [8569] = {.lex_state = 185, .external_lex_state = 117}, - [8570] = {.lex_state = 34, .external_lex_state = 121}, - [8571] = {.lex_state = 185, .external_lex_state = 116}, - [8572] = {.lex_state = 185, .external_lex_state = 116}, - [8573] = {.lex_state = 34, .external_lex_state = 121}, - [8574] = {.lex_state = 177, .external_lex_state = 120}, - [8575] = {.lex_state = 34, .external_lex_state = 121}, - [8576] = {.lex_state = 34, .external_lex_state = 121}, - [8577] = {.lex_state = 177, .external_lex_state = 99}, - [8578] = {.lex_state = 185, .external_lex_state = 117}, - [8579] = {.lex_state = 34, .external_lex_state = 121}, - [8580] = {.lex_state = 177, .external_lex_state = 115}, - [8581] = {.lex_state = 34, .external_lex_state = 121}, - [8582] = {.lex_state = 34, .external_lex_state = 121}, - [8583] = {.lex_state = 185, .external_lex_state = 116}, - [8584] = {.lex_state = 177, .external_lex_state = 120}, - [8585] = {.lex_state = 34, .external_lex_state = 121}, - [8586] = {.lex_state = 177, .external_lex_state = 120}, - [8587] = {.lex_state = 177, .external_lex_state = 120}, - [8588] = {.lex_state = 177, .external_lex_state = 120}, - [8589] = {.lex_state = 34, .external_lex_state = 121}, - [8590] = {.lex_state = 34, .external_lex_state = 121}, - [8591] = {.lex_state = 34, .external_lex_state = 121}, - [8592] = {.lex_state = 177, .external_lex_state = 120}, - [8593] = {.lex_state = 177, .external_lex_state = 99}, - [8594] = {.lex_state = 34, .external_lex_state = 121}, - [8595] = {.lex_state = 34, .external_lex_state = 121}, - [8596] = {.lex_state = 177, .external_lex_state = 120}, - [8597] = {.lex_state = 34, .external_lex_state = 121}, - [8598] = {.lex_state = 185, .external_lex_state = 116}, - [8599] = {.lex_state = 34, .external_lex_state = 121}, - [8600] = {.lex_state = 34, .external_lex_state = 121}, - [8601] = {.lex_state = 34, .external_lex_state = 121}, - [8602] = {.lex_state = 177, .external_lex_state = 99}, - [8603] = {.lex_state = 177, .external_lex_state = 120}, - [8604] = {.lex_state = 34, .external_lex_state = 121}, - [8605] = {.lex_state = 177, .external_lex_state = 120}, - [8606] = {.lex_state = 34, .external_lex_state = 121}, - [8607] = {.lex_state = 177, .external_lex_state = 120}, - [8608] = {.lex_state = 177, .external_lex_state = 99}, - [8609] = {.lex_state = 34, .external_lex_state = 121}, - [8610] = {.lex_state = 34, .external_lex_state = 121}, - [8611] = {.lex_state = 185, .external_lex_state = 117}, - [8612] = {.lex_state = 185, .external_lex_state = 116}, - [8613] = {.lex_state = 177, .external_lex_state = 99}, - [8614] = {.lex_state = 177, .external_lex_state = 99}, - [8615] = {.lex_state = 177, .external_lex_state = 120}, - [8616] = {.lex_state = 34, .external_lex_state = 121}, - [8617] = {.lex_state = 34, .external_lex_state = 121}, - [8618] = {.lex_state = 34, .external_lex_state = 121}, - [8619] = {.lex_state = 34, .external_lex_state = 121}, - [8620] = {.lex_state = 177, .external_lex_state = 99}, - [8621] = {.lex_state = 177, .external_lex_state = 120}, - [8622] = {.lex_state = 177, .external_lex_state = 99}, - [8623] = {.lex_state = 34, .external_lex_state = 121}, - [8624] = {.lex_state = 177, .external_lex_state = 115}, - [8625] = {.lex_state = 34, .external_lex_state = 121}, - [8626] = {.lex_state = 177, .external_lex_state = 120}, - [8627] = {.lex_state = 34, .external_lex_state = 121}, - [8628] = {.lex_state = 185, .external_lex_state = 116}, - [8629] = {.lex_state = 185, .external_lex_state = 116}, - [8630] = {.lex_state = 34, .external_lex_state = 121}, - [8631] = {.lex_state = 177, .external_lex_state = 120}, - [8632] = {.lex_state = 177, .external_lex_state = 120}, - [8633] = {.lex_state = 34, .external_lex_state = 121}, - [8634] = {.lex_state = 177, .external_lex_state = 115}, - [8635] = {.lex_state = 185, .external_lex_state = 117}, - [8636] = {.lex_state = 34, .external_lex_state = 121}, - [8637] = {.lex_state = 34, .external_lex_state = 121}, - [8638] = {.lex_state = 34, .external_lex_state = 121}, - [8639] = {.lex_state = 177, .external_lex_state = 120}, - [8640] = {.lex_state = 34, .external_lex_state = 121}, - [8641] = {.lex_state = 173, .external_lex_state = 99}, - [8642] = {.lex_state = 175, .external_lex_state = 99}, - [8643] = {.lex_state = 34, .external_lex_state = 121}, - [8644] = {.lex_state = 177, .external_lex_state = 120}, - [8645] = {.lex_state = 34, .external_lex_state = 121}, - [8646] = {.lex_state = 185, .external_lex_state = 116}, - [8647] = {.lex_state = 177, .external_lex_state = 99}, - [8648] = {.lex_state = 177, .external_lex_state = 99}, - [8649] = {.lex_state = 177, .external_lex_state = 120}, - [8650] = {.lex_state = 34, .external_lex_state = 121}, - [8651] = {.lex_state = 185, .external_lex_state = 116}, - [8652] = {.lex_state = 34, .external_lex_state = 121}, - [8653] = {.lex_state = 177, .external_lex_state = 115}, - [8654] = {.lex_state = 185, .external_lex_state = 116}, - [8655] = {.lex_state = 177, .external_lex_state = 120}, - [8656] = {.lex_state = 185, .external_lex_state = 116}, - [8657] = {.lex_state = 34, .external_lex_state = 121}, - [8658] = {.lex_state = 185, .external_lex_state = 116}, - [8659] = {.lex_state = 177, .external_lex_state = 120}, - [8660] = {.lex_state = 34, .external_lex_state = 121}, - [8661] = {.lex_state = 34, .external_lex_state = 121}, - [8662] = {.lex_state = 34, .external_lex_state = 121}, - [8663] = {.lex_state = 177, .external_lex_state = 120}, - [8664] = {.lex_state = 177, .external_lex_state = 120}, - [8665] = {.lex_state = 177, .external_lex_state = 115}, - [8666] = {.lex_state = 177, .external_lex_state = 120}, - [8667] = {.lex_state = 179, .external_lex_state = 115}, - [8668] = {.lex_state = 34, .external_lex_state = 121}, - [8669] = {.lex_state = 185, .external_lex_state = 116}, - [8670] = {.lex_state = 179, .external_lex_state = 115}, - [8671] = {.lex_state = 177, .external_lex_state = 120}, - [8672] = {.lex_state = 177, .external_lex_state = 99}, - [8673] = {.lex_state = 34, .external_lex_state = 121}, - [8674] = {.lex_state = 177, .external_lex_state = 120}, - [8675] = {.lex_state = 34, .external_lex_state = 121}, - [8676] = {.lex_state = 177, .external_lex_state = 120}, - [8677] = {.lex_state = 185, .external_lex_state = 117}, - [8678] = {.lex_state = 34, .external_lex_state = 121}, - [8679] = {.lex_state = 34, .external_lex_state = 121}, - [8680] = {.lex_state = 177, .external_lex_state = 120}, - [8681] = {.lex_state = 177, .external_lex_state = 120}, - [8682] = {.lex_state = 177, .external_lex_state = 120}, - [8683] = {.lex_state = 185, .external_lex_state = 117}, - [8684] = {.lex_state = 177, .external_lex_state = 120}, - [8685] = {.lex_state = 34, .external_lex_state = 121}, - [8686] = {.lex_state = 177, .external_lex_state = 120}, - [8687] = {.lex_state = 34, .external_lex_state = 121}, - [8688] = {.lex_state = 177, .external_lex_state = 99}, - [8689] = {.lex_state = 185, .external_lex_state = 116}, - [8690] = {.lex_state = 177, .external_lex_state = 120}, - [8691] = {.lex_state = 34, .external_lex_state = 121}, - [8692] = {.lex_state = 177, .external_lex_state = 120}, - [8693] = {.lex_state = 34, .external_lex_state = 121}, - [8694] = {.lex_state = 34, .external_lex_state = 121}, - [8695] = {.lex_state = 177, .external_lex_state = 120}, - [8696] = {.lex_state = 34, .external_lex_state = 121}, - [8697] = {.lex_state = 177, .external_lex_state = 120}, - [8698] = {.lex_state = 177, .external_lex_state = 120}, - [8699] = {.lex_state = 34, .external_lex_state = 121}, - [8700] = {.lex_state = 177, .external_lex_state = 115}, - [8701] = {.lex_state = 34, .external_lex_state = 121}, - [8702] = {.lex_state = 34, .external_lex_state = 121}, - [8703] = {.lex_state = 177, .external_lex_state = 120}, - [8704] = {.lex_state = 177, .external_lex_state = 120}, - [8705] = {.lex_state = 177, .external_lex_state = 120}, - [8706] = {.lex_state = 34, .external_lex_state = 121}, - [8707] = {.lex_state = 34, .external_lex_state = 121}, - [8708] = {.lex_state = 177, .external_lex_state = 120}, - [8709] = {.lex_state = 34, .external_lex_state = 121}, - [8710] = {.lex_state = 177, .external_lex_state = 99}, - [8711] = {.lex_state = 34, .external_lex_state = 121}, - [8712] = {.lex_state = 177, .external_lex_state = 122}, - [8713] = {.lex_state = 34, .external_lex_state = 121}, - [8714] = {.lex_state = 177, .external_lex_state = 120}, - [8715] = {.lex_state = 177, .external_lex_state = 120}, - [8716] = {.lex_state = 177, .external_lex_state = 120}, - [8717] = {.lex_state = 34, .external_lex_state = 121}, - [8718] = {.lex_state = 177, .external_lex_state = 120}, - [8719] = {.lex_state = 185, .external_lex_state = 117}, - [8720] = {.lex_state = 177, .external_lex_state = 120}, - [8721] = {.lex_state = 177, .external_lex_state = 120}, - [8722] = {.lex_state = 177, .external_lex_state = 99}, - [8723] = {.lex_state = 177, .external_lex_state = 120}, - [8724] = {.lex_state = 177, .external_lex_state = 120}, - [8725] = {.lex_state = 34, .external_lex_state = 121}, - [8726] = {.lex_state = 34, .external_lex_state = 121}, - [8727] = {.lex_state = 34, .external_lex_state = 121}, - [8728] = {.lex_state = 177, .external_lex_state = 120}, - [8729] = {.lex_state = 34, .external_lex_state = 121}, - [8730] = {.lex_state = 177, .external_lex_state = 120}, - [8731] = {.lex_state = 185, .external_lex_state = 116}, - [8732] = {.lex_state = 34, .external_lex_state = 121}, - [8733] = {.lex_state = 177, .external_lex_state = 120}, - [8734] = {.lex_state = 34, .external_lex_state = 121}, - [8735] = {.lex_state = 177, .external_lex_state = 120}, - [8736] = {.lex_state = 177, .external_lex_state = 120}, - [8737] = {.lex_state = 177, .external_lex_state = 115}, - [8738] = {.lex_state = 65, .external_lex_state = 99}, - [8739] = {.lex_state = 177, .external_lex_state = 99}, - [8740] = {.lex_state = 177, .external_lex_state = 120}, - [8741] = {.lex_state = 34, .external_lex_state = 121}, - [8742] = {.lex_state = 185, .external_lex_state = 116}, - [8743] = {.lex_state = 34, .external_lex_state = 121}, - [8744] = {.lex_state = 34, .external_lex_state = 121}, - [8745] = {.lex_state = 177, .external_lex_state = 120}, - [8746] = {.lex_state = 177, .external_lex_state = 115}, - [8747] = {.lex_state = 177, .external_lex_state = 120}, - [8748] = {.lex_state = 177, .external_lex_state = 120}, - [8749] = {.lex_state = 177, .external_lex_state = 120}, - [8750] = {.lex_state = 185, .external_lex_state = 116}, - [8751] = {.lex_state = 177, .external_lex_state = 115}, - [8752] = {.lex_state = 177, .external_lex_state = 115}, - [8753] = {.lex_state = 177, .external_lex_state = 115}, - [8754] = {.lex_state = 177, .external_lex_state = 115}, - [8755] = {.lex_state = 177, .external_lex_state = 115}, - [8756] = {.lex_state = 70, .external_lex_state = 99}, - [8757] = {.lex_state = 70, .external_lex_state = 99}, - [8758] = {.lex_state = 177, .external_lex_state = 120}, - [8759] = {.lex_state = 177, .external_lex_state = 120}, - [8760] = {.lex_state = 177, .external_lex_state = 120}, - [8761] = {.lex_state = 177, .external_lex_state = 115}, - [8762] = {.lex_state = 177, .external_lex_state = 115}, - [8763] = {.lex_state = 177, .external_lex_state = 115}, - [8764] = {.lex_state = 177, .external_lex_state = 115}, - [8765] = {.lex_state = 177, .external_lex_state = 115}, - [8766] = {.lex_state = 177, .external_lex_state = 120}, - [8767] = {.lex_state = 177, .external_lex_state = 115}, - [8768] = {.lex_state = 177, .external_lex_state = 120}, - [8769] = {.lex_state = 177, .external_lex_state = 115}, - [8770] = {.lex_state = 177, .external_lex_state = 115}, - [8771] = {.lex_state = 177, .external_lex_state = 115}, - [8772] = {.lex_state = 177, .external_lex_state = 115}, - [8773] = {.lex_state = 177, .external_lex_state = 115}, - [8774] = {.lex_state = 177, .external_lex_state = 115}, - [8775] = {.lex_state = 177, .external_lex_state = 115}, - [8776] = {.lex_state = 177, .external_lex_state = 115}, - [8777] = {.lex_state = 177, .external_lex_state = 120}, - [8778] = {.lex_state = 177, .external_lex_state = 120}, - [8779] = {.lex_state = 177, .external_lex_state = 115}, - [8780] = {.lex_state = 34, .external_lex_state = 121}, - [8781] = {.lex_state = 185, .external_lex_state = 116}, - [8782] = {.lex_state = 177, .external_lex_state = 120}, - [8783] = {.lex_state = 177, .external_lex_state = 120}, - [8784] = {.lex_state = 177, .external_lex_state = 120}, - [8785] = {.lex_state = 177, .external_lex_state = 120}, - [8786] = {.lex_state = 177, .external_lex_state = 115}, - [8787] = {.lex_state = 177, .external_lex_state = 115}, - [8788] = {.lex_state = 177, .external_lex_state = 115}, - [8789] = {.lex_state = 177, .external_lex_state = 115}, - [8790] = {.lex_state = 177, .external_lex_state = 115}, - [8791] = {.lex_state = 177, .external_lex_state = 120}, - [8792] = {.lex_state = 177, .external_lex_state = 120}, - [8793] = {.lex_state = 177, .external_lex_state = 120}, - [8794] = {.lex_state = 177, .external_lex_state = 120}, - [8795] = {.lex_state = 177, .external_lex_state = 120}, - [8796] = {.lex_state = 177, .external_lex_state = 120}, - [8797] = {.lex_state = 177, .external_lex_state = 120}, - [8798] = {.lex_state = 177, .external_lex_state = 120}, - [8799] = {.lex_state = 177, .external_lex_state = 120}, - [8800] = {.lex_state = 177, .external_lex_state = 120}, - [8801] = {.lex_state = 70, .external_lex_state = 99}, - [8802] = {.lex_state = 177, .external_lex_state = 115}, - [8803] = {.lex_state = 177, .external_lex_state = 115}, - [8804] = {.lex_state = 177, .external_lex_state = 115}, - [8805] = {.lex_state = 177, .external_lex_state = 115}, - [8806] = {.lex_state = 177, .external_lex_state = 115}, - [8807] = {.lex_state = 177, .external_lex_state = 115}, - [8808] = {.lex_state = 70, .external_lex_state = 99}, - [8809] = {.lex_state = 177, .external_lex_state = 115}, - [8810] = {.lex_state = 177, .external_lex_state = 115}, - [8811] = {.lex_state = 177, .external_lex_state = 115}, - [8812] = {.lex_state = 177, .external_lex_state = 115}, - [8813] = {.lex_state = 177, .external_lex_state = 120}, - [8814] = {.lex_state = 177, .external_lex_state = 120}, - [8815] = {.lex_state = 177, .external_lex_state = 115}, - [8816] = {.lex_state = 177, .external_lex_state = 115}, - [8817] = {.lex_state = 177, .external_lex_state = 115}, - [8818] = {.lex_state = 177, .external_lex_state = 115}, - [8819] = {.lex_state = 177, .external_lex_state = 115}, - [8820] = {.lex_state = 175, .external_lex_state = 113}, - [8821] = {.lex_state = 177, .external_lex_state = 115}, - [8822] = {.lex_state = 177, .external_lex_state = 115}, - [8823] = {.lex_state = 34, .external_lex_state = 121}, - [8824] = {.lex_state = 70, .external_lex_state = 99}, - [8825] = {.lex_state = 177, .external_lex_state = 115}, - [8826] = {.lex_state = 177, .external_lex_state = 115}, - [8827] = {.lex_state = 177, .external_lex_state = 115}, - [8828] = {.lex_state = 175, .external_lex_state = 99}, - [8829] = {.lex_state = 175, .external_lex_state = 113}, - [8830] = {.lex_state = 177, .external_lex_state = 115}, - [8831] = {.lex_state = 177, .external_lex_state = 115}, - [8832] = {.lex_state = 177, .external_lex_state = 115}, - [8833] = {.lex_state = 34, .external_lex_state = 121}, - [8834] = {.lex_state = 177, .external_lex_state = 99}, - [8835] = {.lex_state = 177, .external_lex_state = 115}, - [8836] = {.lex_state = 175, .external_lex_state = 113}, - [8837] = {.lex_state = 177, .external_lex_state = 115}, - [8838] = {.lex_state = 175, .external_lex_state = 99}, - [8839] = {.lex_state = 34, .external_lex_state = 121}, - [8840] = {.lex_state = 70, .external_lex_state = 99}, - [8841] = {.lex_state = 177, .external_lex_state = 99}, - [8842] = {.lex_state = 34, .external_lex_state = 121}, - [8843] = {.lex_state = 177, .external_lex_state = 120}, - [8844] = {.lex_state = 177, .external_lex_state = 120}, - [8845] = {.lex_state = 70, .external_lex_state = 99}, - [8846] = {.lex_state = 34, .external_lex_state = 121}, - [8847] = {.lex_state = 175, .external_lex_state = 113}, - [8848] = {.lex_state = 177, .external_lex_state = 120}, - [8849] = {.lex_state = 34, .external_lex_state = 121}, - [8850] = {.lex_state = 177, .external_lex_state = 115}, - [8851] = {.lex_state = 70, .external_lex_state = 99}, - [8852] = {.lex_state = 185, .external_lex_state = 116}, - [8853] = {.lex_state = 34, .external_lex_state = 121}, - [8854] = {.lex_state = 177, .external_lex_state = 120}, - [8855] = {.lex_state = 175, .external_lex_state = 113}, - [8856] = {.lex_state = 177, .external_lex_state = 115}, - [8857] = {.lex_state = 34, .external_lex_state = 121}, - [8858] = {.lex_state = 70, .external_lex_state = 99}, - [8859] = {.lex_state = 177, .external_lex_state = 120}, - [8860] = {.lex_state = 177, .external_lex_state = 120}, - [8861] = {.lex_state = 177, .external_lex_state = 120}, - [8862] = {.lex_state = 177, .external_lex_state = 120}, - [8863] = {.lex_state = 177, .external_lex_state = 115}, - [8864] = {.lex_state = 34, .external_lex_state = 121}, - [8865] = {.lex_state = 177, .external_lex_state = 115}, - [8866] = {.lex_state = 177, .external_lex_state = 115}, - [8867] = {.lex_state = 177, .external_lex_state = 115}, - [8868] = {.lex_state = 177, .external_lex_state = 120}, - [8869] = {.lex_state = 34, .external_lex_state = 121}, - [8870] = {.lex_state = 177, .external_lex_state = 115}, - [8871] = {.lex_state = 177, .external_lex_state = 115}, - [8872] = {.lex_state = 177, .external_lex_state = 115}, - [8873] = {.lex_state = 177, .external_lex_state = 115}, - [8874] = {.lex_state = 34, .external_lex_state = 121}, - [8875] = {.lex_state = 177, .external_lex_state = 115}, - [8876] = {.lex_state = 177, .external_lex_state = 99}, - [8877] = {.lex_state = 177, .external_lex_state = 120}, - [8878] = {.lex_state = 177, .external_lex_state = 115}, - [8879] = {.lex_state = 177, .external_lex_state = 120}, - [8880] = {.lex_state = 34, .external_lex_state = 121}, - [8881] = {.lex_state = 177, .external_lex_state = 119}, - [8882] = {.lex_state = 70, .external_lex_state = 99}, - [8883] = {.lex_state = 177, .external_lex_state = 115}, - [8884] = {.lex_state = 34, .external_lex_state = 121}, - [8885] = {.lex_state = 177, .external_lex_state = 115}, - [8886] = {.lex_state = 177, .external_lex_state = 120}, - [8887] = {.lex_state = 177, .external_lex_state = 120}, - [8888] = {.lex_state = 70, .external_lex_state = 99}, - [8889] = {.lex_state = 34, .external_lex_state = 121}, - [8890] = {.lex_state = 175, .external_lex_state = 113}, - [8891] = {.lex_state = 177, .external_lex_state = 115}, - [8892] = {.lex_state = 177, .external_lex_state = 115}, - [8893] = {.lex_state = 34, .external_lex_state = 121}, - [8894] = {.lex_state = 177, .external_lex_state = 115}, - [8895] = {.lex_state = 185, .external_lex_state = 116}, - [8896] = {.lex_state = 185, .external_lex_state = 116}, - [8897] = {.lex_state = 70, .external_lex_state = 99}, - [8898] = {.lex_state = 177, .external_lex_state = 120}, - [8899] = {.lex_state = 34, .external_lex_state = 121}, - [8900] = {.lex_state = 177, .external_lex_state = 120}, - [8901] = {.lex_state = 34, .external_lex_state = 121}, - [8902] = {.lex_state = 177, .external_lex_state = 119}, - [8903] = {.lex_state = 34, .external_lex_state = 121}, - [8904] = {.lex_state = 177, .external_lex_state = 115}, - [8905] = {.lex_state = 34, .external_lex_state = 121}, - [8906] = {.lex_state = 177, .external_lex_state = 115}, - [8907] = {.lex_state = 177, .external_lex_state = 115}, - [8908] = {.lex_state = 177, .external_lex_state = 115}, - [8909] = {.lex_state = 34, .external_lex_state = 121}, - [8910] = {.lex_state = 177, .external_lex_state = 120}, - [8911] = {.lex_state = 177, .external_lex_state = 120}, - [8912] = {.lex_state = 70, .external_lex_state = 99}, - [8913] = {.lex_state = 177, .external_lex_state = 115}, - [8914] = {.lex_state = 177, .external_lex_state = 120}, - [8915] = {.lex_state = 34, .external_lex_state = 121}, - [8916] = {.lex_state = 177, .external_lex_state = 120}, - [8917] = {.lex_state = 177, .external_lex_state = 119}, - [8918] = {.lex_state = 185, .external_lex_state = 117}, - [8919] = {.lex_state = 175, .external_lex_state = 113}, - [8920] = {.lex_state = 177, .external_lex_state = 120}, - [8921] = {.lex_state = 34, .external_lex_state = 121}, - [8922] = {.lex_state = 177, .external_lex_state = 120}, - [8923] = {.lex_state = 177, .external_lex_state = 120}, - [8924] = {.lex_state = 70, .external_lex_state = 99}, - [8925] = {.lex_state = 34, .external_lex_state = 121}, - [8926] = {.lex_state = 177, .external_lex_state = 120}, - [8927] = {.lex_state = 177, .external_lex_state = 120}, - [8928] = {.lex_state = 34, .external_lex_state = 121}, - [8929] = {.lex_state = 177, .external_lex_state = 115}, - [8930] = {.lex_state = 177, .external_lex_state = 120}, - [8931] = {.lex_state = 177, .external_lex_state = 115}, - [8932] = {.lex_state = 177, .external_lex_state = 120}, - [8933] = {.lex_state = 177, .external_lex_state = 120}, - [8934] = {.lex_state = 177, .external_lex_state = 119}, - [8935] = {.lex_state = 177, .external_lex_state = 99}, - [8936] = {.lex_state = 70, .external_lex_state = 99}, - [8937] = {.lex_state = 34, .external_lex_state = 121}, - [8938] = {.lex_state = 175, .external_lex_state = 113}, - [8939] = {.lex_state = 34, .external_lex_state = 121}, - [8940] = {.lex_state = 177, .external_lex_state = 99}, - [8941] = {.lex_state = 70, .external_lex_state = 99}, - [8942] = {.lex_state = 177, .external_lex_state = 120}, - [8943] = {.lex_state = 70, .external_lex_state = 99}, - [8944] = {.lex_state = 34, .external_lex_state = 121}, - [8945] = {.lex_state = 185, .external_lex_state = 116}, - [8946] = {.lex_state = 177, .external_lex_state = 115}, - [8947] = {.lex_state = 177, .external_lex_state = 115}, - [8948] = {.lex_state = 185, .external_lex_state = 116}, - [8949] = {.lex_state = 177, .external_lex_state = 115}, - [8950] = {.lex_state = 177, .external_lex_state = 115}, - [8951] = {.lex_state = 177, .external_lex_state = 115}, - [8952] = {.lex_state = 34, .external_lex_state = 121}, - [8953] = {.lex_state = 177, .external_lex_state = 115}, - [8954] = {.lex_state = 177, .external_lex_state = 99}, - [8955] = {.lex_state = 177, .external_lex_state = 120}, - [8956] = {.lex_state = 34, .external_lex_state = 121}, - [8957] = {.lex_state = 177, .external_lex_state = 115}, - [8958] = {.lex_state = 177, .external_lex_state = 115}, - [8959] = {.lex_state = 177, .external_lex_state = 115}, - [8960] = {.lex_state = 34, .external_lex_state = 121}, - [8961] = {.lex_state = 34, .external_lex_state = 121}, - [8962] = {.lex_state = 177, .external_lex_state = 115}, - [8963] = {.lex_state = 177, .external_lex_state = 115}, - [8964] = {.lex_state = 177, .external_lex_state = 120}, - [8965] = {.lex_state = 177, .external_lex_state = 115}, - [8966] = {.lex_state = 177, .external_lex_state = 120}, - [8967] = {.lex_state = 177, .external_lex_state = 115}, - [8968] = {.lex_state = 70, .external_lex_state = 99}, - [8969] = {.lex_state = 34, .external_lex_state = 121}, - [8970] = {.lex_state = 177, .external_lex_state = 120}, - [8971] = {.lex_state = 177, .external_lex_state = 115}, - [8972] = {.lex_state = 177, .external_lex_state = 115}, - [8973] = {.lex_state = 34, .external_lex_state = 121}, - [8974] = {.lex_state = 177, .external_lex_state = 115}, - [8975] = {.lex_state = 177, .external_lex_state = 120}, - [8976] = {.lex_state = 70, .external_lex_state = 99}, - [8977] = {.lex_state = 34, .external_lex_state = 121}, - [8978] = {.lex_state = 34, .external_lex_state = 121}, - [8979] = {.lex_state = 175, .external_lex_state = 113}, - [8980] = {.lex_state = 177, .external_lex_state = 120}, - [8981] = {.lex_state = 185, .external_lex_state = 116}, - [8982] = {.lex_state = 70, .external_lex_state = 99}, - [8983] = {.lex_state = 177, .external_lex_state = 120}, - [8984] = {.lex_state = 185, .external_lex_state = 117}, - [8985] = {.lex_state = 177, .external_lex_state = 115}, - [8986] = {.lex_state = 177, .external_lex_state = 115}, - [8987] = {.lex_state = 177, .external_lex_state = 115}, - [8988] = {.lex_state = 175, .external_lex_state = 113}, - [8989] = {.lex_state = 177, .external_lex_state = 115}, - [8990] = {.lex_state = 34, .external_lex_state = 121}, - [8991] = {.lex_state = 70, .external_lex_state = 99}, - [8992] = {.lex_state = 177, .external_lex_state = 115}, - [8993] = {.lex_state = 177, .external_lex_state = 115}, - [8994] = {.lex_state = 177, .external_lex_state = 115}, - [8995] = {.lex_state = 177, .external_lex_state = 115}, - [8996] = {.lex_state = 177, .external_lex_state = 115}, - [8997] = {.lex_state = 177, .external_lex_state = 115}, - [8998] = {.lex_state = 70, .external_lex_state = 99}, - [8999] = {.lex_state = 177, .external_lex_state = 115}, - [9000] = {.lex_state = 177, .external_lex_state = 115}, - [9001] = {.lex_state = 34, .external_lex_state = 121}, - [9002] = {.lex_state = 177, .external_lex_state = 115}, - [9003] = {.lex_state = 177, .external_lex_state = 120}, - [9004] = {.lex_state = 177, .external_lex_state = 115}, - [9005] = {.lex_state = 177, .external_lex_state = 115}, - [9006] = {.lex_state = 177, .external_lex_state = 115}, - [9007] = {.lex_state = 177, .external_lex_state = 115}, - [9008] = {.lex_state = 175, .external_lex_state = 113}, - [9009] = {.lex_state = 177, .external_lex_state = 115}, - [9010] = {.lex_state = 177, .external_lex_state = 115}, - [9011] = {.lex_state = 177, .external_lex_state = 115}, - [9012] = {.lex_state = 70, .external_lex_state = 99}, - [9013] = {.lex_state = 177, .external_lex_state = 115}, - [9014] = {.lex_state = 177, .external_lex_state = 115}, - [9015] = {.lex_state = 177, .external_lex_state = 115}, - [9016] = {.lex_state = 177, .external_lex_state = 115}, - [9017] = {.lex_state = 177, .external_lex_state = 115}, - [9018] = {.lex_state = 177, .external_lex_state = 115}, - [9019] = {.lex_state = 177, .external_lex_state = 115}, - [9020] = {.lex_state = 175, .external_lex_state = 113}, - [9021] = {.lex_state = 177, .external_lex_state = 115}, - [9022] = {.lex_state = 177, .external_lex_state = 115}, - [9023] = {.lex_state = 177, .external_lex_state = 115}, - [9024] = {.lex_state = 177, .external_lex_state = 115}, - [9025] = {.lex_state = 177, .external_lex_state = 115}, - [9026] = {.lex_state = 177, .external_lex_state = 115}, - [9027] = {.lex_state = 177, .external_lex_state = 115}, - [9028] = {.lex_state = 177, .external_lex_state = 115}, - [9029] = {.lex_state = 177, .external_lex_state = 115}, - [9030] = {.lex_state = 177, .external_lex_state = 115}, - [9031] = {.lex_state = 177, .external_lex_state = 115}, - [9032] = {.lex_state = 177, .external_lex_state = 99}, - [9033] = {.lex_state = 177, .external_lex_state = 115}, - [9034] = {.lex_state = 177, .external_lex_state = 115}, - [9035] = {.lex_state = 177, .external_lex_state = 120}, - [9036] = {.lex_state = 177, .external_lex_state = 115}, - [9037] = {.lex_state = 177, .external_lex_state = 120}, - [9038] = {.lex_state = 177, .external_lex_state = 115}, - [9039] = {.lex_state = 177, .external_lex_state = 120}, - [9040] = {.lex_state = 177, .external_lex_state = 120}, - [9041] = {.lex_state = 177, .external_lex_state = 120}, - [9042] = {.lex_state = 185, .external_lex_state = 116}, - [9043] = {.lex_state = 70, .external_lex_state = 99}, - [9044] = {.lex_state = 177, .external_lex_state = 115}, - [9045] = {.lex_state = 177, .external_lex_state = 115}, - [9046] = {.lex_state = 177, .external_lex_state = 115}, - [9047] = {.lex_state = 177, .external_lex_state = 115}, - [9048] = {.lex_state = 177, .external_lex_state = 115}, - [9049] = {.lex_state = 177, .external_lex_state = 120}, - [9050] = {.lex_state = 70, .external_lex_state = 99}, - [9051] = {.lex_state = 177, .external_lex_state = 120}, - [9052] = {.lex_state = 177, .external_lex_state = 115}, - [9053] = {.lex_state = 177, .external_lex_state = 115}, - [9054] = {.lex_state = 177, .external_lex_state = 115}, - [9055] = {.lex_state = 177, .external_lex_state = 115}, - [9056] = {.lex_state = 177, .external_lex_state = 115}, - [9057] = {.lex_state = 177, .external_lex_state = 99}, - [9058] = {.lex_state = 177, .external_lex_state = 115}, - [9059] = {.lex_state = 177, .external_lex_state = 115}, - [9060] = {.lex_state = 177, .external_lex_state = 115}, - [9061] = {.lex_state = 177, .external_lex_state = 115}, - [9062] = {.lex_state = 177, .external_lex_state = 115}, - [9063] = {.lex_state = 177, .external_lex_state = 115}, - [9064] = {.lex_state = 177, .external_lex_state = 115}, - [9065] = {.lex_state = 177, .external_lex_state = 115}, - [9066] = {.lex_state = 177, .external_lex_state = 115}, - [9067] = {.lex_state = 177, .external_lex_state = 115}, - [9068] = {.lex_state = 177, .external_lex_state = 115}, - [9069] = {.lex_state = 177, .external_lex_state = 115}, - [9070] = {.lex_state = 177, .external_lex_state = 115}, - [9071] = {.lex_state = 177, .external_lex_state = 115}, - [9072] = {.lex_state = 177, .external_lex_state = 115}, - [9073] = {.lex_state = 177, .external_lex_state = 115}, - [9074] = {.lex_state = 175, .external_lex_state = 99}, - [9075] = {.lex_state = 177, .external_lex_state = 115}, - [9076] = {.lex_state = 177, .external_lex_state = 115}, - [9077] = {.lex_state = 177, .external_lex_state = 115}, - [9078] = {.lex_state = 177, .external_lex_state = 115}, - [9079] = {.lex_state = 177, .external_lex_state = 115}, - [9080] = {.lex_state = 177, .external_lex_state = 115}, - [9081] = {.lex_state = 177, .external_lex_state = 115}, - [9082] = {.lex_state = 177, .external_lex_state = 115}, - [9083] = {.lex_state = 177, .external_lex_state = 115}, - [9084] = {.lex_state = 70, .external_lex_state = 99}, - [9085] = {.lex_state = 177, .external_lex_state = 115}, - [9086] = {.lex_state = 175, .external_lex_state = 113}, - [9087] = {.lex_state = 177, .external_lex_state = 115}, - [9088] = {.lex_state = 177, .external_lex_state = 120}, - [9089] = {.lex_state = 177, .external_lex_state = 120}, - [9090] = {.lex_state = 177, .external_lex_state = 115}, - [9091] = {.lex_state = 177, .external_lex_state = 120}, - [9092] = {.lex_state = 177, .external_lex_state = 115}, - [9093] = {.lex_state = 177, .external_lex_state = 120}, - [9094] = {.lex_state = 70, .external_lex_state = 99}, - [9095] = {.lex_state = 177, .external_lex_state = 115}, - [9096] = {.lex_state = 177, .external_lex_state = 115}, - [9097] = {.lex_state = 177, .external_lex_state = 120}, - [9098] = {.lex_state = 183, .external_lex_state = 99}, - [9099] = {.lex_state = 177, .external_lex_state = 115}, - [9100] = {.lex_state = 177, .external_lex_state = 115}, - [9101] = {.lex_state = 177, .external_lex_state = 115}, - [9102] = {.lex_state = 177, .external_lex_state = 115}, - [9103] = {.lex_state = 177, .external_lex_state = 115}, - [9104] = {.lex_state = 177, .external_lex_state = 115}, - [9105] = {.lex_state = 177, .external_lex_state = 115}, - [9106] = {.lex_state = 177, .external_lex_state = 115}, - [9107] = {.lex_state = 177, .external_lex_state = 115}, - [9108] = {.lex_state = 177, .external_lex_state = 115}, - [9109] = {.lex_state = 177, .external_lex_state = 115}, - [9110] = {.lex_state = 177, .external_lex_state = 115}, - [9111] = {.lex_state = 177, .external_lex_state = 115}, - [9112] = {.lex_state = 177, .external_lex_state = 115}, - [9113] = {.lex_state = 177, .external_lex_state = 115}, - [9114] = {.lex_state = 177, .external_lex_state = 115}, - [9115] = {.lex_state = 177, .external_lex_state = 115}, - [9116] = {.lex_state = 177, .external_lex_state = 115}, - [9117] = {.lex_state = 177, .external_lex_state = 115}, - [9118] = {.lex_state = 177, .external_lex_state = 115}, - [9119] = {.lex_state = 177, .external_lex_state = 115}, - [9120] = {.lex_state = 177, .external_lex_state = 115}, - [9121] = {.lex_state = 177, .external_lex_state = 115}, - [9122] = {.lex_state = 177, .external_lex_state = 115}, - [9123] = {.lex_state = 177, .external_lex_state = 115}, - [9124] = {.lex_state = 177, .external_lex_state = 115}, - [9125] = {.lex_state = 175, .external_lex_state = 113}, - [9126] = {.lex_state = 177, .external_lex_state = 123}, - [9127] = {.lex_state = 177, .external_lex_state = 120}, - [9128] = {.lex_state = 177, .external_lex_state = 120}, - [9129] = {.lex_state = 177, .external_lex_state = 115}, - [9130] = {.lex_state = 70, .external_lex_state = 99}, - [9131] = {.lex_state = 177, .external_lex_state = 115}, - [9132] = {.lex_state = 185, .external_lex_state = 117}, - [9133] = {.lex_state = 185, .external_lex_state = 117}, - [9134] = {.lex_state = 185, .external_lex_state = 117}, - [9135] = {.lex_state = 177, .external_lex_state = 115}, - [9136] = {.lex_state = 177, .external_lex_state = 115}, - [9137] = {.lex_state = 177, .external_lex_state = 115}, - [9138] = {.lex_state = 70, .external_lex_state = 99}, - [9139] = {.lex_state = 177, .external_lex_state = 115}, - [9140] = {.lex_state = 60, .external_lex_state = 124}, - [9141] = {.lex_state = 60, .external_lex_state = 125}, - [9142] = {.lex_state = 60, .external_lex_state = 125}, - [9143] = {.lex_state = 60, .external_lex_state = 125}, - [9144] = {.lex_state = 60, .external_lex_state = 125}, - [9145] = {.lex_state = 60, .external_lex_state = 126}, + [7873] = {.lex_state = 187, .external_lex_state = 114}, + [7874] = {.lex_state = 38, .external_lex_state = 99}, + [7875] = {.lex_state = 187, .external_lex_state = 114}, + [7876] = {.lex_state = 187, .external_lex_state = 114}, + [7877] = {.lex_state = 187, .external_lex_state = 114}, + [7878] = {.lex_state = 187, .external_lex_state = 114}, + [7879] = {.lex_state = 38, .external_lex_state = 99}, + [7880] = {.lex_state = 38, .external_lex_state = 99}, + [7881] = {.lex_state = 187, .external_lex_state = 114}, + [7882] = {.lex_state = 66, .external_lex_state = 99}, + [7883] = {.lex_state = 187, .external_lex_state = 114}, + [7884] = {.lex_state = 38, .external_lex_state = 99}, + [7885] = {.lex_state = 187, .external_lex_state = 114}, + [7886] = {.lex_state = 66, .external_lex_state = 99}, + [7887] = {.lex_state = 187, .external_lex_state = 114}, + [7888] = {.lex_state = 38, .external_lex_state = 99}, + [7889] = {.lex_state = 187, .external_lex_state = 114}, + [7890] = {.lex_state = 38, .external_lex_state = 99}, + [7891] = {.lex_state = 66, .external_lex_state = 99}, + [7892] = {.lex_state = 38, .external_lex_state = 99}, + [7893] = {.lex_state = 66, .external_lex_state = 99}, + [7894] = {.lex_state = 38, .external_lex_state = 99}, + [7895] = {.lex_state = 38, .external_lex_state = 99}, + [7896] = {.lex_state = 38, .external_lex_state = 99}, + [7897] = {.lex_state = 38, .external_lex_state = 99}, + [7898] = {.lex_state = 38, .external_lex_state = 99}, + [7899] = {.lex_state = 187, .external_lex_state = 114}, + [7900] = {.lex_state = 38, .external_lex_state = 99}, + [7901] = {.lex_state = 188, .external_lex_state = 115}, + [7902] = {.lex_state = 187, .external_lex_state = 114}, + [7903] = {.lex_state = 187, .external_lex_state = 114}, + [7904] = {.lex_state = 66, .external_lex_state = 99}, + [7905] = {.lex_state = 38, .external_lex_state = 99}, + [7906] = {.lex_state = 66, .external_lex_state = 99}, + [7907] = {.lex_state = 187, .external_lex_state = 114}, + [7908] = {.lex_state = 38, .external_lex_state = 99}, + [7909] = {.lex_state = 187, .external_lex_state = 114}, + [7910] = {.lex_state = 66, .external_lex_state = 99}, + [7911] = {.lex_state = 178, .external_lex_state = 113}, + [7912] = {.lex_state = 66, .external_lex_state = 99}, + [7913] = {.lex_state = 38, .external_lex_state = 99}, + [7914] = {.lex_state = 38, .external_lex_state = 99}, + [7915] = {.lex_state = 38, .external_lex_state = 99}, + [7916] = {.lex_state = 178, .external_lex_state = 99}, + [7917] = {.lex_state = 38, .external_lex_state = 99}, + [7918] = {.lex_state = 38, .external_lex_state = 99}, + [7919] = {.lex_state = 185, .external_lex_state = 113}, + [7920] = {.lex_state = 38, .external_lex_state = 99}, + [7921] = {.lex_state = 38, .external_lex_state = 99}, + [7922] = {.lex_state = 38, .external_lex_state = 99}, + [7923] = {.lex_state = 187, .external_lex_state = 114}, + [7924] = {.lex_state = 187, .external_lex_state = 99}, + [7925] = {.lex_state = 187, .external_lex_state = 114}, + [7926] = {.lex_state = 185, .external_lex_state = 113}, + [7927] = {.lex_state = 187, .external_lex_state = 114}, + [7928] = {.lex_state = 187, .external_lex_state = 114}, + [7929] = {.lex_state = 187, .external_lex_state = 114}, + [7930] = {.lex_state = 185, .external_lex_state = 113}, + [7931] = {.lex_state = 187, .external_lex_state = 115}, + [7932] = {.lex_state = 187, .external_lex_state = 114}, + [7933] = {.lex_state = 187, .external_lex_state = 114}, + [7934] = {.lex_state = 178, .external_lex_state = 99}, + [7935] = {.lex_state = 185, .external_lex_state = 113}, + [7936] = {.lex_state = 185, .external_lex_state = 113}, + [7937] = {.lex_state = 187, .external_lex_state = 115}, + [7938] = {.lex_state = 187, .external_lex_state = 115}, + [7939] = {.lex_state = 187, .external_lex_state = 115}, + [7940] = {.lex_state = 187, .external_lex_state = 99}, + [7941] = {.lex_state = 178, .external_lex_state = 113}, + [7942] = {.lex_state = 187, .external_lex_state = 115}, + [7943] = {.lex_state = 187, .external_lex_state = 115}, + [7944] = {.lex_state = 187, .external_lex_state = 99}, + [7945] = {.lex_state = 178, .external_lex_state = 99}, + [7946] = {.lex_state = 178, .external_lex_state = 99}, + [7947] = {.lex_state = 188, .external_lex_state = 115}, + [7948] = {.lex_state = 185, .external_lex_state = 113}, + [7949] = {.lex_state = 187, .external_lex_state = 99}, + [7950] = {.lex_state = 187, .external_lex_state = 115}, + [7951] = {.lex_state = 187, .external_lex_state = 99}, + [7952] = {.lex_state = 178, .external_lex_state = 99}, + [7953] = {.lex_state = 178, .external_lex_state = 99}, + [7954] = {.lex_state = 178, .external_lex_state = 99}, + [7955] = {.lex_state = 187, .external_lex_state = 114}, + [7956] = {.lex_state = 178, .external_lex_state = 99}, + [7957] = {.lex_state = 178, .external_lex_state = 99}, + [7958] = {.lex_state = 187, .external_lex_state = 115}, + [7959] = {.lex_state = 187, .external_lex_state = 99}, + [7960] = {.lex_state = 187, .external_lex_state = 99}, + [7961] = {.lex_state = 187, .external_lex_state = 99}, + [7962] = {.lex_state = 187, .external_lex_state = 114}, + [7963] = {.lex_state = 187, .external_lex_state = 115}, + [7964] = {.lex_state = 187, .external_lex_state = 115}, + [7965] = {.lex_state = 33, .external_lex_state = 116}, + [7966] = {.lex_state = 187, .external_lex_state = 115}, + [7967] = {.lex_state = 187, .external_lex_state = 115}, + [7968] = {.lex_state = 33, .external_lex_state = 116}, + [7969] = {.lex_state = 187, .external_lex_state = 115}, + [7970] = {.lex_state = 187, .external_lex_state = 115}, + [7971] = {.lex_state = 187, .external_lex_state = 115}, + [7972] = {.lex_state = 178, .external_lex_state = 113}, + [7973] = {.lex_state = 33, .external_lex_state = 116}, + [7974] = {.lex_state = 187, .external_lex_state = 115}, + [7975] = {.lex_state = 33, .external_lex_state = 116}, + [7976] = {.lex_state = 33, .external_lex_state = 116}, + [7977] = {.lex_state = 33, .external_lex_state = 116}, + [7978] = {.lex_state = 187, .external_lex_state = 115}, + [7979] = {.lex_state = 187, .external_lex_state = 115}, + [7980] = {.lex_state = 178, .external_lex_state = 113}, + [7981] = {.lex_state = 178, .external_lex_state = 113}, + [7982] = {.lex_state = 33, .external_lex_state = 116}, + [7983] = {.lex_state = 178, .external_lex_state = 113}, + [7984] = {.lex_state = 178, .external_lex_state = 113}, + [7985] = {.lex_state = 178, .external_lex_state = 113}, + [7986] = {.lex_state = 33, .external_lex_state = 116}, + [7987] = {.lex_state = 178, .external_lex_state = 113}, + [7988] = {.lex_state = 178, .external_lex_state = 113}, + [7989] = {.lex_state = 33, .external_lex_state = 116}, + [7990] = {.lex_state = 178, .external_lex_state = 113}, + [7991] = {.lex_state = 178, .external_lex_state = 113}, + [7992] = {.lex_state = 33, .external_lex_state = 116}, + [7993] = {.lex_state = 187, .external_lex_state = 115}, + [7994] = {.lex_state = 33, .external_lex_state = 116}, + [7995] = {.lex_state = 187, .external_lex_state = 115}, + [7996] = {.lex_state = 178, .external_lex_state = 113}, + [7997] = {.lex_state = 187, .external_lex_state = 115}, + [7998] = {.lex_state = 33, .external_lex_state = 116}, + [7999] = {.lex_state = 178, .external_lex_state = 113}, + [8000] = {.lex_state = 187, .external_lex_state = 115}, + [8001] = {.lex_state = 178, .external_lex_state = 113}, + [8002] = {.lex_state = 178, .external_lex_state = 99}, + [8003] = {.lex_state = 33, .external_lex_state = 116}, + [8004] = {.lex_state = 33, .external_lex_state = 116}, + [8005] = {.lex_state = 187, .external_lex_state = 115}, + [8006] = {.lex_state = 178, .external_lex_state = 113}, + [8007] = {.lex_state = 178, .external_lex_state = 99}, + [8008] = {.lex_state = 187, .external_lex_state = 115}, + [8009] = {.lex_state = 187, .external_lex_state = 115}, + [8010] = {.lex_state = 187, .external_lex_state = 115}, + [8011] = {.lex_state = 66, .external_lex_state = 99}, + [8012] = {.lex_state = 187, .external_lex_state = 99}, + [8013] = {.lex_state = 187, .external_lex_state = 99}, + [8014] = {.lex_state = 178, .external_lex_state = 113}, + [8015] = {.lex_state = 187, .external_lex_state = 99}, + [8016] = {.lex_state = 187, .external_lex_state = 99}, + [8017] = {.lex_state = 187, .external_lex_state = 115}, + [8018] = {.lex_state = 187, .external_lex_state = 115}, + [8019] = {.lex_state = 178, .external_lex_state = 113}, + [8020] = {.lex_state = 66, .external_lex_state = 99}, + [8021] = {.lex_state = 180, .external_lex_state = 113}, + [8022] = {.lex_state = 187, .external_lex_state = 115}, + [8023] = {.lex_state = 66, .external_lex_state = 99}, + [8024] = {.lex_state = 178, .external_lex_state = 113}, + [8025] = {.lex_state = 66, .external_lex_state = 99}, + [8026] = {.lex_state = 187, .external_lex_state = 115}, + [8027] = {.lex_state = 188, .external_lex_state = 117}, + [8028] = {.lex_state = 187, .external_lex_state = 115}, + [8029] = {.lex_state = 188, .external_lex_state = 117}, + [8030] = {.lex_state = 178, .external_lex_state = 113}, + [8031] = {.lex_state = 188, .external_lex_state = 117}, + [8032] = {.lex_state = 178, .external_lex_state = 113}, + [8033] = {.lex_state = 187, .external_lex_state = 99}, + [8034] = {.lex_state = 187, .external_lex_state = 115}, + [8035] = {.lex_state = 188, .external_lex_state = 117}, + [8036] = {.lex_state = 178, .external_lex_state = 113}, + [8037] = {.lex_state = 178, .external_lex_state = 113}, + [8038] = {.lex_state = 66, .external_lex_state = 99}, + [8039] = {.lex_state = 187, .external_lex_state = 99}, + [8040] = {.lex_state = 187, .external_lex_state = 99}, + [8041] = {.lex_state = 66, .external_lex_state = 99}, + [8042] = {.lex_state = 187, .external_lex_state = 99}, + [8043] = {.lex_state = 180, .external_lex_state = 113}, + [8044] = {.lex_state = 188, .external_lex_state = 117}, + [8045] = {.lex_state = 66, .external_lex_state = 99}, + [8046] = {.lex_state = 187, .external_lex_state = 115}, + [8047] = {.lex_state = 187, .external_lex_state = 99}, + [8048] = {.lex_state = 66, .external_lex_state = 99}, + [8049] = {.lex_state = 178, .external_lex_state = 113}, + [8050] = {.lex_state = 178, .external_lex_state = 113}, + [8051] = {.lex_state = 185, .external_lex_state = 114}, + [8052] = {.lex_state = 178, .external_lex_state = 113}, + [8053] = {.lex_state = 178, .external_lex_state = 113}, + [8054] = {.lex_state = 178, .external_lex_state = 113}, + [8055] = {.lex_state = 178, .external_lex_state = 113}, + [8056] = {.lex_state = 178, .external_lex_state = 118}, + [8057] = {.lex_state = 178, .external_lex_state = 113}, + [8058] = {.lex_state = 178, .external_lex_state = 113}, + [8059] = {.lex_state = 178, .external_lex_state = 113}, + [8060] = {.lex_state = 178, .external_lex_state = 113}, + [8061] = {.lex_state = 178, .external_lex_state = 113}, + [8062] = {.lex_state = 178, .external_lex_state = 118}, + [8063] = {.lex_state = 178, .external_lex_state = 113}, + [8064] = {.lex_state = 178, .external_lex_state = 113}, + [8065] = {.lex_state = 178, .external_lex_state = 113}, + [8066] = {.lex_state = 178, .external_lex_state = 113}, + [8067] = {.lex_state = 178, .external_lex_state = 113}, + [8068] = {.lex_state = 178, .external_lex_state = 113}, + [8069] = {.lex_state = 178, .external_lex_state = 113}, + [8070] = {.lex_state = 178, .external_lex_state = 118}, + [8071] = {.lex_state = 178, .external_lex_state = 113}, + [8072] = {.lex_state = 178, .external_lex_state = 113}, + [8073] = {.lex_state = 178, .external_lex_state = 113}, + [8074] = {.lex_state = 178, .external_lex_state = 113}, + [8075] = {.lex_state = 178, .external_lex_state = 113}, + [8076] = {.lex_state = 178, .external_lex_state = 113}, + [8077] = {.lex_state = 178, .external_lex_state = 113}, + [8078] = {.lex_state = 178, .external_lex_state = 113}, + [8079] = {.lex_state = 178, .external_lex_state = 113}, + [8080] = {.lex_state = 178, .external_lex_state = 113}, + [8081] = {.lex_state = 178, .external_lex_state = 113}, + [8082] = {.lex_state = 178, .external_lex_state = 118}, + [8083] = {.lex_state = 178, .external_lex_state = 113}, + [8084] = {.lex_state = 178, .external_lex_state = 113}, + [8085] = {.lex_state = 178, .external_lex_state = 113}, + [8086] = {.lex_state = 66, .external_lex_state = 99}, + [8087] = {.lex_state = 178, .external_lex_state = 113}, + [8088] = {.lex_state = 178, .external_lex_state = 113}, + [8089] = {.lex_state = 178, .external_lex_state = 113}, + [8090] = {.lex_state = 178, .external_lex_state = 118}, + [8091] = {.lex_state = 178, .external_lex_state = 113}, + [8092] = {.lex_state = 178, .external_lex_state = 113}, + [8093] = {.lex_state = 178, .external_lex_state = 113}, + [8094] = {.lex_state = 178, .external_lex_state = 113}, + [8095] = {.lex_state = 178, .external_lex_state = 113}, + [8096] = {.lex_state = 178, .external_lex_state = 113}, + [8097] = {.lex_state = 178, .external_lex_state = 118}, + [8098] = {.lex_state = 178, .external_lex_state = 113}, + [8099] = {.lex_state = 178, .external_lex_state = 113}, + [8100] = {.lex_state = 178, .external_lex_state = 118}, + [8101] = {.lex_state = 178, .external_lex_state = 113}, + [8102] = {.lex_state = 178, .external_lex_state = 113}, + [8103] = {.lex_state = 178, .external_lex_state = 113}, + [8104] = {.lex_state = 178, .external_lex_state = 113}, + [8105] = {.lex_state = 178, .external_lex_state = 113}, + [8106] = {.lex_state = 178, .external_lex_state = 113}, + [8107] = {.lex_state = 178, .external_lex_state = 113}, + [8108] = {.lex_state = 178, .external_lex_state = 113}, + [8109] = {.lex_state = 178, .external_lex_state = 118}, + [8110] = {.lex_state = 178, .external_lex_state = 113}, + [8111] = {.lex_state = 178, .external_lex_state = 113}, + [8112] = {.lex_state = 178, .external_lex_state = 113}, + [8113] = {.lex_state = 178, .external_lex_state = 113}, + [8114] = {.lex_state = 178, .external_lex_state = 113}, + [8115] = {.lex_state = 178, .external_lex_state = 113}, + [8116] = {.lex_state = 178, .external_lex_state = 113}, + [8117] = {.lex_state = 188, .external_lex_state = 117}, + [8118] = {.lex_state = 178, .external_lex_state = 113}, + [8119] = {.lex_state = 178, .external_lex_state = 118}, + [8120] = {.lex_state = 178, .external_lex_state = 113}, + [8121] = {.lex_state = 178, .external_lex_state = 113}, + [8122] = {.lex_state = 178, .external_lex_state = 113}, + [8123] = {.lex_state = 178, .external_lex_state = 118}, + [8124] = {.lex_state = 178, .external_lex_state = 113}, + [8125] = {.lex_state = 178, .external_lex_state = 113}, + [8126] = {.lex_state = 178, .external_lex_state = 113}, + [8127] = {.lex_state = 178, .external_lex_state = 113}, + [8128] = {.lex_state = 178, .external_lex_state = 118}, + [8129] = {.lex_state = 178, .external_lex_state = 113}, + [8130] = {.lex_state = 178, .external_lex_state = 113}, + [8131] = {.lex_state = 178, .external_lex_state = 113}, + [8132] = {.lex_state = 178, .external_lex_state = 113}, + [8133] = {.lex_state = 178, .external_lex_state = 113}, + [8134] = {.lex_state = 178, .external_lex_state = 118}, + [8135] = {.lex_state = 178, .external_lex_state = 113}, + [8136] = {.lex_state = 178, .external_lex_state = 118}, + [8137] = {.lex_state = 178, .external_lex_state = 113}, + [8138] = {.lex_state = 178, .external_lex_state = 113}, + [8139] = {.lex_state = 178, .external_lex_state = 113}, + [8140] = {.lex_state = 178, .external_lex_state = 113}, + [8141] = {.lex_state = 178, .external_lex_state = 113}, + [8142] = {.lex_state = 178, .external_lex_state = 113}, + [8143] = {.lex_state = 178, .external_lex_state = 113}, + [8144] = {.lex_state = 178, .external_lex_state = 114}, + [8145] = {.lex_state = 178, .external_lex_state = 113}, + [8146] = {.lex_state = 178, .external_lex_state = 113}, + [8147] = {.lex_state = 178, .external_lex_state = 113}, + [8148] = {.lex_state = 178, .external_lex_state = 113}, + [8149] = {.lex_state = 178, .external_lex_state = 113}, + [8150] = {.lex_state = 178, .external_lex_state = 113}, + [8151] = {.lex_state = 178, .external_lex_state = 113}, + [8152] = {.lex_state = 178, .external_lex_state = 113}, + [8153] = {.lex_state = 178, .external_lex_state = 113}, + [8154] = {.lex_state = 178, .external_lex_state = 113}, + [8155] = {.lex_state = 178, .external_lex_state = 113}, + [8156] = {.lex_state = 178, .external_lex_state = 113}, + [8157] = {.lex_state = 178, .external_lex_state = 113}, + [8158] = {.lex_state = 178, .external_lex_state = 113}, + [8159] = {.lex_state = 178, .external_lex_state = 113}, + [8160] = {.lex_state = 178, .external_lex_state = 113}, + [8161] = {.lex_state = 178, .external_lex_state = 113}, + [8162] = {.lex_state = 178, .external_lex_state = 113}, + [8163] = {.lex_state = 178, .external_lex_state = 113}, + [8164] = {.lex_state = 178, .external_lex_state = 118}, + [8165] = {.lex_state = 178, .external_lex_state = 113}, + [8166] = {.lex_state = 178, .external_lex_state = 113}, + [8167] = {.lex_state = 178, .external_lex_state = 113}, + [8168] = {.lex_state = 178, .external_lex_state = 113}, + [8169] = {.lex_state = 178, .external_lex_state = 113}, + [8170] = {.lex_state = 178, .external_lex_state = 113}, + [8171] = {.lex_state = 178, .external_lex_state = 113}, + [8172] = {.lex_state = 178, .external_lex_state = 113}, + [8173] = {.lex_state = 178, .external_lex_state = 113}, + [8174] = {.lex_state = 178, .external_lex_state = 113}, + [8175] = {.lex_state = 178, .external_lex_state = 113}, + [8176] = {.lex_state = 178, .external_lex_state = 113}, + [8177] = {.lex_state = 178, .external_lex_state = 113}, + [8178] = {.lex_state = 178, .external_lex_state = 113}, + [8179] = {.lex_state = 178, .external_lex_state = 118}, + [8180] = {.lex_state = 178, .external_lex_state = 113}, + [8181] = {.lex_state = 178, .external_lex_state = 113}, + [8182] = {.lex_state = 178, .external_lex_state = 113}, + [8183] = {.lex_state = 178, .external_lex_state = 113}, + [8184] = {.lex_state = 178, .external_lex_state = 113}, + [8185] = {.lex_state = 178, .external_lex_state = 113}, + [8186] = {.lex_state = 178, .external_lex_state = 113}, + [8187] = {.lex_state = 185, .external_lex_state = 114}, + [8188] = {.lex_state = 178, .external_lex_state = 113}, + [8189] = {.lex_state = 178, .external_lex_state = 113}, + [8190] = {.lex_state = 178, .external_lex_state = 113}, + [8191] = {.lex_state = 178, .external_lex_state = 113}, + [8192] = {.lex_state = 178, .external_lex_state = 118}, + [8193] = {.lex_state = 178, .external_lex_state = 113}, + [8194] = {.lex_state = 178, .external_lex_state = 118}, + [8195] = {.lex_state = 178, .external_lex_state = 113}, + [8196] = {.lex_state = 178, .external_lex_state = 113}, + [8197] = {.lex_state = 178, .external_lex_state = 113}, + [8198] = {.lex_state = 178, .external_lex_state = 113}, + [8199] = {.lex_state = 178, .external_lex_state = 118}, + [8200] = {.lex_state = 178, .external_lex_state = 113}, + [8201] = {.lex_state = 187, .external_lex_state = 99}, + [8202] = {.lex_state = 178, .external_lex_state = 113}, + [8203] = {.lex_state = 178, .external_lex_state = 113}, + [8204] = {.lex_state = 178, .external_lex_state = 113}, + [8205] = {.lex_state = 178, .external_lex_state = 113}, + [8206] = {.lex_state = 178, .external_lex_state = 113}, + [8207] = {.lex_state = 178, .external_lex_state = 113}, + [8208] = {.lex_state = 178, .external_lex_state = 113}, + [8209] = {.lex_state = 178, .external_lex_state = 113}, + [8210] = {.lex_state = 178, .external_lex_state = 113}, + [8211] = {.lex_state = 178, .external_lex_state = 113}, + [8212] = {.lex_state = 178, .external_lex_state = 113}, + [8213] = {.lex_state = 178, .external_lex_state = 113}, + [8214] = {.lex_state = 66, .external_lex_state = 99}, + [8215] = {.lex_state = 178, .external_lex_state = 113}, + [8216] = {.lex_state = 178, .external_lex_state = 113}, + [8217] = {.lex_state = 178, .external_lex_state = 113}, + [8218] = {.lex_state = 178, .external_lex_state = 113}, + [8219] = {.lex_state = 178, .external_lex_state = 118}, + [8220] = {.lex_state = 178, .external_lex_state = 113}, + [8221] = {.lex_state = 178, .external_lex_state = 113}, + [8222] = {.lex_state = 178, .external_lex_state = 113}, + [8223] = {.lex_state = 178, .external_lex_state = 118}, + [8224] = {.lex_state = 178, .external_lex_state = 113}, + [8225] = {.lex_state = 178, .external_lex_state = 113}, + [8226] = {.lex_state = 178, .external_lex_state = 113}, + [8227] = {.lex_state = 178, .external_lex_state = 113}, + [8228] = {.lex_state = 178, .external_lex_state = 113}, + [8229] = {.lex_state = 178, .external_lex_state = 113}, + [8230] = {.lex_state = 178, .external_lex_state = 113}, + [8231] = {.lex_state = 178, .external_lex_state = 113}, + [8232] = {.lex_state = 178, .external_lex_state = 113}, + [8233] = {.lex_state = 178, .external_lex_state = 113}, + [8234] = {.lex_state = 178, .external_lex_state = 113}, + [8235] = {.lex_state = 178, .external_lex_state = 113}, + [8236] = {.lex_state = 178, .external_lex_state = 113}, + [8237] = {.lex_state = 178, .external_lex_state = 113}, + [8238] = {.lex_state = 178, .external_lex_state = 113}, + [8239] = {.lex_state = 178, .external_lex_state = 113}, + [8240] = {.lex_state = 178, .external_lex_state = 113}, + [8241] = {.lex_state = 178, .external_lex_state = 113}, + [8242] = {.lex_state = 178, .external_lex_state = 113}, + [8243] = {.lex_state = 178, .external_lex_state = 113}, + [8244] = {.lex_state = 178, .external_lex_state = 113}, + [8245] = {.lex_state = 178, .external_lex_state = 113}, + [8246] = {.lex_state = 178, .external_lex_state = 113}, + [8247] = {.lex_state = 178, .external_lex_state = 113}, + [8248] = {.lex_state = 178, .external_lex_state = 113}, + [8249] = {.lex_state = 178, .external_lex_state = 113}, + [8250] = {.lex_state = 178, .external_lex_state = 113}, + [8251] = {.lex_state = 178, .external_lex_state = 113}, + [8252] = {.lex_state = 178, .external_lex_state = 113}, + [8253] = {.lex_state = 178, .external_lex_state = 113}, + [8254] = {.lex_state = 178, .external_lex_state = 113}, + [8255] = {.lex_state = 178, .external_lex_state = 113}, + [8256] = {.lex_state = 178, .external_lex_state = 113}, + [8257] = {.lex_state = 178, .external_lex_state = 113}, + [8258] = {.lex_state = 178, .external_lex_state = 113}, + [8259] = {.lex_state = 178, .external_lex_state = 113}, + [8260] = {.lex_state = 178, .external_lex_state = 113}, + [8261] = {.lex_state = 178, .external_lex_state = 113}, + [8262] = {.lex_state = 178, .external_lex_state = 113}, + [8263] = {.lex_state = 178, .external_lex_state = 113}, + [8264] = {.lex_state = 178, .external_lex_state = 118}, + [8265] = {.lex_state = 178, .external_lex_state = 113}, + [8266] = {.lex_state = 178, .external_lex_state = 118}, + [8267] = {.lex_state = 178, .external_lex_state = 113}, + [8268] = {.lex_state = 178, .external_lex_state = 113}, + [8269] = {.lex_state = 178, .external_lex_state = 113}, + [8270] = {.lex_state = 178, .external_lex_state = 113}, + [8271] = {.lex_state = 178, .external_lex_state = 113}, + [8272] = {.lex_state = 178, .external_lex_state = 113}, + [8273] = {.lex_state = 178, .external_lex_state = 113}, + [8274] = {.lex_state = 178, .external_lex_state = 113}, + [8275] = {.lex_state = 178, .external_lex_state = 113}, + [8276] = {.lex_state = 178, .external_lex_state = 113}, + [8277] = {.lex_state = 178, .external_lex_state = 113}, + [8278] = {.lex_state = 178, .external_lex_state = 113}, + [8279] = {.lex_state = 178, .external_lex_state = 113}, + [8280] = {.lex_state = 178, .external_lex_state = 113}, + [8281] = {.lex_state = 178, .external_lex_state = 113}, + [8282] = {.lex_state = 178, .external_lex_state = 113}, + [8283] = {.lex_state = 178, .external_lex_state = 113}, + [8284] = {.lex_state = 185, .external_lex_state = 114}, + [8285] = {.lex_state = 185, .external_lex_state = 114}, + [8286] = {.lex_state = 185, .external_lex_state = 114}, + [8287] = {.lex_state = 178, .external_lex_state = 99}, + [8288] = {.lex_state = 185, .external_lex_state = 114}, + [8289] = {.lex_state = 178, .external_lex_state = 99}, + [8290] = {.lex_state = 185, .external_lex_state = 114}, + [8291] = {.lex_state = 178, .external_lex_state = 114}, + [8292] = {.lex_state = 176, .external_lex_state = 99}, + [8293] = {.lex_state = 188, .external_lex_state = 116}, + [8294] = {.lex_state = 178, .external_lex_state = 114}, + [8295] = {.lex_state = 178, .external_lex_state = 114}, + [8296] = {.lex_state = 178, .external_lex_state = 114}, + [8297] = {.lex_state = 188, .external_lex_state = 99}, + [8298] = {.lex_state = 178, .external_lex_state = 114}, + [8299] = {.lex_state = 178, .external_lex_state = 114}, + [8300] = {.lex_state = 178, .external_lex_state = 114}, + [8301] = {.lex_state = 176, .external_lex_state = 99}, + [8302] = {.lex_state = 178, .external_lex_state = 114}, + [8303] = {.lex_state = 178, .external_lex_state = 114}, + [8304] = {.lex_state = 185, .external_lex_state = 115}, + [8305] = {.lex_state = 185, .external_lex_state = 115}, + [8306] = {.lex_state = 178, .external_lex_state = 114}, + [8307] = {.lex_state = 176, .external_lex_state = 99}, + [8308] = {.lex_state = 178, .external_lex_state = 115}, + [8309] = {.lex_state = 176, .external_lex_state = 99}, + [8310] = {.lex_state = 176, .external_lex_state = 99}, + [8311] = {.lex_state = 188, .external_lex_state = 116}, + [8312] = {.lex_state = 188, .external_lex_state = 116}, + [8313] = {.lex_state = 176, .external_lex_state = 99}, + [8314] = {.lex_state = 178, .external_lex_state = 114}, + [8315] = {.lex_state = 188, .external_lex_state = 116}, + [8316] = {.lex_state = 188, .external_lex_state = 116}, + [8317] = {.lex_state = 176, .external_lex_state = 99}, + [8318] = {.lex_state = 176, .external_lex_state = 99}, + [8319] = {.lex_state = 178, .external_lex_state = 99}, + [8320] = {.lex_state = 178, .external_lex_state = 114}, + [8321] = {.lex_state = 178, .external_lex_state = 114}, + [8322] = {.lex_state = 178, .external_lex_state = 114}, + [8323] = {.lex_state = 178, .external_lex_state = 114}, + [8324] = {.lex_state = 178, .external_lex_state = 114}, + [8325] = {.lex_state = 176, .external_lex_state = 99}, + [8326] = {.lex_state = 180, .external_lex_state = 114}, + [8327] = {.lex_state = 176, .external_lex_state = 99}, + [8328] = {.lex_state = 187, .external_lex_state = 117}, + [8329] = {.lex_state = 187, .external_lex_state = 117}, + [8330] = {.lex_state = 185, .external_lex_state = 115}, + [8331] = {.lex_state = 178, .external_lex_state = 114}, + [8332] = {.lex_state = 178, .external_lex_state = 114}, + [8333] = {.lex_state = 178, .external_lex_state = 114}, + [8334] = {.lex_state = 180, .external_lex_state = 114}, + [8335] = {.lex_state = 188, .external_lex_state = 116}, + [8336] = {.lex_state = 178, .external_lex_state = 99}, + [8337] = {.lex_state = 178, .external_lex_state = 114}, + [8338] = {.lex_state = 176, .external_lex_state = 99}, + [8339] = {.lex_state = 176, .external_lex_state = 99}, + [8340] = {.lex_state = 187, .external_lex_state = 117}, + [8341] = {.lex_state = 188, .external_lex_state = 117}, + [8342] = {.lex_state = 187, .external_lex_state = 117}, + [8343] = {.lex_state = 187, .external_lex_state = 119}, + [8344] = {.lex_state = 187, .external_lex_state = 117}, + [8345] = {.lex_state = 187, .external_lex_state = 117}, + [8346] = {.lex_state = 176, .external_lex_state = 99}, + [8347] = {.lex_state = 176, .external_lex_state = 99}, + [8348] = {.lex_state = 184, .external_lex_state = 99}, + [8349] = {.lex_state = 185, .external_lex_state = 115}, + [8350] = {.lex_state = 187, .external_lex_state = 117}, + [8351] = {.lex_state = 178, .external_lex_state = 114}, + [8352] = {.lex_state = 187, .external_lex_state = 117}, + [8353] = {.lex_state = 178, .external_lex_state = 115}, + [8354] = {.lex_state = 178, .external_lex_state = 114}, + [8355] = {.lex_state = 178, .external_lex_state = 114}, + [8356] = {.lex_state = 178, .external_lex_state = 99}, + [8357] = {.lex_state = 176, .external_lex_state = 99}, + [8358] = {.lex_state = 185, .external_lex_state = 115}, + [8359] = {.lex_state = 187, .external_lex_state = 117}, + [8360] = {.lex_state = 185, .external_lex_state = 115}, + [8361] = {.lex_state = 187, .external_lex_state = 117}, + [8362] = {.lex_state = 185, .external_lex_state = 115}, + [8363] = {.lex_state = 176, .external_lex_state = 99}, + [8364] = {.lex_state = 178, .external_lex_state = 114}, + [8365] = {.lex_state = 188, .external_lex_state = 116}, + [8366] = {.lex_state = 178, .external_lex_state = 115}, + [8367] = {.lex_state = 187, .external_lex_state = 116}, + [8368] = {.lex_state = 187, .external_lex_state = 116}, + [8369] = {.lex_state = 178, .external_lex_state = 114}, + [8370] = {.lex_state = 178, .external_lex_state = 114}, + [8371] = {.lex_state = 178, .external_lex_state = 114}, + [8372] = {.lex_state = 187, .external_lex_state = 116}, + [8373] = {.lex_state = 178, .external_lex_state = 114}, + [8374] = {.lex_state = 187, .external_lex_state = 117}, + [8375] = {.lex_state = 187, .external_lex_state = 120}, + [8376] = {.lex_state = 178, .external_lex_state = 114}, + [8377] = {.lex_state = 178, .external_lex_state = 114}, + [8378] = {.lex_state = 178, .external_lex_state = 114}, + [8379] = {.lex_state = 178, .external_lex_state = 114}, + [8380] = {.lex_state = 187, .external_lex_state = 117}, + [8381] = {.lex_state = 178, .external_lex_state = 114}, + [8382] = {.lex_state = 178, .external_lex_state = 114}, + [8383] = {.lex_state = 178, .external_lex_state = 114}, + [8384] = {.lex_state = 178, .external_lex_state = 114}, + [8385] = {.lex_state = 178, .external_lex_state = 114}, + [8386] = {.lex_state = 178, .external_lex_state = 114}, + [8387] = {.lex_state = 178, .external_lex_state = 114}, + [8388] = {.lex_state = 178, .external_lex_state = 114}, + [8389] = {.lex_state = 187, .external_lex_state = 117}, + [8390] = {.lex_state = 178, .external_lex_state = 114}, + [8391] = {.lex_state = 187, .external_lex_state = 117}, + [8392] = {.lex_state = 178, .external_lex_state = 114}, + [8393] = {.lex_state = 178, .external_lex_state = 114}, + [8394] = {.lex_state = 178, .external_lex_state = 114}, + [8395] = {.lex_state = 178, .external_lex_state = 114}, + [8396] = {.lex_state = 178, .external_lex_state = 115}, + [8397] = {.lex_state = 178, .external_lex_state = 115}, + [8398] = {.lex_state = 178, .external_lex_state = 114}, + [8399] = {.lex_state = 178, .external_lex_state = 114}, + [8400] = {.lex_state = 178, .external_lex_state = 114}, + [8401] = {.lex_state = 178, .external_lex_state = 114}, + [8402] = {.lex_state = 178, .external_lex_state = 114}, + [8403] = {.lex_state = 178, .external_lex_state = 114}, + [8404] = {.lex_state = 178, .external_lex_state = 114}, + [8405] = {.lex_state = 178, .external_lex_state = 114}, + [8406] = {.lex_state = 178, .external_lex_state = 114}, + [8407] = {.lex_state = 178, .external_lex_state = 114}, + [8408] = {.lex_state = 178, .external_lex_state = 114}, + [8409] = {.lex_state = 178, .external_lex_state = 114}, + [8410] = {.lex_state = 178, .external_lex_state = 114}, + [8411] = {.lex_state = 178, .external_lex_state = 114}, + [8412] = {.lex_state = 178, .external_lex_state = 114}, + [8413] = {.lex_state = 178, .external_lex_state = 114}, + [8414] = {.lex_state = 178, .external_lex_state = 114}, + [8415] = {.lex_state = 178, .external_lex_state = 114}, + [8416] = {.lex_state = 178, .external_lex_state = 114}, + [8417] = {.lex_state = 178, .external_lex_state = 114}, + [8418] = {.lex_state = 178, .external_lex_state = 114}, + [8419] = {.lex_state = 178, .external_lex_state = 114}, + [8420] = {.lex_state = 178, .external_lex_state = 114}, + [8421] = {.lex_state = 178, .external_lex_state = 114}, + [8422] = {.lex_state = 178, .external_lex_state = 114}, + [8423] = {.lex_state = 187, .external_lex_state = 116}, + [8424] = {.lex_state = 178, .external_lex_state = 115}, + [8425] = {.lex_state = 187, .external_lex_state = 116}, + [8426] = {.lex_state = 178, .external_lex_state = 114}, + [8427] = {.lex_state = 178, .external_lex_state = 114}, + [8428] = {.lex_state = 178, .external_lex_state = 114}, + [8429] = {.lex_state = 178, .external_lex_state = 114}, + [8430] = {.lex_state = 178, .external_lex_state = 114}, + [8431] = {.lex_state = 178, .external_lex_state = 114}, + [8432] = {.lex_state = 178, .external_lex_state = 114}, + [8433] = {.lex_state = 178, .external_lex_state = 114}, + [8434] = {.lex_state = 178, .external_lex_state = 114}, + [8435] = {.lex_state = 178, .external_lex_state = 114}, + [8436] = {.lex_state = 178, .external_lex_state = 114}, + [8437] = {.lex_state = 178, .external_lex_state = 114}, + [8438] = {.lex_state = 178, .external_lex_state = 114}, + [8439] = {.lex_state = 178, .external_lex_state = 114}, + [8440] = {.lex_state = 178, .external_lex_state = 114}, + [8441] = {.lex_state = 178, .external_lex_state = 114}, + [8442] = {.lex_state = 178, .external_lex_state = 114}, + [8443] = {.lex_state = 178, .external_lex_state = 114}, + [8444] = {.lex_state = 187, .external_lex_state = 117}, + [8445] = {.lex_state = 187, .external_lex_state = 117}, + [8446] = {.lex_state = 178, .external_lex_state = 114}, + [8447] = {.lex_state = 178, .external_lex_state = 114}, + [8448] = {.lex_state = 178, .external_lex_state = 114}, + [8449] = {.lex_state = 178, .external_lex_state = 114}, + [8450] = {.lex_state = 178, .external_lex_state = 114}, + [8451] = {.lex_state = 178, .external_lex_state = 114}, + [8452] = {.lex_state = 178, .external_lex_state = 114}, + [8453] = {.lex_state = 187, .external_lex_state = 117}, + [8454] = {.lex_state = 178, .external_lex_state = 114}, + [8455] = {.lex_state = 187, .external_lex_state = 117}, + [8456] = {.lex_state = 178, .external_lex_state = 114}, + [8457] = {.lex_state = 178, .external_lex_state = 114}, + [8458] = {.lex_state = 178, .external_lex_state = 114}, + [8459] = {.lex_state = 178, .external_lex_state = 114}, + [8460] = {.lex_state = 178, .external_lex_state = 115}, + [8461] = {.lex_state = 178, .external_lex_state = 114}, + [8462] = {.lex_state = 178, .external_lex_state = 114}, + [8463] = {.lex_state = 178, .external_lex_state = 114}, + [8464] = {.lex_state = 178, .external_lex_state = 114}, + [8465] = {.lex_state = 178, .external_lex_state = 114}, + [8466] = {.lex_state = 178, .external_lex_state = 114}, + [8467] = {.lex_state = 178, .external_lex_state = 114}, + [8468] = {.lex_state = 178, .external_lex_state = 114}, + [8469] = {.lex_state = 178, .external_lex_state = 114}, + [8470] = {.lex_state = 178, .external_lex_state = 114}, + [8471] = {.lex_state = 178, .external_lex_state = 114}, + [8472] = {.lex_state = 178, .external_lex_state = 114}, + [8473] = {.lex_state = 178, .external_lex_state = 114}, + [8474] = {.lex_state = 178, .external_lex_state = 114}, + [8475] = {.lex_state = 178, .external_lex_state = 114}, + [8476] = {.lex_state = 178, .external_lex_state = 114}, + [8477] = {.lex_state = 178, .external_lex_state = 114}, + [8478] = {.lex_state = 178, .external_lex_state = 114}, + [8479] = {.lex_state = 178, .external_lex_state = 114}, + [8480] = {.lex_state = 178, .external_lex_state = 114}, + [8481] = {.lex_state = 178, .external_lex_state = 115}, + [8482] = {.lex_state = 178, .external_lex_state = 115}, + [8483] = {.lex_state = 178, .external_lex_state = 114}, + [8484] = {.lex_state = 178, .external_lex_state = 114}, + [8485] = {.lex_state = 178, .external_lex_state = 114}, + [8486] = {.lex_state = 178, .external_lex_state = 114}, + [8487] = {.lex_state = 178, .external_lex_state = 114}, + [8488] = {.lex_state = 187, .external_lex_state = 117}, + [8489] = {.lex_state = 178, .external_lex_state = 114}, + [8490] = {.lex_state = 178, .external_lex_state = 114}, + [8491] = {.lex_state = 178, .external_lex_state = 114}, + [8492] = {.lex_state = 178, .external_lex_state = 114}, + [8493] = {.lex_state = 178, .external_lex_state = 114}, + [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 = 114}, + [8500] = {.lex_state = 178, .external_lex_state = 114}, + [8501] = {.lex_state = 178, .external_lex_state = 114}, + [8502] = {.lex_state = 178, .external_lex_state = 114}, + [8503] = {.lex_state = 178, .external_lex_state = 114}, + [8504] = {.lex_state = 178, .external_lex_state = 114}, + [8505] = {.lex_state = 178, .external_lex_state = 114}, + [8506] = {.lex_state = 178, .external_lex_state = 114}, + [8507] = {.lex_state = 178, .external_lex_state = 114}, + [8508] = {.lex_state = 178, .external_lex_state = 114}, + [8509] = {.lex_state = 178, .external_lex_state = 114}, + [8510] = {.lex_state = 178, .external_lex_state = 114}, + [8511] = {.lex_state = 178, .external_lex_state = 114}, + [8512] = {.lex_state = 178, .external_lex_state = 114}, + [8513] = {.lex_state = 178, .external_lex_state = 114}, + [8514] = {.lex_state = 178, .external_lex_state = 114}, + [8515] = {.lex_state = 178, .external_lex_state = 114}, + [8516] = {.lex_state = 178, .external_lex_state = 114}, + [8517] = {.lex_state = 178, .external_lex_state = 114}, + [8518] = {.lex_state = 178, .external_lex_state = 114}, + [8519] = {.lex_state = 178, .external_lex_state = 114}, + [8520] = {.lex_state = 178, .external_lex_state = 114}, + [8521] = {.lex_state = 178, .external_lex_state = 115}, + [8522] = {.lex_state = 178, .external_lex_state = 114}, + [8523] = {.lex_state = 178, .external_lex_state = 114}, + [8524] = {.lex_state = 178, .external_lex_state = 115}, + [8525] = {.lex_state = 178, .external_lex_state = 114}, + [8526] = {.lex_state = 178, .external_lex_state = 114}, + [8527] = {.lex_state = 178, .external_lex_state = 114}, + [8528] = {.lex_state = 178, .external_lex_state = 114}, + [8529] = {.lex_state = 178, .external_lex_state = 114}, + [8530] = {.lex_state = 178, .external_lex_state = 115}, + [8531] = {.lex_state = 178, .external_lex_state = 114}, + [8532] = {.lex_state = 178, .external_lex_state = 115}, + [8533] = {.lex_state = 178, .external_lex_state = 115}, + [8534] = {.lex_state = 178, .external_lex_state = 114}, + [8535] = {.lex_state = 187, .external_lex_state = 117}, + [8536] = {.lex_state = 187, .external_lex_state = 117}, + [8537] = {.lex_state = 187, .external_lex_state = 117}, + [8538] = {.lex_state = 178, .external_lex_state = 115}, + [8539] = {.lex_state = 178, .external_lex_state = 114}, + [8540] = {.lex_state = 178, .external_lex_state = 114}, + [8541] = {.lex_state = 178, .external_lex_state = 114}, + [8542] = {.lex_state = 178, .external_lex_state = 114}, + [8543] = {.lex_state = 178, .external_lex_state = 114}, + [8544] = {.lex_state = 178, .external_lex_state = 114}, + [8545] = {.lex_state = 178, .external_lex_state = 114}, + [8546] = {.lex_state = 178, .external_lex_state = 114}, + [8547] = {.lex_state = 178, .external_lex_state = 114}, + [8548] = {.lex_state = 187, .external_lex_state = 116}, + [8549] = {.lex_state = 178, .external_lex_state = 114}, + [8550] = {.lex_state = 178, .external_lex_state = 114}, + [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 = 178, .external_lex_state = 114}, + [8556] = {.lex_state = 178, .external_lex_state = 114}, + [8557] = {.lex_state = 178, .external_lex_state = 114}, + [8558] = {.lex_state = 178, .external_lex_state = 114}, + [8559] = {.lex_state = 187, .external_lex_state = 116}, + [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}, + [8565] = {.lex_state = 178, .external_lex_state = 114}, + [8566] = {.lex_state = 178, .external_lex_state = 114}, + [8567] = {.lex_state = 178, .external_lex_state = 114}, + [8568] = {.lex_state = 178, .external_lex_state = 114}, + [8569] = {.lex_state = 178, .external_lex_state = 114}, + [8570] = {.lex_state = 178, .external_lex_state = 114}, + [8571] = {.lex_state = 187, .external_lex_state = 116}, + [8572] = {.lex_state = 178, .external_lex_state = 114}, + [8573] = {.lex_state = 178, .external_lex_state = 114}, + [8574] = {.lex_state = 178, .external_lex_state = 114}, + [8575] = {.lex_state = 178, .external_lex_state = 114}, + [8576] = {.lex_state = 187, .external_lex_state = 117}, + [8577] = {.lex_state = 187, .external_lex_state = 117}, + [8578] = {.lex_state = 178, .external_lex_state = 114}, + [8579] = {.lex_state = 178, .external_lex_state = 114}, + [8580] = {.lex_state = 178, .external_lex_state = 114}, + [8581] = {.lex_state = 178, .external_lex_state = 114}, + [8582] = {.lex_state = 178, .external_lex_state = 114}, + [8583] = {.lex_state = 178, .external_lex_state = 114}, + [8584] = {.lex_state = 178, .external_lex_state = 114}, + [8585] = {.lex_state = 178, .external_lex_state = 114}, + [8586] = {.lex_state = 178, .external_lex_state = 114}, + [8587] = {.lex_state = 178, .external_lex_state = 114}, + [8588] = {.lex_state = 178, .external_lex_state = 114}, + [8589] = {.lex_state = 178, .external_lex_state = 114}, + [8590] = {.lex_state = 178, .external_lex_state = 114}, + [8591] = {.lex_state = 178, .external_lex_state = 114}, + [8592] = {.lex_state = 178, .external_lex_state = 114}, + [8593] = {.lex_state = 178, .external_lex_state = 114}, + [8594] = {.lex_state = 178, .external_lex_state = 114}, + [8595] = {.lex_state = 178, .external_lex_state = 114}, + [8596] = {.lex_state = 178, .external_lex_state = 114}, + [8597] = {.lex_state = 178, .external_lex_state = 114}, + [8598] = {.lex_state = 178, .external_lex_state = 114}, + [8599] = {.lex_state = 178, .external_lex_state = 114}, + [8600] = {.lex_state = 178, .external_lex_state = 114}, + [8601] = {.lex_state = 178, .external_lex_state = 114}, + [8602] = {.lex_state = 178, .external_lex_state = 114}, + [8603] = {.lex_state = 178, .external_lex_state = 114}, + [8604] = {.lex_state = 178, .external_lex_state = 114}, + [8605] = {.lex_state = 178, .external_lex_state = 114}, + [8606] = {.lex_state = 178, .external_lex_state = 115}, + [8607] = {.lex_state = 187, .external_lex_state = 117}, + [8608] = {.lex_state = 178, .external_lex_state = 121}, + [8609] = {.lex_state = 178, .external_lex_state = 115}, + [8610] = {.lex_state = 34, .external_lex_state = 122}, + [8611] = {.lex_state = 34, .external_lex_state = 122}, + [8612] = {.lex_state = 34, .external_lex_state = 122}, + [8613] = {.lex_state = 187, .external_lex_state = 116}, + [8614] = {.lex_state = 178, .external_lex_state = 121}, + [8615] = {.lex_state = 178, .external_lex_state = 121}, + [8616] = {.lex_state = 187, .external_lex_state = 117}, + [8617] = {.lex_state = 178, .external_lex_state = 121}, + [8618] = {.lex_state = 178, .external_lex_state = 121}, + [8619] = {.lex_state = 34, .external_lex_state = 122}, + [8620] = {.lex_state = 34, .external_lex_state = 122}, + [8621] = {.lex_state = 34, .external_lex_state = 122}, + [8622] = {.lex_state = 178, .external_lex_state = 121}, + [8623] = {.lex_state = 178, .external_lex_state = 121}, + [8624] = {.lex_state = 34, .external_lex_state = 122}, + [8625] = {.lex_state = 34, .external_lex_state = 122}, + [8626] = {.lex_state = 34, .external_lex_state = 122}, + [8627] = {.lex_state = 178, .external_lex_state = 121}, + [8628] = {.lex_state = 34, .external_lex_state = 122}, + [8629] = {.lex_state = 178, .external_lex_state = 121}, + [8630] = {.lex_state = 34, .external_lex_state = 122}, + [8631] = {.lex_state = 34, .external_lex_state = 122}, + [8632] = {.lex_state = 178, .external_lex_state = 99}, + [8633] = {.lex_state = 34, .external_lex_state = 122}, + [8634] = {.lex_state = 187, .external_lex_state = 116}, + [8635] = {.lex_state = 178, .external_lex_state = 99}, + [8636] = {.lex_state = 178, .external_lex_state = 99}, + [8637] = {.lex_state = 34, .external_lex_state = 122}, + [8638] = {.lex_state = 178, .external_lex_state = 121}, + [8639] = {.lex_state = 178, .external_lex_state = 121}, + [8640] = {.lex_state = 34, .external_lex_state = 122}, + [8641] = {.lex_state = 178, .external_lex_state = 121}, + [8642] = {.lex_state = 178, .external_lex_state = 121}, + [8643] = {.lex_state = 187, .external_lex_state = 116}, + [8644] = {.lex_state = 178, .external_lex_state = 99}, + [8645] = {.lex_state = 187, .external_lex_state = 116}, + [8646] = {.lex_state = 187, .external_lex_state = 117}, + [8647] = {.lex_state = 34, .external_lex_state = 122}, + [8648] = {.lex_state = 34, .external_lex_state = 122}, + [8649] = {.lex_state = 174, .external_lex_state = 99}, + [8650] = {.lex_state = 34, .external_lex_state = 122}, + [8651] = {.lex_state = 178, .external_lex_state = 121}, + [8652] = {.lex_state = 178, .external_lex_state = 121}, + [8653] = {.lex_state = 178, .external_lex_state = 99}, + [8654] = {.lex_state = 176, .external_lex_state = 99}, + [8655] = {.lex_state = 34, .external_lex_state = 122}, + [8656] = {.lex_state = 178, .external_lex_state = 99}, + [8657] = {.lex_state = 34, .external_lex_state = 122}, + [8658] = {.lex_state = 178, .external_lex_state = 99}, + [8659] = {.lex_state = 178, .external_lex_state = 121}, + [8660] = {.lex_state = 178, .external_lex_state = 99}, + [8661] = {.lex_state = 178, .external_lex_state = 121}, + [8662] = {.lex_state = 187, .external_lex_state = 116}, + [8663] = {.lex_state = 178, .external_lex_state = 121}, + [8664] = {.lex_state = 34, .external_lex_state = 122}, + [8665] = {.lex_state = 34, .external_lex_state = 122}, + [8666] = {.lex_state = 178, .external_lex_state = 121}, + [8667] = {.lex_state = 34, .external_lex_state = 122}, + [8668] = {.lex_state = 34, .external_lex_state = 122}, + [8669] = {.lex_state = 187, .external_lex_state = 117}, + [8670] = {.lex_state = 178, .external_lex_state = 99}, + [8671] = {.lex_state = 187, .external_lex_state = 117}, + [8672] = {.lex_state = 34, .external_lex_state = 122}, + [8673] = {.lex_state = 187, .external_lex_state = 117}, + [8674] = {.lex_state = 34, .external_lex_state = 122}, + [8675] = {.lex_state = 178, .external_lex_state = 121}, + [8676] = {.lex_state = 187, .external_lex_state = 117}, + [8677] = {.lex_state = 34, .external_lex_state = 122}, + [8678] = {.lex_state = 178, .external_lex_state = 121}, + [8679] = {.lex_state = 178, .external_lex_state = 121}, + [8680] = {.lex_state = 178, .external_lex_state = 121}, + [8681] = {.lex_state = 66, .external_lex_state = 99}, + [8682] = {.lex_state = 178, .external_lex_state = 115}, + [8683] = {.lex_state = 178, .external_lex_state = 121}, + [8684] = {.lex_state = 34, .external_lex_state = 122}, + [8685] = {.lex_state = 178, .external_lex_state = 99}, + [8686] = {.lex_state = 178, .external_lex_state = 121}, + [8687] = {.lex_state = 178, .external_lex_state = 115}, + [8688] = {.lex_state = 178, .external_lex_state = 99}, + [8689] = {.lex_state = 34, .external_lex_state = 122}, + [8690] = {.lex_state = 178, .external_lex_state = 121}, + [8691] = {.lex_state = 34, .external_lex_state = 122}, + [8692] = {.lex_state = 178, .external_lex_state = 115}, + [8693] = {.lex_state = 34, .external_lex_state = 122}, + [8694] = {.lex_state = 34, .external_lex_state = 122}, + [8695] = {.lex_state = 34, .external_lex_state = 122}, + [8696] = {.lex_state = 34, .external_lex_state = 122}, + [8697] = {.lex_state = 34, .external_lex_state = 122}, + [8698] = {.lex_state = 180, .external_lex_state = 115}, + [8699] = {.lex_state = 178, .external_lex_state = 99}, + [8700] = {.lex_state = 180, .external_lex_state = 115}, + [8701] = {.lex_state = 34, .external_lex_state = 122}, + [8702] = {.lex_state = 34, .external_lex_state = 122}, + [8703] = {.lex_state = 187, .external_lex_state = 117}, + [8704] = {.lex_state = 34, .external_lex_state = 122}, + [8705] = {.lex_state = 187, .external_lex_state = 119}, + [8706] = {.lex_state = 34, .external_lex_state = 122}, + [8707] = {.lex_state = 34, .external_lex_state = 122}, + [8708] = {.lex_state = 178, .external_lex_state = 121}, + [8709] = {.lex_state = 34, .external_lex_state = 122}, + [8710] = {.lex_state = 34, .external_lex_state = 122}, + [8711] = {.lex_state = 178, .external_lex_state = 99}, + [8712] = {.lex_state = 34, .external_lex_state = 122}, + [8713] = {.lex_state = 34, .external_lex_state = 122}, + [8714] = {.lex_state = 187, .external_lex_state = 116}, + [8715] = {.lex_state = 178, .external_lex_state = 121}, + [8716] = {.lex_state = 178, .external_lex_state = 121}, + [8717] = {.lex_state = 178, .external_lex_state = 115}, + [8718] = {.lex_state = 34, .external_lex_state = 122}, + [8719] = {.lex_state = 178, .external_lex_state = 99}, + [8720] = {.lex_state = 34, .external_lex_state = 122}, + [8721] = {.lex_state = 187, .external_lex_state = 119}, + [8722] = {.lex_state = 178, .external_lex_state = 121}, + [8723] = {.lex_state = 34, .external_lex_state = 122}, + [8724] = {.lex_state = 178, .external_lex_state = 121}, + [8725] = {.lex_state = 34, .external_lex_state = 122}, + [8726] = {.lex_state = 34, .external_lex_state = 122}, + [8727] = {.lex_state = 178, .external_lex_state = 121}, + [8728] = {.lex_state = 34, .external_lex_state = 122}, + [8729] = {.lex_state = 178, .external_lex_state = 115}, + [8730] = {.lex_state = 178, .external_lex_state = 99}, + [8731] = {.lex_state = 178, .external_lex_state = 115}, + [8732] = {.lex_state = 178, .external_lex_state = 121}, + [8733] = {.lex_state = 34, .external_lex_state = 122}, + [8734] = {.lex_state = 178, .external_lex_state = 121}, + [8735] = {.lex_state = 34, .external_lex_state = 122}, + [8736] = {.lex_state = 187, .external_lex_state = 119}, + [8737] = {.lex_state = 178, .external_lex_state = 121}, + [8738] = {.lex_state = 34, .external_lex_state = 122}, + [8739] = {.lex_state = 34, .external_lex_state = 122}, + [8740] = {.lex_state = 34, .external_lex_state = 122}, + [8741] = {.lex_state = 187, .external_lex_state = 119}, + [8742] = {.lex_state = 187, .external_lex_state = 116}, + [8743] = {.lex_state = 178, .external_lex_state = 121}, + [8744] = {.lex_state = 178, .external_lex_state = 99}, + [8745] = {.lex_state = 178, .external_lex_state = 121}, + [8746] = {.lex_state = 178, .external_lex_state = 121}, + [8747] = {.lex_state = 178, .external_lex_state = 121}, + [8748] = {.lex_state = 187, .external_lex_state = 116}, + [8749] = {.lex_state = 178, .external_lex_state = 121}, + [8750] = {.lex_state = 178, .external_lex_state = 121}, + [8751] = {.lex_state = 34, .external_lex_state = 122}, + [8752] = {.lex_state = 187, .external_lex_state = 116}, + [8753] = {.lex_state = 34, .external_lex_state = 122}, + [8754] = {.lex_state = 187, .external_lex_state = 116}, + [8755] = {.lex_state = 34, .external_lex_state = 122}, + [8756] = {.lex_state = 178, .external_lex_state = 121}, + [8757] = {.lex_state = 34, .external_lex_state = 122}, + [8758] = {.lex_state = 187, .external_lex_state = 116}, + [8759] = {.lex_state = 187, .external_lex_state = 117}, + [8760] = {.lex_state = 34, .external_lex_state = 122}, + [8761] = {.lex_state = 187, .external_lex_state = 116}, + [8762] = {.lex_state = 178, .external_lex_state = 121}, + [8763] = {.lex_state = 178, .external_lex_state = 121}, + [8764] = {.lex_state = 178, .external_lex_state = 121}, + [8765] = {.lex_state = 66, .external_lex_state = 99}, + [8766] = {.lex_state = 178, .external_lex_state = 115}, + [8767] = {.lex_state = 178, .external_lex_state = 121}, + [8768] = {.lex_state = 178, .external_lex_state = 121}, + [8769] = {.lex_state = 34, .external_lex_state = 122}, + [8770] = {.lex_state = 178, .external_lex_state = 121}, + [8771] = {.lex_state = 178, .external_lex_state = 121}, + [8772] = {.lex_state = 34, .external_lex_state = 122}, + [8773] = {.lex_state = 178, .external_lex_state = 121}, + [8774] = {.lex_state = 34, .external_lex_state = 122}, + [8775] = {.lex_state = 34, .external_lex_state = 122}, + [8776] = {.lex_state = 187, .external_lex_state = 116}, + [8777] = {.lex_state = 34, .external_lex_state = 122}, + [8778] = {.lex_state = 178, .external_lex_state = 121}, + [8779] = {.lex_state = 178, .external_lex_state = 121}, + [8780] = {.lex_state = 187, .external_lex_state = 116}, + [8781] = {.lex_state = 34, .external_lex_state = 122}, + [8782] = {.lex_state = 34, .external_lex_state = 122}, + [8783] = {.lex_state = 187, .external_lex_state = 116}, + [8784] = {.lex_state = 187, .external_lex_state = 116}, + [8785] = {.lex_state = 178, .external_lex_state = 121}, + [8786] = {.lex_state = 178, .external_lex_state = 121}, + [8787] = {.lex_state = 178, .external_lex_state = 121}, + [8788] = {.lex_state = 34, .external_lex_state = 122}, + [8789] = {.lex_state = 178, .external_lex_state = 121}, + [8790] = {.lex_state = 34, .external_lex_state = 122}, + [8791] = {.lex_state = 178, .external_lex_state = 121}, + [8792] = {.lex_state = 34, .external_lex_state = 122}, + [8793] = {.lex_state = 34, .external_lex_state = 122}, + [8794] = {.lex_state = 34, .external_lex_state = 122}, + [8795] = {.lex_state = 178, .external_lex_state = 121}, + [8796] = {.lex_state = 178, .external_lex_state = 121}, + [8797] = {.lex_state = 178, .external_lex_state = 121}, + [8798] = {.lex_state = 34, .external_lex_state = 122}, + [8799] = {.lex_state = 187, .external_lex_state = 116}, + [8800] = {.lex_state = 34, .external_lex_state = 122}, + [8801] = {.lex_state = 178, .external_lex_state = 115}, + [8802] = {.lex_state = 71, .external_lex_state = 99}, + [8803] = {.lex_state = 71, .external_lex_state = 99}, + [8804] = {.lex_state = 71, .external_lex_state = 99}, + [8805] = {.lex_state = 176, .external_lex_state = 113}, + [8806] = {.lex_state = 178, .external_lex_state = 121}, + [8807] = {.lex_state = 187, .external_lex_state = 117}, + [8808] = {.lex_state = 187, .external_lex_state = 117}, + [8809] = {.lex_state = 187, .external_lex_state = 117}, + [8810] = {.lex_state = 178, .external_lex_state = 115}, + [8811] = {.lex_state = 178, .external_lex_state = 121}, + [8812] = {.lex_state = 71, .external_lex_state = 99}, + [8813] = {.lex_state = 187, .external_lex_state = 117}, + [8814] = {.lex_state = 187, .external_lex_state = 117}, + [8815] = {.lex_state = 71, .external_lex_state = 99}, + [8816] = {.lex_state = 34, .external_lex_state = 122}, + [8817] = {.lex_state = 176, .external_lex_state = 113}, + [8818] = {.lex_state = 178, .external_lex_state = 115}, + [8819] = {.lex_state = 178, .external_lex_state = 115}, + [8820] = {.lex_state = 187, .external_lex_state = 116}, + [8821] = {.lex_state = 178, .external_lex_state = 115}, + [8822] = {.lex_state = 178, .external_lex_state = 121}, + [8823] = {.lex_state = 71, .external_lex_state = 99}, + [8824] = {.lex_state = 71, .external_lex_state = 99}, + [8825] = {.lex_state = 176, .external_lex_state = 113}, + [8826] = {.lex_state = 178, .external_lex_state = 115}, + [8827] = {.lex_state = 178, .external_lex_state = 115}, + [8828] = {.lex_state = 178, .external_lex_state = 115}, + [8829] = {.lex_state = 178, .external_lex_state = 115}, + [8830] = {.lex_state = 178, .external_lex_state = 121}, + [8831] = {.lex_state = 178, .external_lex_state = 121}, + [8832] = {.lex_state = 178, .external_lex_state = 115}, + [8833] = {.lex_state = 178, .external_lex_state = 121}, + [8834] = {.lex_state = 178, .external_lex_state = 115}, + [8835] = {.lex_state = 178, .external_lex_state = 115}, + [8836] = {.lex_state = 178, .external_lex_state = 115}, + [8837] = {.lex_state = 178, .external_lex_state = 121}, + [8838] = {.lex_state = 178, .external_lex_state = 121}, + [8839] = {.lex_state = 178, .external_lex_state = 115}, + [8840] = {.lex_state = 178, .external_lex_state = 115}, + [8841] = {.lex_state = 178, .external_lex_state = 115}, + [8842] = {.lex_state = 178, .external_lex_state = 115}, + [8843] = {.lex_state = 187, .external_lex_state = 120}, + [8844] = {.lex_state = 178, .external_lex_state = 115}, + [8845] = {.lex_state = 178, .external_lex_state = 115}, + [8846] = {.lex_state = 178, .external_lex_state = 121}, + [8847] = {.lex_state = 71, .external_lex_state = 99}, + [8848] = {.lex_state = 178, .external_lex_state = 115}, + [8849] = {.lex_state = 178, .external_lex_state = 115}, + [8850] = {.lex_state = 71, .external_lex_state = 99}, + [8851] = {.lex_state = 176, .external_lex_state = 113}, + [8852] = {.lex_state = 178, .external_lex_state = 115}, + [8853] = {.lex_state = 178, .external_lex_state = 115}, + [8854] = {.lex_state = 178, .external_lex_state = 115}, + [8855] = {.lex_state = 178, .external_lex_state = 121}, + [8856] = {.lex_state = 178, .external_lex_state = 99}, + [8857] = {.lex_state = 178, .external_lex_state = 115}, + [8858] = {.lex_state = 178, .external_lex_state = 115}, + [8859] = {.lex_state = 178, .external_lex_state = 115}, + [8860] = {.lex_state = 178, .external_lex_state = 121}, + [8861] = {.lex_state = 178, .external_lex_state = 121}, + [8862] = {.lex_state = 178, .external_lex_state = 115}, + [8863] = {.lex_state = 178, .external_lex_state = 115}, + [8864] = {.lex_state = 178, .external_lex_state = 115}, + [8865] = {.lex_state = 178, .external_lex_state = 115}, + [8866] = {.lex_state = 178, .external_lex_state = 115}, + [8867] = {.lex_state = 178, .external_lex_state = 99}, + [8868] = {.lex_state = 178, .external_lex_state = 115}, + [8869] = {.lex_state = 178, .external_lex_state = 115}, + [8870] = {.lex_state = 178, .external_lex_state = 115}, + [8871] = {.lex_state = 178, .external_lex_state = 115}, + [8872] = {.lex_state = 178, .external_lex_state = 115}, + [8873] = {.lex_state = 71, .external_lex_state = 99}, + [8874] = {.lex_state = 178, .external_lex_state = 115}, + [8875] = {.lex_state = 178, .external_lex_state = 115}, + [8876] = {.lex_state = 178, .external_lex_state = 115}, + [8877] = {.lex_state = 178, .external_lex_state = 115}, + [8878] = {.lex_state = 71, .external_lex_state = 99}, + [8879] = {.lex_state = 178, .external_lex_state = 115}, + [8880] = {.lex_state = 178, .external_lex_state = 115}, + [8881] = {.lex_state = 71, .external_lex_state = 99}, + [8882] = {.lex_state = 178, .external_lex_state = 115}, + [8883] = {.lex_state = 178, .external_lex_state = 115}, + [8884] = {.lex_state = 178, .external_lex_state = 115}, + [8885] = {.lex_state = 178, .external_lex_state = 115}, + [8886] = {.lex_state = 176, .external_lex_state = 113}, + [8887] = {.lex_state = 178, .external_lex_state = 115}, + [8888] = {.lex_state = 178, .external_lex_state = 115}, + [8889] = {.lex_state = 178, .external_lex_state = 115}, + [8890] = {.lex_state = 178, .external_lex_state = 115}, + [8891] = {.lex_state = 178, .external_lex_state = 115}, + [8892] = {.lex_state = 178, .external_lex_state = 115}, + [8893] = {.lex_state = 178, .external_lex_state = 99}, + [8894] = {.lex_state = 178, .external_lex_state = 115}, + [8895] = {.lex_state = 178, .external_lex_state = 115}, + [8896] = {.lex_state = 178, .external_lex_state = 115}, + [8897] = {.lex_state = 178, .external_lex_state = 121}, + [8898] = {.lex_state = 178, .external_lex_state = 121}, + [8899] = {.lex_state = 34, .external_lex_state = 122}, + [8900] = {.lex_state = 34, .external_lex_state = 122}, + [8901] = {.lex_state = 178, .external_lex_state = 121}, + [8902] = {.lex_state = 178, .external_lex_state = 121}, + [8903] = {.lex_state = 178, .external_lex_state = 121}, + [8904] = {.lex_state = 178, .external_lex_state = 121}, + [8905] = {.lex_state = 178, .external_lex_state = 121}, + [8906] = {.lex_state = 187, .external_lex_state = 120}, + [8907] = {.lex_state = 178, .external_lex_state = 115}, + [8908] = {.lex_state = 178, .external_lex_state = 99}, + [8909] = {.lex_state = 178, .external_lex_state = 115}, + [8910] = {.lex_state = 178, .external_lex_state = 115}, + [8911] = {.lex_state = 34, .external_lex_state = 122}, + [8912] = {.lex_state = 178, .external_lex_state = 121}, + [8913] = {.lex_state = 178, .external_lex_state = 99}, + [8914] = {.lex_state = 178, .external_lex_state = 121}, + [8915] = {.lex_state = 71, .external_lex_state = 99}, + [8916] = {.lex_state = 178, .external_lex_state = 121}, + [8917] = {.lex_state = 178, .external_lex_state = 121}, + [8918] = {.lex_state = 71, .external_lex_state = 99}, + [8919] = {.lex_state = 178, .external_lex_state = 115}, + [8920] = {.lex_state = 178, .external_lex_state = 115}, + [8921] = {.lex_state = 178, .external_lex_state = 115}, + [8922] = {.lex_state = 71, .external_lex_state = 99}, + [8923] = {.lex_state = 176, .external_lex_state = 113}, + [8924] = {.lex_state = 178, .external_lex_state = 115}, + [8925] = {.lex_state = 178, .external_lex_state = 115}, + [8926] = {.lex_state = 178, .external_lex_state = 115}, + [8927] = {.lex_state = 178, .external_lex_state = 115}, + [8928] = {.lex_state = 178, .external_lex_state = 121}, + [8929] = {.lex_state = 178, .external_lex_state = 115}, + [8930] = {.lex_state = 178, .external_lex_state = 115}, + [8931] = {.lex_state = 178, .external_lex_state = 115}, + [8932] = {.lex_state = 178, .external_lex_state = 115}, + [8933] = {.lex_state = 71, .external_lex_state = 99}, + [8934] = {.lex_state = 178, .external_lex_state = 115}, + [8935] = {.lex_state = 178, .external_lex_state = 121}, + [8936] = {.lex_state = 178, .external_lex_state = 121}, + [8937] = {.lex_state = 176, .external_lex_state = 113}, + [8938] = {.lex_state = 176, .external_lex_state = 113}, + [8939] = {.lex_state = 178, .external_lex_state = 115}, + [8940] = {.lex_state = 178, .external_lex_state = 115}, + [8941] = {.lex_state = 178, .external_lex_state = 115}, + [8942] = {.lex_state = 178, .external_lex_state = 121}, + [8943] = {.lex_state = 178, .external_lex_state = 121}, + [8944] = {.lex_state = 178, .external_lex_state = 115}, + [8945] = {.lex_state = 178, .external_lex_state = 115}, + [8946] = {.lex_state = 187, .external_lex_state = 116}, + [8947] = {.lex_state = 178, .external_lex_state = 115}, + [8948] = {.lex_state = 178, .external_lex_state = 115}, + [8949] = {.lex_state = 178, .external_lex_state = 115}, + [8950] = {.lex_state = 178, .external_lex_state = 115}, + [8951] = {.lex_state = 178, .external_lex_state = 115}, + [8952] = {.lex_state = 178, .external_lex_state = 121}, + [8953] = {.lex_state = 178, .external_lex_state = 121}, + [8954] = {.lex_state = 178, .external_lex_state = 115}, + [8955] = {.lex_state = 178, .external_lex_state = 121}, + [8956] = {.lex_state = 178, .external_lex_state = 121}, + [8957] = {.lex_state = 178, .external_lex_state = 115}, + [8958] = {.lex_state = 178, .external_lex_state = 115}, + [8959] = {.lex_state = 178, .external_lex_state = 115}, + [8960] = {.lex_state = 178, .external_lex_state = 115}, + [8961] = {.lex_state = 178, .external_lex_state = 121}, + [8962] = {.lex_state = 178, .external_lex_state = 121}, + [8963] = {.lex_state = 178, .external_lex_state = 121}, + [8964] = {.lex_state = 178, .external_lex_state = 121}, + [8965] = {.lex_state = 178, .external_lex_state = 121}, + [8966] = {.lex_state = 178, .external_lex_state = 121}, + [8967] = {.lex_state = 178, .external_lex_state = 115}, + [8968] = {.lex_state = 178, .external_lex_state = 115}, + [8969] = {.lex_state = 178, .external_lex_state = 121}, + [8970] = {.lex_state = 187, .external_lex_state = 116}, + [8971] = {.lex_state = 178, .external_lex_state = 115}, + [8972] = {.lex_state = 178, .external_lex_state = 121}, + [8973] = {.lex_state = 178, .external_lex_state = 115}, + [8974] = {.lex_state = 178, .external_lex_state = 115}, + [8975] = {.lex_state = 178, .external_lex_state = 115}, + [8976] = {.lex_state = 178, .external_lex_state = 115}, + [8977] = {.lex_state = 178, .external_lex_state = 115}, + [8978] = {.lex_state = 178, .external_lex_state = 115}, + [8979] = {.lex_state = 178, .external_lex_state = 115}, + [8980] = {.lex_state = 178, .external_lex_state = 115}, + [8981] = {.lex_state = 71, .external_lex_state = 99}, + [8982] = {.lex_state = 178, .external_lex_state = 121}, + [8983] = {.lex_state = 178, .external_lex_state = 121}, + [8984] = {.lex_state = 178, .external_lex_state = 121}, + [8985] = {.lex_state = 178, .external_lex_state = 121}, + [8986] = {.lex_state = 178, .external_lex_state = 121}, + [8987] = {.lex_state = 178, .external_lex_state = 121}, + [8988] = {.lex_state = 178, .external_lex_state = 121}, + [8989] = {.lex_state = 178, .external_lex_state = 123}, + [8990] = {.lex_state = 34, .external_lex_state = 122}, + [8991] = {.lex_state = 187, .external_lex_state = 116}, + [8992] = {.lex_state = 178, .external_lex_state = 115}, + [8993] = {.lex_state = 34, .external_lex_state = 122}, + [8994] = {.lex_state = 34, .external_lex_state = 122}, + [8995] = {.lex_state = 178, .external_lex_state = 115}, + [8996] = {.lex_state = 178, .external_lex_state = 115}, + [8997] = {.lex_state = 34, .external_lex_state = 122}, + [8998] = {.lex_state = 178, .external_lex_state = 115}, + [8999] = {.lex_state = 178, .external_lex_state = 115}, + [9000] = {.lex_state = 178, .external_lex_state = 115}, + [9001] = {.lex_state = 178, .external_lex_state = 121}, + [9002] = {.lex_state = 34, .external_lex_state = 122}, + [9003] = {.lex_state = 178, .external_lex_state = 121}, + [9004] = {.lex_state = 34, .external_lex_state = 122}, + [9005] = {.lex_state = 178, .external_lex_state = 115}, + [9006] = {.lex_state = 178, .external_lex_state = 115}, + [9007] = {.lex_state = 178, .external_lex_state = 115}, + [9008] = {.lex_state = 178, .external_lex_state = 115}, + [9009] = {.lex_state = 34, .external_lex_state = 122}, + [9010] = {.lex_state = 187, .external_lex_state = 124}, + [9011] = {.lex_state = 178, .external_lex_state = 115}, + [9012] = {.lex_state = 178, .external_lex_state = 115}, + [9013] = {.lex_state = 71, .external_lex_state = 99}, + [9014] = {.lex_state = 34, .external_lex_state = 122}, + [9015] = {.lex_state = 34, .external_lex_state = 122}, + [9016] = {.lex_state = 71, .external_lex_state = 99}, + [9017] = {.lex_state = 71, .external_lex_state = 99}, + [9018] = {.lex_state = 34, .external_lex_state = 122}, + [9019] = {.lex_state = 178, .external_lex_state = 115}, + [9020] = {.lex_state = 178, .external_lex_state = 115}, + [9021] = {.lex_state = 34, .external_lex_state = 122}, + [9022] = {.lex_state = 34, .external_lex_state = 122}, + [9023] = {.lex_state = 176, .external_lex_state = 113}, + [9024] = {.lex_state = 178, .external_lex_state = 115}, + [9025] = {.lex_state = 178, .external_lex_state = 115}, + [9026] = {.lex_state = 176, .external_lex_state = 99}, + [9027] = {.lex_state = 34, .external_lex_state = 122}, + [9028] = {.lex_state = 176, .external_lex_state = 99}, + [9029] = {.lex_state = 34, .external_lex_state = 122}, + [9030] = {.lex_state = 176, .external_lex_state = 113}, + [9031] = {.lex_state = 34, .external_lex_state = 122}, + [9032] = {.lex_state = 178, .external_lex_state = 115}, + [9033] = {.lex_state = 178, .external_lex_state = 115}, + [9034] = {.lex_state = 178, .external_lex_state = 115}, + [9035] = {.lex_state = 34, .external_lex_state = 122}, + [9036] = {.lex_state = 178, .external_lex_state = 115}, + [9037] = {.lex_state = 178, .external_lex_state = 115}, + [9038] = {.lex_state = 178, .external_lex_state = 115}, + [9039] = {.lex_state = 178, .external_lex_state = 115}, + [9040] = {.lex_state = 178, .external_lex_state = 115}, + [9041] = {.lex_state = 178, .external_lex_state = 115}, + [9042] = {.lex_state = 178, .external_lex_state = 115}, + [9043] = {.lex_state = 178, .external_lex_state = 115}, + [9044] = {.lex_state = 178, .external_lex_state = 115}, + [9045] = {.lex_state = 34, .external_lex_state = 122}, + [9046] = {.lex_state = 176, .external_lex_state = 113}, + [9047] = {.lex_state = 178, .external_lex_state = 115}, + [9048] = {.lex_state = 178, .external_lex_state = 115}, + [9049] = {.lex_state = 187, .external_lex_state = 116}, + [9050] = {.lex_state = 34, .external_lex_state = 122}, + [9051] = {.lex_state = 178, .external_lex_state = 115}, + [9052] = {.lex_state = 187, .external_lex_state = 120}, + [9053] = {.lex_state = 178, .external_lex_state = 115}, + [9054] = {.lex_state = 178, .external_lex_state = 115}, + [9055] = {.lex_state = 178, .external_lex_state = 115}, + [9056] = {.lex_state = 34, .external_lex_state = 122}, + [9057] = {.lex_state = 178, .external_lex_state = 115}, + [9058] = {.lex_state = 178, .external_lex_state = 115}, + [9059] = {.lex_state = 178, .external_lex_state = 115}, + [9060] = {.lex_state = 178, .external_lex_state = 115}, + [9061] = {.lex_state = 178, .external_lex_state = 115}, + [9062] = {.lex_state = 178, .external_lex_state = 115}, + [9063] = {.lex_state = 178, .external_lex_state = 115}, + [9064] = {.lex_state = 34, .external_lex_state = 122}, + [9065] = {.lex_state = 71, .external_lex_state = 99}, + [9066] = {.lex_state = 178, .external_lex_state = 115}, + [9067] = {.lex_state = 178, .external_lex_state = 115}, + [9068] = {.lex_state = 178, .external_lex_state = 115}, + [9069] = {.lex_state = 178, .external_lex_state = 115}, + [9070] = {.lex_state = 34, .external_lex_state = 122}, + [9071] = {.lex_state = 178, .external_lex_state = 115}, + [9072] = {.lex_state = 178, .external_lex_state = 115}, + [9073] = {.lex_state = 178, .external_lex_state = 115}, + [9074] = {.lex_state = 178, .external_lex_state = 115}, + [9075] = {.lex_state = 178, .external_lex_state = 115}, + [9076] = {.lex_state = 178, .external_lex_state = 115}, + [9077] = {.lex_state = 178, .external_lex_state = 115}, + [9078] = {.lex_state = 178, .external_lex_state = 115}, + [9079] = {.lex_state = 178, .external_lex_state = 115}, + [9080] = {.lex_state = 71, .external_lex_state = 99}, + [9081] = {.lex_state = 34, .external_lex_state = 122}, + [9082] = {.lex_state = 178, .external_lex_state = 115}, + [9083] = {.lex_state = 176, .external_lex_state = 113}, + [9084] = {.lex_state = 178, .external_lex_state = 115}, + [9085] = {.lex_state = 34, .external_lex_state = 122}, + [9086] = {.lex_state = 178, .external_lex_state = 115}, + [9087] = {.lex_state = 34, .external_lex_state = 122}, + [9088] = {.lex_state = 178, .external_lex_state = 121}, + [9089] = {.lex_state = 178, .external_lex_state = 115}, + [9090] = {.lex_state = 178, .external_lex_state = 115}, + [9091] = {.lex_state = 178, .external_lex_state = 115}, + [9092] = {.lex_state = 178, .external_lex_state = 115}, + [9093] = {.lex_state = 34, .external_lex_state = 122}, + [9094] = {.lex_state = 178, .external_lex_state = 99}, + [9095] = {.lex_state = 178, .external_lex_state = 115}, + [9096] = {.lex_state = 71, .external_lex_state = 99}, + [9097] = {.lex_state = 34, .external_lex_state = 122}, + [9098] = {.lex_state = 178, .external_lex_state = 121}, + [9099] = {.lex_state = 178, .external_lex_state = 115}, + [9100] = {.lex_state = 178, .external_lex_state = 115}, + [9101] = {.lex_state = 178, .external_lex_state = 115}, + [9102] = {.lex_state = 34, .external_lex_state = 122}, + [9103] = {.lex_state = 178, .external_lex_state = 121}, + [9104] = {.lex_state = 71, .external_lex_state = 99}, + [9105] = {.lex_state = 176, .external_lex_state = 113}, + [9106] = {.lex_state = 34, .external_lex_state = 122}, + [9107] = {.lex_state = 178, .external_lex_state = 115}, + [9108] = {.lex_state = 178, .external_lex_state = 115}, + [9109] = {.lex_state = 34, .external_lex_state = 122}, + [9110] = {.lex_state = 176, .external_lex_state = 99}, + [9111] = {.lex_state = 178, .external_lex_state = 115}, + [9112] = {.lex_state = 178, .external_lex_state = 115}, + [9113] = {.lex_state = 34, .external_lex_state = 122}, + [9114] = {.lex_state = 178, .external_lex_state = 115}, + [9115] = {.lex_state = 178, .external_lex_state = 115}, + [9116] = {.lex_state = 34, .external_lex_state = 122}, + [9117] = {.lex_state = 34, .external_lex_state = 122}, + [9118] = {.lex_state = 178, .external_lex_state = 121}, + [9119] = {.lex_state = 34, .external_lex_state = 122}, + [9120] = {.lex_state = 178, .external_lex_state = 121}, + [9121] = {.lex_state = 178, .external_lex_state = 115}, + [9122] = {.lex_state = 178, .external_lex_state = 115}, + [9123] = {.lex_state = 178, .external_lex_state = 115}, + [9124] = {.lex_state = 34, .external_lex_state = 122}, + [9125] = {.lex_state = 178, .external_lex_state = 115}, + [9126] = {.lex_state = 184, .external_lex_state = 99}, + [9127] = {.lex_state = 178, .external_lex_state = 115}, + [9128] = {.lex_state = 178, .external_lex_state = 115}, + [9129] = {.lex_state = 178, .external_lex_state = 115}, + [9130] = {.lex_state = 178, .external_lex_state = 99}, + [9131] = {.lex_state = 178, .external_lex_state = 115}, + [9132] = {.lex_state = 178, .external_lex_state = 115}, + [9133] = {.lex_state = 178, .external_lex_state = 115}, + [9134] = {.lex_state = 178, .external_lex_state = 121}, + [9135] = {.lex_state = 178, .external_lex_state = 121}, + [9136] = {.lex_state = 178, .external_lex_state = 115}, + [9137] = {.lex_state = 178, .external_lex_state = 121}, + [9138] = {.lex_state = 178, .external_lex_state = 121}, + [9139] = {.lex_state = 178, .external_lex_state = 115}, + [9140] = {.lex_state = 178, .external_lex_state = 121}, + [9141] = {.lex_state = 178, .external_lex_state = 121}, + [9142] = {.lex_state = 178, .external_lex_state = 121}, + [9143] = {.lex_state = 178, .external_lex_state = 99}, + [9144] = {.lex_state = 178, .external_lex_state = 115}, + [9145] = {.lex_state = 178, .external_lex_state = 121}, [9146] = {.lex_state = 71, .external_lex_state = 99}, - [9147] = {.lex_state = 60, .external_lex_state = 125}, - [9148] = {.lex_state = 60, .external_lex_state = 125}, - [9149] = {.lex_state = 60, .external_lex_state = 124}, - [9150] = {.lex_state = 60, .external_lex_state = 125}, - [9151] = {.lex_state = 60, .external_lex_state = 124}, - [9152] = {.lex_state = 60, .external_lex_state = 125}, - [9153] = {.lex_state = 60, .external_lex_state = 124}, - [9154] = {.lex_state = 60, .external_lex_state = 124}, - [9155] = {.lex_state = 61, .external_lex_state = 124}, - [9156] = {.lex_state = 60, .external_lex_state = 124}, - [9157] = {.lex_state = 71, .external_lex_state = 99}, - [9158] = {.lex_state = 60, .external_lex_state = 124}, - [9159] = {.lex_state = 60, .external_lex_state = 124}, - [9160] = {.lex_state = 61, .external_lex_state = 124}, - [9161] = {.lex_state = 61, .external_lex_state = 124}, + [9147] = {.lex_state = 178, .external_lex_state = 121}, + [9148] = {.lex_state = 178, .external_lex_state = 115}, + [9149] = {.lex_state = 178, .external_lex_state = 121}, + [9150] = {.lex_state = 178, .external_lex_state = 121}, + [9151] = {.lex_state = 178, .external_lex_state = 115}, + [9152] = {.lex_state = 178, .external_lex_state = 121}, + [9153] = {.lex_state = 178, .external_lex_state = 121}, + [9154] = {.lex_state = 178, .external_lex_state = 121}, + [9155] = {.lex_state = 178, .external_lex_state = 121}, + [9156] = {.lex_state = 178, .external_lex_state = 121}, + [9157] = {.lex_state = 178, .external_lex_state = 115}, + [9158] = {.lex_state = 178, .external_lex_state = 121}, + [9159] = {.lex_state = 178, .external_lex_state = 115}, + [9160] = {.lex_state = 178, .external_lex_state = 121}, + [9161] = {.lex_state = 178, .external_lex_state = 121}, [9162] = {.lex_state = 71, .external_lex_state = 99}, - [9163] = {.lex_state = 60, .external_lex_state = 125}, - [9164] = {.lex_state = 60, .external_lex_state = 125}, - [9165] = {.lex_state = 60, .external_lex_state = 124}, - [9166] = {.lex_state = 60, .external_lex_state = 124}, - [9167] = {.lex_state = 61, .external_lex_state = 124}, - [9168] = {.lex_state = 175, .external_lex_state = 99}, - [9169] = {.lex_state = 71, .external_lex_state = 99}, - [9170] = {.lex_state = 60, .external_lex_state = 125}, - [9171] = {.lex_state = 175, .external_lex_state = 113}, - [9172] = {.lex_state = 71, .external_lex_state = 99}, - [9173] = {.lex_state = 60, .external_lex_state = 125}, - [9174] = {.lex_state = 60, .external_lex_state = 124}, - [9175] = {.lex_state = 177, .external_lex_state = 99}, - [9176] = {.lex_state = 185, .external_lex_state = 99}, - [9177] = {.lex_state = 60, .external_lex_state = 125}, - [9178] = {.lex_state = 60, .external_lex_state = 125}, - [9179] = {.lex_state = 60, .external_lex_state = 125}, - [9180] = {.lex_state = 60, .external_lex_state = 124}, - [9181] = {.lex_state = 60, .external_lex_state = 124}, - [9182] = {.lex_state = 60, .external_lex_state = 125}, - [9183] = {.lex_state = 60, .external_lex_state = 124}, - [9184] = {.lex_state = 61, .external_lex_state = 124}, - [9185] = {.lex_state = 60, .external_lex_state = 124}, - [9186] = {.lex_state = 71, .external_lex_state = 99}, - [9187] = {.lex_state = 71, .external_lex_state = 99}, - [9188] = {.lex_state = 60, .external_lex_state = 124}, - [9189] = {.lex_state = 61, .external_lex_state = 124}, - [9190] = {.lex_state = 61, .external_lex_state = 124}, - [9191] = {.lex_state = 60, .external_lex_state = 125}, - [9192] = {.lex_state = 60, .external_lex_state = 125}, - [9193] = {.lex_state = 60, .external_lex_state = 125}, - [9194] = {.lex_state = 71, .external_lex_state = 99}, - [9195] = {.lex_state = 71, .external_lex_state = 99}, - [9196] = {.lex_state = 71, .external_lex_state = 99}, - [9197] = {.lex_state = 60, .external_lex_state = 124}, - [9198] = {.lex_state = 60, .external_lex_state = 125}, - [9199] = {.lex_state = 60, .external_lex_state = 125}, - [9200] = {.lex_state = 65, .external_lex_state = 99}, - [9201] = {.lex_state = 60, .external_lex_state = 124}, - [9202] = {.lex_state = 61, .external_lex_state = 124}, - [9203] = {.lex_state = 60, .external_lex_state = 125}, - [9204] = {.lex_state = 60, .external_lex_state = 124}, - [9205] = {.lex_state = 60, .external_lex_state = 124}, - [9206] = {.lex_state = 61, .external_lex_state = 124}, - [9207] = {.lex_state = 71, .external_lex_state = 99}, - [9208] = {.lex_state = 71, .external_lex_state = 99}, - [9209] = {.lex_state = 177, .external_lex_state = 123}, - [9210] = {.lex_state = 177, .external_lex_state = 122}, - [9211] = {.lex_state = 60, .external_lex_state = 125}, - [9212] = {.lex_state = 60, .external_lex_state = 124}, - [9213] = {.lex_state = 60, .external_lex_state = 124}, - [9214] = {.lex_state = 61, .external_lex_state = 124}, - [9215] = {.lex_state = 71, .external_lex_state = 99}, - [9216] = {.lex_state = 65, .external_lex_state = 99}, - [9217] = {.lex_state = 60, .external_lex_state = 125}, - [9218] = {.lex_state = 177, .external_lex_state = 116}, - [9219] = {.lex_state = 60, .external_lex_state = 125}, - [9220] = {.lex_state = 60, .external_lex_state = 124}, - [9221] = {.lex_state = 61, .external_lex_state = 124}, - [9222] = {.lex_state = 185, .external_lex_state = 99}, - [9223] = {.lex_state = 177, .external_lex_state = 122}, - [9224] = {.lex_state = 60, .external_lex_state = 124}, - [9225] = {.lex_state = 177, .external_lex_state = 99}, - [9226] = {.lex_state = 177, .external_lex_state = 99}, - [9227] = {.lex_state = 177, .external_lex_state = 122}, - [9228] = {.lex_state = 71, .external_lex_state = 99}, - [9229] = {.lex_state = 177, .external_lex_state = 122}, - [9230] = {.lex_state = 60, .external_lex_state = 125}, - [9231] = {.lex_state = 60, .external_lex_state = 126}, - [9232] = {.lex_state = 60, .external_lex_state = 124}, - [9233] = {.lex_state = 60, .external_lex_state = 125}, - [9234] = {.lex_state = 60, .external_lex_state = 124}, - [9235] = {.lex_state = 60, .external_lex_state = 125}, - [9236] = {.lex_state = 60, .external_lex_state = 124}, - [9237] = {.lex_state = 60, .external_lex_state = 124}, - [9238] = {.lex_state = 61, .external_lex_state = 124}, - [9239] = {.lex_state = 71, .external_lex_state = 99}, - [9240] = {.lex_state = 60, .external_lex_state = 124}, - [9241] = {.lex_state = 61, .external_lex_state = 124}, - [9242] = {.lex_state = 60, .external_lex_state = 126}, - [9243] = {.lex_state = 60, .external_lex_state = 125}, - [9244] = {.lex_state = 60, .external_lex_state = 125}, - [9245] = {.lex_state = 60, .external_lex_state = 124}, - [9246] = {.lex_state = 177, .external_lex_state = 99}, - [9247] = {.lex_state = 60, .external_lex_state = 124}, - [9248] = {.lex_state = 177, .external_lex_state = 123}, - [9249] = {.lex_state = 71, .external_lex_state = 99}, - [9250] = {.lex_state = 60, .external_lex_state = 125}, - [9251] = {.lex_state = 60, .external_lex_state = 124}, - [9252] = {.lex_state = 60, .external_lex_state = 125}, - [9253] = {.lex_state = 60, .external_lex_state = 124}, - [9254] = {.lex_state = 60, .external_lex_state = 124}, - [9255] = {.lex_state = 61, .external_lex_state = 124}, - [9256] = {.lex_state = 71, .external_lex_state = 99}, - [9257] = {.lex_state = 71, .external_lex_state = 99}, - [9258] = {.lex_state = 60, .external_lex_state = 124}, - [9259] = {.lex_state = 185, .external_lex_state = 99}, - [9260] = {.lex_state = 60, .external_lex_state = 125}, - [9261] = {.lex_state = 60, .external_lex_state = 124}, - [9262] = {.lex_state = 185, .external_lex_state = 117}, - [9263] = {.lex_state = 177, .external_lex_state = 99}, - [9264] = {.lex_state = 65, .external_lex_state = 99}, - [9265] = {.lex_state = 60, .external_lex_state = 125}, - [9266] = {.lex_state = 61, .external_lex_state = 124}, - [9267] = {.lex_state = 60, .external_lex_state = 124}, - [9268] = {.lex_state = 60, .external_lex_state = 124}, - [9269] = {.lex_state = 60, .external_lex_state = 124}, - [9270] = {.lex_state = 61, .external_lex_state = 124}, - [9271] = {.lex_state = 60, .external_lex_state = 125}, - [9272] = {.lex_state = 60, .external_lex_state = 124}, - [9273] = {.lex_state = 60, .external_lex_state = 124}, - [9274] = {.lex_state = 71, .external_lex_state = 99}, - [9275] = {.lex_state = 177, .external_lex_state = 99}, - [9276] = {.lex_state = 60, .external_lex_state = 124}, - [9277] = {.lex_state = 61, .external_lex_state = 124}, - [9278] = {.lex_state = 60, .external_lex_state = 124}, - [9279] = {.lex_state = 71, .external_lex_state = 99}, - [9280] = {.lex_state = 175, .external_lex_state = 113}, - [9281] = {.lex_state = 177, .external_lex_state = 123}, - [9282] = {.lex_state = 60, .external_lex_state = 125}, - [9283] = {.lex_state = 60, .external_lex_state = 124}, - [9284] = {.lex_state = 60, .external_lex_state = 124}, - [9285] = {.lex_state = 61, .external_lex_state = 124}, - [9286] = {.lex_state = 61, .external_lex_state = 124}, - [9287] = {.lex_state = 61, .external_lex_state = 124}, - [9288] = {.lex_state = 60, .external_lex_state = 125}, - [9289] = {.lex_state = 60, .external_lex_state = 124}, - [9290] = {.lex_state = 60, .external_lex_state = 124}, - [9291] = {.lex_state = 61, .external_lex_state = 124}, - [9292] = {.lex_state = 71, .external_lex_state = 99}, - [9293] = {.lex_state = 60, .external_lex_state = 124}, - [9294] = {.lex_state = 60, .external_lex_state = 125}, - [9295] = {.lex_state = 60, .external_lex_state = 124}, - [9296] = {.lex_state = 60, .external_lex_state = 125}, - [9297] = {.lex_state = 60, .external_lex_state = 124}, - [9298] = {.lex_state = 71, .external_lex_state = 99}, - [9299] = {.lex_state = 71, .external_lex_state = 99}, - [9300] = {.lex_state = 177, .external_lex_state = 123}, - [9301] = {.lex_state = 177, .external_lex_state = 123}, - [9302] = {.lex_state = 60, .external_lex_state = 125}, - [9303] = {.lex_state = 60, .external_lex_state = 124}, - [9304] = {.lex_state = 60, .external_lex_state = 124}, - [9305] = {.lex_state = 61, .external_lex_state = 124}, - [9306] = {.lex_state = 71, .external_lex_state = 99}, - [9307] = {.lex_state = 60, .external_lex_state = 124}, - [9308] = {.lex_state = 185, .external_lex_state = 99}, - [9309] = {.lex_state = 177, .external_lex_state = 127}, - [9310] = {.lex_state = 177, .external_lex_state = 99}, - [9311] = {.lex_state = 177, .external_lex_state = 99}, - [9312] = {.lex_state = 179, .external_lex_state = 128}, - [9313] = {.lex_state = 60, .external_lex_state = 125}, - [9314] = {.lex_state = 60, .external_lex_state = 124}, - [9315] = {.lex_state = 61, .external_lex_state = 124}, - [9316] = {.lex_state = 177, .external_lex_state = 99}, - [9317] = {.lex_state = 177, .external_lex_state = 99}, - [9318] = {.lex_state = 177, .external_lex_state = 99}, - [9319] = {.lex_state = 175, .external_lex_state = 113}, - [9320] = {.lex_state = 61, .external_lex_state = 124}, - [9321] = {.lex_state = 60, .external_lex_state = 125}, - [9322] = {.lex_state = 177, .external_lex_state = 99}, - [9323] = {.lex_state = 177, .external_lex_state = 99}, - [9324] = {.lex_state = 60, .external_lex_state = 124}, - [9325] = {.lex_state = 177, .external_lex_state = 99}, - [9326] = {.lex_state = 177, .external_lex_state = 99}, - [9327] = {.lex_state = 60, .external_lex_state = 125}, - [9328] = {.lex_state = 177, .external_lex_state = 99}, - [9329] = {.lex_state = 177, .external_lex_state = 99}, - [9330] = {.lex_state = 60, .external_lex_state = 124}, - [9331] = {.lex_state = 60, .external_lex_state = 125}, - [9332] = {.lex_state = 177, .external_lex_state = 99}, - [9333] = {.lex_state = 177, .external_lex_state = 99}, - [9334] = {.lex_state = 61, .external_lex_state = 124}, - [9335] = {.lex_state = 60, .external_lex_state = 124}, - [9336] = {.lex_state = 177, .external_lex_state = 99}, - [9337] = {.lex_state = 177, .external_lex_state = 99}, - [9338] = {.lex_state = 60, .external_lex_state = 124}, - [9339] = {.lex_state = 177, .external_lex_state = 99}, - [9340] = {.lex_state = 177, .external_lex_state = 99}, - [9341] = {.lex_state = 60, .external_lex_state = 124}, - [9342] = {.lex_state = 177, .external_lex_state = 99}, - [9343] = {.lex_state = 177, .external_lex_state = 99}, - [9344] = {.lex_state = 177, .external_lex_state = 99}, - [9345] = {.lex_state = 177, .external_lex_state = 99}, - [9346] = {.lex_state = 61, .external_lex_state = 124}, - [9347] = {.lex_state = 177, .external_lex_state = 99}, - [9348] = {.lex_state = 177, .external_lex_state = 99}, - [9349] = {.lex_state = 60, .external_lex_state = 124}, - [9350] = {.lex_state = 61, .external_lex_state = 124}, - [9351] = {.lex_state = 177, .external_lex_state = 99}, - [9352] = {.lex_state = 177, .external_lex_state = 99}, - [9353] = {.lex_state = 71, .external_lex_state = 99}, - [9354] = {.lex_state = 177, .external_lex_state = 99}, - [9355] = {.lex_state = 177, .external_lex_state = 99}, - [9356] = {.lex_state = 177, .external_lex_state = 99}, - [9357] = {.lex_state = 177, .external_lex_state = 99}, - [9358] = {.lex_state = 179, .external_lex_state = 117}, - [9359] = {.lex_state = 179, .external_lex_state = 128}, - [9360] = {.lex_state = 61, .external_lex_state = 124}, - [9361] = {.lex_state = 71, .external_lex_state = 99}, - [9362] = {.lex_state = 60, .external_lex_state = 125}, - [9363] = {.lex_state = 60, .external_lex_state = 125}, - [9364] = {.lex_state = 71, .external_lex_state = 99}, - [9365] = {.lex_state = 71, .external_lex_state = 99}, - [9366] = {.lex_state = 60, .external_lex_state = 125}, - [9367] = {.lex_state = 60, .external_lex_state = 124}, - [9368] = {.lex_state = 60, .external_lex_state = 124}, - [9369] = {.lex_state = 61, .external_lex_state = 124}, - [9370] = {.lex_state = 71, .external_lex_state = 99}, - [9371] = {.lex_state = 60, .external_lex_state = 124}, - [9372] = {.lex_state = 70, .external_lex_state = 99}, - [9373] = {.lex_state = 177, .external_lex_state = 127}, - [9374] = {.lex_state = 177, .external_lex_state = 99}, - [9375] = {.lex_state = 177, .external_lex_state = 99}, - [9376] = {.lex_state = 175, .external_lex_state = 99}, - [9377] = {.lex_state = 177, .external_lex_state = 99}, - [9378] = {.lex_state = 177, .external_lex_state = 99}, - [9379] = {.lex_state = 177, .external_lex_state = 99}, - [9380] = {.lex_state = 177, .external_lex_state = 128}, - [9381] = {.lex_state = 177, .external_lex_state = 127}, - [9382] = {.lex_state = 177, .external_lex_state = 99}, - [9383] = {.lex_state = 177, .external_lex_state = 99}, - [9384] = {.lex_state = 177, .external_lex_state = 99}, - [9385] = {.lex_state = 177, .external_lex_state = 127}, - [9386] = {.lex_state = 177, .external_lex_state = 99}, - [9387] = {.lex_state = 177, .external_lex_state = 127}, - [9388] = {.lex_state = 177, .external_lex_state = 127}, - [9389] = {.lex_state = 177, .external_lex_state = 99}, - [9390] = {.lex_state = 177, .external_lex_state = 127}, - [9391] = {.lex_state = 177, .external_lex_state = 99}, - [9392] = {.lex_state = 177, .external_lex_state = 127}, - [9393] = {.lex_state = 177, .external_lex_state = 99}, - [9394] = {.lex_state = 177, .external_lex_state = 127}, - [9395] = {.lex_state = 177, .external_lex_state = 127}, - [9396] = {.lex_state = 177, .external_lex_state = 99}, - [9397] = {.lex_state = 177, .external_lex_state = 99}, - [9398] = {.lex_state = 177, .external_lex_state = 99}, - [9399] = {.lex_state = 177, .external_lex_state = 99}, - [9400] = {.lex_state = 177, .external_lex_state = 99}, - [9401] = {.lex_state = 177, .external_lex_state = 99}, - [9402] = {.lex_state = 177, .external_lex_state = 127}, - [9403] = {.lex_state = 175, .external_lex_state = 99}, - [9404] = {.lex_state = 177, .external_lex_state = 128}, - [9405] = {.lex_state = 177, .external_lex_state = 127}, - [9406] = {.lex_state = 177, .external_lex_state = 99}, - [9407] = {.lex_state = 177, .external_lex_state = 127}, - [9408] = {.lex_state = 177, .external_lex_state = 99}, - [9409] = {.lex_state = 177, .external_lex_state = 127}, - [9410] = {.lex_state = 177, .external_lex_state = 127}, - [9411] = {.lex_state = 177, .external_lex_state = 99}, - [9412] = {.lex_state = 177, .external_lex_state = 127}, - [9413] = {.lex_state = 177, .external_lex_state = 127}, - [9414] = {.lex_state = 177, .external_lex_state = 99}, - [9415] = {.lex_state = 70, .external_lex_state = 99}, - [9416] = {.lex_state = 177, .external_lex_state = 127}, - [9417] = {.lex_state = 177, .external_lex_state = 127}, - [9418] = {.lex_state = 177, .external_lex_state = 99}, - [9419] = {.lex_state = 177, .external_lex_state = 99}, - [9420] = {.lex_state = 177, .external_lex_state = 99}, - [9421] = {.lex_state = 177, .external_lex_state = 127}, - [9422] = {.lex_state = 177, .external_lex_state = 127}, - [9423] = {.lex_state = 177, .external_lex_state = 99}, - [9424] = {.lex_state = 177, .external_lex_state = 99}, - [9425] = {.lex_state = 177, .external_lex_state = 99}, - [9426] = {.lex_state = 177, .external_lex_state = 99}, - [9427] = {.lex_state = 177, .external_lex_state = 127}, - [9428] = {.lex_state = 177, .external_lex_state = 99}, - [9429] = {.lex_state = 177, .external_lex_state = 127}, - [9430] = {.lex_state = 177, .external_lex_state = 99}, - [9431] = {.lex_state = 177, .external_lex_state = 127}, - [9432] = {.lex_state = 177, .external_lex_state = 99}, - [9433] = {.lex_state = 177, .external_lex_state = 99}, - [9434] = {.lex_state = 177, .external_lex_state = 116}, - [9435] = {.lex_state = 177, .external_lex_state = 128}, - [9436] = {.lex_state = 177, .external_lex_state = 123}, - [9437] = {.lex_state = 177, .external_lex_state = 99}, - [9438] = {.lex_state = 177, .external_lex_state = 127}, - [9439] = {.lex_state = 177, .external_lex_state = 99}, - [9440] = {.lex_state = 177, .external_lex_state = 117}, - [9441] = {.lex_state = 177, .external_lex_state = 99}, - [9442] = {.lex_state = 177, .external_lex_state = 117}, - [9443] = {.lex_state = 177, .external_lex_state = 117}, - [9444] = {.lex_state = 177, .external_lex_state = 117}, - [9445] = {.lex_state = 177, .external_lex_state = 117}, - [9446] = {.lex_state = 175, .external_lex_state = 99}, - [9447] = {.lex_state = 177, .external_lex_state = 127}, - [9448] = {.lex_state = 177, .external_lex_state = 117}, - [9449] = {.lex_state = 177, .external_lex_state = 99}, - [9450] = {.lex_state = 181, .external_lex_state = 99}, - [9451] = {.lex_state = 177, .external_lex_state = 99}, - [9452] = {.lex_state = 179, .external_lex_state = 128}, - [9453] = {.lex_state = 177, .external_lex_state = 99}, - [9454] = {.lex_state = 177, .external_lex_state = 99}, - [9455] = {.lex_state = 177, .external_lex_state = 99}, - [9456] = {.lex_state = 177, .external_lex_state = 99}, - [9457] = {.lex_state = 177, .external_lex_state = 127}, - [9458] = {.lex_state = 177, .external_lex_state = 127}, - [9459] = {.lex_state = 177, .external_lex_state = 99}, - [9460] = {.lex_state = 177, .external_lex_state = 128}, - [9461] = {.lex_state = 177, .external_lex_state = 99}, - [9462] = {.lex_state = 185, .external_lex_state = 117}, - [9463] = {.lex_state = 177, .external_lex_state = 99}, - [9464] = {.lex_state = 177, .external_lex_state = 127}, - [9465] = {.lex_state = 177, .external_lex_state = 127}, - [9466] = {.lex_state = 177, .external_lex_state = 117}, - [9467] = {.lex_state = 177, .external_lex_state = 99}, - [9468] = {.lex_state = 177, .external_lex_state = 99}, - [9469] = {.lex_state = 177, .external_lex_state = 99}, - [9470] = {.lex_state = 177, .external_lex_state = 99}, - [9471] = {.lex_state = 177, .external_lex_state = 99}, - [9472] = {.lex_state = 177, .external_lex_state = 127}, - [9473] = {.lex_state = 177, .external_lex_state = 99}, - [9474] = {.lex_state = 177, .external_lex_state = 99}, - [9475] = {.lex_state = 177, .external_lex_state = 99}, - [9476] = {.lex_state = 177, .external_lex_state = 120}, - [9477] = {.lex_state = 177, .external_lex_state = 99}, - [9478] = {.lex_state = 181, .external_lex_state = 99}, - [9479] = {.lex_state = 177, .external_lex_state = 99}, - [9480] = {.lex_state = 177, .external_lex_state = 99}, - [9481] = {.lex_state = 177, .external_lex_state = 99}, - [9482] = {.lex_state = 177, .external_lex_state = 99}, - [9483] = {.lex_state = 177, .external_lex_state = 117}, - [9484] = {.lex_state = 177, .external_lex_state = 117}, - [9485] = {.lex_state = 59, .external_lex_state = 99}, - [9486] = {.lex_state = 177, .external_lex_state = 99}, - [9487] = {.lex_state = 49, .external_lex_state = 99}, - [9488] = {.lex_state = 175, .external_lex_state = 129}, - [9489] = {.lex_state = 177, .external_lex_state = 118}, - [9490] = {.lex_state = 177, .external_lex_state = 118}, - [9491] = {.lex_state = 59, .external_lex_state = 99}, - [9492] = {.lex_state = 175, .external_lex_state = 130}, - [9493] = {.lex_state = 175, .external_lex_state = 130}, - [9494] = {.lex_state = 177, .external_lex_state = 99}, - [9495] = {.lex_state = 49, .external_lex_state = 116}, - [9496] = {.lex_state = 175, .external_lex_state = 130}, - [9497] = {.lex_state = 175, .external_lex_state = 130}, - [9498] = {.lex_state = 177, .external_lex_state = 118}, - [9499] = {.lex_state = 175, .external_lex_state = 130}, - [9500] = {.lex_state = 175, .external_lex_state = 130}, - [9501] = {.lex_state = 177, .external_lex_state = 118}, - [9502] = {.lex_state = 61, .external_lex_state = 124}, - [9503] = {.lex_state = 177, .external_lex_state = 99}, - [9504] = {.lex_state = 59, .external_lex_state = 99}, - [9505] = {.lex_state = 177, .external_lex_state = 99}, - [9506] = {.lex_state = 177, .external_lex_state = 118}, - [9507] = {.lex_state = 49, .external_lex_state = 116}, - [9508] = {.lex_state = 59, .external_lex_state = 99}, - [9509] = {.lex_state = 177, .external_lex_state = 99}, - [9510] = {.lex_state = 59, .external_lex_state = 99}, - [9511] = {.lex_state = 177, .external_lex_state = 118}, - [9512] = {.lex_state = 177, .external_lex_state = 118}, - [9513] = {.lex_state = 61, .external_lex_state = 124}, - [9514] = {.lex_state = 49, .external_lex_state = 116}, - [9515] = {.lex_state = 175, .external_lex_state = 130}, - [9516] = {.lex_state = 59, .external_lex_state = 99}, - [9517] = {.lex_state = 177, .external_lex_state = 99}, - [9518] = {.lex_state = 59, .external_lex_state = 99}, - [9519] = {.lex_state = 60, .external_lex_state = 125}, - [9520] = {.lex_state = 59, .external_lex_state = 99}, - [9521] = {.lex_state = 177, .external_lex_state = 99}, - [9522] = {.lex_state = 49, .external_lex_state = 116}, - [9523] = {.lex_state = 71, .external_lex_state = 99}, - [9524] = {.lex_state = 175, .external_lex_state = 130}, - [9525] = {.lex_state = 49, .external_lex_state = 99}, - [9526] = {.lex_state = 175, .external_lex_state = 130}, - [9527] = {.lex_state = 49, .external_lex_state = 116}, - [9528] = {.lex_state = 177, .external_lex_state = 99}, - [9529] = {.lex_state = 175, .external_lex_state = 130}, - [9530] = {.lex_state = 177, .external_lex_state = 117}, - [9531] = {.lex_state = 177, .external_lex_state = 99}, - [9532] = {.lex_state = 177, .external_lex_state = 116}, - [9533] = {.lex_state = 175, .external_lex_state = 99}, - [9534] = {.lex_state = 177, .external_lex_state = 116}, - [9535] = {.lex_state = 177, .external_lex_state = 116}, - [9536] = {.lex_state = 177, .external_lex_state = 116}, - [9537] = {.lex_state = 59, .external_lex_state = 99}, - [9538] = {.lex_state = 49, .external_lex_state = 116}, - [9539] = {.lex_state = 177, .external_lex_state = 116}, - [9540] = {.lex_state = 60, .external_lex_state = 124}, - [9541] = {.lex_state = 49, .external_lex_state = 116}, - [9542] = {.lex_state = 175, .external_lex_state = 130}, - [9543] = {.lex_state = 177, .external_lex_state = 117}, - [9544] = {.lex_state = 49, .external_lex_state = 116}, - [9545] = {.lex_state = 49, .external_lex_state = 116}, - [9546] = {.lex_state = 177, .external_lex_state = 117}, - [9547] = {.lex_state = 177, .external_lex_state = 99}, - [9548] = {.lex_state = 49, .external_lex_state = 116}, - [9549] = {.lex_state = 177, .external_lex_state = 118}, - [9550] = {.lex_state = 59, .external_lex_state = 99}, - [9551] = {.lex_state = 177, .external_lex_state = 116}, - [9552] = {.lex_state = 177, .external_lex_state = 118}, - [9553] = {.lex_state = 175, .external_lex_state = 130}, - [9554] = {.lex_state = 175, .external_lex_state = 130}, - [9555] = {.lex_state = 177, .external_lex_state = 117}, - [9556] = {.lex_state = 177, .external_lex_state = 99}, - [9557] = {.lex_state = 185, .external_lex_state = 117}, - [9558] = {.lex_state = 49, .external_lex_state = 116}, - [9559] = {.lex_state = 59, .external_lex_state = 99}, - [9560] = {.lex_state = 59, .external_lex_state = 99}, - [9561] = {.lex_state = 177, .external_lex_state = 99}, - [9562] = {.lex_state = 59, .external_lex_state = 99}, - [9563] = {.lex_state = 59, .external_lex_state = 99}, - [9564] = {.lex_state = 175, .external_lex_state = 130}, - [9565] = {.lex_state = 177, .external_lex_state = 99}, - [9566] = {.lex_state = 177, .external_lex_state = 99}, - [9567] = {.lex_state = 177, .external_lex_state = 99}, - [9568] = {.lex_state = 177, .external_lex_state = 99}, - [9569] = {.lex_state = 49, .external_lex_state = 116}, - [9570] = {.lex_state = 177, .external_lex_state = 99}, - [9571] = {.lex_state = 177, .external_lex_state = 99}, - [9572] = {.lex_state = 59, .external_lex_state = 99}, - [9573] = {.lex_state = 177, .external_lex_state = 118}, - [9574] = {.lex_state = 177, .external_lex_state = 118}, - [9575] = {.lex_state = 172, .external_lex_state = 99}, - [9576] = {.lex_state = 175, .external_lex_state = 130}, - [9577] = {.lex_state = 177, .external_lex_state = 118}, - [9578] = {.lex_state = 49, .external_lex_state = 116}, - [9579] = {.lex_state = 175, .external_lex_state = 130}, - [9580] = {.lex_state = 175, .external_lex_state = 130}, - [9581] = {.lex_state = 177, .external_lex_state = 99}, - [9582] = {.lex_state = 177, .external_lex_state = 99}, - [9583] = {.lex_state = 60, .external_lex_state = 125}, - [9584] = {.lex_state = 177, .external_lex_state = 118}, - [9585] = {.lex_state = 175, .external_lex_state = 130}, - [9586] = {.lex_state = 49, .external_lex_state = 116}, - [9587] = {.lex_state = 185, .external_lex_state = 117}, - [9588] = {.lex_state = 177, .external_lex_state = 99}, - [9589] = {.lex_state = 177, .external_lex_state = 116}, - [9590] = {.lex_state = 177, .external_lex_state = 116}, - [9591] = {.lex_state = 177, .external_lex_state = 118}, - [9592] = {.lex_state = 49, .external_lex_state = 116}, - [9593] = {.lex_state = 185, .external_lex_state = 117}, - [9594] = {.lex_state = 59, .external_lex_state = 99}, - [9595] = {.lex_state = 179, .external_lex_state = 117}, - [9596] = {.lex_state = 71, .external_lex_state = 99}, - [9597] = {.lex_state = 175, .external_lex_state = 129}, - [9598] = {.lex_state = 59, .external_lex_state = 99}, - [9599] = {.lex_state = 177, .external_lex_state = 118}, - [9600] = {.lex_state = 175, .external_lex_state = 130}, - [9601] = {.lex_state = 59, .external_lex_state = 99}, - [9602] = {.lex_state = 49, .external_lex_state = 116}, - [9603] = {.lex_state = 49, .external_lex_state = 116}, - [9604] = {.lex_state = 175, .external_lex_state = 130}, - [9605] = {.lex_state = 60, .external_lex_state = 126}, - [9606] = {.lex_state = 60, .external_lex_state = 124}, - [9607] = {.lex_state = 175, .external_lex_state = 130}, - [9608] = {.lex_state = 49, .external_lex_state = 116}, - [9609] = {.lex_state = 175, .external_lex_state = 130}, - [9610] = {.lex_state = 59, .external_lex_state = 99}, - [9611] = {.lex_state = 59, .external_lex_state = 99}, - [9612] = {.lex_state = 177, .external_lex_state = 117}, - [9613] = {.lex_state = 59, .external_lex_state = 99}, - [9614] = {.lex_state = 177, .external_lex_state = 99}, - [9615] = {.lex_state = 59, .external_lex_state = 99}, - [9616] = {.lex_state = 59, .external_lex_state = 99}, - [9617] = {.lex_state = 59, .external_lex_state = 99}, - [9618] = {.lex_state = 59, .external_lex_state = 99}, - [9619] = {.lex_state = 49, .external_lex_state = 116}, - [9620] = {.lex_state = 175, .external_lex_state = 130}, - [9621] = {.lex_state = 49, .external_lex_state = 116}, - [9622] = {.lex_state = 177, .external_lex_state = 116}, - [9623] = {.lex_state = 177, .external_lex_state = 99}, - [9624] = {.lex_state = 175, .external_lex_state = 99}, - [9625] = {.lex_state = 177, .external_lex_state = 117}, - [9626] = {.lex_state = 177, .external_lex_state = 117}, - [9627] = {.lex_state = 175, .external_lex_state = 130}, - [9628] = {.lex_state = 175, .external_lex_state = 129}, - [9629] = {.lex_state = 49, .external_lex_state = 116}, - [9630] = {.lex_state = 175, .external_lex_state = 130}, - [9631] = {.lex_state = 175, .external_lex_state = 130}, - [9632] = {.lex_state = 59, .external_lex_state = 99}, - [9633] = {.lex_state = 59, .external_lex_state = 99}, - [9634] = {.lex_state = 49, .external_lex_state = 116}, - [9635] = {.lex_state = 49, .external_lex_state = 116}, - [9636] = {.lex_state = 49, .external_lex_state = 116}, - [9637] = {.lex_state = 177, .external_lex_state = 99}, - [9638] = {.lex_state = 177, .external_lex_state = 117}, - [9639] = {.lex_state = 175, .external_lex_state = 130}, - [9640] = {.lex_state = 175, .external_lex_state = 130}, - [9641] = {.lex_state = 60, .external_lex_state = 126}, - [9642] = {.lex_state = 177, .external_lex_state = 116}, - [9643] = {.lex_state = 175, .external_lex_state = 130}, - [9644] = {.lex_state = 49, .external_lex_state = 116}, - [9645] = {.lex_state = 175, .external_lex_state = 130}, - [9646] = {.lex_state = 59, .external_lex_state = 99}, - [9647] = {.lex_state = 177, .external_lex_state = 99}, - [9648] = {.lex_state = 59, .external_lex_state = 99}, - [9649] = {.lex_state = 177, .external_lex_state = 99}, - [9650] = {.lex_state = 49, .external_lex_state = 116}, - [9651] = {.lex_state = 175, .external_lex_state = 130}, - [9652] = {.lex_state = 49, .external_lex_state = 116}, - [9653] = {.lex_state = 49, .external_lex_state = 116}, - [9654] = {.lex_state = 175, .external_lex_state = 99}, - [9655] = {.lex_state = 175, .external_lex_state = 99}, - [9656] = {.lex_state = 177, .external_lex_state = 99}, - [9657] = {.lex_state = 177, .external_lex_state = 116}, - [9658] = {.lex_state = 175, .external_lex_state = 99}, - [9659] = {.lex_state = 177, .external_lex_state = 116}, - [9660] = {.lex_state = 177, .external_lex_state = 116}, - [9661] = {.lex_state = 175, .external_lex_state = 99}, - [9662] = {.lex_state = 175, .external_lex_state = 131}, - [9663] = {.lex_state = 175, .external_lex_state = 131}, - [9664] = {.lex_state = 33, .external_lex_state = 99}, - [9665] = {.lex_state = 175, .external_lex_state = 131}, - [9666] = {.lex_state = 175, .external_lex_state = 131}, - [9667] = {.lex_state = 177, .external_lex_state = 99}, - [9668] = {.lex_state = 177, .external_lex_state = 116}, - [9669] = {.lex_state = 177, .external_lex_state = 117}, - [9670] = {.lex_state = 177, .external_lex_state = 99}, - [9671] = {.lex_state = 175, .external_lex_state = 131}, - [9672] = {.lex_state = 177, .external_lex_state = 116}, - [9673] = {.lex_state = 177, .external_lex_state = 116}, - [9674] = {.lex_state = 33, .external_lex_state = 99}, - [9675] = {.lex_state = 177, .external_lex_state = 120}, - [9676] = {.lex_state = 175, .external_lex_state = 131}, - [9677] = {.lex_state = 175, .external_lex_state = 131}, - [9678] = {.lex_state = 33, .external_lex_state = 99}, - [9679] = {.lex_state = 175, .external_lex_state = 131}, - [9680] = {.lex_state = 175, .external_lex_state = 131}, - [9681] = {.lex_state = 175, .external_lex_state = 99}, - [9682] = {.lex_state = 177, .external_lex_state = 116}, - [9683] = {.lex_state = 175, .external_lex_state = 99}, - [9684] = {.lex_state = 177, .external_lex_state = 99}, - [9685] = {.lex_state = 177, .external_lex_state = 116}, - [9686] = {.lex_state = 177, .external_lex_state = 117}, - [9687] = {.lex_state = 177, .external_lex_state = 116}, - [9688] = {.lex_state = 177, .external_lex_state = 116}, - [9689] = {.lex_state = 59, .external_lex_state = 99}, - [9690] = {.lex_state = 175, .external_lex_state = 131}, - [9691] = {.lex_state = 175, .external_lex_state = 131}, - [9692] = {.lex_state = 33, .external_lex_state = 99}, - [9693] = {.lex_state = 175, .external_lex_state = 131}, - [9694] = {.lex_state = 175, .external_lex_state = 131}, - [9695] = {.lex_state = 177, .external_lex_state = 116}, - [9696] = {.lex_state = 177, .external_lex_state = 99}, - [9697] = {.lex_state = 177, .external_lex_state = 117}, - [9698] = {.lex_state = 177, .external_lex_state = 116}, - [9699] = {.lex_state = 177, .external_lex_state = 99}, - [9700] = {.lex_state = 175, .external_lex_state = 99}, - [9701] = {.lex_state = 177, .external_lex_state = 116}, - [9702] = {.lex_state = 177, .external_lex_state = 117}, - [9703] = {.lex_state = 177, .external_lex_state = 116}, - [9704] = {.lex_state = 177, .external_lex_state = 120}, - [9705] = {.lex_state = 177, .external_lex_state = 116}, - [9706] = {.lex_state = 33, .external_lex_state = 99}, - [9707] = {.lex_state = 175, .external_lex_state = 131}, - [9708] = {.lex_state = 175, .external_lex_state = 131}, + [9163] = {.lex_state = 178, .external_lex_state = 115}, + [9164] = {.lex_state = 178, .external_lex_state = 115}, + [9165] = {.lex_state = 178, .external_lex_state = 115}, + [9166] = {.lex_state = 178, .external_lex_state = 115}, + [9167] = {.lex_state = 71, .external_lex_state = 99}, + [9168] = {.lex_state = 176, .external_lex_state = 113}, + [9169] = {.lex_state = 178, .external_lex_state = 115}, + [9170] = {.lex_state = 178, .external_lex_state = 115}, + [9171] = {.lex_state = 187, .external_lex_state = 116}, + [9172] = {.lex_state = 178, .external_lex_state = 115}, + [9173] = {.lex_state = 178, .external_lex_state = 115}, + [9174] = {.lex_state = 178, .external_lex_state = 115}, + [9175] = {.lex_state = 178, .external_lex_state = 115}, + [9176] = {.lex_state = 187, .external_lex_state = 116}, + [9177] = {.lex_state = 178, .external_lex_state = 115}, + [9178] = {.lex_state = 178, .external_lex_state = 115}, + [9179] = {.lex_state = 178, .external_lex_state = 115}, + [9180] = {.lex_state = 187, .external_lex_state = 116}, + [9181] = {.lex_state = 178, .external_lex_state = 115}, + [9182] = {.lex_state = 178, .external_lex_state = 115}, + [9183] = {.lex_state = 71, .external_lex_state = 99}, + [9184] = {.lex_state = 178, .external_lex_state = 115}, + [9185] = {.lex_state = 178, .external_lex_state = 115}, + [9186] = {.lex_state = 178, .external_lex_state = 115}, + [9187] = {.lex_state = 187, .external_lex_state = 120}, + [9188] = {.lex_state = 178, .external_lex_state = 115}, + [9189] = {.lex_state = 178, .external_lex_state = 115}, + [9190] = {.lex_state = 71, .external_lex_state = 99}, + [9191] = {.lex_state = 178, .external_lex_state = 99}, + [9192] = {.lex_state = 61, .external_lex_state = 125}, + [9193] = {.lex_state = 61, .external_lex_state = 125}, + [9194] = {.lex_state = 61, .external_lex_state = 126}, + [9195] = {.lex_state = 72, .external_lex_state = 99}, + [9196] = {.lex_state = 61, .external_lex_state = 125}, + [9197] = {.lex_state = 61, .external_lex_state = 125}, + [9198] = {.lex_state = 62, .external_lex_state = 125}, + [9199] = {.lex_state = 62, .external_lex_state = 125}, + [9200] = {.lex_state = 72, .external_lex_state = 99}, + [9201] = {.lex_state = 61, .external_lex_state = 125}, + [9202] = {.lex_state = 72, .external_lex_state = 99}, + [9203] = {.lex_state = 61, .external_lex_state = 127}, + [9204] = {.lex_state = 176, .external_lex_state = 113}, + [9205] = {.lex_state = 62, .external_lex_state = 125}, + [9206] = {.lex_state = 62, .external_lex_state = 125}, + [9207] = {.lex_state = 61, .external_lex_state = 125}, + [9208] = {.lex_state = 178, .external_lex_state = 116}, + [9209] = {.lex_state = 72, .external_lex_state = 99}, + [9210] = {.lex_state = 61, .external_lex_state = 125}, + [9211] = {.lex_state = 61, .external_lex_state = 126}, + [9212] = {.lex_state = 61, .external_lex_state = 125}, + [9213] = {.lex_state = 72, .external_lex_state = 99}, + [9214] = {.lex_state = 187, .external_lex_state = 124}, + [9215] = {.lex_state = 61, .external_lex_state = 126}, + [9216] = {.lex_state = 61, .external_lex_state = 125}, + [9217] = {.lex_state = 187, .external_lex_state = 124}, + [9218] = {.lex_state = 61, .external_lex_state = 126}, + [9219] = {.lex_state = 61, .external_lex_state = 125}, + [9220] = {.lex_state = 187, .external_lex_state = 124}, + [9221] = {.lex_state = 61, .external_lex_state = 125}, + [9222] = {.lex_state = 62, .external_lex_state = 125}, + [9223] = {.lex_state = 187, .external_lex_state = 124}, + [9224] = {.lex_state = 187, .external_lex_state = 124}, + [9225] = {.lex_state = 61, .external_lex_state = 126}, + [9226] = {.lex_state = 61, .external_lex_state = 125}, + [9227] = {.lex_state = 187, .external_lex_state = 124}, + [9228] = {.lex_state = 187, .external_lex_state = 124}, + [9229] = {.lex_state = 187, .external_lex_state = 124}, + [9230] = {.lex_state = 61, .external_lex_state = 126}, + [9231] = {.lex_state = 72, .external_lex_state = 99}, + [9232] = {.lex_state = 61, .external_lex_state = 125}, + [9233] = {.lex_state = 187, .external_lex_state = 124}, + [9234] = {.lex_state = 61, .external_lex_state = 125}, + [9235] = {.lex_state = 187, .external_lex_state = 124}, + [9236] = {.lex_state = 62, .external_lex_state = 125}, + [9237] = {.lex_state = 61, .external_lex_state = 126}, + [9238] = {.lex_state = 187, .external_lex_state = 124}, + [9239] = {.lex_state = 61, .external_lex_state = 125}, + [9240] = {.lex_state = 62, .external_lex_state = 125}, + [9241] = {.lex_state = 61, .external_lex_state = 125}, + [9242] = {.lex_state = 62, .external_lex_state = 125}, + [9243] = {.lex_state = 61, .external_lex_state = 126}, + [9244] = {.lex_state = 61, .external_lex_state = 125}, + [9245] = {.lex_state = 61, .external_lex_state = 126}, + [9246] = {.lex_state = 61, .external_lex_state = 125}, + [9247] = {.lex_state = 72, .external_lex_state = 99}, + [9248] = {.lex_state = 61, .external_lex_state = 126}, + [9249] = {.lex_state = 61, .external_lex_state = 125}, + [9250] = {.lex_state = 61, .external_lex_state = 125}, + [9251] = {.lex_state = 62, .external_lex_state = 125}, + [9252] = {.lex_state = 72, .external_lex_state = 99}, + [9253] = {.lex_state = 72, .external_lex_state = 99}, + [9254] = {.lex_state = 61, .external_lex_state = 126}, + [9255] = {.lex_state = 61, .external_lex_state = 125}, + [9256] = {.lex_state = 61, .external_lex_state = 125}, + [9257] = {.lex_state = 62, .external_lex_state = 125}, + [9258] = {.lex_state = 61, .external_lex_state = 126}, + [9259] = {.lex_state = 61, .external_lex_state = 127}, + [9260] = {.lex_state = 187, .external_lex_state = 99}, + [9261] = {.lex_state = 61, .external_lex_state = 126}, + [9262] = {.lex_state = 72, .external_lex_state = 99}, + [9263] = {.lex_state = 61, .external_lex_state = 126}, + [9264] = {.lex_state = 61, .external_lex_state = 125}, + [9265] = {.lex_state = 61, .external_lex_state = 126}, + [9266] = {.lex_state = 61, .external_lex_state = 125}, + [9267] = {.lex_state = 187, .external_lex_state = 124}, + [9268] = {.lex_state = 61, .external_lex_state = 125}, + [9269] = {.lex_state = 62, .external_lex_state = 125}, + [9270] = {.lex_state = 61, .external_lex_state = 125}, + [9271] = {.lex_state = 61, .external_lex_state = 126}, + [9272] = {.lex_state = 178, .external_lex_state = 99}, + [9273] = {.lex_state = 61, .external_lex_state = 125}, + [9274] = {.lex_state = 61, .external_lex_state = 126}, + [9275] = {.lex_state = 61, .external_lex_state = 125}, + [9276] = {.lex_state = 187, .external_lex_state = 124}, + [9277] = {.lex_state = 72, .external_lex_state = 99}, + [9278] = {.lex_state = 72, .external_lex_state = 99}, + [9279] = {.lex_state = 61, .external_lex_state = 125}, + [9280] = {.lex_state = 61, .external_lex_state = 125}, + [9281] = {.lex_state = 62, .external_lex_state = 125}, + [9282] = {.lex_state = 61, .external_lex_state = 126}, + [9283] = {.lex_state = 61, .external_lex_state = 126}, + [9284] = {.lex_state = 61, .external_lex_state = 125}, + [9285] = {.lex_state = 62, .external_lex_state = 125}, + [9286] = {.lex_state = 178, .external_lex_state = 99}, + [9287] = {.lex_state = 178, .external_lex_state = 123}, + [9288] = {.lex_state = 72, .external_lex_state = 99}, + [9289] = {.lex_state = 72, .external_lex_state = 99}, + [9290] = {.lex_state = 187, .external_lex_state = 124}, + [9291] = {.lex_state = 61, .external_lex_state = 126}, + [9292] = {.lex_state = 61, .external_lex_state = 126}, + [9293] = {.lex_state = 178, .external_lex_state = 123}, + [9294] = {.lex_state = 66, .external_lex_state = 99}, + [9295] = {.lex_state = 62, .external_lex_state = 125}, + [9296] = {.lex_state = 178, .external_lex_state = 99}, + [9297] = {.lex_state = 72, .external_lex_state = 99}, + [9298] = {.lex_state = 61, .external_lex_state = 125}, + [9299] = {.lex_state = 176, .external_lex_state = 99}, + [9300] = {.lex_state = 61, .external_lex_state = 126}, + [9301] = {.lex_state = 61, .external_lex_state = 126}, + [9302] = {.lex_state = 62, .external_lex_state = 125}, + [9303] = {.lex_state = 187, .external_lex_state = 124}, + [9304] = {.lex_state = 66, .external_lex_state = 99}, + [9305] = {.lex_state = 61, .external_lex_state = 126}, + [9306] = {.lex_state = 61, .external_lex_state = 126}, + [9307] = {.lex_state = 61, .external_lex_state = 126}, + [9308] = {.lex_state = 61, .external_lex_state = 125}, + [9309] = {.lex_state = 61, .external_lex_state = 125}, + [9310] = {.lex_state = 62, .external_lex_state = 125}, + [9311] = {.lex_state = 72, .external_lex_state = 99}, + [9312] = {.lex_state = 61, .external_lex_state = 126}, + [9313] = {.lex_state = 61, .external_lex_state = 126}, + [9314] = {.lex_state = 178, .external_lex_state = 123}, + [9315] = {.lex_state = 61, .external_lex_state = 126}, + [9316] = {.lex_state = 61, .external_lex_state = 126}, + [9317] = {.lex_state = 61, .external_lex_state = 126}, + [9318] = {.lex_state = 61, .external_lex_state = 125}, + [9319] = {.lex_state = 61, .external_lex_state = 125}, + [9320] = {.lex_state = 62, .external_lex_state = 125}, + [9321] = {.lex_state = 72, .external_lex_state = 99}, + [9322] = {.lex_state = 187, .external_lex_state = 124}, + [9323] = {.lex_state = 72, .external_lex_state = 99}, + [9324] = {.lex_state = 72, .external_lex_state = 99}, + [9325] = {.lex_state = 178, .external_lex_state = 123}, + [9326] = {.lex_state = 176, .external_lex_state = 113}, + [9327] = {.lex_state = 61, .external_lex_state = 126}, + [9328] = {.lex_state = 187, .external_lex_state = 99}, + [9329] = {.lex_state = 61, .external_lex_state = 125}, + [9330] = {.lex_state = 61, .external_lex_state = 126}, + [9331] = {.lex_state = 61, .external_lex_state = 125}, + [9332] = {.lex_state = 61, .external_lex_state = 125}, + [9333] = {.lex_state = 62, .external_lex_state = 125}, + [9334] = {.lex_state = 72, .external_lex_state = 99}, + [9335] = {.lex_state = 61, .external_lex_state = 126}, + [9336] = {.lex_state = 187, .external_lex_state = 99}, + [9337] = {.lex_state = 61, .external_lex_state = 125}, + [9338] = {.lex_state = 61, .external_lex_state = 126}, + [9339] = {.lex_state = 61, .external_lex_state = 125}, + [9340] = {.lex_state = 61, .external_lex_state = 125}, + [9341] = {.lex_state = 62, .external_lex_state = 125}, + [9342] = {.lex_state = 61, .external_lex_state = 125}, + [9343] = {.lex_state = 72, .external_lex_state = 99}, + [9344] = {.lex_state = 178, .external_lex_state = 99}, + [9345] = {.lex_state = 61, .external_lex_state = 126}, + [9346] = {.lex_state = 61, .external_lex_state = 125}, + [9347] = {.lex_state = 61, .external_lex_state = 125}, + [9348] = {.lex_state = 62, .external_lex_state = 125}, + [9349] = {.lex_state = 72, .external_lex_state = 99}, + [9350] = {.lex_state = 61, .external_lex_state = 126}, + [9351] = {.lex_state = 176, .external_lex_state = 113}, + [9352] = {.lex_state = 62, .external_lex_state = 125}, + [9353] = {.lex_state = 178, .external_lex_state = 99}, + [9354] = {.lex_state = 178, .external_lex_state = 99}, + [9355] = {.lex_state = 61, .external_lex_state = 126}, + [9356] = {.lex_state = 187, .external_lex_state = 124}, + [9357] = {.lex_state = 187, .external_lex_state = 124}, + [9358] = {.lex_state = 62, .external_lex_state = 125}, + [9359] = {.lex_state = 61, .external_lex_state = 125}, + [9360] = {.lex_state = 61, .external_lex_state = 126}, + [9361] = {.lex_state = 61, .external_lex_state = 125}, + [9362] = {.lex_state = 61, .external_lex_state = 125}, + [9363] = {.lex_state = 62, .external_lex_state = 125}, + [9364] = {.lex_state = 61, .external_lex_state = 125}, + [9365] = {.lex_state = 72, .external_lex_state = 99}, + [9366] = {.lex_state = 180, .external_lex_state = 117}, + [9367] = {.lex_state = 72, .external_lex_state = 99}, + [9368] = {.lex_state = 187, .external_lex_state = 124}, + [9369] = {.lex_state = 178, .external_lex_state = 123}, + [9370] = {.lex_state = 61, .external_lex_state = 125}, + [9371] = {.lex_state = 61, .external_lex_state = 125}, + [9372] = {.lex_state = 61, .external_lex_state = 125}, + [9373] = {.lex_state = 62, .external_lex_state = 125}, + [9374] = {.lex_state = 61, .external_lex_state = 126}, + [9375] = {.lex_state = 61, .external_lex_state = 127}, + [9376] = {.lex_state = 61, .external_lex_state = 125}, + [9377] = {.lex_state = 61, .external_lex_state = 125}, + [9378] = {.lex_state = 61, .external_lex_state = 126}, + [9379] = {.lex_state = 72, .external_lex_state = 99}, + [9380] = {.lex_state = 187, .external_lex_state = 124}, + [9381] = {.lex_state = 187, .external_lex_state = 124}, + [9382] = {.lex_state = 187, .external_lex_state = 124}, + [9383] = {.lex_state = 187, .external_lex_state = 117}, + [9384] = {.lex_state = 187, .external_lex_state = 124}, + [9385] = {.lex_state = 61, .external_lex_state = 126}, + [9386] = {.lex_state = 61, .external_lex_state = 125}, + [9387] = {.lex_state = 62, .external_lex_state = 125}, + [9388] = {.lex_state = 178, .external_lex_state = 99}, + [9389] = {.lex_state = 180, .external_lex_state = 128}, + [9390] = {.lex_state = 61, .external_lex_state = 126}, + [9391] = {.lex_state = 180, .external_lex_state = 128}, + [9392] = {.lex_state = 187, .external_lex_state = 124}, + [9393] = {.lex_state = 178, .external_lex_state = 99}, + [9394] = {.lex_state = 178, .external_lex_state = 99}, + [9395] = {.lex_state = 187, .external_lex_state = 124}, + [9396] = {.lex_state = 178, .external_lex_state = 99}, + [9397] = {.lex_state = 178, .external_lex_state = 99}, + [9398] = {.lex_state = 187, .external_lex_state = 124}, + [9399] = {.lex_state = 178, .external_lex_state = 99}, + [9400] = {.lex_state = 178, .external_lex_state = 99}, + [9401] = {.lex_state = 61, .external_lex_state = 125}, + [9402] = {.lex_state = 178, .external_lex_state = 99}, + [9403] = {.lex_state = 178, .external_lex_state = 99}, + [9404] = {.lex_state = 62, .external_lex_state = 125}, + [9405] = {.lex_state = 178, .external_lex_state = 99}, + [9406] = {.lex_state = 178, .external_lex_state = 99}, + [9407] = {.lex_state = 187, .external_lex_state = 124}, + [9408] = {.lex_state = 178, .external_lex_state = 99}, + [9409] = {.lex_state = 178, .external_lex_state = 99}, + [9410] = {.lex_state = 187, .external_lex_state = 124}, + [9411] = {.lex_state = 178, .external_lex_state = 99}, + [9412] = {.lex_state = 178, .external_lex_state = 99}, + [9413] = {.lex_state = 178, .external_lex_state = 99}, + [9414] = {.lex_state = 178, .external_lex_state = 99}, + [9415] = {.lex_state = 72, .external_lex_state = 99}, + [9416] = {.lex_state = 61, .external_lex_state = 126}, + [9417] = {.lex_state = 178, .external_lex_state = 99}, + [9418] = {.lex_state = 178, .external_lex_state = 99}, + [9419] = {.lex_state = 61, .external_lex_state = 126}, + [9420] = {.lex_state = 61, .external_lex_state = 125}, + [9421] = {.lex_state = 61, .external_lex_state = 125}, + [9422] = {.lex_state = 62, .external_lex_state = 125}, + [9423] = {.lex_state = 61, .external_lex_state = 125}, + [9424] = {.lex_state = 178, .external_lex_state = 99}, + [9425] = {.lex_state = 61, .external_lex_state = 125}, + [9426] = {.lex_state = 72, .external_lex_state = 99}, + [9427] = {.lex_state = 61, .external_lex_state = 125}, + [9428] = {.lex_state = 178, .external_lex_state = 99}, + [9429] = {.lex_state = 178, .external_lex_state = 99}, + [9430] = {.lex_state = 187, .external_lex_state = 99}, + [9431] = {.lex_state = 178, .external_lex_state = 99}, + [9432] = {.lex_state = 178, .external_lex_state = 99}, + [9433] = {.lex_state = 62, .external_lex_state = 125}, + [9434] = {.lex_state = 178, .external_lex_state = 99}, + [9435] = {.lex_state = 178, .external_lex_state = 99}, + [9436] = {.lex_state = 61, .external_lex_state = 126}, + [9437] = {.lex_state = 178, .external_lex_state = 99}, + [9438] = {.lex_state = 178, .external_lex_state = 99}, + [9439] = {.lex_state = 61, .external_lex_state = 125}, + [9440] = {.lex_state = 66, .external_lex_state = 99}, + [9441] = {.lex_state = 72, .external_lex_state = 99}, + [9442] = {.lex_state = 187, .external_lex_state = 124}, + [9443] = {.lex_state = 61, .external_lex_state = 125}, + [9444] = {.lex_state = 62, .external_lex_state = 125}, + [9445] = {.lex_state = 61, .external_lex_state = 126}, + [9446] = {.lex_state = 72, .external_lex_state = 99}, + [9447] = {.lex_state = 187, .external_lex_state = 124}, + [9448] = {.lex_state = 178, .external_lex_state = 124}, + [9449] = {.lex_state = 176, .external_lex_state = 129}, + [9450] = {.lex_state = 178, .external_lex_state = 116}, + [9451] = {.lex_state = 178, .external_lex_state = 99}, + [9452] = {.lex_state = 178, .external_lex_state = 99}, + [9453] = {.lex_state = 178, .external_lex_state = 99}, + [9454] = {.lex_state = 176, .external_lex_state = 129}, + [9455] = {.lex_state = 178, .external_lex_state = 117}, + [9456] = {.lex_state = 178, .external_lex_state = 99}, + [9457] = {.lex_state = 178, .external_lex_state = 99}, + [9458] = {.lex_state = 178, .external_lex_state = 99}, + [9459] = {.lex_state = 178, .external_lex_state = 99}, + [9460] = {.lex_state = 178, .external_lex_state = 99}, + [9461] = {.lex_state = 178, .external_lex_state = 123}, + [9462] = {.lex_state = 178, .external_lex_state = 99}, + [9463] = {.lex_state = 185, .external_lex_state = 99}, + [9464] = {.lex_state = 176, .external_lex_state = 129}, + [9465] = {.lex_state = 178, .external_lex_state = 99}, + [9466] = {.lex_state = 176, .external_lex_state = 129}, + [9467] = {.lex_state = 176, .external_lex_state = 129}, + [9468] = {.lex_state = 178, .external_lex_state = 99}, + [9469] = {.lex_state = 178, .external_lex_state = 99}, + [9470] = {.lex_state = 178, .external_lex_state = 99}, + [9471] = {.lex_state = 178, .external_lex_state = 99}, + [9472] = {.lex_state = 180, .external_lex_state = 128}, + [9473] = {.lex_state = 176, .external_lex_state = 129}, + [9474] = {.lex_state = 178, .external_lex_state = 128}, + [9475] = {.lex_state = 178, .external_lex_state = 99}, + [9476] = {.lex_state = 176, .external_lex_state = 129}, + [9477] = {.lex_state = 178, .external_lex_state = 99}, + [9478] = {.lex_state = 176, .external_lex_state = 129}, + [9479] = {.lex_state = 178, .external_lex_state = 99}, + [9480] = {.lex_state = 176, .external_lex_state = 99}, + [9481] = {.lex_state = 176, .external_lex_state = 129}, + [9482] = {.lex_state = 178, .external_lex_state = 99}, + [9483] = {.lex_state = 178, .external_lex_state = 99}, + [9484] = {.lex_state = 178, .external_lex_state = 99}, + [9485] = {.lex_state = 178, .external_lex_state = 99}, + [9486] = {.lex_state = 178, .external_lex_state = 128}, + [9487] = {.lex_state = 178, .external_lex_state = 99}, + [9488] = {.lex_state = 178, .external_lex_state = 99}, + [9489] = {.lex_state = 178, .external_lex_state = 99}, + [9490] = {.lex_state = 178, .external_lex_state = 99}, + [9491] = {.lex_state = 176, .external_lex_state = 129}, + [9492] = {.lex_state = 178, .external_lex_state = 99}, + [9493] = {.lex_state = 178, .external_lex_state = 99}, + [9494] = {.lex_state = 178, .external_lex_state = 117}, + [9495] = {.lex_state = 71, .external_lex_state = 99}, + [9496] = {.lex_state = 187, .external_lex_state = 117}, + [9497] = {.lex_state = 178, .external_lex_state = 117}, + [9498] = {.lex_state = 178, .external_lex_state = 99}, + [9499] = {.lex_state = 176, .external_lex_state = 129}, + [9500] = {.lex_state = 178, .external_lex_state = 117}, + [9501] = {.lex_state = 176, .external_lex_state = 129}, + [9502] = {.lex_state = 178, .external_lex_state = 99}, + [9503] = {.lex_state = 178, .external_lex_state = 99}, + [9504] = {.lex_state = 178, .external_lex_state = 99}, + [9505] = {.lex_state = 176, .external_lex_state = 129}, + [9506] = {.lex_state = 176, .external_lex_state = 129}, + [9507] = {.lex_state = 176, .external_lex_state = 129}, + [9508] = {.lex_state = 178, .external_lex_state = 117}, + [9509] = {.lex_state = 176, .external_lex_state = 129}, + [9510] = {.lex_state = 176, .external_lex_state = 129}, + [9511] = {.lex_state = 178, .external_lex_state = 121}, + [9512] = {.lex_state = 176, .external_lex_state = 129}, + [9513] = {.lex_state = 178, .external_lex_state = 99}, + [9514] = {.lex_state = 178, .external_lex_state = 99}, + [9515] = {.lex_state = 178, .external_lex_state = 99}, + [9516] = {.lex_state = 176, .external_lex_state = 129}, + [9517] = {.lex_state = 178, .external_lex_state = 99}, + [9518] = {.lex_state = 176, .external_lex_state = 99}, + [9519] = {.lex_state = 178, .external_lex_state = 117}, + [9520] = {.lex_state = 178, .external_lex_state = 99}, + [9521] = {.lex_state = 178, .external_lex_state = 99}, + [9522] = {.lex_state = 178, .external_lex_state = 99}, + [9523] = {.lex_state = 178, .external_lex_state = 99}, + [9524] = {.lex_state = 178, .external_lex_state = 99}, + [9525] = {.lex_state = 176, .external_lex_state = 129}, + [9526] = {.lex_state = 176, .external_lex_state = 129}, + [9527] = {.lex_state = 178, .external_lex_state = 99}, + [9528] = {.lex_state = 176, .external_lex_state = 129}, + [9529] = {.lex_state = 178, .external_lex_state = 117}, + [9530] = {.lex_state = 178, .external_lex_state = 99}, + [9531] = {.lex_state = 178, .external_lex_state = 99}, + [9532] = {.lex_state = 178, .external_lex_state = 99}, + [9533] = {.lex_state = 178, .external_lex_state = 99}, + [9534] = {.lex_state = 178, .external_lex_state = 99}, + [9535] = {.lex_state = 176, .external_lex_state = 129}, + [9536] = {.lex_state = 178, .external_lex_state = 99}, + [9537] = {.lex_state = 178, .external_lex_state = 99}, + [9538] = {.lex_state = 176, .external_lex_state = 129}, + [9539] = {.lex_state = 178, .external_lex_state = 99}, + [9540] = {.lex_state = 178, .external_lex_state = 99}, + [9541] = {.lex_state = 178, .external_lex_state = 99}, + [9542] = {.lex_state = 178, .external_lex_state = 99}, + [9543] = {.lex_state = 176, .external_lex_state = 129}, + [9544] = {.lex_state = 176, .external_lex_state = 129}, + [9545] = {.lex_state = 176, .external_lex_state = 99}, + [9546] = {.lex_state = 178, .external_lex_state = 99}, + [9547] = {.lex_state = 178, .external_lex_state = 128}, + [9548] = {.lex_state = 176, .external_lex_state = 129}, + [9549] = {.lex_state = 178, .external_lex_state = 128}, + [9550] = {.lex_state = 71, .external_lex_state = 99}, + [9551] = {.lex_state = 178, .external_lex_state = 99}, + [9552] = {.lex_state = 178, .external_lex_state = 99}, + [9553] = {.lex_state = 178, .external_lex_state = 99}, + [9554] = {.lex_state = 178, .external_lex_state = 99}, + [9555] = {.lex_state = 176, .external_lex_state = 129}, + [9556] = {.lex_state = 185, .external_lex_state = 99}, + [9557] = {.lex_state = 176, .external_lex_state = 129}, + [9558] = {.lex_state = 176, .external_lex_state = 129}, + [9559] = {.lex_state = 176, .external_lex_state = 129}, + [9560] = {.lex_state = 178, .external_lex_state = 99}, + [9561] = {.lex_state = 60, .external_lex_state = 99}, + [9562] = {.lex_state = 60, .external_lex_state = 99}, + [9563] = {.lex_state = 66, .external_lex_state = 116}, + [9564] = {.lex_state = 61, .external_lex_state = 127}, + [9565] = {.lex_state = 178, .external_lex_state = 99}, + [9566] = {.lex_state = 66, .external_lex_state = 116}, + [9567] = {.lex_state = 60, .external_lex_state = 99}, + [9568] = {.lex_state = 178, .external_lex_state = 116}, + [9569] = {.lex_state = 178, .external_lex_state = 116}, + [9570] = {.lex_state = 178, .external_lex_state = 116}, + [9571] = {.lex_state = 178, .external_lex_state = 116}, + [9572] = {.lex_state = 178, .external_lex_state = 99}, + [9573] = {.lex_state = 60, .external_lex_state = 99}, + [9574] = {.lex_state = 178, .external_lex_state = 117}, + [9575] = {.lex_state = 185, .external_lex_state = 117}, + [9576] = {.lex_state = 178, .external_lex_state = 117}, + [9577] = {.lex_state = 66, .external_lex_state = 116}, + [9578] = {.lex_state = 176, .external_lex_state = 130}, + [9579] = {.lex_state = 178, .external_lex_state = 99}, + [9580] = {.lex_state = 66, .external_lex_state = 116}, + [9581] = {.lex_state = 178, .external_lex_state = 99}, + [9582] = {.lex_state = 176, .external_lex_state = 99}, + [9583] = {.lex_state = 60, .external_lex_state = 99}, + [9584] = {.lex_state = 185, .external_lex_state = 117}, + [9585] = {.lex_state = 72, .external_lex_state = 99}, + [9586] = {.lex_state = 61, .external_lex_state = 126}, + [9587] = {.lex_state = 178, .external_lex_state = 117}, + [9588] = {.lex_state = 178, .external_lex_state = 117}, + [9589] = {.lex_state = 60, .external_lex_state = 99}, + [9590] = {.lex_state = 66, .external_lex_state = 116}, + [9591] = {.lex_state = 176, .external_lex_state = 129}, + [9592] = {.lex_state = 66, .external_lex_state = 116}, + [9593] = {.lex_state = 66, .external_lex_state = 116}, + [9594] = {.lex_state = 60, .external_lex_state = 99}, + [9595] = {.lex_state = 178, .external_lex_state = 118}, + [9596] = {.lex_state = 178, .external_lex_state = 99}, + [9597] = {.lex_state = 61, .external_lex_state = 125}, + [9598] = {.lex_state = 178, .external_lex_state = 117}, + [9599] = {.lex_state = 178, .external_lex_state = 118}, + [9600] = {.lex_state = 178, .external_lex_state = 99}, + [9601] = {.lex_state = 60, .external_lex_state = 99}, + [9602] = {.lex_state = 66, .external_lex_state = 116}, + [9603] = {.lex_state = 66, .external_lex_state = 116}, + [9604] = {.lex_state = 178, .external_lex_state = 117}, + [9605] = {.lex_state = 66, .external_lex_state = 116}, + [9606] = {.lex_state = 60, .external_lex_state = 99}, + [9607] = {.lex_state = 66, .external_lex_state = 116}, + [9608] = {.lex_state = 178, .external_lex_state = 118}, + [9609] = {.lex_state = 176, .external_lex_state = 130}, + [9610] = {.lex_state = 61, .external_lex_state = 125}, + [9611] = {.lex_state = 178, .external_lex_state = 99}, + [9612] = {.lex_state = 60, .external_lex_state = 99}, + [9613] = {.lex_state = 178, .external_lex_state = 99}, + [9614] = {.lex_state = 178, .external_lex_state = 99}, + [9615] = {.lex_state = 60, .external_lex_state = 99}, + [9616] = {.lex_state = 178, .external_lex_state = 99}, + [9617] = {.lex_state = 178, .external_lex_state = 99}, + [9618] = {.lex_state = 66, .external_lex_state = 116}, + [9619] = {.lex_state = 178, .external_lex_state = 99}, + [9620] = {.lex_state = 72, .external_lex_state = 99}, + [9621] = {.lex_state = 60, .external_lex_state = 99}, + [9622] = {.lex_state = 178, .external_lex_state = 118}, + [9623] = {.lex_state = 178, .external_lex_state = 118}, + [9624] = {.lex_state = 66, .external_lex_state = 116}, + [9625] = {.lex_state = 178, .external_lex_state = 118}, + [9626] = {.lex_state = 178, .external_lex_state = 118}, + [9627] = {.lex_state = 66, .external_lex_state = 116}, + [9628] = {.lex_state = 176, .external_lex_state = 99}, + [9629] = {.lex_state = 178, .external_lex_state = 117}, + [9630] = {.lex_state = 176, .external_lex_state = 130}, + [9631] = {.lex_state = 178, .external_lex_state = 118}, + [9632] = {.lex_state = 178, .external_lex_state = 99}, + [9633] = {.lex_state = 60, .external_lex_state = 99}, + [9634] = {.lex_state = 60, .external_lex_state = 99}, + [9635] = {.lex_state = 66, .external_lex_state = 116}, + [9636] = {.lex_state = 60, .external_lex_state = 99}, + [9637] = {.lex_state = 60, .external_lex_state = 99}, + [9638] = {.lex_state = 178, .external_lex_state = 99}, + [9639] = {.lex_state = 178, .external_lex_state = 99}, + [9640] = {.lex_state = 178, .external_lex_state = 116}, + [9641] = {.lex_state = 60, .external_lex_state = 99}, + [9642] = {.lex_state = 66, .external_lex_state = 116}, + [9643] = {.lex_state = 60, .external_lex_state = 99}, + [9644] = {.lex_state = 60, .external_lex_state = 99}, + [9645] = {.lex_state = 178, .external_lex_state = 99}, + [9646] = {.lex_state = 173, .external_lex_state = 99}, + [9647] = {.lex_state = 178, .external_lex_state = 99}, + [9648] = {.lex_state = 60, .external_lex_state = 99}, + [9649] = {.lex_state = 66, .external_lex_state = 99}, + [9650] = {.lex_state = 60, .external_lex_state = 99}, + [9651] = {.lex_state = 60, .external_lex_state = 99}, + [9652] = {.lex_state = 62, .external_lex_state = 125}, + [9653] = {.lex_state = 178, .external_lex_state = 99}, + [9654] = {.lex_state = 66, .external_lex_state = 116}, + [9655] = {.lex_state = 178, .external_lex_state = 117}, + [9656] = {.lex_state = 178, .external_lex_state = 116}, + [9657] = {.lex_state = 66, .external_lex_state = 116}, + [9658] = {.lex_state = 178, .external_lex_state = 99}, + [9659] = {.lex_state = 178, .external_lex_state = 99}, + [9660] = {.lex_state = 60, .external_lex_state = 99}, + [9661] = {.lex_state = 60, .external_lex_state = 99}, + [9662] = {.lex_state = 178, .external_lex_state = 118}, + [9663] = {.lex_state = 178, .external_lex_state = 118}, + [9664] = {.lex_state = 178, .external_lex_state = 99}, + [9665] = {.lex_state = 180, .external_lex_state = 117}, + [9666] = {.lex_state = 66, .external_lex_state = 99}, + [9667] = {.lex_state = 178, .external_lex_state = 99}, + [9668] = {.lex_state = 178, .external_lex_state = 118}, + [9669] = {.lex_state = 66, .external_lex_state = 116}, + [9670] = {.lex_state = 61, .external_lex_state = 126}, + [9671] = {.lex_state = 178, .external_lex_state = 117}, + [9672] = {.lex_state = 60, .external_lex_state = 99}, + [9673] = {.lex_state = 176, .external_lex_state = 129}, + [9674] = {.lex_state = 66, .external_lex_state = 116}, + [9675] = {.lex_state = 66, .external_lex_state = 116}, + [9676] = {.lex_state = 178, .external_lex_state = 118}, + [9677] = {.lex_state = 66, .external_lex_state = 116}, + [9678] = {.lex_state = 60, .external_lex_state = 99}, + [9679] = {.lex_state = 66, .external_lex_state = 116}, + [9680] = {.lex_state = 178, .external_lex_state = 116}, + [9681] = {.lex_state = 178, .external_lex_state = 118}, + [9682] = {.lex_state = 60, .external_lex_state = 99}, + [9683] = {.lex_state = 178, .external_lex_state = 116}, + [9684] = {.lex_state = 61, .external_lex_state = 127}, + [9685] = {.lex_state = 178, .external_lex_state = 99}, + [9686] = {.lex_state = 178, .external_lex_state = 99}, + [9687] = {.lex_state = 66, .external_lex_state = 116}, + [9688] = {.lex_state = 60, .external_lex_state = 99}, + [9689] = {.lex_state = 178, .external_lex_state = 99}, + [9690] = {.lex_state = 178, .external_lex_state = 99}, + [9691] = {.lex_state = 178, .external_lex_state = 118}, + [9692] = {.lex_state = 178, .external_lex_state = 116}, + [9693] = {.lex_state = 66, .external_lex_state = 116}, + [9694] = {.lex_state = 66, .external_lex_state = 116}, + [9695] = {.lex_state = 178, .external_lex_state = 116}, + [9696] = {.lex_state = 66, .external_lex_state = 116}, + [9697] = {.lex_state = 60, .external_lex_state = 99}, + [9698] = {.lex_state = 62, .external_lex_state = 125}, + [9699] = {.lex_state = 185, .external_lex_state = 117}, + [9700] = {.lex_state = 66, .external_lex_state = 116}, + [9701] = {.lex_state = 178, .external_lex_state = 117}, + [9702] = {.lex_state = 178, .external_lex_state = 118}, + [9703] = {.lex_state = 176, .external_lex_state = 99}, + [9704] = {.lex_state = 33, .external_lex_state = 99}, + [9705] = {.lex_state = 178, .external_lex_state = 116}, + [9706] = {.lex_state = 178, .external_lex_state = 116}, + [9707] = {.lex_state = 176, .external_lex_state = 131}, + [9708] = {.lex_state = 176, .external_lex_state = 131}, [9709] = {.lex_state = 33, .external_lex_state = 99}, - [9710] = {.lex_state = 175, .external_lex_state = 99}, - [9711] = {.lex_state = 33, .external_lex_state = 99}, - [9712] = {.lex_state = 175, .external_lex_state = 131}, - [9713] = {.lex_state = 175, .external_lex_state = 131}, - [9714] = {.lex_state = 175, .external_lex_state = 99}, - [9715] = {.lex_state = 175, .external_lex_state = 99}, - [9716] = {.lex_state = 175, .external_lex_state = 129}, - [9717] = {.lex_state = 33, .external_lex_state = 99}, - [9718] = {.lex_state = 175, .external_lex_state = 131}, - [9719] = {.lex_state = 33, .external_lex_state = 99}, - [9720] = {.lex_state = 175, .external_lex_state = 131}, - [9721] = {.lex_state = 33, .external_lex_state = 99}, - [9722] = {.lex_state = 177, .external_lex_state = 99}, - [9723] = {.lex_state = 177, .external_lex_state = 116}, - [9724] = {.lex_state = 33, .external_lex_state = 99}, - [9725] = {.lex_state = 33, .external_lex_state = 99}, + [9710] = {.lex_state = 176, .external_lex_state = 131}, + [9711] = {.lex_state = 176, .external_lex_state = 131}, + [9712] = {.lex_state = 178, .external_lex_state = 116}, + [9713] = {.lex_state = 178, .external_lex_state = 116}, + [9714] = {.lex_state = 178, .external_lex_state = 116}, + [9715] = {.lex_state = 178, .external_lex_state = 116}, + [9716] = {.lex_state = 178, .external_lex_state = 116}, + [9717] = {.lex_state = 178, .external_lex_state = 99}, + [9718] = {.lex_state = 178, .external_lex_state = 99}, + [9719] = {.lex_state = 178, .external_lex_state = 116}, + [9720] = {.lex_state = 178, .external_lex_state = 116}, + [9721] = {.lex_state = 176, .external_lex_state = 131}, + [9722] = {.lex_state = 176, .external_lex_state = 99}, + [9723] = {.lex_state = 176, .external_lex_state = 99}, + [9724] = {.lex_state = 176, .external_lex_state = 131}, + [9725] = {.lex_state = 176, .external_lex_state = 131}, [9726] = {.lex_state = 33, .external_lex_state = 99}, - [9727] = {.lex_state = 177, .external_lex_state = 120}, - [9728] = {.lex_state = 177, .external_lex_state = 99}, - [9729] = {.lex_state = 33, .external_lex_state = 99}, - [9730] = {.lex_state = 177, .external_lex_state = 120}, - [9731] = {.lex_state = 33, .external_lex_state = 99}, - [9732] = {.lex_state = 33, .external_lex_state = 99}, - [9733] = {.lex_state = 33, .external_lex_state = 99}, - [9734] = {.lex_state = 33, .external_lex_state = 99}, - [9735] = {.lex_state = 33, .external_lex_state = 99}, - [9736] = {.lex_state = 33, .external_lex_state = 99}, - [9737] = {.lex_state = 33, .external_lex_state = 99}, - [9738] = {.lex_state = 33, .external_lex_state = 99}, - [9739] = {.lex_state = 33, .external_lex_state = 99}, - [9740] = {.lex_state = 33, .external_lex_state = 99}, - [9741] = {.lex_state = 33, .external_lex_state = 99}, - [9742] = {.lex_state = 33, .external_lex_state = 99}, - [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 = 177, .external_lex_state = 116}, - [9748] = {.lex_state = 175, .external_lex_state = 99}, - [9749] = {.lex_state = 175, .external_lex_state = 99}, - [9750] = {.lex_state = 177, .external_lex_state = 117}, - [9751] = {.lex_state = 175, .external_lex_state = 99}, - [9752] = {.lex_state = 175, .external_lex_state = 99}, - [9753] = {.lex_state = 175, .external_lex_state = 99}, - [9754] = {.lex_state = 175, .external_lex_state = 99}, - [9755] = {.lex_state = 177, .external_lex_state = 117}, - [9756] = {.lex_state = 175, .external_lex_state = 99}, - [9757] = {.lex_state = 177, .external_lex_state = 117}, - [9758] = {.lex_state = 177, .external_lex_state = 116}, - [9759] = {.lex_state = 175, .external_lex_state = 131}, - [9760] = {.lex_state = 175, .external_lex_state = 99}, - [9761] = {.lex_state = 175, .external_lex_state = 99}, - [9762] = {.lex_state = 185, .external_lex_state = 117}, - [9763] = {.lex_state = 175, .external_lex_state = 131}, - [9764] = {.lex_state = 175, .external_lex_state = 99}, - [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 = 177, .external_lex_state = 116}, - [9769] = {.lex_state = 175, .external_lex_state = 99}, - [9770] = {.lex_state = 175, .external_lex_state = 99}, - [9771] = {.lex_state = 175, .external_lex_state = 99}, - [9772] = {.lex_state = 175, .external_lex_state = 99}, - [9773] = {.lex_state = 175, .external_lex_state = 99}, - [9774] = {.lex_state = 179, .external_lex_state = 99}, - [9775] = {.lex_state = 177, .external_lex_state = 117}, - [9776] = {.lex_state = 177, .external_lex_state = 99}, - [9777] = {.lex_state = 175, .external_lex_state = 131}, - [9778] = {.lex_state = 175, .external_lex_state = 131}, - [9779] = {.lex_state = 179, .external_lex_state = 99}, - [9780] = {.lex_state = 177, .external_lex_state = 99}, - [9781] = {.lex_state = 175, .external_lex_state = 99}, - [9782] = {.lex_state = 33, .external_lex_state = 99}, - [9783] = {.lex_state = 175, .external_lex_state = 99}, - [9784] = {.lex_state = 177, .external_lex_state = 117}, - [9785] = {.lex_state = 175, .external_lex_state = 131}, - [9786] = {.lex_state = 175, .external_lex_state = 131}, - [9787] = {.lex_state = 175, .external_lex_state = 99}, - [9788] = {.lex_state = 175, .external_lex_state = 99}, - [9789] = {.lex_state = 177, .external_lex_state = 99}, - [9790] = {.lex_state = 38, .external_lex_state = 117}, - [9791] = {.lex_state = 177, .external_lex_state = 116}, - [9792] = {.lex_state = 177, .external_lex_state = 116}, - [9793] = {.lex_state = 177, .external_lex_state = 116}, - [9794] = {.lex_state = 175, .external_lex_state = 99}, - [9795] = {.lex_state = 177, .external_lex_state = 99}, - [9796] = {.lex_state = 177, .external_lex_state = 99}, - [9797] = {.lex_state = 177, .external_lex_state = 116}, - [9798] = {.lex_state = 175, .external_lex_state = 131}, - [9799] = {.lex_state = 177, .external_lex_state = 116}, - [9800] = {.lex_state = 175, .external_lex_state = 99}, - [9801] = {.lex_state = 175, .external_lex_state = 99}, - [9802] = {.lex_state = 175, .external_lex_state = 99}, - [9803] = {.lex_state = 177, .external_lex_state = 99}, - [9804] = {.lex_state = 175, .external_lex_state = 99}, - [9805] = {.lex_state = 175, .external_lex_state = 99}, - [9806] = {.lex_state = 175, .external_lex_state = 99}, - [9807] = {.lex_state = 175, .external_lex_state = 99}, - [9808] = {.lex_state = 175, .external_lex_state = 99}, - [9809] = {.lex_state = 175, .external_lex_state = 131}, - [9810] = {.lex_state = 177, .external_lex_state = 117}, - [9811] = {.lex_state = 175, .external_lex_state = 99}, - [9812] = {.lex_state = 175, .external_lex_state = 99}, - [9813] = {.lex_state = 175, .external_lex_state = 131}, - [9814] = {.lex_state = 175, .external_lex_state = 131}, - [9815] = {.lex_state = 175, .external_lex_state = 99}, - [9816] = {.lex_state = 175, .external_lex_state = 99}, - [9817] = {.lex_state = 181, .external_lex_state = 117}, - [9818] = {.lex_state = 175, .external_lex_state = 99}, - [9819] = {.lex_state = 175, .external_lex_state = 99}, - [9820] = {.lex_state = 175, .external_lex_state = 99}, - [9821] = {.lex_state = 175, .external_lex_state = 99}, - [9822] = {.lex_state = 33, .external_lex_state = 99}, - [9823] = {.lex_state = 175, .external_lex_state = 99}, - [9824] = {.lex_state = 175, .external_lex_state = 99}, - [9825] = {.lex_state = 175, .external_lex_state = 99}, - [9826] = {.lex_state = 177, .external_lex_state = 99}, - [9827] = {.lex_state = 175, .external_lex_state = 131}, - [9828] = {.lex_state = 175, .external_lex_state = 131}, - [9829] = {.lex_state = 177, .external_lex_state = 99}, - [9830] = {.lex_state = 177, .external_lex_state = 117}, - [9831] = {.lex_state = 175, .external_lex_state = 99}, - [9832] = {.lex_state = 177, .external_lex_state = 116}, - [9833] = {.lex_state = 175, .external_lex_state = 99}, - [9834] = {.lex_state = 177, .external_lex_state = 116}, - [9835] = {.lex_state = 177, .external_lex_state = 116}, - [9836] = {.lex_state = 177, .external_lex_state = 117}, - [9837] = {.lex_state = 175, .external_lex_state = 99}, - [9838] = {.lex_state = 177, .external_lex_state = 116}, - [9839] = {.lex_state = 179, .external_lex_state = 117}, - [9840] = {.lex_state = 177, .external_lex_state = 99}, - [9841] = {.lex_state = 175, .external_lex_state = 99}, - [9842] = {.lex_state = 177, .external_lex_state = 99}, - [9843] = {.lex_state = 175, .external_lex_state = 131}, - [9844] = {.lex_state = 175, .external_lex_state = 99}, - [9845] = {.lex_state = 177, .external_lex_state = 116}, - [9846] = {.lex_state = 177, .external_lex_state = 116}, - [9847] = {.lex_state = 177, .external_lex_state = 117}, - [9848] = {.lex_state = 175, .external_lex_state = 99}, - [9849] = {.lex_state = 177, .external_lex_state = 117}, - [9850] = {.lex_state = 175, .external_lex_state = 99}, - [9851] = {.lex_state = 175, .external_lex_state = 131}, - [9852] = {.lex_state = 175, .external_lex_state = 131}, - [9853] = {.lex_state = 175, .external_lex_state = 99}, - [9854] = {.lex_state = 177, .external_lex_state = 99}, - [9855] = {.lex_state = 175, .external_lex_state = 131}, - [9856] = {.lex_state = 175, .external_lex_state = 131}, - [9857] = {.lex_state = 175, .external_lex_state = 131}, - [9858] = {.lex_state = 175, .external_lex_state = 131}, - [9859] = {.lex_state = 177, .external_lex_state = 117}, - [9860] = {.lex_state = 175, .external_lex_state = 99}, - [9861] = {.lex_state = 175, .external_lex_state = 99}, - [9862] = {.lex_state = 183, .external_lex_state = 99}, - [9863] = {.lex_state = 175, .external_lex_state = 99}, - [9864] = {.lex_state = 177, .external_lex_state = 117}, - [9865] = {.lex_state = 175, .external_lex_state = 99}, - [9866] = {.lex_state = 175, .external_lex_state = 99}, - [9867] = {.lex_state = 177, .external_lex_state = 116}, - [9868] = {.lex_state = 175, .external_lex_state = 128}, - [9869] = {.lex_state = 179, .external_lex_state = 99}, - [9870] = {.lex_state = 177, .external_lex_state = 99}, - [9871] = {.lex_state = 175, .external_lex_state = 99}, - [9872] = {.lex_state = 179, .external_lex_state = 99}, - [9873] = {.lex_state = 177, .external_lex_state = 116}, - [9874] = {.lex_state = 175, .external_lex_state = 99}, - [9875] = {.lex_state = 175, .external_lex_state = 99}, - [9876] = {.lex_state = 175, .external_lex_state = 99}, - [9877] = {.lex_state = 177, .external_lex_state = 116}, - [9878] = {.lex_state = 175, .external_lex_state = 99}, - [9879] = {.lex_state = 175, .external_lex_state = 99}, - [9880] = {.lex_state = 177, .external_lex_state = 116}, - [9881] = {.lex_state = 175, .external_lex_state = 99}, - [9882] = {.lex_state = 177, .external_lex_state = 99}, - [9883] = {.lex_state = 175, .external_lex_state = 99}, - [9884] = {.lex_state = 175, .external_lex_state = 131}, - [9885] = {.lex_state = 175, .external_lex_state = 131}, - [9886] = {.lex_state = 177, .external_lex_state = 117}, - [9887] = {.lex_state = 33, .external_lex_state = 99}, - [9888] = {.lex_state = 175, .external_lex_state = 99}, - [9889] = {.lex_state = 175, .external_lex_state = 99}, - [9890] = {.lex_state = 175, .external_lex_state = 131}, - [9891] = {.lex_state = 175, .external_lex_state = 131}, - [9892] = {.lex_state = 175, .external_lex_state = 131}, - [9893] = {.lex_state = 175, .external_lex_state = 99}, - [9894] = {.lex_state = 175, .external_lex_state = 99}, - [9895] = {.lex_state = 175, .external_lex_state = 99}, - [9896] = {.lex_state = 177, .external_lex_state = 99}, - [9897] = {.lex_state = 175, .external_lex_state = 99}, - [9898] = {.lex_state = 175, .external_lex_state = 99}, - [9899] = {.lex_state = 175, .external_lex_state = 99}, - [9900] = {.lex_state = 175, .external_lex_state = 99}, - [9901] = {.lex_state = 175, .external_lex_state = 99}, - [9902] = {.lex_state = 175, .external_lex_state = 99}, - [9903] = {.lex_state = 177, .external_lex_state = 117}, - [9904] = {.lex_state = 175, .external_lex_state = 99}, - [9905] = {.lex_state = 175, .external_lex_state = 99}, - [9906] = {.lex_state = 175, .external_lex_state = 99}, - [9907] = {.lex_state = 175, .external_lex_state = 99}, - [9908] = {.lex_state = 175, .external_lex_state = 99}, - [9909] = {.lex_state = 175, .external_lex_state = 99}, - [9910] = {.lex_state = 177, .external_lex_state = 116}, - [9911] = {.lex_state = 175, .external_lex_state = 99}, - [9912] = {.lex_state = 175, .external_lex_state = 99}, - [9913] = {.lex_state = 175, .external_lex_state = 99}, - [9914] = {.lex_state = 175, .external_lex_state = 99}, - [9915] = {.lex_state = 175, .external_lex_state = 99}, - [9916] = {.lex_state = 175, .external_lex_state = 99}, - [9917] = {.lex_state = 175, .external_lex_state = 99}, - [9918] = {.lex_state = 175, .external_lex_state = 99}, - [9919] = {.lex_state = 175, .external_lex_state = 99}, - [9920] = {.lex_state = 175, .external_lex_state = 99}, - [9921] = {.lex_state = 181, .external_lex_state = 117}, - [9922] = {.lex_state = 177, .external_lex_state = 116}, - [9923] = {.lex_state = 177, .external_lex_state = 99}, - [9924] = {.lex_state = 175, .external_lex_state = 99}, - [9925] = {.lex_state = 177, .external_lex_state = 99}, - [9926] = {.lex_state = 177, .external_lex_state = 116}, - [9927] = {.lex_state = 177, .external_lex_state = 116}, - [9928] = {.lex_state = 177, .external_lex_state = 117}, - [9929] = {.lex_state = 175, .external_lex_state = 130}, - [9930] = {.lex_state = 175, .external_lex_state = 131}, - [9931] = {.lex_state = 175, .external_lex_state = 131}, - [9932] = {.lex_state = 33, .external_lex_state = 99}, - [9933] = {.lex_state = 177, .external_lex_state = 99}, - [9934] = {.lex_state = 175, .external_lex_state = 99}, - [9935] = {.lex_state = 177, .external_lex_state = 120}, - [9936] = {.lex_state = 177, .external_lex_state = 117}, - [9937] = {.lex_state = 175, .external_lex_state = 131}, - [9938] = {.lex_state = 175, .external_lex_state = 131}, - [9939] = {.lex_state = 179, .external_lex_state = 99}, - [9940] = {.lex_state = 33, .external_lex_state = 99}, - [9941] = {.lex_state = 177, .external_lex_state = 116}, - [9942] = {.lex_state = 177, .external_lex_state = 117}, - [9943] = {.lex_state = 177, .external_lex_state = 116}, - [9944] = {.lex_state = 177, .external_lex_state = 99}, - [9945] = {.lex_state = 177, .external_lex_state = 117}, - [9946] = {.lex_state = 181, .external_lex_state = 117}, - [9947] = {.lex_state = 175, .external_lex_state = 99}, - [9948] = {.lex_state = 177, .external_lex_state = 116}, - [9949] = {.lex_state = 177, .external_lex_state = 117}, - [9950] = {.lex_state = 175, .external_lex_state = 99}, - [9951] = {.lex_state = 175, .external_lex_state = 131}, - [9952] = {.lex_state = 175, .external_lex_state = 99}, - [9953] = {.lex_state = 177, .external_lex_state = 116}, - [9954] = {.lex_state = 175, .external_lex_state = 131}, - [9955] = {.lex_state = 175, .external_lex_state = 131}, - [9956] = {.lex_state = 175, .external_lex_state = 99}, - [9957] = {.lex_state = 175, .external_lex_state = 99}, - [9958] = {.lex_state = 33, .external_lex_state = 99}, - [9959] = {.lex_state = 181, .external_lex_state = 117}, - [9960] = {.lex_state = 175, .external_lex_state = 99}, - [9961] = {.lex_state = 177, .external_lex_state = 117}, - [9962] = {.lex_state = 175, .external_lex_state = 99}, - [9963] = {.lex_state = 175, .external_lex_state = 99}, - [9964] = {.lex_state = 177, .external_lex_state = 117}, - [9965] = {.lex_state = 175, .external_lex_state = 131}, - [9966] = {.lex_state = 175, .external_lex_state = 131}, - [9967] = {.lex_state = 175, .external_lex_state = 99}, - [9968] = {.lex_state = 33, .external_lex_state = 99}, - [9969] = {.lex_state = 175, .external_lex_state = 131}, - [9970] = {.lex_state = 175, .external_lex_state = 131}, - [9971] = {.lex_state = 175, .external_lex_state = 99}, - [9972] = {.lex_state = 175, .external_lex_state = 131}, - [9973] = {.lex_state = 175, .external_lex_state = 99}, - [9974] = {.lex_state = 175, .external_lex_state = 131}, - [9975] = {.lex_state = 175, .external_lex_state = 131}, - [9976] = {.lex_state = 175, .external_lex_state = 99}, - [9977] = {.lex_state = 175, .external_lex_state = 99}, - [9978] = {.lex_state = 183, .external_lex_state = 99}, - [9979] = {.lex_state = 175, .external_lex_state = 99}, - [9980] = {.lex_state = 175, .external_lex_state = 99}, - [9981] = {.lex_state = 175, .external_lex_state = 131}, - [9982] = {.lex_state = 175, .external_lex_state = 99}, - [9983] = {.lex_state = 175, .external_lex_state = 99}, - [9984] = {.lex_state = 175, .external_lex_state = 99}, - [9985] = {.lex_state = 177, .external_lex_state = 117}, - [9986] = {.lex_state = 177, .external_lex_state = 99}, - [9987] = {.lex_state = 175, .external_lex_state = 99}, - [9988] = {.lex_state = 175, .external_lex_state = 99}, - [9989] = {.lex_state = 175, .external_lex_state = 99}, - [9990] = {.lex_state = 175, .external_lex_state = 99}, - [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 = 175, .external_lex_state = 99}, - [9997] = {.lex_state = 175, .external_lex_state = 99}, - [9998] = {.lex_state = 175, .external_lex_state = 99}, - [9999] = {.lex_state = 175, .external_lex_state = 99}, - [10000] = {.lex_state = 175, .external_lex_state = 99}, - [10001] = {.lex_state = 175, .external_lex_state = 99}, - [10002] = {.lex_state = 175, .external_lex_state = 99}, - [10003] = {.lex_state = 175, .external_lex_state = 99}, - [10004] = {.lex_state = 175, .external_lex_state = 99}, - [10005] = {.lex_state = 175, .external_lex_state = 99}, - [10006] = {.lex_state = 175, .external_lex_state = 99}, - [10007] = {.lex_state = 175, .external_lex_state = 99}, - [10008] = {.lex_state = 175, .external_lex_state = 99}, - [10009] = {.lex_state = 175, .external_lex_state = 99}, - [10010] = {.lex_state = 175, .external_lex_state = 99}, - [10011] = {.lex_state = 175, .external_lex_state = 99}, - [10012] = {.lex_state = 175, .external_lex_state = 99}, - [10013] = {.lex_state = 175, .external_lex_state = 99}, - [10014] = {.lex_state = 175, .external_lex_state = 99}, - [10015] = {.lex_state = 175, .external_lex_state = 99}, - [10016] = {.lex_state = 175, .external_lex_state = 99}, - [10017] = {.lex_state = 175, .external_lex_state = 99}, - [10018] = {.lex_state = 177, .external_lex_state = 116}, - [10019] = {.lex_state = 179, .external_lex_state = 99}, - [10020] = {.lex_state = 33, .external_lex_state = 99}, - [10021] = {.lex_state = 175, .external_lex_state = 99}, - [10022] = {.lex_state = 175, .external_lex_state = 99}, - [10023] = {.lex_state = 175, .external_lex_state = 99}, - [10024] = {.lex_state = 175, .external_lex_state = 99}, - [10025] = {.lex_state = 175, .external_lex_state = 99}, - [10026] = {.lex_state = 175, .external_lex_state = 99}, - [10027] = {.lex_state = 177, .external_lex_state = 99}, - [10028] = {.lex_state = 175, .external_lex_state = 99}, - [10029] = {.lex_state = 175, .external_lex_state = 99}, - [10030] = {.lex_state = 177, .external_lex_state = 117}, - [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 = 175, .external_lex_state = 99}, - [10037] = {.lex_state = 175, .external_lex_state = 99}, - [10038] = {.lex_state = 175, .external_lex_state = 99}, - [10039] = {.lex_state = 175, .external_lex_state = 99}, - [10040] = {.lex_state = 175, .external_lex_state = 99}, - [10041] = {.lex_state = 175, .external_lex_state = 99}, - [10042] = {.lex_state = 177, .external_lex_state = 99}, - [10043] = {.lex_state = 175, .external_lex_state = 99}, - [10044] = {.lex_state = 175, .external_lex_state = 99}, - [10045] = {.lex_state = 177, .external_lex_state = 117}, - [10046] = {.lex_state = 175, .external_lex_state = 99}, - [10047] = {.lex_state = 175, .external_lex_state = 99}, - [10048] = {.lex_state = 177, .external_lex_state = 132}, - [10049] = {.lex_state = 177, .external_lex_state = 99}, - [10050] = {.lex_state = 177, .external_lex_state = 132}, - [10051] = {.lex_state = 177, .external_lex_state = 99}, - [10052] = {.lex_state = 177, .external_lex_state = 132}, - [10053] = {.lex_state = 177, .external_lex_state = 132}, - [10054] = {.lex_state = 175, .external_lex_state = 99}, - [10055] = {.lex_state = 175, .external_lex_state = 99}, - [10056] = {.lex_state = 175, .external_lex_state = 99}, - [10057] = {.lex_state = 175, .external_lex_state = 99}, - [10058] = {.lex_state = 175, .external_lex_state = 99}, - [10059] = {.lex_state = 175, .external_lex_state = 99}, - [10060] = {.lex_state = 177, .external_lex_state = 132}, - [10061] = {.lex_state = 175, .external_lex_state = 99}, - [10062] = {.lex_state = 175, .external_lex_state = 99}, - [10063] = {.lex_state = 172, .external_lex_state = 99}, - [10064] = {.lex_state = 175, .external_lex_state = 99}, - [10065] = {.lex_state = 177, .external_lex_state = 117}, - [10066] = {.lex_state = 177, .external_lex_state = 117}, - [10067] = {.lex_state = 179, .external_lex_state = 99}, - [10068] = {.lex_state = 175, .external_lex_state = 99}, - [10069] = {.lex_state = 177, .external_lex_state = 117}, - [10070] = {.lex_state = 177, .external_lex_state = 117}, - [10071] = {.lex_state = 177, .external_lex_state = 132}, - [10072] = {.lex_state = 177, .external_lex_state = 117}, - [10073] = {.lex_state = 177, .external_lex_state = 117}, - [10074] = {.lex_state = 177, .external_lex_state = 132}, - [10075] = {.lex_state = 175, .external_lex_state = 99}, - [10076] = {.lex_state = 179, .external_lex_state = 99}, - [10077] = {.lex_state = 177, .external_lex_state = 117}, - [10078] = {.lex_state = 177, .external_lex_state = 117}, - [10079] = {.lex_state = 177, .external_lex_state = 117}, - [10080] = {.lex_state = 177, .external_lex_state = 117}, - [10081] = {.lex_state = 175, .external_lex_state = 99}, - [10082] = {.lex_state = 175, .external_lex_state = 99}, - [10083] = {.lex_state = 175, .external_lex_state = 99}, - [10084] = {.lex_state = 175, .external_lex_state = 99}, - [10085] = {.lex_state = 177, .external_lex_state = 117}, - [10086] = {.lex_state = 177, .external_lex_state = 117}, - [10087] = {.lex_state = 179, .external_lex_state = 99}, - [10088] = {.lex_state = 175, .external_lex_state = 128}, - [10089] = {.lex_state = 177, .external_lex_state = 132}, - [10090] = {.lex_state = 175, .external_lex_state = 99}, - [10091] = {.lex_state = 172, .external_lex_state = 99}, - [10092] = {.lex_state = 175, .external_lex_state = 99}, - [10093] = {.lex_state = 177, .external_lex_state = 117}, - [10094] = {.lex_state = 177, .external_lex_state = 117}, - [10095] = {.lex_state = 177, .external_lex_state = 117}, - [10096] = {.lex_state = 177, .external_lex_state = 117}, - [10097] = {.lex_state = 175, .external_lex_state = 99}, - [10098] = {.lex_state = 177, .external_lex_state = 117}, - [10099] = {.lex_state = 177, .external_lex_state = 117}, - [10100] = {.lex_state = 177, .external_lex_state = 117}, - [10101] = {.lex_state = 177, .external_lex_state = 117}, - [10102] = {.lex_state = 177, .external_lex_state = 117}, - [10103] = {.lex_state = 177, .external_lex_state = 117}, - [10104] = {.lex_state = 177, .external_lex_state = 117}, - [10105] = {.lex_state = 175, .external_lex_state = 99}, - [10106] = {.lex_state = 177, .external_lex_state = 132}, - [10107] = {.lex_state = 177, .external_lex_state = 117}, - [10108] = {.lex_state = 179, .external_lex_state = 99}, - [10109] = {.lex_state = 175, .external_lex_state = 99}, - [10110] = {.lex_state = 172, .external_lex_state = 99}, - [10111] = {.lex_state = 175, .external_lex_state = 99}, - [10112] = {.lex_state = 175, .external_lex_state = 99}, - [10113] = {.lex_state = 177, .external_lex_state = 132}, - [10114] = {.lex_state = 175, .external_lex_state = 99}, - [10115] = {.lex_state = 175, .external_lex_state = 99}, - [10116] = {.lex_state = 175, .external_lex_state = 99}, - [10117] = {.lex_state = 177, .external_lex_state = 132}, - [10118] = {.lex_state = 177, .external_lex_state = 117}, - [10119] = {.lex_state = 175, .external_lex_state = 99}, - [10120] = {.lex_state = 175, .external_lex_state = 99}, - [10121] = {.lex_state = 177, .external_lex_state = 132}, - [10122] = {.lex_state = 179, .external_lex_state = 99}, - [10123] = {.lex_state = 175, .external_lex_state = 99}, - [10124] = {.lex_state = 177, .external_lex_state = 117}, - [10125] = {.lex_state = 175, .external_lex_state = 99}, - [10126] = {.lex_state = 177, .external_lex_state = 132}, - [10127] = {.lex_state = 179, .external_lex_state = 99}, - [10128] = {.lex_state = 175, .external_lex_state = 99}, - [10129] = {.lex_state = 177, .external_lex_state = 132}, - [10130] = {.lex_state = 175, .external_lex_state = 99}, - [10131] = {.lex_state = 177, .external_lex_state = 132}, - [10132] = {.lex_state = 177, .external_lex_state = 99}, - [10133] = {.lex_state = 175, .external_lex_state = 99}, - [10134] = {.lex_state = 179, .external_lex_state = 99}, - [10135] = {.lex_state = 177, .external_lex_state = 117}, - [10136] = {.lex_state = 175, .external_lex_state = 99}, - [10137] = {.lex_state = 175, .external_lex_state = 99}, - [10138] = {.lex_state = 177, .external_lex_state = 117}, - [10139] = {.lex_state = 177, .external_lex_state = 117}, - [10140] = {.lex_state = 177, .external_lex_state = 117}, - [10141] = {.lex_state = 177, .external_lex_state = 117}, - [10142] = {.lex_state = 177, .external_lex_state = 117}, - [10143] = {.lex_state = 177, .external_lex_state = 117}, - [10144] = {.lex_state = 177, .external_lex_state = 117}, - [10145] = {.lex_state = 177, .external_lex_state = 117}, - [10146] = {.lex_state = 177, .external_lex_state = 117}, - [10147] = {.lex_state = 177, .external_lex_state = 117}, - [10148] = {.lex_state = 177, .external_lex_state = 117}, - [10149] = {.lex_state = 177, .external_lex_state = 117}, - [10150] = {.lex_state = 177, .external_lex_state = 117}, - [10151] = {.lex_state = 177, .external_lex_state = 117}, - [10152] = {.lex_state = 177, .external_lex_state = 117}, - [10153] = {.lex_state = 177, .external_lex_state = 117}, - [10154] = {.lex_state = 177, .external_lex_state = 117}, - [10155] = {.lex_state = 175, .external_lex_state = 99}, - [10156] = {.lex_state = 177, .external_lex_state = 117}, - [10157] = {.lex_state = 177, .external_lex_state = 117}, - [10158] = {.lex_state = 177, .external_lex_state = 117}, - [10159] = {.lex_state = 177, .external_lex_state = 117}, - [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 = 175, .external_lex_state = 99}, - [10164] = {.lex_state = 177, .external_lex_state = 117}, - [10165] = {.lex_state = 177, .external_lex_state = 117}, - [10166] = {.lex_state = 175, .external_lex_state = 99}, - [10167] = {.lex_state = 177, .external_lex_state = 117}, - [10168] = {.lex_state = 177, .external_lex_state = 117}, - [10169] = {.lex_state = 177, .external_lex_state = 117}, - [10170] = {.lex_state = 177, .external_lex_state = 117}, - [10171] = {.lex_state = 177, .external_lex_state = 117}, - [10172] = {.lex_state = 177, .external_lex_state = 117}, - [10173] = {.lex_state = 177, .external_lex_state = 117}, - [10174] = {.lex_state = 175, .external_lex_state = 99}, - [10175] = {.lex_state = 177, .external_lex_state = 117}, - [10176] = {.lex_state = 175, .external_lex_state = 117}, - [10177] = {.lex_state = 175, .external_lex_state = 99}, - [10178] = {.lex_state = 177, .external_lex_state = 99}, - [10179] = {.lex_state = 175, .external_lex_state = 99}, - [10180] = {.lex_state = 175, .external_lex_state = 99}, - [10181] = {.lex_state = 175, .external_lex_state = 99}, - [10182] = {.lex_state = 177, .external_lex_state = 99}, - [10183] = {.lex_state = 172, .external_lex_state = 99}, - [10184] = {.lex_state = 175, .external_lex_state = 99}, - [10185] = {.lex_state = 172, .external_lex_state = 99}, - [10186] = {.lex_state = 175, .external_lex_state = 99}, - [10187] = {.lex_state = 175, .external_lex_state = 99}, - [10188] = {.lex_state = 175, .external_lex_state = 99}, - [10189] = {.lex_state = 175, .external_lex_state = 99}, - [10190] = {.lex_state = 175, .external_lex_state = 99}, - [10191] = {.lex_state = 175, .external_lex_state = 99}, - [10192] = {.lex_state = 177, .external_lex_state = 117}, - [10193] = {.lex_state = 175, .external_lex_state = 99}, - [10194] = {.lex_state = 175, .external_lex_state = 99}, - [10195] = {.lex_state = 175, .external_lex_state = 99}, - [10196] = {.lex_state = 177, .external_lex_state = 99}, - [10197] = {.lex_state = 177, .external_lex_state = 132}, - [10198] = {.lex_state = 177, .external_lex_state = 117}, - [10199] = {.lex_state = 177, .external_lex_state = 117}, - [10200] = {.lex_state = 175, .external_lex_state = 99}, - [10201] = {.lex_state = 177, .external_lex_state = 117}, - [10202] = {.lex_state = 177, .external_lex_state = 117}, - [10203] = {.lex_state = 177, .external_lex_state = 117}, - [10204] = {.lex_state = 177, .external_lex_state = 117}, - [10205] = {.lex_state = 177, .external_lex_state = 117}, - [10206] = {.lex_state = 177, .external_lex_state = 117}, - [10207] = {.lex_state = 177, .external_lex_state = 117}, - [10208] = {.lex_state = 177, .external_lex_state = 117}, - [10209] = {.lex_state = 177, .external_lex_state = 117}, - [10210] = {.lex_state = 177, .external_lex_state = 117}, - [10211] = {.lex_state = 177, .external_lex_state = 117}, - [10212] = {.lex_state = 177, .external_lex_state = 117}, - [10213] = {.lex_state = 177, .external_lex_state = 117}, - [10214] = {.lex_state = 177, .external_lex_state = 117}, - [10215] = {.lex_state = 177, .external_lex_state = 117}, - [10216] = {.lex_state = 177, .external_lex_state = 117}, - [10217] = {.lex_state = 177, .external_lex_state = 117}, - [10218] = {.lex_state = 177, .external_lex_state = 117}, - [10219] = {.lex_state = 175, .external_lex_state = 99}, - [10220] = {.lex_state = 177, .external_lex_state = 117}, - [10221] = {.lex_state = 177, .external_lex_state = 117}, - [10222] = {.lex_state = 177, .external_lex_state = 117}, - [10223] = {.lex_state = 177, .external_lex_state = 117}, - [10224] = {.lex_state = 175, .external_lex_state = 99}, - [10225] = {.lex_state = 177, .external_lex_state = 117}, - [10226] = {.lex_state = 177, .external_lex_state = 117}, - [10227] = {.lex_state = 175, .external_lex_state = 99}, - [10228] = {.lex_state = 172, .external_lex_state = 99}, - [10229] = {.lex_state = 175, .external_lex_state = 99}, - [10230] = {.lex_state = 175, .external_lex_state = 99}, - [10231] = {.lex_state = 175, .external_lex_state = 99}, - [10232] = {.lex_state = 172, .external_lex_state = 99}, - [10233] = {.lex_state = 175, .external_lex_state = 99}, - [10234] = {.lex_state = 175, .external_lex_state = 99}, - [10235] = {.lex_state = 175, .external_lex_state = 99}, - [10236] = {.lex_state = 175, .external_lex_state = 99}, - [10237] = {.lex_state = 172, .external_lex_state = 99}, - [10238] = {.lex_state = 177, .external_lex_state = 117}, - [10239] = {.lex_state = 177, .external_lex_state = 117}, - [10240] = {.lex_state = 177, .external_lex_state = 117}, - [10241] = {.lex_state = 177, .external_lex_state = 117}, - [10242] = {.lex_state = 177, .external_lex_state = 117}, - [10243] = {.lex_state = 177, .external_lex_state = 117}, - [10244] = {.lex_state = 177, .external_lex_state = 117}, - [10245] = {.lex_state = 177, .external_lex_state = 117}, - [10246] = {.lex_state = 177, .external_lex_state = 117}, - [10247] = {.lex_state = 177, .external_lex_state = 117}, - [10248] = {.lex_state = 177, .external_lex_state = 117}, - [10249] = {.lex_state = 177, .external_lex_state = 117}, - [10250] = {.lex_state = 172, .external_lex_state = 99}, - [10251] = {.lex_state = 175, .external_lex_state = 99}, - [10252] = {.lex_state = 177, .external_lex_state = 117}, - [10253] = {.lex_state = 179, .external_lex_state = 99}, - [10254] = {.lex_state = 175, .external_lex_state = 99}, - [10255] = {.lex_state = 177, .external_lex_state = 132}, - [10256] = {.lex_state = 172, .external_lex_state = 99}, - [10257] = {.lex_state = 177, .external_lex_state = 117}, - [10258] = {.lex_state = 175, .external_lex_state = 99}, - [10259] = {.lex_state = 175, .external_lex_state = 99}, - [10260] = {.lex_state = 175, .external_lex_state = 99}, - [10261] = {.lex_state = 175, .external_lex_state = 99}, - [10262] = {.lex_state = 175, .external_lex_state = 99}, - [10263] = {.lex_state = 177, .external_lex_state = 117}, - [10264] = {.lex_state = 175, .external_lex_state = 99}, - [10265] = {.lex_state = 177, .external_lex_state = 132}, - [10266] = {.lex_state = 175, .external_lex_state = 99}, - [10267] = {.lex_state = 177, .external_lex_state = 117}, - [10268] = {.lex_state = 177, .external_lex_state = 132}, - [10269] = {.lex_state = 175, .external_lex_state = 99}, - [10270] = {.lex_state = 177, .external_lex_state = 132}, - [10271] = {.lex_state = 175, .external_lex_state = 99}, - [10272] = {.lex_state = 177, .external_lex_state = 132}, - [10273] = {.lex_state = 177, .external_lex_state = 132}, - [10274] = {.lex_state = 177, .external_lex_state = 132}, - [10275] = {.lex_state = 177, .external_lex_state = 132}, - [10276] = {.lex_state = 175, .external_lex_state = 99}, - [10277] = {.lex_state = 175, .external_lex_state = 99}, - [10278] = {.lex_state = 177, .external_lex_state = 132}, - [10279] = {.lex_state = 177, .external_lex_state = 132}, - [10280] = {.lex_state = 175, .external_lex_state = 99}, - [10281] = {.lex_state = 175, .external_lex_state = 99}, - [10282] = {.lex_state = 177, .external_lex_state = 132}, - [10283] = {.lex_state = 177, .external_lex_state = 132}, - [10284] = {.lex_state = 175, .external_lex_state = 99}, - [10285] = {.lex_state = 177, .external_lex_state = 132}, - [10286] = {.lex_state = 172, .external_lex_state = 99}, - [10287] = {.lex_state = 177, .external_lex_state = 132}, - [10288] = {.lex_state = 175, .external_lex_state = 99}, - [10289] = {.lex_state = 177, .external_lex_state = 132}, - [10290] = {.lex_state = 177, .external_lex_state = 132}, - [10291] = {.lex_state = 175, .external_lex_state = 99}, - [10292] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 177, .external_lex_state = 117}, - [10298] = {.lex_state = 175, .external_lex_state = 99}, - [10299] = {.lex_state = 177, .external_lex_state = 117}, - [10300] = {.lex_state = 177, .external_lex_state = 132}, - [10301] = {.lex_state = 175, .external_lex_state = 99}, - [10302] = {.lex_state = 177, .external_lex_state = 117}, - [10303] = {.lex_state = 177, .external_lex_state = 132}, - [10304] = {.lex_state = 175, .external_lex_state = 99}, - [10305] = {.lex_state = 172, .external_lex_state = 99}, - [10306] = {.lex_state = 177, .external_lex_state = 117}, - [10307] = {.lex_state = 177, .external_lex_state = 132}, - [10308] = {.lex_state = 177, .external_lex_state = 132}, - [10309] = {.lex_state = 175, .external_lex_state = 99}, - [10310] = {.lex_state = 175, .external_lex_state = 99}, - [10311] = {.lex_state = 179, .external_lex_state = 99}, - [10312] = {.lex_state = 177, .external_lex_state = 132}, - [10313] = {.lex_state = 179, .external_lex_state = 99}, - [10314] = {.lex_state = 175, .external_lex_state = 99}, - [10315] = {.lex_state = 175, .external_lex_state = 99}, - [10316] = {.lex_state = 175, .external_lex_state = 99}, - [10317] = {.lex_state = 175, .external_lex_state = 99}, - [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 = 172, .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 = 177, .external_lex_state = 132}, - [10327] = {.lex_state = 175, .external_lex_state = 99}, - [10328] = {.lex_state = 177, .external_lex_state = 132}, - [10329] = {.lex_state = 172, .external_lex_state = 99}, - [10330] = {.lex_state = 177, .external_lex_state = 117}, - [10331] = {.lex_state = 177, .external_lex_state = 117}, - [10332] = {.lex_state = 175, .external_lex_state = 99}, - [10333] = {.lex_state = 175, .external_lex_state = 99}, - [10334] = {.lex_state = 175, .external_lex_state = 99}, - [10335] = {.lex_state = 175, .external_lex_state = 99}, - [10336] = {.lex_state = 177, .external_lex_state = 99}, - [10337] = {.lex_state = 179, .external_lex_state = 99}, - [10338] = {.lex_state = 175, .external_lex_state = 99}, - [10339] = {.lex_state = 175, .external_lex_state = 99}, - [10340] = {.lex_state = 177, .external_lex_state = 132}, - [10341] = {.lex_state = 177, .external_lex_state = 132}, - [10342] = {.lex_state = 175, .external_lex_state = 99}, - [10343] = {.lex_state = 175, .external_lex_state = 99}, - [10344] = {.lex_state = 177, .external_lex_state = 99}, - [10345] = {.lex_state = 175, .external_lex_state = 99}, - [10346] = {.lex_state = 175, .external_lex_state = 99}, - [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 = 177, .external_lex_state = 99}, - [10352] = {.lex_state = 175, .external_lex_state = 99}, - [10353] = {.lex_state = 177, .external_lex_state = 132}, - [10354] = {.lex_state = 177, .external_lex_state = 99}, - [10355] = {.lex_state = 175, .external_lex_state = 99}, - [10356] = {.lex_state = 175, .external_lex_state = 99}, - [10357] = {.lex_state = 175, .external_lex_state = 99}, - [10358] = {.lex_state = 177, .external_lex_state = 117}, - [10359] = {.lex_state = 175, .external_lex_state = 99}, - [10360] = {.lex_state = 175, .external_lex_state = 99}, - [10361] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 175, .external_lex_state = 99}, - [10366] = {.lex_state = 175, .external_lex_state = 99}, - [10367] = {.lex_state = 175, .external_lex_state = 99}, - [10368] = {.lex_state = 175, .external_lex_state = 99}, - [10369] = {.lex_state = 177, .external_lex_state = 132}, - [10370] = {.lex_state = 175, .external_lex_state = 99}, - [10371] = {.lex_state = 175, .external_lex_state = 99}, - [10372] = {.lex_state = 177, .external_lex_state = 132}, - [10373] = {.lex_state = 177, .external_lex_state = 132}, - [10374] = {.lex_state = 177, .external_lex_state = 132}, - [10375] = {.lex_state = 175, .external_lex_state = 99}, - [10376] = {.lex_state = 172, .external_lex_state = 99}, - [10377] = {.lex_state = 175, .external_lex_state = 99}, - [10378] = {.lex_state = 177, .external_lex_state = 132}, - [10379] = {.lex_state = 177, .external_lex_state = 132}, - [10380] = {.lex_state = 177, .external_lex_state = 132}, - [10381] = {.lex_state = 175, .external_lex_state = 99}, - [10382] = {.lex_state = 177, .external_lex_state = 132}, - [10383] = {.lex_state = 175, .external_lex_state = 99}, - [10384] = {.lex_state = 175, .external_lex_state = 99}, - [10385] = {.lex_state = 175, .external_lex_state = 99}, - [10386] = {.lex_state = 175, .external_lex_state = 99}, - [10387] = {.lex_state = 177, .external_lex_state = 132}, - [10388] = {.lex_state = 177, .external_lex_state = 117}, - [10389] = {.lex_state = 175, .external_lex_state = 99}, - [10390] = {.lex_state = 177, .external_lex_state = 99}, - [10391] = {.lex_state = 177, .external_lex_state = 99}, - [10392] = {.lex_state = 177, .external_lex_state = 99}, - [10393] = {.lex_state = 177, .external_lex_state = 99}, - [10394] = {.lex_state = 179, .external_lex_state = 99}, - [10395] = {.lex_state = 177, .external_lex_state = 132}, - [10396] = {.lex_state = 177, .external_lex_state = 132}, - [10397] = {.lex_state = 175, .external_lex_state = 99}, - [10398] = {.lex_state = 175, .external_lex_state = 99}, - [10399] = {.lex_state = 175, .external_lex_state = 99}, - [10400] = {.lex_state = 177, .external_lex_state = 117}, - [10401] = {.lex_state = 175, .external_lex_state = 99}, - [10402] = {.lex_state = 179, .external_lex_state = 99}, - [10403] = {.lex_state = 172, .external_lex_state = 99}, - [10404] = {.lex_state = 172, .external_lex_state = 99}, - [10405] = {.lex_state = 177, .external_lex_state = 132}, - [10406] = {.lex_state = 175, .external_lex_state = 99}, - [10407] = {.lex_state = 175, .external_lex_state = 99}, - [10408] = {.lex_state = 177, .external_lex_state = 132}, - [10409] = {.lex_state = 175, .external_lex_state = 99}, - [10410] = {.lex_state = 177, .external_lex_state = 132}, - [10411] = {.lex_state = 179, .external_lex_state = 99}, - [10412] = {.lex_state = 177, .external_lex_state = 99}, - [10413] = {.lex_state = 175, .external_lex_state = 99}, - [10414] = {.lex_state = 179, .external_lex_state = 99}, - [10415] = {.lex_state = 175, .external_lex_state = 99}, - [10416] = {.lex_state = 177, .external_lex_state = 132}, - [10417] = {.lex_state = 177, .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 = 177, .external_lex_state = 132}, - [10427] = {.lex_state = 175, .external_lex_state = 99}, - [10428] = {.lex_state = 175, .external_lex_state = 99}, - [10429] = {.lex_state = 177, .external_lex_state = 99}, - [10430] = {.lex_state = 175, .external_lex_state = 99}, - [10431] = {.lex_state = 175, .external_lex_state = 99}, - [10432] = {.lex_state = 175, .external_lex_state = 99}, - [10433] = {.lex_state = 177, .external_lex_state = 132}, - [10434] = {.lex_state = 175, .external_lex_state = 99}, - [10435] = {.lex_state = 175, .external_lex_state = 99}, - [10436] = {.lex_state = 175, .external_lex_state = 99}, - [10437] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 175, .external_lex_state = 99}, - [10442] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 177, .external_lex_state = 132}, - [10447] = {.lex_state = 175, .external_lex_state = 99}, - [10448] = {.lex_state = 177, .external_lex_state = 117}, - [10449] = {.lex_state = 175, .external_lex_state = 99}, - [10450] = {.lex_state = 175, .external_lex_state = 99}, - [10451] = {.lex_state = 177, .external_lex_state = 117}, - [10452] = {.lex_state = 175, .external_lex_state = 99}, - [10453] = {.lex_state = 175, .external_lex_state = 99}, - [10454] = {.lex_state = 177, .external_lex_state = 132}, - [10455] = {.lex_state = 177, .external_lex_state = 132}, - [10456] = {.lex_state = 175, .external_lex_state = 99}, - [10457] = {.lex_state = 177, .external_lex_state = 132}, - [10458] = {.lex_state = 177, .external_lex_state = 132}, - [10459] = {.lex_state = 175, .external_lex_state = 99}, - [10460] = {.lex_state = 177, .external_lex_state = 132}, - [10461] = {.lex_state = 177, .external_lex_state = 132}, - [10462] = {.lex_state = 177, .external_lex_state = 132}, - [10463] = {.lex_state = 179, .external_lex_state = 99}, - [10464] = {.lex_state = 175, .external_lex_state = 117}, - [10465] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 177, .external_lex_state = 117}, - [10472] = {.lex_state = 177, .external_lex_state = 117}, - [10473] = {.lex_state = 175, .external_lex_state = 99}, - [10474] = {.lex_state = 179, .external_lex_state = 99}, - [10475] = {.lex_state = 172, .external_lex_state = 99}, - [10476] = {.lex_state = 177, .external_lex_state = 117}, - [10477] = {.lex_state = 177, .external_lex_state = 132}, - [10478] = {.lex_state = 177, .external_lex_state = 117}, - [10479] = {.lex_state = 177, .external_lex_state = 117}, - [10480] = {.lex_state = 175, .external_lex_state = 99}, - [10481] = {.lex_state = 172, .external_lex_state = 99}, - [10482] = {.lex_state = 177, .external_lex_state = 132}, - [10483] = {.lex_state = 177, .external_lex_state = 132}, - [10484] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 175, .external_lex_state = 99}, - [10491] = {.lex_state = 175, .external_lex_state = 99}, - [10492] = {.lex_state = 177, .external_lex_state = 132}, - [10493] = {.lex_state = 175, .external_lex_state = 99}, - [10494] = {.lex_state = 175, .external_lex_state = 99}, - [10495] = {.lex_state = 175, .external_lex_state = 99}, - [10496] = {.lex_state = 177, .external_lex_state = 117}, - [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 = 177, .external_lex_state = 117}, - [10501] = {.lex_state = 175, .external_lex_state = 99}, - [10502] = {.lex_state = 175, .external_lex_state = 117}, - [10503] = {.lex_state = 177, .external_lex_state = 132}, - [10504] = {.lex_state = 175, .external_lex_state = 99}, - [10505] = {.lex_state = 175, .external_lex_state = 99}, - [10506] = {.lex_state = 177, .external_lex_state = 132}, - [10507] = {.lex_state = 177, .external_lex_state = 117}, - [10508] = {.lex_state = 175, .external_lex_state = 117}, - [10509] = {.lex_state = 175, .external_lex_state = 99}, - [10510] = {.lex_state = 172, .external_lex_state = 99}, - [10511] = {.lex_state = 177, .external_lex_state = 99}, - [10512] = {.lex_state = 175, .external_lex_state = 99}, - [10513] = {.lex_state = 175, .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 = 177, .external_lex_state = 117}, - [10518] = {.lex_state = 175, .external_lex_state = 99}, - [10519] = {.lex_state = 175, .external_lex_state = 99}, - [10520] = {.lex_state = 172, .external_lex_state = 99}, - [10521] = {.lex_state = 175, .external_lex_state = 99}, - [10522] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 177, .external_lex_state = 132}, - [10528] = {.lex_state = 175, .external_lex_state = 99}, - [10529] = {.lex_state = 175, .external_lex_state = 99}, - [10530] = {.lex_state = 177, .external_lex_state = 132}, - [10531] = {.lex_state = 177, .external_lex_state = 117}, - [10532] = {.lex_state = 177, .external_lex_state = 132}, - [10533] = {.lex_state = 175, .external_lex_state = 99}, - [10534] = {.lex_state = 175, .external_lex_state = 99}, - [10535] = {.lex_state = 175, .external_lex_state = 99}, - [10536] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 175, .external_lex_state = 99}, - [10546] = {.lex_state = 177, .external_lex_state = 132}, - [10547] = {.lex_state = 175, .external_lex_state = 117}, - [10548] = {.lex_state = 175, .external_lex_state = 99}, - [10549] = {.lex_state = 175, .external_lex_state = 99}, - [10550] = {.lex_state = 175, .external_lex_state = 99}, - [10551] = {.lex_state = 179, .external_lex_state = 99}, - [10552] = {.lex_state = 175, .external_lex_state = 99}, - [10553] = {.lex_state = 179, .external_lex_state = 99}, - [10554] = {.lex_state = 179, .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 = 177, .external_lex_state = 132}, - [10561] = {.lex_state = 175, .external_lex_state = 99}, - [10562] = {.lex_state = 172, .external_lex_state = 99}, - [10563] = {.lex_state = 175, .external_lex_state = 99}, - [10564] = {.lex_state = 177, .external_lex_state = 132}, - [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 = 177, .external_lex_state = 117}, - [10569] = {.lex_state = 177, .external_lex_state = 117}, - [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 = 177, .external_lex_state = 117}, - [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 = 175, .external_lex_state = 99}, - [10579] = {.lex_state = 175, .external_lex_state = 99}, - [10580] = {.lex_state = 175, .external_lex_state = 99}, - [10581] = {.lex_state = 175, .external_lex_state = 99}, - [10582] = {.lex_state = 175, .external_lex_state = 99}, - [10583] = {.lex_state = 175, .external_lex_state = 99}, - [10584] = {.lex_state = 175, .external_lex_state = 99}, - [10585] = {.lex_state = 175, .external_lex_state = 99}, - [10586] = {.lex_state = 175, .external_lex_state = 99}, - [10587] = {.lex_state = 175, .external_lex_state = 99}, - [10588] = {.lex_state = 175, .external_lex_state = 99}, - [10589] = {.lex_state = 175, .external_lex_state = 99}, - [10590] = {.lex_state = 175, .external_lex_state = 99}, - [10591] = {.lex_state = 177, .external_lex_state = 132}, - [10592] = {.lex_state = 175, .external_lex_state = 99}, - [10593] = {.lex_state = 175, .external_lex_state = 99}, - [10594] = {.lex_state = 175, .external_lex_state = 99}, - [10595] = {.lex_state = 177, .external_lex_state = 117}, - [10596] = {.lex_state = 175, .external_lex_state = 99}, - [10597] = {.lex_state = 177, .external_lex_state = 99}, - [10598] = {.lex_state = 175, .external_lex_state = 99}, - [10599] = {.lex_state = 175, .external_lex_state = 99}, - [10600] = {.lex_state = 175, .external_lex_state = 99}, - [10601] = {.lex_state = 175, .external_lex_state = 99}, - [10602] = {.lex_state = 175, .external_lex_state = 99}, - [10603] = {.lex_state = 175, .external_lex_state = 99}, - [10604] = {.lex_state = 177, .external_lex_state = 117}, - [10605] = {.lex_state = 175, .external_lex_state = 99}, - [10606] = {.lex_state = 175, .external_lex_state = 99}, - [10607] = {.lex_state = 177, .external_lex_state = 117}, - [10608] = {.lex_state = 175, .external_lex_state = 99}, - [10609] = {.lex_state = 175, .external_lex_state = 99}, - [10610] = {.lex_state = 175, .external_lex_state = 99}, - [10611] = {.lex_state = 175, .external_lex_state = 99}, - [10612] = {.lex_state = 175, .external_lex_state = 99}, - [10613] = {.lex_state = 175, .external_lex_state = 99}, - [10614] = {.lex_state = 175, .external_lex_state = 99}, - [10615] = {.lex_state = 175, .external_lex_state = 99}, - [10616] = {.lex_state = 175, .external_lex_state = 99}, - [10617] = {.lex_state = 175, .external_lex_state = 99}, - [10618] = {.lex_state = 175, .external_lex_state = 99}, - [10619] = {.lex_state = 177, .external_lex_state = 132}, - [10620] = {.lex_state = 175, .external_lex_state = 99}, - [10621] = {.lex_state = 177, .external_lex_state = 99}, - [10622] = {.lex_state = 175, .external_lex_state = 99}, - [10623] = {.lex_state = 177, .external_lex_state = 99}, - [10624] = {.lex_state = 175, .external_lex_state = 99}, - [10625] = {.lex_state = 172, .external_lex_state = 99}, - [10626] = {.lex_state = 175, .external_lex_state = 99}, - [10627] = {.lex_state = 175, .external_lex_state = 99}, - [10628] = {.lex_state = 177, .external_lex_state = 132}, - [10629] = {.lex_state = 175, .external_lex_state = 99}, - [10630] = {.lex_state = 175, .external_lex_state = 99}, - [10631] = {.lex_state = 175, .external_lex_state = 99}, - [10632] = {.lex_state = 177, .external_lex_state = 117}, - [10633] = {.lex_state = 175, .external_lex_state = 99}, - [10634] = {.lex_state = 175, .external_lex_state = 99}, - [10635] = {.lex_state = 175, .external_lex_state = 99}, - [10636] = {.lex_state = 175, .external_lex_state = 99}, - [10637] = {.lex_state = 175, .external_lex_state = 99}, - [10638] = {.lex_state = 175, .external_lex_state = 99}, - [10639] = {.lex_state = 177, .external_lex_state = 132}, - [10640] = {.lex_state = 177, .external_lex_state = 132}, - [10641] = {.lex_state = 175, .external_lex_state = 99}, - [10642] = {.lex_state = 175, .external_lex_state = 99}, - [10643] = {.lex_state = 175, .external_lex_state = 99}, - [10644] = {.lex_state = 175, .external_lex_state = 99}, - [10645] = {.lex_state = 177, .external_lex_state = 99}, - [10646] = {.lex_state = 175, .external_lex_state = 99}, - [10647] = {.lex_state = 175, .external_lex_state = 99}, - [10648] = {.lex_state = 175, .external_lex_state = 99}, - [10649] = {.lex_state = 175, .external_lex_state = 99}, - [10650] = {.lex_state = 177, .external_lex_state = 132}, - [10651] = {.lex_state = 175, .external_lex_state = 99}, - [10652] = {.lex_state = 175, .external_lex_state = 99}, - [10653] = {.lex_state = 175, .external_lex_state = 99}, - [10654] = {.lex_state = 175, .external_lex_state = 99}, - [10655] = {.lex_state = 175, .external_lex_state = 99}, - [10656] = {.lex_state = 175, .external_lex_state = 99}, - [10657] = {.lex_state = 172, .external_lex_state = 99}, - [10658] = {.lex_state = 177, .external_lex_state = 132}, - [10659] = {.lex_state = 179, .external_lex_state = 99}, - [10660] = {.lex_state = 175, .external_lex_state = 99}, - [10661] = {.lex_state = 175, .external_lex_state = 99}, - [10662] = {.lex_state = 175, .external_lex_state = 99}, - [10663] = {.lex_state = 175, .external_lex_state = 99}, - [10664] = {.lex_state = 175, .external_lex_state = 99}, - [10665] = {.lex_state = 175, .external_lex_state = 99}, - [10666] = {.lex_state = 175, .external_lex_state = 99}, - [10667] = {.lex_state = 175, .external_lex_state = 117}, - [10668] = {.lex_state = 175, .external_lex_state = 99}, - [10669] = {.lex_state = 175, .external_lex_state = 99}, - [10670] = {.lex_state = 175, .external_lex_state = 99}, - [10671] = {.lex_state = 175, .external_lex_state = 99}, - [10672] = {.lex_state = 175, .external_lex_state = 99}, - [10673] = {.lex_state = 175, .external_lex_state = 99}, - [10674] = {.lex_state = 175, .external_lex_state = 99}, - [10675] = {.lex_state = 175, .external_lex_state = 99}, - [10676] = {.lex_state = 175, .external_lex_state = 99}, - [10677] = {.lex_state = 175, .external_lex_state = 99}, - [10678] = {.lex_state = 175, .external_lex_state = 99}, - [10679] = {.lex_state = 175, .external_lex_state = 99}, - [10680] = {.lex_state = 175, .external_lex_state = 99}, - [10681] = {.lex_state = 177, .external_lex_state = 132}, - [10682] = {.lex_state = 175, .external_lex_state = 99}, - [10683] = {.lex_state = 177, .external_lex_state = 99}, - [10684] = {.lex_state = 175, .external_lex_state = 99}, - [10685] = {.lex_state = 175, .external_lex_state = 99}, - [10686] = {.lex_state = 175, .external_lex_state = 99}, - [10687] = {.lex_state = 175, .external_lex_state = 99}, - [10688] = {.lex_state = 177, .external_lex_state = 132}, - [10689] = {.lex_state = 175, .external_lex_state = 99}, - [10690] = {.lex_state = 172, .external_lex_state = 99}, - [10691] = {.lex_state = 175, .external_lex_state = 99}, - [10692] = {.lex_state = 175, .external_lex_state = 99}, - [10693] = {.lex_state = 179, .external_lex_state = 99}, - [10694] = {.lex_state = 175, .external_lex_state = 99}, - [10695] = {.lex_state = 175, .external_lex_state = 99}, - [10696] = {.lex_state = 175, .external_lex_state = 99}, - [10697] = {.lex_state = 175, .external_lex_state = 99}, - [10698] = {.lex_state = 177, .external_lex_state = 132}, - [10699] = {.lex_state = 175, .external_lex_state = 99}, - [10700] = {.lex_state = 175, .external_lex_state = 99}, - [10701] = {.lex_state = 177, .external_lex_state = 132}, - [10702] = {.lex_state = 175, .external_lex_state = 99}, - [10703] = {.lex_state = 175, .external_lex_state = 99}, - [10704] = {.lex_state = 175, .external_lex_state = 99}, - [10705] = {.lex_state = 175, .external_lex_state = 128}, - [10706] = {.lex_state = 175, .external_lex_state = 99}, - [10707] = {.lex_state = 175, .external_lex_state = 99}, - [10708] = {.lex_state = 175, .external_lex_state = 99}, - [10709] = {.lex_state = 72, .external_lex_state = 99}, - [10710] = {.lex_state = 175, .external_lex_state = 99}, - [10711] = {.lex_state = 175, .external_lex_state = 99}, - [10712] = {.lex_state = 175, .external_lex_state = 99}, - [10713] = {.lex_state = 175, .external_lex_state = 99}, - [10714] = {.lex_state = 175, .external_lex_state = 128}, - [10715] = {.lex_state = 175, .external_lex_state = 99}, - [10716] = {.lex_state = 175, .external_lex_state = 99}, - [10717] = {.lex_state = 175, .external_lex_state = 99}, - [10718] = {.lex_state = 175, .external_lex_state = 99}, - [10719] = {.lex_state = 175, .external_lex_state = 131}, - [10720] = {.lex_state = 175, .external_lex_state = 99}, - [10721] = {.lex_state = 175, .external_lex_state = 99}, - [10722] = {.lex_state = 175, .external_lex_state = 99}, - [10723] = {.lex_state = 175, .external_lex_state = 99}, - [10724] = {.lex_state = 175, .external_lex_state = 99}, - [10725] = {.lex_state = 72, .external_lex_state = 99}, - [10726] = {.lex_state = 175, .external_lex_state = 99}, - [10727] = {.lex_state = 175, .external_lex_state = 128}, - [10728] = {.lex_state = 72, .external_lex_state = 99}, - [10729] = {.lex_state = 177, .external_lex_state = 99}, - [10730] = {.lex_state = 175, .external_lex_state = 99}, - [10731] = {.lex_state = 175, .external_lex_state = 99}, - [10732] = {.lex_state = 175, .external_lex_state = 99}, - [10733] = {.lex_state = 175, .external_lex_state = 128}, - [10734] = {.lex_state = 44, .external_lex_state = 99}, - [10735] = {.lex_state = 175, .external_lex_state = 99}, - [10736] = {.lex_state = 175, .external_lex_state = 99}, - [10737] = {.lex_state = 175, .external_lex_state = 99}, - [10738] = {.lex_state = 175, .external_lex_state = 99}, - [10739] = {.lex_state = 72, .external_lex_state = 99}, - [10740] = {.lex_state = 175, .external_lex_state = 99}, - [10741] = {.lex_state = 175, .external_lex_state = 99}, - [10742] = {.lex_state = 177, .external_lex_state = 99}, - [10743] = {.lex_state = 175, .external_lex_state = 99}, - [10744] = {.lex_state = 175, .external_lex_state = 99}, - [10745] = {.lex_state = 175, .external_lex_state = 99}, - [10746] = {.lex_state = 175, .external_lex_state = 99}, - [10747] = {.lex_state = 175, .external_lex_state = 128}, - [10748] = {.lex_state = 177, .external_lex_state = 99}, - [10749] = {.lex_state = 175, .external_lex_state = 99}, - [10750] = {.lex_state = 175, .external_lex_state = 99}, - [10751] = {.lex_state = 175, .external_lex_state = 99}, - [10752] = {.lex_state = 175, .external_lex_state = 99}, - [10753] = {.lex_state = 175, .external_lex_state = 99}, - [10754] = {.lex_state = 175, .external_lex_state = 99}, - [10755] = {.lex_state = 175, .external_lex_state = 99}, - [10756] = {.lex_state = 175, .external_lex_state = 99}, - [10757] = {.lex_state = 175, .external_lex_state = 99}, - [10758] = {.lex_state = 175, .external_lex_state = 99}, - [10759] = {.lex_state = 175, .external_lex_state = 99}, - [10760] = {.lex_state = 175, .external_lex_state = 99}, - [10761] = {.lex_state = 175, .external_lex_state = 128}, - [10762] = {.lex_state = 72, .external_lex_state = 99}, - [10763] = {.lex_state = 175, .external_lex_state = 99}, - [10764] = {.lex_state = 175, .external_lex_state = 99}, - [10765] = {.lex_state = 175, .external_lex_state = 99}, - [10766] = {.lex_state = 175, .external_lex_state = 99}, - [10767] = {.lex_state = 72, .external_lex_state = 99}, - [10768] = {.lex_state = 175, .external_lex_state = 128}, - [10769] = {.lex_state = 175, .external_lex_state = 128}, - [10770] = {.lex_state = 175, .external_lex_state = 99}, - [10771] = {.lex_state = 177, .external_lex_state = 99}, - [10772] = {.lex_state = 175, .external_lex_state = 99}, - [10773] = {.lex_state = 175, .external_lex_state = 99}, - [10774] = {.lex_state = 175, .external_lex_state = 99}, - [10775] = {.lex_state = 177, .external_lex_state = 116}, - [10776] = {.lex_state = 175, .external_lex_state = 99}, - [10777] = {.lex_state = 175, .external_lex_state = 99}, - [10778] = {.lex_state = 175, .external_lex_state = 99}, - [10779] = {.lex_state = 175, .external_lex_state = 99}, - [10780] = {.lex_state = 175, .external_lex_state = 99}, - [10781] = {.lex_state = 177, .external_lex_state = 99}, - [10782] = {.lex_state = 175, .external_lex_state = 99}, - [10783] = {.lex_state = 172, .external_lex_state = 99}, - [10784] = {.lex_state = 175, .external_lex_state = 99}, - [10785] = {.lex_state = 175, .external_lex_state = 99}, - [10786] = {.lex_state = 175, .external_lex_state = 99}, - [10787] = {.lex_state = 175, .external_lex_state = 99}, - [10788] = {.lex_state = 175, .external_lex_state = 99}, - [10789] = {.lex_state = 175, .external_lex_state = 99}, - [10790] = {.lex_state = 72, .external_lex_state = 99}, - [10791] = {.lex_state = 72, .external_lex_state = 99}, - [10792] = {.lex_state = 175, .external_lex_state = 99}, - [10793] = {.lex_state = 175, .external_lex_state = 128}, - [10794] = {.lex_state = 177, .external_lex_state = 132}, - [10795] = {.lex_state = 175, .external_lex_state = 99}, - [10796] = {.lex_state = 175, .external_lex_state = 99}, - [10797] = {.lex_state = 44, .external_lex_state = 99}, - [10798] = {.lex_state = 175, .external_lex_state = 99}, - [10799] = {.lex_state = 175, .external_lex_state = 99}, - [10800] = {.lex_state = 175, .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 = 175, .external_lex_state = 99}, - [10805] = {.lex_state = 175, .external_lex_state = 99}, - [10806] = {.lex_state = 72, .external_lex_state = 99}, - [10807] = {.lex_state = 175, .external_lex_state = 99}, - [10808] = {.lex_state = 175, .external_lex_state = 99}, - [10809] = {.lex_state = 177, .external_lex_state = 99}, - [10810] = {.lex_state = 175, .external_lex_state = 99}, - [10811] = {.lex_state = 175, .external_lex_state = 128}, - [10812] = {.lex_state = 175, .external_lex_state = 99}, - [10813] = {.lex_state = 175, .external_lex_state = 99}, - [10814] = {.lex_state = 175, .external_lex_state = 99}, - [10815] = {.lex_state = 175, .external_lex_state = 99}, - [10816] = {.lex_state = 175, .external_lex_state = 99}, - [10817] = {.lex_state = 175, .external_lex_state = 99}, - [10818] = {.lex_state = 175, .external_lex_state = 99}, - [10819] = {.lex_state = 175, .external_lex_state = 99}, - [10820] = {.lex_state = 175, .external_lex_state = 99}, - [10821] = {.lex_state = 175, .external_lex_state = 99}, - [10822] = {.lex_state = 177, .external_lex_state = 99}, - [10823] = {.lex_state = 175, .external_lex_state = 99}, - [10824] = {.lex_state = 175, .external_lex_state = 99}, - [10825] = {.lex_state = 175, .external_lex_state = 99}, - [10826] = {.lex_state = 72, .external_lex_state = 99}, - [10827] = {.lex_state = 175, .external_lex_state = 128}, - [10828] = {.lex_state = 175, .external_lex_state = 99}, - [10829] = {.lex_state = 175, .external_lex_state = 99}, - [10830] = {.lex_state = 175, .external_lex_state = 99}, - [10831] = {.lex_state = 175, .external_lex_state = 99}, - [10832] = {.lex_state = 175, .external_lex_state = 131}, - [10833] = {.lex_state = 175, .external_lex_state = 128}, - [10834] = {.lex_state = 175, .external_lex_state = 99}, - [10835] = {.lex_state = 175, .external_lex_state = 99}, - [10836] = {.lex_state = 72, .external_lex_state = 99}, - [10837] = {.lex_state = 72, .external_lex_state = 99}, - [10838] = {.lex_state = 175, .external_lex_state = 99}, - [10839] = {.lex_state = 175, .external_lex_state = 99}, - [10840] = {.lex_state = 175, .external_lex_state = 128}, - [10841] = {.lex_state = 175, .external_lex_state = 99}, - [10842] = {.lex_state = 175, .external_lex_state = 99}, - [10843] = {.lex_state = 175, .external_lex_state = 99}, - [10844] = {.lex_state = 175, .external_lex_state = 99}, - [10845] = {.lex_state = 175, .external_lex_state = 99}, - [10846] = {.lex_state = 175, .external_lex_state = 128}, - [10847] = {.lex_state = 175, .external_lex_state = 131}, - [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 = 175, .external_lex_state = 99}, - [10853] = {.lex_state = 175, .external_lex_state = 99}, - [10854] = {.lex_state = 175, .external_lex_state = 128}, - [10855] = {.lex_state = 177, .external_lex_state = 99}, - [10856] = {.lex_state = 177, .external_lex_state = 99}, - [10857] = {.lex_state = 175, .external_lex_state = 99}, - [10858] = {.lex_state = 175, .external_lex_state = 99}, - [10859] = {.lex_state = 177, .external_lex_state = 99}, - [10860] = {.lex_state = 175, .external_lex_state = 128}, - [10861] = {.lex_state = 175, .external_lex_state = 99}, - [10862] = {.lex_state = 175, .external_lex_state = 99}, - [10863] = {.lex_state = 175, .external_lex_state = 99}, - [10864] = {.lex_state = 177, .external_lex_state = 99}, - [10865] = {.lex_state = 175, .external_lex_state = 99}, - [10866] = {.lex_state = 175, .external_lex_state = 128}, - [10867] = {.lex_state = 175, .external_lex_state = 99}, - [10868] = {.lex_state = 175, .external_lex_state = 99}, - [10869] = {.lex_state = 175, .external_lex_state = 128}, - [10870] = {.lex_state = 175, .external_lex_state = 99}, - [10871] = {.lex_state = 175, .external_lex_state = 99}, - [10872] = {.lex_state = 175, .external_lex_state = 99}, - [10873] = {.lex_state = 175, .external_lex_state = 99}, - [10874] = {.lex_state = 175, .external_lex_state = 99}, - [10875] = {.lex_state = 175, .external_lex_state = 99}, - [10876] = {.lex_state = 175, .external_lex_state = 99}, - [10877] = {.lex_state = 175, .external_lex_state = 99}, - [10878] = {.lex_state = 175, .external_lex_state = 99}, - [10879] = {.lex_state = 72, .external_lex_state = 99}, - [10880] = {.lex_state = 175, .external_lex_state = 128}, - [10881] = {.lex_state = 175, .external_lex_state = 131}, - [10882] = {.lex_state = 172, .external_lex_state = 99}, - [10883] = {.lex_state = 175, .external_lex_state = 99}, - [10884] = {.lex_state = 72, .external_lex_state = 99}, - [10885] = {.lex_state = 177, .external_lex_state = 99}, - [10886] = {.lex_state = 175, .external_lex_state = 99}, - [10887] = {.lex_state = 175, .external_lex_state = 99}, - [10888] = {.lex_state = 175, .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 = 177, .external_lex_state = 99}, - [10893] = {.lex_state = 172, .external_lex_state = 99}, - [10894] = {.lex_state = 177, .external_lex_state = 99}, - [10895] = {.lex_state = 177, .external_lex_state = 99}, - [10896] = {.lex_state = 175, .external_lex_state = 99}, - [10897] = {.lex_state = 177, .external_lex_state = 99}, - [10898] = {.lex_state = 177, .external_lex_state = 99}, - [10899] = {.lex_state = 175, .external_lex_state = 99}, - [10900] = {.lex_state = 69, .external_lex_state = 99}, - [10901] = {.lex_state = 175, .external_lex_state = 99}, - [10902] = {.lex_state = 175, .external_lex_state = 99}, - [10903] = {.lex_state = 175, .external_lex_state = 99}, - [10904] = {.lex_state = 175, .external_lex_state = 99}, - [10905] = {.lex_state = 175, .external_lex_state = 99}, - [10906] = {.lex_state = 177, .external_lex_state = 99}, - [10907] = {.lex_state = 177, .external_lex_state = 99}, - [10908] = {.lex_state = 175, .external_lex_state = 99}, - [10909] = {.lex_state = 172, .external_lex_state = 99}, - [10910] = {.lex_state = 177, .external_lex_state = 99}, - [10911] = {.lex_state = 177, .external_lex_state = 99}, - [10912] = {.lex_state = 177, .external_lex_state = 99}, - [10913] = {.lex_state = 177, .external_lex_state = 99}, - [10914] = {.lex_state = 177, .external_lex_state = 99}, - [10915] = {.lex_state = 177, .external_lex_state = 99}, - [10916] = {.lex_state = 175, .external_lex_state = 99}, - [10917] = {.lex_state = 177, .external_lex_state = 99}, - [10918] = {.lex_state = 177, .external_lex_state = 99}, - [10919] = {.lex_state = 177, .external_lex_state = 99}, - [10920] = {.lex_state = 175, .external_lex_state = 99}, - [10921] = {.lex_state = 175, .external_lex_state = 99}, - [10922] = {.lex_state = 177, .external_lex_state = 99}, - [10923] = {.lex_state = 175, .external_lex_state = 99}, - [10924] = {.lex_state = 177, .external_lex_state = 99}, - [10925] = {.lex_state = 175, .external_lex_state = 99}, - [10926] = {.lex_state = 175, .external_lex_state = 99}, - [10927] = {.lex_state = 177, .external_lex_state = 99}, - [10928] = {.lex_state = 175, .external_lex_state = 99}, - [10929] = {.lex_state = 175, .external_lex_state = 99}, - [10930] = {.lex_state = 177, .external_lex_state = 99}, - [10931] = {.lex_state = 177, .external_lex_state = 99}, - [10932] = {.lex_state = 177, .external_lex_state = 99}, - [10933] = {.lex_state = 177, .external_lex_state = 99}, - [10934] = {.lex_state = 177, .external_lex_state = 99}, - [10935] = {.lex_state = 177, .external_lex_state = 99}, - [10936] = {.lex_state = 175, .external_lex_state = 99}, - [10937] = {.lex_state = 175, .external_lex_state = 99}, - [10938] = {.lex_state = 177, .external_lex_state = 99}, - [10939] = {.lex_state = 175, .external_lex_state = 99}, - [10940] = {.lex_state = 177, .external_lex_state = 99}, - [10941] = {.lex_state = 177, .external_lex_state = 99}, - [10942] = {.lex_state = 175, .external_lex_state = 99}, - [10943] = {.lex_state = 172, .external_lex_state = 99}, - [10944] = {.lex_state = 177, .external_lex_state = 99}, - [10945] = {.lex_state = 177, .external_lex_state = 99}, - [10946] = {.lex_state = 177, .external_lex_state = 99}, - [10947] = {.lex_state = 175, .external_lex_state = 99}, - [10948] = {.lex_state = 177, .external_lex_state = 99}, - [10949] = {.lex_state = 177, .external_lex_state = 99}, - [10950] = {.lex_state = 177, .external_lex_state = 99}, - [10951] = {.lex_state = 175, .external_lex_state = 99}, - [10952] = {.lex_state = 177, .external_lex_state = 99}, - [10953] = {.lex_state = 177, .external_lex_state = 99}, - [10954] = {.lex_state = 175, .external_lex_state = 99}, - [10955] = {.lex_state = 177, .external_lex_state = 99}, - [10956] = {.lex_state = 177, .external_lex_state = 99}, - [10957] = {.lex_state = 175, .external_lex_state = 99}, - [10958] = {.lex_state = 177, .external_lex_state = 99}, - [10959] = {.lex_state = 175, .external_lex_state = 99}, - [10960] = {.lex_state = 177, .external_lex_state = 99}, - [10961] = {.lex_state = 175, .external_lex_state = 99}, - [10962] = {.lex_state = 177, .external_lex_state = 99}, - [10963] = {.lex_state = 177, .external_lex_state = 99}, - [10964] = {.lex_state = 177, .external_lex_state = 99}, - [10965] = {.lex_state = 177, .external_lex_state = 99}, - [10966] = {.lex_state = 177, .external_lex_state = 99}, - [10967] = {.lex_state = 175, .external_lex_state = 99}, - [10968] = {.lex_state = 175, .external_lex_state = 99}, - [10969] = {.lex_state = 177, .external_lex_state = 99}, - [10970] = {.lex_state = 177, .external_lex_state = 99}, - [10971] = {.lex_state = 177, .external_lex_state = 99}, - [10972] = {.lex_state = 175, .external_lex_state = 99}, - [10973] = {.lex_state = 177, .external_lex_state = 99}, - [10974] = {.lex_state = 177, .external_lex_state = 99}, - [10975] = {.lex_state = 177, .external_lex_state = 99}, - [10976] = {.lex_state = 175, .external_lex_state = 99}, - [10977] = {.lex_state = 177, .external_lex_state = 99}, - [10978] = {.lex_state = 172, .external_lex_state = 99}, - [10979] = {.lex_state = 175, .external_lex_state = 99}, - [10980] = {.lex_state = 175, .external_lex_state = 99}, - [10981] = {.lex_state = 177, .external_lex_state = 99}, - [10982] = {.lex_state = 175, .external_lex_state = 99}, - [10983] = {.lex_state = 177, .external_lex_state = 99}, - [10984] = {.lex_state = 175, .external_lex_state = 99}, - [10985] = {.lex_state = 177, .external_lex_state = 99}, - [10986] = {.lex_state = 177, .external_lex_state = 99}, - [10987] = {.lex_state = 177, .external_lex_state = 99}, - [10988] = {.lex_state = 177, .external_lex_state = 99}, - [10989] = {.lex_state = 177, .external_lex_state = 99}, - [10990] = {.lex_state = 175, .external_lex_state = 99}, - [10991] = {.lex_state = 175, .external_lex_state = 99}, - [10992] = {.lex_state = 177, .external_lex_state = 99}, - [10993] = {.lex_state = 177, .external_lex_state = 99}, - [10994] = {.lex_state = 177, .external_lex_state = 99}, - [10995] = {.lex_state = 177, .external_lex_state = 99}, - [10996] = {.lex_state = 177, .external_lex_state = 99}, - [10997] = {.lex_state = 177, .external_lex_state = 99}, - [10998] = {.lex_state = 175, .external_lex_state = 99}, - [10999] = {.lex_state = 175, .external_lex_state = 99}, - [11000] = {.lex_state = 177, .external_lex_state = 99}, - [11001] = {.lex_state = 177, .external_lex_state = 99}, - [11002] = {.lex_state = 175, .external_lex_state = 99}, - [11003] = {.lex_state = 175, .external_lex_state = 99}, - [11004] = {.lex_state = 175, .external_lex_state = 99}, - [11005] = {.lex_state = 69, .external_lex_state = 99}, - [11006] = {.lex_state = 177, .external_lex_state = 99}, - [11007] = {.lex_state = 175, .external_lex_state = 99}, - [11008] = {.lex_state = 175, .external_lex_state = 99}, - [11009] = {.lex_state = 175, .external_lex_state = 99}, - [11010] = {.lex_state = 175, .external_lex_state = 99}, - [11011] = {.lex_state = 175, .external_lex_state = 99}, - [11012] = {.lex_state = 177, .external_lex_state = 99}, - [11013] = {.lex_state = 175, .external_lex_state = 99}, - [11014] = {.lex_state = 175, .external_lex_state = 99}, - [11015] = {.lex_state = 175, .external_lex_state = 99}, - [11016] = {.lex_state = 175, .external_lex_state = 99}, - [11017] = {.lex_state = 177, .external_lex_state = 99}, - [11018] = {.lex_state = 177, .external_lex_state = 99}, - [11019] = {.lex_state = 177, .external_lex_state = 99}, - [11020] = {.lex_state = 177, .external_lex_state = 99}, - [11021] = {.lex_state = 177, .external_lex_state = 99}, - [11022] = {.lex_state = 177, .external_lex_state = 99}, - [11023] = {.lex_state = 175, .external_lex_state = 99}, - [11024] = {.lex_state = 175, .external_lex_state = 99}, - [11025] = {.lex_state = 177, .external_lex_state = 99}, - [11026] = {.lex_state = 177, .external_lex_state = 99}, - [11027] = {.lex_state = 175, .external_lex_state = 99}, - [11028] = {.lex_state = 175, .external_lex_state = 99}, - [11029] = {.lex_state = 175, .external_lex_state = 99}, - [11030] = {.lex_state = 177, .external_lex_state = 99}, - [11031] = {.lex_state = 177, .external_lex_state = 99}, - [11032] = {.lex_state = 172, .external_lex_state = 99}, - [11033] = {.lex_state = 175, .external_lex_state = 99}, - [11034] = {.lex_state = 175, .external_lex_state = 99}, - [11035] = {.lex_state = 175, .external_lex_state = 99}, - [11036] = {.lex_state = 177, .external_lex_state = 99}, - [11037] = {.lex_state = 177, .external_lex_state = 99}, - [11038] = {.lex_state = 177, .external_lex_state = 99}, - [11039] = {.lex_state = 177, .external_lex_state = 99}, - [11040] = {.lex_state = 177, .external_lex_state = 99}, - [11041] = {.lex_state = 177, .external_lex_state = 99}, - [11042] = {.lex_state = 177, .external_lex_state = 99}, - [11043] = {.lex_state = 177, .external_lex_state = 99}, - [11044] = {.lex_state = 175, .external_lex_state = 99}, - [11045] = {.lex_state = 177, .external_lex_state = 99}, - [11046] = {.lex_state = 175, .external_lex_state = 99}, - [11047] = {.lex_state = 69, .external_lex_state = 99}, - [11048] = {.lex_state = 175, .external_lex_state = 99}, - [11049] = {.lex_state = 175, .external_lex_state = 99}, - [11050] = {.lex_state = 177, .external_lex_state = 99}, - [11051] = {.lex_state = 177, .external_lex_state = 99}, - [11052] = {.lex_state = 177, .external_lex_state = 99}, - [11053] = {.lex_state = 177, .external_lex_state = 99}, - [11054] = {.lex_state = 175, .external_lex_state = 99}, - [11055] = {.lex_state = 177, .external_lex_state = 99}, - [11056] = {.lex_state = 177, .external_lex_state = 99}, - [11057] = {.lex_state = 177, .external_lex_state = 99}, - [11058] = {.lex_state = 177, .external_lex_state = 99}, - [11059] = {.lex_state = 172, .external_lex_state = 99}, - [11060] = {.lex_state = 177, .external_lex_state = 99}, - [11061] = {.lex_state = 172, .external_lex_state = 99}, - [11062] = {.lex_state = 177, .external_lex_state = 99}, - [11063] = {.lex_state = 177, .external_lex_state = 99}, - [11064] = {.lex_state = 175, .external_lex_state = 99}, - [11065] = {.lex_state = 175, .external_lex_state = 99}, - [11066] = {.lex_state = 177, .external_lex_state = 99}, - [11067] = {.lex_state = 177, .external_lex_state = 99}, - [11068] = {.lex_state = 175, .external_lex_state = 99}, - [11069] = {.lex_state = 175, .external_lex_state = 99}, - [11070] = {.lex_state = 177, .external_lex_state = 99}, - [11071] = {.lex_state = 175, .external_lex_state = 99}, - [11072] = {.lex_state = 175, .external_lex_state = 99}, - [11073] = {.lex_state = 177, .external_lex_state = 99}, - [11074] = {.lex_state = 175, .external_lex_state = 99}, - [11075] = {.lex_state = 175, .external_lex_state = 99}, - [11076] = {.lex_state = 175, .external_lex_state = 99}, - [11077] = {.lex_state = 175, .external_lex_state = 99}, - [11078] = {.lex_state = 177, .external_lex_state = 99}, - [11079] = {.lex_state = 175, .external_lex_state = 99}, - [11080] = {.lex_state = 175, .external_lex_state = 99}, - [11081] = {.lex_state = 177, .external_lex_state = 99}, - [11082] = {.lex_state = 175, .external_lex_state = 99}, - [11083] = {.lex_state = 175, .external_lex_state = 99}, - [11084] = {.lex_state = 177, .external_lex_state = 99}, - [11085] = {.lex_state = 177, .external_lex_state = 99}, - [11086] = {.lex_state = 175, .external_lex_state = 99}, - [11087] = {.lex_state = 177, .external_lex_state = 99}, - [11088] = {.lex_state = 177, .external_lex_state = 99}, - [11089] = {.lex_state = 177, .external_lex_state = 99}, - [11090] = {.lex_state = 175, .external_lex_state = 99}, - [11091] = {.lex_state = 177, .external_lex_state = 99}, - [11092] = {.lex_state = 175, .external_lex_state = 99}, - [11093] = {.lex_state = 175, .external_lex_state = 99}, - [11094] = {.lex_state = 177, .external_lex_state = 99}, - [11095] = {.lex_state = 177, .external_lex_state = 99}, - [11096] = {.lex_state = 177, .external_lex_state = 99}, - [11097] = {.lex_state = 175, .external_lex_state = 99}, - [11098] = {.lex_state = 69, .external_lex_state = 99}, - [11099] = {.lex_state = 177, .external_lex_state = 99}, - [11100] = {.lex_state = 177, .external_lex_state = 99}, - [11101] = {.lex_state = 175, .external_lex_state = 99}, - [11102] = {.lex_state = 175, .external_lex_state = 99}, - [11103] = {.lex_state = 177, .external_lex_state = 99}, - [11104] = {.lex_state = 69, .external_lex_state = 99}, - [11105] = {.lex_state = 177, .external_lex_state = 99}, - [11106] = {.lex_state = 175, .external_lex_state = 99}, - [11107] = {.lex_state = 175, .external_lex_state = 99}, - [11108] = {.lex_state = 177, .external_lex_state = 99}, - [11109] = {.lex_state = 175, .external_lex_state = 99}, - [11110] = {.lex_state = 177, .external_lex_state = 99}, - [11111] = {.lex_state = 177, .external_lex_state = 99}, - [11112] = {.lex_state = 175, .external_lex_state = 99}, - [11113] = {.lex_state = 175, .external_lex_state = 99}, - [11114] = {.lex_state = 177, .external_lex_state = 99}, - [11115] = {.lex_state = 177, .external_lex_state = 99}, - [11116] = {.lex_state = 177, .external_lex_state = 99}, - [11117] = {.lex_state = 177, .external_lex_state = 99}, - [11118] = {.lex_state = 177, .external_lex_state = 99}, - [11119] = {.lex_state = 175, .external_lex_state = 99}, - [11120] = {.lex_state = 175, .external_lex_state = 99}, - [11121] = {.lex_state = 175, .external_lex_state = 99}, - [11122] = {.lex_state = 175, .external_lex_state = 99}, - [11123] = {.lex_state = 175, .external_lex_state = 99}, - [11124] = {.lex_state = 177, .external_lex_state = 99}, - [11125] = {.lex_state = 177, .external_lex_state = 99}, - [11126] = {.lex_state = 175, .external_lex_state = 99}, - [11127] = {.lex_state = 177, .external_lex_state = 99}, - [11128] = {.lex_state = 177, .external_lex_state = 99}, - [11129] = {.lex_state = 175, .external_lex_state = 99}, - [11130] = {.lex_state = 177, .external_lex_state = 99}, - [11131] = {.lex_state = 177, .external_lex_state = 99}, - [11132] = {.lex_state = 175, .external_lex_state = 99}, - [11133] = {.lex_state = 175, .external_lex_state = 99}, - [11134] = {.lex_state = 177, .external_lex_state = 99}, - [11135] = {.lex_state = 175, .external_lex_state = 99}, - [11136] = {.lex_state = 175, .external_lex_state = 99}, - [11137] = {.lex_state = 175, .external_lex_state = 99}, - [11138] = {.lex_state = 69, .external_lex_state = 99}, - [11139] = {.lex_state = 175, .external_lex_state = 99}, - [11140] = {.lex_state = 177, .external_lex_state = 99}, - [11141] = {.lex_state = 177, .external_lex_state = 99}, - [11142] = {.lex_state = 177, .external_lex_state = 99}, - [11143] = {.lex_state = 177, .external_lex_state = 99}, - [11144] = {.lex_state = 177, .external_lex_state = 99}, - [11145] = {.lex_state = 177, .external_lex_state = 99}, - [11146] = {.lex_state = 175, .external_lex_state = 99}, - [11147] = {.lex_state = 177, .external_lex_state = 99}, - [11148] = {.lex_state = 175, .external_lex_state = 99}, - [11149] = {.lex_state = 177, .external_lex_state = 99}, - [11150] = {.lex_state = 177, .external_lex_state = 99}, - [11151] = {.lex_state = 177, .external_lex_state = 99}, - [11152] = {.lex_state = 177, .external_lex_state = 99}, - [11153] = {.lex_state = 177, .external_lex_state = 99}, - [11154] = {.lex_state = 175, .external_lex_state = 99}, - [11155] = {.lex_state = 177, .external_lex_state = 99}, - [11156] = {.lex_state = 177, .external_lex_state = 99}, - [11157] = {.lex_state = 177, .external_lex_state = 99}, - [11158] = {.lex_state = 177, .external_lex_state = 99}, - [11159] = {.lex_state = 175, .external_lex_state = 99}, - [11160] = {.lex_state = 177, .external_lex_state = 99}, - [11161] = {.lex_state = 177, .external_lex_state = 99}, - [11162] = {.lex_state = 175, .external_lex_state = 99}, - [11163] = {.lex_state = 175, .external_lex_state = 99}, - [11164] = {.lex_state = 175, .external_lex_state = 99}, - [11165] = {.lex_state = 177, .external_lex_state = 99}, - [11166] = {.lex_state = 175, .external_lex_state = 99}, - [11167] = {.lex_state = 172, .external_lex_state = 99}, - [11168] = {.lex_state = 177, .external_lex_state = 99}, - [11169] = {.lex_state = 177, .external_lex_state = 99}, - [11170] = {.lex_state = 175, .external_lex_state = 99}, - [11171] = {.lex_state = 175, .external_lex_state = 99}, - [11172] = {.lex_state = 177, .external_lex_state = 99}, - [11173] = {.lex_state = 175, .external_lex_state = 99}, - [11174] = {.lex_state = 177, .external_lex_state = 99}, - [11175] = {.lex_state = 175, .external_lex_state = 99}, - [11176] = {.lex_state = 177, .external_lex_state = 99}, - [11177] = {.lex_state = 177, .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 = 177, .external_lex_state = 99}, - [11187] = {.lex_state = 175, .external_lex_state = 99}, - [11188] = {.lex_state = 177, .external_lex_state = 99}, - [11189] = {.lex_state = 177, .external_lex_state = 99}, - [11190] = {.lex_state = 175, .external_lex_state = 99}, - [11191] = {.lex_state = 175, .external_lex_state = 99}, - [11192] = {.lex_state = 177, .external_lex_state = 99}, - [11193] = {.lex_state = 175, .external_lex_state = 99}, - [11194] = {.lex_state = 175, .external_lex_state = 99}, - [11195] = {.lex_state = 69, .external_lex_state = 99}, - [11196] = {.lex_state = 175, .external_lex_state = 99}, - [11197] = {.lex_state = 177, .external_lex_state = 99}, - [11198] = {.lex_state = 177, .external_lex_state = 99}, - [11199] = {.lex_state = 177, .external_lex_state = 99}, - [11200] = {.lex_state = 175, .external_lex_state = 99}, - [11201] = {.lex_state = 175, .external_lex_state = 99}, - [11202] = {.lex_state = 175, .external_lex_state = 99}, - [11203] = {.lex_state = 177, .external_lex_state = 99}, - [11204] = {.lex_state = 177, .external_lex_state = 99}, - [11205] = {.lex_state = 175, .external_lex_state = 99}, - [11206] = {.lex_state = 175, .external_lex_state = 99}, - [11207] = {.lex_state = 177, .external_lex_state = 99}, - [11208] = {.lex_state = 177, .external_lex_state = 99}, - [11209] = {.lex_state = 177, .external_lex_state = 99}, - [11210] = {.lex_state = 177, .external_lex_state = 99}, - [11211] = {.lex_state = 183, .external_lex_state = 99}, - [11212] = {.lex_state = 177, .external_lex_state = 99}, - [11213] = {.lex_state = 175, .external_lex_state = 99}, - [11214] = {.lex_state = 175, .external_lex_state = 99}, - [11215] = {.lex_state = 175, .external_lex_state = 99}, - [11216] = {.lex_state = 175, .external_lex_state = 99}, - [11217] = {.lex_state = 177, .external_lex_state = 99}, - [11218] = {.lex_state = 177, .external_lex_state = 99}, - [11219] = {.lex_state = 175, .external_lex_state = 99}, - [11220] = {.lex_state = 177, .external_lex_state = 99}, - [11221] = {.lex_state = 177, .external_lex_state = 99}, - [11222] = {.lex_state = 177, .external_lex_state = 99}, - [11223] = {.lex_state = 177, .external_lex_state = 99}, - [11224] = {.lex_state = 175, .external_lex_state = 99}, - [11225] = {.lex_state = 175, .external_lex_state = 99}, - [11226] = {.lex_state = 177, .external_lex_state = 99}, - [11227] = {.lex_state = 175, .external_lex_state = 99}, - [11228] = {.lex_state = 175, .external_lex_state = 99}, - [11229] = {.lex_state = 175, .external_lex_state = 99}, - [11230] = {.lex_state = 175, .external_lex_state = 99}, - [11231] = {.lex_state = 175, .external_lex_state = 99}, - [11232] = {.lex_state = 175, .external_lex_state = 99}, - [11233] = {.lex_state = 175, .external_lex_state = 99}, - [11234] = {.lex_state = 177, .external_lex_state = 99}, - [11235] = {.lex_state = 172, .external_lex_state = 99}, - [11236] = {.lex_state = 177, .external_lex_state = 99}, - [11237] = {.lex_state = 175, .external_lex_state = 99}, - [11238] = {.lex_state = 177, .external_lex_state = 99}, - [11239] = {.lex_state = 175, .external_lex_state = 99}, - [11240] = {.lex_state = 175, .external_lex_state = 99}, - [11241] = {.lex_state = 177, .external_lex_state = 99}, - [11242] = {.lex_state = 175, .external_lex_state = 99}, - [11243] = {.lex_state = 175, .external_lex_state = 99}, - [11244] = {.lex_state = 177, .external_lex_state = 99}, - [11245] = {.lex_state = 175, .external_lex_state = 99}, - [11246] = {.lex_state = 177, .external_lex_state = 99}, - [11247] = {.lex_state = 175, .external_lex_state = 99}, - [11248] = {.lex_state = 177, .external_lex_state = 99}, - [11249] = {.lex_state = 177, .external_lex_state = 99}, - [11250] = {.lex_state = 175, .external_lex_state = 99}, - [11251] = {.lex_state = 175, .external_lex_state = 99}, - [11252] = {.lex_state = 177, .external_lex_state = 99}, - [11253] = {.lex_state = 175, .external_lex_state = 99}, - [11254] = {.lex_state = 177, .external_lex_state = 99}, - [11255] = {.lex_state = 177, .external_lex_state = 99}, - [11256] = {.lex_state = 177, .external_lex_state = 99}, - [11257] = {.lex_state = 175, .external_lex_state = 99}, - [11258] = {.lex_state = 175, .external_lex_state = 99}, - [11259] = {.lex_state = 175, .external_lex_state = 99}, - [11260] = {.lex_state = 175, .external_lex_state = 99}, - [11261] = {.lex_state = 175, .external_lex_state = 99}, - [11262] = {.lex_state = 69, .external_lex_state = 99}, - [11263] = {.lex_state = 175, .external_lex_state = 99}, - [11264] = {.lex_state = 175, .external_lex_state = 99}, - [11265] = {.lex_state = 177, .external_lex_state = 99}, - [11266] = {.lex_state = 175, .external_lex_state = 99}, - [11267] = {.lex_state = 175, .external_lex_state = 99}, - [11268] = {.lex_state = 177, .external_lex_state = 99}, - [11269] = {.lex_state = 175, .external_lex_state = 99}, - [11270] = {.lex_state = 177, .external_lex_state = 99}, - [11271] = {.lex_state = 175, .external_lex_state = 99}, - [11272] = {.lex_state = 177, .external_lex_state = 99}, - [11273] = {.lex_state = 177, .external_lex_state = 99}, - [11274] = {.lex_state = 177, .external_lex_state = 99}, - [11275] = {.lex_state = 175, .external_lex_state = 99}, - [11276] = {.lex_state = 175, .external_lex_state = 99}, - [11277] = {.lex_state = 175, .external_lex_state = 99}, - [11278] = {.lex_state = 175, .external_lex_state = 99}, - [11279] = {.lex_state = 177, .external_lex_state = 99}, - [11280] = {.lex_state = 177, .external_lex_state = 99}, - [11281] = {.lex_state = 177, .external_lex_state = 99}, - [11282] = {.lex_state = 175, .external_lex_state = 99}, - [11283] = {.lex_state = 177, .external_lex_state = 99}, - [11284] = {.lex_state = 177, .external_lex_state = 99}, - [11285] = {.lex_state = 177, .external_lex_state = 99}, - [11286] = {.lex_state = 175, .external_lex_state = 99}, - [11287] = {.lex_state = 177, .external_lex_state = 99}, - [11288] = {.lex_state = 177, .external_lex_state = 99}, - [11289] = {.lex_state = 175, .external_lex_state = 99}, - [11290] = {.lex_state = 177, .external_lex_state = 99}, - [11291] = {.lex_state = 172, .external_lex_state = 99}, - [11292] = {.lex_state = 177, .external_lex_state = 99}, - [11293] = {.lex_state = 175, .external_lex_state = 99}, - [11294] = {.lex_state = 175, .external_lex_state = 99}, - [11295] = {.lex_state = 177, .external_lex_state = 99}, - [11296] = {.lex_state = 175, .external_lex_state = 99}, - [11297] = {.lex_state = 177, .external_lex_state = 99}, - [11298] = {.lex_state = 177, .external_lex_state = 99}, - [11299] = {.lex_state = 175, .external_lex_state = 99}, - [11300] = {.lex_state = 175, .external_lex_state = 99}, - [11301] = {.lex_state = 175, .external_lex_state = 99}, - [11302] = {.lex_state = 177, .external_lex_state = 99}, - [11303] = {.lex_state = 175, .external_lex_state = 99}, - [11304] = {.lex_state = 177, .external_lex_state = 99}, - [11305] = {.lex_state = 175, .external_lex_state = 99}, - [11306] = {.lex_state = 177, .external_lex_state = 99}, - [11307] = {.lex_state = 177, .external_lex_state = 99}, - [11308] = {.lex_state = 175, .external_lex_state = 99}, - [11309] = {.lex_state = 172, .external_lex_state = 99}, - [11310] = {.lex_state = 175, .external_lex_state = 99}, - [11311] = {.lex_state = 175, .external_lex_state = 99}, - [11312] = {.lex_state = 175, .external_lex_state = 99}, - [11313] = {.lex_state = 177, .external_lex_state = 99}, - [11314] = {.lex_state = 177, .external_lex_state = 99}, - [11315] = {.lex_state = 177, .external_lex_state = 99}, - [11316] = {.lex_state = 175, .external_lex_state = 99}, - [11317] = {.lex_state = 175, .external_lex_state = 99}, - [11318] = {.lex_state = 177, .external_lex_state = 99}, - [11319] = {.lex_state = 175, .external_lex_state = 99}, - [11320] = {.lex_state = 175, .external_lex_state = 99}, - [11321] = {.lex_state = 177, .external_lex_state = 99}, - [11322] = {.lex_state = 177, .external_lex_state = 99}, - [11323] = {.lex_state = 177, .external_lex_state = 99}, - [11324] = {.lex_state = 175, .external_lex_state = 99}, - [11325] = {.lex_state = 177, .external_lex_state = 99}, - [11326] = {.lex_state = 177, .external_lex_state = 99}, - [11327] = {.lex_state = 172, .external_lex_state = 99}, - [11328] = {.lex_state = 175, .external_lex_state = 99}, - [11329] = {.lex_state = 69, .external_lex_state = 99}, - [11330] = {.lex_state = 175, .external_lex_state = 99}, - [11331] = {.lex_state = 175, .external_lex_state = 99}, - [11332] = {.lex_state = 177, .external_lex_state = 99}, - [11333] = {.lex_state = 175, .external_lex_state = 99}, - [11334] = {.lex_state = 177, .external_lex_state = 99}, - [11335] = {.lex_state = 175, .external_lex_state = 99}, - [11336] = {.lex_state = 177, .external_lex_state = 99}, - [11337] = {.lex_state = 177, .external_lex_state = 99}, - [11338] = {.lex_state = 177, .external_lex_state = 99}, - [11339] = {.lex_state = 177, .external_lex_state = 99}, - [11340] = {.lex_state = 177, .external_lex_state = 99}, - [11341] = {.lex_state = 177, .external_lex_state = 99}, - [11342] = {.lex_state = 175, .external_lex_state = 99}, - [11343] = {.lex_state = 175, .external_lex_state = 99}, - [11344] = {.lex_state = 175, .external_lex_state = 99}, - [11345] = {.lex_state = 175, .external_lex_state = 99}, - [11346] = {.lex_state = 177, .external_lex_state = 99}, - [11347] = {.lex_state = 177, .external_lex_state = 99}, - [11348] = {.lex_state = 177, .external_lex_state = 99}, - [11349] = {.lex_state = 69, .external_lex_state = 99}, - [11350] = {.lex_state = 175, .external_lex_state = 99}, - [11351] = {.lex_state = 177, .external_lex_state = 99}, - [11352] = {.lex_state = 177, .external_lex_state = 99}, - [11353] = {.lex_state = 175, .external_lex_state = 99}, - [11354] = {.lex_state = 177, .external_lex_state = 99}, - [11355] = {.lex_state = 177, .external_lex_state = 99}, - [11356] = {.lex_state = 175, .external_lex_state = 99}, - [11357] = {.lex_state = 177, .external_lex_state = 99}, - [11358] = {.lex_state = 177, .external_lex_state = 99}, - [11359] = {.lex_state = 175, .external_lex_state = 99}, - [11360] = {.lex_state = 177, .external_lex_state = 99}, - [11361] = {.lex_state = 177, .external_lex_state = 99}, - [11362] = {.lex_state = 175, .external_lex_state = 99}, - [11363] = {.lex_state = 177, .external_lex_state = 99}, - [11364] = {.lex_state = 175, .external_lex_state = 99}, - [11365] = {.lex_state = 177, .external_lex_state = 99}, - [11366] = {.lex_state = 177, .external_lex_state = 99}, - [11367] = {.lex_state = 172, .external_lex_state = 99}, - [11368] = {.lex_state = 177, .external_lex_state = 99}, - [11369] = {.lex_state = 177, .external_lex_state = 99}, - [11370] = {.lex_state = 177, .external_lex_state = 99}, - [11371] = {.lex_state = 175, .external_lex_state = 99}, - [11372] = {.lex_state = 175, .external_lex_state = 99}, - [11373] = {.lex_state = 175, .external_lex_state = 99}, - [11374] = {.lex_state = 177, .external_lex_state = 99}, - [11375] = {.lex_state = 175, .external_lex_state = 99}, - [11376] = {.lex_state = 175, .external_lex_state = 99}, - [11377] = {.lex_state = 177, .external_lex_state = 99}, - [11378] = {.lex_state = 177, .external_lex_state = 99}, - [11379] = {.lex_state = 175, .external_lex_state = 99}, - [11380] = {.lex_state = 177, .external_lex_state = 99}, - [11381] = {.lex_state = 177, .external_lex_state = 99}, - [11382] = {.lex_state = 172, .external_lex_state = 99}, - [11383] = {.lex_state = 177, .external_lex_state = 99}, - [11384] = {.lex_state = 175, .external_lex_state = 99}, - [11385] = {.lex_state = 177, .external_lex_state = 99}, - [11386] = {.lex_state = 177, .external_lex_state = 99}, - [11387] = {.lex_state = 175, .external_lex_state = 99}, - [11388] = {.lex_state = 177, .external_lex_state = 99}, - [11389] = {.lex_state = 175, .external_lex_state = 99}, - [11390] = {.lex_state = 177, .external_lex_state = 99}, - [11391] = {.lex_state = 175, .external_lex_state = 99}, - [11392] = {.lex_state = 175, .external_lex_state = 99}, - [11393] = {.lex_state = 177, .external_lex_state = 99}, - [11394] = {.lex_state = 177, .external_lex_state = 99}, - [11395] = {.lex_state = 175, .external_lex_state = 99}, - [11396] = {.lex_state = 175, .external_lex_state = 99}, - [11397] = {.lex_state = 177, .external_lex_state = 99}, - [11398] = {.lex_state = 175, .external_lex_state = 99}, - [11399] = {.lex_state = 177, .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 = 175, .external_lex_state = 99}, - [11405] = {.lex_state = 177, .external_lex_state = 99}, - [11406] = {.lex_state = 175, .external_lex_state = 99}, - [11407] = {.lex_state = 177, .external_lex_state = 99}, - [11408] = {.lex_state = 175, .external_lex_state = 99}, - [11409] = {.lex_state = 69, .external_lex_state = 99}, - [11410] = {.lex_state = 177, .external_lex_state = 99}, - [11411] = {.lex_state = 183, .external_lex_state = 99}, - [11412] = {.lex_state = 175, .external_lex_state = 99}, - [11413] = {.lex_state = 177, .external_lex_state = 99}, - [11414] = {.lex_state = 177, .external_lex_state = 99}, - [11415] = {.lex_state = 175, .external_lex_state = 99}, - [11416] = {.lex_state = 177, .external_lex_state = 99}, - [11417] = {.lex_state = 175, .external_lex_state = 99}, - [11418] = {.lex_state = 177, .external_lex_state = 99}, - [11419] = {.lex_state = 177, .external_lex_state = 99}, - [11420] = {.lex_state = 177, .external_lex_state = 99}, - [11421] = {.lex_state = 177, .external_lex_state = 99}, - [11422] = {.lex_state = 177, .external_lex_state = 99}, - [11423] = {.lex_state = 177, .external_lex_state = 99}, - [11424] = {.lex_state = 177, .external_lex_state = 99}, - [11425] = {.lex_state = 177, .external_lex_state = 99}, - [11426] = {.lex_state = 175, .external_lex_state = 99}, - [11427] = {.lex_state = 177, .external_lex_state = 99}, - [11428] = {.lex_state = 175, .external_lex_state = 99}, - [11429] = {.lex_state = 177, .external_lex_state = 99}, - [11430] = {.lex_state = 175, .external_lex_state = 99}, - [11431] = {.lex_state = 177, .external_lex_state = 99}, - [11432] = {.lex_state = 172, .external_lex_state = 99}, - [11433] = {.lex_state = 177, .external_lex_state = 99}, - [11434] = {.lex_state = 175, .external_lex_state = 99}, - [11435] = {.lex_state = 179, .external_lex_state = 99}, - [11436] = {.lex_state = 177, .external_lex_state = 99}, - [11437] = {.lex_state = 175, .external_lex_state = 99}, - [11438] = {.lex_state = 177, .external_lex_state = 99}, - [11439] = {.lex_state = 175, .external_lex_state = 99}, - [11440] = {.lex_state = 175, .external_lex_state = 99}, - [11441] = {.lex_state = 172, .external_lex_state = 99}, - [11442] = {.lex_state = 172, .external_lex_state = 99}, - [11443] = {.lex_state = 175, .external_lex_state = 99}, - [11444] = {.lex_state = 175, .external_lex_state = 99}, - [11445] = {.lex_state = 177, .external_lex_state = 99}, - [11446] = {.lex_state = 177, .external_lex_state = 99}, - [11447] = {.lex_state = 177, .external_lex_state = 99}, - [11448] = {.lex_state = 175, .external_lex_state = 99}, - [11449] = {.lex_state = 175, .external_lex_state = 99}, - [11450] = {.lex_state = 177, .external_lex_state = 99}, - [11451] = {.lex_state = 175, .external_lex_state = 99}, - [11452] = {.lex_state = 175, .external_lex_state = 99}, - [11453] = {.lex_state = 175, .external_lex_state = 99}, - [11454] = {.lex_state = 177, .external_lex_state = 99}, - [11455] = {.lex_state = 175, .external_lex_state = 99}, - [11456] = {.lex_state = 177, .external_lex_state = 99}, - [11457] = {.lex_state = 175, .external_lex_state = 99}, - [11458] = {.lex_state = 177, .external_lex_state = 99}, - [11459] = {.lex_state = 175, .external_lex_state = 99}, - [11460] = {.lex_state = 172, .external_lex_state = 99}, - [11461] = {.lex_state = 177, .external_lex_state = 99}, - [11462] = {.lex_state = 177, .external_lex_state = 99}, - [11463] = {.lex_state = 175, .external_lex_state = 99}, - [11464] = {.lex_state = 175, .external_lex_state = 99}, - [11465] = {.lex_state = 175, .external_lex_state = 99}, - [11466] = {.lex_state = 177, .external_lex_state = 99}, - [11467] = {.lex_state = 175, .external_lex_state = 99}, - [11468] = {.lex_state = 177, .external_lex_state = 99}, - [11469] = {.lex_state = 177, .external_lex_state = 99}, - [11470] = {.lex_state = 175, .external_lex_state = 99}, - [11471] = {.lex_state = 177, .external_lex_state = 99}, - [11472] = {.lex_state = 177, .external_lex_state = 99}, - [11473] = {.lex_state = 177, .external_lex_state = 99}, - [11474] = {.lex_state = 177, .external_lex_state = 99}, - [11475] = {.lex_state = 175, .external_lex_state = 99}, - [11476] = {.lex_state = 177, .external_lex_state = 99}, - [11477] = {.lex_state = 177, .external_lex_state = 99}, - [11478] = {.lex_state = 175, .external_lex_state = 99}, - [11479] = {.lex_state = 177, .external_lex_state = 99}, - [11480] = {.lex_state = 175, .external_lex_state = 99}, - [11481] = {.lex_state = 177, .external_lex_state = 99}, - [11482] = {.lex_state = 177, .external_lex_state = 99}, - [11483] = {.lex_state = 177, .external_lex_state = 99}, - [11484] = {.lex_state = 175, .external_lex_state = 99}, - [11485] = {.lex_state = 175, .external_lex_state = 99}, - [11486] = {.lex_state = 175, .external_lex_state = 99}, - [11487] = {.lex_state = 177, .external_lex_state = 99}, - [11488] = {.lex_state = 175, .external_lex_state = 99}, - [11489] = {.lex_state = 177, .external_lex_state = 99}, - [11490] = {.lex_state = 175, .external_lex_state = 99}, - [11491] = {.lex_state = 175, .external_lex_state = 99}, - [11492] = {.lex_state = 172, .external_lex_state = 99}, - [11493] = {.lex_state = 177, .external_lex_state = 99}, - [11494] = {.lex_state = 175, .external_lex_state = 99}, - [11495] = {.lex_state = 177, .external_lex_state = 99}, - [11496] = {.lex_state = 175, .external_lex_state = 99}, - [11497] = {.lex_state = 175, .external_lex_state = 99}, - [11498] = {.lex_state = 175, .external_lex_state = 99}, - [11499] = {.lex_state = 175, .external_lex_state = 99}, - [11500] = {.lex_state = 177, .external_lex_state = 99}, - [11501] = {.lex_state = 177, .external_lex_state = 99}, - [11502] = {.lex_state = 175, .external_lex_state = 99}, - [11503] = {.lex_state = 177, .external_lex_state = 99}, - [11504] = {.lex_state = 175, .external_lex_state = 99}, - [11505] = {.lex_state = 177, .external_lex_state = 99}, - [11506] = {.lex_state = 177, .external_lex_state = 99}, - [11507] = {.lex_state = 175, .external_lex_state = 99}, - [11508] = {.lex_state = 175, .external_lex_state = 99}, - [11509] = {.lex_state = 177, .external_lex_state = 99}, - [11510] = {.lex_state = 177, .external_lex_state = 99}, - [11511] = {.lex_state = 177, .external_lex_state = 99}, - [11512] = {.lex_state = 177, .external_lex_state = 99}, - [11513] = {.lex_state = 175, .external_lex_state = 99}, - [11514] = {.lex_state = 177, .external_lex_state = 99}, - [11515] = {.lex_state = 175, .external_lex_state = 99}, - [11516] = {.lex_state = 175, .external_lex_state = 99}, - [11517] = {.lex_state = 177, .external_lex_state = 99}, - [11518] = {.lex_state = 175, .external_lex_state = 99}, - [11519] = {.lex_state = 175, .external_lex_state = 99}, - [11520] = {.lex_state = 175, .external_lex_state = 99}, - [11521] = {.lex_state = 175, .external_lex_state = 99}, - [11522] = {.lex_state = 175, .external_lex_state = 99}, - [11523] = {.lex_state = 177, .external_lex_state = 99}, - [11524] = {.lex_state = 175, .external_lex_state = 99}, - [11525] = {.lex_state = 175, .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 = 177, .external_lex_state = 99}, - [11530] = {.lex_state = 177, .external_lex_state = 99}, - [11531] = {.lex_state = 177, .external_lex_state = 99}, - [11532] = {.lex_state = 175, .external_lex_state = 99}, - [11533] = {.lex_state = 175, .external_lex_state = 99}, - [11534] = {.lex_state = 175, .external_lex_state = 99}, - [11535] = {.lex_state = 177, .external_lex_state = 99}, - [11536] = {.lex_state = 177, .external_lex_state = 99}, - [11537] = {.lex_state = 177, .external_lex_state = 99}, - [11538] = {.lex_state = 175, .external_lex_state = 99}, - [11539] = {.lex_state = 175, .external_lex_state = 99}, - [11540] = {.lex_state = 175, .external_lex_state = 99}, - [11541] = {.lex_state = 175, .external_lex_state = 99}, - [11542] = {.lex_state = 177, .external_lex_state = 99}, - [11543] = {.lex_state = 177, .external_lex_state = 99}, - [11544] = {.lex_state = 175, .external_lex_state = 99}, - [11545] = {.lex_state = 175, .external_lex_state = 99}, - [11546] = {.lex_state = 175, .external_lex_state = 99}, - [11547] = {.lex_state = 172, .external_lex_state = 99}, - [11548] = {.lex_state = 175, .external_lex_state = 99}, - [11549] = {.lex_state = 175, .external_lex_state = 99}, - [11550] = {.lex_state = 177, .external_lex_state = 99}, - [11551] = {.lex_state = 175, .external_lex_state = 99}, - [11552] = {.lex_state = 177, .external_lex_state = 99}, - [11553] = {.lex_state = 175, .external_lex_state = 99}, - [11554] = {.lex_state = 175, .external_lex_state = 99}, - [11555] = {.lex_state = 172, .external_lex_state = 99}, - [11556] = {.lex_state = 177, .external_lex_state = 99}, - [11557] = {.lex_state = 175, .external_lex_state = 99}, - [11558] = {.lex_state = 172, .external_lex_state = 99}, - [11559] = {.lex_state = 177, .external_lex_state = 99}, - [11560] = {.lex_state = 175, .external_lex_state = 99}, - [11561] = {.lex_state = 175, .external_lex_state = 99}, - [11562] = {.lex_state = 177, .external_lex_state = 99}, - [11563] = {.lex_state = 175, .external_lex_state = 99}, - [11564] = {.lex_state = 175, .external_lex_state = 99}, - [11565] = {.lex_state = 175, .external_lex_state = 99}, - [11566] = {.lex_state = 175, .external_lex_state = 99}, - [11567] = {.lex_state = 172, .external_lex_state = 99}, - [11568] = {.lex_state = 175, .external_lex_state = 99}, - [11569] = {.lex_state = 175, .external_lex_state = 99}, - [11570] = {.lex_state = 175, .external_lex_state = 99}, - [11571] = {.lex_state = 175, .external_lex_state = 99}, - [11572] = {.lex_state = 177, .external_lex_state = 99}, - [11573] = {.lex_state = 177, .external_lex_state = 99}, - [11574] = {.lex_state = 175, .external_lex_state = 99}, - [11575] = {.lex_state = 175, .external_lex_state = 99}, - [11576] = {.lex_state = 177, .external_lex_state = 99}, - [11577] = {.lex_state = 177, .external_lex_state = 99}, - [11578] = {.lex_state = 177, .external_lex_state = 99}, - [11579] = {.lex_state = 175, .external_lex_state = 99}, - [11580] = {.lex_state = 175, .external_lex_state = 99}, - [11581] = {.lex_state = 175, .external_lex_state = 99}, - [11582] = {.lex_state = 175, .external_lex_state = 99}, - [11583] = {.lex_state = 177, .external_lex_state = 99}, - [11584] = {.lex_state = 175, .external_lex_state = 99}, - [11585] = {.lex_state = 177, .external_lex_state = 99}, - [11586] = {.lex_state = 177, .external_lex_state = 99}, - [11587] = {.lex_state = 175, .external_lex_state = 99}, - [11588] = {.lex_state = 175, .external_lex_state = 99}, - [11589] = {.lex_state = 175, .external_lex_state = 99}, - [11590] = {.lex_state = 175, .external_lex_state = 99}, - [11591] = {.lex_state = 177, .external_lex_state = 99}, - [11592] = {.lex_state = 177, .external_lex_state = 99}, - [11593] = {.lex_state = 177, .external_lex_state = 99}, - [11594] = {.lex_state = 177, .external_lex_state = 99}, - [11595] = {.lex_state = 175, .external_lex_state = 99}, - [11596] = {.lex_state = 175, .external_lex_state = 99}, - [11597] = {.lex_state = 177, .external_lex_state = 99}, - [11598] = {.lex_state = 177, .external_lex_state = 99}, - [11599] = {.lex_state = 177, .external_lex_state = 99}, - [11600] = {.lex_state = 175, .external_lex_state = 99}, - [11601] = {.lex_state = 175, .external_lex_state = 99}, - [11602] = {.lex_state = 175, .external_lex_state = 99}, - [11603] = {.lex_state = 175, .external_lex_state = 99}, - [11604] = {.lex_state = 175, .external_lex_state = 99}, - [11605] = {.lex_state = 177, .external_lex_state = 99}, - [11606] = {.lex_state = 175, .external_lex_state = 99}, - [11607] = {.lex_state = 175, .external_lex_state = 99}, - [11608] = {.lex_state = 175, .external_lex_state = 99}, - [11609] = {.lex_state = 175, .external_lex_state = 99}, - [11610] = {.lex_state = 175, .external_lex_state = 99}, - [11611] = {.lex_state = 175, .external_lex_state = 99}, - [11612] = {.lex_state = 175, .external_lex_state = 99}, - [11613] = {.lex_state = 175, .external_lex_state = 99}, - [11614] = {.lex_state = 177, .external_lex_state = 99}, - [11615] = {.lex_state = 175, .external_lex_state = 99}, - [11616] = {.lex_state = 177, .external_lex_state = 99}, - [11617] = {.lex_state = 177, .external_lex_state = 99}, - [11618] = {.lex_state = 177, .external_lex_state = 99}, - [11619] = {.lex_state = 175, .external_lex_state = 99}, - [11620] = {.lex_state = 175, .external_lex_state = 99}, - [11621] = {.lex_state = 175, .external_lex_state = 99}, - [11622] = {.lex_state = 175, .external_lex_state = 99}, - [11623] = {.lex_state = 175, .external_lex_state = 99}, - [11624] = {.lex_state = 177, .external_lex_state = 99}, - [11625] = {.lex_state = 177, .external_lex_state = 99}, - [11626] = {.lex_state = 175, .external_lex_state = 99}, - [11627] = {.lex_state = 177, .external_lex_state = 99}, - [11628] = {.lex_state = 172, .external_lex_state = 99}, - [11629] = {.lex_state = 175, .external_lex_state = 99}, - [11630] = {.lex_state = 175, .external_lex_state = 99}, - [11631] = {.lex_state = 177, .external_lex_state = 99}, - [11632] = {.lex_state = 175, .external_lex_state = 99}, - [11633] = {.lex_state = 175, .external_lex_state = 99}, - [11634] = {.lex_state = 175, .external_lex_state = 99}, - [11635] = {.lex_state = 177, .external_lex_state = 99}, - [11636] = {.lex_state = 175, .external_lex_state = 99}, - [11637] = {.lex_state = 175, .external_lex_state = 99}, - [11638] = {.lex_state = 177, .external_lex_state = 99}, - [11639] = {.lex_state = 175, .external_lex_state = 99}, - [11640] = {.lex_state = 175, .external_lex_state = 99}, - [11641] = {.lex_state = 175, .external_lex_state = 99}, - [11642] = {.lex_state = 175, .external_lex_state = 99}, - [11643] = {.lex_state = 177, .external_lex_state = 99}, - [11644] = {.lex_state = 177, .external_lex_state = 99}, - [11645] = {.lex_state = 177, .external_lex_state = 99}, - [11646] = {.lex_state = 175, .external_lex_state = 99}, - [11647] = {.lex_state = 177, .external_lex_state = 99}, - [11648] = {.lex_state = 175, .external_lex_state = 99}, - [11649] = {.lex_state = 177, .external_lex_state = 99}, - [11650] = {.lex_state = 175, .external_lex_state = 99}, - [11651] = {.lex_state = 175, .external_lex_state = 99}, - [11652] = {.lex_state = 177, .external_lex_state = 99}, - [11653] = {.lex_state = 175, .external_lex_state = 99}, - [11654] = {.lex_state = 177, .external_lex_state = 99}, - [11655] = {.lex_state = 175, .external_lex_state = 99}, - [11656] = {.lex_state = 175, .external_lex_state = 99}, - [11657] = {.lex_state = 69, .external_lex_state = 99}, - [11658] = {.lex_state = 177, .external_lex_state = 99}, - [11659] = {.lex_state = 177, .external_lex_state = 99}, - [11660] = {.lex_state = 175, .external_lex_state = 99}, - [11661] = {.lex_state = 175, .external_lex_state = 99}, - [11662] = {.lex_state = 177, .external_lex_state = 99}, - [11663] = {.lex_state = 177, .external_lex_state = 99}, - [11664] = {.lex_state = 177, .external_lex_state = 99}, - [11665] = {.lex_state = 177, .external_lex_state = 99}, - [11666] = {.lex_state = 177, .external_lex_state = 99}, - [11667] = {.lex_state = 175, .external_lex_state = 99}, - [11668] = {.lex_state = 175, .external_lex_state = 99}, - [11669] = {.lex_state = 175, .external_lex_state = 99}, - [11670] = {.lex_state = 175, .external_lex_state = 99}, - [11671] = {.lex_state = 175, .external_lex_state = 99}, - [11672] = {.lex_state = 177, .external_lex_state = 99}, - [11673] = {.lex_state = 175, .external_lex_state = 99}, - [11674] = {.lex_state = 175, .external_lex_state = 99}, - [11675] = {.lex_state = 177, .external_lex_state = 99}, - [11676] = {.lex_state = 175, .external_lex_state = 99}, - [11677] = {.lex_state = 175, .external_lex_state = 99}, - [11678] = {.lex_state = 175, .external_lex_state = 99}, - [11679] = {.lex_state = 175, .external_lex_state = 99}, - [11680] = {.lex_state = 177, .external_lex_state = 99}, - [11681] = {.lex_state = 175, .external_lex_state = 99}, - [11682] = {.lex_state = 175, .external_lex_state = 99}, - [11683] = {.lex_state = 177, .external_lex_state = 99}, - [11684] = {.lex_state = 177, .external_lex_state = 99}, - [11685] = {.lex_state = 175, .external_lex_state = 99}, - [11686] = {.lex_state = 175, .external_lex_state = 99}, - [11687] = {.lex_state = 175, .external_lex_state = 99}, - [11688] = {.lex_state = 175, .external_lex_state = 99}, - [11689] = {.lex_state = 175, .external_lex_state = 99}, - [11690] = {.lex_state = 177, .external_lex_state = 99}, - [11691] = {.lex_state = 175, .external_lex_state = 99}, - [11692] = {.lex_state = 175, .external_lex_state = 99}, - [11693] = {.lex_state = 175, .external_lex_state = 99}, - [11694] = {.lex_state = 175, .external_lex_state = 99}, - [11695] = {.lex_state = 177, .external_lex_state = 99}, - [11696] = {.lex_state = 177, .external_lex_state = 99}, - [11697] = {.lex_state = 175, .external_lex_state = 99}, - [11698] = {.lex_state = 177, .external_lex_state = 99}, - [11699] = {.lex_state = 177, .external_lex_state = 99}, - [11700] = {.lex_state = 175, .external_lex_state = 99}, - [11701] = {.lex_state = 177, .external_lex_state = 99}, - [11702] = {.lex_state = 175, .external_lex_state = 99}, - [11703] = {.lex_state = 175, .external_lex_state = 99}, - [11704] = {.lex_state = 175, .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 = 177, .external_lex_state = 99}, - [11709] = {.lex_state = 175, .external_lex_state = 99}, - [11710] = {.lex_state = 177, .external_lex_state = 99}, - [11711] = {.lex_state = 177, .external_lex_state = 99}, - [11712] = {.lex_state = 175, .external_lex_state = 99}, - [11713] = {.lex_state = 175, .external_lex_state = 99}, - [11714] = {.lex_state = 177, .external_lex_state = 99}, - [11715] = {.lex_state = 175, .external_lex_state = 99}, - [11716] = {.lex_state = 177, .external_lex_state = 99}, - [11717] = {.lex_state = 177, .external_lex_state = 99}, - [11718] = {.lex_state = 175, .external_lex_state = 99}, - [11719] = {.lex_state = 177, .external_lex_state = 99}, - [11720] = {.lex_state = 177, .external_lex_state = 99}, - [11721] = {.lex_state = 175, .external_lex_state = 99}, - [11722] = {.lex_state = 175, .external_lex_state = 99}, - [11723] = {.lex_state = 177, .external_lex_state = 99}, - [11724] = {.lex_state = 175, .external_lex_state = 99}, - [11725] = {.lex_state = 175, .external_lex_state = 99}, - [11726] = {.lex_state = 177, .external_lex_state = 99}, - [11727] = {.lex_state = 175, .external_lex_state = 99}, - [11728] = {.lex_state = 177, .external_lex_state = 99}, - [11729] = {.lex_state = 177, .external_lex_state = 99}, - [11730] = {.lex_state = 175, .external_lex_state = 99}, - [11731] = {.lex_state = 177, .external_lex_state = 99}, - [11732] = {.lex_state = 175, .external_lex_state = 99}, - [11733] = {.lex_state = 175, .external_lex_state = 99}, - [11734] = {.lex_state = 175, .external_lex_state = 99}, - [11735] = {.lex_state = 175, .external_lex_state = 99}, - [11736] = {.lex_state = 175, .external_lex_state = 99}, - [11737] = {.lex_state = 177, .external_lex_state = 99}, - [11738] = {.lex_state = 175, .external_lex_state = 99}, - [11739] = {.lex_state = 175, .external_lex_state = 99}, - [11740] = {.lex_state = 177, .external_lex_state = 99}, - [11741] = {.lex_state = 177, .external_lex_state = 99}, - [11742] = {.lex_state = 175, .external_lex_state = 99}, - [11743] = {.lex_state = 69, .external_lex_state = 99}, - [11744] = {.lex_state = 177, .external_lex_state = 99}, - [11745] = {.lex_state = 177, .external_lex_state = 99}, - [11746] = {.lex_state = 175, .external_lex_state = 99}, - [11747] = {.lex_state = 177, .external_lex_state = 99}, - [11748] = {.lex_state = 177, .external_lex_state = 99}, - [11749] = {.lex_state = 175, .external_lex_state = 99}, - [11750] = {.lex_state = 177, .external_lex_state = 99}, - [11751] = {.lex_state = 177, .external_lex_state = 99}, - [11752] = {.lex_state = 177, .external_lex_state = 99}, - [11753] = {.lex_state = 175, .external_lex_state = 99}, - [11754] = {.lex_state = 175, .external_lex_state = 99}, - [11755] = {.lex_state = 175, .external_lex_state = 99}, - [11756] = {.lex_state = 175, .external_lex_state = 99}, - [11757] = {.lex_state = 177, .external_lex_state = 99}, - [11758] = {.lex_state = 175, .external_lex_state = 99}, - [11759] = {.lex_state = 69, .external_lex_state = 99}, - [11760] = {.lex_state = 177, .external_lex_state = 99}, - [11761] = {.lex_state = 177, .external_lex_state = 99}, - [11762] = {.lex_state = 177, .external_lex_state = 99}, - [11763] = {.lex_state = 177, .external_lex_state = 99}, - [11764] = {.lex_state = 177, .external_lex_state = 99}, - [11765] = {.lex_state = 177, .external_lex_state = 99}, - [11766] = {.lex_state = 175, .external_lex_state = 99}, - [11767] = {.lex_state = 175, .external_lex_state = 99}, - [11768] = {.lex_state = 175, .external_lex_state = 99}, - [11769] = {.lex_state = 177, .external_lex_state = 99}, - [11770] = {.lex_state = 175, .external_lex_state = 99}, - [11771] = {.lex_state = 177, .external_lex_state = 99}, - [11772] = {.lex_state = 175, .external_lex_state = 99}, - [11773] = {.lex_state = 175, .external_lex_state = 99}, - [11774] = {.lex_state = 177, .external_lex_state = 99}, - [11775] = {.lex_state = 175, .external_lex_state = 99}, - [11776] = {.lex_state = 175, .external_lex_state = 99}, - [11777] = {.lex_state = 175, .external_lex_state = 99}, - [11778] = {.lex_state = 175, .external_lex_state = 99}, - [11779] = {.lex_state = 177, .external_lex_state = 99}, - [11780] = {.lex_state = 175, .external_lex_state = 99}, - [11781] = {.lex_state = 177, .external_lex_state = 99}, - [11782] = {.lex_state = 177, .external_lex_state = 99}, - [11783] = {.lex_state = 175, .external_lex_state = 99}, - [11784] = {.lex_state = 175, .external_lex_state = 99}, - [11785] = {.lex_state = 177, .external_lex_state = 99}, - [11786] = {.lex_state = 177, .external_lex_state = 99}, - [11787] = {.lex_state = 177, .external_lex_state = 99}, - [11788] = {.lex_state = 175, .external_lex_state = 99}, - [11789] = {.lex_state = 177, .external_lex_state = 99}, - [11790] = {.lex_state = 177, .external_lex_state = 99}, - [11791] = {.lex_state = 177, .external_lex_state = 99}, - [11792] = {.lex_state = 177, .external_lex_state = 99}, - [11793] = {.lex_state = 177, .external_lex_state = 99}, - [11794] = {.lex_state = 175, .external_lex_state = 99}, - [11795] = {.lex_state = 183, .external_lex_state = 99}, - [11796] = {.lex_state = 177, .external_lex_state = 99}, - [11797] = {.lex_state = 175, .external_lex_state = 99}, - [11798] = {.lex_state = 177, .external_lex_state = 99}, - [11799] = {.lex_state = 177, .external_lex_state = 99}, - [11800] = {.lex_state = 175, .external_lex_state = 99}, - [11801] = {.lex_state = 177, .external_lex_state = 99}, - [11802] = {.lex_state = 177, .external_lex_state = 99}, - [11803] = {.lex_state = 177, .external_lex_state = 99}, - [11804] = {.lex_state = 177, .external_lex_state = 99}, - [11805] = {.lex_state = 175, .external_lex_state = 99}, - [11806] = {.lex_state = 177, .external_lex_state = 99}, - [11807] = {.lex_state = 177, .external_lex_state = 99}, - [11808] = {.lex_state = 177, .external_lex_state = 99}, - [11809] = {.lex_state = 177, .external_lex_state = 99}, - [11810] = {.lex_state = 177, .external_lex_state = 99}, - [11811] = {.lex_state = 177, .external_lex_state = 99}, - [11812] = {.lex_state = 177, .external_lex_state = 99}, - [11813] = {.lex_state = 175, .external_lex_state = 99}, - [11814] = {.lex_state = 175, .external_lex_state = 99}, - [11815] = {.lex_state = 177, .external_lex_state = 99}, - [11816] = {.lex_state = 177, .external_lex_state = 99}, - [11817] = {.lex_state = 175, .external_lex_state = 99}, - [11818] = {.lex_state = 177, .external_lex_state = 99}, - [11819] = {.lex_state = 177, .external_lex_state = 99}, - [11820] = {.lex_state = 175, .external_lex_state = 99}, - [11821] = {.lex_state = 177, .external_lex_state = 99}, - [11822] = {.lex_state = 177, .external_lex_state = 99}, - [11823] = {.lex_state = 177, .external_lex_state = 99}, - [11824] = {.lex_state = 175, .external_lex_state = 99}, - [11825] = {.lex_state = 177, .external_lex_state = 99}, - [11826] = {.lex_state = 172, .external_lex_state = 99}, - [11827] = {.lex_state = 177, .external_lex_state = 99}, - [11828] = {.lex_state = 177, .external_lex_state = 99}, - [11829] = {.lex_state = 172, .external_lex_state = 99}, - [11830] = {.lex_state = 177, .external_lex_state = 99}, - [11831] = {.lex_state = 175, .external_lex_state = 99}, - [11832] = {.lex_state = 175, .external_lex_state = 99}, - [11833] = {.lex_state = 175, .external_lex_state = 99}, - [11834] = {.lex_state = 172, .external_lex_state = 99}, - [11835] = {.lex_state = 177, .external_lex_state = 99}, - [11836] = {.lex_state = 175, .external_lex_state = 99}, - [11837] = {.lex_state = 175, .external_lex_state = 99}, - [11838] = {.lex_state = 175, .external_lex_state = 99}, - [11839] = {.lex_state = 175, .external_lex_state = 99}, - [11840] = {.lex_state = 177, .external_lex_state = 99}, - [11841] = {.lex_state = 177, .external_lex_state = 99}, - [11842] = {.lex_state = 177, .external_lex_state = 99}, - [11843] = {.lex_state = 175, .external_lex_state = 99}, - [11844] = {.lex_state = 175, .external_lex_state = 99}, - [11845] = {.lex_state = 177, .external_lex_state = 99}, - [11846] = {.lex_state = 177, .external_lex_state = 99}, - [11847] = {.lex_state = 175, .external_lex_state = 99}, - [11848] = {.lex_state = 175, .external_lex_state = 99}, - [11849] = {.lex_state = 175, .external_lex_state = 99}, - [11850] = {.lex_state = 177, .external_lex_state = 99}, - [11851] = {.lex_state = 177, .external_lex_state = 99}, - [11852] = {.lex_state = 177, .external_lex_state = 99}, - [11853] = {.lex_state = 177, .external_lex_state = 99}, - [11854] = {.lex_state = 175, .external_lex_state = 99}, - [11855] = {.lex_state = 177, .external_lex_state = 99}, - [11856] = {.lex_state = 177, .external_lex_state = 99}, - [11857] = {.lex_state = 177, .external_lex_state = 99}, - [11858] = {.lex_state = 177, .external_lex_state = 99}, - [11859] = {.lex_state = 177, .external_lex_state = 99}, - [11860] = {.lex_state = 177, .external_lex_state = 99}, - [11861] = {.lex_state = 177, .external_lex_state = 99}, - [11862] = {.lex_state = 177, .external_lex_state = 99}, - [11863] = {.lex_state = 177, .external_lex_state = 99}, - [11864] = {.lex_state = 177, .external_lex_state = 99}, - [11865] = {.lex_state = 177, .external_lex_state = 99}, - [11866] = {.lex_state = 177, .external_lex_state = 99}, - [11867] = {.lex_state = 175, .external_lex_state = 99}, - [11868] = {.lex_state = 177, .external_lex_state = 99}, - [11869] = {.lex_state = 177, .external_lex_state = 99}, - [11870] = {.lex_state = 177, .external_lex_state = 99}, - [11871] = {.lex_state = 177, .external_lex_state = 99}, - [11872] = {.lex_state = 177, .external_lex_state = 99}, - [11873] = {.lex_state = 177, .external_lex_state = 99}, - [11874] = {.lex_state = 175, .external_lex_state = 99}, - [11875] = {.lex_state = 177, .external_lex_state = 99}, - [11876] = {.lex_state = 175, .external_lex_state = 99}, - [11877] = {.lex_state = 175, .external_lex_state = 99}, - [11878] = {.lex_state = 177, .external_lex_state = 99}, - [11879] = {.lex_state = 177, .external_lex_state = 99}, - [11880] = {.lex_state = 175, .external_lex_state = 99}, - [11881] = {.lex_state = 177, .external_lex_state = 99}, - [11882] = {.lex_state = 175, .external_lex_state = 99}, - [11883] = {.lex_state = 177, .external_lex_state = 99}, - [11884] = {.lex_state = 177, .external_lex_state = 99}, - [11885] = {.lex_state = 177, .external_lex_state = 99}, - [11886] = {.lex_state = 175, .external_lex_state = 99}, - [11887] = {.lex_state = 177, .external_lex_state = 99}, - [11888] = {.lex_state = 175, .external_lex_state = 99}, - [11889] = {.lex_state = 177, .external_lex_state = 99}, - [11890] = {.lex_state = 175, .external_lex_state = 99}, - [11891] = {.lex_state = 175, .external_lex_state = 99}, - [11892] = {.lex_state = 177, .external_lex_state = 99}, - [11893] = {.lex_state = 177, .external_lex_state = 99}, - [11894] = {.lex_state = 175, .external_lex_state = 99}, - [11895] = {.lex_state = 177, .external_lex_state = 99}, - [11896] = {.lex_state = 177, .external_lex_state = 99}, - [11897] = {.lex_state = 177, .external_lex_state = 99}, - [11898] = {.lex_state = 175, .external_lex_state = 99}, - [11899] = {.lex_state = 177, .external_lex_state = 99}, - [11900] = {.lex_state = 175, .external_lex_state = 99}, - [11901] = {.lex_state = 177, .external_lex_state = 99}, - [11902] = {.lex_state = 177, .external_lex_state = 99}, - [11903] = {.lex_state = 175, .external_lex_state = 99}, - [11904] = {.lex_state = 177, .external_lex_state = 99}, - [11905] = {.lex_state = 177, .external_lex_state = 99}, - [11906] = {.lex_state = 175, .external_lex_state = 99}, - [11907] = {.lex_state = 177, .external_lex_state = 99}, - [11908] = {.lex_state = 177, .external_lex_state = 99}, - [11909] = {.lex_state = 175, .external_lex_state = 99}, - [11910] = {.lex_state = 177, .external_lex_state = 99}, - [11911] = {.lex_state = 177, .external_lex_state = 99}, - [11912] = {.lex_state = 177, .external_lex_state = 99}, - [11913] = {.lex_state = 175, .external_lex_state = 99}, - [11914] = {.lex_state = 177, .external_lex_state = 99}, - [11915] = {.lex_state = 175, .external_lex_state = 99}, - [11916] = {.lex_state = 175, .external_lex_state = 99}, - [11917] = {.lex_state = 175, .external_lex_state = 99}, - [11918] = {.lex_state = 69, .external_lex_state = 99}, - [11919] = {.lex_state = 175, .external_lex_state = 99}, - [11920] = {.lex_state = 177, .external_lex_state = 99}, - [11921] = {.lex_state = 175, .external_lex_state = 99}, - [11922] = {.lex_state = 177, .external_lex_state = 99}, - [11923] = {.lex_state = 175, .external_lex_state = 99}, - [11924] = {.lex_state = 175, .external_lex_state = 99}, - [11925] = {.lex_state = 175, .external_lex_state = 99}, - [11926] = {.lex_state = 175, .external_lex_state = 99}, - [11927] = {.lex_state = 175, .external_lex_state = 99}, - [11928] = {.lex_state = 177, .external_lex_state = 99}, - [11929] = {.lex_state = 177, .external_lex_state = 99}, - [11930] = {.lex_state = 177, .external_lex_state = 99}, - [11931] = {.lex_state = 177, .external_lex_state = 99}, - [11932] = {.lex_state = 175, .external_lex_state = 99}, - [11933] = {.lex_state = 175, .external_lex_state = 99}, - [11934] = {.lex_state = 175, .external_lex_state = 99}, - [11935] = {.lex_state = 175, .external_lex_state = 99}, - [11936] = {.lex_state = 175, .external_lex_state = 99}, - [11937] = {.lex_state = 177, .external_lex_state = 99}, - [11938] = {.lex_state = 175, .external_lex_state = 99}, - [11939] = {.lex_state = 69, .external_lex_state = 99}, - [11940] = {.lex_state = 177, .external_lex_state = 99}, - [11941] = {.lex_state = 175, .external_lex_state = 99}, - [11942] = {.lex_state = 175, .external_lex_state = 99}, - [11943] = {.lex_state = 175, .external_lex_state = 99}, - [11944] = {.lex_state = 177, .external_lex_state = 99}, - [11945] = {.lex_state = 175, .external_lex_state = 99}, - [11946] = {.lex_state = 175, .external_lex_state = 99}, - [11947] = {.lex_state = 175, .external_lex_state = 99}, - [11948] = {.lex_state = 177, .external_lex_state = 99}, - [11949] = {.lex_state = 177, .external_lex_state = 99}, - [11950] = {.lex_state = 172, .external_lex_state = 99}, - [11951] = {.lex_state = 175, .external_lex_state = 99}, - [11952] = {.lex_state = 175, .external_lex_state = 99}, - [11953] = {.lex_state = 177, .external_lex_state = 99}, - [11954] = {.lex_state = 177, .external_lex_state = 99}, - [11955] = {.lex_state = 177, .external_lex_state = 99}, - [11956] = {.lex_state = 172, .external_lex_state = 99}, - [11957] = {.lex_state = 177, .external_lex_state = 99}, - [11958] = {.lex_state = 175, .external_lex_state = 99}, - [11959] = {.lex_state = 175, .external_lex_state = 99}, - [11960] = {.lex_state = 175, .external_lex_state = 99}, - [11961] = {.lex_state = 177, .external_lex_state = 99}, - [11962] = {.lex_state = 177, .external_lex_state = 99}, - [11963] = {.lex_state = 177, .external_lex_state = 99}, - [11964] = {.lex_state = 177, .external_lex_state = 99}, - [11965] = {.lex_state = 175, .external_lex_state = 99}, - [11966] = {.lex_state = 177, .external_lex_state = 99}, - [11967] = {.lex_state = 175, .external_lex_state = 99}, - [11968] = {.lex_state = 175, .external_lex_state = 99}, - [11969] = {.lex_state = 175, .external_lex_state = 99}, - [11970] = {.lex_state = 177, .external_lex_state = 99}, - [11971] = {.lex_state = 175, .external_lex_state = 99}, - [11972] = {.lex_state = 175, .external_lex_state = 99}, - [11973] = {.lex_state = 175, .external_lex_state = 99}, - [11974] = {.lex_state = 175, .external_lex_state = 99}, - [11975] = {.lex_state = 175, .external_lex_state = 99}, - [11976] = {.lex_state = 175, .external_lex_state = 99}, - [11977] = {.lex_state = 177, .external_lex_state = 99}, - [11978] = {.lex_state = 175, .external_lex_state = 99}, - [11979] = {.lex_state = 175, .external_lex_state = 99}, - [11980] = {.lex_state = 175, .external_lex_state = 99}, - [11981] = {.lex_state = 177, .external_lex_state = 99}, - [11982] = {.lex_state = 177, .external_lex_state = 99}, - [11983] = {.lex_state = 175, .external_lex_state = 99}, - [11984] = {.lex_state = 183, .external_lex_state = 99}, - [11985] = {.lex_state = 177, .external_lex_state = 99}, - [11986] = {.lex_state = 177, .external_lex_state = 99}, - [11987] = {.lex_state = 175, .external_lex_state = 99}, - [11988] = {.lex_state = 175, .external_lex_state = 99}, - [11989] = {.lex_state = 177, .external_lex_state = 99}, - [11990] = {.lex_state = 177, .external_lex_state = 99}, - [11991] = {.lex_state = 175, .external_lex_state = 99}, - [11992] = {.lex_state = 177, .external_lex_state = 99}, - [11993] = {.lex_state = 177, .external_lex_state = 99}, - [11994] = {.lex_state = 177, .external_lex_state = 99}, - [11995] = {.lex_state = 177, .external_lex_state = 99}, - [11996] = {.lex_state = 177, .external_lex_state = 99}, - [11997] = {.lex_state = 177, .external_lex_state = 99}, - [11998] = {.lex_state = 175, .external_lex_state = 99}, - [11999] = {.lex_state = 177, .external_lex_state = 99}, - [12000] = {.lex_state = 177, .external_lex_state = 99}, - [12001] = {.lex_state = 175, .external_lex_state = 99}, - [12002] = {.lex_state = 177, .external_lex_state = 99}, - [12003] = {.lex_state = 177, .external_lex_state = 99}, - [12004] = {.lex_state = 175, .external_lex_state = 99}, - [12005] = {.lex_state = 175, .external_lex_state = 99}, - [12006] = {.lex_state = 177, .external_lex_state = 99}, - [12007] = {.lex_state = 177, .external_lex_state = 99}, - [12008] = {.lex_state = 177, .external_lex_state = 99}, - [12009] = {.lex_state = 177, .external_lex_state = 99}, - [12010] = {.lex_state = 177, .external_lex_state = 99}, - [12011] = {.lex_state = 177, .external_lex_state = 99}, - [12012] = {.lex_state = 175, .external_lex_state = 99}, - [12013] = {.lex_state = 177, .external_lex_state = 99}, - [12014] = {.lex_state = 183, .external_lex_state = 99}, - [12015] = {.lex_state = 177, .external_lex_state = 99}, - [12016] = {.lex_state = 175, .external_lex_state = 99}, - [12017] = {.lex_state = 177, .external_lex_state = 99}, - [12018] = {.lex_state = 175, .external_lex_state = 99}, - [12019] = {.lex_state = 175, .external_lex_state = 99}, - [12020] = {.lex_state = 177, .external_lex_state = 99}, - [12021] = {.lex_state = 177, .external_lex_state = 99}, - [12022] = {.lex_state = 177, .external_lex_state = 99}, - [12023] = {.lex_state = 177, .external_lex_state = 99}, - [12024] = {.lex_state = 175, .external_lex_state = 99}, - [12025] = {.lex_state = 177, .external_lex_state = 99}, - [12026] = {.lex_state = 175, .external_lex_state = 99}, - [12027] = {.lex_state = 175, .external_lex_state = 99}, - [12028] = {.lex_state = 177, .external_lex_state = 99}, - [12029] = {.lex_state = 175, .external_lex_state = 99}, - [12030] = {.lex_state = 177, .external_lex_state = 99}, - [12031] = {.lex_state = 177, .external_lex_state = 99}, - [12032] = {.lex_state = 175, .external_lex_state = 99}, - [12033] = {.lex_state = 177, .external_lex_state = 99}, - [12034] = {.lex_state = 177, .external_lex_state = 99}, - [12035] = {.lex_state = 177, .external_lex_state = 99}, - [12036] = {.lex_state = 175, .external_lex_state = 99}, - [12037] = {.lex_state = 177, .external_lex_state = 99}, - [12038] = {.lex_state = 177, .external_lex_state = 99}, - [12039] = {.lex_state = 69, .external_lex_state = 99}, - [12040] = {.lex_state = 175, .external_lex_state = 99}, - [12041] = {.lex_state = 177, .external_lex_state = 99}, - [12042] = {.lex_state = 177, .external_lex_state = 99}, - [12043] = {.lex_state = 172, .external_lex_state = 99}, - [12044] = {.lex_state = 175, .external_lex_state = 99}, - [12045] = {.lex_state = 177, .external_lex_state = 99}, - [12046] = {.lex_state = 175, .external_lex_state = 99}, - [12047] = {.lex_state = 177, .external_lex_state = 99}, - [12048] = {.lex_state = 177, .external_lex_state = 99}, - [12049] = {.lex_state = 177, .external_lex_state = 99}, - [12050] = {.lex_state = 177, .external_lex_state = 99}, - [12051] = {.lex_state = 177, .external_lex_state = 99}, - [12052] = {.lex_state = 177, .external_lex_state = 99}, - [12053] = {.lex_state = 177, .external_lex_state = 99}, - [12054] = {.lex_state = 177, .external_lex_state = 99}, - [12055] = {.lex_state = 177, .external_lex_state = 99}, - [12056] = {.lex_state = 177, .external_lex_state = 99}, - [12057] = {.lex_state = 175, .external_lex_state = 99}, - [12058] = {.lex_state = 177, .external_lex_state = 99}, - [12059] = {.lex_state = 177, .external_lex_state = 99}, - [12060] = {.lex_state = 177, .external_lex_state = 99}, - [12061] = {.lex_state = 177, .external_lex_state = 99}, - [12062] = {.lex_state = 175, .external_lex_state = 99}, - [12063] = {.lex_state = 177, .external_lex_state = 99}, - [12064] = {.lex_state = 175, .external_lex_state = 99}, - [12065] = {.lex_state = 177, .external_lex_state = 99}, - [12066] = {.lex_state = 177, .external_lex_state = 99}, - [12067] = {.lex_state = 172, .external_lex_state = 99}, - [12068] = {.lex_state = 177, .external_lex_state = 99}, - [12069] = {.lex_state = 177, .external_lex_state = 99}, - [12070] = {.lex_state = 177, .external_lex_state = 99}, - [12071] = {.lex_state = 175, .external_lex_state = 99}, - [12072] = {.lex_state = 177, .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] = {.lex_state = 177, .external_lex_state = 99}, - [12080] = {.lex_state = 177, .external_lex_state = 99}, - [12081] = {.lex_state = 175, .external_lex_state = 99}, - [12082] = {.lex_state = 175, .external_lex_state = 99}, - [12083] = {.lex_state = 175, .external_lex_state = 99}, - [12084] = {.lex_state = 175, .external_lex_state = 99}, - [12085] = {.lex_state = 177, .external_lex_state = 99}, - [12086] = {.lex_state = 177, .external_lex_state = 99}, - [12087] = {.lex_state = 175, .external_lex_state = 99}, - [12088] = {.lex_state = 177, .external_lex_state = 99}, - [12089] = {.lex_state = 177, .external_lex_state = 99}, - [12090] = {.lex_state = 175, .external_lex_state = 99}, - [12091] = {.lex_state = 175, .external_lex_state = 99}, - [12092] = {.lex_state = 175, .external_lex_state = 99}, - [12093] = {.lex_state = 177, .external_lex_state = 99}, - [12094] = {.lex_state = 177, .external_lex_state = 99}, - [12095] = {.lex_state = 175, .external_lex_state = 99}, - [12096] = {.lex_state = 175, .external_lex_state = 99}, - [12097] = {.lex_state = 175, .external_lex_state = 99}, - [12098] = {.lex_state = 175, .external_lex_state = 99}, - [12099] = {.lex_state = 177, .external_lex_state = 99}, - [12100] = {.lex_state = 175, .external_lex_state = 99}, - [12101] = {.lex_state = 175, .external_lex_state = 99}, - [12102] = {.lex_state = 177, .external_lex_state = 99}, - [12103] = {.lex_state = 177, .external_lex_state = 99}, - [12104] = {.lex_state = 177, .external_lex_state = 99}, - [12105] = {.lex_state = 177, .external_lex_state = 99}, - [12106] = {.lex_state = 175, .external_lex_state = 99}, - [12107] = {.lex_state = 177, .external_lex_state = 99}, - [12108] = {.lex_state = 177, .external_lex_state = 99}, - [12109] = {.lex_state = 177, .external_lex_state = 99}, - [12110] = {.lex_state = 177, .external_lex_state = 99}, - [12111] = {.lex_state = 175, .external_lex_state = 99}, - [12112] = {.lex_state = 177, .external_lex_state = 99}, - [12113] = {.lex_state = 175, .external_lex_state = 99}, - [12114] = {.lex_state = 175, .external_lex_state = 99}, - [12115] = {.lex_state = 175, .external_lex_state = 99}, - [12116] = {.lex_state = 175, .external_lex_state = 99}, - [12117] = {.lex_state = 177, .external_lex_state = 99}, - [12118] = {.lex_state = 177, .external_lex_state = 99}, - [12119] = {.lex_state = 175, .external_lex_state = 99}, - [12120] = {.lex_state = 177, .external_lex_state = 99}, - [12121] = {.lex_state = 175, .external_lex_state = 99}, - [12122] = {.lex_state = 175, .external_lex_state = 99}, - [12123] = {.lex_state = 177, .external_lex_state = 99}, - [12124] = {.lex_state = 69, .external_lex_state = 99}, - [12125] = {.lex_state = 177, .external_lex_state = 99}, - [12126] = {.lex_state = 175, .external_lex_state = 99}, - [12127] = {.lex_state = 175, .external_lex_state = 99}, - [12128] = {.lex_state = 175, .external_lex_state = 99}, - [12129] = {.lex_state = 177, .external_lex_state = 99}, - [12130] = {.lex_state = 175, .external_lex_state = 99}, - [12131] = {.lex_state = 177, .external_lex_state = 99}, - [12132] = {.lex_state = 177, .external_lex_state = 99}, - [12133] = {.lex_state = 177, .external_lex_state = 99}, - [12134] = {.lex_state = 175, .external_lex_state = 99}, - [12135] = {.lex_state = 177, .external_lex_state = 99}, - [12136] = {.lex_state = 175, .external_lex_state = 99}, - [12137] = {.lex_state = 177, .external_lex_state = 99}, - [12138] = {.lex_state = 175, .external_lex_state = 99}, - [12139] = {.lex_state = 175, .external_lex_state = 99}, - [12140] = {.lex_state = 175, .external_lex_state = 99}, - [12141] = {.lex_state = 175, .external_lex_state = 99}, - [12142] = {.lex_state = 175, .external_lex_state = 99}, - [12143] = {.lex_state = 177, .external_lex_state = 99}, - [12144] = {.lex_state = 177, .external_lex_state = 99}, - [12145] = {.lex_state = 177, .external_lex_state = 99}, - [12146] = {.lex_state = 177, .external_lex_state = 99}, - [12147] = {.lex_state = 175, .external_lex_state = 99}, - [12148] = {.lex_state = 177, .external_lex_state = 99}, - [12149] = {.lex_state = 177, .external_lex_state = 99}, - [12150] = {.lex_state = 175, .external_lex_state = 99}, - [12151] = {.lex_state = 177, .external_lex_state = 99}, - [12152] = {.lex_state = 175, .external_lex_state = 99}, - [12153] = {.lex_state = 175, .external_lex_state = 99}, - [12154] = {.lex_state = 175, .external_lex_state = 99}, - [12155] = {.lex_state = 175, .external_lex_state = 99}, - [12156] = {.lex_state = 177, .external_lex_state = 99}, - [12157] = {.lex_state = 177, .external_lex_state = 99}, - [12158] = {.lex_state = 177, .external_lex_state = 99}, - [12159] = {.lex_state = 177, .external_lex_state = 99}, - [12160] = {.lex_state = 175, .external_lex_state = 99}, - [12161] = {.lex_state = 175, .external_lex_state = 99}, - [12162] = {.lex_state = 172, .external_lex_state = 99}, - [12163] = {.lex_state = 175, .external_lex_state = 99}, - [12164] = {.lex_state = 172, .external_lex_state = 99}, - [12165] = {.lex_state = 175, .external_lex_state = 99}, - [12166] = {.lex_state = 175, .external_lex_state = 99}, - [12167] = {.lex_state = 175, .external_lex_state = 99}, - [12168] = {.lex_state = 175, .external_lex_state = 99}, - [12169] = {.lex_state = 177, .external_lex_state = 99}, - [12170] = {.lex_state = 177, .external_lex_state = 99}, - [12171] = {.lex_state = 177, .external_lex_state = 99}, - [12172] = {.lex_state = 175, .external_lex_state = 99}, - [12173] = {.lex_state = 175, .external_lex_state = 99}, - [12174] = {.lex_state = 177, .external_lex_state = 99}, - [12175] = {.lex_state = 177, .external_lex_state = 99}, - [12176] = {.lex_state = 175, .external_lex_state = 99}, - [12177] = {.lex_state = 175, .external_lex_state = 99}, - [12178] = {.lex_state = 175, .external_lex_state = 99}, - [12179] = {.lex_state = 175, .external_lex_state = 99}, - [12180] = {.lex_state = 175, .external_lex_state = 99}, - [12181] = {.lex_state = 175, .external_lex_state = 99}, - [12182] = {.lex_state = 177, .external_lex_state = 99}, - [12183] = {.lex_state = 177, .external_lex_state = 99}, - [12184] = {.lex_state = 177, .external_lex_state = 99}, - [12185] = {.lex_state = 177, .external_lex_state = 99}, - [12186] = {.lex_state = 175, .external_lex_state = 99}, - [12187] = {.lex_state = 177, .external_lex_state = 99}, - [12188] = {.lex_state = 175, .external_lex_state = 99}, - [12189] = {.lex_state = 177, .external_lex_state = 99}, - [12190] = {.lex_state = 175, .external_lex_state = 99}, - [12191] = {.lex_state = 175, .external_lex_state = 99}, - [12192] = {.lex_state = 175, .external_lex_state = 99}, - [12193] = {.lex_state = 175, .external_lex_state = 99}, - [12194] = {.lex_state = 177, .external_lex_state = 99}, - [12195] = {.lex_state = 175, .external_lex_state = 99}, - [12196] = {.lex_state = 177, .external_lex_state = 99}, - [12197] = {.lex_state = 175, .external_lex_state = 99}, - [12198] = {.lex_state = 177, .external_lex_state = 99}, - [12199] = {.lex_state = 175, .external_lex_state = 99}, - [12200] = {.lex_state = 172, .external_lex_state = 99}, - [12201] = {.lex_state = 175, .external_lex_state = 99}, - [12202] = {.lex_state = 177, .external_lex_state = 99}, - [12203] = {.lex_state = 177, .external_lex_state = 99}, - [12204] = {.lex_state = 175, .external_lex_state = 99}, - [12205] = {.lex_state = 175, .external_lex_state = 99}, - [12206] = {.lex_state = 175, .external_lex_state = 99}, - [12207] = {.lex_state = 175, .external_lex_state = 99}, - [12208] = {.lex_state = 183, .external_lex_state = 99}, - [12209] = {.lex_state = 177, .external_lex_state = 99}, - [12210] = {.lex_state = 177, .external_lex_state = 99}, - [12211] = {.lex_state = 175, .external_lex_state = 99}, - [12212] = {.lex_state = 175, .external_lex_state = 99}, - [12213] = {.lex_state = 172, .external_lex_state = 99}, - [12214] = {.lex_state = 175, .external_lex_state = 99}, - [12215] = {.lex_state = 175, .external_lex_state = 99}, - [12216] = {.lex_state = 69, .external_lex_state = 99}, - [12217] = {.lex_state = 175, .external_lex_state = 99}, - [12218] = {.lex_state = 175, .external_lex_state = 99}, - [12219] = {.lex_state = 175, .external_lex_state = 99}, - [12220] = {.lex_state = 175, .external_lex_state = 99}, - [12221] = {.lex_state = 175, .external_lex_state = 99}, - [12222] = {.lex_state = 177, .external_lex_state = 99}, - [12223] = {.lex_state = 177, .external_lex_state = 99}, - [12224] = {.lex_state = 175, .external_lex_state = 99}, - [12225] = {.lex_state = 175, .external_lex_state = 99}, - [12226] = {.lex_state = 175, .external_lex_state = 99}, - [12227] = {.lex_state = 177, .external_lex_state = 99}, - [12228] = {.lex_state = 175, .external_lex_state = 99}, - [12229] = {.lex_state = 177, .external_lex_state = 99}, - [12230] = {.lex_state = 175, .external_lex_state = 99}, - [12231] = {.lex_state = 175, .external_lex_state = 99}, - [12232] = {.lex_state = 175, .external_lex_state = 99}, - [12233] = {.lex_state = 175, .external_lex_state = 99}, - [12234] = {.lex_state = 177, .external_lex_state = 99}, - [12235] = {.lex_state = 177, .external_lex_state = 99}, - [12236] = {.lex_state = 175, .external_lex_state = 99}, - [12237] = {.lex_state = 175, .external_lex_state = 99}, - [12238] = {.lex_state = 175, .external_lex_state = 99}, - [12239] = {.lex_state = 175, .external_lex_state = 99}, - [12240] = {.lex_state = 175, .external_lex_state = 99}, - [12241] = {.lex_state = 175, .external_lex_state = 99}, - [12242] = {.lex_state = 175, .external_lex_state = 99}, - [12243] = {.lex_state = 175, .external_lex_state = 99}, - [12244] = {.lex_state = 177, .external_lex_state = 99}, - [12245] = {.lex_state = 175, .external_lex_state = 99}, - [12246] = {.lex_state = 69, .external_lex_state = 99}, - [12247] = {.lex_state = 175, .external_lex_state = 99}, - [12248] = {.lex_state = 177, .external_lex_state = 99}, - [12249] = {.lex_state = 175, .external_lex_state = 99}, - [12250] = {.lex_state = 175, .external_lex_state = 99}, - [12251] = {.lex_state = 177, .external_lex_state = 99}, - [12252] = {.lex_state = 175, .external_lex_state = 99}, - [12253] = {.lex_state = 175, .external_lex_state = 99}, - [12254] = {.lex_state = 177, .external_lex_state = 99}, - [12255] = {.lex_state = 175, .external_lex_state = 99}, - [12256] = {.lex_state = 177, .external_lex_state = 99}, - [12257] = {.lex_state = 175, .external_lex_state = 99}, - [12258] = {.lex_state = 175, .external_lex_state = 99}, - [12259] = {.lex_state = 177, .external_lex_state = 99}, - [12260] = {.lex_state = 175, .external_lex_state = 99}, - [12261] = {.lex_state = 175, .external_lex_state = 99}, - [12262] = {.lex_state = 177, .external_lex_state = 99}, - [12263] = {.lex_state = 175, .external_lex_state = 99}, - [12264] = {.lex_state = 175, .external_lex_state = 99}, - [12265] = {.lex_state = 177, .external_lex_state = 99}, - [12266] = {.lex_state = 175, .external_lex_state = 99}, - [12267] = {.lex_state = 175, .external_lex_state = 99}, - [12268] = {.lex_state = 175, .external_lex_state = 99}, - [12269] = {.lex_state = 175, .external_lex_state = 99}, - [12270] = {.lex_state = 175, .external_lex_state = 99}, - [12271] = {.lex_state = 177, .external_lex_state = 99}, - [12272] = {.lex_state = 177, .external_lex_state = 99}, - [12273] = {.lex_state = 175, .external_lex_state = 99}, - [12274] = {.lex_state = 177, .external_lex_state = 99}, - [12275] = {.lex_state = 175, .external_lex_state = 99}, - [12276] = {.lex_state = 175, .external_lex_state = 99}, - [12277] = {.lex_state = 175, .external_lex_state = 99}, - [12278] = {.lex_state = 177, .external_lex_state = 99}, - [12279] = {.lex_state = 177, .external_lex_state = 99}, - [12280] = {.lex_state = 175, .external_lex_state = 99}, - [12281] = {.lex_state = 177, .external_lex_state = 99}, - [12282] = {.lex_state = 177, .external_lex_state = 99}, - [12283] = {.lex_state = 177, .external_lex_state = 99}, - [12284] = {.lex_state = 175, .external_lex_state = 99}, - [12285] = {.lex_state = 175, .external_lex_state = 99}, - [12286] = {.lex_state = 177, .external_lex_state = 99}, - [12287] = {.lex_state = 177, .external_lex_state = 99}, - [12288] = {.lex_state = 175, .external_lex_state = 99}, - [12289] = {.lex_state = 177, .external_lex_state = 99}, - [12290] = {.lex_state = 177, .external_lex_state = 99}, - [12291] = {.lex_state = 175, .external_lex_state = 99}, - [12292] = {.lex_state = 177, .external_lex_state = 99}, - [12293] = {.lex_state = 175, .external_lex_state = 99}, - [12294] = {.lex_state = 177, .external_lex_state = 99}, - [12295] = {.lex_state = 177, .external_lex_state = 99}, - [12296] = {.lex_state = 175, .external_lex_state = 99}, - [12297] = {.lex_state = 177, .external_lex_state = 99}, - [12298] = {.lex_state = 175, .external_lex_state = 99}, - [12299] = {.lex_state = 177, .external_lex_state = 99}, - [12300] = {.lex_state = 177, .external_lex_state = 99}, - [12301] = {.lex_state = 177, .external_lex_state = 99}, - [12302] = {.lex_state = 175, .external_lex_state = 99}, - [12303] = {.lex_state = 177, .external_lex_state = 99}, - [12304] = {.lex_state = 175, .external_lex_state = 99}, - [12305] = {.lex_state = 175, .external_lex_state = 99}, - [12306] = {.lex_state = 177, .external_lex_state = 99}, - [12307] = {.lex_state = 177, .external_lex_state = 99}, - [12308] = {.lex_state = 177, .external_lex_state = 99}, - [12309] = {.lex_state = 177, .external_lex_state = 99}, - [12310] = {.lex_state = 175, .external_lex_state = 99}, - [12311] = {.lex_state = 177, .external_lex_state = 99}, - [12312] = {.lex_state = 177, .external_lex_state = 99}, - [12313] = {.lex_state = 175, .external_lex_state = 99}, - [12314] = {.lex_state = 175, .external_lex_state = 99}, - [12315] = {.lex_state = 175, .external_lex_state = 99}, - [12316] = {.lex_state = 177, .external_lex_state = 99}, - [12317] = {.lex_state = 175, .external_lex_state = 99}, - [12318] = {.lex_state = 175, .external_lex_state = 99}, - [12319] = {.lex_state = 177, .external_lex_state = 99}, - [12320] = {.lex_state = 177, .external_lex_state = 99}, - [12321] = {.lex_state = 177, .external_lex_state = 99}, - [12322] = {.lex_state = 177, .external_lex_state = 99}, - [12323] = {.lex_state = 177, .external_lex_state = 99}, - [12324] = {.lex_state = 177, .external_lex_state = 99}, - [12325] = {.lex_state = 177, .external_lex_state = 99}, - [12326] = {.lex_state = 177, .external_lex_state = 99}, - [12327] = {.lex_state = 177, .external_lex_state = 99}, - [12328] = {.lex_state = 175, .external_lex_state = 99}, - [12329] = {.lex_state = 177, .external_lex_state = 99}, - [12330] = {.lex_state = 175, .external_lex_state = 99}, - [12331] = {.lex_state = 175, .external_lex_state = 99}, - [12332] = {.lex_state = 177, .external_lex_state = 99}, - [12333] = {.lex_state = 175, .external_lex_state = 99}, - [12334] = {.lex_state = 175, .external_lex_state = 99}, - [12335] = {.lex_state = 175, .external_lex_state = 99}, - [12336] = {.lex_state = 175, .external_lex_state = 99}, - [12337] = {.lex_state = 175, .external_lex_state = 99}, - [12338] = {.lex_state = 175, .external_lex_state = 99}, - [12339] = {.lex_state = 175, .external_lex_state = 99}, - [12340] = {.lex_state = 175, .external_lex_state = 99}, - [12341] = {.lex_state = 175, .external_lex_state = 99}, - [12342] = {.lex_state = 175, .external_lex_state = 99}, - [12343] = {.lex_state = 175, .external_lex_state = 99}, - [12344] = {.lex_state = 175, .external_lex_state = 99}, - [12345] = {.lex_state = 175, .external_lex_state = 99}, - [12346] = {.lex_state = 175, .external_lex_state = 99}, - [12347] = {(TSStateId)(-1)}, - [12348] = {(TSStateId)(-1)}, + [9727] = {.lex_state = 176, .external_lex_state = 131}, + [9728] = {.lex_state = 176, .external_lex_state = 131}, + [9729] = {.lex_state = 178, .external_lex_state = 116}, + [9730] = {.lex_state = 176, .external_lex_state = 99}, + [9731] = {.lex_state = 178, .external_lex_state = 116}, + [9732] = {.lex_state = 178, .external_lex_state = 116}, + [9733] = {.lex_state = 178, .external_lex_state = 116}, + [9734] = {.lex_state = 176, .external_lex_state = 99}, + [9735] = {.lex_state = 178, .external_lex_state = 99}, + [9736] = {.lex_state = 176, .external_lex_state = 130}, + [9737] = {.lex_state = 178, .external_lex_state = 116}, + [9738] = {.lex_state = 176, .external_lex_state = 131}, + [9739] = {.lex_state = 178, .external_lex_state = 116}, + [9740] = {.lex_state = 176, .external_lex_state = 131}, + [9741] = {.lex_state = 176, .external_lex_state = 131}, + [9742] = {.lex_state = 176, .external_lex_state = 131}, + [9743] = {.lex_state = 176, .external_lex_state = 131}, + [9744] = {.lex_state = 33, .external_lex_state = 99}, + [9745] = {.lex_state = 33, .external_lex_state = 99}, + [9746] = {.lex_state = 178, .external_lex_state = 99}, + [9747] = {.lex_state = 176, .external_lex_state = 131}, + [9748] = {.lex_state = 176, .external_lex_state = 131}, + [9749] = {.lex_state = 178, .external_lex_state = 116}, + [9750] = {.lex_state = 176, .external_lex_state = 131}, + [9751] = {.lex_state = 176, .external_lex_state = 131}, + [9752] = {.lex_state = 178, .external_lex_state = 117}, + [9753] = {.lex_state = 176, .external_lex_state = 131}, + [9754] = {.lex_state = 185, .external_lex_state = 117}, + [9755] = {.lex_state = 176, .external_lex_state = 131}, + [9756] = {.lex_state = 178, .external_lex_state = 117}, + [9757] = {.lex_state = 176, .external_lex_state = 131}, + [9758] = {.lex_state = 178, .external_lex_state = 116}, + [9759] = {.lex_state = 178, .external_lex_state = 99}, + [9760] = {.lex_state = 176, .external_lex_state = 131}, + [9761] = {.lex_state = 178, .external_lex_state = 116}, + [9762] = {.lex_state = 176, .external_lex_state = 131}, + [9763] = {.lex_state = 178, .external_lex_state = 116}, + [9764] = {.lex_state = 178, .external_lex_state = 99}, + [9765] = {.lex_state = 33, .external_lex_state = 99}, + [9766] = {.lex_state = 178, .external_lex_state = 117}, + [9767] = {.lex_state = 178, .external_lex_state = 117}, + [9768] = {.lex_state = 178, .external_lex_state = 116}, + [9769] = {.lex_state = 33, .external_lex_state = 99}, + [9770] = {.lex_state = 176, .external_lex_state = 99}, + [9771] = {.lex_state = 184, .external_lex_state = 99}, + [9772] = {.lex_state = 178, .external_lex_state = 99}, + [9773] = {.lex_state = 178, .external_lex_state = 99}, + [9774] = {.lex_state = 176, .external_lex_state = 131}, + [9775] = {.lex_state = 33, .external_lex_state = 99}, + [9776] = {.lex_state = 176, .external_lex_state = 99}, + [9777] = {.lex_state = 33, .external_lex_state = 99}, + [9778] = {.lex_state = 176, .external_lex_state = 99}, + [9779] = {.lex_state = 33, .external_lex_state = 99}, + [9780] = {.lex_state = 178, .external_lex_state = 116}, + [9781] = {.lex_state = 33, .external_lex_state = 99}, + [9782] = {.lex_state = 176, .external_lex_state = 99}, + [9783] = {.lex_state = 178, .external_lex_state = 117}, + [9784] = {.lex_state = 33, .external_lex_state = 99}, + [9785] = {.lex_state = 178, .external_lex_state = 116}, + [9786] = {.lex_state = 178, .external_lex_state = 117}, + [9787] = {.lex_state = 33, .external_lex_state = 99}, + [9788] = {.lex_state = 33, .external_lex_state = 99}, + [9789] = {.lex_state = 33, .external_lex_state = 99}, + [9790] = {.lex_state = 33, .external_lex_state = 99}, + [9791] = {.lex_state = 33, .external_lex_state = 99}, + [9792] = {.lex_state = 33, .external_lex_state = 99}, + [9793] = {.lex_state = 33, .external_lex_state = 99}, + [9794] = {.lex_state = 33, .external_lex_state = 99}, + [9795] = {.lex_state = 33, .external_lex_state = 99}, + [9796] = {.lex_state = 33, .external_lex_state = 99}, + [9797] = {.lex_state = 33, .external_lex_state = 99}, + [9798] = {.lex_state = 33, .external_lex_state = 99}, + [9799] = {.lex_state = 33, .external_lex_state = 99}, + [9800] = {.lex_state = 176, .external_lex_state = 99}, + [9801] = {.lex_state = 176, .external_lex_state = 99}, + [9802] = {.lex_state = 176, .external_lex_state = 99}, + [9803] = {.lex_state = 176, .external_lex_state = 99}, + [9804] = {.lex_state = 176, .external_lex_state = 99}, + [9805] = {.lex_state = 176, .external_lex_state = 99}, + [9806] = {.lex_state = 176, .external_lex_state = 99}, + [9807] = {.lex_state = 176, .external_lex_state = 99}, + [9808] = {.lex_state = 178, .external_lex_state = 117}, + [9809] = {.lex_state = 176, .external_lex_state = 99}, + [9810] = {.lex_state = 178, .external_lex_state = 116}, + [9811] = {.lex_state = 176, .external_lex_state = 99}, + [9812] = {.lex_state = 176, .external_lex_state = 99}, + [9813] = {.lex_state = 176, .external_lex_state = 99}, + [9814] = {.lex_state = 176, .external_lex_state = 99}, + [9815] = {.lex_state = 176, .external_lex_state = 131}, + [9816] = {.lex_state = 176, .external_lex_state = 131}, + [9817] = {.lex_state = 178, .external_lex_state = 99}, + [9818] = {.lex_state = 178, .external_lex_state = 116}, + [9819] = {.lex_state = 33, .external_lex_state = 99}, + [9820] = {.lex_state = 176, .external_lex_state = 99}, + [9821] = {.lex_state = 176, .external_lex_state = 99}, + [9822] = {.lex_state = 176, .external_lex_state = 99}, + [9823] = {.lex_state = 176, .external_lex_state = 99}, + [9824] = {.lex_state = 176, .external_lex_state = 131}, + [9825] = {.lex_state = 176, .external_lex_state = 131}, + [9826] = {.lex_state = 176, .external_lex_state = 99}, + [9827] = {.lex_state = 176, .external_lex_state = 99}, + [9828] = {.lex_state = 176, .external_lex_state = 131}, + [9829] = {.lex_state = 176, .external_lex_state = 99}, + [9830] = {.lex_state = 176, .external_lex_state = 131}, + [9831] = {.lex_state = 176, .external_lex_state = 99}, + [9832] = {.lex_state = 176, .external_lex_state = 99}, + [9833] = {.lex_state = 176, .external_lex_state = 131}, + [9834] = {.lex_state = 176, .external_lex_state = 99}, + [9835] = {.lex_state = 178, .external_lex_state = 99}, + [9836] = {.lex_state = 176, .external_lex_state = 99}, + [9837] = {.lex_state = 176, .external_lex_state = 131}, + [9838] = {.lex_state = 178, .external_lex_state = 99}, + [9839] = {.lex_state = 33, .external_lex_state = 99}, + [9840] = {.lex_state = 176, .external_lex_state = 99}, + [9841] = {.lex_state = 176, .external_lex_state = 99}, + [9842] = {.lex_state = 33, .external_lex_state = 99}, + [9843] = {.lex_state = 176, .external_lex_state = 99}, + [9844] = {.lex_state = 176, .external_lex_state = 131}, + [9845] = {.lex_state = 176, .external_lex_state = 131}, + [9846] = {.lex_state = 184, .external_lex_state = 99}, + [9847] = {.lex_state = 178, .external_lex_state = 99}, + [9848] = {.lex_state = 176, .external_lex_state = 131}, + [9849] = {.lex_state = 176, .external_lex_state = 131}, + [9850] = {.lex_state = 178, .external_lex_state = 116}, + [9851] = {.lex_state = 176, .external_lex_state = 99}, + [9852] = {.lex_state = 178, .external_lex_state = 99}, + [9853] = {.lex_state = 178, .external_lex_state = 116}, + [9854] = {.lex_state = 176, .external_lex_state = 99}, + [9855] = {.lex_state = 176, .external_lex_state = 99}, + [9856] = {.lex_state = 178, .external_lex_state = 117}, + [9857] = {.lex_state = 178, .external_lex_state = 99}, + [9858] = {.lex_state = 178, .external_lex_state = 117}, + [9859] = {.lex_state = 178, .external_lex_state = 117}, + [9860] = {.lex_state = 178, .external_lex_state = 116}, + [9861] = {.lex_state = 178, .external_lex_state = 116}, + [9862] = {.lex_state = 176, .external_lex_state = 128}, + [9863] = {.lex_state = 180, .external_lex_state = 99}, + [9864] = {.lex_state = 180, .external_lex_state = 99}, + [9865] = {.lex_state = 180, .external_lex_state = 99}, + [9866] = {.lex_state = 176, .external_lex_state = 99}, + [9867] = {.lex_state = 178, .external_lex_state = 117}, + [9868] = {.lex_state = 178, .external_lex_state = 117}, + [9869] = {.lex_state = 176, .external_lex_state = 99}, + [9870] = {.lex_state = 176, .external_lex_state = 99}, + [9871] = {.lex_state = 176, .external_lex_state = 99}, + [9872] = {.lex_state = 176, .external_lex_state = 99}, + [9873] = {.lex_state = 176, .external_lex_state = 99}, + [9874] = {.lex_state = 178, .external_lex_state = 116}, + [9875] = {.lex_state = 176, .external_lex_state = 99}, + [9876] = {.lex_state = 176, .external_lex_state = 99}, + [9877] = {.lex_state = 176, .external_lex_state = 99}, + [9878] = {.lex_state = 33, .external_lex_state = 99}, + [9879] = {.lex_state = 178, .external_lex_state = 99}, + [9880] = {.lex_state = 176, .external_lex_state = 131}, + [9881] = {.lex_state = 176, .external_lex_state = 131}, + [9882] = {.lex_state = 176, .external_lex_state = 99}, + [9883] = {.lex_state = 176, .external_lex_state = 99}, + [9884] = {.lex_state = 176, .external_lex_state = 99}, + [9885] = {.lex_state = 176, .external_lex_state = 99}, + [9886] = {.lex_state = 176, .external_lex_state = 99}, + [9887] = {.lex_state = 176, .external_lex_state = 99}, + [9888] = {.lex_state = 33, .external_lex_state = 99}, + [9889] = {.lex_state = 176, .external_lex_state = 99}, + [9890] = {.lex_state = 176, .external_lex_state = 99}, + [9891] = {.lex_state = 176, .external_lex_state = 99}, + [9892] = {.lex_state = 178, .external_lex_state = 99}, + [9893] = {.lex_state = 176, .external_lex_state = 99}, + [9894] = {.lex_state = 176, .external_lex_state = 99}, + [9895] = {.lex_state = 176, .external_lex_state = 99}, + [9896] = {.lex_state = 38, .external_lex_state = 117}, + [9897] = {.lex_state = 60, .external_lex_state = 99}, + [9898] = {.lex_state = 178, .external_lex_state = 117}, + [9899] = {.lex_state = 178, .external_lex_state = 116}, + [9900] = {.lex_state = 176, .external_lex_state = 131}, + [9901] = {.lex_state = 178, .external_lex_state = 121}, + [9902] = {.lex_state = 176, .external_lex_state = 131}, + [9903] = {.lex_state = 178, .external_lex_state = 99}, + [9904] = {.lex_state = 178, .external_lex_state = 116}, + [9905] = {.lex_state = 176, .external_lex_state = 99}, + [9906] = {.lex_state = 176, .external_lex_state = 99}, + [9907] = {.lex_state = 176, .external_lex_state = 99}, + [9908] = {.lex_state = 176, .external_lex_state = 99}, + [9909] = {.lex_state = 176, .external_lex_state = 99}, + [9910] = {.lex_state = 185, .external_lex_state = 117}, + [9911] = {.lex_state = 178, .external_lex_state = 116}, + [9912] = {.lex_state = 176, .external_lex_state = 99}, + [9913] = {.lex_state = 176, .external_lex_state = 131}, + [9914] = {.lex_state = 178, .external_lex_state = 99}, + [9915] = {.lex_state = 178, .external_lex_state = 99}, + [9916] = {.lex_state = 176, .external_lex_state = 99}, + [9917] = {.lex_state = 180, .external_lex_state = 117}, + [9918] = {.lex_state = 176, .external_lex_state = 99}, + [9919] = {.lex_state = 176, .external_lex_state = 99}, + [9920] = {.lex_state = 178, .external_lex_state = 116}, + [9921] = {.lex_state = 178, .external_lex_state = 121}, + [9922] = {.lex_state = 178, .external_lex_state = 117}, + [9923] = {.lex_state = 176, .external_lex_state = 99}, + [9924] = {.lex_state = 178, .external_lex_state = 116}, + [9925] = {.lex_state = 178, .external_lex_state = 117}, + [9926] = {.lex_state = 178, .external_lex_state = 117}, + [9927] = {.lex_state = 176, .external_lex_state = 99}, + [9928] = {.lex_state = 176, .external_lex_state = 99}, + [9929] = {.lex_state = 176, .external_lex_state = 99}, + [9930] = {.lex_state = 178, .external_lex_state = 121}, + [9931] = {.lex_state = 176, .external_lex_state = 131}, + [9932] = {.lex_state = 176, .external_lex_state = 131}, + [9933] = {.lex_state = 33, .external_lex_state = 99}, + [9934] = {.lex_state = 178, .external_lex_state = 99}, + [9935] = {.lex_state = 178, .external_lex_state = 117}, + [9936] = {.lex_state = 176, .external_lex_state = 99}, + [9937] = {.lex_state = 176, .external_lex_state = 131}, + [9938] = {.lex_state = 176, .external_lex_state = 131}, + [9939] = {.lex_state = 180, .external_lex_state = 99}, + [9940] = {.lex_state = 178, .external_lex_state = 117}, + [9941] = {.lex_state = 178, .external_lex_state = 116}, + [9942] = {.lex_state = 176, .external_lex_state = 99}, + [9943] = {.lex_state = 187, .external_lex_state = 117}, + [9944] = {.lex_state = 176, .external_lex_state = 99}, + [9945] = {.lex_state = 176, .external_lex_state = 131}, + [9946] = {.lex_state = 176, .external_lex_state = 131}, + [9947] = {.lex_state = 178, .external_lex_state = 99}, + [9948] = {.lex_state = 33, .external_lex_state = 99}, + [9949] = {.lex_state = 176, .external_lex_state = 99}, + [9950] = {.lex_state = 176, .external_lex_state = 99}, + [9951] = {.lex_state = 176, .external_lex_state = 99}, + [9952] = {.lex_state = 176, .external_lex_state = 131}, + [9953] = {.lex_state = 176, .external_lex_state = 131}, + [9954] = {.lex_state = 178, .external_lex_state = 116}, + [9955] = {.lex_state = 176, .external_lex_state = 99}, + [9956] = {.lex_state = 185, .external_lex_state = 117}, + [9957] = {.lex_state = 176, .external_lex_state = 99}, + [9958] = {.lex_state = 178, .external_lex_state = 117}, + [9959] = {.lex_state = 178, .external_lex_state = 99}, + [9960] = {.lex_state = 176, .external_lex_state = 99}, + [9961] = {.lex_state = 178, .external_lex_state = 116}, + [9962] = {.lex_state = 176, .external_lex_state = 99}, + [9963] = {.lex_state = 178, .external_lex_state = 117}, + [9964] = {.lex_state = 176, .external_lex_state = 99}, + [9965] = {.lex_state = 176, .external_lex_state = 99}, + [9966] = {.lex_state = 178, .external_lex_state = 99}, + [9967] = {.lex_state = 176, .external_lex_state = 99}, + [9968] = {.lex_state = 176, .external_lex_state = 99}, + [9969] = {.lex_state = 176, .external_lex_state = 99}, + [9970] = {.lex_state = 176, .external_lex_state = 99}, + [9971] = {.lex_state = 176, .external_lex_state = 99}, + [9972] = {.lex_state = 176, .external_lex_state = 99}, + [9973] = {.lex_state = 176, .external_lex_state = 99}, + [9974] = {.lex_state = 176, .external_lex_state = 99}, + [9975] = {.lex_state = 176, .external_lex_state = 99}, + [9976] = {.lex_state = 176, .external_lex_state = 99}, + [9977] = {.lex_state = 176, .external_lex_state = 99}, + [9978] = {.lex_state = 176, .external_lex_state = 99}, + [9979] = {.lex_state = 176, .external_lex_state = 99}, + [9980] = {.lex_state = 176, .external_lex_state = 99}, + [9981] = {.lex_state = 176, .external_lex_state = 99}, + [9982] = {.lex_state = 176, .external_lex_state = 99}, + [9983] = {.lex_state = 176, .external_lex_state = 99}, + [9984] = {.lex_state = 176, .external_lex_state = 99}, + [9985] = {.lex_state = 176, .external_lex_state = 99}, + [9986] = {.lex_state = 176, .external_lex_state = 99}, + [9987] = {.lex_state = 176, .external_lex_state = 99}, + [9988] = {.lex_state = 176, .external_lex_state = 99}, + [9989] = {.lex_state = 178, .external_lex_state = 116}, + [9990] = {.lex_state = 176, .external_lex_state = 99}, + [9991] = {.lex_state = 178, .external_lex_state = 117}, + [9992] = {.lex_state = 178, .external_lex_state = 116}, + [9993] = {.lex_state = 178, .external_lex_state = 99}, + [9994] = {.lex_state = 178, .external_lex_state = 99}, + [9995] = {.lex_state = 180, .external_lex_state = 99}, + [9996] = {.lex_state = 178, .external_lex_state = 117}, + [9997] = {.lex_state = 178, .external_lex_state = 116}, + [9998] = {.lex_state = 185, .external_lex_state = 117}, + [9999] = {.lex_state = 178, .external_lex_state = 99}, + [10000] = {.lex_state = 178, .external_lex_state = 117}, + [10001] = {.lex_state = 178, .external_lex_state = 117}, + [10002] = {.lex_state = 178, .external_lex_state = 116}, + [10003] = {.lex_state = 178, .external_lex_state = 117}, + [10004] = {.lex_state = 178, .external_lex_state = 117}, + [10005] = {.lex_state = 176, .external_lex_state = 131}, + [10006] = {.lex_state = 178, .external_lex_state = 116}, + [10007] = {.lex_state = 176, .external_lex_state = 131}, + [10008] = {.lex_state = 176, .external_lex_state = 99}, + [10009] = {.lex_state = 33, .external_lex_state = 99}, + [10010] = {.lex_state = 178, .external_lex_state = 99}, + [10011] = {.lex_state = 176, .external_lex_state = 99}, + [10012] = {.lex_state = 176, .external_lex_state = 131}, + [10013] = {.lex_state = 176, .external_lex_state = 99}, + [10014] = {.lex_state = 176, .external_lex_state = 99}, + [10015] = {.lex_state = 176, .external_lex_state = 131}, + [10016] = {.lex_state = 176, .external_lex_state = 99}, + [10017] = {.lex_state = 176, .external_lex_state = 131}, + [10018] = {.lex_state = 176, .external_lex_state = 99}, + [10019] = {.lex_state = 176, .external_lex_state = 131}, + [10020] = {.lex_state = 176, .external_lex_state = 99}, + [10021] = {.lex_state = 178, .external_lex_state = 121}, + [10022] = {.lex_state = 180, .external_lex_state = 99}, + [10023] = {.lex_state = 33, .external_lex_state = 99}, + [10024] = {.lex_state = 176, .external_lex_state = 99}, + [10025] = {.lex_state = 176, .external_lex_state = 99}, + [10026] = {.lex_state = 176, .external_lex_state = 99}, + [10027] = {.lex_state = 176, .external_lex_state = 131}, + [10028] = {.lex_state = 178, .external_lex_state = 121}, + [10029] = {.lex_state = 176, .external_lex_state = 99}, + [10030] = {.lex_state = 176, .external_lex_state = 99}, + [10031] = {.lex_state = 176, .external_lex_state = 99}, + [10032] = {.lex_state = 176, .external_lex_state = 99}, + [10033] = {.lex_state = 176, .external_lex_state = 99}, + [10034] = {.lex_state = 176, .external_lex_state = 131}, + [10035] = {.lex_state = 176, .external_lex_state = 99}, + [10036] = {.lex_state = 178, .external_lex_state = 116}, + [10037] = {.lex_state = 176, .external_lex_state = 131}, + [10038] = {.lex_state = 176, .external_lex_state = 99}, + [10039] = {.lex_state = 176, .external_lex_state = 99}, + [10040] = {.lex_state = 176, .external_lex_state = 99}, + [10041] = {.lex_state = 176, .external_lex_state = 99}, + [10042] = {.lex_state = 176, .external_lex_state = 99}, + [10043] = {.lex_state = 176, .external_lex_state = 99}, + [10044] = {.lex_state = 176, .external_lex_state = 99}, + [10045] = {.lex_state = 176, .external_lex_state = 99}, + [10046] = {.lex_state = 176, .external_lex_state = 99}, + [10047] = {.lex_state = 176, .external_lex_state = 99}, + [10048] = {.lex_state = 176, .external_lex_state = 99}, + [10049] = {.lex_state = 176, .external_lex_state = 99}, + [10050] = {.lex_state = 176, .external_lex_state = 99}, + [10051] = {.lex_state = 176, .external_lex_state = 99}, + [10052] = {.lex_state = 176, .external_lex_state = 99}, + [10053] = {.lex_state = 176, .external_lex_state = 99}, + [10054] = {.lex_state = 176, .external_lex_state = 99}, + [10055] = {.lex_state = 176, .external_lex_state = 99}, + [10056] = {.lex_state = 176, .external_lex_state = 99}, + [10057] = {.lex_state = 176, .external_lex_state = 99}, + [10058] = {.lex_state = 176, .external_lex_state = 99}, + [10059] = {.lex_state = 176, .external_lex_state = 99}, + [10060] = {.lex_state = 176, .external_lex_state = 99}, + [10061] = {.lex_state = 176, .external_lex_state = 99}, + [10062] = {.lex_state = 176, .external_lex_state = 99}, + [10063] = {.lex_state = 176, .external_lex_state = 99}, + [10064] = {.lex_state = 176, .external_lex_state = 99}, + [10065] = {.lex_state = 176, .external_lex_state = 99}, + [10066] = {.lex_state = 176, .external_lex_state = 99}, + [10067] = {.lex_state = 176, .external_lex_state = 99}, + [10068] = {.lex_state = 176, .external_lex_state = 99}, + [10069] = {.lex_state = 176, .external_lex_state = 99}, + [10070] = {.lex_state = 176, .external_lex_state = 99}, + [10071] = {.lex_state = 176, .external_lex_state = 99}, + [10072] = {.lex_state = 176, .external_lex_state = 99}, + [10073] = {.lex_state = 176, .external_lex_state = 99}, + [10074] = {.lex_state = 178, .external_lex_state = 99}, + [10075] = {.lex_state = 176, .external_lex_state = 99}, + [10076] = {.lex_state = 176, .external_lex_state = 99}, + [10077] = {.lex_state = 176, .external_lex_state = 99}, + [10078] = {.lex_state = 180, .external_lex_state = 99}, + [10079] = {.lex_state = 176, .external_lex_state = 99}, + [10080] = {.lex_state = 176, .external_lex_state = 99}, + [10081] = {.lex_state = 176, .external_lex_state = 99}, + [10082] = {.lex_state = 176, .external_lex_state = 99}, + [10083] = {.lex_state = 176, .external_lex_state = 99}, + [10084] = {.lex_state = 176, .external_lex_state = 99}, + [10085] = {.lex_state = 176, .external_lex_state = 99}, + [10086] = {.lex_state = 176, .external_lex_state = 99}, + [10087] = {.lex_state = 178, .external_lex_state = 99}, + [10088] = {.lex_state = 176, .external_lex_state = 99}, + [10089] = {.lex_state = 176, .external_lex_state = 99}, + [10090] = {.lex_state = 178, .external_lex_state = 99}, + [10091] = {.lex_state = 176, .external_lex_state = 99}, + [10092] = {.lex_state = 176, .external_lex_state = 99}, + [10093] = {.lex_state = 178, .external_lex_state = 132}, + [10094] = {.lex_state = 178, .external_lex_state = 117}, + [10095] = {.lex_state = 178, .external_lex_state = 99}, + [10096] = {.lex_state = 178, .external_lex_state = 99}, + [10097] = {.lex_state = 178, .external_lex_state = 117}, + [10098] = {.lex_state = 176, .external_lex_state = 99}, + [10099] = {.lex_state = 176, .external_lex_state = 99}, + [10100] = {.lex_state = 178, .external_lex_state = 117}, + [10101] = {.lex_state = 176, .external_lex_state = 99}, + [10102] = {.lex_state = 178, .external_lex_state = 117}, + [10103] = {.lex_state = 176, .external_lex_state = 99}, + [10104] = {.lex_state = 178, .external_lex_state = 132}, + [10105] = {.lex_state = 176, .external_lex_state = 99}, + [10106] = {.lex_state = 178, .external_lex_state = 132}, + [10107] = {.lex_state = 176, .external_lex_state = 99}, + [10108] = {.lex_state = 176, .external_lex_state = 99}, + [10109] = {.lex_state = 176, .external_lex_state = 99}, + [10110] = {.lex_state = 178, .external_lex_state = 132}, + [10111] = {.lex_state = 176, .external_lex_state = 99}, + [10112] = {.lex_state = 176, .external_lex_state = 99}, + [10113] = {.lex_state = 176, .external_lex_state = 99}, + [10114] = {.lex_state = 176, .external_lex_state = 99}, + [10115] = {.lex_state = 180, .external_lex_state = 99}, + [10116] = {.lex_state = 176, .external_lex_state = 99}, + [10117] = {.lex_state = 178, .external_lex_state = 99}, + [10118] = {.lex_state = 176, .external_lex_state = 99}, + [10119] = {.lex_state = 176, .external_lex_state = 99}, + [10120] = {.lex_state = 180, .external_lex_state = 99}, + [10121] = {.lex_state = 176, .external_lex_state = 99}, + [10122] = {.lex_state = 176, .external_lex_state = 99}, + [10123] = {.lex_state = 176, .external_lex_state = 99}, + [10124] = {.lex_state = 176, .external_lex_state = 99}, + [10125] = {.lex_state = 176, .external_lex_state = 99}, + [10126] = {.lex_state = 176, .external_lex_state = 99}, + [10127] = {.lex_state = 178, .external_lex_state = 132}, + [10128] = {.lex_state = 176, .external_lex_state = 99}, + [10129] = {.lex_state = 176, .external_lex_state = 99}, + [10130] = {.lex_state = 173, .external_lex_state = 99}, + [10131] = {.lex_state = 176, .external_lex_state = 99}, + [10132] = {.lex_state = 176, .external_lex_state = 99}, + [10133] = {.lex_state = 178, .external_lex_state = 117}, + [10134] = {.lex_state = 176, .external_lex_state = 99}, + [10135] = {.lex_state = 178, .external_lex_state = 117}, + [10136] = {.lex_state = 178, .external_lex_state = 132}, + [10137] = {.lex_state = 176, .external_lex_state = 99}, + [10138] = {.lex_state = 178, .external_lex_state = 117}, + [10139] = {.lex_state = 178, .external_lex_state = 117}, + [10140] = {.lex_state = 178, .external_lex_state = 99}, + [10141] = {.lex_state = 176, .external_lex_state = 99}, + [10142] = {.lex_state = 176, .external_lex_state = 99}, + [10143] = {.lex_state = 176, .external_lex_state = 99}, + [10144] = {.lex_state = 176, .external_lex_state = 99}, + [10145] = {.lex_state = 176, .external_lex_state = 99}, + [10146] = {.lex_state = 176, .external_lex_state = 99}, + [10147] = {.lex_state = 178, .external_lex_state = 132}, + [10148] = {.lex_state = 176, .external_lex_state = 99}, + [10149] = {.lex_state = 178, .external_lex_state = 117}, + [10150] = {.lex_state = 176, .external_lex_state = 99}, + [10151] = {.lex_state = 173, .external_lex_state = 99}, + [10152] = {.lex_state = 178, .external_lex_state = 117}, + [10153] = {.lex_state = 180, .external_lex_state = 99}, + [10154] = {.lex_state = 176, .external_lex_state = 99}, + [10155] = {.lex_state = 176, .external_lex_state = 99}, + [10156] = {.lex_state = 178, .external_lex_state = 117}, + [10157] = {.lex_state = 176, .external_lex_state = 99}, + [10158] = {.lex_state = 176, .external_lex_state = 99}, + [10159] = {.lex_state = 178, .external_lex_state = 117}, + [10160] = {.lex_state = 176, .external_lex_state = 99}, + [10161] = {.lex_state = 176, .external_lex_state = 99}, + [10162] = {.lex_state = 176, .external_lex_state = 99}, + [10163] = {.lex_state = 178, .external_lex_state = 132}, + [10164] = {.lex_state = 173, .external_lex_state = 99}, + [10165] = {.lex_state = 178, .external_lex_state = 132}, + [10166] = {.lex_state = 176, .external_lex_state = 99}, + [10167] = {.lex_state = 180, .external_lex_state = 99}, + [10168] = {.lex_state = 178, .external_lex_state = 132}, + [10169] = {.lex_state = 176, .external_lex_state = 99}, + [10170] = {.lex_state = 178, .external_lex_state = 132}, + [10171] = {.lex_state = 176, .external_lex_state = 99}, + [10172] = {.lex_state = 178, .external_lex_state = 132}, + [10173] = {.lex_state = 176, .external_lex_state = 99}, + [10174] = {.lex_state = 178, .external_lex_state = 132}, + [10175] = {.lex_state = 176, .external_lex_state = 99}, + [10176] = {.lex_state = 180, .external_lex_state = 99}, + [10177] = {.lex_state = 176, .external_lex_state = 99}, + [10178] = {.lex_state = 176, .external_lex_state = 99}, + [10179] = {.lex_state = 178, .external_lex_state = 117}, + [10180] = {.lex_state = 178, .external_lex_state = 117}, + [10181] = {.lex_state = 173, .external_lex_state = 99}, + [10182] = {.lex_state = 176, .external_lex_state = 99}, + [10183] = {.lex_state = 178, .external_lex_state = 132}, + [10184] = {.lex_state = 176, .external_lex_state = 99}, + [10185] = {.lex_state = 176, .external_lex_state = 99}, + [10186] = {.lex_state = 178, .external_lex_state = 132}, + [10187] = {.lex_state = 176, .external_lex_state = 99}, + [10188] = {.lex_state = 178, .external_lex_state = 99}, + [10189] = {.lex_state = 178, .external_lex_state = 132}, + [10190] = {.lex_state = 176, .external_lex_state = 99}, + [10191] = {.lex_state = 178, .external_lex_state = 132}, + [10192] = {.lex_state = 176, .external_lex_state = 99}, + [10193] = {.lex_state = 173, .external_lex_state = 99}, + [10194] = {.lex_state = 176, .external_lex_state = 99}, + [10195] = {.lex_state = 176, .external_lex_state = 99}, + [10196] = {.lex_state = 176, .external_lex_state = 99}, + [10197] = {.lex_state = 176, .external_lex_state = 99}, + [10198] = {.lex_state = 178, .external_lex_state = 132}, + [10199] = {.lex_state = 176, .external_lex_state = 99}, + [10200] = {.lex_state = 178, .external_lex_state = 132}, + [10201] = {.lex_state = 176, .external_lex_state = 99}, + [10202] = {.lex_state = 176, .external_lex_state = 99}, + [10203] = {.lex_state = 176, .external_lex_state = 99}, + [10204] = {.lex_state = 176, .external_lex_state = 99}, + [10205] = {.lex_state = 178, .external_lex_state = 132}, + [10206] = {.lex_state = 176, .external_lex_state = 99}, + [10207] = {.lex_state = 178, .external_lex_state = 99}, + [10208] = {.lex_state = 178, .external_lex_state = 99}, + [10209] = {.lex_state = 178, .external_lex_state = 99}, + [10210] = {.lex_state = 178, .external_lex_state = 99}, + [10211] = {.lex_state = 173, .external_lex_state = 99}, + [10212] = {.lex_state = 178, .external_lex_state = 132}, + [10213] = {.lex_state = 178, .external_lex_state = 117}, + [10214] = {.lex_state = 178, .external_lex_state = 132}, + [10215] = {.lex_state = 178, .external_lex_state = 117}, + [10216] = {.lex_state = 178, .external_lex_state = 132}, + [10217] = {.lex_state = 178, .external_lex_state = 132}, + [10218] = {.lex_state = 176, .external_lex_state = 99}, + [10219] = {.lex_state = 178, .external_lex_state = 132}, + [10220] = {.lex_state = 176, .external_lex_state = 99}, + [10221] = {.lex_state = 178, .external_lex_state = 117}, + [10222] = {.lex_state = 178, .external_lex_state = 132}, + [10223] = {.lex_state = 178, .external_lex_state = 99}, + [10224] = {.lex_state = 176, .external_lex_state = 99}, + [10225] = {.lex_state = 176, .external_lex_state = 99}, + [10226] = {.lex_state = 176, .external_lex_state = 99}, + [10227] = {.lex_state = 178, .external_lex_state = 132}, + [10228] = {.lex_state = 178, .external_lex_state = 132}, + [10229] = {.lex_state = 178, .external_lex_state = 132}, + [10230] = {.lex_state = 176, .external_lex_state = 128}, + [10231] = {.lex_state = 178, .external_lex_state = 132}, + [10232] = {.lex_state = 180, .external_lex_state = 99}, + [10233] = {.lex_state = 176, .external_lex_state = 99}, + [10234] = {.lex_state = 173, .external_lex_state = 99}, + [10235] = {.lex_state = 176, .external_lex_state = 99}, + [10236] = {.lex_state = 180, .external_lex_state = 99}, + [10237] = {.lex_state = 176, .external_lex_state = 99}, + [10238] = {.lex_state = 176, .external_lex_state = 99}, + [10239] = {.lex_state = 178, .external_lex_state = 132}, + [10240] = {.lex_state = 178, .external_lex_state = 117}, + [10241] = {.lex_state = 173, .external_lex_state = 99}, + [10242] = {.lex_state = 178, .external_lex_state = 117}, + [10243] = {.lex_state = 180, .external_lex_state = 99}, + [10244] = {.lex_state = 178, .external_lex_state = 117}, + [10245] = {.lex_state = 178, .external_lex_state = 117}, + [10246] = {.lex_state = 178, .external_lex_state = 117}, + [10247] = {.lex_state = 178, .external_lex_state = 132}, + [10248] = {.lex_state = 173, .external_lex_state = 99}, + [10249] = {.lex_state = 178, .external_lex_state = 117}, + [10250] = {.lex_state = 178, .external_lex_state = 132}, + [10251] = {.lex_state = 178, .external_lex_state = 132}, + [10252] = {.lex_state = 178, .external_lex_state = 132}, + [10253] = {.lex_state = 178, .external_lex_state = 132}, + [10254] = {.lex_state = 178, .external_lex_state = 117}, + [10255] = {.lex_state = 178, .external_lex_state = 132}, + [10256] = {.lex_state = 173, .external_lex_state = 99}, + [10257] = {.lex_state = 178, .external_lex_state = 132}, + [10258] = {.lex_state = 176, .external_lex_state = 99}, + [10259] = {.lex_state = 178, .external_lex_state = 132}, + [10260] = {.lex_state = 176, .external_lex_state = 99}, + [10261] = {.lex_state = 173, .external_lex_state = 99}, + [10262] = {.lex_state = 173, .external_lex_state = 99}, + [10263] = {.lex_state = 176, .external_lex_state = 99}, + [10264] = {.lex_state = 176, .external_lex_state = 99}, + [10265] = {.lex_state = 176, .external_lex_state = 99}, + [10266] = {.lex_state = 178, .external_lex_state = 132}, + [10267] = {.lex_state = 178, .external_lex_state = 132}, + [10268] = {.lex_state = 176, .external_lex_state = 99}, + [10269] = {.lex_state = 176, .external_lex_state = 99}, + [10270] = {.lex_state = 178, .external_lex_state = 132}, + [10271] = {.lex_state = 178, .external_lex_state = 117}, + [10272] = {.lex_state = 178, .external_lex_state = 132}, + [10273] = {.lex_state = 176, .external_lex_state = 99}, + [10274] = {.lex_state = 176, .external_lex_state = 99}, + [10275] = {.lex_state = 178, .external_lex_state = 117}, + [10276] = {.lex_state = 178, .external_lex_state = 117}, + [10277] = {.lex_state = 178, .external_lex_state = 132}, + [10278] = {.lex_state = 178, .external_lex_state = 117}, + [10279] = {.lex_state = 176, .external_lex_state = 99}, + [10280] = {.lex_state = 178, .external_lex_state = 132}, + [10281] = {.lex_state = 178, .external_lex_state = 117}, + [10282] = {.lex_state = 176, .external_lex_state = 99}, + [10283] = {.lex_state = 176, .external_lex_state = 99}, + [10284] = {.lex_state = 176, .external_lex_state = 99}, + [10285] = {.lex_state = 176, .external_lex_state = 99}, + [10286] = {.lex_state = 176, .external_lex_state = 99}, + [10287] = {.lex_state = 176, .external_lex_state = 99}, + [10288] = {.lex_state = 176, .external_lex_state = 99}, + [10289] = {.lex_state = 178, .external_lex_state = 117}, + [10290] = {.lex_state = 176, .external_lex_state = 99}, + [10291] = {.lex_state = 178, .external_lex_state = 117}, + [10292] = {.lex_state = 176, .external_lex_state = 99}, + [10293] = {.lex_state = 178, .external_lex_state = 117}, + [10294] = {.lex_state = 176, .external_lex_state = 99}, + [10295] = {.lex_state = 176, .external_lex_state = 99}, + [10296] = {.lex_state = 176, .external_lex_state = 99}, + [10297] = {.lex_state = 178, .external_lex_state = 117}, + [10298] = {.lex_state = 176, .external_lex_state = 99}, + [10299] = {.lex_state = 178, .external_lex_state = 117}, + [10300] = {.lex_state = 176, .external_lex_state = 99}, + [10301] = {.lex_state = 176, .external_lex_state = 99}, + [10302] = {.lex_state = 176, .external_lex_state = 99}, + [10303] = {.lex_state = 176, .external_lex_state = 99}, + [10304] = {.lex_state = 178, .external_lex_state = 117}, + [10305] = {.lex_state = 180, .external_lex_state = 99}, + [10306] = {.lex_state = 180, .external_lex_state = 99}, + [10307] = {.lex_state = 178, .external_lex_state = 117}, + [10308] = {.lex_state = 178, .external_lex_state = 117}, + [10309] = {.lex_state = 178, .external_lex_state = 117}, + [10310] = {.lex_state = 176, .external_lex_state = 99}, + [10311] = {.lex_state = 176, .external_lex_state = 99}, + [10312] = {.lex_state = 176, .external_lex_state = 99}, + [10313] = {.lex_state = 176, .external_lex_state = 99}, + [10314] = {.lex_state = 178, .external_lex_state = 99}, + [10315] = {.lex_state = 176, .external_lex_state = 99}, + [10316] = {.lex_state = 176, .external_lex_state = 99}, + [10317] = {.lex_state = 176, .external_lex_state = 99}, + [10318] = {.lex_state = 173, .external_lex_state = 99}, + [10319] = {.lex_state = 176, .external_lex_state = 99}, + [10320] = {.lex_state = 176, .external_lex_state = 99}, + [10321] = {.lex_state = 178, .external_lex_state = 132}, + [10322] = {.lex_state = 176, .external_lex_state = 99}, + [10323] = {.lex_state = 178, .external_lex_state = 99}, + [10324] = {.lex_state = 178, .external_lex_state = 132}, + [10325] = {.lex_state = 178, .external_lex_state = 132}, + [10326] = {.lex_state = 173, .external_lex_state = 99}, + [10327] = {.lex_state = 178, .external_lex_state = 132}, + [10328] = {.lex_state = 176, .external_lex_state = 99}, + [10329] = {.lex_state = 178, .external_lex_state = 117}, + [10330] = {.lex_state = 178, .external_lex_state = 132}, + [10331] = {.lex_state = 178, .external_lex_state = 132}, + [10332] = {.lex_state = 176, .external_lex_state = 99}, + [10333] = {.lex_state = 176, .external_lex_state = 117}, + [10334] = {.lex_state = 178, .external_lex_state = 132}, + [10335] = {.lex_state = 178, .external_lex_state = 117}, + [10336] = {.lex_state = 178, .external_lex_state = 132}, + [10337] = {.lex_state = 176, .external_lex_state = 99}, + [10338] = {.lex_state = 176, .external_lex_state = 99}, + [10339] = {.lex_state = 176, .external_lex_state = 99}, + [10340] = {.lex_state = 176, .external_lex_state = 99}, + [10341] = {.lex_state = 176, .external_lex_state = 99}, + [10342] = {.lex_state = 178, .external_lex_state = 117}, + [10343] = {.lex_state = 178, .external_lex_state = 117}, + [10344] = {.lex_state = 176, .external_lex_state = 99}, + [10345] = {.lex_state = 178, .external_lex_state = 132}, + [10346] = {.lex_state = 180, .external_lex_state = 99}, + [10347] = {.lex_state = 176, .external_lex_state = 99}, + [10348] = {.lex_state = 178, .external_lex_state = 132}, + [10349] = {.lex_state = 176, .external_lex_state = 99}, + [10350] = {.lex_state = 176, .external_lex_state = 99}, + [10351] = {.lex_state = 178, .external_lex_state = 117}, + [10352] = {.lex_state = 176, .external_lex_state = 99}, + [10353] = {.lex_state = 176, .external_lex_state = 117}, + [10354] = {.lex_state = 176, .external_lex_state = 99}, + [10355] = {.lex_state = 176, .external_lex_state = 99}, + [10356] = {.lex_state = 176, .external_lex_state = 99}, + [10357] = {.lex_state = 180, .external_lex_state = 99}, + [10358] = {.lex_state = 178, .external_lex_state = 117}, + [10359] = {.lex_state = 173, .external_lex_state = 99}, + [10360] = {.lex_state = 178, .external_lex_state = 117}, + [10361] = {.lex_state = 178, .external_lex_state = 117}, + [10362] = {.lex_state = 178, .external_lex_state = 117}, + [10363] = {.lex_state = 176, .external_lex_state = 99}, + [10364] = {.lex_state = 178, .external_lex_state = 117}, + [10365] = {.lex_state = 178, .external_lex_state = 117}, + [10366] = {.lex_state = 178, .external_lex_state = 117}, + [10367] = {.lex_state = 176, .external_lex_state = 99}, + [10368] = {.lex_state = 176, .external_lex_state = 117}, + [10369] = {.lex_state = 178, .external_lex_state = 117}, + [10370] = {.lex_state = 178, .external_lex_state = 117}, + [10371] = {.lex_state = 176, .external_lex_state = 99}, + [10372] = {.lex_state = 178, .external_lex_state = 117}, + [10373] = {.lex_state = 178, .external_lex_state = 117}, + [10374] = {.lex_state = 178, .external_lex_state = 117}, + [10375] = {.lex_state = 178, .external_lex_state = 117}, + [10376] = {.lex_state = 178, .external_lex_state = 117}, + [10377] = {.lex_state = 176, .external_lex_state = 117}, + [10378] = {.lex_state = 178, .external_lex_state = 117}, + [10379] = {.lex_state = 178, .external_lex_state = 117}, + [10380] = {.lex_state = 178, .external_lex_state = 117}, + [10381] = {.lex_state = 178, .external_lex_state = 117}, + [10382] = {.lex_state = 178, .external_lex_state = 117}, + [10383] = {.lex_state = 176, .external_lex_state = 99}, + [10384] = {.lex_state = 178, .external_lex_state = 117}, + [10385] = {.lex_state = 176, .external_lex_state = 99}, + [10386] = {.lex_state = 178, .external_lex_state = 99}, + [10387] = {.lex_state = 178, .external_lex_state = 117}, + [10388] = {.lex_state = 178, .external_lex_state = 117}, + [10389] = {.lex_state = 178, .external_lex_state = 117}, + [10390] = {.lex_state = 178, .external_lex_state = 117}, + [10391] = {.lex_state = 176, .external_lex_state = 99}, + [10392] = {.lex_state = 178, .external_lex_state = 117}, + [10393] = {.lex_state = 176, .external_lex_state = 99}, + [10394] = {.lex_state = 178, .external_lex_state = 117}, + [10395] = {.lex_state = 178, .external_lex_state = 117}, + [10396] = {.lex_state = 178, .external_lex_state = 117}, + [10397] = {.lex_state = 178, .external_lex_state = 117}, + [10398] = {.lex_state = 176, .external_lex_state = 99}, + [10399] = {.lex_state = 176, .external_lex_state = 99}, + [10400] = {.lex_state = 180, .external_lex_state = 99}, + [10401] = {.lex_state = 178, .external_lex_state = 117}, + [10402] = {.lex_state = 178, .external_lex_state = 117}, + [10403] = {.lex_state = 176, .external_lex_state = 99}, + [10404] = {.lex_state = 176, .external_lex_state = 99}, + [10405] = {.lex_state = 178, .external_lex_state = 99}, + [10406] = {.lex_state = 176, .external_lex_state = 99}, + [10407] = {.lex_state = 176, .external_lex_state = 99}, + [10408] = {.lex_state = 176, .external_lex_state = 99}, + [10409] = {.lex_state = 176, .external_lex_state = 99}, + [10410] = {.lex_state = 178, .external_lex_state = 132}, + [10411] = {.lex_state = 176, .external_lex_state = 99}, + [10412] = {.lex_state = 176, .external_lex_state = 99}, + [10413] = {.lex_state = 176, .external_lex_state = 99}, + [10414] = {.lex_state = 176, .external_lex_state = 99}, + [10415] = {.lex_state = 176, .external_lex_state = 99}, + [10416] = {.lex_state = 176, .external_lex_state = 99}, + [10417] = {.lex_state = 178, .external_lex_state = 117}, + [10418] = {.lex_state = 176, .external_lex_state = 99}, + [10419] = {.lex_state = 176, .external_lex_state = 99}, + [10420] = {.lex_state = 178, .external_lex_state = 117}, + [10421] = {.lex_state = 176, .external_lex_state = 99}, + [10422] = {.lex_state = 176, .external_lex_state = 99}, + [10423] = {.lex_state = 176, .external_lex_state = 99}, + [10424] = {.lex_state = 178, .external_lex_state = 117}, + [10425] = {.lex_state = 173, .external_lex_state = 99}, + [10426] = {.lex_state = 178, .external_lex_state = 117}, + [10427] = {.lex_state = 178, .external_lex_state = 99}, + [10428] = {.lex_state = 176, .external_lex_state = 99}, + [10429] = {.lex_state = 176, .external_lex_state = 99}, + [10430] = {.lex_state = 176, .external_lex_state = 99}, + [10431] = {.lex_state = 176, .external_lex_state = 99}, + [10432] = {.lex_state = 176, .external_lex_state = 99}, + [10433] = {.lex_state = 176, .external_lex_state = 99}, + [10434] = {.lex_state = 178, .external_lex_state = 117}, + [10435] = {.lex_state = 176, .external_lex_state = 99}, + [10436] = {.lex_state = 176, .external_lex_state = 99}, + [10437] = {.lex_state = 178, .external_lex_state = 132}, + [10438] = {.lex_state = 176, .external_lex_state = 99}, + [10439] = {.lex_state = 176, .external_lex_state = 99}, + [10440] = {.lex_state = 178, .external_lex_state = 117}, + [10441] = {.lex_state = 176, .external_lex_state = 99}, + [10442] = {.lex_state = 178, .external_lex_state = 117}, + [10443] = {.lex_state = 178, .external_lex_state = 132}, + [10444] = {.lex_state = 178, .external_lex_state = 117}, + [10445] = {.lex_state = 176, .external_lex_state = 117}, + [10446] = {.lex_state = 176, .external_lex_state = 99}, + [10447] = {.lex_state = 176, .external_lex_state = 99}, + [10448] = {.lex_state = 176, .external_lex_state = 99}, + [10449] = {.lex_state = 176, .external_lex_state = 99}, + [10450] = {.lex_state = 176, .external_lex_state = 99}, + [10451] = {.lex_state = 176, .external_lex_state = 99}, + [10452] = {.lex_state = 176, .external_lex_state = 99}, + [10453] = {.lex_state = 176, .external_lex_state = 99}, + [10454] = {.lex_state = 178, .external_lex_state = 117}, + [10455] = {.lex_state = 178, .external_lex_state = 117}, + [10456] = {.lex_state = 176, .external_lex_state = 99}, + [10457] = {.lex_state = 176, .external_lex_state = 99}, + [10458] = {.lex_state = 178, .external_lex_state = 117}, + [10459] = {.lex_state = 176, .external_lex_state = 99}, + [10460] = {.lex_state = 178, .external_lex_state = 117}, + [10461] = {.lex_state = 180, .external_lex_state = 99}, + [10462] = {.lex_state = 176, .external_lex_state = 99}, + [10463] = {.lex_state = 178, .external_lex_state = 117}, + [10464] = {.lex_state = 176, .external_lex_state = 99}, + [10465] = {.lex_state = 176, .external_lex_state = 99}, + [10466] = {.lex_state = 176, .external_lex_state = 99}, + [10467] = {.lex_state = 176, .external_lex_state = 99}, + [10468] = {.lex_state = 178, .external_lex_state = 132}, + [10469] = {.lex_state = 176, .external_lex_state = 99}, + [10470] = {.lex_state = 176, .external_lex_state = 99}, + [10471] = {.lex_state = 176, .external_lex_state = 99}, + [10472] = {.lex_state = 176, .external_lex_state = 99}, + [10473] = {.lex_state = 176, .external_lex_state = 99}, + [10474] = {.lex_state = 173, .external_lex_state = 99}, + [10475] = {.lex_state = 180, .external_lex_state = 99}, + [10476] = {.lex_state = 178, .external_lex_state = 117}, + [10477] = {.lex_state = 176, .external_lex_state = 99}, + [10478] = {.lex_state = 176, .external_lex_state = 99}, + [10479] = {.lex_state = 178, .external_lex_state = 117}, + [10480] = {.lex_state = 176, .external_lex_state = 99}, + [10481] = {.lex_state = 176, .external_lex_state = 99}, + [10482] = {.lex_state = 176, .external_lex_state = 99}, + [10483] = {.lex_state = 176, .external_lex_state = 99}, + [10484] = {.lex_state = 176, .external_lex_state = 99}, + [10485] = {.lex_state = 178, .external_lex_state = 132}, + [10486] = {.lex_state = 176, .external_lex_state = 99}, + [10487] = {.lex_state = 176, .external_lex_state = 99}, + [10488] = {.lex_state = 173, .external_lex_state = 99}, + [10489] = {.lex_state = 176, .external_lex_state = 99}, + [10490] = {.lex_state = 176, .external_lex_state = 99}, + [10491] = {.lex_state = 178, .external_lex_state = 117}, + [10492] = {.lex_state = 180, .external_lex_state = 99}, + [10493] = {.lex_state = 173, .external_lex_state = 99}, + [10494] = {.lex_state = 178, .external_lex_state = 117}, + [10495] = {.lex_state = 176, .external_lex_state = 99}, + [10496] = {.lex_state = 176, .external_lex_state = 99}, + [10497] = {.lex_state = 176, .external_lex_state = 99}, + [10498] = {.lex_state = 176, .external_lex_state = 99}, + [10499] = {.lex_state = 176, .external_lex_state = 99}, + [10500] = {.lex_state = 178, .external_lex_state = 117}, + [10501] = {.lex_state = 178, .external_lex_state = 117}, + [10502] = {.lex_state = 178, .external_lex_state = 117}, + [10503] = {.lex_state = 176, .external_lex_state = 99}, + [10504] = {.lex_state = 176, .external_lex_state = 99}, + [10505] = {.lex_state = 178, .external_lex_state = 117}, + [10506] = {.lex_state = 178, .external_lex_state = 117}, + [10507] = {.lex_state = 180, .external_lex_state = 99}, + [10508] = {.lex_state = 176, .external_lex_state = 99}, + [10509] = {.lex_state = 178, .external_lex_state = 117}, + [10510] = {.lex_state = 178, .external_lex_state = 117}, + [10511] = {.lex_state = 176, .external_lex_state = 99}, + [10512] = {.lex_state = 178, .external_lex_state = 132}, + [10513] = {.lex_state = 178, .external_lex_state = 117}, + [10514] = {.lex_state = 176, .external_lex_state = 99}, + [10515] = {.lex_state = 176, .external_lex_state = 99}, + [10516] = {.lex_state = 176, .external_lex_state = 99}, + [10517] = {.lex_state = 178, .external_lex_state = 99}, + [10518] = {.lex_state = 178, .external_lex_state = 117}, + [10519] = {.lex_state = 176, .external_lex_state = 99}, + [10520] = {.lex_state = 178, .external_lex_state = 117}, + [10521] = {.lex_state = 176, .external_lex_state = 99}, + [10522] = {.lex_state = 176, .external_lex_state = 99}, + [10523] = {.lex_state = 176, .external_lex_state = 99}, + [10524] = {.lex_state = 176, .external_lex_state = 99}, + [10525] = {.lex_state = 176, .external_lex_state = 99}, + [10526] = {.lex_state = 176, .external_lex_state = 99}, + [10527] = {.lex_state = 176, .external_lex_state = 99}, + [10528] = {.lex_state = 176, .external_lex_state = 99}, + [10529] = {.lex_state = 176, .external_lex_state = 99}, + [10530] = {.lex_state = 176, .external_lex_state = 99}, + [10531] = {.lex_state = 176, .external_lex_state = 99}, + [10532] = {.lex_state = 176, .external_lex_state = 99}, + [10533] = {.lex_state = 176, .external_lex_state = 99}, + [10534] = {.lex_state = 173, .external_lex_state = 99}, + [10535] = {.lex_state = 178, .external_lex_state = 99}, + [10536] = {.lex_state = 176, .external_lex_state = 99}, + [10537] = {.lex_state = 178, .external_lex_state = 117}, + [10538] = {.lex_state = 178, .external_lex_state = 99}, + [10539] = {.lex_state = 176, .external_lex_state = 99}, + [10540] = {.lex_state = 176, .external_lex_state = 99}, + [10541] = {.lex_state = 176, .external_lex_state = 99}, + [10542] = {.lex_state = 176, .external_lex_state = 99}, + [10543] = {.lex_state = 176, .external_lex_state = 99}, + [10544] = {.lex_state = 173, .external_lex_state = 99}, + [10545] = {.lex_state = 178, .external_lex_state = 117}, + [10546] = {.lex_state = 176, .external_lex_state = 99}, + [10547] = {.lex_state = 176, .external_lex_state = 99}, + [10548] = {.lex_state = 176, .external_lex_state = 99}, + [10549] = {.lex_state = 176, .external_lex_state = 99}, + [10550] = {.lex_state = 178, .external_lex_state = 117}, + [10551] = {.lex_state = 178, .external_lex_state = 117}, + [10552] = {.lex_state = 176, .external_lex_state = 99}, + [10553] = {.lex_state = 176, .external_lex_state = 99}, + [10554] = {.lex_state = 178, .external_lex_state = 117}, + [10555] = {.lex_state = 178, .external_lex_state = 117}, + [10556] = {.lex_state = 178, .external_lex_state = 117}, + [10557] = {.lex_state = 178, .external_lex_state = 117}, + [10558] = {.lex_state = 178, .external_lex_state = 117}, + [10559] = {.lex_state = 176, .external_lex_state = 99}, + [10560] = {.lex_state = 176, .external_lex_state = 99}, + [10561] = {.lex_state = 178, .external_lex_state = 132}, + [10562] = {.lex_state = 178, .external_lex_state = 132}, + [10563] = {.lex_state = 178, .external_lex_state = 117}, + [10564] = {.lex_state = 176, .external_lex_state = 99}, + [10565] = {.lex_state = 178, .external_lex_state = 117}, + [10566] = {.lex_state = 176, .external_lex_state = 99}, + [10567] = {.lex_state = 178, .external_lex_state = 117}, + [10568] = {.lex_state = 176, .external_lex_state = 99}, + [10569] = {.lex_state = 178, .external_lex_state = 132}, + [10570] = {.lex_state = 176, .external_lex_state = 99}, + [10571] = {.lex_state = 178, .external_lex_state = 132}, + [10572] = {.lex_state = 178, .external_lex_state = 132}, + [10573] = {.lex_state = 178, .external_lex_state = 117}, + [10574] = {.lex_state = 176, .external_lex_state = 99}, + [10575] = {.lex_state = 176, .external_lex_state = 99}, + [10576] = {.lex_state = 178, .external_lex_state = 99}, + [10577] = {.lex_state = 176, .external_lex_state = 99}, + [10578] = {.lex_state = 176, .external_lex_state = 99}, + [10579] = {.lex_state = 176, .external_lex_state = 99}, + [10580] = {.lex_state = 176, .external_lex_state = 99}, + [10581] = {.lex_state = 176, .external_lex_state = 99}, + [10582] = {.lex_state = 180, .external_lex_state = 99}, + [10583] = {.lex_state = 176, .external_lex_state = 99}, + [10584] = {.lex_state = 178, .external_lex_state = 132}, + [10585] = {.lex_state = 178, .external_lex_state = 117}, + [10586] = {.lex_state = 178, .external_lex_state = 117}, + [10587] = {.lex_state = 178, .external_lex_state = 117}, + [10588] = {.lex_state = 176, .external_lex_state = 99}, + [10589] = {.lex_state = 176, .external_lex_state = 99}, + [10590] = {.lex_state = 176, .external_lex_state = 99}, + [10591] = {.lex_state = 176, .external_lex_state = 99}, + [10592] = {.lex_state = 173, .external_lex_state = 99}, + [10593] = {.lex_state = 176, .external_lex_state = 99}, + [10594] = {.lex_state = 178, .external_lex_state = 117}, + [10595] = {.lex_state = 176, .external_lex_state = 99}, + [10596] = {.lex_state = 178, .external_lex_state = 117}, + [10597] = {.lex_state = 178, .external_lex_state = 132}, + [10598] = {.lex_state = 176, .external_lex_state = 99}, + [10599] = {.lex_state = 178, .external_lex_state = 132}, + [10600] = {.lex_state = 176, .external_lex_state = 99}, + [10601] = {.lex_state = 178, .external_lex_state = 132}, + [10602] = {.lex_state = 178, .external_lex_state = 132}, + [10603] = {.lex_state = 173, .external_lex_state = 99}, + [10604] = {.lex_state = 178, .external_lex_state = 132}, + [10605] = {.lex_state = 178, .external_lex_state = 132}, + [10606] = {.lex_state = 178, .external_lex_state = 132}, + [10607] = {.lex_state = 178, .external_lex_state = 132}, + [10608] = {.lex_state = 178, .external_lex_state = 132}, + [10609] = {.lex_state = 178, .external_lex_state = 132}, + [10610] = {.lex_state = 178, .external_lex_state = 132}, + [10611] = {.lex_state = 176, .external_lex_state = 99}, + [10612] = {.lex_state = 178, .external_lex_state = 117}, + [10613] = {.lex_state = 176, .external_lex_state = 99}, + [10614] = {.lex_state = 178, .external_lex_state = 132}, + [10615] = {.lex_state = 176, .external_lex_state = 99}, + [10616] = {.lex_state = 180, .external_lex_state = 99}, + [10617] = {.lex_state = 176, .external_lex_state = 99}, + [10618] = {.lex_state = 178, .external_lex_state = 117}, + [10619] = {.lex_state = 176, .external_lex_state = 99}, + [10620] = {.lex_state = 176, .external_lex_state = 99}, + [10621] = {.lex_state = 176, .external_lex_state = 99}, + [10622] = {.lex_state = 176, .external_lex_state = 99}, + [10623] = {.lex_state = 178, .external_lex_state = 132}, + [10624] = {.lex_state = 176, .external_lex_state = 99}, + [10625] = {.lex_state = 178, .external_lex_state = 117}, + [10626] = {.lex_state = 178, .external_lex_state = 117}, + [10627] = {.lex_state = 176, .external_lex_state = 99}, + [10628] = {.lex_state = 178, .external_lex_state = 117}, + [10629] = {.lex_state = 176, .external_lex_state = 99}, + [10630] = {.lex_state = 176, .external_lex_state = 99}, + [10631] = {.lex_state = 178, .external_lex_state = 117}, + [10632] = {.lex_state = 176, .external_lex_state = 99}, + [10633] = {.lex_state = 176, .external_lex_state = 99}, + [10634] = {.lex_state = 176, .external_lex_state = 99}, + [10635] = {.lex_state = 176, .external_lex_state = 99}, + [10636] = {.lex_state = 176, .external_lex_state = 99}, + [10637] = {.lex_state = 176, .external_lex_state = 99}, + [10638] = {.lex_state = 176, .external_lex_state = 99}, + [10639] = {.lex_state = 176, .external_lex_state = 99}, + [10640] = {.lex_state = 176, .external_lex_state = 117}, + [10641] = {.lex_state = 176, .external_lex_state = 99}, + [10642] = {.lex_state = 178, .external_lex_state = 132}, + [10643] = {.lex_state = 176, .external_lex_state = 99}, + [10644] = {.lex_state = 176, .external_lex_state = 99}, + [10645] = {.lex_state = 178, .external_lex_state = 132}, + [10646] = {.lex_state = 176, .external_lex_state = 99}, + [10647] = {.lex_state = 176, .external_lex_state = 99}, + [10648] = {.lex_state = 178, .external_lex_state = 132}, + [10649] = {.lex_state = 176, .external_lex_state = 99}, + [10650] = {.lex_state = 178, .external_lex_state = 132}, + [10651] = {.lex_state = 178, .external_lex_state = 132}, + [10652] = {.lex_state = 176, .external_lex_state = 99}, + [10653] = {.lex_state = 178, .external_lex_state = 132}, + [10654] = {.lex_state = 176, .external_lex_state = 99}, + [10655] = {.lex_state = 178, .external_lex_state = 132}, + [10656] = {.lex_state = 178, .external_lex_state = 132}, + [10657] = {.lex_state = 176, .external_lex_state = 99}, + [10658] = {.lex_state = 176, .external_lex_state = 99}, + [10659] = {.lex_state = 178, .external_lex_state = 117}, + [10660] = {.lex_state = 176, .external_lex_state = 99}, + [10661] = {.lex_state = 176, .external_lex_state = 99}, + [10662] = {.lex_state = 178, .external_lex_state = 132}, + [10663] = {.lex_state = 178, .external_lex_state = 117}, + [10664] = {.lex_state = 176, .external_lex_state = 99}, + [10665] = {.lex_state = 176, .external_lex_state = 99}, + [10666] = {.lex_state = 176, .external_lex_state = 99}, + [10667] = {.lex_state = 176, .external_lex_state = 99}, + [10668] = {.lex_state = 176, .external_lex_state = 99}, + [10669] = {.lex_state = 176, .external_lex_state = 99}, + [10670] = {.lex_state = 178, .external_lex_state = 132}, + [10671] = {.lex_state = 176, .external_lex_state = 99}, + [10672] = {.lex_state = 178, .external_lex_state = 132}, + [10673] = {.lex_state = 176, .external_lex_state = 99}, + [10674] = {.lex_state = 176, .external_lex_state = 99}, + [10675] = {.lex_state = 178, .external_lex_state = 99}, + [10676] = {.lex_state = 176, .external_lex_state = 99}, + [10677] = {.lex_state = 176, .external_lex_state = 99}, + [10678] = {.lex_state = 178, .external_lex_state = 132}, + [10679] = {.lex_state = 176, .external_lex_state = 99}, + [10680] = {.lex_state = 176, .external_lex_state = 99}, + [10681] = {.lex_state = 176, .external_lex_state = 99}, + [10682] = {.lex_state = 176, .external_lex_state = 99}, + [10683] = {.lex_state = 176, .external_lex_state = 99}, + [10684] = {.lex_state = 178, .external_lex_state = 132}, + [10685] = {.lex_state = 176, .external_lex_state = 99}, + [10686] = {.lex_state = 176, .external_lex_state = 99}, + [10687] = {.lex_state = 180, .external_lex_state = 99}, + [10688] = {.lex_state = 176, .external_lex_state = 99}, + [10689] = {.lex_state = 176, .external_lex_state = 99}, + [10690] = {.lex_state = 173, .external_lex_state = 99}, + [10691] = {.lex_state = 176, .external_lex_state = 99}, + [10692] = {.lex_state = 176, .external_lex_state = 99}, + [10693] = {.lex_state = 176, .external_lex_state = 99}, + [10694] = {.lex_state = 176, .external_lex_state = 99}, + [10695] = {.lex_state = 178, .external_lex_state = 117}, + [10696] = {.lex_state = 176, .external_lex_state = 99}, + [10697] = {.lex_state = 176, .external_lex_state = 99}, + [10698] = {.lex_state = 176, .external_lex_state = 99}, + [10699] = {.lex_state = 180, .external_lex_state = 99}, + [10700] = {.lex_state = 178, .external_lex_state = 132}, + [10701] = {.lex_state = 176, .external_lex_state = 99}, + [10702] = {.lex_state = 178, .external_lex_state = 117}, + [10703] = {.lex_state = 176, .external_lex_state = 99}, + [10704] = {.lex_state = 176, .external_lex_state = 99}, + [10705] = {.lex_state = 176, .external_lex_state = 99}, + [10706] = {.lex_state = 176, .external_lex_state = 99}, + [10707] = {.lex_state = 176, .external_lex_state = 99}, + [10708] = {.lex_state = 178, .external_lex_state = 132}, + [10709] = {.lex_state = 176, .external_lex_state = 99}, + [10710] = {.lex_state = 173, .external_lex_state = 99}, + [10711] = {.lex_state = 176, .external_lex_state = 99}, + [10712] = {.lex_state = 176, .external_lex_state = 99}, + [10713] = {.lex_state = 176, .external_lex_state = 99}, + [10714] = {.lex_state = 178, .external_lex_state = 117}, + [10715] = {.lex_state = 176, .external_lex_state = 99}, + [10716] = {.lex_state = 176, .external_lex_state = 99}, + [10717] = {.lex_state = 176, .external_lex_state = 99}, + [10718] = {.lex_state = 176, .external_lex_state = 99}, + [10719] = {.lex_state = 176, .external_lex_state = 99}, + [10720] = {.lex_state = 176, .external_lex_state = 99}, + [10721] = {.lex_state = 176, .external_lex_state = 99}, + [10722] = {.lex_state = 176, .external_lex_state = 99}, + [10723] = {.lex_state = 176, .external_lex_state = 99}, + [10724] = {.lex_state = 176, .external_lex_state = 99}, + [10725] = {.lex_state = 176, .external_lex_state = 99}, + [10726] = {.lex_state = 176, .external_lex_state = 99}, + [10727] = {.lex_state = 176, .external_lex_state = 99}, + [10728] = {.lex_state = 176, .external_lex_state = 99}, + [10729] = {.lex_state = 176, .external_lex_state = 99}, + [10730] = {.lex_state = 176, .external_lex_state = 99}, + [10731] = {.lex_state = 176, .external_lex_state = 99}, + [10732] = {.lex_state = 176, .external_lex_state = 99}, + [10733] = {.lex_state = 176, .external_lex_state = 99}, + [10734] = {.lex_state = 178, .external_lex_state = 132}, + [10735] = {.lex_state = 176, .external_lex_state = 99}, + [10736] = {.lex_state = 176, .external_lex_state = 99}, + [10737] = {.lex_state = 176, .external_lex_state = 99}, + [10738] = {.lex_state = 176, .external_lex_state = 99}, + [10739] = {.lex_state = 178, .external_lex_state = 132}, + [10740] = {.lex_state = 178, .external_lex_state = 117}, + [10741] = {.lex_state = 176, .external_lex_state = 99}, + [10742] = {.lex_state = 178, .external_lex_state = 99}, + [10743] = {.lex_state = 178, .external_lex_state = 132}, + [10744] = {.lex_state = 178, .external_lex_state = 99}, + [10745] = {.lex_state = 176, .external_lex_state = 99}, + [10746] = {.lex_state = 176, .external_lex_state = 99}, + [10747] = {.lex_state = 176, .external_lex_state = 99}, + [10748] = {.lex_state = 176, .external_lex_state = 99}, + [10749] = {.lex_state = 176, .external_lex_state = 99}, + [10750] = {.lex_state = 176, .external_lex_state = 99}, + [10751] = {.lex_state = 176, .external_lex_state = 131}, + [10752] = {.lex_state = 178, .external_lex_state = 99}, + [10753] = {.lex_state = 176, .external_lex_state = 99}, + [10754] = {.lex_state = 176, .external_lex_state = 99}, + [10755] = {.lex_state = 73, .external_lex_state = 99}, + [10756] = {.lex_state = 176, .external_lex_state = 128}, + [10757] = {.lex_state = 176, .external_lex_state = 128}, + [10758] = {.lex_state = 176, .external_lex_state = 99}, + [10759] = {.lex_state = 176, .external_lex_state = 99}, + [10760] = {.lex_state = 176, .external_lex_state = 99}, + [10761] = {.lex_state = 176, .external_lex_state = 128}, + [10762] = {.lex_state = 176, .external_lex_state = 99}, + [10763] = {.lex_state = 176, .external_lex_state = 99}, + [10764] = {.lex_state = 178, .external_lex_state = 99}, + [10765] = {.lex_state = 176, .external_lex_state = 99}, + [10766] = {.lex_state = 176, .external_lex_state = 99}, + [10767] = {.lex_state = 178, .external_lex_state = 116}, + [10768] = {.lex_state = 176, .external_lex_state = 99}, + [10769] = {.lex_state = 176, .external_lex_state = 99}, + [10770] = {.lex_state = 176, .external_lex_state = 99}, + [10771] = {.lex_state = 176, .external_lex_state = 99}, + [10772] = {.lex_state = 176, .external_lex_state = 99}, + [10773] = {.lex_state = 176, .external_lex_state = 128}, + [10774] = {.lex_state = 176, .external_lex_state = 99}, + [10775] = {.lex_state = 176, .external_lex_state = 99}, + [10776] = {.lex_state = 176, .external_lex_state = 99}, + [10777] = {.lex_state = 176, .external_lex_state = 99}, + [10778] = {.lex_state = 176, .external_lex_state = 99}, + [10779] = {.lex_state = 73, .external_lex_state = 99}, + [10780] = {.lex_state = 73, .external_lex_state = 99}, + [10781] = {.lex_state = 176, .external_lex_state = 99}, + [10782] = {.lex_state = 176, .external_lex_state = 128}, + [10783] = {.lex_state = 176, .external_lex_state = 99}, + [10784] = {.lex_state = 176, .external_lex_state = 99}, + [10785] = {.lex_state = 176, .external_lex_state = 99}, + [10786] = {.lex_state = 176, .external_lex_state = 99}, + [10787] = {.lex_state = 176, .external_lex_state = 99}, + [10788] = {.lex_state = 176, .external_lex_state = 128}, + [10789] = {.lex_state = 44, .external_lex_state = 99}, + [10790] = {.lex_state = 176, .external_lex_state = 99}, + [10791] = {.lex_state = 73, .external_lex_state = 99}, + [10792] = {.lex_state = 176, .external_lex_state = 99}, + [10793] = {.lex_state = 176, .external_lex_state = 99}, + [10794] = {.lex_state = 176, .external_lex_state = 99}, + [10795] = {.lex_state = 176, .external_lex_state = 99}, + [10796] = {.lex_state = 176, .external_lex_state = 99}, + [10797] = {.lex_state = 176, .external_lex_state = 99}, + [10798] = {.lex_state = 176, .external_lex_state = 99}, + [10799] = {.lex_state = 176, .external_lex_state = 99}, + [10800] = {.lex_state = 176, .external_lex_state = 128}, + [10801] = {.lex_state = 176, .external_lex_state = 99}, + [10802] = {.lex_state = 176, .external_lex_state = 99}, + [10803] = {.lex_state = 176, .external_lex_state = 99}, + [10804] = {.lex_state = 176, .external_lex_state = 99}, + [10805] = {.lex_state = 176, .external_lex_state = 99}, + [10806] = {.lex_state = 176, .external_lex_state = 99}, + [10807] = {.lex_state = 176, .external_lex_state = 99}, + [10808] = {.lex_state = 176, .external_lex_state = 99}, + [10809] = {.lex_state = 176, .external_lex_state = 99}, + [10810] = {.lex_state = 176, .external_lex_state = 99}, + [10811] = {.lex_state = 176, .external_lex_state = 99}, + [10812] = {.lex_state = 176, .external_lex_state = 99}, + [10813] = {.lex_state = 73, .external_lex_state = 99}, + [10814] = {.lex_state = 176, .external_lex_state = 99}, + [10815] = {.lex_state = 176, .external_lex_state = 99}, + [10816] = {.lex_state = 176, .external_lex_state = 99}, + [10817] = {.lex_state = 176, .external_lex_state = 99}, + [10818] = {.lex_state = 176, .external_lex_state = 99}, + [10819] = {.lex_state = 176, .external_lex_state = 99}, + [10820] = {.lex_state = 176, .external_lex_state = 99}, + [10821] = {.lex_state = 176, .external_lex_state = 99}, + [10822] = {.lex_state = 176, .external_lex_state = 99}, + [10823] = {.lex_state = 176, .external_lex_state = 99}, + [10824] = {.lex_state = 176, .external_lex_state = 99}, + [10825] = {.lex_state = 176, .external_lex_state = 99}, + [10826] = {.lex_state = 176, .external_lex_state = 99}, + [10827] = {.lex_state = 176, .external_lex_state = 128}, + [10828] = {.lex_state = 176, .external_lex_state = 99}, + [10829] = {.lex_state = 176, .external_lex_state = 99}, + [10830] = {.lex_state = 176, .external_lex_state = 99}, + [10831] = {.lex_state = 176, .external_lex_state = 99}, + [10832] = {.lex_state = 178, .external_lex_state = 99}, + [10833] = {.lex_state = 176, .external_lex_state = 99}, + [10834] = {.lex_state = 176, .external_lex_state = 99}, + [10835] = {.lex_state = 176, .external_lex_state = 99}, + [10836] = {.lex_state = 176, .external_lex_state = 99}, + [10837] = {.lex_state = 176, .external_lex_state = 99}, + [10838] = {.lex_state = 178, .external_lex_state = 99}, + [10839] = {.lex_state = 176, .external_lex_state = 99}, + [10840] = {.lex_state = 176, .external_lex_state = 99}, + [10841] = {.lex_state = 176, .external_lex_state = 128}, + [10842] = {.lex_state = 176, .external_lex_state = 99}, + [10843] = {.lex_state = 178, .external_lex_state = 99}, + [10844] = {.lex_state = 176, .external_lex_state = 99}, + [10845] = {.lex_state = 176, .external_lex_state = 99}, + [10846] = {.lex_state = 176, .external_lex_state = 99}, + [10847] = {.lex_state = 73, .external_lex_state = 99}, + [10848] = {.lex_state = 176, .external_lex_state = 99}, + [10849] = {.lex_state = 73, .external_lex_state = 99}, + [10850] = {.lex_state = 176, .external_lex_state = 99}, + [10851] = {.lex_state = 176, .external_lex_state = 131}, + [10852] = {.lex_state = 178, .external_lex_state = 99}, + [10853] = {.lex_state = 176, .external_lex_state = 99}, + [10854] = {.lex_state = 176, .external_lex_state = 99}, + [10855] = {.lex_state = 176, .external_lex_state = 128}, + [10856] = {.lex_state = 176, .external_lex_state = 128}, + [10857] = {.lex_state = 178, .external_lex_state = 99}, + [10858] = {.lex_state = 176, .external_lex_state = 99}, + [10859] = {.lex_state = 178, .external_lex_state = 99}, + [10860] = {.lex_state = 178, .external_lex_state = 99}, + [10861] = {.lex_state = 73, .external_lex_state = 99}, + [10862] = {.lex_state = 176, .external_lex_state = 99}, + [10863] = {.lex_state = 176, .external_lex_state = 99}, + [10864] = {.lex_state = 73, .external_lex_state = 99}, + [10865] = {.lex_state = 176, .external_lex_state = 99}, + [10866] = {.lex_state = 176, .external_lex_state = 128}, + [10867] = {.lex_state = 178, .external_lex_state = 99}, + [10868] = {.lex_state = 176, .external_lex_state = 99}, + [10869] = {.lex_state = 176, .external_lex_state = 99}, + [10870] = {.lex_state = 176, .external_lex_state = 99}, + [10871] = {.lex_state = 176, .external_lex_state = 99}, + [10872] = {.lex_state = 176, .external_lex_state = 128}, + [10873] = {.lex_state = 176, .external_lex_state = 99}, + [10874] = {.lex_state = 176, .external_lex_state = 99}, + [10875] = {.lex_state = 176, .external_lex_state = 128}, + [10876] = {.lex_state = 176, .external_lex_state = 99}, + [10877] = {.lex_state = 176, .external_lex_state = 99}, + [10878] = {.lex_state = 176, .external_lex_state = 99}, + [10879] = {.lex_state = 176, .external_lex_state = 99}, + [10880] = {.lex_state = 176, .external_lex_state = 131}, + [10881] = {.lex_state = 178, .external_lex_state = 99}, + [10882] = {.lex_state = 176, .external_lex_state = 99}, + [10883] = {.lex_state = 178, .external_lex_state = 132}, + [10884] = {.lex_state = 176, .external_lex_state = 99}, + [10885] = {.lex_state = 178, .external_lex_state = 99}, + [10886] = {.lex_state = 176, .external_lex_state = 99}, + [10887] = {.lex_state = 176, .external_lex_state = 99}, + [10888] = {.lex_state = 73, .external_lex_state = 99}, + [10889] = {.lex_state = 176, .external_lex_state = 128}, + [10890] = {.lex_state = 176, .external_lex_state = 99}, + [10891] = {.lex_state = 176, .external_lex_state = 99}, + [10892] = {.lex_state = 176, .external_lex_state = 99}, + [10893] = {.lex_state = 176, .external_lex_state = 99}, + [10894] = {.lex_state = 176, .external_lex_state = 99}, + [10895] = {.lex_state = 176, .external_lex_state = 99}, + [10896] = {.lex_state = 176, .external_lex_state = 99}, + [10897] = {.lex_state = 176, .external_lex_state = 99}, + [10898] = {.lex_state = 173, .external_lex_state = 99}, + [10899] = {.lex_state = 176, .external_lex_state = 128}, + [10900] = {.lex_state = 176, .external_lex_state = 128}, + [10901] = {.lex_state = 44, .external_lex_state = 99}, + [10902] = {.lex_state = 176, .external_lex_state = 128}, + [10903] = {.lex_state = 176, .external_lex_state = 99}, + [10904] = {.lex_state = 176, .external_lex_state = 99}, + [10905] = {.lex_state = 176, .external_lex_state = 99}, + [10906] = {.lex_state = 176, .external_lex_state = 99}, + [10907] = {.lex_state = 176, .external_lex_state = 99}, + [10908] = {.lex_state = 176, .external_lex_state = 99}, + [10909] = {.lex_state = 73, .external_lex_state = 99}, + [10910] = {.lex_state = 176, .external_lex_state = 99}, + [10911] = {.lex_state = 176, .external_lex_state = 128}, + [10912] = {.lex_state = 176, .external_lex_state = 99}, + [10913] = {.lex_state = 176, .external_lex_state = 99}, + [10914] = {.lex_state = 176, .external_lex_state = 99}, + [10915] = {.lex_state = 176, .external_lex_state = 99}, + [10916] = {.lex_state = 176, .external_lex_state = 99}, + [10917] = {.lex_state = 176, .external_lex_state = 99}, + [10918] = {.lex_state = 176, .external_lex_state = 99}, + [10919] = {.lex_state = 176, .external_lex_state = 99}, + [10920] = {.lex_state = 176, .external_lex_state = 99}, + [10921] = {.lex_state = 176, .external_lex_state = 99}, + [10922] = {.lex_state = 176, .external_lex_state = 99}, + [10923] = {.lex_state = 176, .external_lex_state = 99}, + [10924] = {.lex_state = 176, .external_lex_state = 99}, + [10925] = {.lex_state = 73, .external_lex_state = 99}, + [10926] = {.lex_state = 176, .external_lex_state = 99}, + [10927] = {.lex_state = 176, .external_lex_state = 99}, + [10928] = {.lex_state = 176, .external_lex_state = 99}, + [10929] = {.lex_state = 176, .external_lex_state = 99}, + [10930] = {.lex_state = 176, .external_lex_state = 99}, + [10931] = {.lex_state = 176, .external_lex_state = 99}, + [10932] = {.lex_state = 176, .external_lex_state = 99}, + [10933] = {.lex_state = 73, .external_lex_state = 99}, + [10934] = {.lex_state = 176, .external_lex_state = 99}, + [10935] = {.lex_state = 176, .external_lex_state = 131}, + [10936] = {.lex_state = 173, .external_lex_state = 99}, + [10937] = {.lex_state = 176, .external_lex_state = 99}, + [10938] = {.lex_state = 73, .external_lex_state = 99}, + [10939] = {.lex_state = 178, .external_lex_state = 99}, + [10940] = {.lex_state = 176, .external_lex_state = 99}, + [10941] = {.lex_state = 178, .external_lex_state = 99}, + [10942] = {.lex_state = 178, .external_lex_state = 99}, + [10943] = {.lex_state = 178, .external_lex_state = 99}, + [10944] = {.lex_state = 178, .external_lex_state = 99}, + [10945] = {.lex_state = 176, .external_lex_state = 99}, + [10946] = {.lex_state = 70, .external_lex_state = 99}, + [10947] = {.lex_state = 178, .external_lex_state = 99}, + [10948] = {.lex_state = 178, .external_lex_state = 99}, + [10949] = {.lex_state = 176, .external_lex_state = 99}, + [10950] = {.lex_state = 178, .external_lex_state = 99}, + [10951] = {.lex_state = 176, .external_lex_state = 99}, + [10952] = {.lex_state = 178, .external_lex_state = 99}, + [10953] = {.lex_state = 176, .external_lex_state = 99}, + [10954] = {.lex_state = 178, .external_lex_state = 99}, + [10955] = {.lex_state = 176, .external_lex_state = 99}, + [10956] = {.lex_state = 176, .external_lex_state = 99}, + [10957] = {.lex_state = 173, .external_lex_state = 99}, + [10958] = {.lex_state = 70, .external_lex_state = 99}, + [10959] = {.lex_state = 178, .external_lex_state = 99}, + [10960] = {.lex_state = 178, .external_lex_state = 99}, + [10961] = {.lex_state = 178, .external_lex_state = 99}, + [10962] = {.lex_state = 176, .external_lex_state = 99}, + [10963] = {.lex_state = 178, .external_lex_state = 99}, + [10964] = {.lex_state = 178, .external_lex_state = 99}, + [10965] = {.lex_state = 178, .external_lex_state = 99}, + [10966] = {.lex_state = 176, .external_lex_state = 99}, + [10967] = {.lex_state = 178, .external_lex_state = 99}, + [10968] = {.lex_state = 176, .external_lex_state = 99}, + [10969] = {.lex_state = 70, .external_lex_state = 99}, + [10970] = {.lex_state = 178, .external_lex_state = 99}, + [10971] = {.lex_state = 176, .external_lex_state = 99}, + [10972] = {.lex_state = 176, .external_lex_state = 99}, + [10973] = {.lex_state = 178, .external_lex_state = 99}, + [10974] = {.lex_state = 178, .external_lex_state = 99}, + [10975] = {.lex_state = 176, .external_lex_state = 99}, + [10976] = {.lex_state = 178, .external_lex_state = 99}, + [10977] = {.lex_state = 176, .external_lex_state = 99}, + [10978] = {.lex_state = 178, .external_lex_state = 99}, + [10979] = {.lex_state = 176, .external_lex_state = 99}, + [10980] = {.lex_state = 178, .external_lex_state = 99}, + [10981] = {.lex_state = 178, .external_lex_state = 99}, + [10982] = {.lex_state = 178, .external_lex_state = 99}, + [10983] = {.lex_state = 176, .external_lex_state = 99}, + [10984] = {.lex_state = 176, .external_lex_state = 99}, + [10985] = {.lex_state = 176, .external_lex_state = 99}, + [10986] = {.lex_state = 178, .external_lex_state = 99}, + [10987] = {.lex_state = 176, .external_lex_state = 99}, + [10988] = {.lex_state = 178, .external_lex_state = 99}, + [10989] = {.lex_state = 176, .external_lex_state = 99}, + [10990] = {.lex_state = 176, .external_lex_state = 99}, + [10991] = {.lex_state = 176, .external_lex_state = 99}, + [10992] = {.lex_state = 176, .external_lex_state = 99}, + [10993] = {.lex_state = 176, .external_lex_state = 99}, + [10994] = {.lex_state = 176, .external_lex_state = 99}, + [10995] = {.lex_state = 176, .external_lex_state = 99}, + [10996] = {.lex_state = 178, .external_lex_state = 99}, + [10997] = {.lex_state = 176, .external_lex_state = 99}, + [10998] = {.lex_state = 178, .external_lex_state = 99}, + [10999] = {.lex_state = 176, .external_lex_state = 99}, + [11000] = {.lex_state = 176, .external_lex_state = 99}, + [11001] = {.lex_state = 178, .external_lex_state = 99}, + [11002] = {.lex_state = 178, .external_lex_state = 99}, + [11003] = {.lex_state = 178, .external_lex_state = 99}, + [11004] = {.lex_state = 178, .external_lex_state = 99}, + [11005] = {.lex_state = 176, .external_lex_state = 99}, + [11006] = {.lex_state = 178, .external_lex_state = 99}, + [11007] = {.lex_state = 178, .external_lex_state = 99}, + [11008] = {.lex_state = 176, .external_lex_state = 99}, + [11009] = {.lex_state = 178, .external_lex_state = 99}, + [11010] = {.lex_state = 176, .external_lex_state = 99}, + [11011] = {.lex_state = 176, .external_lex_state = 99}, + [11012] = {.lex_state = 178, .external_lex_state = 99}, + [11013] = {.lex_state = 178, .external_lex_state = 99}, + [11014] = {.lex_state = 173, .external_lex_state = 99}, + [11015] = {.lex_state = 178, .external_lex_state = 99}, + [11016] = {.lex_state = 176, .external_lex_state = 99}, + [11017] = {.lex_state = 176, .external_lex_state = 99}, + [11018] = {.lex_state = 178, .external_lex_state = 99}, + [11019] = {.lex_state = 178, .external_lex_state = 99}, + [11020] = {.lex_state = 178, .external_lex_state = 99}, + [11021] = {.lex_state = 178, .external_lex_state = 99}, + [11022] = {.lex_state = 178, .external_lex_state = 99}, + [11023] = {.lex_state = 176, .external_lex_state = 99}, + [11024] = {.lex_state = 178, .external_lex_state = 99}, + [11025] = {.lex_state = 176, .external_lex_state = 99}, + [11026] = {.lex_state = 176, .external_lex_state = 99}, + [11027] = {.lex_state = 173, .external_lex_state = 99}, + [11028] = {.lex_state = 178, .external_lex_state = 99}, + [11029] = {.lex_state = 176, .external_lex_state = 99}, + [11030] = {.lex_state = 176, .external_lex_state = 99}, + [11031] = {.lex_state = 178, .external_lex_state = 99}, + [11032] = {.lex_state = 178, .external_lex_state = 99}, + [11033] = {.lex_state = 178, .external_lex_state = 99}, + [11034] = {.lex_state = 176, .external_lex_state = 99}, + [11035] = {.lex_state = 178, .external_lex_state = 99}, + [11036] = {.lex_state = 173, .external_lex_state = 99}, + [11037] = {.lex_state = 178, .external_lex_state = 99}, + [11038] = {.lex_state = 178, .external_lex_state = 99}, + [11039] = {.lex_state = 176, .external_lex_state = 99}, + [11040] = {.lex_state = 176, .external_lex_state = 99}, + [11041] = {.lex_state = 178, .external_lex_state = 99}, + [11042] = {.lex_state = 178, .external_lex_state = 99}, + [11043] = {.lex_state = 70, .external_lex_state = 99}, + [11044] = {.lex_state = 178, .external_lex_state = 99}, + [11045] = {.lex_state = 176, .external_lex_state = 99}, + [11046] = {.lex_state = 178, .external_lex_state = 99}, + [11047] = {.lex_state = 178, .external_lex_state = 99}, + [11048] = {.lex_state = 178, .external_lex_state = 99}, + [11049] = {.lex_state = 178, .external_lex_state = 99}, + [11050] = {.lex_state = 176, .external_lex_state = 99}, + [11051] = {.lex_state = 178, .external_lex_state = 99}, + [11052] = {.lex_state = 176, .external_lex_state = 99}, + [11053] = {.lex_state = 184, .external_lex_state = 99}, + [11054] = {.lex_state = 178, .external_lex_state = 99}, + [11055] = {.lex_state = 178, .external_lex_state = 99}, + [11056] = {.lex_state = 178, .external_lex_state = 99}, + [11057] = {.lex_state = 176, .external_lex_state = 99}, + [11058] = {.lex_state = 178, .external_lex_state = 99}, + [11059] = {.lex_state = 176, .external_lex_state = 99}, + [11060] = {.lex_state = 178, .external_lex_state = 99}, + [11061] = {.lex_state = 178, .external_lex_state = 99}, + [11062] = {.lex_state = 176, .external_lex_state = 99}, + [11063] = {.lex_state = 178, .external_lex_state = 99}, + [11064] = {.lex_state = 176, .external_lex_state = 99}, + [11065] = {.lex_state = 178, .external_lex_state = 99}, + [11066] = {.lex_state = 176, .external_lex_state = 99}, + [11067] = {.lex_state = 178, .external_lex_state = 99}, + [11068] = {.lex_state = 176, .external_lex_state = 99}, + [11069] = {.lex_state = 176, .external_lex_state = 99}, + [11070] = {.lex_state = 178, .external_lex_state = 99}, + [11071] = {.lex_state = 176, .external_lex_state = 99}, + [11072] = {.lex_state = 176, .external_lex_state = 99}, + [11073] = {.lex_state = 178, .external_lex_state = 99}, + [11074] = {.lex_state = 178, .external_lex_state = 99}, + [11075] = {.lex_state = 173, .external_lex_state = 99}, + [11076] = {.lex_state = 178, .external_lex_state = 99}, + [11077] = {.lex_state = 178, .external_lex_state = 99}, + [11078] = {.lex_state = 176, .external_lex_state = 99}, + [11079] = {.lex_state = 178, .external_lex_state = 99}, + [11080] = {.lex_state = 176, .external_lex_state = 99}, + [11081] = {.lex_state = 178, .external_lex_state = 99}, + [11082] = {.lex_state = 176, .external_lex_state = 99}, + [11083] = {.lex_state = 176, .external_lex_state = 99}, + [11084] = {.lex_state = 178, .external_lex_state = 99}, + [11085] = {.lex_state = 178, .external_lex_state = 99}, + [11086] = {.lex_state = 176, .external_lex_state = 99}, + [11087] = {.lex_state = 178, .external_lex_state = 99}, + [11088] = {.lex_state = 176, .external_lex_state = 99}, + [11089] = {.lex_state = 178, .external_lex_state = 99}, + [11090] = {.lex_state = 176, .external_lex_state = 99}, + [11091] = {.lex_state = 70, .external_lex_state = 99}, + [11092] = {.lex_state = 178, .external_lex_state = 99}, + [11093] = {.lex_state = 176, .external_lex_state = 99}, + [11094] = {.lex_state = 176, .external_lex_state = 99}, + [11095] = {.lex_state = 176, .external_lex_state = 99}, + [11096] = {.lex_state = 178, .external_lex_state = 99}, + [11097] = {.lex_state = 178, .external_lex_state = 99}, + [11098] = {.lex_state = 176, .external_lex_state = 99}, + [11099] = {.lex_state = 173, .external_lex_state = 99}, + [11100] = {.lex_state = 178, .external_lex_state = 99}, + [11101] = {.lex_state = 176, .external_lex_state = 99}, + [11102] = {.lex_state = 178, .external_lex_state = 99}, + [11103] = {.lex_state = 178, .external_lex_state = 99}, + [11104] = {.lex_state = 178, .external_lex_state = 99}, + [11105] = {.lex_state = 176, .external_lex_state = 99}, + [11106] = {.lex_state = 178, .external_lex_state = 99}, + [11107] = {.lex_state = 176, .external_lex_state = 99}, + [11108] = {.lex_state = 176, .external_lex_state = 99}, + [11109] = {.lex_state = 176, .external_lex_state = 99}, + [11110] = {.lex_state = 176, .external_lex_state = 99}, + [11111] = {.lex_state = 178, .external_lex_state = 99}, + [11112] = {.lex_state = 178, .external_lex_state = 99}, + [11113] = {.lex_state = 178, .external_lex_state = 99}, + [11114] = {.lex_state = 178, .external_lex_state = 99}, + [11115] = {.lex_state = 176, .external_lex_state = 99}, + [11116] = {.lex_state = 178, .external_lex_state = 99}, + [11117] = {.lex_state = 178, .external_lex_state = 99}, + [11118] = {.lex_state = 176, .external_lex_state = 99}, + [11119] = {.lex_state = 178, .external_lex_state = 99}, + [11120] = {.lex_state = 178, .external_lex_state = 99}, + [11121] = {.lex_state = 176, .external_lex_state = 99}, + [11122] = {.lex_state = 178, .external_lex_state = 99}, + [11123] = {.lex_state = 176, .external_lex_state = 99}, + [11124] = {.lex_state = 176, .external_lex_state = 99}, + [11125] = {.lex_state = 176, .external_lex_state = 99}, + [11126] = {.lex_state = 176, .external_lex_state = 99}, + [11127] = {.lex_state = 178, .external_lex_state = 99}, + [11128] = {.lex_state = 176, .external_lex_state = 99}, + [11129] = {.lex_state = 178, .external_lex_state = 99}, + [11130] = {.lex_state = 178, .external_lex_state = 99}, + [11131] = {.lex_state = 178, .external_lex_state = 99}, + [11132] = {.lex_state = 176, .external_lex_state = 99}, + [11133] = {.lex_state = 176, .external_lex_state = 99}, + [11134] = {.lex_state = 176, .external_lex_state = 99}, + [11135] = {.lex_state = 176, .external_lex_state = 99}, + [11136] = {.lex_state = 176, .external_lex_state = 99}, + [11137] = {.lex_state = 176, .external_lex_state = 99}, + [11138] = {.lex_state = 173, .external_lex_state = 99}, + [11139] = {.lex_state = 178, .external_lex_state = 99}, + [11140] = {.lex_state = 176, .external_lex_state = 99}, + [11141] = {.lex_state = 178, .external_lex_state = 99}, + [11142] = {.lex_state = 178, .external_lex_state = 99}, + [11143] = {.lex_state = 178, .external_lex_state = 99}, + [11144] = {.lex_state = 176, .external_lex_state = 99}, + [11145] = {.lex_state = 176, .external_lex_state = 99}, + [11146] = {.lex_state = 176, .external_lex_state = 99}, + [11147] = {.lex_state = 176, .external_lex_state = 99}, + [11148] = {.lex_state = 176, .external_lex_state = 99}, + [11149] = {.lex_state = 176, .external_lex_state = 99}, + [11150] = {.lex_state = 176, .external_lex_state = 99}, + [11151] = {.lex_state = 178, .external_lex_state = 99}, + [11152] = {.lex_state = 176, .external_lex_state = 99}, + [11153] = {.lex_state = 176, .external_lex_state = 99}, + [11154] = {.lex_state = 176, .external_lex_state = 99}, + [11155] = {.lex_state = 178, .external_lex_state = 99}, + [11156] = {.lex_state = 176, .external_lex_state = 99}, + [11157] = {.lex_state = 176, .external_lex_state = 99}, + [11158] = {.lex_state = 176, .external_lex_state = 99}, + [11159] = {.lex_state = 178, .external_lex_state = 99}, + [11160] = {.lex_state = 176, .external_lex_state = 99}, + [11161] = {.lex_state = 178, .external_lex_state = 99}, + [11162] = {.lex_state = 178, .external_lex_state = 99}, + [11163] = {.lex_state = 176, .external_lex_state = 99}, + [11164] = {.lex_state = 178, .external_lex_state = 99}, + [11165] = {.lex_state = 178, .external_lex_state = 99}, + [11166] = {.lex_state = 176, .external_lex_state = 99}, + [11167] = {.lex_state = 176, .external_lex_state = 99}, + [11168] = {.lex_state = 176, .external_lex_state = 99}, + [11169] = {.lex_state = 176, .external_lex_state = 99}, + [11170] = {.lex_state = 178, .external_lex_state = 99}, + [11171] = {.lex_state = 178, .external_lex_state = 99}, + [11172] = {.lex_state = 176, .external_lex_state = 99}, + [11173] = {.lex_state = 176, .external_lex_state = 99}, + [11174] = {.lex_state = 178, .external_lex_state = 99}, + [11175] = {.lex_state = 176, .external_lex_state = 99}, + [11176] = {.lex_state = 178, .external_lex_state = 99}, + [11177] = {.lex_state = 178, .external_lex_state = 99}, + [11178] = {.lex_state = 178, .external_lex_state = 99}, + [11179] = {.lex_state = 178, .external_lex_state = 99}, + [11180] = {.lex_state = 176, .external_lex_state = 99}, + [11181] = {.lex_state = 178, .external_lex_state = 99}, + [11182] = {.lex_state = 176, .external_lex_state = 99}, + [11183] = {.lex_state = 176, .external_lex_state = 99}, + [11184] = {.lex_state = 178, .external_lex_state = 99}, + [11185] = {.lex_state = 178, .external_lex_state = 99}, + [11186] = {.lex_state = 176, .external_lex_state = 99}, + [11187] = {.lex_state = 178, .external_lex_state = 99}, + [11188] = {.lex_state = 184, .external_lex_state = 99}, + [11189] = {.lex_state = 176, .external_lex_state = 99}, + [11190] = {.lex_state = 178, .external_lex_state = 99}, + [11191] = {.lex_state = 176, .external_lex_state = 99}, + [11192] = {.lex_state = 178, .external_lex_state = 99}, + [11193] = {.lex_state = 176, .external_lex_state = 99}, + [11194] = {.lex_state = 176, .external_lex_state = 99}, + [11195] = {.lex_state = 178, .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 = 178, .external_lex_state = 99}, + [11200] = {.lex_state = 176, .external_lex_state = 99}, + [11201] = {.lex_state = 176, .external_lex_state = 99}, + [11202] = {.lex_state = 176, .external_lex_state = 99}, + [11203] = {.lex_state = 176, .external_lex_state = 99}, + [11204] = {.lex_state = 178, .external_lex_state = 99}, + [11205] = {.lex_state = 176, .external_lex_state = 99}, + [11206] = {.lex_state = 178, .external_lex_state = 99}, + [11207] = {.lex_state = 176, .external_lex_state = 99}, + [11208] = {.lex_state = 178, .external_lex_state = 99}, + [11209] = {.lex_state = 176, .external_lex_state = 99}, + [11210] = {.lex_state = 176, .external_lex_state = 99}, + [11211] = {.lex_state = 178, .external_lex_state = 99}, + [11212] = {.lex_state = 178, .external_lex_state = 99}, + [11213] = {.lex_state = 173, .external_lex_state = 99}, + [11214] = {.lex_state = 176, .external_lex_state = 99}, + [11215] = {.lex_state = 178, .external_lex_state = 99}, + [11216] = {.lex_state = 176, .external_lex_state = 99}, + [11217] = {.lex_state = 176, .external_lex_state = 99}, + [11218] = {.lex_state = 178, .external_lex_state = 99}, + [11219] = {.lex_state = 178, .external_lex_state = 99}, + [11220] = {.lex_state = 176, .external_lex_state = 99}, + [11221] = {.lex_state = 184, .external_lex_state = 99}, + [11222] = {.lex_state = 178, .external_lex_state = 99}, + [11223] = {.lex_state = 176, .external_lex_state = 99}, + [11224] = {.lex_state = 176, .external_lex_state = 99}, + [11225] = {.lex_state = 178, .external_lex_state = 99}, + [11226] = {.lex_state = 178, .external_lex_state = 99}, + [11227] = {.lex_state = 178, .external_lex_state = 99}, + [11228] = {.lex_state = 176, .external_lex_state = 99}, + [11229] = {.lex_state = 178, .external_lex_state = 99}, + [11230] = {.lex_state = 178, .external_lex_state = 99}, + [11231] = {.lex_state = 176, .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 = 178, .external_lex_state = 99}, + [11236] = {.lex_state = 176, .external_lex_state = 99}, + [11237] = {.lex_state = 176, .external_lex_state = 99}, + [11238] = {.lex_state = 176, .external_lex_state = 99}, + [11239] = {.lex_state = 176, .external_lex_state = 99}, + [11240] = {.lex_state = 176, .external_lex_state = 99}, + [11241] = {.lex_state = 176, .external_lex_state = 99}, + [11242] = {.lex_state = 176, .external_lex_state = 99}, + [11243] = {.lex_state = 176, .external_lex_state = 99}, + [11244] = {.lex_state = 176, .external_lex_state = 99}, + [11245] = {.lex_state = 70, .external_lex_state = 99}, + [11246] = {.lex_state = 178, .external_lex_state = 99}, + [11247] = {.lex_state = 176, .external_lex_state = 99}, + [11248] = {.lex_state = 178, .external_lex_state = 99}, + [11249] = {.lex_state = 176, .external_lex_state = 99}, + [11250] = {.lex_state = 176, .external_lex_state = 99}, + [11251] = {.lex_state = 173, .external_lex_state = 99}, + [11252] = {.lex_state = 176, .external_lex_state = 99}, + [11253] = {.lex_state = 178, .external_lex_state = 99}, + [11254] = {.lex_state = 176, .external_lex_state = 99}, + [11255] = {.lex_state = 178, .external_lex_state = 99}, + [11256] = {.lex_state = 178, .external_lex_state = 99}, + [11257] = {.lex_state = 178, .external_lex_state = 99}, + [11258] = {.lex_state = 178, .external_lex_state = 99}, + [11259] = {.lex_state = 178, .external_lex_state = 99}, + [11260] = {.lex_state = 178, .external_lex_state = 99}, + [11261] = {.lex_state = 176, .external_lex_state = 99}, + [11262] = {.lex_state = 178, .external_lex_state = 99}, + [11263] = {.lex_state = 176, .external_lex_state = 99}, + [11264] = {.lex_state = 176, .external_lex_state = 99}, + [11265] = {.lex_state = 178, .external_lex_state = 99}, + [11266] = {.lex_state = 178, .external_lex_state = 99}, + [11267] = {.lex_state = 178, .external_lex_state = 99}, + [11268] = {.lex_state = 178, .external_lex_state = 99}, + [11269] = {.lex_state = 176, .external_lex_state = 99}, + [11270] = {.lex_state = 178, .external_lex_state = 99}, + [11271] = {.lex_state = 176, .external_lex_state = 99}, + [11272] = {.lex_state = 176, .external_lex_state = 99}, + [11273] = {.lex_state = 178, .external_lex_state = 99}, + [11274] = {.lex_state = 176, .external_lex_state = 99}, + [11275] = {.lex_state = 176, .external_lex_state = 99}, + [11276] = {.lex_state = 176, .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 = 176, .external_lex_state = 99}, + [11281] = {.lex_state = 178, .external_lex_state = 99}, + [11282] = {.lex_state = 176, .external_lex_state = 99}, + [11283] = {.lex_state = 176, .external_lex_state = 99}, + [11284] = {.lex_state = 178, .external_lex_state = 99}, + [11285] = {.lex_state = 178, .external_lex_state = 99}, + [11286] = {.lex_state = 176, .external_lex_state = 99}, + [11287] = {.lex_state = 178, .external_lex_state = 99}, + [11288] = {.lex_state = 176, .external_lex_state = 99}, + [11289] = {.lex_state = 176, .external_lex_state = 99}, + [11290] = {.lex_state = 178, .external_lex_state = 99}, + [11291] = {.lex_state = 70, .external_lex_state = 99}, + [11292] = {.lex_state = 178, .external_lex_state = 99}, + [11293] = {.lex_state = 178, .external_lex_state = 99}, + [11294] = {.lex_state = 176, .external_lex_state = 99}, + [11295] = {.lex_state = 176, .external_lex_state = 99}, + [11296] = {.lex_state = 178, .external_lex_state = 99}, + [11297] = {.lex_state = 180, .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 = 178, .external_lex_state = 99}, + [11303] = {.lex_state = 178, .external_lex_state = 99}, + [11304] = {.lex_state = 178, .external_lex_state = 99}, + [11305] = {.lex_state = 176, .external_lex_state = 99}, + [11306] = {.lex_state = 176, .external_lex_state = 99}, + [11307] = {.lex_state = 178, .external_lex_state = 99}, + [11308] = {.lex_state = 178, .external_lex_state = 99}, + [11309] = {.lex_state = 178, .external_lex_state = 99}, + [11310] = {.lex_state = 178, .external_lex_state = 99}, + [11311] = {.lex_state = 176, .external_lex_state = 99}, + [11312] = {.lex_state = 176, .external_lex_state = 99}, + [11313] = {.lex_state = 176, .external_lex_state = 99}, + [11314] = {.lex_state = 173, .external_lex_state = 99}, + [11315] = {.lex_state = 173, .external_lex_state = 99}, + [11316] = {.lex_state = 176, .external_lex_state = 99}, + [11317] = {.lex_state = 176, .external_lex_state = 99}, + [11318] = {.lex_state = 178, .external_lex_state = 99}, + [11319] = {.lex_state = 176, .external_lex_state = 99}, + [11320] = {.lex_state = 178, .external_lex_state = 99}, + [11321] = {.lex_state = 178, .external_lex_state = 99}, + [11322] = {.lex_state = 176, .external_lex_state = 99}, + [11323] = {.lex_state = 176, .external_lex_state = 99}, + [11324] = {.lex_state = 178, .external_lex_state = 99}, + [11325] = {.lex_state = 176, .external_lex_state = 99}, + [11326] = {.lex_state = 178, .external_lex_state = 99}, + [11327] = {.lex_state = 178, .external_lex_state = 99}, + [11328] = {.lex_state = 176, .external_lex_state = 99}, + [11329] = {.lex_state = 178, .external_lex_state = 99}, + [11330] = {.lex_state = 176, .external_lex_state = 99}, + [11331] = {.lex_state = 173, .external_lex_state = 99}, + [11332] = {.lex_state = 178, .external_lex_state = 99}, + [11333] = {.lex_state = 176, .external_lex_state = 99}, + [11334] = {.lex_state = 178, .external_lex_state = 99}, + [11335] = {.lex_state = 178, .external_lex_state = 99}, + [11336] = {.lex_state = 176, .external_lex_state = 99}, + [11337] = {.lex_state = 178, .external_lex_state = 99}, + [11338] = {.lex_state = 176, .external_lex_state = 99}, + [11339] = {.lex_state = 176, .external_lex_state = 99}, + [11340] = {.lex_state = 176, .external_lex_state = 99}, + [11341] = {.lex_state = 178, .external_lex_state = 99}, + [11342] = {.lex_state = 176, .external_lex_state = 99}, + [11343] = {.lex_state = 178, .external_lex_state = 99}, + [11344] = {.lex_state = 178, .external_lex_state = 99}, + [11345] = {.lex_state = 178, .external_lex_state = 99}, + [11346] = {.lex_state = 178, .external_lex_state = 99}, + [11347] = {.lex_state = 176, .external_lex_state = 99}, + [11348] = {.lex_state = 178, .external_lex_state = 99}, + [11349] = {.lex_state = 176, .external_lex_state = 99}, + [11350] = {.lex_state = 176, .external_lex_state = 99}, + [11351] = {.lex_state = 70, .external_lex_state = 99}, + [11352] = {.lex_state = 178, .external_lex_state = 99}, + [11353] = {.lex_state = 178, .external_lex_state = 99}, + [11354] = {.lex_state = 178, .external_lex_state = 99}, + [11355] = {.lex_state = 176, .external_lex_state = 99}, + [11356] = {.lex_state = 176, .external_lex_state = 99}, + [11357] = {.lex_state = 176, .external_lex_state = 99}, + [11358] = {.lex_state = 176, .external_lex_state = 99}, + [11359] = {.lex_state = 178, .external_lex_state = 99}, + [11360] = {.lex_state = 178, .external_lex_state = 99}, + [11361] = {.lex_state = 176, .external_lex_state = 99}, + [11362] = {.lex_state = 178, .external_lex_state = 99}, + [11363] = {.lex_state = 176, .external_lex_state = 99}, + [11364] = {.lex_state = 176, .external_lex_state = 99}, + [11365] = {.lex_state = 176, .external_lex_state = 99}, + [11366] = {.lex_state = 176, .external_lex_state = 99}, + [11367] = {.lex_state = 176, .external_lex_state = 99}, + [11368] = {.lex_state = 178, .external_lex_state = 99}, + [11369] = {.lex_state = 178, .external_lex_state = 99}, + [11370] = {.lex_state = 178, .external_lex_state = 99}, + [11371] = {.lex_state = 176, .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 = 176, .external_lex_state = 99}, + [11378] = {.lex_state = 176, .external_lex_state = 99}, + [11379] = {.lex_state = 176, .external_lex_state = 99}, + [11380] = {.lex_state = 176, .external_lex_state = 99}, + [11381] = {.lex_state = 178, .external_lex_state = 99}, + [11382] = {.lex_state = 176, .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 = 176, .external_lex_state = 99}, + [11387] = {.lex_state = 176, .external_lex_state = 99}, + [11388] = {.lex_state = 178, .external_lex_state = 99}, + [11389] = {.lex_state = 176, .external_lex_state = 99}, + [11390] = {.lex_state = 173, .external_lex_state = 99}, + [11391] = {.lex_state = 178, .external_lex_state = 99}, + [11392] = {.lex_state = 176, .external_lex_state = 99}, + [11393] = {.lex_state = 176, .external_lex_state = 99}, + [11394] = {.lex_state = 178, .external_lex_state = 99}, + [11395] = {.lex_state = 176, .external_lex_state = 99}, + [11396] = {.lex_state = 176, .external_lex_state = 99}, + [11397] = {.lex_state = 176, .external_lex_state = 99}, + [11398] = {.lex_state = 176, .external_lex_state = 99}, + [11399] = {.lex_state = 178, .external_lex_state = 99}, + [11400] = {.lex_state = 176, .external_lex_state = 99}, + [11401] = {.lex_state = 178, .external_lex_state = 99}, + [11402] = {.lex_state = 176, .external_lex_state = 99}, + [11403] = {.lex_state = 178, .external_lex_state = 99}, + [11404] = {.lex_state = 178, .external_lex_state = 99}, + [11405] = {.lex_state = 178, .external_lex_state = 99}, + [11406] = {.lex_state = 176, .external_lex_state = 99}, + [11407] = {.lex_state = 176, .external_lex_state = 99}, + [11408] = {.lex_state = 176, .external_lex_state = 99}, + [11409] = {.lex_state = 178, .external_lex_state = 99}, + [11410] = {.lex_state = 176, .external_lex_state = 99}, + [11411] = {.lex_state = 176, .external_lex_state = 99}, + [11412] = {.lex_state = 178, .external_lex_state = 99}, + [11413] = {.lex_state = 176, .external_lex_state = 99}, + [11414] = {.lex_state = 176, .external_lex_state = 99}, + [11415] = {.lex_state = 70, .external_lex_state = 99}, + [11416] = {.lex_state = 178, .external_lex_state = 99}, + [11417] = {.lex_state = 176, .external_lex_state = 99}, + [11418] = {.lex_state = 178, .external_lex_state = 99}, + [11419] = {.lex_state = 176, .external_lex_state = 99}, + [11420] = {.lex_state = 176, .external_lex_state = 99}, + [11421] = {.lex_state = 173, .external_lex_state = 99}, + [11422] = {.lex_state = 178, .external_lex_state = 99}, + [11423] = {.lex_state = 178, .external_lex_state = 99}, + [11424] = {.lex_state = 176, .external_lex_state = 99}, + [11425] = {.lex_state = 178, .external_lex_state = 99}, + [11426] = {.lex_state = 178, .external_lex_state = 99}, + [11427] = {.lex_state = 176, .external_lex_state = 99}, + [11428] = {.lex_state = 178, .external_lex_state = 99}, + [11429] = {.lex_state = 176, .external_lex_state = 99}, + [11430] = {.lex_state = 178, .external_lex_state = 99}, + [11431] = {.lex_state = 176, .external_lex_state = 99}, + [11432] = {.lex_state = 178, .external_lex_state = 99}, + [11433] = {.lex_state = 178, .external_lex_state = 99}, + [11434] = {.lex_state = 176, .external_lex_state = 99}, + [11435] = {.lex_state = 178, .external_lex_state = 99}, + [11436] = {.lex_state = 178, .external_lex_state = 99}, + [11437] = {.lex_state = 176, .external_lex_state = 99}, + [11438] = {.lex_state = 178, .external_lex_state = 99}, + [11439] = {.lex_state = 176, .external_lex_state = 99}, + [11440] = {.lex_state = 176, .external_lex_state = 99}, + [11441] = {.lex_state = 176, .external_lex_state = 99}, + [11442] = {.lex_state = 176, .external_lex_state = 99}, + [11443] = {.lex_state = 176, .external_lex_state = 99}, + [11444] = {.lex_state = 176, .external_lex_state = 99}, + [11445] = {.lex_state = 176, .external_lex_state = 99}, + [11446] = {.lex_state = 178, .external_lex_state = 99}, + [11447] = {.lex_state = 178, .external_lex_state = 99}, + [11448] = {.lex_state = 176, .external_lex_state = 99}, + [11449] = {.lex_state = 173, .external_lex_state = 99}, + [11450] = {.lex_state = 178, .external_lex_state = 99}, + [11451] = {.lex_state = 178, .external_lex_state = 99}, + [11452] = {.lex_state = 178, .external_lex_state = 99}, + [11453] = {.lex_state = 178, .external_lex_state = 99}, + [11454] = {.lex_state = 176, .external_lex_state = 99}, + [11455] = {.lex_state = 176, .external_lex_state = 99}, + [11456] = {.lex_state = 178, .external_lex_state = 99}, + [11457] = {.lex_state = 176, .external_lex_state = 99}, + [11458] = {.lex_state = 173, .external_lex_state = 99}, + [11459] = {.lex_state = 173, .external_lex_state = 99}, + [11460] = {.lex_state = 178, .external_lex_state = 99}, + [11461] = {.lex_state = 176, .external_lex_state = 99}, + [11462] = {.lex_state = 176, .external_lex_state = 99}, + [11463] = {.lex_state = 178, .external_lex_state = 99}, + [11464] = {.lex_state = 178, .external_lex_state = 99}, + [11465] = {.lex_state = 176, .external_lex_state = 99}, + [11466] = {.lex_state = 178, .external_lex_state = 99}, + [11467] = {.lex_state = 178, .external_lex_state = 99}, + [11468] = {.lex_state = 176, .external_lex_state = 99}, + [11469] = {.lex_state = 173, .external_lex_state = 99}, + [11470] = {.lex_state = 178, .external_lex_state = 99}, + [11471] = {.lex_state = 176, .external_lex_state = 99}, + [11472] = {.lex_state = 176, .external_lex_state = 99}, + [11473] = {.lex_state = 176, .external_lex_state = 99}, + [11474] = {.lex_state = 176, .external_lex_state = 99}, + [11475] = {.lex_state = 173, .external_lex_state = 99}, + [11476] = {.lex_state = 176, .external_lex_state = 99}, + [11477] = {.lex_state = 176, .external_lex_state = 99}, + [11478] = {.lex_state = 176, .external_lex_state = 99}, + [11479] = {.lex_state = 176, .external_lex_state = 99}, + [11480] = {.lex_state = 178, .external_lex_state = 99}, + [11481] = {.lex_state = 176, .external_lex_state = 99}, + [11482] = {.lex_state = 178, .external_lex_state = 99}, + [11483] = {.lex_state = 178, .external_lex_state = 99}, + [11484] = {.lex_state = 176, .external_lex_state = 99}, + [11485] = {.lex_state = 176, .external_lex_state = 99}, + [11486] = {.lex_state = 178, .external_lex_state = 99}, + [11487] = {.lex_state = 178, .external_lex_state = 99}, + [11488] = {.lex_state = 176, .external_lex_state = 99}, + [11489] = {.lex_state = 178, .external_lex_state = 99}, + [11490] = {.lex_state = 176, .external_lex_state = 99}, + [11491] = {.lex_state = 176, .external_lex_state = 99}, + [11492] = {.lex_state = 176, .external_lex_state = 99}, + [11493] = {.lex_state = 176, .external_lex_state = 99}, + [11494] = {.lex_state = 178, .external_lex_state = 99}, + [11495] = {.lex_state = 176, .external_lex_state = 99}, + [11496] = {.lex_state = 178, .external_lex_state = 99}, + [11497] = {.lex_state = 178, .external_lex_state = 99}, + [11498] = {.lex_state = 176, .external_lex_state = 99}, + [11499] = {.lex_state = 176, .external_lex_state = 99}, + [11500] = {.lex_state = 176, .external_lex_state = 99}, + [11501] = {.lex_state = 176, .external_lex_state = 99}, + [11502] = {.lex_state = 178, .external_lex_state = 99}, + [11503] = {.lex_state = 178, .external_lex_state = 99}, + [11504] = {.lex_state = 176, .external_lex_state = 99}, + [11505] = {.lex_state = 176, .external_lex_state = 99}, + [11506] = {.lex_state = 176, .external_lex_state = 99}, + [11507] = {.lex_state = 176, .external_lex_state = 99}, + [11508] = {.lex_state = 178, .external_lex_state = 99}, + [11509] = {.lex_state = 178, .external_lex_state = 99}, + [11510] = {.lex_state = 176, .external_lex_state = 99}, + [11511] = {.lex_state = 176, .external_lex_state = 99}, + [11512] = {.lex_state = 173, .external_lex_state = 99}, + [11513] = {.lex_state = 178, .external_lex_state = 99}, + [11514] = {.lex_state = 176, .external_lex_state = 99}, + [11515] = {.lex_state = 178, .external_lex_state = 99}, + [11516] = {.lex_state = 178, .external_lex_state = 99}, + [11517] = {.lex_state = 176, .external_lex_state = 99}, + [11518] = {.lex_state = 176, .external_lex_state = 99}, + [11519] = {.lex_state = 176, .external_lex_state = 99}, + [11520] = {.lex_state = 176, .external_lex_state = 99}, + [11521] = {.lex_state = 176, .external_lex_state = 99}, + [11522] = {.lex_state = 176, .external_lex_state = 99}, + [11523] = {.lex_state = 178, .external_lex_state = 99}, + [11524] = {.lex_state = 176, .external_lex_state = 99}, + [11525] = {.lex_state = 176, .external_lex_state = 99}, + [11526] = {.lex_state = 176, .external_lex_state = 99}, + [11527] = {.lex_state = 178, .external_lex_state = 99}, + [11528] = {.lex_state = 176, .external_lex_state = 99}, + [11529] = {.lex_state = 176, .external_lex_state = 99}, + [11530] = {.lex_state = 178, .external_lex_state = 99}, + [11531] = {.lex_state = 176, .external_lex_state = 99}, + [11532] = {.lex_state = 176, .external_lex_state = 99}, + [11533] = {.lex_state = 178, .external_lex_state = 99}, + [11534] = {.lex_state = 176, .external_lex_state = 99}, + [11535] = {.lex_state = 176, .external_lex_state = 99}, + [11536] = {.lex_state = 178, .external_lex_state = 99}, + [11537] = {.lex_state = 176, .external_lex_state = 99}, + [11538] = {.lex_state = 176, .external_lex_state = 99}, + [11539] = {.lex_state = 178, .external_lex_state = 99}, + [11540] = {.lex_state = 176, .external_lex_state = 99}, + [11541] = {.lex_state = 176, .external_lex_state = 99}, + [11542] = {.lex_state = 176, .external_lex_state = 99}, + [11543] = {.lex_state = 176, .external_lex_state = 99}, + [11544] = {.lex_state = 178, .external_lex_state = 99}, + [11545] = {.lex_state = 176, .external_lex_state = 99}, + [11546] = {.lex_state = 178, .external_lex_state = 99}, + [11547] = {.lex_state = 176, .external_lex_state = 99}, + [11548] = {.lex_state = 176, .external_lex_state = 99}, + [11549] = {.lex_state = 178, .external_lex_state = 99}, + [11550] = {.lex_state = 176, .external_lex_state = 99}, + [11551] = {.lex_state = 178, .external_lex_state = 99}, + [11552] = {.lex_state = 176, .external_lex_state = 99}, + [11553] = {.lex_state = 178, .external_lex_state = 99}, + [11554] = {.lex_state = 178, .external_lex_state = 99}, + [11555] = {.lex_state = 176, .external_lex_state = 99}, + [11556] = {.lex_state = 178, .external_lex_state = 99}, + [11557] = {.lex_state = 178, .external_lex_state = 99}, + [11558] = {.lex_state = 173, .external_lex_state = 99}, + [11559] = {.lex_state = 176, .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 = 176, .external_lex_state = 99}, + [11564] = {.lex_state = 178, .external_lex_state = 99}, + [11565] = {.lex_state = 176, .external_lex_state = 99}, + [11566] = {.lex_state = 176, .external_lex_state = 99}, + [11567] = {.lex_state = 176, .external_lex_state = 99}, + [11568] = {.lex_state = 178, .external_lex_state = 99}, + [11569] = {.lex_state = 178, .external_lex_state = 99}, + [11570] = {.lex_state = 178, .external_lex_state = 99}, + [11571] = {.lex_state = 176, .external_lex_state = 99}, + [11572] = {.lex_state = 176, .external_lex_state = 99}, + [11573] = {.lex_state = 176, .external_lex_state = 99}, + [11574] = {.lex_state = 176, .external_lex_state = 99}, + [11575] = {.lex_state = 178, .external_lex_state = 99}, + [11576] = {.lex_state = 176, .external_lex_state = 99}, + [11577] = {.lex_state = 178, .external_lex_state = 99}, + [11578] = {.lex_state = 178, .external_lex_state = 99}, + [11579] = {.lex_state = 176, .external_lex_state = 99}, + [11580] = {.lex_state = 176, .external_lex_state = 99}, + [11581] = {.lex_state = 176, .external_lex_state = 99}, + [11582] = {.lex_state = 178, .external_lex_state = 99}, + [11583] = {.lex_state = 176, .external_lex_state = 99}, + [11584] = {.lex_state = 176, .external_lex_state = 99}, + [11585] = {.lex_state = 176, .external_lex_state = 99}, + [11586] = {.lex_state = 176, .external_lex_state = 99}, + [11587] = {.lex_state = 176, .external_lex_state = 99}, + [11588] = {.lex_state = 176, .external_lex_state = 99}, + [11589] = {.lex_state = 176, .external_lex_state = 99}, + [11590] = {.lex_state = 176, .external_lex_state = 99}, + [11591] = {.lex_state = 178, .external_lex_state = 99}, + [11592] = {.lex_state = 176, .external_lex_state = 99}, + [11593] = {.lex_state = 176, .external_lex_state = 99}, + [11594] = {.lex_state = 176, .external_lex_state = 99}, + [11595] = {.lex_state = 176, .external_lex_state = 99}, + [11596] = {.lex_state = 176, .external_lex_state = 99}, + [11597] = {.lex_state = 178, .external_lex_state = 99}, + [11598] = {.lex_state = 178, .external_lex_state = 99}, + [11599] = {.lex_state = 176, .external_lex_state = 99}, + [11600] = {.lex_state = 178, .external_lex_state = 99}, + [11601] = {.lex_state = 176, .external_lex_state = 99}, + [11602] = {.lex_state = 178, .external_lex_state = 99}, + [11603] = {.lex_state = 176, .external_lex_state = 99}, + [11604] = {.lex_state = 176, .external_lex_state = 99}, + [11605] = {.lex_state = 178, .external_lex_state = 99}, + [11606] = {.lex_state = 178, .external_lex_state = 99}, + [11607] = {.lex_state = 176, .external_lex_state = 99}, + [11608] = {.lex_state = 178, .external_lex_state = 99}, + [11609] = {.lex_state = 176, .external_lex_state = 99}, + [11610] = {.lex_state = 176, .external_lex_state = 99}, + [11611] = {.lex_state = 176, .external_lex_state = 99}, + [11612] = {.lex_state = 176, .external_lex_state = 99}, + [11613] = {.lex_state = 176, .external_lex_state = 99}, + [11614] = {.lex_state = 176, .external_lex_state = 99}, + [11615] = {.lex_state = 178, .external_lex_state = 99}, + [11616] = {.lex_state = 176, .external_lex_state = 99}, + [11617] = {.lex_state = 176, .external_lex_state = 99}, + [11618] = {.lex_state = 176, .external_lex_state = 99}, + [11619] = {.lex_state = 176, .external_lex_state = 99}, + [11620] = {.lex_state = 176, .external_lex_state = 99}, + [11621] = {.lex_state = 70, .external_lex_state = 99}, + [11622] = {.lex_state = 176, .external_lex_state = 99}, + [11623] = {.lex_state = 173, .external_lex_state = 99}, + [11624] = {.lex_state = 178, .external_lex_state = 99}, + [11625] = {.lex_state = 176, .external_lex_state = 99}, + [11626] = {.lex_state = 178, .external_lex_state = 99}, + [11627] = {.lex_state = 178, .external_lex_state = 99}, + [11628] = {.lex_state = 176, .external_lex_state = 99}, + [11629] = {.lex_state = 176, .external_lex_state = 99}, + [11630] = {.lex_state = 178, .external_lex_state = 99}, + [11631] = {.lex_state = 176, .external_lex_state = 99}, + [11632] = {.lex_state = 178, .external_lex_state = 99}, + [11633] = {.lex_state = 176, .external_lex_state = 99}, + [11634] = {.lex_state = 176, .external_lex_state = 99}, + [11635] = {.lex_state = 176, .external_lex_state = 99}, + [11636] = {.lex_state = 176, .external_lex_state = 99}, + [11637] = {.lex_state = 176, .external_lex_state = 99}, + [11638] = {.lex_state = 176, .external_lex_state = 99}, + [11639] = {.lex_state = 178, .external_lex_state = 99}, + [11640] = {.lex_state = 176, .external_lex_state = 99}, + [11641] = {.lex_state = 176, .external_lex_state = 99}, + [11642] = {.lex_state = 178, .external_lex_state = 99}, + [11643] = {.lex_state = 178, .external_lex_state = 99}, + [11644] = {.lex_state = 178, .external_lex_state = 99}, + [11645] = {.lex_state = 176, .external_lex_state = 99}, + [11646] = {.lex_state = 176, .external_lex_state = 99}, + [11647] = {.lex_state = 176, .external_lex_state = 99}, + [11648] = {.lex_state = 176, .external_lex_state = 99}, + [11649] = {.lex_state = 176, .external_lex_state = 99}, + [11650] = {.lex_state = 176, .external_lex_state = 99}, + [11651] = {.lex_state = 176, .external_lex_state = 99}, + [11652] = {.lex_state = 176, .external_lex_state = 99}, + [11653] = {.lex_state = 176, .external_lex_state = 99}, + [11654] = {.lex_state = 176, .external_lex_state = 99}, + [11655] = {.lex_state = 176, .external_lex_state = 99}, + [11656] = {.lex_state = 176, .external_lex_state = 99}, + [11657] = {.lex_state = 176, .external_lex_state = 99}, + [11658] = {.lex_state = 176, .external_lex_state = 99}, + [11659] = {.lex_state = 176, .external_lex_state = 99}, + [11660] = {.lex_state = 176, .external_lex_state = 99}, + [11661] = {.lex_state = 176, .external_lex_state = 99}, + [11662] = {.lex_state = 178, .external_lex_state = 99}, + [11663] = {.lex_state = 176, .external_lex_state = 99}, + [11664] = {.lex_state = 176, .external_lex_state = 99}, + [11665] = {.lex_state = 176, .external_lex_state = 99}, + [11666] = {.lex_state = 178, .external_lex_state = 99}, + [11667] = {.lex_state = 176, .external_lex_state = 99}, + [11668] = {.lex_state = 176, .external_lex_state = 99}, + [11669] = {.lex_state = 176, .external_lex_state = 99}, + [11670] = {.lex_state = 176, .external_lex_state = 99}, + [11671] = {.lex_state = 176, .external_lex_state = 99}, + [11672] = {.lex_state = 176, .external_lex_state = 99}, + [11673] = {.lex_state = 178, .external_lex_state = 99}, + [11674] = {.lex_state = 176, .external_lex_state = 99}, + [11675] = {.lex_state = 176, .external_lex_state = 99}, + [11676] = {.lex_state = 176, .external_lex_state = 99}, + [11677] = {.lex_state = 176, .external_lex_state = 99}, + [11678] = {.lex_state = 176, .external_lex_state = 99}, + [11679] = {.lex_state = 178, .external_lex_state = 99}, + [11680] = {.lex_state = 176, .external_lex_state = 99}, + [11681] = {.lex_state = 176, .external_lex_state = 99}, + [11682] = {.lex_state = 176, .external_lex_state = 99}, + [11683] = {.lex_state = 176, .external_lex_state = 99}, + [11684] = {.lex_state = 176, .external_lex_state = 99}, + [11685] = {.lex_state = 176, .external_lex_state = 99}, + [11686] = {.lex_state = 178, .external_lex_state = 99}, + [11687] = {.lex_state = 176, .external_lex_state = 99}, + [11688] = {.lex_state = 176, .external_lex_state = 99}, + [11689] = {.lex_state = 176, .external_lex_state = 99}, + [11690] = {.lex_state = 176, .external_lex_state = 99}, + [11691] = {.lex_state = 176, .external_lex_state = 99}, + [11692] = {.lex_state = 176, .external_lex_state = 99}, + [11693] = {.lex_state = 70, .external_lex_state = 99}, + [11694] = {.lex_state = 178, .external_lex_state = 99}, + [11695] = {.lex_state = 176, .external_lex_state = 99}, + [11696] = {.lex_state = 176, .external_lex_state = 99}, + [11697] = {.lex_state = 178, .external_lex_state = 99}, + [11698] = {.lex_state = 176, .external_lex_state = 99}, + [11699] = {.lex_state = 178, .external_lex_state = 99}, + [11700] = {.lex_state = 178, .external_lex_state = 99}, + [11701] = {.lex_state = 176, .external_lex_state = 99}, + [11702] = {.lex_state = 178, .external_lex_state = 99}, + [11703] = {.lex_state = 178, .external_lex_state = 99}, + [11704] = {.lex_state = 178, .external_lex_state = 99}, + [11705] = {.lex_state = 176, .external_lex_state = 99}, + [11706] = {.lex_state = 176, .external_lex_state = 99}, + [11707] = {.lex_state = 178, .external_lex_state = 99}, + [11708] = {.lex_state = 178, .external_lex_state = 99}, + [11709] = {.lex_state = 178, .external_lex_state = 99}, + [11710] = {.lex_state = 178, .external_lex_state = 99}, + [11711] = {.lex_state = 176, .external_lex_state = 99}, + [11712] = {.lex_state = 178, .external_lex_state = 99}, + [11713] = {.lex_state = 178, .external_lex_state = 99}, + [11714] = {.lex_state = 176, .external_lex_state = 99}, + [11715] = {.lex_state = 178, .external_lex_state = 99}, + [11716] = {.lex_state = 176, .external_lex_state = 99}, + [11717] = {.lex_state = 178, .external_lex_state = 99}, + [11718] = {.lex_state = 178, .external_lex_state = 99}, + [11719] = {.lex_state = 178, .external_lex_state = 99}, + [11720] = {.lex_state = 178, .external_lex_state = 99}, + [11721] = {.lex_state = 176, .external_lex_state = 99}, + [11722] = {.lex_state = 176, .external_lex_state = 99}, + [11723] = {.lex_state = 176, .external_lex_state = 99}, + [11724] = {.lex_state = 178, .external_lex_state = 99}, + [11725] = {.lex_state = 176, .external_lex_state = 99}, + [11726] = {.lex_state = 178, .external_lex_state = 99}, + [11727] = {.lex_state = 178, .external_lex_state = 99}, + [11728] = {.lex_state = 176, .external_lex_state = 99}, + [11729] = {.lex_state = 178, .external_lex_state = 99}, + [11730] = {.lex_state = 176, .external_lex_state = 99}, + [11731] = {.lex_state = 178, .external_lex_state = 99}, + [11732] = {.lex_state = 178, .external_lex_state = 99}, + [11733] = {.lex_state = 176, .external_lex_state = 99}, + [11734] = {.lex_state = 178, .external_lex_state = 99}, + [11735] = {.lex_state = 176, .external_lex_state = 99}, + [11736] = {.lex_state = 176, .external_lex_state = 99}, + [11737] = {.lex_state = 178, .external_lex_state = 99}, + [11738] = {.lex_state = 176, .external_lex_state = 99}, + [11739] = {.lex_state = 176, .external_lex_state = 99}, + [11740] = {.lex_state = 178, .external_lex_state = 99}, + [11741] = {.lex_state = 178, .external_lex_state = 99}, + [11742] = {.lex_state = 176, .external_lex_state = 99}, + [11743] = {.lex_state = 178, .external_lex_state = 99}, + [11744] = {.lex_state = 178, .external_lex_state = 99}, + [11745] = {.lex_state = 176, .external_lex_state = 99}, + [11746] = {.lex_state = 178, .external_lex_state = 99}, + [11747] = {.lex_state = 176, .external_lex_state = 99}, + [11748] = {.lex_state = 176, .external_lex_state = 99}, + [11749] = {.lex_state = 176, .external_lex_state = 99}, + [11750] = {.lex_state = 176, .external_lex_state = 99}, + [11751] = {.lex_state = 176, .external_lex_state = 99}, + [11752] = {.lex_state = 176, .external_lex_state = 99}, + [11753] = {.lex_state = 178, .external_lex_state = 99}, + [11754] = {.lex_state = 176, .external_lex_state = 99}, + [11755] = {.lex_state = 176, .external_lex_state = 99}, + [11756] = {.lex_state = 173, .external_lex_state = 99}, + [11757] = {.lex_state = 176, .external_lex_state = 99}, + [11758] = {.lex_state = 178, .external_lex_state = 99}, + [11759] = {.lex_state = 176, .external_lex_state = 99}, + [11760] = {.lex_state = 176, .external_lex_state = 99}, + [11761] = {.lex_state = 178, .external_lex_state = 99}, + [11762] = {.lex_state = 178, .external_lex_state = 99}, + [11763] = {.lex_state = 176, .external_lex_state = 99}, + [11764] = {.lex_state = 173, .external_lex_state = 99}, + [11765] = {.lex_state = 176, .external_lex_state = 99}, + [11766] = {.lex_state = 176, .external_lex_state = 99}, + [11767] = {.lex_state = 70, .external_lex_state = 99}, + [11768] = {.lex_state = 178, .external_lex_state = 99}, + [11769] = {.lex_state = 176, .external_lex_state = 99}, + [11770] = {.lex_state = 178, .external_lex_state = 99}, + [11771] = {.lex_state = 178, .external_lex_state = 99}, + [11772] = {.lex_state = 176, .external_lex_state = 99}, + [11773] = {.lex_state = 178, .external_lex_state = 99}, + [11774] = {.lex_state = 176, .external_lex_state = 99}, + [11775] = {.lex_state = 176, .external_lex_state = 99}, + [11776] = {.lex_state = 176, .external_lex_state = 99}, + [11777] = {.lex_state = 178, .external_lex_state = 99}, + [11778] = {.lex_state = 176, .external_lex_state = 99}, + [11779] = {.lex_state = 176, .external_lex_state = 99}, + [11780] = {.lex_state = 176, .external_lex_state = 99}, + [11781] = {.lex_state = 176, .external_lex_state = 99}, + [11782] = {.lex_state = 178, .external_lex_state = 99}, + [11783] = {.lex_state = 176, .external_lex_state = 99}, + [11784] = {.lex_state = 176, .external_lex_state = 99}, + [11785] = {.lex_state = 184, .external_lex_state = 99}, + [11786] = {.lex_state = 176, .external_lex_state = 99}, + [11787] = {.lex_state = 176, .external_lex_state = 99}, + [11788] = {.lex_state = 178, .external_lex_state = 99}, + [11789] = {.lex_state = 70, .external_lex_state = 99}, + [11790] = {.lex_state = 178, .external_lex_state = 99}, + [11791] = {.lex_state = 176, .external_lex_state = 99}, + [11792] = {.lex_state = 176, .external_lex_state = 99}, + [11793] = {.lex_state = 178, .external_lex_state = 99}, + [11794] = {.lex_state = 178, .external_lex_state = 99}, + [11795] = {.lex_state = 173, .external_lex_state = 99}, + [11796] = {.lex_state = 178, .external_lex_state = 99}, + [11797] = {.lex_state = 178, .external_lex_state = 99}, + [11798] = {.lex_state = 178, .external_lex_state = 99}, + [11799] = {.lex_state = 176, .external_lex_state = 99}, + [11800] = {.lex_state = 176, .external_lex_state = 99}, + [11801] = {.lex_state = 176, .external_lex_state = 99}, + [11802] = {.lex_state = 178, .external_lex_state = 99}, + [11803] = {.lex_state = 176, .external_lex_state = 99}, + [11804] = {.lex_state = 176, .external_lex_state = 99}, + [11805] = {.lex_state = 178, .external_lex_state = 99}, + [11806] = {.lex_state = 176, .external_lex_state = 99}, + [11807] = {.lex_state = 176, .external_lex_state = 99}, + [11808] = {.lex_state = 176, .external_lex_state = 99}, + [11809] = {.lex_state = 178, .external_lex_state = 99}, + [11810] = {.lex_state = 178, .external_lex_state = 99}, + [11811] = {.lex_state = 178, .external_lex_state = 99}, + [11812] = {.lex_state = 178, .external_lex_state = 99}, + [11813] = {.lex_state = 178, .external_lex_state = 99}, + [11814] = {.lex_state = 178, .external_lex_state = 99}, + [11815] = {.lex_state = 70, .external_lex_state = 99}, + [11816] = {.lex_state = 178, .external_lex_state = 99}, + [11817] = {.lex_state = 178, .external_lex_state = 99}, + [11818] = {.lex_state = 178, .external_lex_state = 99}, + [11819] = {.lex_state = 176, .external_lex_state = 99}, + [11820] = {.lex_state = 176, .external_lex_state = 99}, + [11821] = {.lex_state = 178, .external_lex_state = 99}, + [11822] = {.lex_state = 176, .external_lex_state = 99}, + [11823] = {.lex_state = 176, .external_lex_state = 99}, + [11824] = {.lex_state = 178, .external_lex_state = 99}, + [11825] = {.lex_state = 178, .external_lex_state = 99}, + [11826] = {.lex_state = 178, .external_lex_state = 99}, + [11827] = {.lex_state = 176, .external_lex_state = 99}, + [11828] = {.lex_state = 176, .external_lex_state = 99}, + [11829] = {.lex_state = 176, .external_lex_state = 99}, + [11830] = {.lex_state = 176, .external_lex_state = 99}, + [11831] = {.lex_state = 176, .external_lex_state = 99}, + [11832] = {.lex_state = 178, .external_lex_state = 99}, + [11833] = {.lex_state = 176, .external_lex_state = 99}, + [11834] = {.lex_state = 178, .external_lex_state = 99}, + [11835] = {.lex_state = 178, .external_lex_state = 99}, + [11836] = {.lex_state = 176, .external_lex_state = 99}, + [11837] = {.lex_state = 176, .external_lex_state = 99}, + [11838] = {.lex_state = 176, .external_lex_state = 99}, + [11839] = {.lex_state = 178, .external_lex_state = 99}, + [11840] = {.lex_state = 178, .external_lex_state = 99}, + [11841] = {.lex_state = 176, .external_lex_state = 99}, + [11842] = {.lex_state = 176, .external_lex_state = 99}, + [11843] = {.lex_state = 178, .external_lex_state = 99}, + [11844] = {.lex_state = 178, .external_lex_state = 99}, + [11845] = {.lex_state = 178, .external_lex_state = 99}, + [11846] = {.lex_state = 176, .external_lex_state = 99}, + [11847] = {.lex_state = 178, .external_lex_state = 99}, + [11848] = {.lex_state = 176, .external_lex_state = 99}, + [11849] = {.lex_state = 176, .external_lex_state = 99}, + [11850] = {.lex_state = 176, .external_lex_state = 99}, + [11851] = {.lex_state = 178, .external_lex_state = 99}, + [11852] = {.lex_state = 176, .external_lex_state = 99}, + [11853] = {.lex_state = 178, .external_lex_state = 99}, + [11854] = {.lex_state = 178, .external_lex_state = 99}, + [11855] = {.lex_state = 176, .external_lex_state = 99}, + [11856] = {.lex_state = 178, .external_lex_state = 99}, + [11857] = {.lex_state = 178, .external_lex_state = 99}, + [11858] = {.lex_state = 176, .external_lex_state = 99}, + [11859] = {.lex_state = 178, .external_lex_state = 99}, + [11860] = {.lex_state = 176, .external_lex_state = 99}, + [11861] = {.lex_state = 176, .external_lex_state = 99}, + [11862] = {.lex_state = 178, .external_lex_state = 99}, + [11863] = {.lex_state = 178, .external_lex_state = 99}, + [11864] = {.lex_state = 178, .external_lex_state = 99}, + [11865] = {.lex_state = 178, .external_lex_state = 99}, + [11866] = {.lex_state = 178, .external_lex_state = 99}, + [11867] = {.lex_state = 176, .external_lex_state = 99}, + [11868] = {.lex_state = 173, .external_lex_state = 99}, + [11869] = {.lex_state = 178, .external_lex_state = 99}, + [11870] = {.lex_state = 176, .external_lex_state = 99}, + [11871] = {.lex_state = 176, .external_lex_state = 99}, + [11872] = {.lex_state = 178, .external_lex_state = 99}, + [11873] = {.lex_state = 178, .external_lex_state = 99}, + [11874] = {.lex_state = 176, .external_lex_state = 99}, + [11875] = {.lex_state = 176, .external_lex_state = 99}, + [11876] = {.lex_state = 176, .external_lex_state = 99}, + [11877] = {.lex_state = 178, .external_lex_state = 99}, + [11878] = {.lex_state = 178, .external_lex_state = 99}, + [11879] = {.lex_state = 178, .external_lex_state = 99}, + [11880] = {.lex_state = 176, .external_lex_state = 99}, + [11881] = {.lex_state = 176, .external_lex_state = 99}, + [11882] = {.lex_state = 178, .external_lex_state = 99}, + [11883] = {.lex_state = 178, .external_lex_state = 99}, + [11884] = {.lex_state = 173, .external_lex_state = 99}, + [11885] = {.lex_state = 178, .external_lex_state = 99}, + [11886] = {.lex_state = 178, .external_lex_state = 99}, + [11887] = {.lex_state = 70, .external_lex_state = 99}, + [11888] = {.lex_state = 176, .external_lex_state = 99}, + [11889] = {.lex_state = 176, .external_lex_state = 99}, + [11890] = {.lex_state = 178, .external_lex_state = 99}, + [11891] = {.lex_state = 176, .external_lex_state = 99}, + [11892] = {.lex_state = 178, .external_lex_state = 99}, + [11893] = {.lex_state = 178, .external_lex_state = 99}, + [11894] = {.lex_state = 178, .external_lex_state = 99}, + [11895] = {.lex_state = 178, .external_lex_state = 99}, + [11896] = {.lex_state = 178, .external_lex_state = 99}, + [11897] = {.lex_state = 176, .external_lex_state = 99}, + [11898] = {.lex_state = 178, .external_lex_state = 99}, + [11899] = {.lex_state = 176, .external_lex_state = 99}, + [11900] = {.lex_state = 176, .external_lex_state = 99}, + [11901] = {.lex_state = 178, .external_lex_state = 99}, + [11902] = {.lex_state = 176, .external_lex_state = 99}, + [11903] = {.lex_state = 178, .external_lex_state = 99}, + [11904] = {.lex_state = 176, .external_lex_state = 99}, + [11905] = {.lex_state = 178, .external_lex_state = 99}, + [11906] = {.lex_state = 176, .external_lex_state = 99}, + [11907] = {.lex_state = 178, .external_lex_state = 99}, + [11908] = {.lex_state = 178, .external_lex_state = 99}, + [11909] = {.lex_state = 176, .external_lex_state = 99}, + [11910] = {.lex_state = 178, .external_lex_state = 99}, + [11911] = {.lex_state = 176, .external_lex_state = 99}, + [11912] = {.lex_state = 176, .external_lex_state = 99}, + [11913] = {.lex_state = 178, .external_lex_state = 99}, + [11914] = {.lex_state = 176, .external_lex_state = 99}, + [11915] = {.lex_state = 176, .external_lex_state = 99}, + [11916] = {.lex_state = 176, .external_lex_state = 99}, + [11917] = {.lex_state = 178, .external_lex_state = 99}, + [11918] = {.lex_state = 178, .external_lex_state = 99}, + [11919] = {.lex_state = 176, .external_lex_state = 99}, + [11920] = {.lex_state = 176, .external_lex_state = 99}, + [11921] = {.lex_state = 176, .external_lex_state = 99}, + [11922] = {.lex_state = 176, .external_lex_state = 99}, + [11923] = {.lex_state = 176, .external_lex_state = 99}, + [11924] = {.lex_state = 176, .external_lex_state = 99}, + [11925] = {.lex_state = 176, .external_lex_state = 99}, + [11926] = {.lex_state = 176, .external_lex_state = 99}, + [11927] = {.lex_state = 178, .external_lex_state = 99}, + [11928] = {.lex_state = 178, .external_lex_state = 99}, + [11929] = {.lex_state = 176, .external_lex_state = 99}, + [11930] = {.lex_state = 178, .external_lex_state = 99}, + [11931] = {.lex_state = 176, .external_lex_state = 99}, + [11932] = {.lex_state = 178, .external_lex_state = 99}, + [11933] = {.lex_state = 176, .external_lex_state = 99}, + [11934] = {.lex_state = 178, .external_lex_state = 99}, + [11935] = {.lex_state = 178, .external_lex_state = 99}, + [11936] = {.lex_state = 178, .external_lex_state = 99}, + [11937] = {.lex_state = 178, .external_lex_state = 99}, + [11938] = {.lex_state = 178, .external_lex_state = 99}, + [11939] = {.lex_state = 176, .external_lex_state = 99}, + [11940] = {.lex_state = 178, .external_lex_state = 99}, + [11941] = {.lex_state = 178, .external_lex_state = 99}, + [11942] = {.lex_state = 176, .external_lex_state = 99}, + [11943] = {.lex_state = 176, .external_lex_state = 99}, + [11944] = {.lex_state = 178, .external_lex_state = 99}, + [11945] = {.lex_state = 176, .external_lex_state = 99}, + [11946] = {.lex_state = 178, .external_lex_state = 99}, + [11947] = {.lex_state = 178, .external_lex_state = 99}, + [11948] = {.lex_state = 178, .external_lex_state = 99}, + [11949] = {.lex_state = 178, .external_lex_state = 99}, + [11950] = {.lex_state = 178, .external_lex_state = 99}, + [11951] = {.lex_state = 176, .external_lex_state = 99}, + [11952] = {.lex_state = 176, .external_lex_state = 99}, + [11953] = {.lex_state = 176, .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 = 176, .external_lex_state = 99}, + [11958] = {.lex_state = 178, .external_lex_state = 99}, + [11959] = {.lex_state = 178, .external_lex_state = 99}, + [11960] = {.lex_state = 178, .external_lex_state = 99}, + [11961] = {.lex_state = 178, .external_lex_state = 99}, + [11962] = {.lex_state = 178, .external_lex_state = 99}, + [11963] = {.lex_state = 176, .external_lex_state = 99}, + [11964] = {.lex_state = 178, .external_lex_state = 99}, + [11965] = {.lex_state = 178, .external_lex_state = 99}, + [11966] = {.lex_state = 178, .external_lex_state = 99}, + [11967] = {.lex_state = 176, .external_lex_state = 99}, + [11968] = {.lex_state = 178, .external_lex_state = 99}, + [11969] = {.lex_state = 178, .external_lex_state = 99}, + [11970] = {.lex_state = 176, .external_lex_state = 99}, + [11971] = {.lex_state = 178, .external_lex_state = 99}, + [11972] = {.lex_state = 178, .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 = 178, .external_lex_state = 99}, + [11977] = {.lex_state = 178, .external_lex_state = 99}, + [11978] = {.lex_state = 178, .external_lex_state = 99}, + [11979] = {.lex_state = 178, .external_lex_state = 99}, + [11980] = {.lex_state = 178, .external_lex_state = 99}, + [11981] = {.lex_state = 176, .external_lex_state = 99}, + [11982] = {.lex_state = 178, .external_lex_state = 99}, + [11983] = {.lex_state = 178, .external_lex_state = 99}, + [11984] = {.lex_state = 178, .external_lex_state = 99}, + [11985] = {.lex_state = 178, .external_lex_state = 99}, + [11986] = {.lex_state = 176, .external_lex_state = 99}, + [11987] = {.lex_state = 176, .external_lex_state = 99}, + [11988] = {.lex_state = 178, .external_lex_state = 99}, + [11989] = {.lex_state = 178, .external_lex_state = 99}, + [11990] = {.lex_state = 178, .external_lex_state = 99}, + [11991] = {.lex_state = 178, .external_lex_state = 99}, + [11992] = {.lex_state = 70, .external_lex_state = 99}, + [11993] = {.lex_state = 178, .external_lex_state = 99}, + [11994] = {.lex_state = 176, .external_lex_state = 99}, + [11995] = {.lex_state = 176, .external_lex_state = 99}, + [11996] = {.lex_state = 176, .external_lex_state = 99}, + [11997] = {.lex_state = 178, .external_lex_state = 99}, + [11998] = {.lex_state = 173, .external_lex_state = 99}, + [11999] = {.lex_state = 178, .external_lex_state = 99}, + [12000] = {.lex_state = 178, .external_lex_state = 99}, + [12001] = {.lex_state = 178, .external_lex_state = 99}, + [12002] = {.lex_state = 178, .external_lex_state = 99}, + [12003] = {.lex_state = 176, .external_lex_state = 99}, + [12004] = {.lex_state = 178, .external_lex_state = 99}, + [12005] = {.lex_state = 178, .external_lex_state = 99}, + [12006] = {.lex_state = 178, .external_lex_state = 99}, + [12007] = {.lex_state = 178, .external_lex_state = 99}, + [12008] = {.lex_state = 178, .external_lex_state = 99}, + [12009] = {.lex_state = 178, .external_lex_state = 99}, + [12010] = {.lex_state = 176, .external_lex_state = 99}, + [12011] = {.lex_state = 178, .external_lex_state = 99}, + [12012] = {.lex_state = 178, .external_lex_state = 99}, + [12013] = {.lex_state = 178, .external_lex_state = 99}, + [12014] = {.lex_state = 178, .external_lex_state = 99}, + [12015] = {.lex_state = 178, .external_lex_state = 99}, + [12016] = {.lex_state = 178, .external_lex_state = 99}, + [12017] = {.lex_state = 176, .external_lex_state = 99}, + [12018] = {.lex_state = 176, .external_lex_state = 99}, + [12019] = {.lex_state = 178, .external_lex_state = 99}, + [12020] = {.lex_state = 176, .external_lex_state = 99}, + [12021] = {.lex_state = 176, .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 = 176, .external_lex_state = 99}, + [12026] = {.lex_state = 178, .external_lex_state = 99}, + [12027] = {.lex_state = 178, .external_lex_state = 99}, + [12028] = {.lex_state = 176, .external_lex_state = 99}, + [12029] = {.lex_state = 178, .external_lex_state = 99}, + [12030] = {.lex_state = 176, .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 = 176, .external_lex_state = 99}, + [12035] = {.lex_state = 176, .external_lex_state = 99}, + [12036] = {.lex_state = 178, .external_lex_state = 99}, + [12037] = {.lex_state = 178, .external_lex_state = 99}, + [12038] = {.lex_state = 184, .external_lex_state = 99}, + [12039] = {.lex_state = 178, .external_lex_state = 99}, + [12040] = {.lex_state = 178, .external_lex_state = 99}, + [12041] = {.lex_state = 176, .external_lex_state = 99}, + [12042] = {.lex_state = 178, .external_lex_state = 99}, + [12043] = {.lex_state = 70, .external_lex_state = 99}, + [12044] = {.lex_state = 178, .external_lex_state = 99}, + [12045] = {.lex_state = 176, .external_lex_state = 99}, + [12046] = {.lex_state = 178, .external_lex_state = 99}, + [12047] = {.lex_state = 178, .external_lex_state = 99}, + [12048] = {.lex_state = 178, .external_lex_state = 99}, + [12049] = {.lex_state = 178, .external_lex_state = 99}, + [12050] = {.lex_state = 176, .external_lex_state = 99}, + [12051] = {.lex_state = 176, .external_lex_state = 99}, + [12052] = {.lex_state = 178, .external_lex_state = 99}, + [12053] = {.lex_state = 178, .external_lex_state = 99}, + [12054] = {.lex_state = 178, .external_lex_state = 99}, + [12055] = {.lex_state = 178, .external_lex_state = 99}, + [12056] = {.lex_state = 178, .external_lex_state = 99}, + [12057] = {.lex_state = 178, .external_lex_state = 99}, + [12058] = {.lex_state = 178, .external_lex_state = 99}, + [12059] = {.lex_state = 178, .external_lex_state = 99}, + [12060] = {.lex_state = 178, .external_lex_state = 99}, + [12061] = {.lex_state = 178, .external_lex_state = 99}, + [12062] = {.lex_state = 178, .external_lex_state = 99}, + [12063] = {.lex_state = 176, .external_lex_state = 99}, + [12064] = {.lex_state = 178, .external_lex_state = 99}, + [12065] = {.lex_state = 178, .external_lex_state = 99}, + [12066] = {.lex_state = 178, .external_lex_state = 99}, + [12067] = {.lex_state = 176, .external_lex_state = 99}, + [12068] = {.lex_state = 176, .external_lex_state = 99}, + [12069] = {.lex_state = 176, .external_lex_state = 99}, + [12070] = {.lex_state = 178, .external_lex_state = 99}, + [12071] = {.lex_state = 178, .external_lex_state = 99}, + [12072] = {.lex_state = 178, .external_lex_state = 99}, + [12073] = {.lex_state = 178, .external_lex_state = 99}, + [12074] = {.lex_state = 176, .external_lex_state = 99}, + [12075] = {.lex_state = 178, .external_lex_state = 99}, + [12076] = {.lex_state = 173, .external_lex_state = 99}, + [12077] = {.lex_state = 178, .external_lex_state = 99}, + [12078] = {.lex_state = 178, .external_lex_state = 99}, + [12079] = {.lex_state = 178, .external_lex_state = 99}, + [12080] = {.lex_state = 178, .external_lex_state = 99}, + [12081] = {.lex_state = 178, .external_lex_state = 99}, + [12082] = {.lex_state = 178, .external_lex_state = 99}, + [12083] = {.lex_state = 178, .external_lex_state = 99}, + [12084] = {.lex_state = 178, .external_lex_state = 99}, + [12085] = {.lex_state = 178, .external_lex_state = 99}, + [12086] = {.lex_state = 178, .external_lex_state = 99}, + [12087] = {.lex_state = 176, .external_lex_state = 99}, + [12088] = {.lex_state = 178, .external_lex_state = 99}, + [12089] = {.lex_state = 178, .external_lex_state = 99}, + [12090] = {.lex_state = 176, .external_lex_state = 99}, + [12091] = {.lex_state = 178, .external_lex_state = 99}, + [12092] = {.lex_state = 178, .external_lex_state = 99}, + [12093] = {.lex_state = 178, .external_lex_state = 99}, + [12094] = {.lex_state = 178, .external_lex_state = 99}, + [12095] = {.lex_state = 178, .external_lex_state = 99}, + [12096] = {.lex_state = 176, .external_lex_state = 99}, + [12097] = {.lex_state = 176, .external_lex_state = 99}, + [12098] = {.lex_state = 176, .external_lex_state = 99}, + [12099] = {.lex_state = 178, .external_lex_state = 99}, + [12100] = {.lex_state = 178, .external_lex_state = 99}, + [12101] = {.lex_state = 176, .external_lex_state = 99}, + [12102] = {.lex_state = 176, .external_lex_state = 99}, + [12103] = {.lex_state = 176, .external_lex_state = 99}, + [12104] = {.lex_state = 178, .external_lex_state = 99}, + [12105] = {.lex_state = 178, .external_lex_state = 99}, + [12106] = {.lex_state = 178, .external_lex_state = 99}, + [12107] = {.lex_state = 178, .external_lex_state = 99}, + [12108] = {.lex_state = 178, .external_lex_state = 99}, + [12109] = {.lex_state = 178, .external_lex_state = 99}, + [12110] = {.lex_state = 178, .external_lex_state = 99}, + [12111] = {.lex_state = 178, .external_lex_state = 99}, + [12112] = {.lex_state = 176, .external_lex_state = 99}, + [12113] = {.lex_state = 178, .external_lex_state = 99}, + [12114] = {.lex_state = 176, .external_lex_state = 99}, + [12115] = {.lex_state = 176, .external_lex_state = 99}, + [12116] = {.lex_state = 176, .external_lex_state = 99}, + [12117] = {.lex_state = 178, .external_lex_state = 99}, + [12118] = {.lex_state = 178, .external_lex_state = 99}, + [12119] = {.lex_state = 178, .external_lex_state = 99}, + [12120] = {.lex_state = 176, .external_lex_state = 99}, + [12121] = {.lex_state = 176, .external_lex_state = 99}, + [12122] = {.lex_state = 178, .external_lex_state = 99}, + [12123] = {.lex_state = 176, .external_lex_state = 99}, + [12124] = {.lex_state = 176, .external_lex_state = 99}, + [12125] = {.lex_state = 176, .external_lex_state = 99}, + [12126] = {.lex_state = 176, .external_lex_state = 99}, + [12127] = {.lex_state = 178, .external_lex_state = 99}, + [12128] = {.lex_state = 178, .external_lex_state = 99}, + [12129] = {.lex_state = 178, .external_lex_state = 99}, + [12130] = {.lex_state = 176, .external_lex_state = 99}, + [12131] = {.lex_state = 176, .external_lex_state = 99}, + [12132] = {.lex_state = 178, .external_lex_state = 99}, + [12133] = {.lex_state = 176, .external_lex_state = 99}, + [12134] = {.lex_state = 176, .external_lex_state = 99}, + [12135] = {.lex_state = 178, .external_lex_state = 99}, + [12136] = {.lex_state = 178, .external_lex_state = 99}, + [12137] = {.lex_state = 178, .external_lex_state = 99}, + [12138] = {.lex_state = 178, .external_lex_state = 99}, + [12139] = {.lex_state = 173, .external_lex_state = 99}, + [12140] = {.lex_state = 178, .external_lex_state = 99}, + [12141] = {.lex_state = 178, .external_lex_state = 99}, + [12142] = {.lex_state = 176, .external_lex_state = 99}, + [12143] = {.lex_state = 178, .external_lex_state = 99}, + [12144] = {.lex_state = 178, .external_lex_state = 99}, + [12145] = {.lex_state = 176, .external_lex_state = 99}, + [12146] = {.lex_state = 176, .external_lex_state = 99}, + [12147] = {.lex_state = 176, .external_lex_state = 99}, + [12148] = {.lex_state = 178, .external_lex_state = 99}, + [12149] = {.lex_state = 173, .external_lex_state = 99}, + [12150] = {.lex_state = 178, .external_lex_state = 99}, + [12151] = {.lex_state = 178, .external_lex_state = 99}, + [12152] = {.lex_state = 178, .external_lex_state = 99}, + [12153] = {.lex_state = 178, .external_lex_state = 99}, + [12154] = {.lex_state = 178, .external_lex_state = 99}, + [12155] = {.lex_state = 176, .external_lex_state = 99}, + [12156] = {.lex_state = 176, .external_lex_state = 99}, + [12157] = {.lex_state = 176, .external_lex_state = 99}, + [12158] = {.lex_state = 178, .external_lex_state = 99}, + [12159] = {.lex_state = 176, .external_lex_state = 99}, + [12160] = {.lex_state = 178, .external_lex_state = 99}, + [12161] = {.lex_state = 176, .external_lex_state = 99}, + [12162] = {.lex_state = 176, .external_lex_state = 99}, + [12163] = {.lex_state = 176, .external_lex_state = 99}, + [12164] = {.lex_state = 176, .external_lex_state = 99}, + [12165] = {.lex_state = 176, .external_lex_state = 99}, + [12166] = {.lex_state = 178, .external_lex_state = 99}, + [12167] = {.lex_state = 178, .external_lex_state = 99}, + [12168] = {.lex_state = 173, .external_lex_state = 99}, + [12169] = {.lex_state = 70, .external_lex_state = 99}, + [12170] = {.lex_state = 176, .external_lex_state = 99}, + [12171] = {.lex_state = 178, .external_lex_state = 99}, + [12172] = {.lex_state = 178, .external_lex_state = 99}, + [12173] = {.lex_state = 178, .external_lex_state = 99}, + [12174] = {.lex_state = 178, .external_lex_state = 99}, + [12175] = {.lex_state = 176, .external_lex_state = 99}, + [12176] = {.lex_state = 176, .external_lex_state = 99}, + [12177] = {.lex_state = 176, .external_lex_state = 99}, + [12178] = {.lex_state = 176, .external_lex_state = 99}, + [12179] = {.lex_state = 178, .external_lex_state = 99}, + [12180] = {.lex_state = 178, .external_lex_state = 99}, + [12181] = {.lex_state = 178, .external_lex_state = 99}, + [12182] = {.lex_state = 178, .external_lex_state = 99}, + [12183] = {.lex_state = 176, .external_lex_state = 99}, + [12184] = {.lex_state = 176, .external_lex_state = 99}, + [12185] = {.lex_state = 173, .external_lex_state = 99}, + [12186] = {.lex_state = 178, .external_lex_state = 99}, + [12187] = {.lex_state = 178, .external_lex_state = 99}, + [12188] = {.lex_state = 176, .external_lex_state = 99}, + [12189] = {.lex_state = 176, .external_lex_state = 99}, + [12190] = {.lex_state = 176, .external_lex_state = 99}, + [12191] = {.lex_state = 178, .external_lex_state = 99}, + [12192] = {.lex_state = 178, .external_lex_state = 99}, + [12193] = {.lex_state = 178, .external_lex_state = 99}, + [12194] = {.lex_state = 178, .external_lex_state = 99}, + [12195] = {.lex_state = 176, .external_lex_state = 99}, + [12196] = {.lex_state = 176, .external_lex_state = 99}, + [12197] = {.lex_state = 176, .external_lex_state = 99}, + [12198] = {.lex_state = 178, .external_lex_state = 99}, + [12199] = {.lex_state = 176, .external_lex_state = 99}, + [12200] = {.lex_state = 178, .external_lex_state = 99}, + [12201] = {.lex_state = 176, .external_lex_state = 99}, + [12202] = {.lex_state = 176, .external_lex_state = 99}, + [12203] = {.lex_state = 176, .external_lex_state = 99}, + [12204] = {.lex_state = 178, .external_lex_state = 99}, + [12205] = {.lex_state = 176, .external_lex_state = 99}, + [12206] = {.lex_state = 178, .external_lex_state = 99}, + [12207] = {.lex_state = 178, .external_lex_state = 99}, + [12208] = {.lex_state = 178, .external_lex_state = 99}, + [12209] = {.lex_state = 176, .external_lex_state = 99}, + [12210] = {.lex_state = 178, .external_lex_state = 99}, + [12211] = {.lex_state = 178, .external_lex_state = 99}, + [12212] = {.lex_state = 178, .external_lex_state = 99}, + [12213] = {.lex_state = 178, .external_lex_state = 99}, + [12214] = {.lex_state = 176, .external_lex_state = 99}, + [12215] = {.lex_state = 176, .external_lex_state = 99}, + [12216] = {.lex_state = 176, .external_lex_state = 99}, + [12217] = {.lex_state = 178, .external_lex_state = 99}, + [12218] = {.lex_state = 178, .external_lex_state = 99}, + [12219] = {.lex_state = 178, .external_lex_state = 99}, + [12220] = {.lex_state = 178, .external_lex_state = 99}, + [12221] = {.lex_state = 178, .external_lex_state = 99}, + [12222] = {.lex_state = 176, .external_lex_state = 99}, + [12223] = {.lex_state = 176, .external_lex_state = 99}, + [12224] = {.lex_state = 178, .external_lex_state = 99}, + [12225] = {.lex_state = 178, .external_lex_state = 99}, + [12226] = {.lex_state = 176, .external_lex_state = 99}, + [12227] = {.lex_state = 176, .external_lex_state = 99}, + [12228] = {.lex_state = 176, .external_lex_state = 99}, + [12229] = {.lex_state = 176, .external_lex_state = 99}, + [12230] = {.lex_state = 178, .external_lex_state = 99}, + [12231] = {.lex_state = 176, .external_lex_state = 99}, + [12232] = {.lex_state = 178, .external_lex_state = 99}, + [12233] = {.lex_state = 178, .external_lex_state = 99}, + [12234] = {.lex_state = 176, .external_lex_state = 99}, + [12235] = {.lex_state = 176, .external_lex_state = 99}, + [12236] = {.lex_state = 178, .external_lex_state = 99}, + [12237] = {.lex_state = 178, .external_lex_state = 99}, + [12238] = {.lex_state = 176, .external_lex_state = 99}, + [12239] = {.lex_state = 70, .external_lex_state = 99}, + [12240] = {.lex_state = 176, .external_lex_state = 99}, + [12241] = {.lex_state = 176, .external_lex_state = 99}, + [12242] = {.lex_state = 176, .external_lex_state = 99}, + [12243] = {.lex_state = 178, .external_lex_state = 99}, + [12244] = {.lex_state = 176, .external_lex_state = 99}, + [12245] = {.lex_state = 178, .external_lex_state = 99}, + [12246] = {.lex_state = 178, .external_lex_state = 99}, + [12247] = {.lex_state = 176, .external_lex_state = 99}, + [12248] = {.lex_state = 176, .external_lex_state = 99}, + [12249] = {.lex_state = 178, .external_lex_state = 99}, + [12250] = {.lex_state = 178, .external_lex_state = 99}, + [12251] = {.lex_state = 176, .external_lex_state = 99}, + [12252] = {.lex_state = 178, .external_lex_state = 99}, + [12253] = {.lex_state = 176, .external_lex_state = 99}, + [12254] = {.lex_state = 176, .external_lex_state = 99}, + [12255] = {.lex_state = 176, .external_lex_state = 99}, + [12256] = {.lex_state = 178, .external_lex_state = 99}, + [12257] = {.lex_state = 176, .external_lex_state = 99}, + [12258] = {.lex_state = 178, .external_lex_state = 99}, + [12259] = {.lex_state = 176, .external_lex_state = 99}, + [12260] = {.lex_state = 176, .external_lex_state = 99}, + [12261] = {.lex_state = 176, .external_lex_state = 99}, + [12262] = {.lex_state = 178, .external_lex_state = 99}, + [12263] = {.lex_state = 176, .external_lex_state = 99}, + [12264] = {.lex_state = 178, .external_lex_state = 99}, + [12265] = {.lex_state = 184, .external_lex_state = 99}, + [12266] = {.lex_state = 176, .external_lex_state = 99}, + [12267] = {.lex_state = 176, .external_lex_state = 99}, + [12268] = {.lex_state = 176, .external_lex_state = 99}, + [12269] = {.lex_state = 176, .external_lex_state = 99}, + [12270] = {.lex_state = 178, .external_lex_state = 99}, + [12271] = {.lex_state = 178, .external_lex_state = 99}, + [12272] = {.lex_state = 178, .external_lex_state = 99}, + [12273] = {.lex_state = 70, .external_lex_state = 99}, + [12274] = {.lex_state = 176, .external_lex_state = 99}, + [12275] = {.lex_state = 176, .external_lex_state = 99}, + [12276] = {.lex_state = 178, .external_lex_state = 99}, + [12277] = {.lex_state = 176, .external_lex_state = 99}, + [12278] = {.lex_state = 176, .external_lex_state = 99}, + [12279] = {.lex_state = 176, .external_lex_state = 99}, + [12280] = {.lex_state = 176, .external_lex_state = 99}, + [12281] = {.lex_state = 176, .external_lex_state = 99}, + [12282] = {.lex_state = 178, .external_lex_state = 99}, + [12283] = {.lex_state = 176, .external_lex_state = 99}, + [12284] = {.lex_state = 178, .external_lex_state = 99}, + [12285] = {.lex_state = 176, .external_lex_state = 99}, + [12286] = {.lex_state = 178, .external_lex_state = 99}, + [12287] = {.lex_state = 176, .external_lex_state = 99}, + [12288] = {.lex_state = 178, .external_lex_state = 99}, + [12289] = {.lex_state = 178, .external_lex_state = 99}, + [12290] = {.lex_state = 176, .external_lex_state = 99}, + [12291] = {.lex_state = 176, .external_lex_state = 99}, + [12292] = {.lex_state = 176, .external_lex_state = 99}, + [12293] = {.lex_state = 178, .external_lex_state = 99}, + [12294] = {.lex_state = 178, .external_lex_state = 99}, + [12295] = {.lex_state = 176, .external_lex_state = 99}, + [12296] = {.lex_state = 176, .external_lex_state = 99}, + [12297] = {.lex_state = 178, .external_lex_state = 99}, + [12298] = {.lex_state = 178, .external_lex_state = 99}, + [12299] = {.lex_state = 176, .external_lex_state = 99}, + [12300] = {.lex_state = 178, .external_lex_state = 99}, + [12301] = {.lex_state = 178, .external_lex_state = 99}, + [12302] = {.lex_state = 176, .external_lex_state = 99}, + [12303] = {.lex_state = 178, .external_lex_state = 99}, + [12304] = {.lex_state = 176, .external_lex_state = 99}, + [12305] = {.lex_state = 178, .external_lex_state = 99}, + [12306] = {.lex_state = 178, .external_lex_state = 99}, + [12307] = {.lex_state = 176, .external_lex_state = 99}, + [12308] = {.lex_state = 178, .external_lex_state = 99}, + [12309] = {.lex_state = 176, .external_lex_state = 99}, + [12310] = {.lex_state = 176, .external_lex_state = 99}, + [12311] = {.lex_state = 178, .external_lex_state = 99}, + [12312] = {.lex_state = 178, .external_lex_state = 99}, + [12313] = {.lex_state = 176, .external_lex_state = 99}, + [12314] = {.lex_state = 176, .external_lex_state = 99}, + [12315] = {.lex_state = 176, .external_lex_state = 99}, + [12316] = {.lex_state = 178, .external_lex_state = 99}, + [12317] = {.lex_state = 176, .external_lex_state = 99}, + [12318] = {.lex_state = 176, .external_lex_state = 99}, + [12319] = {.lex_state = 178, .external_lex_state = 99}, + [12320] = {.lex_state = 178, .external_lex_state = 99}, + [12321] = {.lex_state = 178, .external_lex_state = 99}, + [12322] = {.lex_state = 178, .external_lex_state = 99}, + [12323] = {.lex_state = 176, .external_lex_state = 99}, + [12324] = {.lex_state = 176, .external_lex_state = 99}, + [12325] = {.lex_state = 178, .external_lex_state = 99}, + [12326] = {.lex_state = 178, .external_lex_state = 99}, + [12327] = {.lex_state = 178, .external_lex_state = 99}, + [12328] = {.lex_state = 178, .external_lex_state = 99}, + [12329] = {.lex_state = 178, .external_lex_state = 99}, + [12330] = {.lex_state = 178, .external_lex_state = 99}, + [12331] = {.lex_state = 178, .external_lex_state = 99}, + [12332] = {.lex_state = 178, .external_lex_state = 99}, + [12333] = {.lex_state = 178, .external_lex_state = 99}, + [12334] = {.lex_state = 176, .external_lex_state = 99}, + [12335] = {.lex_state = 173, .external_lex_state = 99}, + [12336] = {.lex_state = 178, .external_lex_state = 99}, + [12337] = {.lex_state = 178, .external_lex_state = 99}, + [12338] = {.lex_state = 178, .external_lex_state = 99}, + [12339] = {.lex_state = 178, .external_lex_state = 99}, + [12340] = {.lex_state = 178, .external_lex_state = 99}, + [12341] = {.lex_state = 178, .external_lex_state = 99}, + [12342] = {.lex_state = 173, .external_lex_state = 99}, + [12343] = {.lex_state = 178, .external_lex_state = 99}, + [12344] = {.lex_state = 178, .external_lex_state = 99}, + [12345] = {.lex_state = 176, .external_lex_state = 99}, + [12346] = {.lex_state = 176, .external_lex_state = 99}, + [12347] = {.lex_state = 176, .external_lex_state = 99}, + [12348] = {.lex_state = 176, .external_lex_state = 99}, + [12349] = {.lex_state = 178, .external_lex_state = 99}, + [12350] = {.lex_state = 178, .external_lex_state = 99}, + [12351] = {.lex_state = 178, .external_lex_state = 99}, + [12352] = {.lex_state = 176, .external_lex_state = 99}, + [12353] = {.lex_state = 178, .external_lex_state = 99}, + [12354] = {.lex_state = 178, .external_lex_state = 99}, + [12355] = {.lex_state = 178, .external_lex_state = 99}, + [12356] = {.lex_state = 176, .external_lex_state = 99}, + [12357] = {.lex_state = 178, .external_lex_state = 99}, + [12358] = {.lex_state = 178, .external_lex_state = 99}, + [12359] = {.lex_state = 178, .external_lex_state = 99}, + [12360] = {.lex_state = 176, .external_lex_state = 99}, + [12361] = {.lex_state = 176, .external_lex_state = 99}, + [12362] = {.lex_state = 178, .external_lex_state = 99}, + [12363] = {.lex_state = 176, .external_lex_state = 99}, + [12364] = {.lex_state = 178, .external_lex_state = 99}, + [12365] = {.lex_state = 176, .external_lex_state = 99}, + [12366] = {.lex_state = 178, .external_lex_state = 99}, + [12367] = {.lex_state = 176, .external_lex_state = 99}, + [12368] = {.lex_state = 178, .external_lex_state = 99}, + [12369] = {.lex_state = 176, .external_lex_state = 99}, + [12370] = {.lex_state = 178, .external_lex_state = 99}, + [12371] = {.lex_state = 176, .external_lex_state = 99}, + [12372] = {.lex_state = 178, .external_lex_state = 99}, + [12373] = {.lex_state = 176, .external_lex_state = 99}, + [12374] = {.lex_state = 178, .external_lex_state = 99}, + [12375] = {.lex_state = 178, .external_lex_state = 99}, + [12376] = {.lex_state = 176, .external_lex_state = 99}, + [12377] = {.lex_state = 178, .external_lex_state = 99}, + [12378] = {.lex_state = 178, .external_lex_state = 99}, + [12379] = {.lex_state = 178, .external_lex_state = 99}, + [12380] = {.lex_state = 178, .external_lex_state = 99}, + [12381] = {.lex_state = 176, .external_lex_state = 99}, + [12382] = {.lex_state = 176, .external_lex_state = 99}, + [12383] = {.lex_state = 176, .external_lex_state = 99}, + [12384] = {.lex_state = 176, .external_lex_state = 99}, + [12385] = {.lex_state = 176, .external_lex_state = 99}, + [12386] = {.lex_state = 176, .external_lex_state = 99}, + [12387] = {.lex_state = 176, .external_lex_state = 99}, + [12388] = {.lex_state = 176, .external_lex_state = 99}, + [12389] = {.lex_state = 176, .external_lex_state = 99}, + [12390] = {.lex_state = 176, .external_lex_state = 99}, + [12391] = {.lex_state = 176, .external_lex_state = 99}, + [12392] = {.lex_state = 176, .external_lex_state = 99}, + [12393] = {.lex_state = 176, .external_lex_state = 99}, + [12394] = {.lex_state = 178, .external_lex_state = 99}, + [12395] = {(TSStateId)(-1)}, + [12396] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -34067,103 +34240,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_recovery] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(10905), - [sym__statements] = STATE(11163), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym_source_file] = STATE(12247), + [sym__statements] = STATE(11125), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(1), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [ts_builtin_sym_end] = ACTIONS(9), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), @@ -34248,102 +34421,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [2] = { - [sym__statements] = STATE(11940), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__statements] = STATE(12012), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(2), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34467,102 +34640,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [3] = { - [sym__statements] = STATE(11808), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__statements] = STATE(11470), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(3), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34686,102 +34859,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [4] = { - [sym__statements] = STATE(12042), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__statements] = STATE(11120), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(4), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34905,102 +35078,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [5] = { - [sym__statements] = STATE(11591), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__statements] = STATE(12174), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(5), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35124,102 +35297,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [6] = { - [sym__statements] = STATE(11883), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__statements] = STATE(11290), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(6), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35343,102 +35516,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [7] = { - [sym__statements] = STATE(11627), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__statements] = STATE(11362), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(7), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35562,83 +35735,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [8] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2510), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2528), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(8), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2511), - [sym_double_splat] = STATE(2511), - [sym_named_expr] = STATE(2511), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2529), + [sym_double_splat] = STATE(2529), + [sym_named_expr] = STATE(2529), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(173), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(173), @@ -35778,83 +35951,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(289), }, [9] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2519), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(9), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2520), - [sym_double_splat] = STATE(2520), - [sym_named_expr] = STATE(2520), - [sym_argument_list_no_parens] = STATE(2418), - [sym_argument_list_no_parens_with_block] = STATE(2653), - [sym_argument_list_with_parens] = STATE(2418), - [sym_argument_list_with_parens_and_block] = STATE(2653), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2661), - [sym_brace_block] = STATE(2700), - [sym_block_argument] = STATE(2712), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2482), + [sym_double_splat] = STATE(2482), + [sym_named_expr] = STATE(2482), + [sym_argument_list_no_parens] = STATE(2448), + [sym_argument_list_no_parens_with_block] = STATE(2702), + [sym_argument_list_with_parens] = STATE(2448), + [sym_argument_list_with_parens_and_block] = STATE(2702), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2705), + [sym_brace_block] = STATE(2707), + [sym_block_argument] = STATE(2708), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(173), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(173), @@ -35994,83 +36167,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(305), }, [10] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2519), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(10), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2520), - [sym_double_splat] = STATE(2520), - [sym_named_expr] = STATE(2520), - [sym_argument_list_no_parens] = STATE(2418), - [sym_argument_list_no_parens_with_block] = STATE(2653), - [sym_argument_list_with_parens] = STATE(2418), - [sym_argument_list_with_parens_and_block] = STATE(2653), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2661), - [sym_brace_block] = STATE(2700), - [sym_block_argument] = STATE(2712), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2482), + [sym_double_splat] = STATE(2482), + [sym_named_expr] = STATE(2482), + [sym_argument_list_no_parens] = STATE(2448), + [sym_argument_list_no_parens_with_block] = STATE(2702), + [sym_argument_list_with_parens] = STATE(2448), + [sym_argument_list_with_parens_and_block] = STATE(2702), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2705), + [sym_brace_block] = STATE(2707), + [sym_block_argument] = STATE(2708), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(173), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(173), @@ -36209,83 +36382,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(305), }, [11] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2482), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2528), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(11), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2484), - [sym_double_splat] = STATE(2484), - [sym_named_expr] = STATE(2484), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2529), + [sym_double_splat] = STATE(2529), + [sym_named_expr] = STATE(2529), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(173), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(173), @@ -36304,14 +36477,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DASH_GT] = ACTIONS(197), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(309), + [anon_sym_EQ] = ACTIONS(199), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -36353,24 +36526,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_protected] = ACTIONS(233), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_AMP_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_AMP_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_STAR_STAR_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP_AMP_EQ] = ACTIONS(311), - [anon_sym_COLON2] = ACTIONS(313), + [anon_sym_PLUS_EQ] = ACTIONS(235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(235), + [anon_sym_DASH_EQ] = ACTIONS(235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(235), + [anon_sym_STAR_EQ] = ACTIONS(235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(235), + [anon_sym_SLASH_EQ] = ACTIONS(235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(235), + [anon_sym_PERCENT_EQ] = ACTIONS(235), + [anon_sym_PIPE_EQ] = ACTIONS(235), + [anon_sym_AMP_EQ] = ACTIONS(235), + [anon_sym_CARET_EQ] = ACTIONS(235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(235), + [anon_sym_LT_LT_EQ] = ACTIONS(235), + [anon_sym_GT_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(235), + [anon_sym_COLON2] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), @@ -36400,7 +36573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(173), [sym__unary_double_star] = ACTIONS(265), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(315), + [sym__block_ampersand] = ACTIONS(267), [sym_binary_ampersand] = ACTIONS(173), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), @@ -36421,86 +36594,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(317), + [sym__start_of_parenless_args] = ACTIONS(289), }, [12] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2510), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2577), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(12), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2511), - [sym_double_splat] = STATE(2511), - [sym_named_expr] = STATE(2511), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2535), + [sym_double_splat] = STATE(2535), + [sym_named_expr] = STATE(2535), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(173), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(173), @@ -36519,14 +36692,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(307), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DASH_GT] = ACTIONS(197), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(199), + [anon_sym_EQ] = ACTIONS(309), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -36568,24 +36741,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_protected] = ACTIONS(233), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_AMP_DASH_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_AMP_STAR_EQ] = ACTIONS(235), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(235), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_AMP_EQ] = ACTIONS(235), - [anon_sym_COLON2] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_AMP_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_AMP_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), + [anon_sym_AMP_AMP_EQ] = ACTIONS(311), + [anon_sym_COLON2] = ACTIONS(313), [anon_sym_do] = ACTIONS(239), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), @@ -36615,7 +36788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(173), [sym__unary_double_star] = ACTIONS(265), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(267), + [sym__block_ampersand] = ACTIONS(315), [sym_binary_ampersand] = ACTIONS(173), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), @@ -36636,86 +36809,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(289), + [sym__start_of_parenless_args] = ACTIONS(317), }, [13] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2482), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2577), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(13), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2484), - [sym_double_splat] = STATE(2484), - [sym_named_expr] = STATE(2484), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2535), + [sym_double_splat] = STATE(2535), + [sym_named_expr] = STATE(2535), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(173), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(173), @@ -36853,83 +37026,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(317), }, [14] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3141), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(14), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3142), - [sym_double_splat] = STATE(3142), - [sym_named_expr] = STATE(3142), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3262), + [sym_double_splat] = STATE(3262), + [sym_named_expr] = STATE(3262), + [sym_argument_list_no_parens] = STATE(3137), + [sym_argument_list_no_parens_with_block] = STATE(3382), + [sym_argument_list_with_parens] = STATE(3137), + [sym_argument_list_with_parens_and_block] = STATE(3382), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3384), + [sym_brace_block] = STATE(3385), + [sym_block_argument] = STATE(3388), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(321), @@ -37013,135 +37186,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(377), [anon_sym_AMP_AMP_EQ] = ACTIONS(377), [anon_sym_COLON2] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_do] = ACTIONS(195), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(195), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(409), + [sym__block_ampersand] = ACTIONS(407), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(173), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(173), [sym__regular_rescue_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(431), + [sym__start_of_parenless_args] = ACTIONS(429), }, [15] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3168), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3204), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(15), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3169), - [sym_double_splat] = STATE(3169), - [sym_named_expr] = STATE(3169), - [sym_argument_list_no_parens] = STATE(2858), - [sym_argument_list_no_parens_with_block] = STATE(3435), - [sym_argument_list_with_parens] = STATE(2858), - [sym_argument_list_with_parens_and_block] = STATE(3435), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3436), - [sym_brace_block] = STATE(3498), - [sym_block_argument] = STATE(3502), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3205), + [sym_double_splat] = STATE(3205), + [sym_named_expr] = STATE(3205), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(321), @@ -37164,7 +37337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(431), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -37200,582 +37373,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_COLON] = ACTIONS(435), - [anon_sym_LPAREN2] = ACTIONS(437), + [anon_sym_COLON] = ACTIONS(433), + [anon_sym_LPAREN2] = ACTIONS(435), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_AMP_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_AMP_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_STAR_STAR_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(439), - [anon_sym_AMP_AMP_EQ] = ACTIONS(439), - [anon_sym_COLON2] = ACTIONS(441), - [anon_sym_do] = ACTIONS(195), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(437), + [anon_sym_DASH_EQ] = ACTIONS(437), + [anon_sym_AMP_DASH_EQ] = ACTIONS(437), + [anon_sym_STAR_EQ] = ACTIONS(437), + [anon_sym_AMP_STAR_EQ] = ACTIONS(437), + [anon_sym_SLASH_EQ] = ACTIONS(437), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(437), + [anon_sym_PERCENT_EQ] = ACTIONS(437), + [anon_sym_PIPE_EQ] = ACTIONS(437), + [anon_sym_AMP_EQ] = ACTIONS(437), + [anon_sym_CARET_EQ] = ACTIONS(437), + [anon_sym_STAR_STAR_EQ] = ACTIONS(437), + [anon_sym_LT_LT_EQ] = ACTIONS(437), + [anon_sym_GT_GT_EQ] = ACTIONS(437), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(437), + [anon_sym_AMP_AMP_EQ] = ACTIONS(437), + [anon_sym_COLON2] = ACTIONS(439), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(195), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(443), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(173), [sym__block_ampersand] = ACTIONS(445), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(173), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(173), [sym__regular_rescue_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(447), }, [16] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3136), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(16), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3137), - [sym_double_splat] = STATE(3137), - [sym_named_expr] = STATE(3137), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(307), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_AMP_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_AMP_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_STAR_STAR_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP_EQ] = ACTIONS(451), - [anon_sym_COLON2] = ACTIONS(453), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(195), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(173), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(455), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__regular_rescue_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(457), - }, - [17] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3168), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(17), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3169), - [sym_double_splat] = STATE(3169), - [sym_named_expr] = STATE(3169), - [sym_argument_list_no_parens] = STATE(2858), - [sym_argument_list_no_parens_with_block] = STATE(3435), - [sym_argument_list_with_parens] = STATE(2858), - [sym_argument_list_with_parens_and_block] = STATE(3435), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3436), - [sym_brace_block] = STATE(3498), - [sym_block_argument] = STATE(3502), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_AMP_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_AMP_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_STAR_STAR_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(439), - [anon_sym_AMP_AMP_EQ] = ACTIONS(439), - [anon_sym_COLON2] = ACTIONS(441), - [anon_sym_do] = ACTIONS(195), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(195), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(173), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(443), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(445), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__regular_rescue_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(447), - }, - [18] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3141), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(18), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3142), - [sym_double_splat] = STATE(3142), - [sym_named_expr] = STATE(3142), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3262), + [sym_double_splat] = STATE(3262), + [sym_named_expr] = STATE(3262), + [sym_argument_list_no_parens] = STATE(3137), + [sym_argument_list_no_parens_with_block] = STATE(3382), + [sym_argument_list_with_parens] = STATE(3137), + [sym_argument_list_with_parens_and_block] = STATE(3382), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3384), + [sym_brace_block] = STATE(3385), + [sym_block_argument] = STATE(3388), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(321), @@ -37858,135 +37609,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(377), [anon_sym_AMP_AMP_EQ] = ACTIONS(377), [anon_sym_COLON2] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_do] = ACTIONS(195), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(195), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(407), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__regular_rescue_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(429), + }, + [17] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3292), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(17), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3293), + [sym_double_splat] = STATE(3293), + [sym_named_expr] = STATE(3293), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(307), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_AMP_DASH_EQ] = ACTIONS(451), + [anon_sym_STAR_EQ] = ACTIONS(451), + [anon_sym_AMP_STAR_EQ] = ACTIONS(451), + [anon_sym_SLASH_EQ] = ACTIONS(451), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), + [anon_sym_PERCENT_EQ] = ACTIONS(451), + [anon_sym_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_EQ] = ACTIONS(451), + [anon_sym_CARET_EQ] = ACTIONS(451), + [anon_sym_STAR_STAR_EQ] = ACTIONS(451), + [anon_sym_LT_LT_EQ] = ACTIONS(451), + [anon_sym_GT_GT_EQ] = ACTIONS(451), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_AMP_EQ] = ACTIONS(451), + [anon_sym_COLON2] = ACTIONS(453), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(195), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(455), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__regular_rescue_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(457), + }, + [18] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3204), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(18), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3205), + [sym_double_splat] = STATE(3205), + [sym_named_expr] = STATE(3205), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(437), + [anon_sym_DASH_EQ] = ACTIONS(437), + [anon_sym_AMP_DASH_EQ] = ACTIONS(437), + [anon_sym_STAR_EQ] = ACTIONS(437), + [anon_sym_AMP_STAR_EQ] = ACTIONS(437), + [anon_sym_SLASH_EQ] = ACTIONS(437), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(437), + [anon_sym_PERCENT_EQ] = ACTIONS(437), + [anon_sym_PIPE_EQ] = ACTIONS(437), + [anon_sym_AMP_EQ] = ACTIONS(437), + [anon_sym_CARET_EQ] = ACTIONS(437), + [anon_sym_STAR_STAR_EQ] = ACTIONS(437), + [anon_sym_LT_LT_EQ] = ACTIONS(437), + [anon_sym_GT_GT_EQ] = ACTIONS(437), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(437), + [anon_sym_AMP_AMP_EQ] = ACTIONS(437), + [anon_sym_COLON2] = ACTIONS(439), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(195), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(409), + [sym__block_ampersand] = ACTIONS(445), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(173), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(173), [sym__regular_rescue_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(431), + [sym__start_of_parenless_args] = ACTIONS(447), }, [19] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3798), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3599), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(19), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3799), - [sym_double_splat] = STATE(3799), - [sym_named_expr] = STATE(3799), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3600), + [sym_double_splat] = STATE(3600), + [sym_named_expr] = STATE(3600), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(173), @@ -38120,83 +38293,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(571), }, [20] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3727), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3292), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(20), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3293), + [sym_double_splat] = STATE(3293), + [sym_named_expr] = STATE(3293), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_AMP_DASH_EQ] = ACTIONS(451), + [anon_sym_STAR_EQ] = ACTIONS(451), + [anon_sym_AMP_STAR_EQ] = ACTIONS(451), + [anon_sym_SLASH_EQ] = ACTIONS(451), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), + [anon_sym_PERCENT_EQ] = ACTIONS(451), + [anon_sym_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_EQ] = ACTIONS(451), + [anon_sym_CARET_EQ] = ACTIONS(451), + [anon_sym_STAR_STAR_EQ] = ACTIONS(451), + [anon_sym_LT_LT_EQ] = ACTIONS(451), + [anon_sym_GT_GT_EQ] = ACTIONS(451), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_AMP_EQ] = ACTIONS(451), + [anon_sym_COLON2] = ACTIONS(453), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(195), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(455), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__regular_rescue_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(457), + }, + [21] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3602), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(21), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3728), - [sym_double_splat] = STATE(3728), - [sym_named_expr] = STATE(3728), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3603), + [sym_double_splat] = STATE(3603), + [sym_named_expr] = STATE(3603), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(173), @@ -38329,294 +38712,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(587), }, - [21] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3136), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(21), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3137), - [sym_double_splat] = STATE(3137), - [sym_named_expr] = STATE(3137), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_AMP_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_AMP_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_STAR_STAR_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP_EQ] = ACTIONS(451), - [anon_sym_COLON2] = ACTIONS(453), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(195), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(173), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(455), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__regular_rescue_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(457), - }, [22] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3801), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3892), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(22), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3802), - [sym_double_splat] = STATE(3802), - [sym_named_expr] = STATE(3802), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3893), + [sym_double_splat] = STATE(3893), + [sym_named_expr] = STATE(3893), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(591), @@ -38750,83 +38923,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(701), }, [23] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3738), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3613), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(23), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3739), - [sym_double_splat] = STATE(3739), - [sym_named_expr] = STATE(3739), - [sym_argument_list_no_parens] = STATE(3515), - [sym_argument_list_no_parens_with_block] = STATE(3837), - [sym_argument_list_with_parens] = STATE(3515), - [sym_argument_list_with_parens_and_block] = STATE(3837), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(3847), - [sym_brace_block] = STATE(3855), - [sym_block_argument] = STATE(3857), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_argument_list_no_parens] = STATE(3551), + [sym_argument_list_no_parens_with_block] = STATE(4298), + [sym_argument_list_with_parens] = STATE(3551), + [sym_argument_list_with_parens_and_block] = STATE(4298), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4299), + [sym_brace_block] = STATE(4300), + [sym_block_argument] = STATE(4301), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(591), @@ -38960,83 +39133,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(717), }, [24] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3727), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3602), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(24), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3728), - [sym_double_splat] = STATE(3728), - [sym_named_expr] = STATE(3728), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3603), + [sym_double_splat] = STATE(3603), + [sym_named_expr] = STATE(3603), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(173), @@ -39169,83 +39342,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(587), }, [25] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3801), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3613), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(25), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3802), - [sym_double_splat] = STATE(3802), - [sym_named_expr] = STATE(3802), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_argument_list_no_parens] = STATE(3551), + [sym_argument_list_no_parens_with_block] = STATE(4298), + [sym_argument_list_with_parens] = STATE(3551), + [sym_argument_list_with_parens_and_block] = STATE(4298), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4299), + [sym_brace_block] = STATE(4300), + [sym_block_argument] = STATE(4301), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(591), @@ -39268,7 +39441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(611), + [anon_sym_EQ] = ACTIONS(703), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -39304,31 +39477,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_LPAREN2] = ACTIONS(707), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(645), [sym_protected] = ACTIONS(645), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(647), - [anon_sym_DASH_EQ] = ACTIONS(647), - [anon_sym_AMP_DASH_EQ] = ACTIONS(647), - [anon_sym_STAR_EQ] = ACTIONS(647), - [anon_sym_AMP_STAR_EQ] = ACTIONS(647), - [anon_sym_SLASH_EQ] = ACTIONS(647), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(647), - [anon_sym_PERCENT_EQ] = ACTIONS(647), - [anon_sym_PIPE_EQ] = ACTIONS(647), - [anon_sym_AMP_EQ] = ACTIONS(647), - [anon_sym_CARET_EQ] = ACTIONS(647), - [anon_sym_STAR_STAR_EQ] = ACTIONS(647), - [anon_sym_LT_LT_EQ] = ACTIONS(647), - [anon_sym_GT_GT_EQ] = ACTIONS(647), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(647), - [anon_sym_AMP_AMP_EQ] = ACTIONS(647), - [anon_sym_COLON2] = ACTIONS(649), - [anon_sym_do] = ACTIONS(651), + [anon_sym_PLUS_EQ] = ACTIONS(709), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(709), + [anon_sym_DASH_EQ] = ACTIONS(709), + [anon_sym_AMP_DASH_EQ] = ACTIONS(709), + [anon_sym_STAR_EQ] = ACTIONS(709), + [anon_sym_AMP_STAR_EQ] = ACTIONS(709), + [anon_sym_SLASH_EQ] = ACTIONS(709), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(709), + [anon_sym_PERCENT_EQ] = ACTIONS(709), + [anon_sym_PIPE_EQ] = ACTIONS(709), + [anon_sym_AMP_EQ] = ACTIONS(709), + [anon_sym_CARET_EQ] = ACTIONS(709), + [anon_sym_STAR_STAR_EQ] = ACTIONS(709), + [anon_sym_LT_LT_EQ] = ACTIONS(709), + [anon_sym_GT_GT_EQ] = ACTIONS(709), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(709), + [anon_sym_AMP_AMP_EQ] = ACTIONS(709), + [anon_sym_COLON2] = ACTIONS(711), + [anon_sym_do] = ACTIONS(195), [anon_sym_begin] = ACTIONS(653), [anon_sym_while] = ACTIONS(655), [anon_sym_until] = ACTIONS(657), @@ -39337,7 +39510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_asm_token1] = ACTIONS(663), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(665), + [sym__start_of_brace_block] = ACTIONS(713), [sym__start_of_hash_or_tuple] = ACTIONS(667), [sym__start_of_named_tuple] = ACTIONS(669), [sym__start_of_index_operator] = ACTIONS(173), @@ -39353,7 +39526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(173), [sym__unary_double_star] = ACTIONS(677), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(679), + [sym__block_ampersand] = ACTIONS(715), [sym_binary_ampersand] = ACTIONS(173), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), @@ -39375,86 +39548,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(699), [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(701), + [sym__start_of_parenless_args] = ACTIONS(717), }, [26] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3563), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3829), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(26), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3564), - [sym_double_splat] = STATE(3564), - [sym_named_expr] = STATE(3564), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(591), @@ -39587,106 +39760,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(727), }, [27] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3738), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2577), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(27), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3739), - [sym_double_splat] = STATE(3739), - [sym_named_expr] = STATE(3739), - [sym_argument_list_no_parens] = STATE(3515), - [sym_argument_list_no_parens_with_block] = STATE(3837), - [sym_argument_list_with_parens] = STATE(3515), - [sym_argument_list_with_parens_and_block] = STATE(3837), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(3847), - [sym_brace_block] = STATE(3855), - [sym_block_argument] = STATE(3857), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2535), + [sym_double_splat] = STATE(2535), + [sym_named_expr] = STATE(2535), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(591), + [anon_sym_LPAREN] = ACTIONS(177), + [anon_sym_RPAREN] = ACTIONS(173), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(173), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(307), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(197), [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(703), + [anon_sym_EQ] = ACTIONS(309), + [aux_sym_top_level_fun_def_token1] = ACTIONS(729), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -39698,181 +39872,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(203), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(707), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(231), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(709), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(709), - [anon_sym_DASH_EQ] = ACTIONS(709), - [anon_sym_AMP_DASH_EQ] = ACTIONS(709), - [anon_sym_STAR_EQ] = ACTIONS(709), - [anon_sym_AMP_STAR_EQ] = ACTIONS(709), - [anon_sym_SLASH_EQ] = ACTIONS(709), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(709), - [anon_sym_PERCENT_EQ] = ACTIONS(709), - [anon_sym_PIPE_EQ] = ACTIONS(709), - [anon_sym_AMP_EQ] = ACTIONS(709), - [anon_sym_CARET_EQ] = ACTIONS(709), - [anon_sym_STAR_STAR_EQ] = ACTIONS(709), - [anon_sym_LT_LT_EQ] = ACTIONS(709), - [anon_sym_GT_GT_EQ] = ACTIONS(709), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(709), - [anon_sym_AMP_AMP_EQ] = ACTIONS(709), - [anon_sym_COLON2] = ACTIONS(711), - [anon_sym_do] = ACTIONS(195), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_AMP_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_AMP_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), + [anon_sym_AMP_AMP_EQ] = ACTIONS(311), + [anon_sym_COLON2] = ACTIONS(313), + [anon_sym_do] = ACTIONS(239), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(713), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_brace_block] = ACTIONS(253), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(675), + [sym__unary_star] = ACTIONS(263), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(677), + [sym__unary_double_star] = ACTIONS(265), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(715), + [sym__block_ampersand] = ACTIONS(315), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_if_keyword] = ACTIONS(273), [sym__modifier_if_keyword] = ACTIONS(173), - [sym__regular_unless_keyword] = ACTIONS(687), + [sym__regular_unless_keyword] = ACTIONS(275), [sym__modifier_unless_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(717), + [sym__start_of_parenless_args] = ACTIONS(317), }, [28] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3798), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3599), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(28), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3799), - [sym_double_splat] = STATE(3799), - [sym_named_expr] = STATE(3799), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3600), + [sym_double_splat] = STATE(3600), + [sym_named_expr] = STATE(3600), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(173), @@ -40005,107 +40178,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(571), }, [29] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2482), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3892), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(29), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2484), - [sym_double_splat] = STATE(2484), - [sym_named_expr] = STATE(2484), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(175), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3893), + [sym_double_splat] = STATE(3893), + [sym_named_expr] = STATE(3893), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(307), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(309), - [aux_sym_top_level_fun_def_token1] = ACTIONS(729), + [anon_sym_EQ] = ACTIONS(611), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -40117,180 +40289,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(643), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_AMP_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_AMP_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_STAR_STAR_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP_AMP_EQ] = ACTIONS(311), - [anon_sym_COLON2] = ACTIONS(313), - [anon_sym_do] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [anon_sym_PLUS_EQ] = ACTIONS(647), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(647), + [anon_sym_DASH_EQ] = ACTIONS(647), + [anon_sym_AMP_DASH_EQ] = ACTIONS(647), + [anon_sym_STAR_EQ] = ACTIONS(647), + [anon_sym_AMP_STAR_EQ] = ACTIONS(647), + [anon_sym_SLASH_EQ] = ACTIONS(647), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(647), + [anon_sym_PERCENT_EQ] = ACTIONS(647), + [anon_sym_PIPE_EQ] = ACTIONS(647), + [anon_sym_AMP_EQ] = ACTIONS(647), + [anon_sym_CARET_EQ] = ACTIONS(647), + [anon_sym_STAR_STAR_EQ] = ACTIONS(647), + [anon_sym_LT_LT_EQ] = ACTIONS(647), + [anon_sym_GT_GT_EQ] = ACTIONS(647), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(647), + [anon_sym_AMP_AMP_EQ] = ACTIONS(647), + [anon_sym_COLON2] = ACTIONS(649), + [anon_sym_do] = ACTIONS(651), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), + [sym__start_of_brace_block] = ACTIONS(665), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(263), + [sym__unary_star] = ACTIONS(675), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(265), + [sym__unary_double_star] = ACTIONS(677), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(315), + [sym__block_ampersand] = ACTIONS(679), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_if_keyword] = ACTIONS(685), [sym__modifier_if_keyword] = ACTIONS(173), - [sym__regular_unless_keyword] = ACTIONS(275), + [sym__regular_unless_keyword] = ACTIONS(687), [sym__modifier_unless_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(317), + [sym__start_of_parenless_args] = ACTIONS(701), }, [30] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3563), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3829), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(30), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3564), - [sym_double_splat] = STATE(3564), - [sym_named_expr] = STATE(3564), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(591), @@ -40422,83 +40595,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(727), }, [31] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(31), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(173), @@ -40629,83 +40802,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(739), }, [32] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5103), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5209), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(32), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5104), - [sym_double_splat] = STATE(5104), - [sym_named_expr] = STATE(5104), - [sym_argument_list_no_parens] = STATE(4994), - [sym_argument_list_no_parens_with_block] = STATE(5757), - [sym_argument_list_with_parens] = STATE(4994), - [sym_argument_list_with_parens_and_block] = STATE(5757), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5778), - [sym_brace_block] = STATE(5794), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5210), + [sym_double_splat] = STATE(5210), + [sym_named_expr] = STATE(5210), + [sym_argument_list_no_parens] = STATE(4885), + [sym_argument_list_no_parens_with_block] = STATE(6094), + [sym_argument_list_with_parens] = STATE(4885), + [sym_argument_list_with_parens_and_block] = STATE(6094), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6095), + [sym_brace_block] = STATE(6096), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(743), @@ -40834,83 +41007,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(853), }, [33] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5110), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5119), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(33), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5111), - [sym_double_splat] = STATE(5111), - [sym_named_expr] = STATE(5111), - [sym_argument_list_no_parens] = STATE(4992), - [sym_argument_list_no_parens_with_block] = STATE(5410), - [sym_argument_list_with_parens] = STATE(4992), - [sym_argument_list_with_parens_and_block] = STATE(5410), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5411), - [sym_brace_block] = STATE(5416), - [sym_block_argument] = STATE(5417), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5120), + [sym_double_splat] = STATE(5120), + [sym_named_expr] = STATE(5120), + [sym_argument_list_no_parens] = STATE(5007), + [sym_argument_list_no_parens_with_block] = STATE(5302), + [sym_argument_list_with_parens] = STATE(5007), + [sym_argument_list_with_parens_and_block] = STATE(5302), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5303), + [sym_brace_block] = STATE(5304), + [sym_block_argument] = STATE(5305), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(743), @@ -41039,83 +41212,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(869), }, [34] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5387), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5209), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(34), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5395), - [sym_double_splat] = STATE(5395), - [sym_named_expr] = STATE(5395), - [sym_argument_list_no_parens] = STATE(5100), - [sym_argument_list_no_parens_with_block] = STATE(5565), - [sym_argument_list_with_parens] = STATE(5100), - [sym_argument_list_with_parens_and_block] = STATE(5565), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(5568), - [sym_brace_block] = STATE(5569), - [sym_block_argument] = STATE(5528), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5210), + [sym_double_splat] = STATE(5210), + [sym_named_expr] = STATE(5210), + [sym_argument_list_no_parens] = STATE(4885), + [sym_argument_list_no_parens_with_block] = STATE(6094), + [sym_argument_list_with_parens] = STATE(4885), + [sym_argument_list_with_parens_and_block] = STATE(6094), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6095), + [sym_brace_block] = STATE(6096), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(799), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(799), + [anon_sym_DASH_EQ] = ACTIONS(799), + [anon_sym_AMP_DASH_EQ] = ACTIONS(799), + [anon_sym_STAR_EQ] = ACTIONS(799), + [anon_sym_AMP_STAR_EQ] = ACTIONS(799), + [anon_sym_SLASH_EQ] = ACTIONS(799), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(799), + [anon_sym_PERCENT_EQ] = ACTIONS(799), + [anon_sym_PIPE_EQ] = ACTIONS(799), + [anon_sym_AMP_EQ] = ACTIONS(799), + [anon_sym_CARET_EQ] = ACTIONS(799), + [anon_sym_STAR_STAR_EQ] = ACTIONS(799), + [anon_sym_LT_LT_EQ] = ACTIONS(799), + [anon_sym_GT_GT_EQ] = ACTIONS(799), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), + [anon_sym_AMP_AMP_EQ] = ACTIONS(799), + [anon_sym_COLON2] = ACTIONS(801), + [anon_sym_do] = ACTIONS(803), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_then] = ACTIONS(195), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(817), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(831), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(853), + }, + [35] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5230), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(35), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5232), + [sym_double_splat] = STATE(5232), + [sym_named_expr] = STATE(5232), + [sym_argument_list_no_parens] = STATE(5063), + [sym_argument_list_no_parens_with_block] = STATE(5707), + [sym_argument_list_with_parens] = STATE(5063), + [sym_argument_list_with_parens_and_block] = STATE(5707), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5709), + [sym_brace_block] = STATE(5715), + [sym_block_argument] = STATE(5819), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -41242,84 +41619,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(981), }, - [35] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5190), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(35), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5166), - [sym_double_splat] = STATE(5166), - [sym_named_expr] = STATE(5166), - [sym_argument_list_no_parens] = STATE(5047), - [sym_argument_list_no_parens_with_block] = STATE(6520), - [sym_argument_list_with_parens] = STATE(5047), - [sym_argument_list_with_parens_and_block] = STATE(6520), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(6521), - [sym_brace_block] = STATE(6527), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [36] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5259), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(36), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5473), + [sym_double_splat] = STATE(5473), + [sym_named_expr] = STATE(5473), + [sym_argument_list_no_parens] = STATE(5143), + [sym_argument_list_no_parens_with_block] = STATE(6346), + [sym_argument_list_with_parens] = STATE(5143), + [sym_argument_list_with_parens_and_block] = STATE(6346), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(6348), + [sym_brace_block] = STATE(6350), + [sym_block_argument] = STATE(6650), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -41446,288 +41823,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(999), }, - [36] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5103), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(36), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5104), - [sym_double_splat] = STATE(5104), - [sym_named_expr] = STATE(5104), - [sym_argument_list_no_parens] = STATE(4994), - [sym_argument_list_no_parens_with_block] = STATE(5757), - [sym_argument_list_with_parens] = STATE(4994), - [sym_argument_list_with_parens_and_block] = STATE(5757), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5778), - [sym_brace_block] = STATE(5794), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(799), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(799), - [anon_sym_DASH_EQ] = ACTIONS(799), - [anon_sym_AMP_DASH_EQ] = ACTIONS(799), - [anon_sym_STAR_EQ] = ACTIONS(799), - [anon_sym_AMP_STAR_EQ] = ACTIONS(799), - [anon_sym_SLASH_EQ] = ACTIONS(799), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(799), - [anon_sym_PERCENT_EQ] = ACTIONS(799), - [anon_sym_PIPE_EQ] = ACTIONS(799), - [anon_sym_AMP_EQ] = ACTIONS(799), - [anon_sym_CARET_EQ] = ACTIONS(799), - [anon_sym_STAR_STAR_EQ] = ACTIONS(799), - [anon_sym_LT_LT_EQ] = ACTIONS(799), - [anon_sym_GT_GT_EQ] = ACTIONS(799), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(799), - [anon_sym_AMP_AMP_EQ] = ACTIONS(799), - [anon_sym_COLON2] = ACTIONS(801), - [anon_sym_do] = ACTIONS(803), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(195), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(173), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(831), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(853), - }, [37] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5110), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5119), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(37), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5111), - [sym_double_splat] = STATE(5111), - [sym_named_expr] = STATE(5111), - [sym_argument_list_no_parens] = STATE(4992), - [sym_argument_list_no_parens_with_block] = STATE(5410), - [sym_argument_list_with_parens] = STATE(4992), - [sym_argument_list_with_parens_and_block] = STATE(5410), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5411), - [sym_brace_block] = STATE(5416), - [sym_block_argument] = STATE(5417), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5120), + [sym_double_splat] = STATE(5120), + [sym_named_expr] = STATE(5120), + [sym_argument_list_no_parens] = STATE(5007), + [sym_argument_list_no_parens_with_block] = STATE(5302), + [sym_argument_list_with_parens] = STATE(5007), + [sym_argument_list_with_parens_and_block] = STATE(5302), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5303), + [sym_brace_block] = STATE(5304), + [sym_block_argument] = STATE(5305), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(743), @@ -41855,83 +42028,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(869), }, [38] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5190), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5259), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(38), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5166), - [sym_double_splat] = STATE(5166), - [sym_named_expr] = STATE(5166), - [sym_argument_list_no_parens] = STATE(5047), - [sym_argument_list_no_parens_with_block] = STATE(6520), - [sym_argument_list_with_parens] = STATE(5047), - [sym_argument_list_with_parens_and_block] = STATE(6520), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(6521), - [sym_brace_block] = STATE(6527), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5473), + [sym_double_splat] = STATE(5473), + [sym_named_expr] = STATE(5473), + [sym_argument_list_no_parens] = STATE(5143), + [sym_argument_list_no_parens_with_block] = STATE(6346), + [sym_argument_list_with_parens] = STATE(5143), + [sym_argument_list_with_parens_and_block] = STATE(6346), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(6348), + [sym_brace_block] = STATE(6350), + [sym_block_argument] = STATE(6650), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -42058,286 +42231,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(999), }, [39] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5387), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), [sym_heredoc_body] = STATE(39), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5395), - [sym_double_splat] = STATE(5395), - [sym_named_expr] = STATE(5395), - [sym_argument_list_no_parens] = STATE(5100), - [sym_argument_list_no_parens_with_block] = STATE(5565), - [sym_argument_list_with_parens] = STATE(5100), - [sym_argument_list_with_parens_and_block] = STATE(5565), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(5568), - [sym_brace_block] = STATE(5569), - [sym_block_argument] = STATE(5528), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(873), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(195), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_AMP_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_AMP_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_PIPE_EQ] = ACTIONS(929), - [anon_sym_AMP_EQ] = ACTIONS(929), - [anon_sym_CARET_EQ] = ACTIONS(929), - [anon_sym_STAR_STAR_EQ] = ACTIONS(929), - [anon_sym_LT_LT_EQ] = ACTIONS(929), - [anon_sym_GT_GT_EQ] = ACTIONS(929), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(929), - [anon_sym_AMP_AMP_EQ] = ACTIONS(929), - [anon_sym_COLON2] = ACTIONS(931), - [anon_sym_do] = ACTIONS(195), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(945), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(955), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(957), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(959), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(981), - }, - [40] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5604), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(40), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5605), - [sym_double_splat] = STATE(5605), - [sym_named_expr] = STATE(5605), - [sym_argument_list_no_parens] = STATE(5169), - [sym_argument_list_no_parens_with_block] = STATE(6865), - [sym_argument_list_with_parens] = STATE(5169), - [sym_argument_list_with_parens_and_block] = STATE(6865), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6906), - [sym_brace_block] = STATE(6660), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5701), + [sym_double_splat] = STATE(5701), + [sym_named_expr] = STATE(5701), + [sym_argument_list_no_parens] = STATE(5474), + [sym_argument_list_no_parens_with_block] = STATE(6124), + [sym_argument_list_with_parens] = STATE(5474), + [sym_argument_list_with_parens_and_block] = STATE(6124), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6125), + [sym_brace_block] = STATE(6126), + [sym_block_argument] = STATE(6127), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -42419,128 +42389,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1059), [anon_sym_AMP_AMP_EQ] = ACTIONS(1059), [anon_sym_COLON2] = ACTIONS(1061), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [anon_sym_do] = ACTIONS(195), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1075), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(173), [sym__end_of_with_expression] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1091), + [sym__block_ampersand] = ACTIONS(1089), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1113), + [sym__start_of_parenless_args] = ACTIONS(1111), }, - [41] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5623), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(41), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5624), - [sym_double_splat] = STATE(5624), - [sym_named_expr] = STATE(5624), - [sym_argument_list_no_parens] = STATE(5167), - [sym_argument_list_no_parens_with_block] = STATE(5784), - [sym_argument_list_with_parens] = STATE(5167), - [sym_argument_list_with_parens_and_block] = STATE(5784), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(5785), - [sym_brace_block] = STATE(5786), - [sym_block_argument] = STATE(5787), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [40] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(40), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5793), + [sym_double_splat] = STATE(5793), + [sym_named_expr] = STATE(5793), + [sym_argument_list_no_parens] = STATE(5500), + [sym_argument_list_no_parens_with_block] = STATE(6732), + [sym_argument_list_with_parens] = STATE(5500), + [sym_argument_list_with_parens_and_block] = STATE(6732), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6733), + [sym_brace_block] = STATE(6736), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -42561,7 +42531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1021), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1113), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -42597,153 +42567,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1115), + [anon_sym_LPAREN2] = ACTIONS(1117), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(1121), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1121), - [anon_sym_DASH_EQ] = ACTIONS(1121), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1121), - [anon_sym_STAR_EQ] = ACTIONS(1121), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1121), - [anon_sym_SLASH_EQ] = ACTIONS(1121), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1121), - [anon_sym_PERCENT_EQ] = ACTIONS(1121), - [anon_sym_PIPE_EQ] = ACTIONS(1121), - [anon_sym_AMP_EQ] = ACTIONS(1121), - [anon_sym_CARET_EQ] = ACTIONS(1121), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1121), - [anon_sym_LT_LT_EQ] = ACTIONS(1121), - [anon_sym_GT_GT_EQ] = ACTIONS(1121), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1121), - [anon_sym_COLON2] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(195), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), + [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(1121), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(1125), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(173), [sym__end_of_with_expression] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(173), [sym__block_ampersand] = ACTIONS(1127), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(1129), }, + [41] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5230), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(41), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5232), + [sym_double_splat] = STATE(5232), + [sym_named_expr] = STATE(5232), + [sym_argument_list_no_parens] = STATE(5063), + [sym_argument_list_no_parens_with_block] = STATE(5707), + [sym_argument_list_with_parens] = STATE(5063), + [sym_argument_list_with_parens_and_block] = STATE(5707), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5709), + [sym_brace_block] = STATE(5715), + [sym_block_argument] = STATE(5819), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_RBRACK_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(929), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(929), + [anon_sym_AMP_DASH_EQ] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(929), + [anon_sym_AMP_STAR_EQ] = ACTIONS(929), + [anon_sym_SLASH_EQ] = ACTIONS(929), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(929), + [anon_sym_PERCENT_EQ] = ACTIONS(929), + [anon_sym_PIPE_EQ] = ACTIONS(929), + [anon_sym_AMP_EQ] = ACTIONS(929), + [anon_sym_CARET_EQ] = ACTIONS(929), + [anon_sym_STAR_STAR_EQ] = ACTIONS(929), + [anon_sym_LT_LT_EQ] = ACTIONS(929), + [anon_sym_GT_GT_EQ] = ACTIONS(929), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(929), + [anon_sym_AMP_AMP_EQ] = ACTIONS(929), + [anon_sym_COLON2] = ACTIONS(931), + [anon_sym_do] = ACTIONS(195), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(945), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(955), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(957), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(959), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(981), + }, [42] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5502), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(42), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5509), - [sym_double_splat] = STATE(5509), - [sym_named_expr] = STATE(5509), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5822), + [sym_double_splat] = STATE(5822), + [sym_named_expr] = STATE(5822), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -42801,7 +42974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), [anon_sym_COLON] = ACTIONS(1151), - [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_LPAREN2] = ACTIONS(513), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), @@ -42825,7 +42998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1155), [anon_sym_AMP_AMP_EQ] = ACTIONS(1155), [anon_sym_COLON2] = ACTIONS(195), - [anon_sym_do] = ACTIONS(195), + [anon_sym_do] = ACTIONS(521), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -42833,7 +43006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(531), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_brace_block] = ACTIONS(535), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(173), @@ -42869,83 +43042,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1169), }, [43] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5670), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5773), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(43), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5671), - [sym_double_splat] = STATE(5671), - [sym_named_expr] = STATE(5671), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5774), + [sym_double_splat] = STATE(5774), + [sym_named_expr] = STATE(5774), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -43003,7 +43176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), [anon_sym_COLON] = ACTIONS(1173), - [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_LPAREN2] = ACTIONS(577), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), @@ -43027,7 +43200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1175), [anon_sym_AMP_AMP_EQ] = ACTIONS(1175), [anon_sym_COLON2] = ACTIONS(195), - [anon_sym_do] = ACTIONS(521), + [anon_sym_do] = ACTIONS(195), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -43035,7 +43208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(531), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_brace_block] = ACTIONS(583), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(173), @@ -43071,83 +43244,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(1179), }, [44] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5332), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), [sym_heredoc_body] = STATE(44), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5338), - [sym_double_splat] = STATE(5338), - [sym_named_expr] = STATE(5338), - [sym_argument_list_no_parens] = STATE(4994), - [sym_argument_list_no_parens_with_block] = STATE(5757), - [sym_argument_list_with_parens] = STATE(4994), - [sym_argument_list_with_parens_and_block] = STATE(5757), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5778), - [sym_brace_block] = STATE(5794), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5701), + [sym_double_splat] = STATE(5701), + [sym_named_expr] = STATE(5701), + [sym_argument_list_no_parens] = STATE(5474), + [sym_argument_list_no_parens_with_block] = STATE(6124), + [sym_argument_list_with_parens] = STATE(5474), + [sym_argument_list_with_parens_and_block] = STATE(6124), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6125), + [sym_brace_block] = STATE(6126), + [sym_block_argument] = STATE(6127), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(1059), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1059), + [anon_sym_DASH_EQ] = ACTIONS(1059), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1059), + [anon_sym_STAR_EQ] = ACTIONS(1059), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1059), + [anon_sym_SLASH_EQ] = ACTIONS(1059), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1059), + [anon_sym_PERCENT_EQ] = ACTIONS(1059), + [anon_sym_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP_EQ] = ACTIONS(1059), + [anon_sym_CARET_EQ] = ACTIONS(1059), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1059), + [anon_sym_LT_LT_EQ] = ACTIONS(1059), + [anon_sym_GT_GT_EQ] = ACTIONS(1059), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1059), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1059), + [anon_sym_COLON2] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(195), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1075), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(173), + [sym__end_of_with_expression] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(1089), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1111), + }, + [45] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5256), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(45), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5260), + [sym_double_splat] = STATE(5260), + [sym_named_expr] = STATE(5260), + [sym_argument_list_no_parens] = STATE(4885), + [sym_argument_list_no_parens_with_block] = STATE(6094), + [sym_argument_list_with_parens] = STATE(4885), + [sym_argument_list_with_parens_and_block] = STATE(6094), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6095), + [sym_brace_block] = STATE(6096), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(743), @@ -43272,84 +43647,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(1189), }, - [45] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5623), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(45), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5624), - [sym_double_splat] = STATE(5624), - [sym_named_expr] = STATE(5624), - [sym_argument_list_no_parens] = STATE(5167), - [sym_argument_list_no_parens_with_block] = STATE(5784), - [sym_argument_list_with_parens] = STATE(5167), - [sym_argument_list_with_parens_and_block] = STATE(5784), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(5785), - [sym_brace_block] = STATE(5786), - [sym_block_argument] = STATE(5787), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [46] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(46), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5793), + [sym_double_splat] = STATE(5793), + [sym_named_expr] = STATE(5793), + [sym_argument_list_no_parens] = STATE(5500), + [sym_argument_list_no_parens_with_block] = STATE(6732), + [sym_argument_list_with_parens] = STATE(5500), + [sym_argument_list_with_parens_and_block] = STATE(6732), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6733), + [sym_brace_block] = STATE(6736), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -43370,7 +43745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1021), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1113), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -43406,152 +43781,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_LPAREN2] = ACTIONS(1117), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(1121), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1121), - [anon_sym_DASH_EQ] = ACTIONS(1121), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1121), - [anon_sym_STAR_EQ] = ACTIONS(1121), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1121), - [anon_sym_SLASH_EQ] = ACTIONS(1121), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1121), - [anon_sym_PERCENT_EQ] = ACTIONS(1121), - [anon_sym_PIPE_EQ] = ACTIONS(1121), - [anon_sym_AMP_EQ] = ACTIONS(1121), - [anon_sym_CARET_EQ] = ACTIONS(1121), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1121), - [anon_sym_LT_LT_EQ] = ACTIONS(1121), - [anon_sym_GT_GT_EQ] = ACTIONS(1121), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1121), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1121), - [anon_sym_COLON2] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(195), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), + [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(1121), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(1125), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(173), [sym__end_of_with_expression] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(173), [sym__block_ampersand] = ACTIONS(1127), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(1129), }, - [46] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5604), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(46), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5605), - [sym_double_splat] = STATE(5605), - [sym_named_expr] = STATE(5605), - [sym_argument_list_no_parens] = STATE(5169), - [sym_argument_list_no_parens_with_block] = STATE(6865), - [sym_argument_list_with_parens] = STATE(5169), - [sym_argument_list_with_parens_and_block] = STATE(6865), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6906), - [sym_brace_block] = STATE(6660), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [47] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5828), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(47), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5829), + [sym_double_splat] = STATE(5829), + [sym_named_expr] = STATE(5829), + [sym_argument_list_no_parens] = STATE(5500), + [sym_argument_list_no_parens_with_block] = STATE(6732), + [sym_argument_list_with_parens] = STATE(5500), + [sym_argument_list_with_parens_and_block] = STATE(6732), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6733), + [sym_brace_block] = STATE(6736), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -43566,13 +43941,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1015), [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DASH_GT] = ACTIONS(1021), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1191), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -43608,172 +43982,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_LPAREN2] = ACTIONS(1117), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(1059), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1059), - [anon_sym_DASH_EQ] = ACTIONS(1059), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1059), - [anon_sym_STAR_EQ] = ACTIONS(1059), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1059), - [anon_sym_SLASH_EQ] = ACTIONS(1059), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1059), - [anon_sym_PERCENT_EQ] = ACTIONS(1059), - [anon_sym_PIPE_EQ] = ACTIONS(1059), - [anon_sym_AMP_EQ] = ACTIONS(1059), - [anon_sym_CARET_EQ] = ACTIONS(1059), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1059), - [anon_sym_LT_LT_EQ] = ACTIONS(1059), - [anon_sym_GT_GT_EQ] = ACTIONS(1059), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1059), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1059), - [anon_sym_COLON2] = ACTIONS(1061), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1193), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1193), + [anon_sym_COLON2] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(173), [sym__end_of_with_expression] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1091), + [sym__block_ampersand] = ACTIONS(1197), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1113), + [sym__start_of_parenless_args] = ACTIONS(1199), }, - [47] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5727), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(47), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), + [48] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5773), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(48), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5456), - [sym_double_splat] = STATE(5456), - [sym_named_expr] = STATE(5456), - [sym_argument_list_no_parens] = STATE(5169), - [sym_argument_list_no_parens_with_block] = STATE(6865), - [sym_argument_list_with_parens] = STATE(5169), - [sym_argument_list_with_parens_and_block] = STATE(6865), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6906), - [sym_brace_block] = STATE(6660), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5774), + [sym_double_splat] = STATE(5774), + [sym_named_expr] = STATE(5774), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DASH_GT] = ACTIONS(479), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1171), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -43785,176 +44160,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(577), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(1193), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1193), - [anon_sym_DASH_EQ] = ACTIONS(1193), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1193), - [anon_sym_STAR_EQ] = ACTIONS(1193), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1193), - [anon_sym_SLASH_EQ] = ACTIONS(1193), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1193), - [anon_sym_PERCENT_EQ] = ACTIONS(1193), - [anon_sym_PIPE_EQ] = ACTIONS(1193), - [anon_sym_AMP_EQ] = ACTIONS(1193), - [anon_sym_CARET_EQ] = ACTIONS(1193), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1193), - [anon_sym_LT_LT_EQ] = ACTIONS(1193), - [anon_sym_GT_GT_EQ] = ACTIONS(1193), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1193), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1193), - [anon_sym_COLON2] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [anon_sym_PLUS_EQ] = ACTIONS(1175), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1175), + [anon_sym_DASH_EQ] = ACTIONS(1175), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1175), + [anon_sym_STAR_EQ] = ACTIONS(1175), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1175), + [anon_sym_SLASH_EQ] = ACTIONS(1175), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1175), + [anon_sym_PERCENT_EQ] = ACTIONS(1175), + [anon_sym_PIPE_EQ] = ACTIONS(1175), + [anon_sym_AMP_EQ] = ACTIONS(1175), + [anon_sym_CARET_EQ] = ACTIONS(1175), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1175), + [anon_sym_LT_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_GT_EQ] = ACTIONS(1175), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1175), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1175), + [anon_sym_COLON2] = ACTIONS(195), + [anon_sym_do] = ACTIONS(195), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(173), - [sym__end_of_with_expression] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1161), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1163), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1197), + [sym__block_ampersand] = ACTIONS(1177), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1199), + [sym__start_of_parenless_args] = ACTIONS(1179), }, - [48] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5502), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(48), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5509), - [sym_double_splat] = STATE(5509), - [sym_named_expr] = STATE(5509), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [49] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(49), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5822), + [sym_double_splat] = STATE(5822), + [sym_named_expr] = STATE(5822), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -44011,7 +44385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1149), [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_LPAREN2] = ACTIONS(513), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), @@ -44035,7 +44409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1155), [anon_sym_AMP_AMP_EQ] = ACTIONS(1155), [anon_sym_COLON2] = ACTIONS(195), - [anon_sym_do] = ACTIONS(195), + [anon_sym_do] = ACTIONS(521), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -44043,7 +44417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(531), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_brace_block] = ACTIONS(535), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(173), @@ -44078,84 +44452,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(1169), }, - [49] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(49), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [50] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(50), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -44170,13 +44544,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_COMMA] = ACTIONS(307), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DASH_GT] = ACTIONS(479), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1201), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -44279,84 +44653,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(739), }, - [50] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(50), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [51] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(51), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -44371,13 +44745,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_COMMA] = ACTIONS(1203), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DASH_GT] = ACTIONS(479), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_EQ] = ACTIONS(1205), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -44480,84 +44854,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(739), }, - [51] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(51), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [52] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(52), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -44572,13 +44946,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(1203), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DASH_GT] = ACTIONS(479), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(731), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -44681,84 +45055,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(739), }, - [52] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(52), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [53] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(53), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -44882,84 +45256,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(739), }, - [53] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(53), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [54] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(54), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -45083,84 +45457,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(739), }, - [54] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(54), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [55] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(55), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -45284,85 +45658,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(739), }, - [55] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5670), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(55), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5671), - [sym_double_splat] = STATE(5671), - [sym_named_expr] = STATE(5671), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), + [56] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3599), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(56), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3600), + [sym_double_splat] = STATE(3600), + [sym_named_expr] = STATE(3600), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), @@ -45376,13 +45750,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DASH_GT] = ACTIONS(479), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_EQ] = ACTIONS(731), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -45394,54 +45767,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), + [sym__constant_segment] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), + [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), [anon_sym_LPAREN2] = ACTIONS(513), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(1175), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1175), - [anon_sym_DASH_EQ] = ACTIONS(1175), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1175), - [anon_sym_STAR_EQ] = ACTIONS(1175), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1175), - [anon_sym_SLASH_EQ] = ACTIONS(1175), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1175), - [anon_sym_PERCENT_EQ] = ACTIONS(1175), - [anon_sym_PIPE_EQ] = ACTIONS(1175), - [anon_sym_AMP_EQ] = ACTIONS(1175), - [anon_sym_CARET_EQ] = ACTIONS(1175), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1175), - [anon_sym_LT_LT_EQ] = ACTIONS(1175), - [anon_sym_GT_GT_EQ] = ACTIONS(1175), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1175), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1175), - [anon_sym_COLON2] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_AMP_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_AMP_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_STAR_STAR_EQ] = ACTIONS(733), + [anon_sym_LT_LT_EQ] = ACTIONS(733), + [anon_sym_GT_GT_EQ] = ACTIONS(733), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_AMP_EQ] = ACTIONS(733), + [anon_sym_COLON2] = ACTIONS(735), [anon_sym_do] = ACTIONS(521), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), @@ -45454,21 +45827,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1161), + [sym__unary_star] = ACTIONS(545), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1163), + [sym__unary_double_star] = ACTIONS(547), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1177), + [sym__block_ampersand] = ACTIONS(549), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1167), + [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), @@ -45483,103 +45856,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1179), + [sym__start_of_parenless_args] = ACTIONS(571), }, - [56] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2510), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(56), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2511), - [sym_double_splat] = STATE(2511), - [sym_named_expr] = STATE(2511), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(177), + [57] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(57), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3262), + [sym_double_splat] = STATE(3262), + [sym_named_expr] = STATE(3262), + [sym_argument_list_no_parens] = STATE(3137), + [sym_argument_list_no_parens_with_block] = STATE(3382), + [sym_argument_list_with_parens] = STATE(3137), + [sym_argument_list_with_parens_and_block] = STATE(3382), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3384), + [sym_brace_block] = STATE(3385), + [sym_block_argument] = STATE(3388), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(321), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DASH_GT] = ACTIONS(339), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), [anon_sym_EQ] = ACTIONS(731), @@ -45594,34 +45967,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(373), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), [anon_sym_PLUS_EQ] = ACTIONS(733), @@ -45642,144 +46015,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(263), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(265), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(267), + [sym__block_ampersand] = ACTIONS(407), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(289), + [sym__start_of_parenless_args] = ACTIONS(429), }, - [57] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5727), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(57), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5456), - [sym_double_splat] = STATE(5456), - [sym_named_expr] = STATE(5456), - [sym_argument_list_no_parens] = STATE(5169), - [sym_argument_list_no_parens_with_block] = STATE(6865), - [sym_argument_list_with_parens] = STATE(5169), - [sym_argument_list_with_parens_and_block] = STATE(6865), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6906), - [sym_brace_block] = STATE(6660), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), + [58] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5119), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(58), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5120), + [sym_double_splat] = STATE(5120), + [sym_named_expr] = STATE(5120), + [sym_argument_list_no_parens] = STATE(5007), + [sym_argument_list_no_parens_with_block] = STATE(5302), + [sym_argument_list_with_parens] = STATE(5007), + [sym_argument_list_with_parens_and_block] = STATE(5302), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5303), + [sym_brace_block] = STATE(5304), + [sym_block_argument] = STATE(5305), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DASH_GT] = ACTIONS(761), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), [anon_sym_EQ] = ACTIONS(731), @@ -45794,34 +46167,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(859), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), [anon_sym_PLUS_EQ] = ACTIONS(733), @@ -45842,127 +46215,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(865), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(827), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(829), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1197), + [sym__block_ampersand] = ACTIONS(867), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1199), + [sym__start_of_parenless_args] = ACTIONS(869), }, - [58] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2519), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(58), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2520), - [sym_double_splat] = STATE(2520), - [sym_named_expr] = STATE(2520), - [sym_argument_list_no_parens] = STATE(2418), - [sym_argument_list_no_parens_with_block] = STATE(2653), - [sym_argument_list_with_parens] = STATE(2418), - [sym_argument_list_with_parens_and_block] = STATE(2653), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2661), - [sym_brace_block] = STATE(2700), - [sym_block_argument] = STATE(2712), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [59] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5746), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(59), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5752), + [sym_double_splat] = STATE(5752), + [sym_named_expr] = STATE(5752), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(1217), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1217), + [anon_sym_DASH_EQ] = ACTIONS(1217), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1217), + [anon_sym_STAR_EQ] = ACTIONS(1217), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1217), + [anon_sym_SLASH_EQ] = ACTIONS(1217), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1217), + [anon_sym_PERCENT_EQ] = ACTIONS(1217), + [anon_sym_PIPE_EQ] = ACTIONS(1217), + [anon_sym_AMP_EQ] = ACTIONS(1217), + [anon_sym_CARET_EQ] = ACTIONS(1217), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1217), + [anon_sym_LT_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_GT_EQ] = ACTIONS(1217), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1217), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1217), + [anon_sym_COLON2] = ACTIONS(195), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(1219), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1221), + }, + [60] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(60), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2482), + [sym_double_splat] = STATE(2482), + [sym_named_expr] = STATE(2482), + [sym_argument_list_no_parens] = STATE(2448), + [sym_argument_list_no_parens_with_block] = STATE(2702), + [sym_argument_list_with_parens] = STATE(2448), + [sym_argument_list_with_parens_and_block] = STATE(2702), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2705), + [sym_brace_block] = STATE(2707), + [sym_block_argument] = STATE(2708), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(177), [sym_comment] = ACTIONS(5), @@ -46042,7 +46615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1223), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), @@ -46085,301 +46658,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(305), }, - [59] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3136), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(59), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3137), - [sym_double_splat] = STATE(3137), - [sym_named_expr] = STATE(3137), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_AMP_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_AMP_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_STAR_STAR_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_AMP_EQ] = ACTIONS(733), - [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(455), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(457), - }, - [60] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3727), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(60), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3728), - [sym_double_splat] = STATE(3728), - [sym_named_expr] = STATE(3728), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), + [61] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2577), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(61), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2535), + [sym_double_splat] = STATE(2535), + [sym_named_expr] = STATE(2535), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(177), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DASH_GT] = ACTIONS(197), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), [anon_sym_EQ] = ACTIONS(731), @@ -46394,34 +46767,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(203), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(231), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), [anon_sym_PLUS_EQ] = ACTIONS(733), @@ -46442,127 +46815,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [anon_sym_do] = ACTIONS(239), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_brace_block] = ACTIONS(253), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(545), + [sym__unary_star] = ACTIONS(263), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(547), + [sym__unary_double_star] = ACTIONS(265), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(585), + [sym__block_ampersand] = ACTIONS(315), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(587), + [sym__start_of_parenless_args] = ACTIONS(317), }, - [61] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5110), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(61), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5111), - [sym_double_splat] = STATE(5111), - [sym_named_expr] = STATE(5111), - [sym_argument_list_no_parens] = STATE(4992), - [sym_argument_list_no_parens_with_block] = STATE(5410), - [sym_argument_list_with_parens] = STATE(4992), - [sym_argument_list_with_parens_and_block] = STATE(5410), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5411), - [sym_brace_block] = STATE(5416), - [sym_block_argument] = STATE(5417), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [62] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5256), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(62), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5260), + [sym_double_splat] = STATE(5260), + [sym_named_expr] = STATE(5260), + [sym_argument_list_no_parens] = STATE(4885), + [sym_argument_list_no_parens_with_block] = STATE(6094), + [sym_argument_list_with_parens] = STATE(4885), + [sym_argument_list_with_parens_and_block] = STATE(6094), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6095), + [sym_brace_block] = STATE(6096), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(5), @@ -46618,7 +46991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(791), [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(859), + [anon_sym_LPAREN2] = ACTIONS(795), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), @@ -46642,7 +47015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(803), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), @@ -46650,7 +47023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(813), [aux_sym_asm_token1] = ACTIONS(815), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(865), + [sym__start_of_brace_block] = ACTIONS(817), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), [sym__start_of_index_operator] = ACTIONS(173), @@ -46666,7 +47039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(173), [sym__unary_double_star] = ACTIONS(829), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(867), + [sym__block_ampersand] = ACTIONS(1187), [sym_binary_ampersand] = ACTIONS(173), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), @@ -46683,86 +47056,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(851), [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(869), + [sym__start_of_parenless_args] = ACTIONS(1189), }, - [62] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5623), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(62), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5624), - [sym_double_splat] = STATE(5624), - [sym_named_expr] = STATE(5624), - [sym_argument_list_no_parens] = STATE(5167), - [sym_argument_list_no_parens_with_block] = STATE(5784), - [sym_argument_list_with_parens] = STATE(5167), - [sym_argument_list_with_parens_and_block] = STATE(5784), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(5785), - [sym_brace_block] = STATE(5786), - [sym_block_argument] = STATE(5787), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [63] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5828), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(63), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5829), + [sym_double_splat] = STATE(5829), + [sym_named_expr] = STATE(5829), + [sym_argument_list_no_parens] = STATE(5500), + [sym_argument_list_no_parens_with_block] = STATE(6732), + [sym_argument_list_with_parens] = STATE(5500), + [sym_argument_list_with_parens_and_block] = STATE(6732), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6733), + [sym_brace_block] = STATE(6736), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -46818,7 +47191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_LPAREN2] = ACTIONS(1117), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), @@ -46842,127 +47215,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(1125), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1197), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1129), + [sym__start_of_parenless_args] = ACTIONS(1199), }, - [63] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3168), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(63), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3169), - [sym_double_splat] = STATE(3169), - [sym_named_expr] = STATE(3169), - [sym_argument_list_no_parens] = STATE(2858), - [sym_argument_list_no_parens_with_block] = STATE(3435), - [sym_argument_list_with_parens] = STATE(2858), - [sym_argument_list_with_parens_and_block] = STATE(3435), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3436), - [sym_brace_block] = STATE(3498), - [sym_block_argument] = STATE(3502), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [64] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3602), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(64), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3603), + [sym_double_splat] = STATE(3603), + [sym_named_expr] = STATE(3603), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_AMP_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_AMP_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_STAR_STAR_EQ] = ACTIONS(733), + [anon_sym_LT_LT_EQ] = ACTIONS(733), + [anon_sym_GT_GT_EQ] = ACTIONS(733), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_AMP_EQ] = ACTIONS(733), + [anon_sym_COLON2] = ACTIONS(735), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(585), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(587), + }, + [65] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3292), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(65), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3293), + [sym_double_splat] = STATE(3293), + [sym_named_expr] = STATE(3293), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_LPAREN] = ACTIONS(321), [sym_comment] = ACTIONS(5), @@ -47018,7 +47591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(437), + [anon_sym_LPAREN2] = ACTIONS(435), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), @@ -47042,127 +47615,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(443), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(445), + [sym__block_ampersand] = ACTIONS(455), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(447), + [sym__start_of_parenless_args] = ACTIONS(457), }, - [64] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3563), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(64), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3564), - [sym_double_splat] = STATE(3564), - [sym_named_expr] = STATE(3564), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [66] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(66), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5701), + [sym_double_splat] = STATE(5701), + [sym_named_expr] = STATE(5701), + [sym_argument_list_no_parens] = STATE(5474), + [sym_argument_list_no_parens_with_block] = STATE(6124), + [sym_argument_list_with_parens] = STATE(5474), + [sym_argument_list_with_parens_and_block] = STATE(6124), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6125), + [sym_brace_block] = STATE(6126), + [sym_block_argument] = STATE(6127), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_AMP_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_AMP_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_STAR_STAR_EQ] = ACTIONS(733), + [anon_sym_LT_LT_EQ] = ACTIONS(733), + [anon_sym_GT_GT_EQ] = ACTIONS(733), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_AMP_EQ] = ACTIONS(733), + [anon_sym_COLON2] = ACTIONS(735), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1075), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(1089), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1111), + }, + [67] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3829), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(67), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), @@ -47285,84 +48058,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(727), }, - [65] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5190), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(65), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5166), - [sym_double_splat] = STATE(5166), - [sym_named_expr] = STATE(5166), - [sym_argument_list_no_parens] = STATE(5047), - [sym_argument_list_no_parens_with_block] = STATE(6520), - [sym_argument_list_with_parens] = STATE(5047), - [sym_argument_list_with_parens_and_block] = STATE(6520), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(6521), - [sym_brace_block] = STATE(6527), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [68] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5259), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(68), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5473), + [sym_double_splat] = STATE(5473), + [sym_named_expr] = STATE(5473), + [sym_argument_list_no_parens] = STATE(5143), + [sym_argument_list_no_parens_with_block] = STATE(6346), + [sym_argument_list_with_parens] = STATE(5143), + [sym_argument_list_with_parens_and_block] = STATE(6346), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(6348), + [sym_brace_block] = STATE(6350), + [sym_block_argument] = STATE(6650), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -47485,84 +48258,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(999), }, - [66] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5547), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(66), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5634), - [sym_double_splat] = STATE(5634), - [sym_named_expr] = STATE(5634), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [69] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5746), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(69), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5752), + [sym_double_splat] = STATE(5752), + [sym_named_expr] = STATE(5752), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -47666,7 +48439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(173), [sym__unary_double_star] = ACTIONS(1163), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1221), + [sym__block_ampersand] = ACTIONS(1219), [sym_binary_ampersand] = ACTIONS(173), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), @@ -47683,86 +48456,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1223), + [sym__start_of_parenless_args] = ACTIONS(1221), }, - [67] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3738), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(67), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3739), - [sym_double_splat] = STATE(3739), - [sym_named_expr] = STATE(3739), - [sym_argument_list_no_parens] = STATE(3515), - [sym_argument_list_no_parens_with_block] = STATE(3837), - [sym_argument_list_with_parens] = STATE(3515), - [sym_argument_list_with_parens_and_block] = STATE(3837), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(3847), - [sym_brace_block] = STATE(3855), - [sym_block_argument] = STATE(3857), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [70] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3613), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(70), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_argument_list_no_parens] = STATE(3551), + [sym_argument_list_no_parens_with_block] = STATE(4298), + [sym_argument_list_with_parens] = STATE(3551), + [sym_argument_list_with_parens_and_block] = STATE(4298), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4299), + [sym_brace_block] = STATE(4300), + [sym_block_argument] = STATE(4301), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), @@ -47842,7 +48615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1229), [anon_sym_begin] = ACTIONS(653), [anon_sym_while] = ACTIONS(655), [anon_sym_until] = ACTIONS(657), @@ -47885,84 +48658,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(717), }, - [68] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5387), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(68), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5395), - [sym_double_splat] = STATE(5395), - [sym_named_expr] = STATE(5395), - [sym_argument_list_no_parens] = STATE(5100), - [sym_argument_list_no_parens_with_block] = STATE(5565), - [sym_argument_list_with_parens] = STATE(5100), - [sym_argument_list_with_parens_and_block] = STATE(5565), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(5568), - [sym_brace_block] = STATE(5569), - [sym_block_argument] = STATE(5528), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [71] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5230), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(71), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5232), + [sym_double_splat] = STATE(5232), + [sym_named_expr] = STATE(5232), + [sym_argument_list_no_parens] = STATE(5063), + [sym_argument_list_no_parens_with_block] = STATE(5707), + [sym_argument_list_with_parens] = STATE(5063), + [sym_argument_list_with_parens_and_block] = STATE(5707), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5709), + [sym_brace_block] = STATE(5715), + [sym_block_argument] = STATE(5819), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -48042,7 +48815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1231), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -48085,84 +48858,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(981), }, - [69] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5502), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(69), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5509), - [sym_double_splat] = STATE(5509), - [sym_named_expr] = STATE(5509), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [72] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5773), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(72), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5774), + [sym_double_splat] = STATE(5774), + [sym_named_expr] = STATE(5774), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -48242,7 +49015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1225), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -48266,7 +49039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(173), [sym__unary_double_star] = ACTIONS(1163), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1165), + [sym__block_ampersand] = ACTIONS(1177), [sym_binary_ampersand] = ACTIONS(173), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), @@ -48283,86 +49056,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1169), + [sym__start_of_parenless_args] = ACTIONS(1179), }, - [70] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2482), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(70), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2484), - [sym_double_splat] = STATE(2484), - [sym_named_expr] = STATE(2484), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [73] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5209), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(73), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5210), + [sym_double_splat] = STATE(5210), + [sym_named_expr] = STATE(5210), + [sym_argument_list_no_parens] = STATE(4885), + [sym_argument_list_no_parens_with_block] = STATE(6094), + [sym_argument_list_with_parens] = STATE(4885), + [sym_argument_list_with_parens_and_block] = STATE(6094), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6095), + [sym_brace_block] = STATE(6096), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(731), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(173), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_AMP_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_AMP_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_STAR_STAR_EQ] = ACTIONS(733), + [anon_sym_LT_LT_EQ] = ACTIONS(733), + [anon_sym_GT_GT_EQ] = ACTIONS(733), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_AMP_EQ] = ACTIONS(733), + [anon_sym_COLON2] = ACTIONS(735), + [anon_sym_do] = ACTIONS(803), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(817), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(173), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(173), + [sym__block_ampersand] = ACTIONS(831), + [sym_binary_ampersand] = ACTIONS(173), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(173), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(853), + }, + [74] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2528), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(74), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2529), + [sym_double_splat] = STATE(2529), + [sym_named_expr] = STATE(2529), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), [anon_sym_LPAREN] = ACTIONS(177), [sym_comment] = ACTIONS(5), @@ -48466,7 +49439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(173), [sym__unary_double_star] = ACTIONS(265), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(315), + [sym__block_ampersand] = ACTIONS(267), [sym_binary_ampersand] = ACTIONS(173), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), @@ -48483,103 +49456,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(317), + [sym__start_of_parenless_args] = ACTIONS(289), }, - [71] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3801), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(71), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3802), - [sym_double_splat] = STATE(3802), - [sym_named_expr] = STATE(3802), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(591), + [75] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3204), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(75), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3205), + [sym_double_splat] = STATE(3205), + [sym_named_expr] = STATE(3205), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(321), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(339), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), [anon_sym_EQ] = ACTIONS(731), @@ -48594,34 +49567,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(435), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), [anon_sym_PLUS_EQ] = ACTIONS(733), @@ -48642,127 +49615,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(651), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(665), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(675), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(677), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(679), + [sym__block_ampersand] = ACTIONS(445), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(701), + [sym__start_of_parenless_args] = ACTIONS(447), }, - [72] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5604), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(72), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5605), - [sym_double_splat] = STATE(5605), - [sym_named_expr] = STATE(5605), - [sym_argument_list_no_parens] = STATE(5169), - [sym_argument_list_no_parens_with_block] = STATE(6865), - [sym_argument_list_with_parens] = STATE(5169), - [sym_argument_list_with_parens_and_block] = STATE(6865), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6906), - [sym_brace_block] = STATE(6660), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [76] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(76), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5793), + [sym_double_splat] = STATE(5793), + [sym_named_expr] = STATE(5793), + [sym_argument_list_no_parens] = STATE(5500), + [sym_argument_list_no_parens_with_block] = STATE(6732), + [sym_argument_list_with_parens] = STATE(5500), + [sym_argument_list_with_parens_and_block] = STATE(6732), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6733), + [sym_brace_block] = STATE(6736), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -48818,7 +49791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_LPAREN2] = ACTIONS(1117), [anon_sym_QMARK] = ACTIONS(173), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), @@ -48842,927 +49815,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), [anon_sym_AMP_AMP_EQ] = ACTIONS(733), [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1091), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1113), - }, - [73] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5332), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(73), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5338), - [sym_double_splat] = STATE(5338), - [sym_named_expr] = STATE(5338), - [sym_argument_list_no_parens] = STATE(4994), - [sym_argument_list_no_parens_with_block] = STATE(5757), - [sym_argument_list_with_parens] = STATE(4994), - [sym_argument_list_with_parens_and_block] = STATE(5757), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5778), - [sym_brace_block] = STATE(5794), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_AMP_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_AMP_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_STAR_STAR_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_AMP_EQ] = ACTIONS(733), - [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(803), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1187), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1189), - }, - [74] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3798), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(74), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3799), - [sym_double_splat] = STATE(3799), - [sym_named_expr] = STATE(3799), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_AMP_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_AMP_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_STAR_STAR_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_AMP_EQ] = ACTIONS(733), - [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(549), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(571), - }, - [75] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3141), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(75), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3142), - [sym_double_splat] = STATE(3142), - [sym_named_expr] = STATE(3142), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_AMP_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_AMP_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_STAR_STAR_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_AMP_EQ] = ACTIONS(733), - [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(409), - [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(431), - }, - [76] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5103), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(76), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5104), - [sym_double_splat] = STATE(5104), - [sym_named_expr] = STATE(5104), - [sym_argument_list_no_parens] = STATE(4994), - [sym_argument_list_no_parens_with_block] = STATE(5757), - [sym_argument_list_with_parens] = STATE(4994), - [sym_argument_list_with_parens_and_block] = STATE(5757), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5778), - [sym_brace_block] = STATE(5794), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_AMP_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_AMP_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_STAR_STAR_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), - [anon_sym_AMP_AMP_EQ] = ACTIONS(733), - [anon_sym_COLON2] = ACTIONS(735), - [anon_sym_do] = ACTIONS(803), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(827), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(1127), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(853), + [sym__start_of_parenless_args] = ACTIONS(1129), }, [77] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5670), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(77), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5671), - [sym_double_splat] = STATE(5671), - [sym_named_expr] = STATE(5671), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5822), + [sym_double_splat] = STATE(5822), + [sym_named_expr] = STATE(5822), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -49866,7 +50039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(173), [sym__unary_double_star] = ACTIONS(1163), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1177), + [sym__block_ampersand] = ACTIONS(1165), [sym_binary_ampersand] = ACTIONS(173), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), @@ -49883,106 +50056,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1179), + [sym__start_of_parenless_args] = ACTIONS(1169), }, [78] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5547), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3892), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(78), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5634), - [sym_double_splat] = STATE(5634), - [sym_named_expr] = STATE(5634), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3893), + [sym_double_splat] = STATE(3893), + [sym_named_expr] = STATE(3893), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DASH_GT] = ACTIONS(609), [anon_sym_DOT] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(731), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -49994,175 +50167,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(173), [anon_sym_LT_EQ_GT] = ACTIONS(173), [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), [anon_sym_BANG_TILDE] = ACTIONS(173), [anon_sym_EQ_TILDE] = ACTIONS(173), [anon_sym_AMP_STAR] = ACTIONS(195), [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(643), [anon_sym_QMARK] = ACTIONS(173), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(1231), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1231), - [anon_sym_DASH_EQ] = ACTIONS(1231), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1231), - [anon_sym_STAR_EQ] = ACTIONS(1231), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1231), - [anon_sym_SLASH_EQ] = ACTIONS(1231), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1231), - [anon_sym_PERCENT_EQ] = ACTIONS(1231), - [anon_sym_PIPE_EQ] = ACTIONS(1231), - [anon_sym_AMP_EQ] = ACTIONS(1231), - [anon_sym_CARET_EQ] = ACTIONS(1231), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1231), - [anon_sym_LT_LT_EQ] = ACTIONS(1231), - [anon_sym_GT_GT_EQ] = ACTIONS(1231), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1231), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1231), - [anon_sym_COLON2] = ACTIONS(195), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_AMP_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_AMP_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_STAR_STAR_EQ] = ACTIONS(733), + [anon_sym_LT_LT_EQ] = ACTIONS(733), + [anon_sym_GT_GT_EQ] = ACTIONS(733), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(733), + [anon_sym_AMP_AMP_EQ] = ACTIONS(733), + [anon_sym_COLON2] = ACTIONS(735), + [anon_sym_do] = ACTIONS(651), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_brace_block] = ACTIONS(665), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), [sym__start_of_index_operator] = ACTIONS(173), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), [sym_binary_wrapping_plus] = ACTIONS(173), [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__unary_star] = ACTIONS(1161), + [sym__unary_star] = ACTIONS(675), [sym__binary_star] = ACTIONS(173), - [sym__unary_double_star] = ACTIONS(1163), + [sym__unary_double_star] = ACTIONS(677), [sym__binary_double_star] = ACTIONS(173), - [sym__block_ampersand] = ACTIONS(1221), + [sym__block_ampersand] = ACTIONS(679), [sym_binary_ampersand] = ACTIONS(173), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), [sym__binary_slash] = ACTIONS(173), [sym__binary_double_slash] = ACTIONS(173), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), [sym__modulo_operator] = ACTIONS(173), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1223), + [sym__start_of_parenless_args] = ACTIONS(701), }, [79] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2519), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(79), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2520), - [sym_double_splat] = STATE(2520), - [sym_named_expr] = STATE(2520), - [sym_argument_list_no_parens] = STATE(2418), - [sym_argument_list_no_parens_with_block] = STATE(2653), - [sym_argument_list_with_parens] = STATE(2418), - [sym_argument_list_with_parens_and_block] = STATE(2653), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2661), - [sym_brace_block] = STATE(2700), - [sym_block_argument] = STATE(2712), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2482), + [sym_double_splat] = STATE(2482), + [sym_named_expr] = STATE(2482), + [sym_argument_list_no_parens] = STATE(2448), + [sym_argument_list_no_parens_with_block] = STATE(2702), + [sym_argument_list_with_parens] = STATE(2448), + [sym_argument_list_with_parens_and_block] = STATE(2702), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2705), + [sym_brace_block] = STATE(2707), + [sym_block_argument] = STATE(2708), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(1233), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(1233), @@ -50283,88 +50456,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(305), }, [80] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2510), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(80), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2511), - [sym_double_splat] = STATE(2511), - [sym_named_expr] = STATE(2511), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1233), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2482), + [sym_double_splat] = STATE(2482), + [sym_named_expr] = STATE(2482), + [sym_argument_list_no_parens] = STATE(2459), + [sym_argument_list_no_parens_with_block] = STATE(2663), + [sym_argument_list_with_parens] = STATE(2399), + [sym_argument_list_with_parens_and_block] = STATE(2563), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2568), + [sym_brace_block] = STATE(2490), + [sym_block_argument] = STATE(2708), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1239), [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -50372,36 +50545,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(181), [aux_sym_float_token2] = ACTIONS(183), [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1239), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_end] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(201), [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(209), @@ -50420,55 +50594,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), - [anon_sym_COLON] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(295), + [anon_sym_QMARK] = ACTIONS(1239), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1223), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_when] = ACTIONS(1235), + [anon_sym_elsif] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(1241), [anon_sym_case] = ACTIONS(247), [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1235), + [anon_sym_in] = ACTIONS(1241), [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1233), + [sym__line_break] = ACTIONS(1239), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), + [sym__start_of_brace_block] = ACTIONS(301), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1233), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(259), [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), [sym_unary_wrapping_plus] = ACTIONS(261), [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1233), + [sym__binary_star] = ACTIONS(1239), [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(1233), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(303), + [sym_binary_ampersand] = ACTIONS(1239), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1233), + [sym__modifier_if_keyword] = ACTIONS(1239), [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1233), - [sym__modifier_rescue_keyword] = ACTIONS(1233), - [sym__modifier_ensure_keyword] = ACTIONS(1233), - [sym__modulo_operator] = ACTIONS(1233), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), [sym__string_literal_start] = ACTIONS(277), [sym__string_percent_literal_start] = ACTIONS(279), [sym__command_percent_literal_start] = ACTIONS(281), @@ -50477,86 +50650,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(289), + [sym__start_of_parenless_args] = ACTIONS(305), }, [81] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2519), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2528), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(81), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2520), - [sym_double_splat] = STATE(2520), - [sym_named_expr] = STATE(2520), - [sym_argument_list_no_parens] = STATE(2418), - [sym_argument_list_no_parens_with_block] = STATE(2653), - [sym_argument_list_with_parens] = STATE(2418), - [sym_argument_list_with_parens_and_block] = STATE(2653), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2661), - [sym_brace_block] = STATE(2700), - [sym_block_argument] = STATE(2712), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2529), + [sym_double_splat] = STATE(2529), + [sym_named_expr] = STATE(2529), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(1233), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(1233), @@ -50617,13 +50790,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(295), + [anon_sym_COLON] = ACTIONS(1243), + [anon_sym_LPAREN2] = ACTIONS(231), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(239), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), @@ -50636,7 +50810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_asm_token1] = ACTIONS(251), [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(301), + [sym__start_of_brace_block] = ACTIONS(253), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), [sym__start_of_index_operator] = ACTIONS(1233), @@ -50652,7 +50826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(265), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(303), + [sym__block_ampersand] = ACTIONS(267), [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), @@ -50673,91 +50847,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(305), + [sym__start_of_parenless_args] = ACTIONS(289), }, [82] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2510), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2528), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(82), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2511), - [sym_double_splat] = STATE(2511), - [sym_named_expr] = STATE(2511), - [sym_argument_list_no_parens] = STATE(2393), - [sym_argument_list_no_parens_with_block] = STATE(3083), - [sym_argument_list_with_parens] = STATE(2447), - [sym_argument_list_with_parens_and_block] = STATE(3084), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(3085), - [sym_brace_block] = STATE(3086), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1241), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2529), + [sym_double_splat] = STATE(2529), + [sym_named_expr] = STATE(2529), + [sym_argument_list_no_parens] = STATE(2469), + [sym_argument_list_no_parens_with_block] = STATE(3108), + [sym_argument_list_with_parens] = STATE(2406), + [sym_argument_list_with_parens_and_block] = STATE(2871), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2873), + [sym_brace_block] = STATE(2878), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1239), [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -50765,36 +50939,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(181), [aux_sym_float_token2] = ACTIONS(183), [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1239), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(201), [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(209), @@ -50814,53 +50989,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1239), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), [anon_sym_do] = ACTIONS(239), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_when] = ACTIONS(1243), + [anon_sym_elsif] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(1241), [anon_sym_case] = ACTIONS(247), [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1243), + [anon_sym_in] = ACTIONS(1241), [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1241), + [sym__line_break] = ACTIONS(1239), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(253), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(259), [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), [sym_unary_wrapping_plus] = ACTIONS(261), [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1241), + [sym__binary_star] = ACTIONS(1239), [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1241), + [sym__binary_double_star] = ACTIONS(1239), [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(1241), + [sym_binary_ampersand] = ACTIONS(1239), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1241), + [sym__modifier_if_keyword] = ACTIONS(1239), [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), [sym__string_literal_start] = ACTIONS(277), [sym__string_percent_literal_start] = ACTIONS(279), [sym__command_percent_literal_start] = ACTIONS(281), @@ -50872,88 +51047,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(289), }, [83] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2519), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2528), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(83), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2520), - [sym_double_splat] = STATE(2520), - [sym_named_expr] = STATE(2520), - [sym_argument_list_no_parens] = STATE(2426), - [sym_argument_list_no_parens_with_block] = STATE(2620), - [sym_argument_list_with_parens] = STATE(2427), - [sym_argument_list_with_parens_and_block] = STATE(2640), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2643), - [sym_brace_block] = STATE(2645), - [sym_block_argument] = STATE(2712), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1245), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2529), + [sym_double_splat] = STATE(2529), + [sym_named_expr] = STATE(2529), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1233), [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1233), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -50961,36 +51136,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(181), [aux_sym_float_token2] = ACTIONS(183), [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1233), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_end] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_end] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), [anon_sym_BANG] = ACTIONS(201), [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(209), @@ -51009,54 +51184,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(295), - [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1247), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(239), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_when] = ACTIONS(1247), + [anon_sym_elsif] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_when] = ACTIONS(1235), [anon_sym_case] = ACTIONS(247), [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1247), + [anon_sym_in] = ACTIONS(1235), [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1245), + [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(301), + [sym__start_of_brace_block] = ACTIONS(253), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1245), + [sym__start_of_index_operator] = ACTIONS(1233), [sym_unary_plus] = ACTIONS(259), [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), [sym_unary_wrapping_plus] = ACTIONS(261), [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1245), + [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(303), - [sym_binary_ampersand] = ACTIONS(1245), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(267), + [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1245), + [sym__modifier_if_keyword] = ACTIONS(1233), [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1245), - [sym__modifier_rescue_keyword] = ACTIONS(1245), - [sym__modifier_ensure_keyword] = ACTIONS(1245), - [sym__modulo_operator] = ACTIONS(1245), + [sym__modifier_unless_keyword] = ACTIONS(1233), + [sym__modifier_rescue_keyword] = ACTIONS(1233), + [sym__modifier_ensure_keyword] = ACTIONS(1233), + [sym__modulo_operator] = ACTIONS(1233), [sym__string_literal_start] = ACTIONS(277), [sym__string_percent_literal_start] = ACTIONS(279), [sym__command_percent_literal_start] = ACTIONS(281), @@ -51065,86 +51240,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(305), + [sym__start_of_parenless_args] = ACTIONS(289), }, [84] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2510), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(84), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2511), - [sym_double_splat] = STATE(2511), - [sym_named_expr] = STATE(2511), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2482), + [sym_double_splat] = STATE(2482), + [sym_named_expr] = STATE(2482), + [sym_argument_list_no_parens] = STATE(2448), + [sym_argument_list_no_parens_with_block] = STATE(2702), + [sym_argument_list_with_parens] = STATE(2448), + [sym_argument_list_with_parens_and_block] = STATE(2702), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2705), + [sym_brace_block] = STATE(2707), + [sym_block_argument] = STATE(2708), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(1233), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(1233), @@ -51205,13 +51380,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_LPAREN2] = ACTIONS(295), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(239), + [anon_sym_do] = ACTIONS(1235), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), @@ -51224,7 +51399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_asm_token1] = ACTIONS(251), [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), + [sym__start_of_brace_block] = ACTIONS(301), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), [sym__start_of_index_operator] = ACTIONS(1233), @@ -51240,7 +51415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(265), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(267), + [sym__block_ampersand] = ACTIONS(303), [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), @@ -51261,91 +51436,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(289), + [sym__start_of_parenless_args] = ACTIONS(305), }, [85] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2510), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(85), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2511), - [sym_double_splat] = STATE(2511), - [sym_named_expr] = STATE(2511), - [sym_argument_list_no_parens] = STATE(2419), - [sym_argument_list_no_parens_with_block] = STATE(3130), - [sym_argument_list_with_parens] = STATE(2420), - [sym_argument_list_with_parens_and_block] = STATE(3014), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(3015), - [sym_brace_block] = STATE(3026), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1249), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2482), + [sym_double_splat] = STATE(2482), + [sym_named_expr] = STATE(2482), + [sym_argument_list_no_parens] = STATE(2450), + [sym_argument_list_no_parens_with_block] = STATE(2721), + [sym_argument_list_with_parens] = STATE(2451), + [sym_argument_list_with_parens_and_block] = STATE(2726), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2727), + [sym_brace_block] = STATE(2728), + [sym_block_argument] = STATE(2708), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1245), [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1245), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -51353,36 +51528,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(181), [aux_sym_float_token2] = ACTIONS(183), [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1245), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_end] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_end] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), [anon_sym_BANG] = ACTIONS(201), [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(209), @@ -51401,54 +51576,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(295), + [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(239), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1247), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1251), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_when] = ACTIONS(1251), + [anon_sym_elsif] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(1247), [anon_sym_case] = ACTIONS(247), [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1251), + [anon_sym_in] = ACTIONS(1247), [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1249), + [sym__line_break] = ACTIONS(1245), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), + [sym__start_of_brace_block] = ACTIONS(301), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1249), + [sym__start_of_index_operator] = ACTIONS(1245), [sym_unary_plus] = ACTIONS(259), [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), [sym_unary_wrapping_plus] = ACTIONS(261), [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1249), + [sym__binary_star] = ACTIONS(1245), [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(1249), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(303), + [sym_binary_ampersand] = ACTIONS(1245), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1249), + [sym__modifier_if_keyword] = ACTIONS(1245), [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1249), - [sym__modifier_rescue_keyword] = ACTIONS(1249), - [sym__modifier_ensure_keyword] = ACTIONS(1249), - [sym__modulo_operator] = ACTIONS(1249), + [sym__modifier_unless_keyword] = ACTIONS(1245), + [sym__modifier_rescue_keyword] = ACTIONS(1245), + [sym__modifier_ensure_keyword] = ACTIONS(1245), + [sym__modulo_operator] = ACTIONS(1245), [sym__string_literal_start] = ACTIONS(277), [sym__string_percent_literal_start] = ACTIONS(279), [sym__command_percent_literal_start] = ACTIONS(281), @@ -51457,86 +51632,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(289), + [sym__start_of_parenless_args] = ACTIONS(305), }, [86] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2510), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2528), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(86), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2511), - [sym_double_splat] = STATE(2511), - [sym_named_expr] = STATE(2511), - [sym_argument_list_no_parens] = STATE(2428), - [sym_argument_list_no_parens_with_block] = STATE(3098), - [sym_argument_list_with_parens] = STATE(2429), - [sym_argument_list_with_parens_and_block] = STATE(2883), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2889), - [sym_brace_block] = STATE(2890), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2529), + [sym_double_splat] = STATE(2529), + [sym_named_expr] = STATE(2529), + [sym_argument_list_no_parens] = STATE(2429), + [sym_argument_list_no_parens_with_block] = STATE(3126), + [sym_argument_list_with_parens] = STATE(2420), + [sym_argument_list_with_parens_and_block] = STATE(2974), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2976), + [sym_brace_block] = STATE(2983), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(1245), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(1245), @@ -51656,83 +51831,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(289), }, [87] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2519), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(87), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2520), - [sym_double_splat] = STATE(2520), - [sym_named_expr] = STATE(2520), - [sym_argument_list_no_parens] = STATE(2424), - [sym_argument_list_no_parens_with_block] = STATE(2592), - [sym_argument_list_with_parens] = STATE(2425), - [sym_argument_list_with_parens_and_block] = STATE(2600), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2602), - [sym_brace_block] = STATE(2611), - [sym_block_argument] = STATE(2712), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2482), + [sym_double_splat] = STATE(2482), + [sym_named_expr] = STATE(2482), + [sym_argument_list_no_parens] = STATE(2452), + [sym_argument_list_no_parens_with_block] = STATE(2732), + [sym_argument_list_with_parens] = STATE(2453), + [sym_argument_list_with_parens_and_block] = STATE(2737), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2739), + [sym_brace_block] = STATE(2742), + [sym_block_argument] = STATE(2708), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(1249), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(1249), @@ -51852,88 +52027,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(305), }, [88] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2519), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2528), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(88), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2520), - [sym_double_splat] = STATE(2520), - [sym_named_expr] = STATE(2520), - [sym_argument_list_no_parens] = STATE(2453), - [sym_argument_list_no_parens_with_block] = STATE(2691), - [sym_argument_list_with_parens] = STATE(2421), - [sym_argument_list_with_parens_and_block] = STATE(2692), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2693), - [sym_brace_block] = STATE(2694), - [sym_block_argument] = STATE(2712), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1241), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2529), + [sym_double_splat] = STATE(2529), + [sym_named_expr] = STATE(2529), + [sym_argument_list_no_parens] = STATE(2472), + [sym_argument_list_no_parens_with_block] = STATE(3063), + [sym_argument_list_with_parens] = STATE(2464), + [sym_argument_list_with_parens_and_block] = STATE(3153), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2925), + [sym_brace_block] = STATE(2930), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1249), [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1249), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -51941,36 +52116,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(181), [aux_sym_float_token2] = ACTIONS(183), [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1249), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_end] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), [anon_sym_BANG] = ACTIONS(201), [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(209), @@ -51989,54 +52164,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(295), - [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(1249), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(239), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_when] = ACTIONS(1243), + [anon_sym_elsif] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_when] = ACTIONS(1251), [anon_sym_case] = ACTIONS(247), [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1243), + [anon_sym_in] = ACTIONS(1251), [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1241), + [sym__line_break] = ACTIONS(1249), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(301), + [sym__start_of_brace_block] = ACTIONS(253), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1249), [sym_unary_plus] = ACTIONS(259), [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), [sym_unary_wrapping_plus] = ACTIONS(261), [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1241), + [sym__binary_star] = ACTIONS(1249), [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(303), - [sym_binary_ampersand] = ACTIONS(1241), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(267), + [sym_binary_ampersand] = ACTIONS(1249), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1241), + [sym__modifier_if_keyword] = ACTIONS(1249), [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), + [sym__modifier_unless_keyword] = ACTIONS(1249), + [sym__modifier_rescue_keyword] = ACTIONS(1249), + [sym__modifier_ensure_keyword] = ACTIONS(1249), + [sym__modulo_operator] = ACTIONS(1249), [sym__string_literal_start] = ACTIONS(277), [sym__string_percent_literal_start] = ACTIONS(279), [sym__command_percent_literal_start] = ACTIONS(281), @@ -52045,91 +52220,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(305), + [sym__start_of_parenless_args] = ACTIONS(289), }, [89] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2482), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2577), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(89), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2484), - [sym_double_splat] = STATE(2484), - [sym_named_expr] = STATE(2484), - [sym_argument_list_no_parens] = STATE(2393), - [sym_argument_list_no_parens_with_block] = STATE(3083), - [sym_argument_list_with_parens] = STATE(2447), - [sym_argument_list_with_parens_and_block] = STATE(3084), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(3085), - [sym_brace_block] = STATE(3086), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1241), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2535), + [sym_double_splat] = STATE(2535), + [sym_named_expr] = STATE(2535), + [sym_argument_list_no_parens] = STATE(2469), + [sym_argument_list_no_parens_with_block] = STATE(3108), + [sym_argument_list_with_parens] = STATE(2406), + [sym_argument_list_with_parens_and_block] = STATE(2871), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2873), + [sym_brace_block] = STATE(2878), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1239), [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -52137,35 +52312,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(181), [aux_sym_float_token2] = ACTIONS(183), [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1239), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(201), [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(209), @@ -52185,53 +52361,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1239), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), [anon_sym_do] = ACTIONS(239), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1243), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_when] = ACTIONS(1243), + [anon_sym_elsif] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(1241), [anon_sym_case] = ACTIONS(247), [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1243), + [anon_sym_in] = ACTIONS(1241), [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1241), + [sym__line_break] = ACTIONS(1239), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(253), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(259), [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), [sym_unary_wrapping_plus] = ACTIONS(261), [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1241), + [sym__binary_star] = ACTIONS(1239), [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1241), + [sym__binary_double_star] = ACTIONS(1239), [sym__block_ampersand] = ACTIONS(315), - [sym_binary_ampersand] = ACTIONS(1241), + [sym_binary_ampersand] = ACTIONS(1239), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1241), + [sym__modifier_if_keyword] = ACTIONS(1239), [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), [sym__string_literal_start] = ACTIONS(277), [sym__string_percent_literal_start] = ACTIONS(279), [sym__command_percent_literal_start] = ACTIONS(281), @@ -52243,88 +52419,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(317), }, [90] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2482), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2577), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(90), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2484), - [sym_double_splat] = STATE(2484), - [sym_named_expr] = STATE(2484), - [sym_argument_list_no_parens] = STATE(2434), - [sym_argument_list_no_parens_with_block] = STATE(2903), - [sym_argument_list_with_parens] = STATE(2434), - [sym_argument_list_with_parens_and_block] = STATE(2903), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2906), - [sym_brace_block] = STATE(2920), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1233), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2535), + [sym_double_splat] = STATE(2535), + [sym_named_expr] = STATE(2535), + [sym_argument_list_no_parens] = STATE(2472), + [sym_argument_list_no_parens_with_block] = STATE(3063), + [sym_argument_list_with_parens] = STATE(2464), + [sym_argument_list_with_parens_and_block] = STATE(3153), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2925), + [sym_brace_block] = STATE(2930), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1249), [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1249), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -52332,209 +52508,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(181), [aux_sym_float_token2] = ACTIONS(183), [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1249), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_end] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(231), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(239), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_when] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1235), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1233), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(315), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1233), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1233), - [sym__modifier_rescue_keyword] = ACTIONS(1233), - [sym__modifier_ensure_keyword] = ACTIONS(1233), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(317), - }, - [91] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2482), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(91), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2484), - [sym_double_splat] = STATE(2484), - [sym_named_expr] = STATE(2484), - [sym_argument_list_no_parens] = STATE(2419), - [sym_argument_list_no_parens_with_block] = STATE(3130), - [sym_argument_list_with_parens] = STATE(2420), - [sym_argument_list_with_parens_and_block] = STATE(3014), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(3015), - [sym_brace_block] = STATE(3026), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1249), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), [anon_sym_DASH_GT] = ACTIONS(197), [anon_sym_DOT] = ACTIONS(1251), [anon_sym_end] = ACTIONS(1251), @@ -52632,84 +52613,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(317), }, - [92] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2482), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(92), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2484), - [sym_double_splat] = STATE(2484), - [sym_named_expr] = STATE(2484), - [sym_argument_list_no_parens] = STATE(2428), - [sym_argument_list_no_parens_with_block] = STATE(3098), - [sym_argument_list_with_parens] = STATE(2429), - [sym_argument_list_with_parens_and_block] = STATE(2883), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_do_end_block] = STATE(2889), - [sym_brace_block] = STATE(2890), - [sym_block_argument] = STATE(2922), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [91] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2577), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(91), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2535), + [sym_double_splat] = STATE(2535), + [sym_named_expr] = STATE(2535), + [sym_argument_list_no_parens] = STATE(2429), + [sym_argument_list_no_parens_with_block] = STATE(3126), + [sym_argument_list_with_parens] = STATE(2420), + [sym_argument_list_with_parens_and_block] = STATE(2974), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(2976), + [sym_brace_block] = STATE(2983), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [ts_builtin_sym_end] = ACTIONS(1245), [sym_identifier] = ACTIONS(175), [anon_sym_SEMI] = ACTIONS(1245), @@ -52827,84 +52808,472 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(317), }, + [92] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2577), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(92), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2535), + [sym_double_splat] = STATE(2535), + [sym_named_expr] = STATE(2535), + [sym_argument_list_no_parens] = STATE(2421), + [sym_argument_list_no_parens_with_block] = STATE(3109), + [sym_argument_list_with_parens] = STATE(2421), + [sym_argument_list_with_parens_and_block] = STATE(3109), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_do_end_block] = STATE(3129), + [sym_brace_block] = STATE(3146), + [sym_block_argument] = STATE(2960), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(177), + [anon_sym_RPAREN] = ACTIONS(1233), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(1233), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_end] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(231), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(239), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_elsif] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_when] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_in] = ACTIONS(1235), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_break] = ACTIONS(1233), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(253), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(263), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(265), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(315), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__modifier_if_keyword] = ACTIONS(1233), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__modifier_unless_keyword] = ACTIONS(1233), + [sym__modifier_rescue_keyword] = ACTIONS(1233), + [sym__modifier_ensure_keyword] = ACTIONS(1233), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(317), + }, [93] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3141), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3204), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(93), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3142), - [sym_double_splat] = STATE(3142), - [sym_named_expr] = STATE(3142), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3205), + [sym_double_splat] = STATE(3205), + [sym_named_expr] = STATE(3205), + [sym_argument_list_no_parens] = STATE(3009), + [sym_argument_list_no_parens_with_block] = STATE(4197), + [sym_argument_list_with_parens] = STATE(2843), + [sym_argument_list_with_parens_and_block] = STATE(3794), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3796), + [sym_brace_block] = STATE(3797), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(1239), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(445), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(1239), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__regular_rescue_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__regular_ensure_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(447), + }, + [94] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(94), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3262), + [sym_double_splat] = STATE(3262), + [sym_named_expr] = STATE(3262), + [sym_argument_list_no_parens] = STATE(3137), + [sym_argument_list_no_parens_with_block] = STATE(3382), + [sym_argument_list_with_parens] = STATE(3137), + [sym_argument_list_with_parens_and_block] = STATE(3382), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3384), + [sym_brace_block] = STATE(3385), + [sym_block_argument] = STATE(3388), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(321), @@ -52969,135 +53338,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(409), + [sym__block_ampersand] = ACTIONS(407), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1233), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1233), [sym__regular_rescue_keyword] = ACTIONS(1233), [sym__modifier_rescue_keyword] = ACTIONS(1233), [sym__regular_ensure_keyword] = ACTIONS(1233), [sym__modifier_ensure_keyword] = ACTIONS(1233), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(431), + [sym__start_of_parenless_args] = ACTIONS(429), }, - [94] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3168), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(94), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3169), - [sym_double_splat] = STATE(3169), - [sym_named_expr] = STATE(3169), - [sym_argument_list_no_parens] = STATE(2858), - [sym_argument_list_no_parens_with_block] = STATE(3435), - [sym_argument_list_with_parens] = STATE(2858), - [sym_argument_list_with_parens_and_block] = STATE(3435), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3436), - [sym_brace_block] = STATE(3498), - [sym_block_argument] = STATE(3502), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [95] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3204), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(95), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3205), + [sym_double_splat] = STATE(3205), + [sym_named_expr] = STATE(3205), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(321), @@ -53156,141 +53525,526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(437), + [anon_sym_LPAREN2] = ACTIONS(435), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(443), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1233), [sym__block_ampersand] = ACTIONS(445), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1233), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1233), [sym__regular_rescue_keyword] = ACTIONS(1233), [sym__modifier_rescue_keyword] = ACTIONS(1233), [sym__regular_ensure_keyword] = ACTIONS(1233), [sym__modifier_ensure_keyword] = ACTIONS(1233), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(447), }, - [95] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3168), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(95), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3169), - [sym_double_splat] = STATE(3169), - [sym_named_expr] = STATE(3169), - [sym_argument_list_no_parens] = STATE(2879), - [sym_argument_list_no_parens_with_block] = STATE(3519), - [sym_argument_list_with_parens] = STATE(2880), - [sym_argument_list_with_parens_and_block] = STATE(3522), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3524), - [sym_brace_block] = STATE(3279), - [sym_block_argument] = STATE(3502), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [96] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(96), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3262), + [sym_double_splat] = STATE(3262), + [sym_named_expr] = STATE(3262), + [sym_argument_list_no_parens] = STATE(3124), + [sym_argument_list_no_parens_with_block] = STATE(3335), + [sym_argument_list_with_parens] = STATE(2877), + [sym_argument_list_with_parens_and_block] = STATE(3302), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3247), + [sym_brace_block] = STATE(3165), + [sym_block_argument] = STATE(3388), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(1239), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(407), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(1239), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__regular_rescue_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__regular_ensure_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(429), + }, + [97] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3292), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(97), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3293), + [sym_double_splat] = STATE(3293), + [sym_named_expr] = STATE(3293), + [sym_argument_list_no_parens] = STATE(3009), + [sym_argument_list_no_parens_with_block] = STATE(4197), + [sym_argument_list_with_parens] = STATE(2843), + [sym_argument_list_with_parens_and_block] = STATE(3794), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3796), + [sym_brace_block] = STATE(3797), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(1239), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(455), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(1239), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__regular_rescue_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__regular_ensure_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(457), + }, + [98] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(98), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3262), + [sym_double_splat] = STATE(3262), + [sym_named_expr] = STATE(3262), + [sym_argument_list_no_parens] = STATE(2917), + [sym_argument_list_no_parens_with_block] = STATE(3571), + [sym_argument_list_with_parens] = STATE(2919), + [sym_argument_list_with_parens_and_block] = STATE(3579), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3580), + [sym_brace_block] = STATE(3339), + [sym_block_argument] = STATE(3388), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_LPAREN] = ACTIONS(321), @@ -53348,141 +54102,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(437), + [anon_sym_LPAREN2] = ACTIONS(373), [anon_sym_QMARK] = ACTIONS(1249), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1249), [anon_sym_PIPE_PIPE] = ACTIONS(1249), [anon_sym_do] = ACTIONS(1251), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1249), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(443), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1249), [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1249), [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(445), + [sym__block_ampersand] = ACTIONS(407), [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1249), [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1249), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1249), [sym__regular_rescue_keyword] = ACTIONS(1249), [sym__modifier_rescue_keyword] = ACTIONS(1249), [sym__regular_ensure_keyword] = ACTIONS(1249), [sym__modifier_ensure_keyword] = ACTIONS(1249), [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(447), + [sym__start_of_parenless_args] = ACTIONS(429), }, - [96] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3168), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(96), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3169), - [sym_double_splat] = STATE(3169), - [sym_named_expr] = STATE(3169), - [sym_argument_list_no_parens] = STATE(2881), - [sym_argument_list_no_parens_with_block] = STATE(3286), - [sym_argument_list_with_parens] = STATE(2885), - [sym_argument_list_with_parens_and_block] = STATE(3290), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3293), - [sym_brace_block] = STATE(3294), - [sym_block_argument] = STATE(3502), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [99] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(99), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3262), + [sym_double_splat] = STATE(3262), + [sym_named_expr] = STATE(3262), + [sym_argument_list_no_parens] = STATE(2907), + [sym_argument_list_no_parens_with_block] = STATE(3490), + [sym_argument_list_with_parens] = STATE(2908), + [sym_argument_list_with_parens_and_block] = STATE(3496), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3534), + [sym_brace_block] = STATE(3557), + [sym_block_argument] = STATE(3388), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(321), @@ -53540,141 +54294,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(437), + [anon_sym_LPAREN2] = ACTIONS(373), [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1245), [anon_sym_PIPE_PIPE] = ACTIONS(1245), [anon_sym_do] = ACTIONS(1247), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1245), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(443), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1245), [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1245), [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(445), + [sym__block_ampersand] = ACTIONS(407), [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1245), [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1245), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1245), [sym__regular_rescue_keyword] = ACTIONS(1245), [sym__modifier_rescue_keyword] = ACTIONS(1245), [sym__regular_ensure_keyword] = ACTIONS(1245), [sym__modifier_ensure_keyword] = ACTIONS(1245), [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(447), + [sym__start_of_parenless_args] = ACTIONS(429), }, - [97] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3168), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(97), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3169), - [sym_double_splat] = STATE(3169), - [sym_named_expr] = STATE(3169), - [sym_argument_list_no_parens] = STATE(2858), - [sym_argument_list_no_parens_with_block] = STATE(3435), - [sym_argument_list_with_parens] = STATE(2858), - [sym_argument_list_with_parens_and_block] = STATE(3435), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3436), - [sym_brace_block] = STATE(3498), - [sym_block_argument] = STATE(3502), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [100] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(100), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3262), + [sym_double_splat] = STATE(3262), + [sym_named_expr] = STATE(3262), + [sym_argument_list_no_parens] = STATE(3137), + [sym_argument_list_no_parens_with_block] = STATE(3382), + [sym_argument_list_with_parens] = STATE(3137), + [sym_argument_list_with_parens_and_block] = STATE(3382), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(3384), + [sym_brace_block] = STATE(3385), + [sym_block_argument] = STATE(3388), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(321), @@ -53732,525 +54486,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(437), + [anon_sym_LPAREN2] = ACTIONS(373), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), [anon_sym_do] = ACTIONS(1235), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(443), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(445), + [sym__block_ampersand] = ACTIONS(407), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1233), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1233), [sym__regular_rescue_keyword] = ACTIONS(1233), [sym__modifier_rescue_keyword] = ACTIONS(1233), [sym__regular_ensure_keyword] = ACTIONS(1233), [sym__modifier_ensure_keyword] = ACTIONS(1233), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(447), - }, - [98] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3168), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(98), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3169), - [sym_double_splat] = STATE(3169), - [sym_named_expr] = STATE(3169), - [sym_argument_list_no_parens] = STATE(2933), - [sym_argument_list_no_parens_with_block] = STATE(3520), - [sym_argument_list_with_parens] = STATE(2934), - [sym_argument_list_with_parens_and_block] = STATE(3282), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3284), - [sym_brace_block] = STATE(3285), - [sym_block_argument] = STATE(3502), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1219), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(1241), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(443), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(445), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(1241), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__regular_rescue_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__regular_ensure_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(447), - }, - [99] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3141), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(99), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3142), - [sym_double_splat] = STATE(3142), - [sym_named_expr] = STATE(3142), - [sym_argument_list_no_parens] = STATE(2925), - [sym_argument_list_no_parens_with_block] = STATE(3815), - [sym_argument_list_with_parens] = STATE(2926), - [sym_argument_list_with_parens_and_block] = STATE(3817), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3818), - [sym_brace_block] = STATE(3819), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_end] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(1249), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(409), - [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(1249), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(1249), - [sym__regular_rescue_keyword] = ACTIONS(1249), - [sym__modifier_rescue_keyword] = ACTIONS(1249), - [sym__regular_ensure_keyword] = ACTIONS(1249), - [sym__modifier_ensure_keyword] = ACTIONS(1249), - [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(431), + [sym__start_of_parenless_args] = ACTIONS(429), }, - [100] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3141), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(100), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3142), - [sym_double_splat] = STATE(3142), - [sym_named_expr] = STATE(3142), - [sym_argument_list_no_parens] = STATE(2927), - [sym_argument_list_no_parens_with_block] = STATE(3820), - [sym_argument_list_with_parens] = STATE(2928), - [sym_argument_list_with_parens_and_block] = STATE(3826), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3827), - [sym_brace_block] = STATE(3828), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [101] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3204), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(101), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3205), + [sym_double_splat] = STATE(3205), + [sym_named_expr] = STATE(3205), + [sym_argument_list_no_parens] = STATE(3115), + [sym_argument_list_no_parens_with_block] = STATE(4038), + [sym_argument_list_with_parens] = STATE(3116), + [sym_argument_list_with_parens_and_block] = STATE(4097), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4100), + [sym_brace_block] = STATE(4101), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(321), @@ -54308,333 +54678,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), + [anon_sym_LPAREN2] = ACTIONS(435), [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1245), [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1245), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1245), [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1245), [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(409), + [sym__block_ampersand] = ACTIONS(445), [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1245), [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1245), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1245), [sym__regular_rescue_keyword] = ACTIONS(1245), [sym__modifier_rescue_keyword] = ACTIONS(1245), [sym__regular_ensure_keyword] = ACTIONS(1245), [sym__modifier_ensure_keyword] = ACTIONS(1245), [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(431), - }, - [101] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3141), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(101), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3142), - [sym_double_splat] = STATE(3142), - [sym_named_expr] = STATE(3142), - [sym_argument_list_no_parens] = STATE(3079), - [sym_argument_list_no_parens_with_block] = STATE(4142), - [sym_argument_list_with_parens] = STATE(3080), - [sym_argument_list_with_parens_and_block] = STATE(4143), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4144), - [sym_brace_block] = STATE(4145), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(1241), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(409), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(1241), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__regular_rescue_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__regular_ensure_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(431), + [sym__start_of_parenless_args] = ACTIONS(447), }, [102] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3141), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3204), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(102), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3142), - [sym_double_splat] = STATE(3142), - [sym_named_expr] = STATE(3142), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3205), + [sym_double_splat] = STATE(3205), + [sym_named_expr] = STATE(3205), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(321), @@ -54692,332 +54870,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), + [anon_sym_LPAREN2] = ACTIONS(435), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(409), + [sym__block_ampersand] = ACTIONS(445), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1233), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1233), [sym__regular_rescue_keyword] = ACTIONS(1233), [sym__modifier_rescue_keyword] = ACTIONS(1233), [sym__regular_ensure_keyword] = ACTIONS(1233), [sym__modifier_ensure_keyword] = ACTIONS(1233), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(431), + [sym__start_of_parenless_args] = ACTIONS(447), }, [103] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2456), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3204), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(103), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym__control_expressions] = STATE(2599), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2488), - [sym_double_splat] = STATE(2488), - [sym_named_expr] = STATE(2488), - [sym_argument_list_no_parens] = STATE(2646), - [sym_argument_list_with_parens] = STATE(2646), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1257), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_when] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1259), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1257), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1257), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1257), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1257), - [sym__modifier_rescue_keyword] = ACTIONS(1257), - [sym__modifier_ensure_keyword] = ACTIONS(1257), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1263), - }, - [104] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3136), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(104), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3137), - [sym_double_splat] = STATE(3137), - [sym_named_expr] = STATE(3137), - [sym_argument_list_no_parens] = STATE(2925), - [sym_argument_list_no_parens_with_block] = STATE(3815), - [sym_argument_list_with_parens] = STATE(2926), - [sym_argument_list_with_parens_and_block] = STATE(3817), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3818), - [sym_brace_block] = STATE(3819), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3205), + [sym_double_splat] = STATE(3205), + [sym_named_expr] = STATE(3205), + [sym_argument_list_no_parens] = STATE(3118), + [sym_argument_list_no_parens_with_block] = STATE(4113), + [sym_argument_list_with_parens] = STATE(2902), + [sym_argument_list_with_parens_and_block] = STATE(4114), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4118), + [sym_brace_block] = STATE(4119), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_LPAREN] = ACTIONS(321), @@ -55033,6 +55020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(333), [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(1249), [anon_sym_DOT_DOT] = ACTIONS(1251), [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), [anon_sym_DASH_GT] = ACTIONS(339), @@ -55074,143 +55062,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), + [anon_sym_LPAREN2] = ACTIONS(435), [anon_sym_QMARK] = ACTIONS(1249), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1249), [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1249), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1249), [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1249), [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(405), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(407), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(455), + [sym__block_ampersand] = ACTIONS(445), [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1249), [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(415), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1249), - [sym__regular_unless_keyword] = ACTIONS(417), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1249), [sym__regular_rescue_keyword] = ACTIONS(1249), [sym__modifier_rescue_keyword] = ACTIONS(1249), [sym__regular_ensure_keyword] = ACTIONS(1249), [sym__modifier_ensure_keyword] = ACTIONS(1249), [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(457), + [sym__start_of_parenless_args] = ACTIONS(447), }, - [105] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3801), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(105), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3802), - [sym_double_splat] = STATE(3802), - [sym_named_expr] = STATE(3802), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [104] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3892), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(104), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3893), + [sym_double_splat] = STATE(3893), + [sym_named_expr] = STATE(3893), + [sym_argument_list_no_parens] = STATE(3449), + [sym_argument_list_no_parens_with_block] = STATE(4785), + [sym_argument_list_with_parens] = STATE(3228), + [sym_argument_list_with_parens_and_block] = STATE(4398), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4399), + [sym_brace_block] = STATE(4408), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), @@ -55224,30 +55212,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(603), [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_end] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(613), [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_typeof] = ACTIONS(621), @@ -55266,13 +55255,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), - [anon_sym_COLON] = ACTIONS(1265), [anon_sym_LPAREN2] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1239), [sym_private] = ACTIONS(645), [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), [anon_sym_do] = ACTIONS(651), [anon_sym_begin] = ACTIONS(653), [anon_sym_while] = ACTIONS(655), @@ -55280,38 +55268,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(659), [anon_sym_select] = ACTIONS(661), [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1233), + [sym__line_break] = ACTIONS(1239), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(665), [sym__start_of_hash_or_tuple] = ACTIONS(667), [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1233), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(671), [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), [sym_unary_wrapping_plus] = ACTIONS(673), [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1233), + [sym__binary_star] = ACTIONS(1239), [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1233), + [sym__binary_double_star] = ACTIONS(1239), [sym__block_ampersand] = ACTIONS(679), - [sym_binary_ampersand] = ACTIONS(1233), + [sym_binary_ampersand] = ACTIONS(1239), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1233), + [sym__modifier_if_keyword] = ACTIONS(1239), [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1233), - [sym__modifier_rescue_keyword] = ACTIONS(1233), - [sym__regular_ensure_keyword] = ACTIONS(1233), - [sym__modifier_ensure_keyword] = ACTIONS(1233), - [sym__modulo_operator] = ACTIONS(1233), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__regular_ensure_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), [sym__string_literal_start] = ACTIONS(689), [sym__string_percent_literal_start] = ACTIONS(691), [sym__command_percent_literal_start] = ACTIONS(693), @@ -55322,86 +55310,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(701), }, - [106] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3136), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(106), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3137), - [sym_double_splat] = STATE(3137), - [sym_named_expr] = STATE(3137), - [sym_argument_list_no_parens] = STATE(2927), - [sym_argument_list_no_parens_with_block] = STATE(3820), - [sym_argument_list_with_parens] = STATE(2928), - [sym_argument_list_with_parens_and_block] = STATE(3826), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(3827), - [sym_brace_block] = STATE(3828), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [105] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3292), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(105), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3293), + [sym_double_splat] = STATE(3293), + [sym_named_expr] = STATE(3293), + [sym_argument_list_no_parens] = STATE(2992), + [sym_argument_list_no_parens_with_block] = STATE(4242), + [sym_argument_list_with_parens] = STATE(2992), + [sym_argument_list_with_parens_and_block] = STATE(4242), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4271), + [sym_brace_block] = STATE(4041), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(321), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), @@ -55415,29 +55403,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(333), [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_end] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_end] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), [anon_sym_BANG] = ACTIONS(343), [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(351), @@ -55456,141 +55444,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(1245), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(1233), [sym__block_ampersand] = ACTIONS(455), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(1245), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(1245), - [sym__regular_rescue_keyword] = ACTIONS(1245), - [sym__modifier_rescue_keyword] = ACTIONS(1245), - [sym__regular_ensure_keyword] = ACTIONS(1245), - [sym__modifier_ensure_keyword] = ACTIONS(1245), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(1233), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(1233), + [sym__regular_rescue_keyword] = ACTIONS(1233), + [sym__modifier_rescue_keyword] = ACTIONS(1233), + [sym__regular_ensure_keyword] = ACTIONS(1233), + [sym__modifier_ensure_keyword] = ACTIONS(1233), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(457), }, - [107] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3727), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(107), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [106] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3602), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(106), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3728), - [sym_double_splat] = STATE(3728), - [sym_named_expr] = STATE(3728), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3603), + [sym_double_splat] = STATE(3603), + [sym_named_expr] = STATE(3603), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(1233), @@ -55651,7 +55639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(1257), [anon_sym_LPAREN2] = ACTIONS(577), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(515), @@ -55704,84 +55692,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(587), }, - [108] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3738), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(108), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3739), - [sym_double_splat] = STATE(3739), - [sym_named_expr] = STATE(3739), - [sym_argument_list_no_parens] = STATE(3515), - [sym_argument_list_no_parens_with_block] = STATE(3837), - [sym_argument_list_with_parens] = STATE(3515), - [sym_argument_list_with_parens_and_block] = STATE(3837), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(3847), - [sym_brace_block] = STATE(3855), - [sym_block_argument] = STATE(3857), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [107] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3613), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(107), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_argument_list_no_parens] = STATE(3551), + [sym_argument_list_no_parens_with_block] = STATE(4298), + [sym_argument_list_with_parens] = STATE(3551), + [sym_argument_list_with_parens_and_block] = STATE(4298), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4299), + [sym_brace_block] = STATE(4300), + [sym_block_argument] = STATE(4301), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(591), @@ -55839,7 +55827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), - [anon_sym_COLON] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(1259), [anon_sym_LPAREN2] = ACTIONS(707), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(645), @@ -55895,276 +55883,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(717), }, - [109] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3798), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(109), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3799), - [sym_double_splat] = STATE(3799), - [sym_named_expr] = STATE(3799), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1233), + [108] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3613), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(108), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_argument_list_no_parens] = STATE(3506), + [sym_argument_list_no_parens_with_block] = STATE(4084), + [sym_argument_list_with_parens] = STATE(3273), + [sym_argument_list_with_parens_and_block] = STATE(3752), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(3753), + [sym_brace_block] = STATE(3754), + [sym_block_argument] = STATE(4301), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1233), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_RBRACK] = ACTIONS(1233), - [anon_sym_EQ_GT] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_end] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_COLON] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_when] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1235), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(1239), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(549), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_brace_block] = ACTIONS(713), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(675), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(677), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(715), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(1239), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__regular_ensure_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(571), + [sym__start_of_parenless_args] = ACTIONS(717), }, - [110] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2456), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(110), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym__control_expressions] = STATE(2556), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2488), - [sym_double_splat] = STATE(2488), - [sym_named_expr] = STATE(2488), - [sym_argument_list_no_parens] = STATE(2646), - [sym_argument_list_with_parens] = STATE(2646), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(1273), + [109] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2481), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(109), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym__control_expressions] = STATE(2689), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2493), + [sym_double_splat] = STATE(2493), + [sym_named_expr] = STATE(2493), + [sym_argument_list_no_parens] = STATE(2722), + [sym_argument_list_with_parens] = STATE(2722), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1261), [sym_identifier] = ACTIONS(175), - [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(177), - [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1261), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -56172,36 +56160,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(181), [aux_sym_float_token2] = ACTIONS(183), [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1261), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), [anon_sym_COLON_DQUOTE] = ACTIONS(189), [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_end] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_end] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(201), [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), [anon_sym_typeof] = ACTIONS(209), @@ -56220,53 +56208,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1261), [sym_private] = ACTIONS(233), [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1263), [anon_sym_begin] = ACTIONS(241), [anon_sym_while] = ACTIONS(243), [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(1275), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_when] = ACTIONS(1275), + [anon_sym_elsif] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_when] = ACTIONS(1263), [anon_sym_case] = ACTIONS(247), [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1263), [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(1273), + [sym__line_break] = ACTIONS(1261), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1273), + [sym__start_of_brace_block] = ACTIONS(1261), [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(1273), + [sym__start_of_index_operator] = ACTIONS(1261), [sym_unary_plus] = ACTIONS(259), [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), [sym_unary_wrapping_plus] = ACTIONS(261), [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), [sym__unary_star] = ACTIONS(263), - [sym__binary_star] = ACTIONS(1273), + [sym__binary_star] = ACTIONS(1261), [sym__unary_double_star] = ACTIONS(265), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(1273), + [sym__modifier_if_keyword] = ACTIONS(1261), [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(1273), - [sym__modifier_rescue_keyword] = ACTIONS(1273), - [sym__modifier_ensure_keyword] = ACTIONS(1273), - [sym__modulo_operator] = ACTIONS(1273), + [sym__modifier_unless_keyword] = ACTIONS(1261), + [sym__modifier_rescue_keyword] = ACTIONS(1261), + [sym__modifier_ensure_keyword] = ACTIONS(1261), + [sym__modulo_operator] = ACTIONS(1261), [sym__string_literal_start] = ACTIONS(277), [sym__string_percent_literal_start] = ACTIONS(279), [sym__command_percent_literal_start] = ACTIONS(281), @@ -56275,88 +56263,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(287), [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1263), + [sym__start_of_parenless_args] = ACTIONS(1267), }, - [111] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3136), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(111), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3137), - [sym_double_splat] = STATE(3137), - [sym_named_expr] = STATE(3137), - [sym_argument_list_no_parens] = STATE(3079), - [sym_argument_list_no_parens_with_block] = STATE(4142), - [sym_argument_list_with_parens] = STATE(3080), - [sym_argument_list_with_parens_and_block] = STATE(4143), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4144), - [sym_brace_block] = STATE(4145), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [110] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3292), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(110), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3293), + [sym_double_splat] = STATE(3293), + [sym_named_expr] = STATE(3293), + [sym_argument_list_no_parens] = STATE(3115), + [sym_argument_list_no_parens_with_block] = STATE(4038), + [sym_argument_list_with_parens] = STATE(3116), + [sym_argument_list_with_parens_and_block] = STATE(4097), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4100), + [sym_brace_block] = STATE(4101), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(321), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), @@ -56370,220 +56358,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(333), [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(1241), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(455), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(1241), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__regular_rescue_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__regular_ensure_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(457), - }, - [112] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3136), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(112), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3137), - [sym_double_splat] = STATE(3137), - [sym_named_expr] = STATE(3137), - [sym_argument_list_no_parens] = STATE(2921), - [sym_argument_list_no_parens_with_block] = STATE(4174), - [sym_argument_list_with_parens] = STATE(2921), - [sym_argument_list_with_parens_and_block] = STATE(4174), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_do_end_block] = STATE(4181), - [sym_brace_block] = STATE(4248), - [sym_block_argument] = STATE(4249), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_end] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_end] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), [anon_sym_BANG] = ACTIONS(343), [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(351), @@ -56602,333 +56399,716 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(373), - [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(381), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(1233), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(395), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(455), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(1233), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(1233), - [sym__regular_rescue_keyword] = ACTIONS(1233), - [sym__modifier_rescue_keyword] = ACTIONS(1233), - [sym__regular_ensure_keyword] = ACTIONS(1233), - [sym__modifier_ensure_keyword] = ACTIONS(1233), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(457), - }, - [113] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3738), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(113), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3739), - [sym_double_splat] = STATE(3739), - [sym_named_expr] = STATE(3739), - [sym_argument_list_no_parens] = STATE(3448), - [sym_argument_list_no_parens_with_block] = STATE(3966), - [sym_argument_list_with_parens] = STATE(3492), - [sym_argument_list_with_parens_and_block] = STATE(3967), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(3968), - [sym_brace_block] = STATE(3969), - [sym_block_argument] = STATE(3857), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_end] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), [anon_sym_AMP_AMP] = ACTIONS(1245), [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), [sym__line_break] = ACTIONS(1245), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(713), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1245), [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1245), [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(675), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(677), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(715), + [sym__block_ampersand] = ACTIONS(455), [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1245), [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_if_keyword] = ACTIONS(413), [sym__modifier_if_keyword] = ACTIONS(1245), - [sym__regular_unless_keyword] = ACTIONS(687), + [sym__regular_unless_keyword] = ACTIONS(415), [sym__modifier_unless_keyword] = ACTIONS(1245), + [sym__regular_rescue_keyword] = ACTIONS(1245), [sym__modifier_rescue_keyword] = ACTIONS(1245), [sym__regular_ensure_keyword] = ACTIONS(1245), [sym__modifier_ensure_keyword] = ACTIONS(1245), [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(717), + [sym__start_of_parenless_args] = ACTIONS(457), + }, + [111] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3602), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(111), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3603), + [sym_double_splat] = STATE(3603), + [sym_named_expr] = STATE(3603), + [sym_argument_list_no_parens] = STATE(3256), + [sym_argument_list_no_parens_with_block] = STATE(3890), + [sym_argument_list_with_parens] = STATE(3121), + [sym_argument_list_with_parens_and_block] = STATE(3414), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3416), + [sym_brace_block] = STATE(3417), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1239), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1239), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1241), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(585), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(587), + }, + [112] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2481), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(112), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym__control_expressions] = STATE(2733), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2493), + [sym_double_splat] = STATE(2493), + [sym_named_expr] = STATE(2493), + [sym_argument_list_no_parens] = STATE(2722), + [sym_argument_list_with_parens] = STATE(2722), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(175), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(177), + [anon_sym_RPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(1269), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_end] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_elsif] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_when] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_in] = ACTIONS(1271), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_break] = ACTIONS(1269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1269), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(263), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(265), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__modifier_if_keyword] = ACTIONS(1269), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__modifier_unless_keyword] = ACTIONS(1269), + [sym__modifier_rescue_keyword] = ACTIONS(1269), + [sym__modifier_ensure_keyword] = ACTIONS(1269), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1267), + }, + [113] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3599), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(113), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3600), + [sym_double_splat] = STATE(3600), + [sym_named_expr] = STATE(3600), + [sym_argument_list_no_parens] = STATE(3306), + [sym_argument_list_no_parens_with_block] = STATE(4566), + [sym_argument_list_with_parens] = STATE(3144), + [sym_argument_list_with_parens_and_block] = STATE(4020), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4021), + [sym_brace_block] = STATE(4022), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1239), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1239), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1241), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(549), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(571), }, [114] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3801), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3892), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(114), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3802), - [sym_double_splat] = STATE(3802), - [sym_named_expr] = STATE(3802), - [sym_argument_list_no_parens] = STATE(3291), - [sym_argument_list_no_parens_with_block] = STATE(4784), - [sym_argument_list_with_parens] = STATE(3292), - [sym_argument_list_with_parens_and_block] = STATE(4785), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4786), - [sym_brace_block] = STATE(4787), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3893), + [sym_double_splat] = STATE(3893), + [sym_named_expr] = STATE(3893), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), @@ -56942,30 +57122,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(603), [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_end] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_end] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), [anon_sym_BANG] = ACTIONS(613), [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_typeof] = ACTIONS(621), @@ -56984,12 +57164,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), + [anon_sym_COLON] = ACTIONS(1273), [anon_sym_LPAREN2] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(645), [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), [anon_sym_do] = ACTIONS(651), [anon_sym_begin] = ACTIONS(653), [anon_sym_while] = ACTIONS(655), @@ -56997,38 +57178,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(659), [anon_sym_select] = ACTIONS(661), [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1245), + [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(665), [sym__start_of_hash_or_tuple] = ACTIONS(667), [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1245), + [sym__start_of_index_operator] = ACTIONS(1233), [sym_unary_plus] = ACTIONS(671), [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), [sym_unary_wrapping_plus] = ACTIONS(673), [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1245), + [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1245), + [sym__binary_double_star] = ACTIONS(1233), [sym__block_ampersand] = ACTIONS(679), - [sym_binary_ampersand] = ACTIONS(1245), + [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1245), + [sym__modifier_if_keyword] = ACTIONS(1233), [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1245), - [sym__modifier_rescue_keyword] = ACTIONS(1245), - [sym__regular_ensure_keyword] = ACTIONS(1245), - [sym__modifier_ensure_keyword] = ACTIONS(1245), - [sym__modulo_operator] = ACTIONS(1245), + [sym__modifier_unless_keyword] = ACTIONS(1233), + [sym__modifier_rescue_keyword] = ACTIONS(1233), + [sym__regular_ensure_keyword] = ACTIONS(1233), + [sym__modifier_ensure_keyword] = ACTIONS(1233), + [sym__modulo_operator] = ACTIONS(1233), [sym__string_literal_start] = ACTIONS(689), [sym__string_percent_literal_start] = ACTIONS(691), [sym__command_percent_literal_start] = ACTIONS(693), @@ -57040,105 +57221,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(701), }, [115] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3798), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3292), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(115), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3799), - [sym_double_splat] = STATE(3799), - [sym_named_expr] = STATE(3799), - [sym_argument_list_no_parens] = STATE(3133), - [sym_argument_list_no_parens_with_block] = STATE(4357), - [sym_argument_list_with_parens] = STATE(3135), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4477), - [sym_brace_block] = STATE(4487), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1249), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3293), + [sym_double_splat] = STATE(3293), + [sym_named_expr] = STATE(3293), + [sym_argument_list_no_parens] = STATE(3118), + [sym_argument_list_no_parens_with_block] = STATE(4113), + [sym_argument_list_with_parens] = STATE(2902), + [sym_argument_list_with_parens_and_block] = STATE(4114), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_do_end_block] = STATE(4118), + [sym_brace_block] = STATE(4119), + [sym_block_argument] = STATE(4062), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(321), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1249), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_RBRACK] = ACTIONS(1249), - [anon_sym_EQ_GT] = ACTIONS(1249), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DOT_DOT] = ACTIONS(1251), [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DASH_GT] = ACTIONS(339), [anon_sym_DOT] = ACTIONS(1251), [anon_sym_end] = ACTIONS(1251), [anon_sym_LT] = ACTIONS(1251), @@ -57153,163 +57330,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1249), [anon_sym_LT_EQ_GT] = ACTIONS(1249), [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), [anon_sym_BANG_TILDE] = ACTIONS(1249), [anon_sym_EQ_TILDE] = ACTIONS(1249), [anon_sym_AMP_STAR] = ACTIONS(1251), [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(435), [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), [anon_sym_AMP_AMP] = ACTIONS(1249), [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), + [anon_sym_do] = ACTIONS(441), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), [anon_sym_else] = ACTIONS(1251), - [anon_sym_when] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1251), - [aux_sym_asm_token1] = ACTIONS(533), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(1249), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_brace_block] = ACTIONS(443), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), [sym_binary_plus] = ACTIONS(1249), [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), [sym_binary_wrapping_plus] = ACTIONS(1249), [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(545), + [sym__unary_star] = ACTIONS(403), [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(547), + [sym__unary_double_star] = ACTIONS(405), [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(549), + [sym__block_ampersand] = ACTIONS(455), [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), [sym__binary_slash] = ACTIONS(1249), [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(1249), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(1249), + [sym__regular_rescue_keyword] = ACTIONS(1249), + [sym__modifier_rescue_keyword] = ACTIONS(1249), + [sym__regular_ensure_keyword] = ACTIONS(1249), + [sym__modifier_ensure_keyword] = ACTIONS(1249), [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(571), + [sym__start_of_parenless_args] = ACTIONS(457), }, [116] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3727), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3599), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(116), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3728), - [sym_double_splat] = STATE(3728), - [sym_named_expr] = STATE(3728), - [sym_argument_list_no_parens] = STATE(3256), - [sym_argument_list_no_parens_with_block] = STATE(3770), - [sym_argument_list_with_parens] = STATE(3148), - [sym_argument_list_with_parens_and_block] = STATE(3771), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3772), - [sym_brace_block] = STATE(3773), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3600), + [sym_double_splat] = STATE(3600), + [sym_named_expr] = STATE(3600), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1233), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -57317,38 +57499,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(465), [aux_sym_float_token2] = ACTIONS(467), [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1233), [sym_operator_symbol] = ACTIONS(471), [sym_unquoted_symbol] = ACTIONS(471), [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_RBRACK] = ACTIONS(1241), - [anon_sym_EQ_GT] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_end] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), [anon_sym_BANG] = ACTIONS(483), [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), [anon_sym_with] = ACTIONS(487), [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), @@ -57367,48 +57549,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_COLON] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(515), [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1213), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(521), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_when] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_when] = ACTIONS(1235), [anon_sym_case] = ACTIONS(529), [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1243), + [anon_sym_in] = ACTIONS(1235), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_brace_block] = ACTIONS(535), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1233), [sym_unary_plus] = ACTIONS(541), [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), [sym_unary_wrapping_plus] = ACTIONS(543), [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1241), + [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(585), - [sym_binary_ampersand] = ACTIONS(1241), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(549), + [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1241), + [sym__modulo_operator] = ACTIONS(1233), [sym__string_literal_start] = ACTIONS(559), [sym__string_percent_literal_start] = ACTIONS(561), [sym__command_percent_literal_start] = ACTIONS(563), @@ -57417,111 +57600,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(587), + [sym__start_of_parenless_args] = ACTIONS(571), }, [117] = { - [sym__terminator] = STATE(183), - [sym__statements] = STATE(8626), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(181), + [sym__statements] = STATE(8724), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(117), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11143), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11704), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -57610,108 +57793,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [118] = { - [sym__terminator] = STATE(198), - [sym__statements] = STATE(8671), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(185), + [sym__statements] = STATE(8623), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(118), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(10986), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(10961), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -57800,108 +57983,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [119] = { - [sym__terminator] = STATE(185), - [sym__statements] = STATE(8659), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(210), + [sym__statements] = STATE(8787), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(119), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11414), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11686), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -57990,108 +58173,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [120] = { - [sym__terminator] = STATE(178), - [sym__statements] = STATE(8681), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(189), + [sym__statements] = STATE(8608), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(120), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11936), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -58180,108 +58363,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [121] = { - [sym__terminator] = STATE(187), - [sym__statements] = STATE(8697), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3829), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(121), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11662), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(3449), + [sym_argument_list_no_parens_with_block] = STATE(4785), + [sym_argument_list_with_parens] = STATE(3228), + [sym_argument_list_with_parens_and_block] = STATE(4398), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4399), + [sym_brace_block] = STATE(4408), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(651), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(1239), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(665), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(675), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(677), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(725), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(1239), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(1239), + [sym__modifier_rescue_keyword] = ACTIONS(1239), + [sym__regular_ensure_keyword] = ACTIONS(1239), + [sym__modifier_ensure_keyword] = ACTIONS(1239), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(727), + }, + [122] = { + [sym__terminator] = STATE(191), + [sym__statements] = STATE(8629), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(122), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12001), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -58369,299 +58742,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [122] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3798), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(122), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3799), - [sym_double_splat] = STATE(3799), - [sym_named_expr] = STATE(3799), - [sym_argument_list_no_parens] = STATE(3226), - [sym_argument_list_no_parens_with_block] = STATE(4436), - [sym_argument_list_with_parens] = STATE(3227), - [sym_argument_list_with_parens_and_block] = STATE(4464), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4465), - [sym_brace_block] = STATE(4466), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1241), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1241), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_RBRACK] = ACTIONS(1241), - [anon_sym_EQ_GT] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_when] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1243), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(549), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(571), - }, [123] = { - [sym__terminator] = STATE(199), - [sym__statements] = STATE(8680), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(193), + [sym__statements] = STATE(8796), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(123), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12316), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(10939), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -58750,83 +58933,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [124] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3798), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3602), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(124), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3799), - [sym_double_splat] = STATE(3799), - [sym_named_expr] = STATE(3799), - [sym_argument_list_no_parens] = STATE(3138), - [sym_argument_list_no_parens_with_block] = STATE(4530), - [sym_argument_list_with_parens] = STATE(3139), - [sym_argument_list_with_parens_and_block] = STATE(4325), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4330), - [sym_brace_block] = STATE(4354), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3603), + [sym_double_splat] = STATE(3603), + [sym_named_expr] = STATE(3603), + [sym_argument_list_no_parens] = STATE(3175), + [sym_argument_list_no_parens_with_block] = STATE(3620), + [sym_argument_list_with_parens] = STATE(3176), + [sym_argument_list_with_parens_and_block] = STATE(3624), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3625), + [sym_brace_block] = STATE(3626), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(1245), @@ -58887,13 +59070,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_LPAREN2] = ACTIONS(577), [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(515), [sym_protected] = ACTIONS(515), [anon_sym_AMP_AMP] = ACTIONS(1245), [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(521), + [anon_sym_do] = ACTIONS(1247), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -58904,7 +59087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1247), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_brace_block] = ACTIONS(583), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(1245), @@ -58920,7 +59103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(1245), [sym__unary_double_star] = ACTIONS(547), [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(549), + [sym__block_ampersand] = ACTIONS(585), [sym_binary_ampersand] = ACTIONS(1245), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), @@ -58937,86 +59120,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(571), + [sym__start_of_parenless_args] = ACTIONS(587), }, [125] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3727), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__terminator] = STATE(195), + [sym__statements] = STATE(8666), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(125), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11624), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_annotation] = ACTIONS(1301), + [anon_sym_end] = ACTIONS(1425), + [anon_sym_AT_LBRACK] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1309), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_lib] = ACTIONS(1317), + [anon_sym_fun] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(1325), + [anon_sym_extend] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_next] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(1357), + [sym_class_var] = ACTIONS(1357), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1359), + [sym_protected] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_require] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__regular_rescue_keyword] = ACTIONS(1399), + [sym__regular_ensure_keyword] = ACTIONS(1401), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [126] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3602), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(126), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3728), - [sym_double_splat] = STATE(3728), - [sym_named_expr] = STATE(3728), - [sym_argument_list_no_parens] = STATE(3159), - [sym_argument_list_no_parens_with_block] = STATE(3622), - [sym_argument_list_with_parens] = STATE(3160), - [sym_argument_list_with_parens_and_block] = STATE(3623), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3624), - [sym_brace_block] = STATE(3625), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3603), + [sym_double_splat] = STATE(3603), + [sym_named_expr] = STATE(3603), + [sym_argument_list_no_parens] = STATE(3192), + [sym_argument_list_no_parens_with_block] = STATE(3627), + [sym_argument_list_with_parens] = STATE(3194), + [sym_argument_list_with_parens_and_block] = STATE(3628), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3629), + [sym_brace_block] = STATE(3630), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(1249), @@ -59129,302 +59502,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(587), }, - [126] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3727), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(126), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3728), - [sym_double_splat] = STATE(3728), - [sym_named_expr] = STATE(3728), - [sym_argument_list_no_parens] = STATE(3161), - [sym_argument_list_no_parens_with_block] = STATE(3626), - [sym_argument_list_with_parens] = STATE(3162), - [sym_argument_list_with_parens_and_block] = STATE(3627), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3628), - [sym_brace_block] = STATE(3629), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1245), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1245), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_RBRACK] = ACTIONS(1245), - [anon_sym_EQ_GT] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_end] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_when] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1247), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(585), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(587), - }, - [127] = { - [sym__terminator] = STATE(191), - [sym__statements] = STATE(8724), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(127), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11922), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), + [127] = { + [sym__terminator] = STATE(197), + [sym__statements] = STATE(8732), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(127), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12246), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), [sym_true] = ACTIONS(1283), @@ -59439,7 +59622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1425), + [anon_sym_end] = ACTIONS(1427), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -59510,488 +59693,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [128] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3798), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__terminator] = STATE(200), + [sym__statements] = STATE(8767), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(128), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3799), - [sym_double_splat] = STATE(3799), - [sym_named_expr] = STATE(3799), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1233), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1233), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_RBRACK] = ACTIONS(1233), - [anon_sym_EQ_GT] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_end] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_when] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1235), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(549), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(571), - }, - [129] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3738), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(129), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3739), - [sym_double_splat] = STATE(3739), - [sym_named_expr] = STATE(3739), - [sym_argument_list_no_parens] = STATE(3430), - [sym_argument_list_no_parens_with_block] = STATE(4265), - [sym_argument_list_with_parens] = STATE(3443), - [sym_argument_list_with_parens_and_block] = STATE(3808), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(3809), - [sym_brace_block] = STATE(3810), - [sym_block_argument] = STATE(3857), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1225), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1241), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(713), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(715), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1241), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__regular_ensure_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(717), - }, - [130] = { - [sym__terminator] = STATE(193), - [sym__statements] = STATE(8562), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(130), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12283), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12270), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -60009,7 +59812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1427), + [anon_sym_end] = ACTIONS(1429), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -60079,84 +59882,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [131] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3727), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(131), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [129] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3599), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(129), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3728), - [sym_double_splat] = STATE(3728), - [sym_named_expr] = STATE(3728), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3600), + [sym_double_splat] = STATE(3600), + [sym_named_expr] = STATE(3600), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(1233), @@ -60217,13 +60020,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_LPAREN2] = ACTIONS(513), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(515), [sym_protected] = ACTIONS(515), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(521), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -60234,7 +60037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1235), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_brace_block] = ACTIONS(535), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(1233), @@ -60250,7 +60053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(547), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(585), + [sym__block_ampersand] = ACTIONS(549), [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), @@ -60267,111 +60070,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(587), + [sym__start_of_parenless_args] = ACTIONS(571), }, - [132] = { - [sym__terminator] = STATE(210), - [sym__statements] = STATE(8587), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(132), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12223), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [130] = { + [sym__terminator] = STATE(202), + [sym__statements] = STATE(8789), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(130), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11070), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -60389,7 +60192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1429), + [anon_sym_end] = ACTIONS(1431), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -60459,109 +60262,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [133] = { - [sym__terminator] = STATE(180), - [sym__statements] = STATE(8561), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(133), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12135), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [131] = { + [sym__terminator] = STATE(204), + [sym__statements] = STATE(8639), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(131), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11824), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -60579,7 +60382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1431), + [anon_sym_end] = ACTIONS(1433), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -60649,109 +60452,489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, + [132] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3602), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(132), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3603), + [sym_double_splat] = STATE(3603), + [sym_named_expr] = STATE(3603), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1233), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1233), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_end] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_when] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1235), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(585), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(587), + }, + [133] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3892), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(133), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3893), + [sym_double_splat] = STATE(3893), + [sym_named_expr] = STATE(3893), + [sym_argument_list_no_parens] = STATE(3440), + [sym_argument_list_no_parens_with_block] = STATE(4706), + [sym_argument_list_with_parens] = STATE(3441), + [sym_argument_list_with_parens_and_block] = STATE(4708), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4717), + [sym_brace_block] = STATE(4722), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_end] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(651), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(1245), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(665), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(675), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(677), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(679), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(1245), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(1245), + [sym__modifier_rescue_keyword] = ACTIONS(1245), + [sym__regular_ensure_keyword] = ACTIONS(1245), + [sym__modifier_ensure_keyword] = ACTIONS(1245), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(701), + }, [134] = { - [sym__terminator] = STATE(196), - [sym__statements] = STATE(8690), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(179), + [sym__statements] = STATE(8773), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(134), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11066), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12057), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -60769,7 +60952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1433), + [anon_sym_end] = ACTIONS(1435), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -60840,83 +61023,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [135] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3738), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3599), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(135), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3739), - [sym_double_splat] = STATE(3739), - [sym_named_expr] = STATE(3739), - [sym_argument_list_no_parens] = STATE(3515), - [sym_argument_list_no_parens_with_block] = STATE(3837), - [sym_argument_list_with_parens] = STATE(3515), - [sym_argument_list_with_parens_and_block] = STATE(3837), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(3847), - [sym_brace_block] = STATE(3855), - [sym_block_argument] = STATE(3857), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3600), + [sym_double_splat] = STATE(3600), + [sym_named_expr] = STATE(3600), + [sym_argument_list_no_parens] = STATE(3258), + [sym_argument_list_no_parens_with_block] = STATE(4600), + [sym_argument_list_with_parens] = STATE(3268), + [sym_argument_list_with_parens_and_block] = STATE(4444), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4483), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1245), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1245), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1245), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_end] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(1247), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1247), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(549), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(571), + }, + [136] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3613), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(136), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_argument_list_no_parens] = STATE(3551), + [sym_argument_list_no_parens_with_block] = STATE(4298), + [sym_argument_list_with_parens] = STATE(3551), + [sym_argument_list_with_parens_and_block] = STATE(4298), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4299), + [sym_brace_block] = STATE(4300), + [sym_block_argument] = STATE(4301), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(591), @@ -61029,86 +61402,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(717), }, - [136] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3801), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(136), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3802), - [sym_double_splat] = STATE(3802), - [sym_named_expr] = STATE(3802), - [sym_argument_list_no_parens] = STATE(3504), - [sym_argument_list_no_parens_with_block] = STATE(4618), - [sym_argument_list_with_parens] = STATE(3330), - [sym_argument_list_with_parens_and_block] = STATE(4620), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4622), - [sym_brace_block] = STATE(4623), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [137] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3613), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(137), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_argument_list_no_parens] = STATE(3564), + [sym_argument_list_no_parens_with_block] = STATE(4313), + [sym_argument_list_with_parens] = STATE(3565), + [sym_argument_list_with_parens_and_block] = STATE(4314), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4315), + [sym_brace_block] = STATE(4316), + [sym_block_argument] = STATE(4301), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), @@ -61122,30 +61495,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(603), [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_end] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), [anon_sym_BANG] = ACTIONS(613), [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_typeof] = ACTIONS(621), @@ -61164,51 +61537,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(707), + [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(645), [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(651), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1247), [anon_sym_begin] = ACTIONS(653), [anon_sym_while] = ACTIONS(655), [anon_sym_until] = ACTIONS(657), [anon_sym_case] = ACTIONS(659), [anon_sym_select] = ACTIONS(661), [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1241), + [sym__line_break] = ACTIONS(1245), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(665), + [sym__start_of_brace_block] = ACTIONS(713), [sym__start_of_hash_or_tuple] = ACTIONS(667), [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1245), [sym_unary_plus] = ACTIONS(671), [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), [sym_unary_wrapping_plus] = ACTIONS(673), [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1241), + [sym__binary_star] = ACTIONS(1245), [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(679), - [sym_binary_ampersand] = ACTIONS(1241), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(715), + [sym_binary_ampersand] = ACTIONS(1245), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1241), + [sym__modifier_if_keyword] = ACTIONS(1245), [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__regular_ensure_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), + [sym__modifier_unless_keyword] = ACTIONS(1245), + [sym__modifier_rescue_keyword] = ACTIONS(1245), + [sym__regular_ensure_keyword] = ACTIONS(1245), + [sym__modifier_ensure_keyword] = ACTIONS(1245), + [sym__modulo_operator] = ACTIONS(1245), [sym__string_literal_start] = ACTIONS(689), [sym__string_percent_literal_start] = ACTIONS(691), [sym__command_percent_literal_start] = ACTIONS(693), @@ -61217,276 +61590,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(699), [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(701), - }, - [137] = { - [sym__terminator] = STATE(200), - [sym__statements] = STATE(8686), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(137), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11131), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1435), - [anon_sym_AT_LBRACK] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_lib] = ACTIONS(1317), - [anon_sym_fun] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(1325), - [anon_sym_extend] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_next] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(1357), - [sym_class_var] = ACTIONS(1357), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1359), - [sym_protected] = ACTIONS(1361), - [anon_sym_alias] = ACTIONS(1363), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_require] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(1399), - [sym__regular_ensure_keyword] = ACTIONS(1401), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(717), }, [138] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3738), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3613), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(138), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3739), - [sym_double_splat] = STATE(3739), - [sym_named_expr] = STATE(3739), - [sym_argument_list_no_parens] = STATE(3345), - [sym_argument_list_no_parens_with_block] = STATE(3902), - [sym_argument_list_with_parens] = STATE(3429), - [sym_argument_list_with_parens_and_block] = STATE(3907), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(3923), - [sym_brace_block] = STATE(3953), - [sym_block_argument] = STATE(3857), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_argument_list_no_parens] = STATE(3566), + [sym_argument_list_no_parens_with_block] = STATE(4317), + [sym_argument_list_with_parens] = STATE(3567), + [sym_argument_list_with_parens_and_block] = STATE(4320), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4321), + [sym_brace_block] = STATE(4322), + [sym_block_argument] = STATE(4301), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_LPAREN] = ACTIONS(591), @@ -61600,108 +61783,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(717), }, [139] = { - [sym__terminator] = STATE(182), - [sym__statements] = STATE(8748), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3599), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(139), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12056), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3600), + [sym_double_splat] = STATE(3600), + [sym_named_expr] = STATE(3600), + [sym_argument_list_no_parens] = STATE(3274), + [sym_argument_list_no_parens_with_block] = STATE(4358), + [sym_argument_list_with_parens] = STATE(3288), + [sym_argument_list_with_parens_and_block] = STATE(4374), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4378), + [sym_brace_block] = STATE(4379), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1249), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_end] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1249), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_when] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1251), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1249), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(549), + [sym_binary_ampersand] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1249), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(571), + }, + [140] = { + [sym__terminator] = STATE(199), + [sym__statements] = STATE(8678), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(140), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11642), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -61789,84 +62162,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [140] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3801), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(140), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3802), - [sym_double_splat] = STATE(3802), - [sym_named_expr] = STATE(3802), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [141] = { + [sym__terminator] = STATE(183), + [sym__statements] = STATE(8749), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(141), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11435), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_annotation] = ACTIONS(1301), + [anon_sym_end] = ACTIONS(1439), + [anon_sym_AT_LBRACK] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1309), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_lib] = ACTIONS(1317), + [anon_sym_fun] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(1325), + [anon_sym_extend] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_next] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(1357), + [sym_class_var] = ACTIONS(1357), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1359), + [sym_protected] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_require] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__regular_rescue_keyword] = ACTIONS(1399), + [sym__regular_ensure_keyword] = ACTIONS(1401), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [142] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3892), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(142), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3893), + [sym_double_splat] = STATE(3893), + [sym_named_expr] = STATE(3893), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(591), @@ -61979,277 +62542,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(701), }, - [141] = { - [sym__terminator] = STATE(202), - [sym__statements] = STATE(8698), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(141), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11949), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1439), - [anon_sym_AT_LBRACK] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_lib] = ACTIONS(1317), - [anon_sym_fun] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(1325), - [anon_sym_extend] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_next] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(1357), - [sym_class_var] = ACTIONS(1357), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1359), - [sym_protected] = ACTIONS(1361), - [anon_sym_alias] = ACTIONS(1363), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_require] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(1399), - [sym__regular_ensure_keyword] = ACTIONS(1401), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [142] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3801), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(142), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3802), - [sym_double_splat] = STATE(3802), - [sym_named_expr] = STATE(3802), - [sym_argument_list_no_parens] = STATE(3283), - [sym_argument_list_no_parens_with_block] = STATE(4780), - [sym_argument_list_with_parens] = STATE(3289), - [sym_argument_list_with_parens_and_block] = STATE(4781), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4782), - [sym_brace_block] = STATE(4783), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(591), + [143] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3892), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(143), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3893), + [sym_double_splat] = STATE(3893), + [sym_named_expr] = STATE(3893), + [sym_argument_list_no_parens] = STATE(3442), + [sym_argument_list_no_parens_with_block] = STATE(4725), + [sym_argument_list_with_parens] = STATE(3443), + [sym_argument_list_with_parens_and_block] = STATE(4727), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4729), + [sym_brace_block] = STATE(4732), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -62359,488 +62732,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(701), }, - [143] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2807), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(143), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym__control_expressions] = STATE(3081), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(2834), - [sym_double_splat] = STATE(2834), - [sym_named_expr] = STATE(2834), - [sym_argument_list_no_parens] = STATE(2899), - [sym_argument_list_with_parens] = STATE(2899), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1257), - [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(1257), - [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(1445), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [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(1451), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_when] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(1259), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(1257), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(1469), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(1471), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(1257), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(1257), - [sym__modifier_rescue_keyword] = ACTIONS(1257), - [sym__modifier_ensure_keyword] = ACTIONS(1257), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1475), - }, [144] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3563), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__statements] = STATE(8743), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(144), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3564), - [sym_double_splat] = STATE(3564), - [sym_named_expr] = STATE(3564), - [sym_argument_list_no_parens] = STATE(3504), - [sym_argument_list_no_parens_with_block] = STATE(4618), - [sym_argument_list_with_parens] = STATE(3330), - [sym_argument_list_with_parens_and_block] = STATE(4620), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4622), - [sym_brace_block] = STATE(4623), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(651), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1241), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(665), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(725), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1241), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1241), - [sym__modifier_rescue_keyword] = ACTIONS(1241), - [sym__regular_ensure_keyword] = ACTIONS(1241), - [sym__modifier_ensure_keyword] = ACTIONS(1241), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(727), - }, - [145] = { - [sym__terminator] = STATE(217), - [sym__statements] = STATE(8942), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(145), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11576), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10446), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8955), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(10986), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -62856,7 +62851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1477), + [anon_sym_end] = ACTIONS(1443), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -62866,6 +62861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -62903,7 +62899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -62926,110 +62921,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [146] = { - [sym__terminator] = STATE(213), - [sym__statements] = STATE(8886), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(146), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11427), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10681), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8887), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [145] = { + [sym__statements] = STATE(8641), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(145), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11913), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -63045,7 +63040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1479), + [anon_sym_end] = ACTIONS(1447), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -63055,6 +63050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1449), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -63092,7 +63088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -63115,110 +63110,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, + [146] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3829), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(146), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(3403), + [sym_argument_list_no_parens_with_block] = STATE(4657), + [sym_argument_list_with_parens] = STATE(3403), + [sym_argument_list_with_parens_and_block] = STATE(4657), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4659), + [sym_brace_block] = STATE(4663), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_end] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(651), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(1233), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(665), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(675), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(677), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(725), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(1233), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(1233), + [sym__modifier_rescue_keyword] = ACTIONS(1233), + [sym__regular_ensure_keyword] = ACTIONS(1233), + [sym__modifier_ensure_keyword] = ACTIONS(1233), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(727), + }, [147] = { - [sym__statements] = STATE(8607), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8663), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(147), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11341), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(10967), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -63234,7 +63418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1483), + [anon_sym_end] = ACTIONS(1451), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -63244,7 +63428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1453), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -63305,109 +63489,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [148] = { - [sym__terminator] = STATE(222), - [sym__statements] = STATE(8966), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8683), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(148), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(12129), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10628), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8970), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11673), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -63423,7 +63607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1487), + [anon_sym_end] = ACTIONS(1455), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -63433,6 +63617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1457), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -63470,7 +63655,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -63494,109 +63678,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [149] = { - [sym__terminator] = STATE(224), - [sym__statements] = STATE(8975), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8680), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(149), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(12158), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10639), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8983), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12078), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -63612,7 +63796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1489), + [anon_sym_end] = ACTIONS(1459), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -63622,6 +63806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1461), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -63659,7 +63844,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -63683,109 +63867,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [150] = { - [sym__terminator] = STATE(220), - [sym__statements] = STATE(8900), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8679), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(150), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(12105), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10126), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8910), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11097), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -63801,7 +63985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1491), + [anon_sym_end] = ACTIONS(1463), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -63811,6 +63995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1465), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -63848,7 +64033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -63872,109 +64056,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [151] = { - [sym__statements] = STATE(8615), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(214), + [sym__statements] = STATE(8935), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(151), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12325), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12088), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10170), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8936), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -63990,7 +64174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1493), + [anon_sym_end] = ACTIONS(1467), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -64000,7 +64184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1495), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -64038,6 +64221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -64061,107 +64245,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [152] = { - [sym__terminator] = STATE(223), - [sym__statements] = STATE(8926), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(222), + [sym__statements] = STATE(9150), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(152), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11056), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10274), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8930), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11898), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10601), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8806), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -64179,7 +64363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1497), + [anon_sym_end] = ACTIONS(1469), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -64250,109 +64434,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [153] = { - [sym__terminator] = STATE(219), - [sym__statements] = STATE(8932), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8795), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(153), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11070), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10283), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8933), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12182), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -64368,7 +64552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1499), + [anon_sym_end] = ACTIONS(1471), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -64378,6 +64562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1473), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -64415,7 +64600,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -64439,107 +64623,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [154] = { - [sym__terminator] = STATE(212), - [sym__statements] = STATE(9040), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(220), + [sym__statements] = STATE(8952), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(154), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(12047), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10396), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(9041), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12312), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10198), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8953), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -64557,7 +64741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1501), + [anon_sym_end] = ACTIONS(1475), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -64628,109 +64812,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [155] = { - [sym__statements] = STATE(8692), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(155), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11751), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3306), + [sym_argument_list_no_parens_with_block] = STATE(4566), + [sym_argument_list_with_parens] = STATE(3144), + [sym_argument_list_with_parens_and_block] = STATE(4020), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4021), + [sym_brace_block] = STATE(4022), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1239), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1239), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_end] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1241), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(737), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(739), + }, + [156] = { + [sym__terminator] = STATE(213), + [sym__statements] = STATE(8955), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(156), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12320), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10200), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8956), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -64746,7 +65119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1503), + [anon_sym_end] = ACTIONS(1477), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -64756,7 +65129,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1505), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -64794,6 +65166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -64816,110 +65189,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [156] = { - [sym__terminator] = STATE(215), - [sym__statements] = STATE(9089), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(156), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(12287), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10300), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(9091), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [157] = { + [sym__statements] = STATE(8745), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(157), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12298), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -64935,7 +65308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1507), + [anon_sym_end] = ACTIONS(1479), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -64945,6 +65318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1481), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -64982,7 +65356,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -65005,110 +65378,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [157] = { - [sym__terminator] = STATE(218), - [sym__statements] = STATE(9097), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(157), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10938), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10353), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(9128), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [158] = { + [sym__statements] = STATE(8716), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(158), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12022), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -65124,7 +65497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1509), + [anon_sym_end] = ACTIONS(1483), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -65134,6 +65507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1485), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -65171,7 +65545,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -65194,110 +65567,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [158] = { - [sym__statements] = STATE(8704), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(158), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11326), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [159] = { + [sym__statements] = STATE(8764), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(159), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11199), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -65313,7 +65686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1511), + [anon_sym_end] = ACTIONS(1487), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -65323,7 +65696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1489), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -65383,275 +65756,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [159] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3563), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(159), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3564), - [sym_double_splat] = STATE(3564), - [sym_named_expr] = STATE(3564), - [sym_argument_list_no_parens] = STATE(3291), - [sym_argument_list_no_parens_with_block] = STATE(4784), - [sym_argument_list_with_parens] = STATE(3292), - [sym_argument_list_with_parens_and_block] = STATE(4785), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4786), - [sym_brace_block] = STATE(4787), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_end] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(651), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1245), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(665), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(725), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1245), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1245), - [sym__modifier_rescue_keyword] = ACTIONS(1245), - [sym__regular_ensure_keyword] = ACTIONS(1245), - [sym__modifier_ensure_keyword] = ACTIONS(1245), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(727), - }, [160] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3563), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3829), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(160), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3564), - [sym_double_splat] = STATE(3564), - [sym_named_expr] = STATE(3564), - [sym_argument_list_no_parens] = STATE(3508), - [sym_argument_list_no_parens_with_block] = STATE(4772), - [sym_argument_list_with_parens] = STATE(3508), - [sym_argument_list_with_parens_and_block] = STATE(4772), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4773), - [sym_brace_block] = STATE(4774), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(3442), + [sym_argument_list_no_parens_with_block] = STATE(4725), + [sym_argument_list_with_parens] = STATE(3443), + [sym_argument_list_with_parens_and_block] = STATE(4727), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4729), + [sym_brace_block] = STATE(4732), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), @@ -65665,29 +65849,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(603), [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_end] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_end] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), [anon_sym_BANG] = ACTIONS(613), [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_typeof] = ACTIONS(621), @@ -65707,11 +65891,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), [anon_sym_LPAREN2] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1249), [sym_private] = ACTIONS(645), [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), [anon_sym_do] = ACTIONS(651), [anon_sym_begin] = ACTIONS(653), [anon_sym_while] = ACTIONS(655), @@ -65719,38 +65903,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(659), [anon_sym_select] = ACTIONS(661), [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1233), + [sym__line_break] = ACTIONS(1249), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(665), [sym__start_of_hash_or_tuple] = ACTIONS(667), [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1233), + [sym__start_of_index_operator] = ACTIONS(1249), [sym_unary_plus] = ACTIONS(671), [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), [sym_unary_wrapping_plus] = ACTIONS(673), [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1233), + [sym__binary_star] = ACTIONS(1249), [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1233), + [sym__binary_double_star] = ACTIONS(1249), [sym__block_ampersand] = ACTIONS(725), - [sym_binary_ampersand] = ACTIONS(1233), + [sym_binary_ampersand] = ACTIONS(1249), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1233), + [sym__modifier_if_keyword] = ACTIONS(1249), [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1233), - [sym__modifier_rescue_keyword] = ACTIONS(1233), - [sym__regular_ensure_keyword] = ACTIONS(1233), - [sym__modifier_ensure_keyword] = ACTIONS(1233), - [sym__modulo_operator] = ACTIONS(1233), + [sym__modifier_unless_keyword] = ACTIONS(1249), + [sym__modifier_rescue_keyword] = ACTIONS(1249), + [sym__regular_ensure_keyword] = ACTIONS(1249), + [sym__modifier_ensure_keyword] = ACTIONS(1249), + [sym__modulo_operator] = ACTIONS(1249), [sym__string_literal_start] = ACTIONS(689), [sym__string_percent_literal_start] = ACTIONS(691), [sym__command_percent_literal_start] = ACTIONS(693), @@ -65762,109 +65946,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(727), }, [161] = { - [sym__statements] = STATE(8631), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(221), + [sym__statements] = STATE(9118), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(161), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11186), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11720), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10512), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9120), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -65880,7 +66064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1515), + [anon_sym_end] = ACTIONS(1491), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -65890,7 +66074,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1517), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -65928,6 +66111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -65951,109 +66135,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [162] = { - [sym__statements] = STATE(8708), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8770), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(162), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11053), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11127), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -66069,7 +66253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1519), + [anon_sym_end] = ACTIONS(1493), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -66079,7 +66263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1495), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -66140,109 +66324,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [163] = { - [sym__statements] = STATE(8664), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8727), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(163), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11456), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11793), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -66258,7 +66442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1523), + [anon_sym_end] = ACTIONS(1497), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -66268,7 +66452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1499), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -66329,109 +66513,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [164] = { - [sym__statements] = STATE(8703), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(223), + [sym__statements] = STATE(9134), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(164), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11720), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11854), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10561), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9135), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -66447,7 +66631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1527), + [anon_sym_end] = ACTIONS(1501), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -66457,7 +66641,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1529), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -66495,6 +66678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -66518,298 +66702,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [165] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2807), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__terminator] = STATE(212), + [sym__statements] = STATE(9137), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(165), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym__control_expressions] = STATE(3005), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(2834), - [sym_double_splat] = STATE(2834), - [sym_named_expr] = STATE(2834), - [sym_argument_list_no_parens] = STATE(2899), - [sym_argument_list_with_parens] = STATE(2899), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1273), - [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(1273), - [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(1445), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_end] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [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(1451), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(1275), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_when] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(1275), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(1273), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(1469), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(1471), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(1273), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(1273), - [sym__modifier_rescue_keyword] = ACTIONS(1273), - [sym__modifier_ensure_keyword] = ACTIONS(1273), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1475), - }, - [166] = { - [sym__statements] = STATE(8733), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(166), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11966), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11859), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10562), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9138), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -66825,7 +66820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1531), + [anon_sym_end] = ACTIONS(1503), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -66835,7 +66830,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1533), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -66873,6 +66867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -66895,110 +66890,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [167] = { - [sym__statements] = STATE(8721), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(167), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12309), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [166] = { + [sym__statements] = STATE(8614), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(166), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11343), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -67014,7 +67009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1535), + [anon_sym_end] = ACTIONS(1505), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -67024,7 +67019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1507), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -67084,110 +67079,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [168] = { - [sym__terminator] = STATE(214), - [sym__statements] = STATE(9093), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(168), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(12065), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10121), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(9127), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [167] = { + [sym__statements] = STATE(8708), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(167), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11562), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -67203,7 +67198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1539), + [anon_sym_end] = ACTIONS(1509), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -67213,6 +67208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(1511), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -67250,7 +67246,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -67273,108 +67268,486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, + [168] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2851), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(168), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym__control_expressions] = STATE(3073), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(2865), + [sym_double_splat] = STATE(2865), + [sym_named_expr] = STATE(2865), + [sym_argument_list_no_parens] = STATE(3094), + [sym_argument_list_with_parens] = STATE(3094), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1269), + [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(1269), + [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(1517), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_end] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [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(1523), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(1531), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_elsif] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_when] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(1271), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_break] = ACTIONS(1269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(1541), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(1543), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__modifier_if_keyword] = ACTIONS(1269), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__modifier_unless_keyword] = ACTIONS(1269), + [sym__modifier_rescue_keyword] = ACTIONS(1269), + [sym__modifier_ensure_keyword] = ACTIONS(1269), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1547), + }, [169] = { - [sym__terminator] = STATE(211), - [sym__statements] = STATE(8758), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3829), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(169), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(12137), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10131), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8759), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(3440), + [sym_argument_list_no_parens_with_block] = STATE(4706), + [sym_argument_list_with_parens] = STATE(3441), + [sym_argument_list_with_parens_and_block] = STATE(4708), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_do_end_block] = STATE(4717), + [sym_brace_block] = STATE(4722), + [sym_block_argument] = STATE(4664), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(591), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_end] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(651), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(1245), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(665), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(675), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(677), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(725), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(1245), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(1245), + [sym__modifier_rescue_keyword] = ACTIONS(1245), + [sym__regular_ensure_keyword] = ACTIONS(1245), + [sym__modifier_ensure_keyword] = ACTIONS(1245), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(727), + }, + [170] = { + [sym__terminator] = STATE(215), + [sym__statements] = STATE(9088), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(170), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12079), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10186), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9103), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), @@ -67392,7 +67765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1541), + [anon_sym_end] = ACTIONS(1549), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -67462,110 +67835,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [170] = { - [sym__statements] = STATE(8715), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(170), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11422), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [171] = { + [sym__terminator] = STATE(224), + [sym__statements] = STATE(8914), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(171), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11893), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10136), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8928), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -67581,7 +67954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1543), + [anon_sym_end] = ACTIONS(1551), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -67591,7 +67964,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1545), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -67629,6 +68001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -67651,110 +68024,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [171] = { - [sym__statements] = STATE(8749), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(171), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11236), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [172] = { + [sym__statements] = STATE(8768), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(172), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11516), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -67770,7 +68143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1547), + [anon_sym_end] = ACTIONS(1553), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -67780,7 +68153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1555), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -67840,110 +68213,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [172] = { - [sym__statements] = STATE(8720), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(172), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12008), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [173] = { + [sym__terminator] = STATE(218), + [sym__statements] = STATE(8831), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(173), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11564), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10093), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8833), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -67959,7 +68332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1551), + [anon_sym_end] = ACTIONS(1557), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -67969,7 +68342,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1553), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -68007,6 +68379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -68029,110 +68402,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [173] = { - [sym__statements] = STATE(8695), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(173), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(10911), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [174] = { + [sym__terminator] = STATE(219), + [sym__statements] = STATE(8837), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(174), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11798), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10110), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8838), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -68148,7 +68521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1555), + [anon_sym_end] = ACTIONS(1559), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -68158,7 +68531,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1557), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -68196,6 +68568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -68218,110 +68591,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [174] = { - [sym__statements] = STATE(8747), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(174), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11017), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [175] = { + [sym__statements] = STATE(8791), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(175), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11190), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -68337,7 +68710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(1561), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -68347,7 +68720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1563), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -68407,299 +68780,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [175] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3563), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(175), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3564), - [sym_double_splat] = STATE(3564), - [sym_named_expr] = STATE(3564), - [sym_argument_list_no_parens] = STATE(3283), - [sym_argument_list_no_parens_with_block] = STATE(4780), - [sym_argument_list_with_parens] = STATE(3289), - [sym_argument_list_with_parens_and_block] = STATE(4781), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_do_end_block] = STATE(4782), - [sym_brace_block] = STATE(4783), - [sym_block_argument] = STATE(4775), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_end] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(643), - [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(651), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1249), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(665), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(725), - [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1249), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1249), - [sym__modifier_rescue_keyword] = ACTIONS(1249), - [sym__regular_ensure_keyword] = ACTIONS(1249), - [sym__modifier_ensure_keyword] = ACTIONS(1249), - [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(727), - }, [176] = { - [sym__statements] = STATE(8588), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__terminator] = STATE(216), + [sym__statements] = STATE(8969), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(176), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12297), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(10982), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10227), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8972), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -68715,7 +68899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1563), + [anon_sym_end] = ACTIONS(1565), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -68725,7 +68909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(1317), [anon_sym_fun] = ACTIONS(1319), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(1565), [anon_sym_BANG] = ACTIONS(1321), [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_def] = ACTIONS(59), @@ -68763,6 +68946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1381), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), @@ -68786,297 +68970,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [177] = { - [sym__statements] = STATE(8639), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2851), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(177), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12265), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1281), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym__control_expressions] = STATE(3084), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(2865), + [sym_double_splat] = STATE(2865), + [sym_named_expr] = STATE(2865), + [sym_argument_list_no_parens] = STATE(3094), + [sym_argument_list_with_parens] = STATE(3094), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1567), - [anon_sym_AT_LBRACK] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_lib] = ACTIONS(1317), - [anon_sym_fun] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(1325), - [anon_sym_extend] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_next] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(1357), - [sym_class_var] = ACTIONS(1357), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1359), - [sym_protected] = ACTIONS(1361), - [anon_sym_alias] = ACTIONS(1363), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_require] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [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(1261), + [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(1517), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_end] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [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(1523), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(1531), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_elsif] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_when] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(1263), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_break] = ACTIONS(1261), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(1399), - [sym__regular_ensure_keyword] = ACTIONS(1401), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(1541), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(1543), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__modifier_if_keyword] = ACTIONS(1261), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__modifier_unless_keyword] = ACTIONS(1261), + [sym__modifier_rescue_keyword] = ACTIONS(1261), + [sym__modifier_ensure_keyword] = ACTIONS(1261), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1547), }, [178] = { - [sym__statements] = STATE(8716), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8675), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(178), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11405), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11060), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -69092,7 +69277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1569), + [anon_sym_end] = ACTIONS(1567), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -69162,109 +69347,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [179] = { - [sym__statements] = STATE(8736), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8617), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(179), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11930), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12325), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -69280,7 +69465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1571), + [anon_sym_end] = ACTIONS(1569), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -69350,109 +69535,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [180] = { - [sym__statements] = STATE(8592), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8638), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(180), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12329), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11227), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -69468,7 +69653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1573), + [anon_sym_end] = ACTIONS(1571), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -69538,109 +69723,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [181] = { - [sym__statements] = STATE(8605), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8737), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(181), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11012), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11864), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -69656,7 +69841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1575), + [anon_sym_end] = ACTIONS(1573), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -69726,109 +69911,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [182] = { - [sym__statements] = STATE(8663), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8756), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(182), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11085), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12104), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -69844,7 +70029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1577), + [anon_sym_end] = ACTIONS(1575), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -69914,109 +70099,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [183] = { - [sym__statements] = STATE(8632), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8661), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(183), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11209), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11835), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -70032,7 +70217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1579), + [anon_sym_end] = ACTIONS(1577), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -70102,109 +70287,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [184] = { - [sym__statements] = STATE(8644), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8715), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(184), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11315), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11883), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -70220,7 +70405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1581), + [anon_sym_end] = ACTIONS(1579), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -70290,109 +70475,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [185] = { - [sym__statements] = STATE(8666), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8786), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(185), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11472), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11307), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -70408,7 +70593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1583), + [anon_sym_end] = ACTIONS(1581), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -70478,109 +70663,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [186] = { - [sym__statements] = STATE(8676), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8763), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(186), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11578), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11796), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -70596,7 +70781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1585), + [anon_sym_end] = ACTIONS(1583), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -70666,297 +70851,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [187] = { - [sym__statements] = STATE(8705), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(187), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11750), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1281), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3274), + [sym_argument_list_no_parens_with_block] = STATE(4358), + [sym_argument_list_with_parens] = STATE(3288), + [sym_argument_list_with_parens_and_block] = STATE(4374), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4378), + [sym_brace_block] = STATE(4379), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1249), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1587), - [anon_sym_AT_LBRACK] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_lib] = ACTIONS(1317), - [anon_sym_fun] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(1325), - [anon_sym_extend] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_next] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(1357), - [sym_class_var] = ACTIONS(1357), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1359), - [sym_protected] = ACTIONS(1361), - [anon_sym_alias] = ACTIONS(1363), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_require] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1249), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_end] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1249), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_when] = ACTIONS(1251), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1251), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(1399), - [sym__regular_ensure_keyword] = ACTIONS(1401), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1249), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(737), + [sym_binary_ampersand] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1249), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(739), }, [188] = { - [sym__statements] = STATE(8584), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8659), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(188), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(10907), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11235), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -70972,7 +71157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1589), + [anon_sym_end] = ACTIONS(1585), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -71042,109 +71227,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [189] = { - [sym__statements] = STATE(8714), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8779), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(189), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11846), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11074), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -71160,7 +71345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1591), + [anon_sym_end] = ACTIONS(1587), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -71230,109 +71415,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [190] = { - [sym__statements] = STATE(8649), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8750), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(190), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11786), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11568), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -71348,7 +71533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1593), + [anon_sym_end] = ACTIONS(1589), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -71418,109 +71603,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [191] = { - [sym__statements] = STATE(8735), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8746), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(191), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11981), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12113), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -71536,7 +71721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1595), + [anon_sym_end] = ACTIONS(1591), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -71606,109 +71791,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [192] = { - [sym__statements] = STATE(8745), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8734), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(192), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12094), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11007), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -71724,7 +71909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1597), + [anon_sym_end] = ACTIONS(1593), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -71794,109 +71979,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [193] = { - [sym__statements] = STATE(8682), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8615), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(193), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12185), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11388), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -71912,7 +72097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1599), + [anon_sym_end] = ACTIONS(1595), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -71982,109 +72167,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [194] = { - [sym__statements] = STATE(8596), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8627), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(194), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11220), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11503), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -72100,7 +72285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1601), + [anon_sym_end] = ACTIONS(1597), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -72170,109 +72355,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [195] = { - [sym__statements] = STATE(8684), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8686), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(195), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11313), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11703), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -72288,7 +72473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1603), + [anon_sym_end] = ACTIONS(1599), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -72358,109 +72543,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [196] = { - [sym__statements] = STATE(8723), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8722), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(196), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11562), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11948), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -72476,7 +72661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1605), + [anon_sym_end] = ACTIONS(1601), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -72546,109 +72731,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [197] = { - [sym__statements] = STATE(8674), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8747), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(197), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12272), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12350), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -72664,7 +72849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1607), + [anon_sym_end] = ACTIONS(1603), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -72734,109 +72919,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [198] = { - [sym__statements] = STATE(8586), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8762), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(198), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11124), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11741), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -72852,7 +73037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1609), + [anon_sym_end] = ACTIONS(1605), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -72922,109 +73107,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [199] = { - [sym__statements] = STATE(8740), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8652), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(199), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(10997), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11309), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -73040,7 +73225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1611), + [anon_sym_end] = ACTIONS(1607), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -73110,109 +73295,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [200] = { - [sym__statements] = STATE(8603), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8771), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(200), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11290), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11292), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -73228,7 +73413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1613), + [anon_sym_end] = ACTIONS(1609), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -73298,109 +73483,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [201] = { - [sym__statements] = STATE(8655), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8778), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(201), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11698), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11901), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -73416,7 +73601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1615), + [anon_sym_end] = ACTIONS(1611), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -73486,109 +73671,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [202] = { - [sym__statements] = STATE(8728), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8797), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(202), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12035), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11226), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -73604,7 +73789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1617), + [anon_sym_end] = ACTIONS(1613), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -73674,109 +73859,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [203] = { - [sym__statements] = STATE(8718), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8622), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(203), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(10974), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11539), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -73792,7 +73977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1619), + [anon_sym_end] = ACTIONS(1615), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -73862,109 +74047,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [204] = { - [sym__statements] = STATE(8574), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8642), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(204), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11087), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11946), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -73980,7 +74165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1621), + [anon_sym_end] = ACTIONS(1617), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -74050,297 +74235,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [205] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__statements] = STATE(8651), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(205), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3226), - [sym_argument_list_no_parens_with_block] = STATE(4436), - [sym_argument_list_with_parens] = STATE(3227), - [sym_argument_list_with_parens_and_block] = STATE(4464), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4465), - [sym_brace_block] = STATE(4466), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1241), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12294), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1241), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_EQ_GT] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_end] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_when] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1243), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_annotation] = ACTIONS(1301), + [anon_sym_end] = ACTIONS(1619), + [anon_sym_AT_LBRACK] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1309), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_lib] = ACTIONS(1317), + [anon_sym_fun] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(1325), + [anon_sym_extend] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_next] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(1357), + [sym_class_var] = ACTIONS(1357), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1359), + [sym_protected] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_require] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(737), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__regular_rescue_keyword] = ACTIONS(1399), + [sym__regular_ensure_keyword] = ACTIONS(1401), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(739), }, [206] = { - [sym__statements] = STATE(8621), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8785), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(206), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(11962), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(12056), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -74356,7 +74541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1623), + [anon_sym_end] = ACTIONS(1621), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -74426,83 +74611,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [207] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__statements] = STATE(8690), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(207), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11155), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_annotation] = ACTIONS(1301), + [anon_sym_end] = ACTIONS(1623), + [anon_sym_AT_LBRACK] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1309), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_lib] = ACTIONS(1317), + [anon_sym_fun] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(1325), + [anon_sym_extend] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_next] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(1357), + [sym_class_var] = ACTIONS(1357), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1359), + [sym_protected] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_require] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__regular_rescue_keyword] = ACTIONS(1399), + [sym__regular_ensure_keyword] = ACTIONS(1401), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [208] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(208), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(1233), @@ -74613,272 +74986,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(739), }, - [208] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(208), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3133), - [sym_argument_list_no_parens_with_block] = STATE(4357), - [sym_argument_list_with_parens] = STATE(3135), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4477), - [sym_brace_block] = STATE(4487), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1249), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_EQ_GT] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_end] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_when] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1251), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(737), - [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(739), - }, [209] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4231), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(209), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4240), - [sym_double_splat] = STATE(4240), - [sym_named_expr] = STATE(4240), - [sym_argument_list_no_parens] = STATE(3138), - [sym_argument_list_no_parens_with_block] = STATE(4530), - [sym_argument_list_with_parens] = STATE(3139), - [sym_argument_list_with_parens_and_block] = STATE(4325), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4330), - [sym_brace_block] = STATE(4354), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4232), + [sym_double_splat] = STATE(4232), + [sym_named_expr] = STATE(4232), + [sym_argument_list_no_parens] = STATE(3258), + [sym_argument_list_no_parens_with_block] = STATE(4600), + [sym_argument_list_with_parens] = STATE(3268), + [sym_argument_list_with_parens_and_block] = STATE(4444), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4483), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [anon_sym_RPAREN] = ACTIONS(1245), @@ -74990,109 +75175,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(739), }, [210] = { - [sym__statements] = STATE(8730), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8618), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(210), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10949), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym__rescue_else_ensure] = STATE(12319), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10052), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8980), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11560), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym__rescue_else_ensure] = STATE(11111), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10584), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9158), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -75178,108 +75363,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [211] = { - [sym__statements] = STATE(8911), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3242), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(211), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10930), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10379), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8920), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym__control_expressions] = STATE(3562), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3301), + [sym_double_splat] = STATE(3301), + [sym_named_expr] = STATE(3301), + [sym_argument_list_no_parens] = STATE(3543), + [sym_argument_list_with_parens] = STATE(3543), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_end] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(1261), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1261), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(1261), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(1261), + [sym__regular_rescue_keyword] = ACTIONS(1261), + [sym__modifier_rescue_keyword] = ACTIONS(1261), + [sym__regular_ensure_keyword] = ACTIONS(1261), + [sym__modifier_ensure_keyword] = ACTIONS(1261), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1629), + }, + [212] = { + [sym__statements] = STATE(9153), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(212), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11962), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10604), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9154), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -75295,7 +75667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1627), + [anon_sym_end] = ACTIONS(1631), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -75364,109 +75736,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [212] = { - [sym__statements] = STATE(8760), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(212), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11365), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10477), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8766), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [213] = { + [sym__statements] = STATE(8985), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(213), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11035), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10252), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8986), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -75482,7 +75854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1629), + [anon_sym_end] = ACTIONS(1633), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -75551,109 +75923,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [213] = { - [sym__statements] = STATE(8914), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(213), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10935), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10326), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8916), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [214] = { + [sym__statements] = STATE(8961), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(214), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12379), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10212), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8962), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -75669,7 +76041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1631), + [anon_sym_end] = ACTIONS(1635), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -75738,109 +76110,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [214] = { - [sym__statements] = STATE(8868), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(214), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(12159), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10650), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8877), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [215] = { + [sym__statements] = STATE(8846), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(215), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12055), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10165), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8855), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -75856,7 +76228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1633), + [anon_sym_end] = ACTIONS(1637), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -75925,109 +76297,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [215] = { - [sym__statements] = STATE(8791), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(215), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10966), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10048), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8793), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [216] = { + [sym__statements] = STATE(8963), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(216), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(10944), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10216), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8965), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -76043,7 +76415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1635), + [anon_sym_end] = ACTIONS(1639), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -76112,82 +76484,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [216] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3207), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(216), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym__control_expressions] = STATE(3349), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3247), - [sym_double_splat] = STATE(3247), - [sym_named_expr] = STATE(3247), - [sym_argument_list_no_parens] = STATE(3499), - [sym_argument_list_with_parens] = STATE(3499), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [217] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3242), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(217), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym__control_expressions] = STATE(3473), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3301), + [sym_double_splat] = STATE(3301), + [sym_named_expr] = STATE(3301), + [sym_argument_list_no_parens] = STATE(3543), + [sym_argument_list_with_parens] = STATE(3543), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1269), [anon_sym_LPAREN] = ACTIONS(321), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), @@ -76201,30 +76573,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(333), [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_end] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), [anon_sym_BANG] = ACTIONS(343), [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(351), @@ -76243,165 +76615,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(1637), - [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_LPAREN2] = ACTIONS(1627), + [anon_sym_QMARK] = ACTIONS(1269), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(1257), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1257), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(1257), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(1257), - [sym__regular_rescue_keyword] = ACTIONS(1257), - [sym__modifier_rescue_keyword] = ACTIONS(1257), - [sym__regular_ensure_keyword] = ACTIONS(1257), - [sym__modifier_ensure_keyword] = ACTIONS(1257), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(1269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1269), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(403), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(405), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(1269), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(1269), + [sym__regular_rescue_keyword] = ACTIONS(1269), + [sym__modifier_rescue_keyword] = ACTIONS(1269), + [sym__regular_ensure_keyword] = ACTIONS(1269), + [sym__modifier_ensure_keyword] = ACTIONS(1269), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1639), + [sym__start_of_parenless_args] = ACTIONS(1629), }, - [217] = { - [sym__statements] = STATE(9003), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(217), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11899), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10546), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(9049), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [218] = { + [sym__statements] = STATE(8897), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(218), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11978), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10614), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8898), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -76486,109 +76858,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [218] = { - [sym__statements] = STATE(8795), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(218), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11036), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10701), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8796), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [219] = { + [sym__statements] = STATE(8902), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(219), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12181), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10684), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8903), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -76673,109 +77045,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [219] = { - [sym__statements] = STATE(8784), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(219), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11386), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10382), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8785), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [220] = { + [sym__statements] = STATE(8982), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(220), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11024), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10247), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8983), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -76860,109 +77232,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [220] = { - [sym__statements] = STATE(9035), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(220), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11125), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10307), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(9037), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [221] = { + [sym__statements] = STATE(9140), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(221), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11878), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10569), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9141), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -77047,296 +77419,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [221] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3207), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(221), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym__control_expressions] = STATE(3352), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3247), - [sym_double_splat] = STATE(3247), - [sym_named_expr] = STATE(3247), - [sym_argument_list_no_parens] = STATE(3499), - [sym_argument_list_with_parens] = STATE(3499), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(321), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_end] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_LPAREN2] = ACTIONS(1637), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(1273), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1273), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(405), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(407), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(1273), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(1273), - [sym__regular_rescue_keyword] = ACTIONS(1273), - [sym__modifier_rescue_keyword] = ACTIONS(1273), - [sym__regular_ensure_keyword] = ACTIONS(1273), - [sym__modifier_ensure_keyword] = ACTIONS(1273), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1639), - }, [222] = { - [sym__statements] = STATE(8777), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(9149), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(222), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10910), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10437), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8799), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12100), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10678), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8830), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -77422,108 +77607,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [223] = { - [sym__statements] = STATE(8778), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(9145), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(223), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(11358), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10373), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8782), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(11944), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10597), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(9147), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -77609,108 +77794,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [224] = { - [sym__statements] = STATE(8844), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__statements] = STATE(8917), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(224), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_rescue_block] = STATE(9675), - [sym_ensure] = STATE(10992), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_else] = STATE(10483), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_method_def_repeat1] = STATE(8848), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_rescue_block] = STATE(9921), + [sym_ensure] = STATE(12004), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_else] = STATE(10172), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_method_def_repeat1] = STATE(8942), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -77796,101 +77981,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [225] = { - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(9280), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9351), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(225), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), [aux_sym__statements_repeat1] = STATE(225), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [aux_sym_multi_assign_repeat1] = STATE(1049), [ts_builtin_sym_end] = ACTIONS(1655), [sym_identifier] = ACTIONS(1657), [anon_sym_SEMI] = ACTIONS(1660), @@ -77982,269 +78167,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [226] = { - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(7998), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5209), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(226), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(225), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(1857), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1857), - [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(1857), - [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(1859), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(1859), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_require] = ACTIONS(107), - [anon_sym_when] = ACTIONS(1859), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(1859), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [227] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5110), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(227), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5111), - [sym_double_splat] = STATE(5111), - [sym_named_expr] = STATE(5111), - [sym_argument_list_no_parens] = STATE(4992), - [sym_argument_list_no_parens_with_block] = STATE(5410), - [sym_argument_list_with_parens] = STATE(4992), - [sym_argument_list_with_parens_and_block] = STATE(5410), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5411), - [sym_brace_block] = STATE(5416), - [sym_block_argument] = STATE(5417), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5210), + [sym_double_splat] = STATE(5210), + [sym_named_expr] = STATE(5210), + [sym_argument_list_no_parens] = STATE(4885), + [sym_argument_list_no_parens_with_block] = STATE(6094), + [sym_argument_list_with_parens] = STATE(4885), + [sym_argument_list_with_parens_and_block] = STATE(6094), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6095), + [sym_brace_block] = STATE(6096), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(743), @@ -78301,14 +78300,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(791), [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), - [anon_sym_COLON] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(1857), + [anon_sym_LPAREN2] = ACTIONS(795), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(803), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), @@ -78318,7 +78317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_asm_token1] = ACTIONS(815), [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(865), + [sym__start_of_brace_block] = ACTIONS(817), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), [sym__start_of_index_operator] = ACTIONS(1233), @@ -78334,7 +78333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(829), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(867), + [sym__block_ampersand] = ACTIONS(831), [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), @@ -78351,88 +78350,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(851), [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(869), + [sym__start_of_parenless_args] = ACTIONS(853), }, - [228] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5103), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(228), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5104), - [sym_double_splat] = STATE(5104), - [sym_named_expr] = STATE(5104), - [sym_argument_list_no_parens] = STATE(4994), - [sym_argument_list_no_parens_with_block] = STATE(5757), - [sym_argument_list_with_parens] = STATE(4994), - [sym_argument_list_with_parens_and_block] = STATE(5757), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5778), - [sym_brace_block] = STATE(5794), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [227] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5119), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(227), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5120), + [sym_double_splat] = STATE(5120), + [sym_named_expr] = STATE(5120), + [sym_argument_list_no_parens] = STATE(4979), + [sym_argument_list_no_parens_with_block] = STATE(5444), + [sym_argument_list_with_parens] = STATE(4829), + [sym_argument_list_with_parens_and_block] = STATE(5207), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5216), + [sym_brace_block] = STATE(5057), + [sym_block_argument] = STATE(5305), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1239), [anon_sym_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(745), @@ -78446,29 +78445,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(755), [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(765), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(773), @@ -78487,48 +78487,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(791), [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), - [anon_sym_COLON] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(1239), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(803), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1213), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1235), + [anon_sym_then] = ACTIONS(1241), [anon_sym_case] = ACTIONS(811), [anon_sym_select] = ACTIONS(813), [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1233), + [sym__line_break] = ACTIONS(1239), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), + [sym__start_of_brace_block] = ACTIONS(865), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1233), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(823), [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), [sym_unary_wrapping_plus] = ACTIONS(825), [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1233), + [sym__binary_star] = ACTIONS(1239), [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(831), - [sym_binary_ampersand] = ACTIONS(1233), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(867), + [sym_binary_ampersand] = ACTIONS(1239), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), [sym__regular_if_keyword] = ACTIONS(837), [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1233), + [sym__modulo_operator] = ACTIONS(1239), [sym__string_literal_start] = ACTIONS(841), [sym__string_percent_literal_start] = ACTIONS(843), [sym__command_percent_literal_start] = ACTIONS(845), @@ -78537,111 +78536,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(851), [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(853), + [sym__start_of_parenless_args] = ACTIONS(869), }, - [229] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(229), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [228] = { + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8030), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(228), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9566), - [sym_elsif] = STATE(11782), - [sym_else] = STATE(11782), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(225), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(1859), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1859), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -78649,6 +78646,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(1859), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -78656,7 +78654,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(1865), + [anon_sym_end] = ACTIONS(1861), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -78698,11 +78696,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1869), + [anon_sym_elsif] = ACTIONS(1861), + [anon_sym_else] = ACTIONS(1861), [anon_sym_require] = ACTIONS(107), + [anon_sym_when] = ACTIONS(1861), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(1861), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -78724,103 +78724,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [230] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5190), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(230), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5166), - [sym_double_splat] = STATE(5166), - [sym_named_expr] = STATE(5166), - [sym_argument_list_no_parens] = STATE(5047), - [sym_argument_list_no_parens_with_block] = STATE(6520), - [sym_argument_list_with_parens] = STATE(5047), - [sym_argument_list_with_parens_and_block] = STATE(6520), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(6521), - [sym_brace_block] = STATE(6527), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(873), + [229] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5119), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(229), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5120), + [sym_double_splat] = STATE(5120), + [sym_named_expr] = STATE(5120), + [sym_argument_list_no_parens] = STATE(5007), + [sym_argument_list_no_parens_with_block] = STATE(5302), + [sym_argument_list_with_parens] = STATE(5007), + [sym_argument_list_with_parens_and_block] = STATE(5302), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5303), + [sym_brace_block] = STATE(5304), + [sym_block_argument] = STATE(5305), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_RBRACK] = ACTIONS(1235), [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DASH_GT] = ACTIONS(761), [anon_sym_DOT] = ACTIONS(1235), [anon_sym_LT] = ACTIONS(1235), [anon_sym_PIPE] = ACTIONS(1235), @@ -78834,181 +78834,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1233), [anon_sym_LT_EQ_GT] = ACTIONS(1233), [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), [anon_sym_BANG_TILDE] = ACTIONS(1233), [anon_sym_EQ_TILDE] = ACTIONS(1233), [anon_sym_AMP_STAR] = ACTIONS(1235), [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [anon_sym_COLON] = ACTIONS(1871), - [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_COLON] = ACTIONS(1863), + [anon_sym_LPAREN2] = ACTIONS(859), [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(993), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_then] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(995), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), + [sym__start_of_brace_block] = ACTIONS(865), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(955), + [sym__unary_star] = ACTIONS(827), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(957), + [sym__unary_double_star] = ACTIONS(829), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(997), + [sym__block_ampersand] = ACTIONS(867), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(999), + [sym__start_of_parenless_args] = ACTIONS(869), + }, + [230] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5209), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(230), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5210), + [sym_double_splat] = STATE(5210), + [sym_named_expr] = STATE(5210), + [sym_argument_list_no_parens] = STATE(4937), + [sym_argument_list_no_parens_with_block] = STATE(5860), + [sym_argument_list_with_parens] = STATE(4763), + [sym_argument_list_with_parens_and_block] = STATE(5711), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5712), + [sym_brace_block] = STATE(5719), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(803), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_then] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1239), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(817), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(831), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(853), }, [231] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(231), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9528), - [sym_elsif] = STATE(12132), - [sym_else] = STATE(12132), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9647), + [sym_elsif] = STATE(11482), + [sym_else] = STATE(11482), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -79026,7 +79213,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(1873), + [anon_sym_end] = ACTIONS(1865), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -79095,290 +79282,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [232] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(3737), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5119), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(232), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym__control_expressions] = STATE(3934), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(3745), - [sym_double_splat] = STATE(3745), - [sym_named_expr] = STATE(3745), - [sym_argument_list_no_parens] = STATE(4126), - [sym_argument_list_with_parens] = STATE(4126), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1877), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5120), + [sym_double_splat] = STATE(5120), + [sym_named_expr] = STATE(5120), + [sym_argument_list_no_parens] = STATE(5007), + [sym_argument_list_no_parens_with_block] = STATE(5302), + [sym_argument_list_with_parens] = STATE(5007), + [sym_argument_list_with_parens_and_block] = STATE(5302), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5303), + [sym_brace_block] = STATE(5304), + [sym_block_argument] = STATE(5305), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1257), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_then] = ACTIONS(1235), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1233), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(1903), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(1905), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(1257), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(1257), - [sym__regular_rescue_keyword] = ACTIONS(1257), - [sym__modifier_rescue_keyword] = ACTIONS(1257), - [sym__regular_ensure_keyword] = ACTIONS(1257), - [sym__modifier_ensure_keyword] = ACTIONS(1257), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_brace_block] = ACTIONS(865), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(867), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1909), + [sym__start_of_parenless_args] = ACTIONS(869), }, [233] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(233), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9614), - [sym_elsif] = STATE(11680), - [sym_else] = STATE(11680), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9619), + [sym_elsif] = STATE(12380), + [sym_else] = STATE(12380), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -79396,7 +79583,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(1911), + [anon_sym_end] = ACTIONS(1871), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -79465,475 +79652,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [234] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3612), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(234), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym__control_expressions] = STATE(3613), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3757), - [sym_double_splat] = STATE(3757), - [sym_named_expr] = STATE(3757), - [sym_argument_list_no_parens] = STATE(3758), - [sym_argument_list_with_parens] = STATE(3758), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1273), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_RBRACK] = ACTIONS(1273), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_end] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_when] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1275), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1273), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1915), - }, - [235] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3534), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(235), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym__control_expressions] = STATE(4154), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3578), - [sym_double_splat] = STATE(3578), - [sym_named_expr] = STATE(3578), - [sym_argument_list_no_parens] = STATE(3842), - [sym_argument_list_with_parens] = STATE(3842), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(591), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_end] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1273), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1273), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1273), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1273), - [sym__modifier_rescue_keyword] = ACTIONS(1273), - [sym__regular_ensure_keyword] = ACTIONS(1273), - [sym__modifier_ensure_keyword] = ACTIONS(1273), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1919), - }, - [236] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(236), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9588), - [sym_elsif] = STATE(10913), - [sym_else] = STATE(10913), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9616), + [sym_elsif] = STATE(12233), + [sym_else] = STATE(12233), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -79951,7 +79768,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(1921), + [anon_sym_end] = ACTIONS(1873), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -80019,106 +79836,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [237] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(237), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [235] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(235), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9561), - [sym_elsif] = STATE(10934), - [sym_else] = STATE(10934), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9689), + [sym_elsif] = STATE(11170), + [sym_else] = STATE(11170), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -80136,7 +79953,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(1923), + [anon_sym_end] = ACTIONS(1875), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -80204,106 +80021,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [238] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(238), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [236] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(236), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9565), - [sym_elsif] = STATE(11238), - [sym_else] = STATE(11238), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9600), + [sym_elsif] = STATE(11423), + [sym_else] = STATE(11423), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -80321,7 +80138,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(1925), + [anon_sym_end] = ACTIONS(1877), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -80389,291 +80206,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [239] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(239), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9649), - [sym_elsif] = STATE(11536), - [sym_else] = STATE(11536), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [237] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3612), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(237), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym__control_expressions] = STATE(4124), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(3765), + [sym_double_splat] = STATE(3765), + [sym_named_expr] = STATE(3765), + [sym_argument_list_no_parens] = STATE(4116), + [sym_argument_list_with_parens] = STATE(4116), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1881), [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(1927), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_end] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1889), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1269), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(1907), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(1909), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__modifier_if_keyword] = ACTIONS(1269), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__modifier_unless_keyword] = ACTIONS(1269), + [sym__regular_rescue_keyword] = ACTIONS(1269), + [sym__modifier_rescue_keyword] = ACTIONS(1269), + [sym__regular_ensure_keyword] = ACTIONS(1269), + [sym__modifier_ensure_keyword] = ACTIONS(1269), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1913), }, - [240] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(240), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [238] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(238), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9521), - [sym_elsif] = STATE(11503), - [sym_else] = STATE(11503), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9664), + [sym_elsif] = STATE(11802), + [sym_else] = STATE(11802), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -80691,7 +80508,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(1929), + [anon_sym_end] = ACTIONS(1915), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -80759,269 +80576,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [241] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3612), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(241), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym__control_expressions] = STATE(3704), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3757), - [sym_double_splat] = STATE(3757), - [sym_named_expr] = STATE(3757), - [sym_argument_list_no_parens] = STATE(3758), - [sym_argument_list_with_parens] = STATE(3758), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1257), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1257), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_EQ_GT] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_when] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(1259), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1257), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(545), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(547), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1915), - }, - [242] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5387), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(242), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5395), - [sym_double_splat] = STATE(5395), - [sym_named_expr] = STATE(5395), - [sym_argument_list_no_parens] = STATE(5100), - [sym_argument_list_no_parens_with_block] = STATE(5565), - [sym_argument_list_with_parens] = STATE(5100), - [sym_argument_list_with_parens_and_block] = STATE(5565), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(5568), - [sym_brace_block] = STATE(5569), - [sym_block_argument] = STATE(5528), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [239] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5259), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(239), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5473), + [sym_double_splat] = STATE(5473), + [sym_named_expr] = STATE(5473), + [sym_argument_list_no_parens] = STATE(5143), + [sym_argument_list_no_parens_with_block] = STATE(6346), + [sym_argument_list_with_parens] = STATE(5143), + [sym_argument_list_with_parens_and_block] = STATE(6346), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(6348), + [sym_brace_block] = STATE(6350), + [sym_block_argument] = STATE(6650), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -81078,15 +80710,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(921), [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), - [anon_sym_COLON] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(1917), + [anon_sym_LPAREN2] = ACTIONS(987), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), [anon_sym_RBRACK_QMARK] = ACTIONS(1233), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(993), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -81094,7 +80726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(941), [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(945), + [sym__start_of_brace_block] = ACTIONS(995), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), [sym__start_of_index_operator] = ACTIONS(1233), @@ -81110,7 +80742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(957), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(959), + [sym__block_ampersand] = ACTIONS(997), [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), @@ -81127,108 +80759,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(979), [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(981), + [sym__start_of_parenless_args] = ACTIONS(999), }, - [243] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(243), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [240] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3877), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(240), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym__control_expressions] = STATE(3726), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3846), + [sym_double_splat] = STATE(3846), + [sym_named_expr] = STATE(3846), + [sym_argument_list_no_parens] = STATE(3847), + [sym_argument_list_with_parens] = STATE(3847), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1269), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_end] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_when] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1271), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1269), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1921), + }, + [241] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(241), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9567), - [sym_elsif] = STATE(12022), - [sym_else] = STATE(12022), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9685), + [sym_elsif] = STATE(12370), + [sym_else] = STATE(12370), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -81246,7 +81063,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(1933), + [anon_sym_end] = ACTIONS(1923), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -81314,269 +81131,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [244] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5110), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(244), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5111), - [sym_double_splat] = STATE(5111), - [sym_named_expr] = STATE(5111), - [sym_argument_list_no_parens] = STATE(4997), - [sym_argument_list_no_parens_with_block] = STATE(5427), - [sym_argument_list_with_parens] = STATE(4998), - [sym_argument_list_with_parens_and_block] = STATE(5429), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5430), - [sym_brace_block] = STATE(5432), - [sym_block_argument] = STATE(5417), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(743), + [242] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(242), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9686), + [sym_elsif] = STATE(11141), + [sym_else] = STATE(11141), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(859), - [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1249), + [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(1925), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_elsif] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(865), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(867), - [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(869), }, - [245] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5110), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(245), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5111), - [sym_double_splat] = STATE(5111), - [sym_named_expr] = STATE(5111), - [sym_argument_list_no_parens] = STATE(5000), - [sym_argument_list_no_parens_with_block] = STATE(5435), - [sym_argument_list_with_parens] = STATE(5001), - [sym_argument_list_with_parens_and_block] = STATE(5264), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5308), - [sym_brace_block] = STATE(5199), - [sym_block_argument] = STATE(5417), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [243] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5119), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(243), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5120), + [sym_double_splat] = STATE(5120), + [sym_named_expr] = STATE(5120), + [sym_argument_list_no_parens] = STATE(5009), + [sym_argument_list_no_parens_with_block] = STATE(5311), + [sym_argument_list_with_parens] = STATE(5010), + [sym_argument_list_with_parens_and_block] = STATE(5312), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5313), + [sym_brace_block] = STATE(5314), + [sym_block_argument] = STATE(5305), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(743), @@ -81684,476 +81501,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(869), }, - [246] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3534), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(246), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym__control_expressions] = STATE(4073), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3578), - [sym_double_splat] = STATE(3578), - [sym_named_expr] = STATE(3578), - [sym_argument_list_no_parens] = STATE(3842), - [sym_argument_list_with_parens] = STATE(3842), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(591), + [244] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(244), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9565), + [sym_elsif] = STATE(11894), + [sym_else] = STATE(11894), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_LPAREN2] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(1257), + [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(1927), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_elsif] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1257), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(675), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(677), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(1257), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(1257), - [sym__modifier_rescue_keyword] = ACTIONS(1257), - [sym__regular_ensure_keyword] = ACTIONS(1257), - [sym__modifier_ensure_keyword] = ACTIONS(1257), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1919), }, - [247] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(3737), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(247), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym__control_expressions] = STATE(4160), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(3745), - [sym_double_splat] = STATE(3745), - [sym_named_expr] = STATE(3745), - [sym_argument_list_no_parens] = STATE(4126), - [sym_argument_list_with_parens] = STATE(4126), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1877), + [245] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(245), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9581), + [sym_elsif] = STATE(11326), + [sym_else] = STATE(11326), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_end] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(1273), + [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(1929), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_elsif] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(1903), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(1905), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(1273), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(1273), - [sym__regular_rescue_keyword] = ACTIONS(1273), - [sym__modifier_rescue_keyword] = ACTIONS(1273), - [sym__regular_ensure_keyword] = ACTIONS(1273), - [sym__modifier_ensure_keyword] = ACTIONS(1273), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1909), }, - [248] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(248), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [246] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(246), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9505), - [sym_elsif] = STATE(11822), - [sym_else] = STATE(11822), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9645), + [sym_elsif] = STATE(11496), + [sym_else] = STATE(11496), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -82171,7 +81988,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(1935), + [anon_sym_end] = ACTIONS(1931), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -82239,106 +82056,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [249] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(249), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [247] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(247), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9623), - [sym_elsif] = STATE(11397), - [sym_else] = STATE(11397), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9632), + [sym_elsif] = STATE(12027), + [sym_else] = STATE(12027), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -82356,7 +82173,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(1937), + [anon_sym_end] = ACTIONS(1933), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -82424,291 +82241,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [250] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5110), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(250), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5111), - [sym_double_splat] = STATE(5111), - [sym_named_expr] = STATE(5111), - [sym_argument_list_no_parens] = STATE(4992), - [sym_argument_list_no_parens_with_block] = STATE(5410), - [sym_argument_list_with_parens] = STATE(4992), - [sym_argument_list_with_parens_and_block] = STATE(5410), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5411), - [sym_brace_block] = STATE(5416), - [sym_block_argument] = STATE(5417), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(743), + [248] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3876), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(248), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym__control_expressions] = STATE(4292), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3795), + [sym_double_splat] = STATE(3795), + [sym_named_expr] = STATE(3795), + [sym_argument_list_no_parens] = STATE(4117), + [sym_argument_list_with_parens] = STATE(4117), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(859), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1233), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_end] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(1261), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(865), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(867), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_brace_block] = ACTIONS(1261), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(675), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(677), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(1261), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(1261), + [sym__modifier_rescue_keyword] = ACTIONS(1261), + [sym__regular_ensure_keyword] = ACTIONS(1261), + [sym__modifier_ensure_keyword] = ACTIONS(1261), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(869), + [sym__start_of_parenless_args] = ACTIONS(1937), }, - [251] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(251), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [249] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3877), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(249), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym__control_expressions] = STATE(3878), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3846), + [sym_double_splat] = STATE(3846), + [sym_named_expr] = STATE(3846), + [sym_argument_list_no_parens] = STATE(3847), + [sym_argument_list_with_parens] = STATE(3847), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(1261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(1261), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_EQ_GT] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_end] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_when] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(1263), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1261), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(545), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(547), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1921), + }, + [250] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(250), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9517), - [sym_elsif] = STATE(12103), - [sym_else] = STATE(12103), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9639), + [sym_elsif] = STATE(11773), + [sym_else] = STATE(11773), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -82794,106 +82796,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [252] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(252), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [251] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(251), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9531), - [sym_elsif] = STATE(11208), - [sym_else] = STATE(11208), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9690), + [sym_elsif] = STATE(11165), + [sym_else] = STATE(11165), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -82979,291 +82981,661 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [252] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5230), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(252), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5232), + [sym_double_splat] = STATE(5232), + [sym_named_expr] = STATE(5232), + [sym_argument_list_no_parens] = STATE(5063), + [sym_argument_list_no_parens_with_block] = STATE(5707), + [sym_argument_list_with_parens] = STATE(5063), + [sym_argument_list_with_parens_and_block] = STATE(5707), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5709), + [sym_brace_block] = STATE(5715), + [sym_block_argument] = STATE(5819), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(1943), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_RBRACK_QMARK] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(945), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(955), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(957), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(959), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(981), + }, [253] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5103), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3876), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(253), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5104), - [sym_double_splat] = STATE(5104), - [sym_named_expr] = STATE(5104), - [sym_argument_list_no_parens] = STATE(5010), - [sym_argument_list_no_parens_with_block] = STATE(6039), - [sym_argument_list_with_parens] = STATE(5011), - [sym_argument_list_with_parens_and_block] = STATE(6040), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(6043), - [sym_brace_block] = STATE(6044), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(743), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym__control_expressions] = STATE(4239), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3795), + [sym_double_splat] = STATE(3795), + [sym_named_expr] = STATE(3795), + [sym_argument_list_no_parens] = STATE(4117), + [sym_argument_list_with_parens] = STATE(4117), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(591), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(803), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1241), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_end] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_LPAREN2] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(1269), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(831), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_brace_block] = ACTIONS(1269), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(675), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(677), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(1269), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(1269), + [sym__modifier_rescue_keyword] = ACTIONS(1269), + [sym__regular_ensure_keyword] = ACTIONS(1269), + [sym__modifier_ensure_keyword] = ACTIONS(1269), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(853), + [sym__start_of_parenless_args] = ACTIONS(1937), }, [254] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5259), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(254), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5473), + [sym_double_splat] = STATE(5473), + [sym_named_expr] = STATE(5473), + [sym_argument_list_no_parens] = STATE(5217), + [sym_argument_list_no_parens_with_block] = STATE(6589), + [sym_argument_list_with_parens] = STATE(5044), + [sym_argument_list_with_parens_and_block] = STATE(5890), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5891), + [sym_brace_block] = STATE(5892), + [sym_block_argument] = STATE(6650), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_RBRACK_QMARK] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(993), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(995), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(955), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(957), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(997), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(999), + }, + [255] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(255), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9581), - [sym_elsif] = STATE(12070), - [sym_else] = STATE(12070), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(9579), + [sym_elsif] = STATE(10963), + [sym_else] = STATE(10963), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -83281,7 +83653,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(1943), + [anon_sym_end] = ACTIONS(1945), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -83349,86 +83721,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [255] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5110), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(255), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5111), - [sym_double_splat] = STATE(5111), - [sym_named_expr] = STATE(5111), - [sym_argument_list_no_parens] = STATE(4950), - [sym_argument_list_no_parens_with_block] = STATE(5309), - [sym_argument_list_with_parens] = STATE(4951), - [sym_argument_list_with_parens_and_block] = STATE(5310), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5311), - [sym_brace_block] = STATE(5312), - [sym_block_argument] = STATE(5417), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [256] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5119), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(256), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5120), + [sym_double_splat] = STATE(5120), + [sym_named_expr] = STATE(5120), + [sym_argument_list_no_parens] = STATE(5011), + [sym_argument_list_no_parens_with_block] = STATE(5315), + [sym_argument_list_with_parens] = STATE(5012), + [sym_argument_list_with_parens_and_block] = STATE(5316), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5317), + [sym_brace_block] = STATE(5318), + [sym_block_argument] = STATE(5305), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(745), @@ -83442,29 +83814,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(755), [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), [anon_sym_BANG] = ACTIONS(765), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(773), @@ -83484,46 +83856,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), [anon_sym_LPAREN2] = ACTIONS(859), - [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1249), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1251), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1243), + [anon_sym_then] = ACTIONS(1251), [anon_sym_case] = ACTIONS(811), [anon_sym_select] = ACTIONS(813), [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1241), + [sym__line_break] = ACTIONS(1249), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(865), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1249), [sym_unary_plus] = ACTIONS(823), [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), [sym_unary_wrapping_plus] = ACTIONS(825), [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1241), + [sym__binary_star] = ACTIONS(1249), [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1241), + [sym__binary_double_star] = ACTIONS(1249), [sym__block_ampersand] = ACTIONS(867), - [sym_binary_ampersand] = ACTIONS(1241), + [sym_binary_ampersand] = ACTIONS(1249), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), [sym__regular_if_keyword] = ACTIONS(837), [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1241), + [sym__modulo_operator] = ACTIONS(1249), [sym__string_literal_start] = ACTIONS(841), [sym__string_percent_literal_start] = ACTIONS(843), [sym__command_percent_literal_start] = ACTIONS(845), @@ -83534,84 +83906,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(869), }, - [256] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5103), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(256), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5104), - [sym_double_splat] = STATE(5104), - [sym_named_expr] = STATE(5104), - [sym_argument_list_no_parens] = STATE(4994), - [sym_argument_list_no_parens_with_block] = STATE(5757), - [sym_argument_list_with_parens] = STATE(4994), - [sym_argument_list_with_parens_and_block] = STATE(5757), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5778), - [sym_brace_block] = STATE(5794), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [257] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5209), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(257), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5210), + [sym_double_splat] = STATE(5210), + [sym_named_expr] = STATE(5210), + [sym_argument_list_no_parens] = STATE(4885), + [sym_argument_list_no_parens_with_block] = STATE(6094), + [sym_argument_list_with_parens] = STATE(4885), + [sym_argument_list_with_parens_and_block] = STATE(6094), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6095), + [sym_brace_block] = STATE(6096), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(1233), [anon_sym_LPAREN] = ACTIONS(743), @@ -83719,86 +84091,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(853), }, - [257] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5103), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(257), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5104), - [sym_double_splat] = STATE(5104), - [sym_named_expr] = STATE(5104), - [sym_argument_list_no_parens] = STATE(4864), - [sym_argument_list_no_parens_with_block] = STATE(6071), - [sym_argument_list_with_parens] = STATE(4865), - [sym_argument_list_with_parens_and_block] = STATE(6073), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(6074), - [sym_brace_block] = STATE(6075), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [258] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5209), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(258), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5210), + [sym_double_splat] = STATE(5210), + [sym_named_expr] = STATE(5210), + [sym_argument_list_no_parens] = STATE(4886), + [sym_argument_list_no_parens_with_block] = STATE(6137), + [sym_argument_list_with_parens] = STATE(4887), + [sym_argument_list_with_parens_and_block] = STATE(6150), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6220), + [sym_brace_block] = STATE(6221), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1245), [anon_sym_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(745), @@ -83812,29 +84184,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(755), [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), [anon_sym_BANG] = ACTIONS(765), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(773), @@ -83854,46 +84226,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), [anon_sym_do] = ACTIONS(803), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1251), + [anon_sym_then] = ACTIONS(1247), [anon_sym_case] = ACTIONS(811), [anon_sym_select] = ACTIONS(813), [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1249), + [sym__line_break] = ACTIONS(1245), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(817), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1249), + [sym__start_of_index_operator] = ACTIONS(1245), [sym_unary_plus] = ACTIONS(823), [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), [sym_unary_wrapping_plus] = ACTIONS(825), [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1249), + [sym__binary_star] = ACTIONS(1245), [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1249), + [sym__binary_double_star] = ACTIONS(1245), [sym__block_ampersand] = ACTIONS(831), - [sym_binary_ampersand] = ACTIONS(1249), + [sym_binary_ampersand] = ACTIONS(1245), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), [sym__regular_if_keyword] = ACTIONS(837), [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1249), + [sym__modulo_operator] = ACTIONS(1245), [sym__string_literal_start] = ACTIONS(841), [sym__string_percent_literal_start] = ACTIONS(843), [sym__command_percent_literal_start] = ACTIONS(845), @@ -83904,86 +84276,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(853), }, - [258] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5103), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(258), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5104), - [sym_double_splat] = STATE(5104), - [sym_named_expr] = STATE(5104), - [sym_argument_list_no_parens] = STATE(4869), - [sym_argument_list_no_parens_with_block] = STATE(6087), - [sym_argument_list_with_parens] = STATE(4881), - [sym_argument_list_with_parens_and_block] = STATE(6183), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(6186), - [sym_brace_block] = STATE(6188), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [259] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5209), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(259), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5210), + [sym_double_splat] = STATE(5210), + [sym_named_expr] = STATE(5210), + [sym_argument_list_no_parens] = STATE(4889), + [sym_argument_list_no_parens_with_block] = STATE(6241), + [sym_argument_list_with_parens] = STATE(4890), + [sym_argument_list_with_parens_and_block] = STATE(6254), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6259), + [sym_brace_block] = STATE(6273), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1249), [anon_sym_LPAREN] = ACTIONS(743), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(745), @@ -83997,29 +84369,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(755), [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), [anon_sym_BANG] = ACTIONS(765), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(773), @@ -84039,46 +84411,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1249), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), [anon_sym_do] = ACTIONS(803), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1247), + [anon_sym_then] = ACTIONS(1251), [anon_sym_case] = ACTIONS(811), [anon_sym_select] = ACTIONS(813), [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1245), + [sym__line_break] = ACTIONS(1249), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(817), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1245), + [sym__start_of_index_operator] = ACTIONS(1249), [sym_unary_plus] = ACTIONS(823), [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), [sym_unary_wrapping_plus] = ACTIONS(825), [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1245), + [sym__binary_star] = ACTIONS(1249), [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1245), + [sym__binary_double_star] = ACTIONS(1249), [sym__block_ampersand] = ACTIONS(831), - [sym_binary_ampersand] = ACTIONS(1245), + [sym_binary_ampersand] = ACTIONS(1249), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), [sym__regular_if_keyword] = ACTIONS(837), [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1245), + [sym__modulo_operator] = ACTIONS(1249), [sym__string_literal_start] = ACTIONS(841), [sym__string_percent_literal_start] = ACTIONS(843), [sym__command_percent_literal_start] = ACTIONS(845), @@ -84089,453 +84461,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(853), }, - [259] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(259), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(9582), - [sym_elsif] = STATE(10946), - [sym_else] = STATE(10946), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [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(1945), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(1867), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, [260] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5387), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3612), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(260), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5395), - [sym_double_splat] = STATE(5395), - [sym_named_expr] = STATE(5395), - [sym_argument_list_no_parens] = STATE(5129), - [sym_argument_list_no_parens_with_block] = STATE(5739), - [sym_argument_list_with_parens] = STATE(5130), - [sym_argument_list_with_parens_and_block] = STATE(5470), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(5714), - [sym_brace_block] = STATE(5586), - [sym_block_argument] = STATE(5528), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(873), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym__control_expressions] = STATE(4195), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(3765), + [sym_double_splat] = STATE(3765), + [sym_named_expr] = STATE(3765), + [sym_argument_list_no_parens] = STATE(4116), + [sym_argument_list_with_parens] = STATE(4116), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1881), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_RBRACK] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(1241), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_end] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1889), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1897), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(1261), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(945), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(955), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(957), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(959), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(1907), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(1909), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__modifier_if_keyword] = ACTIONS(1261), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__modifier_unless_keyword] = ACTIONS(1261), + [sym__regular_rescue_keyword] = ACTIONS(1261), + [sym__modifier_rescue_keyword] = ACTIONS(1261), + [sym__regular_ensure_keyword] = ACTIONS(1261), + [sym__modifier_ensure_keyword] = ACTIONS(1261), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(981), + [sym__start_of_parenless_args] = ACTIONS(1913), }, [261] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5387), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5230), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(261), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5395), - [sym_double_splat] = STATE(5395), - [sym_named_expr] = STATE(5395), - [sym_argument_list_no_parens] = STATE(5125), - [sym_argument_list_no_parens_with_block] = STATE(5661), - [sym_argument_list_with_parens] = STATE(5127), - [sym_argument_list_with_parens_and_block] = STATE(5698), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(5699), - [sym_brace_block] = STATE(5700), - [sym_block_argument] = STATE(5528), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5232), + [sym_double_splat] = STATE(5232), + [sym_named_expr] = STATE(5232), + [sym_argument_list_no_parens] = STATE(5126), + [sym_argument_list_no_parens_with_block] = STATE(5544), + [sym_argument_list_with_parens] = STATE(4982), + [sym_argument_list_with_parens_and_block] = STATE(5236), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5237), + [sym_brace_block] = STATE(5242), + [sym_block_argument] = STATE(5819), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -84550,30 +84738,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(885), [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_RBRACK] = ACTIONS(1251), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), [anon_sym_typeof] = ACTIONS(903), @@ -84593,13 +84782,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1239), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(1249), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1251), + [anon_sym_RBRACK_QMARK] = ACTIONS(1239), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1231), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -84610,28 +84799,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_brace_block] = ACTIONS(945), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(1249), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(951), [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), [sym_unary_wrapping_plus] = ACTIONS(953), [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), [sym__unary_star] = ACTIONS(955), - [sym__binary_star] = ACTIONS(1249), + [sym__binary_star] = ACTIONS(1239), [sym__unary_double_star] = ACTIONS(957), - [sym__binary_double_star] = ACTIONS(1249), + [sym__binary_double_star] = ACTIONS(1239), [sym__block_ampersand] = ACTIONS(959), - [sym_binary_ampersand] = ACTIONS(1249), + [sym_binary_ampersand] = ACTIONS(1239), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), [sym__regular_if_keyword] = ACTIONS(965), [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(1249), + [sym__modulo_operator] = ACTIONS(1239), [sym__string_literal_start] = ACTIONS(969), [sym__string_percent_literal_start] = ACTIONS(971), [sym__command_percent_literal_start] = ACTIONS(973), @@ -84643,83 +84832,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(981), }, [262] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5190), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5230), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(262), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5166), - [sym_double_splat] = STATE(5166), - [sym_named_expr] = STATE(5166), - [sym_argument_list_no_parens] = STATE(5043), - [sym_argument_list_no_parens_with_block] = STATE(6262), - [sym_argument_list_with_parens] = STATE(5044), - [sym_argument_list_with_parens_and_block] = STATE(6265), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(6273), - [sym_brace_block] = STATE(6276), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5232), + [sym_double_splat] = STATE(5232), + [sym_named_expr] = STATE(5232), + [sym_argument_list_no_parens] = STATE(5063), + [sym_argument_list_no_parens_with_block] = STATE(5707), + [sym_argument_list_with_parens] = STATE(5063), + [sym_argument_list_with_parens_and_block] = STATE(5707), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5709), + [sym_brace_block] = STATE(5715), + [sym_block_argument] = STATE(5819), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -84734,30 +84923,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(885), [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_RBRACK] = ACTIONS(1243), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_RBRACK] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), [anon_sym_BANG] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), [anon_sym_typeof] = ACTIONS(903), @@ -84776,14 +84965,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(921), [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(1241), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(993), + [anon_sym_RBRACK_QMARK] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1235), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -84791,31 +84980,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(941), [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(995), + [sym__start_of_brace_block] = ACTIONS(945), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1233), [sym_unary_plus] = ACTIONS(951), [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), [sym_unary_wrapping_plus] = ACTIONS(953), [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), [sym__unary_star] = ACTIONS(955), - [sym__binary_star] = ACTIONS(1241), + [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(957), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(997), - [sym_binary_ampersand] = ACTIONS(1241), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(959), + [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), [sym__regular_if_keyword] = ACTIONS(965), [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(1241), + [sym__modulo_operator] = ACTIONS(1233), [sym__string_literal_start] = ACTIONS(969), [sym__string_percent_literal_start] = ACTIONS(971), [sym__command_percent_literal_start] = ACTIONS(973), @@ -84824,86 +85013,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(979), [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(999), + [sym__start_of_parenless_args] = ACTIONS(981), }, [263] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5670), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(263), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5671), - [sym_double_splat] = STATE(5671), - [sym_named_expr] = STATE(5671), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5822), + [sym_double_splat] = STATE(5822), + [sym_named_expr] = STATE(5822), + [sym_argument_list_no_parens] = STATE(3306), + [sym_argument_list_no_parens_with_block] = STATE(4566), + [sym_argument_list_with_parens] = STATE(3144), + [sym_argument_list_with_parens_and_block] = STATE(4020), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4021), + [sym_brace_block] = STATE(4022), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -84918,29 +85107,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(1135), [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), @@ -84959,14 +85149,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1149), [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [anon_sym_COLON] = ACTIONS(1947), [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1239), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_COLON2] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_COLON2] = ACTIONS(1241), [anon_sym_do] = ACTIONS(521), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), @@ -84978,28 +85167,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_brace_block] = ACTIONS(535), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1233), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(1157), [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), [sym_unary_wrapping_plus] = ACTIONS(1159), [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1233), + [sym__binary_star] = ACTIONS(1239), [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1177), - [sym_binary_ampersand] = ACTIONS(1233), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(1165), + [sym_binary_ampersand] = ACTIONS(1239), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1233), + [sym__modulo_operator] = ACTIONS(1239), [sym__string_literal_start] = ACTIONS(559), [sym__string_percent_literal_start] = ACTIONS(561), [sym__command_percent_literal_start] = ACTIONS(563), @@ -85008,105 +85197,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1179), + [sym__start_of_parenless_args] = ACTIONS(1169), }, [264] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5387), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), [sym_heredoc_body] = STATE(264), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5395), - [sym_double_splat] = STATE(5395), - [sym_named_expr] = STATE(5395), - [sym_argument_list_no_parens] = STATE(5100), - [sym_argument_list_no_parens_with_block] = STATE(5565), - [sym_argument_list_with_parens] = STATE(5100), - [sym_argument_list_with_parens_and_block] = STATE(5565), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(5568), - [sym_brace_block] = STATE(5569), - [sym_block_argument] = STATE(5528), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(873), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5793), + [sym_double_splat] = STATE(5793), + [sym_named_expr] = STATE(5793), + [sym_argument_list_no_parens] = STATE(5500), + [sym_argument_list_no_parens_with_block] = STATE(6732), + [sym_argument_list_with_parens] = STATE(5500), + [sym_argument_list_with_parens_and_block] = STATE(6732), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6733), + [sym_brace_block] = STATE(6736), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_RBRACK] = ACTIONS(1235), [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DASH_GT] = ACTIONS(1021), [anon_sym_DOT] = ACTIONS(1235), [anon_sym_LT] = ACTIONS(1235), [anon_sym_PIPE] = ACTIONS(1235), @@ -85120,158 +85308,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1233), [anon_sym_LT_EQ_GT] = ACTIONS(1233), [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_BANG_TILDE] = ACTIONS(1233), [anon_sym_EQ_TILDE] = ACTIONS(1233), [anon_sym_AMP_STAR] = ACTIONS(1235), [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_LPAREN2] = ACTIONS(1117), [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(945), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), + [sym__end_of_with_expression] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(955), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(957), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(959), + [sym__block_ampersand] = ACTIONS(1127), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(981), + [sym__start_of_parenless_args] = ACTIONS(1129), }, [265] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5623), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), [sym_heredoc_body] = STATE(265), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5624), - [sym_double_splat] = STATE(5624), - [sym_named_expr] = STATE(5624), - [sym_argument_list_no_parens] = STATE(5167), - [sym_argument_list_no_parens_with_block] = STATE(5784), - [sym_argument_list_with_parens] = STATE(5167), - [sym_argument_list_with_parens_and_block] = STATE(5784), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(5785), - [sym_brace_block] = STATE(5786), - [sym_block_argument] = STATE(5787), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5701), + [sym_double_splat] = STATE(5701), + [sym_named_expr] = STATE(5701), + [sym_argument_list_no_parens] = STATE(5226), + [sym_argument_list_no_parens_with_block] = STATE(6213), + [sym_argument_list_with_parens] = STATE(5125), + [sym_argument_list_with_parens_and_block] = STATE(5559), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(5561), + [sym_brace_block] = STATE(5563), + [sym_block_argument] = STATE(6127), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1075), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym__end_of_with_expression] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(1089), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1111), + }, + [266] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5256), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(266), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5260), + [sym_double_splat] = STATE(5260), + [sym_named_expr] = STATE(5260), + [sym_argument_list_no_parens] = STATE(4937), + [sym_argument_list_no_parens_with_block] = STATE(5860), + [sym_argument_list_with_parens] = STATE(4763), + [sym_argument_list_with_parens_and_block] = STATE(5711), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(5712), + [sym_brace_block] = STATE(5719), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(803), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1239), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(817), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(1187), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1189), + }, + [267] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(267), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5701), + [sym_double_splat] = STATE(5701), + [sym_named_expr] = STATE(5701), + [sym_argument_list_no_parens] = STATE(5474), + [sym_argument_list_no_parens_with_block] = STATE(6124), + [sym_argument_list_with_parens] = STATE(5474), + [sym_argument_list_with_parens_and_block] = STATE(6124), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6125), + [sym_brace_block] = STATE(6126), + [sym_block_argument] = STATE(6127), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -85328,134 +85885,686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), [anon_sym_COLON] = ACTIONS(1949), - [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_LPAREN2] = ACTIONS(1055), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), [anon_sym_do] = ACTIONS(1235), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1125), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1075), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(1233), [sym__end_of_with_expression] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1089), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1111), + }, + [268] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5230), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(268), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5232), + [sym_double_splat] = STATE(5232), + [sym_named_expr] = STATE(5232), + [sym_argument_list_no_parens] = STATE(5064), + [sym_argument_list_no_parens_with_block] = STATE(5851), + [sym_argument_list_with_parens] = STATE(5065), + [sym_argument_list_with_parens_and_block] = STATE(5524), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5525), + [sym_brace_block] = STATE(5526), + [sym_block_argument] = STATE(5819), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_RBRACK_QMARK] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(945), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(955), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(957), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(959), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(981), + }, + [269] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5230), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(269), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5232), + [sym_double_splat] = STATE(5232), + [sym_named_expr] = STATE(5232), + [sym_argument_list_no_parens] = STATE(5066), + [sym_argument_list_no_parens_with_block] = STATE(5529), + [sym_argument_list_with_parens] = STATE(5067), + [sym_argument_list_with_parens_and_block] = STATE(5532), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(5533), + [sym_brace_block] = STATE(5535), + [sym_block_argument] = STATE(5819), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(873), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(1249), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_RBRACK_QMARK] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(945), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym__start_of_index_operator] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(955), + [sym__binary_star] = ACTIONS(1249), + [sym__unary_double_star] = ACTIONS(957), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(959), + [sym_binary_ampersand] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__modulo_operator] = ACTIONS(1249), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(981), + }, + [270] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(270), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5793), + [sym_double_splat] = STATE(5793), + [sym_named_expr] = STATE(5793), + [sym_argument_list_no_parens] = STATE(5495), + [sym_argument_list_no_parens_with_block] = STATE(6872), + [sym_argument_list_with_parens] = STATE(5117), + [sym_argument_list_with_parens_and_block] = STATE(6371), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6374), + [sym_brace_block] = STATE(6376), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym__end_of_with_expression] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(1127), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(1129), }, - [266] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5190), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(266), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5166), - [sym_double_splat] = STATE(5166), - [sym_named_expr] = STATE(5166), - [sym_argument_list_no_parens] = STATE(5047), - [sym_argument_list_no_parens_with_block] = STATE(6520), - [sym_argument_list_with_parens] = STATE(5047), - [sym_argument_list_with_parens_and_block] = STATE(6520), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(6521), - [sym_brace_block] = STATE(6527), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [271] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5259), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(271), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5473), + [sym_double_splat] = STATE(5473), + [sym_named_expr] = STATE(5473), + [sym_argument_list_no_parens] = STATE(5143), + [sym_argument_list_no_parens_with_block] = STATE(6346), + [sym_argument_list_with_parens] = STATE(5143), + [sym_argument_list_with_parens_and_block] = STATE(6346), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(6348), + [sym_brace_block] = STATE(6350), + [sym_block_argument] = STATE(6650), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -85562,84 +86671,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(999), }, - [267] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5387), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(267), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5395), - [sym_double_splat] = STATE(5395), - [sym_named_expr] = STATE(5395), - [sym_argument_list_no_parens] = STATE(5131), - [sym_argument_list_no_parens_with_block] = STATE(5706), - [sym_argument_list_with_parens] = STATE(5133), - [sym_argument_list_with_parens_and_block] = STATE(5708), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(5711), - [sym_brace_block] = STATE(5712), - [sym_block_argument] = STATE(5528), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [272] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5259), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(272), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5473), + [sym_double_splat] = STATE(5473), + [sym_named_expr] = STATE(5473), + [sym_argument_list_no_parens] = STATE(5052), + [sym_argument_list_no_parens_with_block] = STATE(6391), + [sym_argument_list_with_parens] = STATE(5053), + [sym_argument_list_with_parens_and_block] = STATE(6400), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(6402), + [sym_brace_block] = STATE(6405), + [sym_block_argument] = STATE(6650), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -85696,14 +86805,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(921), [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), - [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_LPAREN2] = ACTIONS(987), [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), [anon_sym_RBRACK_QMARK] = ACTIONS(1245), [anon_sym_AMP_AMP] = ACTIONS(1245), [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(993), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -85711,7 +86820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(941), [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(945), + [sym__start_of_brace_block] = ACTIONS(995), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), [sym__start_of_index_operator] = ACTIONS(1245), @@ -85727,7 +86836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(1245), [sym__unary_double_star] = ACTIONS(957), [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(959), + [sym__block_ampersand] = ACTIONS(997), [sym_binary_ampersand] = ACTIONS(1245), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), @@ -85744,86 +86853,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(979), [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(981), + [sym__start_of_parenless_args] = ACTIONS(999), }, - [268] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5190), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(268), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5166), - [sym_double_splat] = STATE(5166), - [sym_named_expr] = STATE(5166), - [sym_argument_list_no_parens] = STATE(5079), - [sym_argument_list_no_parens_with_block] = STATE(6268), - [sym_argument_list_with_parens] = STATE(5080), - [sym_argument_list_with_parens_and_block] = STATE(6467), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(6522), - [sym_brace_block] = STATE(6237), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [273] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5259), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(273), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5473), + [sym_double_splat] = STATE(5473), + [sym_named_expr] = STATE(5473), + [sym_argument_list_no_parens] = STATE(5054), + [sym_argument_list_no_parens_with_block] = STATE(6407), + [sym_argument_list_with_parens] = STATE(5055), + [sym_argument_list_with_parens_and_block] = STATE(6408), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_do_end_block] = STATE(6409), + [sym_brace_block] = STATE(6434), + [sym_block_argument] = STATE(6650), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -85930,84 +87039,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(999), }, - [269] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5502), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(269), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5509), - [sym_double_splat] = STATE(5509), - [sym_named_expr] = STATE(5509), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [274] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(274), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5822), + [sym_double_splat] = STATE(5822), + [sym_named_expr] = STATE(5822), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -86064,14 +87173,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), [anon_sym_COLON] = ACTIONS(1951), - [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_LPAREN2] = ACTIONS(513), [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), [anon_sym_COLON2] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(521), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -86079,7 +87188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(531), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_brace_block] = ACTIONS(535), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(1233), @@ -86114,286 +87223,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(1169), }, - [270] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5190), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(270), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5166), - [sym_double_splat] = STATE(5166), - [sym_named_expr] = STATE(5166), - [sym_argument_list_no_parens] = STATE(5089), - [sym_argument_list_no_parens_with_block] = STATE(6251), - [sym_argument_list_with_parens] = STATE(5091), - [sym_argument_list_with_parens_and_block] = STATE(6364), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_do_end_block] = STATE(6374), - [sym_brace_block] = STATE(6426), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(873), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_RBRACK] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(1245), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(993), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(995), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(955), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(957), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(997), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(999), - }, - [271] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5604), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(271), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), + [275] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5773), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(275), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5605), - [sym_double_splat] = STATE(5605), - [sym_named_expr] = STATE(5605), - [sym_argument_list_no_parens] = STATE(5169), - [sym_argument_list_no_parens_with_block] = STATE(6865), - [sym_argument_list_with_parens] = STATE(5169), - [sym_argument_list_with_parens_and_block] = STATE(6865), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6906), - [sym_brace_block] = STATE(6660), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5774), + [sym_double_splat] = STATE(5774), + [sym_named_expr] = STATE(5774), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_COMMA] = ACTIONS(1233), [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DASH_GT] = ACTIONS(479), [anon_sym_DOT] = ACTIONS(1235), [anon_sym_LT] = ACTIONS(1235), [anon_sym_PIPE] = ACTIONS(1235), @@ -86407,363 +87332,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1233), [anon_sym_LT_EQ_GT] = ACTIONS(1233), [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_BANG_TILDE] = ACTIONS(1233), [anon_sym_EQ_TILDE] = ACTIONS(1233), [anon_sym_AMP_STAR] = ACTIONS(1235), [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), [anon_sym_COLON] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_LPAREN2] = ACTIONS(577), [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [anon_sym_COLON2] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(1233), - [sym__end_of_with_expression] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1161), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1163), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1091), + [sym__block_ampersand] = ACTIONS(1177), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1113), + [sym__start_of_parenless_args] = ACTIONS(1179), }, - [272] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5332), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(272), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5338), - [sym_double_splat] = STATE(5338), - [sym_named_expr] = STATE(5338), - [sym_argument_list_no_parens] = STATE(4869), - [sym_argument_list_no_parens_with_block] = STATE(6087), - [sym_argument_list_with_parens] = STATE(4881), - [sym_argument_list_with_parens_and_block] = STATE(6183), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(6186), - [sym_brace_block] = STATE(6188), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(743), + [276] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5773), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(276), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5774), + [sym_double_splat] = STATE(5774), + [sym_named_expr] = STATE(5774), + [sym_argument_list_no_parens] = STATE(3256), + [sym_argument_list_no_parens_with_block] = STATE(3890), + [sym_argument_list_with_parens] = STATE(3121), + [sym_argument_list_with_parens_and_block] = STATE(3414), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3416), + [sym_brace_block] = STATE(3417), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(803), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1245), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_COLON2] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(1187), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(1177), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1189), + [sym__start_of_parenless_args] = ACTIONS(1179), }, - [273] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(273), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [277] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(277), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10027), - [sym_else] = STATE(11701), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10405), + [sym_else] = STATE(11425), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -86848,83 +87774,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [274] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4440), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(274), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__control_expressions] = STATE(4460), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(4314), - [sym_double_splat] = STATE(4314), - [sym_named_expr] = STATE(4314), - [sym_argument_list_no_parens] = STATE(4315), - [sym_argument_list_with_parens] = STATE(4315), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [278] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4389), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(278), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__control_expressions] = STATE(4377), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(4344), + [sym_double_splat] = STATE(4344), + [sym_named_expr] = STATE(4344), + [sym_argument_list_no_parens] = STATE(4345), + [sym_argument_list_with_parens] = STATE(4345), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1269), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -86932,38 +87858,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1269), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_RBRACK] = ACTIONS(1273), - [anon_sym_EQ_GT] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_EQ_GT] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_end] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_end] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), [anon_sym_BANG] = ACTIONS(1979), [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -86983,44 +87909,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), [anon_sym_LPAREN2] = ACTIONS(2007), - [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1269), [sym_private] = ACTIONS(2009), [sym_protected] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_when] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_when] = ACTIONS(1271), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1271), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(1273), + [sym__start_of_index_operator] = ACTIONS(1269), [sym_unary_plus] = ACTIONS(2027), [sym_unary_minus] = ACTIONS(2027), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), [sym_unary_wrapping_plus] = ACTIONS(2029), [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), [sym__unary_star] = ACTIONS(2031), - [sym__binary_star] = ACTIONS(1273), + [sym__binary_star] = ACTIONS(1269), [sym__unary_double_star] = ACTIONS(2033), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(1273), + [sym__modulo_operator] = ACTIONS(1269), [sym__string_literal_start] = ACTIONS(2043), [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), @@ -87031,105 +87957,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(2055), }, - [275] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(275), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [279] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(279), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10683), - [sym_else] = STATE(12148), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10140), + [sym_else] = STATE(11329), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -87214,105 +88140,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [276] = { - [sym__statements] = STATE(9730), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(276), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), + [280] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(280), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10576), + [sym_else] = STATE(11896), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), [aux_sym_multi_assign_repeat1] = STATE(1049), + [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(2059), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [281] = { + [sym__statements] = STATE(10021), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(281), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -87328,7 +88437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(2059), + [anon_sym_end] = ACTIONS(2061), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -87370,7 +88479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2061), [anon_sym_require] = ACTIONS(1373), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), @@ -87386,8 +88495,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(2061), - [sym__regular_ensure_keyword] = ACTIONS(2061), + [sym__regular_rescue_keyword] = ACTIONS(2063), + [sym__regular_ensure_keyword] = ACTIONS(2063), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -87397,105 +88506,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [277] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(277), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [282] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(282), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10597), - [sym_else] = STATE(12025), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10188), + [sym_else] = STATE(12262), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -87513,7 +88622,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(2063), + [anon_sym_end] = ACTIONS(2065), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -87580,654 +88689,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [278] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5502), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(278), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5509), - [sym_double_splat] = STATE(5509), - [sym_named_expr] = STATE(5509), - [sym_argument_list_no_parens] = STATE(3256), - [sym_argument_list_no_parens_with_block] = STATE(3770), - [sym_argument_list_with_parens] = STATE(3148), - [sym_argument_list_with_parens_and_block] = STATE(3771), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3772), - [sym_brace_block] = STATE(3773), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_COLON2] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1169), - }, - [279] = { - [sym__statements] = STATE(9727), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(279), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), + [283] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(283), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10427), + [sym_else] = STATE(11502), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), [aux_sym_multi_assign_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1281), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(2065), - [anon_sym_AT_LBRACK] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_lib] = ACTIONS(1317), - [anon_sym_fun] = ACTIONS(1319), + [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(2067), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(1325), - [anon_sym_extend] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_next] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(1357), - [sym_class_var] = ACTIONS(1357), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1359), - [sym_protected] = ACTIONS(1361), - [anon_sym_alias] = ACTIONS(1363), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2065), - [anon_sym_require] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(2067), - [sym__regular_ensure_keyword] = ACTIONS(2067), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [280] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5502), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(280), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5509), - [sym_double_splat] = STATE(5509), - [sym_named_expr] = STATE(5509), - [sym_argument_list_no_parens] = STATE(3206), - [sym_argument_list_no_parens_with_block] = STATE(3614), - [sym_argument_list_with_parens] = STATE(3206), - [sym_argument_list_with_parens_and_block] = STATE(3614), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3615), - [sym_brace_block] = STATE(3616), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_COLON2] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(583), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1169), }, - [281] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(281), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [284] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(284), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10351), - [sym_else] = STATE(11999), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10386), + [sym_else] = STATE(12031), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -88312,105 +89055,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [282] = { - [sym__statements] = STATE(9704), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(282), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [285] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4512), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(285), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym__control_expressions] = STATE(4617), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(4549), + [sym_double_splat] = STATE(4549), + [sym_named_expr] = STATE(4549), + [sym_argument_list_no_parens] = STATE(4794), + [sym_argument_list_with_parens] = STATE(4794), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_end] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [anon_sym_LPAREN2] = ACTIONS(2121), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(1261), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(2145), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(2147), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(1261), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(1261), + [sym__modifier_rescue_keyword] = ACTIONS(1261), + [sym__regular_ensure_keyword] = ACTIONS(1261), + [sym__modifier_ensure_keyword] = ACTIONS(1261), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2169), + }, + [286] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(286), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5701), + [sym_double_splat] = STATE(5701), + [sym_named_expr] = STATE(5701), + [sym_argument_list_no_parens] = STATE(5476), + [sym_argument_list_no_parens_with_block] = STATE(6133), + [sym_argument_list_with_parens] = STATE(5477), + [sym_argument_list_with_parens_and_block] = STATE(6134), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6135), + [sym_brace_block] = STATE(6136), + [sym_block_argument] = STATE(6127), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1247), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1075), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym__end_of_with_expression] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(1089), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1111), + }, + [287] = { + [sym__statements] = STATE(10028), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(287), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -88426,7 +89535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(2071), + [anon_sym_end] = ACTIONS(2171), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -88468,7 +89577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2171), [anon_sym_require] = ACTIONS(1373), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), @@ -88484,8 +89593,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(2073), - [sym__regular_ensure_keyword] = ACTIONS(2073), + [sym__regular_rescue_keyword] = ACTIONS(2173), + [sym__regular_ensure_keyword] = ACTIONS(2173), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -88495,267 +89604,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [283] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(283), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10196), - [sym_else] = STATE(10915), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [288] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4389), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(288), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__control_expressions] = STATE(4546), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(4344), + [sym_double_splat] = STATE(4344), + [sym_named_expr] = STATE(4344), + [sym_argument_list_no_parens] = STATE(4345), + [sym_argument_list_with_parens] = STATE(4345), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1261), [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(2075), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(1261), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_EQ_GT] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_end] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [anon_sym_LPAREN2] = ACTIONS(2007), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_when] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(1263), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(2031), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(2033), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2055), }, - [284] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5502), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(284), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5509), - [sym_double_splat] = STATE(5509), - [sym_named_expr] = STATE(5509), - [sym_argument_list_no_parens] = STATE(3159), - [sym_argument_list_no_parens_with_block] = STATE(3622), - [sym_argument_list_with_parens] = STATE(3160), - [sym_argument_list_with_parens_and_block] = STATE(3623), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3624), - [sym_brace_block] = STATE(3625), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [289] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5773), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(289), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5774), + [sym_double_splat] = STATE(5774), + [sym_named_expr] = STATE(5774), + [sym_argument_list_no_parens] = STATE(3250), + [sym_argument_list_no_parens_with_block] = STATE(3883), + [sym_argument_list_with_parens] = STATE(3250), + [sym_argument_list_with_parens_and_block] = STATE(3883), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3884), + [sym_brace_block] = STATE(3885), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -88770,29 +89879,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), [anon_sym_BANG] = ACTIONS(1135), [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), @@ -88812,13 +89921,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_COLON2] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(1251), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_COLON2] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(1235), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -88829,28 +89938,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_brace_block] = ACTIONS(583), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1249), + [sym__start_of_index_operator] = ACTIONS(1233), [sym_unary_plus] = ACTIONS(1157), [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), [sym_unary_wrapping_plus] = ACTIONS(1159), [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1249), + [sym__binary_star] = ACTIONS(1233), [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(1249), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(1177), + [sym_binary_ampersand] = ACTIONS(1233), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1249), + [sym__modulo_operator] = ACTIONS(1233), [sym__string_literal_start] = ACTIONS(559), [sym__string_percent_literal_start] = ACTIONS(561), [sym__command_percent_literal_start] = ACTIONS(563), @@ -88859,86 +89968,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1169), + [sym__start_of_parenless_args] = ACTIONS(1179), }, - [285] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5502), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(285), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5509), - [sym_double_splat] = STATE(5509), - [sym_named_expr] = STATE(5509), - [sym_argument_list_no_parens] = STATE(3161), - [sym_argument_list_no_parens_with_block] = STATE(3626), - [sym_argument_list_with_parens] = STATE(3162), - [sym_argument_list_with_parens_and_block] = STATE(3627), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(3628), - [sym_brace_block] = STATE(3629), - [sym_block_argument] = STATE(3617), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [290] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5773), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(290), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5774), + [sym_double_splat] = STATE(5774), + [sym_named_expr] = STATE(5774), + [sym_argument_list_no_parens] = STATE(3175), + [sym_argument_list_no_parens_with_block] = STATE(3620), + [sym_argument_list_with_parens] = STATE(3176), + [sym_argument_list_with_parens_and_block] = STATE(3624), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3625), + [sym_brace_block] = STATE(3626), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -89025,7 +90134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_star] = ACTIONS(1245), [sym__unary_double_star] = ACTIONS(1163), [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(1165), + [sym__block_ampersand] = ACTIONS(1177), [sym_binary_ampersand] = ACTIONS(1245), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), @@ -89042,107 +90151,839 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1169), + [sym__start_of_parenless_args] = ACTIONS(1179), }, - [286] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(286), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [291] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5773), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(291), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5774), + [sym_double_splat] = STATE(5774), + [sym_named_expr] = STATE(5774), + [sym_argument_list_no_parens] = STATE(3192), + [sym_argument_list_no_parens_with_block] = STATE(3627), + [sym_argument_list_with_parens] = STATE(3194), + [sym_argument_list_with_parens_and_block] = STATE(3628), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(3629), + [sym_brace_block] = STATE(3630), + [sym_block_argument] = STATE(3886), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(1249), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_COLON2] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(583), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(1249), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(1177), + [sym_binary_ampersand] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1249), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1179), + }, + [292] = { + [sym__statements] = STATE(9901), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(292), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_multi_assign_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_annotation] = ACTIONS(1301), + [anon_sym_end] = ACTIONS(2175), + [anon_sym_AT_LBRACK] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1309), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_lib] = ACTIONS(1317), + [anon_sym_fun] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(1325), + [anon_sym_extend] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_next] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(1357), + [sym_class_var] = ACTIONS(1357), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1359), + [sym_protected] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_require] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__regular_rescue_keyword] = ACTIONS(2177), + [sym__regular_ensure_keyword] = ACTIONS(2177), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [293] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(293), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5701), + [sym_double_splat] = STATE(5701), + [sym_named_expr] = STATE(5701), + [sym_argument_list_no_parens] = STATE(5220), + [sym_argument_list_no_parens_with_block] = STATE(6138), + [sym_argument_list_with_parens] = STATE(5479), + [sym_argument_list_with_parens_and_block] = STATE(6139), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6140), + [sym_brace_block] = STATE(6141), + [sym_block_argument] = STATE(6127), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(1249), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1251), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1075), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1249), + [sym__end_of_with_expression] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1249), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(1089), + [sym_binary_ampersand] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1249), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1111), + }, + [294] = { + [sym__statements] = STATE(9930), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8351), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(294), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(322), + [aux_sym_multi_assign_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_annotation] = ACTIONS(1301), + [anon_sym_end] = ACTIONS(2179), + [anon_sym_AT_LBRACK] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1309), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_lib] = ACTIONS(1317), + [anon_sym_fun] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(1325), + [anon_sym_extend] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_next] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(1357), + [sym_class_var] = ACTIONS(1357), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1359), + [sym_protected] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(2179), + [anon_sym_require] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__regular_rescue_keyword] = ACTIONS(2181), + [sym__regular_ensure_keyword] = ACTIONS(2181), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [295] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(295), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10623), - [sym_else] = STATE(11835), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10074), + [sym_else] = STATE(11877), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -89160,7 +91001,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(2077), + [anon_sym_end] = ACTIONS(2183), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -89227,105 +91068,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [287] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(287), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [296] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(296), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10042), - [sym_else] = STATE(10941), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10323), + [sym_else] = STATE(11187), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -89343,7 +91184,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(2079), + [anon_sym_end] = ACTIONS(2185), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -89410,105 +91251,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [288] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(288), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [297] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(297), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10178), - [sym_else] = STATE(11416), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10538), + [sym_else] = STATE(11805), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -89526,7 +91367,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(2081), + [anon_sym_end] = ACTIONS(2187), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -89593,105 +91434,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [289] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(289), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [298] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4512), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(298), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym__control_expressions] = STATE(4709), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(4549), + [sym_double_splat] = STATE(4549), + [sym_named_expr] = STATE(4549), + [sym_argument_list_no_parens] = STATE(4794), + [sym_argument_list_with_parens] = STATE(4794), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_end] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [anon_sym_LPAREN2] = ACTIONS(2121), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(1269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(2145), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(2147), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(1269), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(1269), + [sym__modifier_rescue_keyword] = ACTIONS(1269), + [sym__regular_ensure_keyword] = ACTIONS(1269), + [sym__modifier_ensure_keyword] = ACTIONS(1269), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2169), + }, + [299] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(299), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10344), - [sym_else] = STATE(11241), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10744), + [sym_else] = STATE(12372), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -89709,7 +91733,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(2083), + [anon_sym_end] = ACTIONS(2189), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -89776,84 +91800,1182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [290] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5623), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(290), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), + [300] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5746), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(300), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5624), - [sym_double_splat] = STATE(5624), - [sym_named_expr] = STATE(5624), - [sym_argument_list_no_parens] = STATE(5170), - [sym_argument_list_no_parens_with_block] = STATE(5799), - [sym_argument_list_with_parens] = STATE(5171), - [sym_argument_list_with_parens_and_block] = STATE(5801), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(5802), - [sym_brace_block] = STATE(5803), - [sym_block_argument] = STATE(5787), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5752), + [sym_double_splat] = STATE(5752), + [sym_named_expr] = STATE(5752), + [sym_argument_list_no_parens] = STATE(3306), + [sym_argument_list_no_parens_with_block] = STATE(4566), + [sym_argument_list_with_parens] = STATE(3144), + [sym_argument_list_with_parens_and_block] = STATE(4020), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4021), + [sym_brace_block] = STATE(4022), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_COLON2] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(1219), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1221), + }, + [301] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5256), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(301), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5260), + [sym_double_splat] = STATE(5260), + [sym_named_expr] = STATE(5260), + [sym_argument_list_no_parens] = STATE(4885), + [sym_argument_list_no_parens_with_block] = STATE(6094), + [sym_argument_list_with_parens] = STATE(4885), + [sym_argument_list_with_parens_and_block] = STATE(6094), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6095), + [sym_brace_block] = STATE(6096), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(803), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1233), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(817), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(1187), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1189), + }, + [302] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5256), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(302), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5260), + [sym_double_splat] = STATE(5260), + [sym_named_expr] = STATE(5260), + [sym_argument_list_no_parens] = STATE(4886), + [sym_argument_list_no_parens_with_block] = STATE(6137), + [sym_argument_list_with_parens] = STATE(4887), + [sym_argument_list_with_parens_and_block] = STATE(6150), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6220), + [sym_brace_block] = STATE(6221), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(803), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1245), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(817), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(1187), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1189), + }, + [303] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5256), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(303), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5260), + [sym_double_splat] = STATE(5260), + [sym_named_expr] = STATE(5260), + [sym_argument_list_no_parens] = STATE(4889), + [sym_argument_list_no_parens_with_block] = STATE(6241), + [sym_argument_list_with_parens] = STATE(4890), + [sym_argument_list_with_parens_and_block] = STATE(6254), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(6259), + [sym_brace_block] = STATE(6273), + [sym_block_argument] = STATE(6097), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(1249), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(803), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1249), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(817), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(1249), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(1187), + [sym_binary_ampersand] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(1249), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1189), + }, + [304] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(304), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5793), + [sym_double_splat] = STATE(5793), + [sym_named_expr] = STATE(5793), + [sym_argument_list_no_parens] = STATE(5500), + [sym_argument_list_no_parens_with_block] = STATE(6732), + [sym_argument_list_with_parens] = STATE(5500), + [sym_argument_list_with_parens_and_block] = STATE(6732), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6733), + [sym_brace_block] = STATE(6736), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym__end_of_with_expression] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(1127), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1129), + }, + [305] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(305), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5793), + [sym_double_splat] = STATE(5793), + [sym_named_expr] = STATE(5793), + [sym_argument_list_no_parens] = STATE(5502), + [sym_argument_list_no_parens_with_block] = STATE(6782), + [sym_argument_list_with_parens] = STATE(5503), + [sym_argument_list_with_parens_and_block] = STATE(6783), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6784), + [sym_brace_block] = STATE(6789), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym__end_of_with_expression] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(1127), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1129), + }, + [306] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(306), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5793), + [sym_double_splat] = STATE(5793), + [sym_named_expr] = STATE(5793), + [sym_argument_list_no_parens] = STATE(5504), + [sym_argument_list_no_parens_with_block] = STATE(6793), + [sym_argument_list_with_parens] = STATE(5505), + [sym_argument_list_with_parens_and_block] = STATE(6795), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6796), + [sym_brace_block] = STATE(6798), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -89909,155 +93031,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_LPAREN2] = ACTIONS(1117), [anon_sym_QMARK] = ACTIONS(1249), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), [anon_sym_AMP_AMP] = ACTIONS(1249), [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(1125), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(1249), [sym__end_of_with_expression] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(1249), [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(1249), [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(1249), [sym__block_ampersand] = ACTIONS(1127), [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(1249), [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(1129), }, - [291] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(291), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [307] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5828), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(307), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5829), + [sym_double_splat] = STATE(5829), + [sym_named_expr] = STATE(5829), + [sym_argument_list_no_parens] = STATE(5495), + [sym_argument_list_no_parens_with_block] = STATE(6872), + [sym_argument_list_with_parens] = STATE(5117), + [sym_argument_list_with_parens_and_block] = STATE(6371), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6374), + [sym_brace_block] = STATE(6376), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1239), + [anon_sym_EQ_TILDE] = ACTIONS(1239), + [anon_sym_AMP_STAR] = ACTIONS(1241), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1239), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1239), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym__end_of_with_expression] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1239), + [sym_binary_minus] = ACTIONS(1239), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1239), + [sym_binary_wrapping_minus] = ACTIONS(1239), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1239), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1239), + [sym__block_ampersand] = ACTIONS(1197), + [sym_binary_ampersand] = ACTIONS(1239), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1239), + [sym__binary_double_slash] = ACTIONS(1239), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1239), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1199), + }, + [308] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(308), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10354), - [sym_else] = STATE(12117), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10223), + [sym_else] = STATE(10965), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -90075,7 +93380,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(2085), + [anon_sym_end] = ACTIONS(2191), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -90142,105 +93447,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [292] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(292), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [309] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(309), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10511), - [sym_else] = STATE(11785), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10117), + [sym_else] = STATE(11089), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -90258,7 +93563,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(2087), + [anon_sym_end] = ACTIONS(2193), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -90325,105 +93630,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [293] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(293), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [310] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(310), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10336), - [sym_else] = STATE(11218), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10517), + [sym_else] = STATE(11497), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -90441,7 +93746,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(2089), + [anon_sym_end] = ACTIONS(2195), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -90508,102 +93813,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [294] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5623), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(294), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), + [311] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(311), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5624), - [sym_double_splat] = STATE(5624), - [sym_named_expr] = STATE(5624), - [sym_argument_list_no_parens] = STATE(5167), - [sym_argument_list_no_parens_with_block] = STATE(5784), - [sym_argument_list_with_parens] = STATE(5167), - [sym_argument_list_with_parens_and_block] = STATE(5784), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(5785), - [sym_brace_block] = STATE(5786), - [sym_block_argument] = STATE(5787), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5822), + [sym_double_splat] = STATE(5822), + [sym_named_expr] = STATE(5822), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_COMMA] = ACTIONS(1233), [anon_sym_DOT_DOT] = ACTIONS(1235), [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DASH_GT] = ACTIONS(479), [anon_sym_DOT] = ACTIONS(1235), [anon_sym_LT] = ACTIONS(1235), [anon_sym_PIPE] = ACTIONS(1235), @@ -90617,158 +93922,707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1233), [anon_sym_LT_EQ_GT] = ACTIONS(1233), [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_BANG_TILDE] = ACTIONS(1233), [anon_sym_EQ_TILDE] = ACTIONS(1233), [anon_sym_AMP_STAR] = ACTIONS(1235), [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1119), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_AMP_AMP] = ACTIONS(1233), [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), + [anon_sym_COLON2] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1125), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), [sym__start_of_index_operator] = ACTIONS(1233), - [sym__end_of_with_expression] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), [sym_binary_plus] = ACTIONS(1233), [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), [sym_binary_wrapping_plus] = ACTIONS(1233), [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1087), + [sym__unary_star] = ACTIONS(1161), [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(1089), + [sym__unary_double_star] = ACTIONS(1163), [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1165), [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), [sym__binary_slash] = ACTIONS(1233), [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1129), + [sym__start_of_parenless_args] = ACTIONS(1169), }, - [295] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5604), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(295), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), + [312] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(312), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5605), - [sym_double_splat] = STATE(5605), - [sym_named_expr] = STATE(5605), - [sym_argument_list_no_parens] = STATE(5254), - [sym_argument_list_no_parens_with_block] = STATE(6848), - [sym_argument_list_with_parens] = STATE(5399), - [sym_argument_list_with_parens_and_block] = STATE(6731), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6858), - [sym_brace_block] = STATE(6859), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5822), + [sym_double_splat] = STATE(5822), + [sym_named_expr] = STATE(5822), + [sym_argument_list_no_parens] = STATE(3258), + [sym_argument_list_no_parens_with_block] = STATE(4600), + [sym_argument_list_with_parens] = STATE(3268), + [sym_argument_list_with_parens_and_block] = STATE(4444), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4483), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_COLON2] = ACTIONS(1247), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(1165), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1169), + }, + [313] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(313), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5822), + [sym_double_splat] = STATE(5822), + [sym_named_expr] = STATE(5822), + [sym_argument_list_no_parens] = STATE(3274), + [sym_argument_list_no_parens_with_block] = STATE(4358), + [sym_argument_list_with_parens] = STATE(3288), + [sym_argument_list_with_parens_and_block] = STATE(4374), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4378), + [sym_brace_block] = STATE(4379), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1249), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_COLON2] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(1249), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(1165), + [sym_binary_ampersand] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1249), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1169), + }, + [314] = { + [sym__statements] = STATE(10087), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(314), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_then] = STATE(10535), + [sym_else] = STATE(11174), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [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(2197), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [315] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(315), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5701), + [sym_double_splat] = STATE(5701), + [sym_named_expr] = STATE(5701), + [sym_argument_list_no_parens] = STATE(5474), + [sym_argument_list_no_parens_with_block] = STATE(6124), + [sym_argument_list_with_parens] = STATE(5474), + [sym_argument_list_with_parens_and_block] = STATE(6124), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6125), + [sym_brace_block] = STATE(6126), + [sym_block_argument] = STATE(6127), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -90783,29 +94637,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1015), [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), [anon_sym_BANG] = ACTIONS(1025), [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), [anon_sym_typeof] = ACTIONS(1033), @@ -90825,154 +94679,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1233), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym__end_of_with_expression] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(1091), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1235), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1075), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym__end_of_with_expression] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(1089), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1113), + [sym__start_of_parenless_args] = ACTIONS(1111), }, - [296] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(296), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [316] = { + [sym__statements] = STATE(10208), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(316), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10182), - [sym_else] = STATE(11078), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -90990,7 +94842,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(2091), + [anon_sym_end] = ACTIONS(2199), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -91032,8 +94884,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_else] = ACTIONS(1869), + [anon_sym_else] = ACTIONS(2199), [anon_sym_require] = ACTIONS(107), + [anon_sym_when] = ACTIONS(2199), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -91057,291 +94910,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [297] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4440), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(297), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__control_expressions] = STATE(4454), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(4314), - [sym_double_splat] = STATE(4314), - [sym_named_expr] = STATE(4314), - [sym_argument_list_no_parens] = STATE(4315), - [sym_argument_list_with_parens] = STATE(4315), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1257), + [317] = { + [sym__statements] = STATE(11938), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(317), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1257), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_RBRACK] = ACTIONS(1257), - [anon_sym_EQ_GT] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [anon_sym_LPAREN2] = ACTIONS(2007), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_when] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(1259), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(2201), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(2031), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(2033), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2055), }, - [298] = { - [sym__statements] = STATE(10621), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(298), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [318] = { + [sym__statements] = STATE(11000), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9046), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(318), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym_fun_param_list] = STATE(11323), + [sym_fun_param] = STATE(10658), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(4432), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_then] = STATE(10417), - [sym_else] = STATE(11506), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(2207), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2209), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -91356,7 +95209,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(2093), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -91398,7 +95250,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_else] = ACTIONS(1869), [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), @@ -91423,471 +95274,650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [299] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4479), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(299), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym__control_expressions] = STATE(4769), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(4531), - [sym_double_splat] = STATE(4531), - [sym_named_expr] = STATE(4531), - [sym_argument_list_no_parens] = STATE(4638), - [sym_argument_list_with_parens] = STATE(4638), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(2097), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_end] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [anon_sym_LPAREN2] = ACTIONS(2145), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(1273), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(2169), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(2171), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(1273), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(1273), - [sym__modifier_rescue_keyword] = ACTIONS(1273), - [sym__regular_ensure_keyword] = ACTIONS(1273), - [sym__modifier_ensure_keyword] = ACTIONS(1273), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2193), + [319] = { + [sym__statements] = STATE(11000), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9046), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(319), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym_fun_param_list] = STATE(11880), + [sym_fun_param] = STATE(10658), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(4432), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(13), + [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), + [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_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), }, - [300] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5332), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(300), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5338), - [sym_double_splat] = STATE(5338), - [sym_named_expr] = STATE(5338), - [sym_argument_list_no_parens] = STATE(4994), - [sym_argument_list_no_parens_with_block] = STATE(5757), - [sym_argument_list_with_parens] = STATE(4994), - [sym_argument_list_with_parens_and_block] = STATE(5757), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(5778), - [sym_brace_block] = STATE(5794), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(743), + [320] = { + [sym__statements] = STATE(11513), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(320), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(803), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1233), + [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(2213), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1187), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1189), }, - [301] = { - [sym__statements] = STATE(9935), - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8284), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(301), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(316), + [321] = { + [sym__statements] = STATE(11000), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9046), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(321), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym_fun_param_list] = STATE(11939), + [sym_fun_param] = STATE(10658), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(4432), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2217), + [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_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [322] = { + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8355), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(322), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym__statements_repeat1] = STATE(332), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1441), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -91903,7 +95933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(2195), + [anon_sym_end] = ACTIONS(1861), [anon_sym_AT_LBRACK] = ACTIONS(1305), [anon_sym_module] = ACTIONS(1307), [anon_sym_abstract] = ACTIONS(1309), @@ -91945,7 +95975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2195), + [anon_sym_else] = ACTIONS(1861), [anon_sym_require] = ACTIONS(1373), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), @@ -91961,8 +95991,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(2197), - [sym__regular_ensure_keyword] = ACTIONS(2197), + [sym__regular_rescue_keyword] = ACTIONS(1859), + [sym__regular_ensure_keyword] = ACTIONS(1859), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -91972,450 +96002,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [302] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5332), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(302), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5338), - [sym_double_splat] = STATE(5338), - [sym_named_expr] = STATE(5338), - [sym_argument_list_no_parens] = STATE(5010), - [sym_argument_list_no_parens_with_block] = STATE(6039), - [sym_argument_list_with_parens] = STATE(5011), - [sym_argument_list_with_parens_and_block] = STATE(6040), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(6043), - [sym_brace_block] = STATE(6044), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(743), + [323] = { + [sym__statements] = STATE(11811), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(323), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(803), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1241), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(1187), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1189), - }, - [303] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5604), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(303), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5605), - [sym_double_splat] = STATE(5605), - [sym_named_expr] = STATE(5605), - [sym_argument_list_no_parens] = STATE(5169), - [sym_argument_list_no_parens_with_block] = STATE(6865), - [sym_argument_list_with_parens] = STATE(5169), - [sym_argument_list_with_parens_and_block] = STATE(6865), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6906), - [sym_brace_block] = STATE(6660), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym__end_of_with_expression] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1091), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [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(2219), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1113), }, - [304] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5604), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(304), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5605), - [sym_double_splat] = STATE(5605), - [sym_named_expr] = STATE(5605), - [sym_argument_list_no_parens] = STATE(5386), - [sym_argument_list_no_parens_with_block] = STATE(6851), - [sym_argument_list_with_parens] = STATE(5391), - [sym_argument_list_with_parens_and_block] = STATE(6871), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6873), - [sym_brace_block] = STATE(6881), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [324] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5828), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(324), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5829), + [sym_double_splat] = STATE(5829), + [sym_named_expr] = STATE(5829), + [sym_argument_list_no_parens] = STATE(5504), + [sym_argument_list_no_parens_with_block] = STATE(6793), + [sym_argument_list_with_parens] = STATE(5505), + [sym_argument_list_with_parens_and_block] = STATE(6795), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6796), + [sym_brace_block] = STATE(6798), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -92430,7 +96276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1015), [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1249), [anon_sym_DOT_DOT] = ACTIONS(1251), [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), [anon_sym_DASH_GT] = ACTIONS(1021), @@ -92471,1803 +96316,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), + [anon_sym_LPAREN2] = ACTIONS(1117), [anon_sym_QMARK] = ACTIONS(1249), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), [anon_sym_AMP_AMP] = ACTIONS(1249), [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1249), - [sym__end_of_with_expression] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(1091), - [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1113), - }, - [305] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5604), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(305), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5605), - [sym_double_splat] = STATE(5605), - [sym_named_expr] = STATE(5605), - [sym_argument_list_no_parens] = STATE(5406), - [sym_argument_list_no_parens_with_block] = STATE(6885), - [sym_argument_list_with_parens] = STATE(5428), - [sym_argument_list_with_parens_and_block] = STATE(6893), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6894), - [sym_brace_block] = STATE(6897), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym__end_of_with_expression] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(1091), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1113), - }, - [306] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5332), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(306), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5338), - [sym_double_splat] = STATE(5338), - [sym_named_expr] = STATE(5338), - [sym_argument_list_no_parens] = STATE(4864), - [sym_argument_list_no_parens_with_block] = STATE(6071), - [sym_argument_list_with_parens] = STATE(4865), - [sym_argument_list_with_parens_and_block] = STATE(6073), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(6074), - [sym_brace_block] = STATE(6075), - [sym_block_argument] = STATE(5805), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(795), - [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(803), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1249), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(817), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(1187), - [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1189), - }, - [307] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4479), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(307), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym__control_expressions] = STATE(4841), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(4531), - [sym_double_splat] = STATE(4531), - [sym_named_expr] = STATE(4531), - [sym_argument_list_no_parens] = STATE(4638), - [sym_argument_list_with_parens] = STATE(4638), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(2097), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_end] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [anon_sym_LPAREN2] = ACTIONS(2145), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(1257), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(2169), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(2171), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(1257), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(1257), - [sym__modifier_rescue_keyword] = ACTIONS(1257), - [sym__regular_ensure_keyword] = ACTIONS(1257), - [sym__modifier_ensure_keyword] = ACTIONS(1257), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2193), - }, - [308] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5670), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(308), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5671), - [sym_double_splat] = STATE(5671), - [sym_named_expr] = STATE(5671), - [sym_argument_list_no_parens] = STATE(3226), - [sym_argument_list_no_parens_with_block] = STATE(4436), - [sym_argument_list_with_parens] = STATE(3227), - [sym_argument_list_with_parens_and_block] = STATE(4464), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4465), - [sym_brace_block] = STATE(4466), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_COLON2] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(1177), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1179), - }, - [309] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5670), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(309), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5671), - [sym_double_splat] = STATE(5671), - [sym_named_expr] = STATE(5671), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_COLON2] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1177), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1179), - }, - [310] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5670), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(310), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5671), - [sym_double_splat] = STATE(5671), - [sym_named_expr] = STATE(5671), - [sym_argument_list_no_parens] = STATE(3133), - [sym_argument_list_no_parens_with_block] = STATE(4357), - [sym_argument_list_with_parens] = STATE(3135), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4477), - [sym_brace_block] = STATE(4487), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_COLON2] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), + [sym__end_of_with_expression] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), [sym_binary_plus] = ACTIONS(1249), [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), [sym_binary_wrapping_plus] = ACTIONS(1249), [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(1161), + [sym__unary_star] = ACTIONS(1085), [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(1163), + [sym__unary_double_star] = ACTIONS(1087), [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(1177), + [sym__block_ampersand] = ACTIONS(1197), [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), [sym__binary_slash] = ACTIONS(1249), [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1179), - }, - [311] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5670), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(311), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5671), - [sym_double_splat] = STATE(5671), - [sym_named_expr] = STATE(5671), - [sym_argument_list_no_parens] = STATE(3138), - [sym_argument_list_no_parens_with_block] = STATE(4530), - [sym_argument_list_with_parens] = STATE(3139), - [sym_argument_list_with_parens_and_block] = STATE(4325), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4330), - [sym_brace_block] = STATE(4354), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_COLON2] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(1177), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1179), - }, - [312] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5623), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(312), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5624), - [sym_double_splat] = STATE(5624), - [sym_named_expr] = STATE(5624), - [sym_argument_list_no_parens] = STATE(5379), - [sym_argument_list_no_parens_with_block] = STATE(6203), - [sym_argument_list_with_parens] = STATE(5380), - [sym_argument_list_with_parens_and_block] = STATE(6204), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6205), - [sym_brace_block] = STATE(6111), - [sym_block_argument] = STATE(5787), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1125), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym__end_of_with_expression] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(1127), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1129), - }, - [313] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5623), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(313), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5624), - [sym_double_splat] = STATE(5624), - [sym_named_expr] = STATE(5624), - [sym_argument_list_no_parens] = STATE(5172), - [sym_argument_list_no_parens_with_block] = STATE(5804), - [sym_argument_list_with_parens] = STATE(5173), - [sym_argument_list_with_parens_and_block] = STATE(5806), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(5807), - [sym_brace_block] = STATE(5808), - [sym_block_argument] = STATE(5787), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1119), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1125), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym__end_of_with_expression] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(1127), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1129), + [sym__start_of_parenless_args] = ACTIONS(1199), }, - [314] = { - [sym__statements] = STATE(11022), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(314), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [325] = { + [sym__statements] = STATE(11159), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(325), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -94282,12 +96480,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(2199), + [anon_sym_end] = ACTIONS(2223), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2225), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -94319,7 +96517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -94350,106 +96548,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [315] = { - [sym__statements] = STATE(11348), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(315), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [326] = { + [sym__statements] = STATE(11161), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(326), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -94464,12 +96662,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(2205), + [anon_sym_end] = ACTIONS(2227), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2229), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -94501,7 +96699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -94532,291 +96730,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [316] = { - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8278), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(316), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym__statements_repeat1] = STATE(328), - [aux_sym_multi_assign_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(1277), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_end] = ACTIONS(1859), - [anon_sym_AT_LBRACK] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_lib] = ACTIONS(1317), - [anon_sym_fun] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(1325), - [anon_sym_extend] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_next] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(1357), - [sym_class_var] = ACTIONS(1357), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1359), - [sym_protected] = ACTIONS(1361), - [anon_sym_alias] = ACTIONS(1363), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1859), - [anon_sym_require] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__regular_rescue_keyword] = ACTIONS(1857), - [sym__regular_ensure_keyword] = ACTIONS(1857), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [317] = { - [sym__statements] = STATE(12284), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8919), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(317), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym_fun_param_list] = STATE(11898), - [sym_fun_param] = STATE(10626), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(4353), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [327] = { + [sym__statements] = STATE(12204), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(327), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(2209), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -94831,10 +96844,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(2231), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2233), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -94866,6 +96881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -94896,106 +96912,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [318] = { - [sym__statements] = STATE(11474), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(318), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [328] = { + [sym__statements] = STATE(12208), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(328), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -95010,17 +97026,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(2215), + [anon_sym_end] = ACTIONS(2235), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2237), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [anon_sym_EQ] = ACTIONS(2217), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2219), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -95048,6 +97063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -95078,109 +97094,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [319] = { - [sym__statements] = STATE(12284), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8919), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(319), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym_fun_param_list] = STATE(11958), - [sym_fun_param] = STATE(10626), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(4353), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [329] = { + [sym__statements] = STATE(11890), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(329), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(2209), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -95195,10 +97208,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(2239), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2241), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -95230,6 +97245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -95260,106 +97276,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [320] = { - [sym__statements] = STATE(12289), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(320), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [330] = { + [sym__statements] = STATE(11865), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(330), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -95374,12 +97390,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(2223), + [anon_sym_end] = ACTIONS(2243), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2245), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -95411,7 +97427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -95442,106 +97458,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [321] = { - [sym__statements] = STATE(12286), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(321), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [331] = { + [sym__statements] = STATE(12009), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(331), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(2247), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -95556,16 +97572,17 @@ 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(2227), + [anon_sym_end] = ACTIONS(2249), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2229), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(2251), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2253), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -95593,7 +97610,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -95624,288 +97640,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [322] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5547), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(322), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5634), - [sym_double_splat] = STATE(5634), - [sym_named_expr] = STATE(5634), - [sym_argument_list_no_parens] = STATE(3226), - [sym_argument_list_no_parens_with_block] = STATE(4436), - [sym_argument_list_with_parens] = STATE(3227), - [sym_argument_list_with_parens_and_block] = STATE(4464), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4465), - [sym_brace_block] = STATE(4466), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), + [332] = { + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9326), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(332), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(332), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(1663), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_COLON2] = ACTIONS(1243), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [aux_sym_integer_token2] = ACTIONS(1669), + [aux_sym_float_token2] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1675), + [sym_operator_symbol] = ACTIONS(1678), + [sym_unquoted_symbol] = ACTIONS(1678), + [anon_sym_COLON_DQUOTE] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_DASH_GT] = ACTIONS(1690), + [anon_sym_annotation] = ACTIONS(1693), + [anon_sym_end] = ACTIONS(1696), + [anon_sym_AT_LBRACK] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_class] = ACTIONS(1707), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_lib] = ACTIONS(1716), + [anon_sym_fun] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_include] = ACTIONS(1734), + [anon_sym_extend] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_next] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1758), + [anon_sym_instance_sizeof] = ACTIONS(1761), + [anon_sym_offsetof] = ACTIONS(1764), + [sym__constant_segment] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym___LINE__] = ACTIONS(1773), + [anon_sym___END_LINE__] = ACTIONS(1773), + [anon_sym___FILE__] = ACTIONS(1773), + [anon_sym___DIR__] = ACTIONS(1773), + [sym_special_variable] = ACTIONS(1776), + [sym_global_match_data_index] = ACTIONS(1678), + [sym_identifier_method_call] = ACTIONS(1779), + [sym_instance_var] = ACTIONS(1782), + [sym_class_var] = ACTIONS(1782), + [sym_self] = ACTIONS(1666), + [sym_private] = ACTIONS(1785), + [sym_protected] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1791), + [anon_sym_begin] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_until] = ACTIONS(1800), + [anon_sym_else] = ACTIONS(1696), + [anon_sym_require] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1806), + [anon_sym_select] = ACTIONS(1809), + [aux_sym_asm_token1] = ACTIONS(1812), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(1221), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(1815), + [sym__start_of_named_tuple] = ACTIONS(1818), + [sym_unary_plus] = ACTIONS(1821), + [sym_unary_minus] = ACTIONS(1821), + [sym_unary_wrapping_plus] = ACTIONS(1824), + [sym_unary_wrapping_minus] = ACTIONS(1824), + [sym__beginless_range_operator] = ACTIONS(1827), + [sym__regex_start] = ACTIONS(1830), + [sym__regular_if_keyword] = ACTIONS(1833), + [sym__regular_unless_keyword] = ACTIONS(1836), + [sym__regular_rescue_keyword] = ACTIONS(1655), + [sym__regular_ensure_keyword] = ACTIONS(1655), + [sym__string_literal_start] = ACTIONS(1839), + [sym__string_percent_literal_start] = ACTIONS(1842), + [sym__command_percent_literal_start] = ACTIONS(1845), + [sym__string_array_percent_literal_start] = ACTIONS(1848), + [sym__symbol_array_percent_literal_start] = ACTIONS(1851), + [sym__regex_percent_literal_start] = ACTIONS(1854), + [sym_heredoc_start] = ACTIONS(1678), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1223), }, - [323] = { - [sym__statements] = STATE(10955), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(323), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [333] = { + [sym__statements] = STATE(11812), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(333), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -95920,12 +97936,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(2231), + [anon_sym_end] = ACTIONS(2258), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2260), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -95957,7 +97973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -95988,106 +98004,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [324] = { - [sym__statements] = STATE(12294), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(324), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [334] = { + [sym__statements] = STATE(11917), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(334), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -96102,12 +98118,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(2235), + [anon_sym_end] = ACTIONS(2262), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2264), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -96139,7 +98155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -96170,106 +98186,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [325] = { - [sym__statements] = STATE(10393), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(325), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [335] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2612), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(335), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2266), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(2266), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_elsif] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_when] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_in] = ACTIONS(2272), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_break] = ACTIONS(2266), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2266), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__modifier_if_keyword] = ACTIONS(2266), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2278), + }, + [336] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5746), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(336), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5752), + [sym_double_splat] = STATE(5752), + [sym_named_expr] = STATE(5752), + [sym_argument_list_no_parens] = STATE(3274), + [sym_argument_list_no_parens_with_block] = STATE(4358), + [sym_argument_list_with_parens] = STATE(3288), + [sym_argument_list_with_parens_and_block] = STATE(4374), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4378), + [sym_brace_block] = STATE(4379), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_EQ_GT] = ACTIONS(1249), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1249), + [anon_sym_EQ_TILDE] = ACTIONS(1249), + [anon_sym_AMP_STAR] = ACTIONS(1251), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1249), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1249), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_COLON2] = ACTIONS(1251), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1249), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(1249), + [sym_binary_minus] = ACTIONS(1249), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(1249), + [sym_binary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(1249), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(1249), + [sym__block_ampersand] = ACTIONS(1219), + [sym_binary_ampersand] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1249), + [sym__binary_double_slash] = ACTIONS(1249), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1249), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1221), + }, + [337] = { + [sym__statements] = STATE(11000), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9046), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(337), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym_fun_param_list] = STATE(11144), + [sym_fun_param] = STATE(10658), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(4432), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(2207), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2280), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -96284,7 +98667,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(2239), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -96326,9 +98708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_else] = ACTIONS(2239), [anon_sym_require] = ACTIONS(107), - [anon_sym_when] = ACTIONS(2239), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -96352,106 +98732,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [326] = { - [sym__statements] = STATE(11910), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(326), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [338] = { + [sym__statements] = STATE(10207), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(338), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -96466,7 +98846,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(2243), + [anon_sym_end] = ACTIONS(2199), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -96475,8 +98855,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [anon_sym_EQ] = ACTIONS(2245), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2247), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -96510,7 +98888,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), + [anon_sym_else] = ACTIONS(2199), [anon_sym_require] = ACTIONS(107), + [anon_sym_when] = ACTIONS(2199), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -96534,106 +98914,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [327] = { - [sym__statements] = STATE(10971), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(327), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [339] = { + [sym__statements] = STATE(11544), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(339), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -96648,17 +99028,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(2251), + [anon_sym_end] = ACTIONS(2282), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2284), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [anon_sym_EQ] = ACTIONS(2253), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2255), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -96686,6 +99065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -96716,288 +99096,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [328] = { - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(9171), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(328), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(328), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(1663), + [340] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5828), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(340), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5829), + [sym_double_splat] = STATE(5829), + [sym_named_expr] = STATE(5829), + [sym_argument_list_no_parens] = STATE(5500), + [sym_argument_list_no_parens_with_block] = STATE(6732), + [sym_argument_list_with_parens] = STATE(5500), + [sym_argument_list_with_parens_and_block] = STATE(6732), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6733), + [sym_brace_block] = STATE(6736), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1666), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [aux_sym_integer_token2] = ACTIONS(1669), - [aux_sym_float_token2] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1675), - [sym_operator_symbol] = ACTIONS(1678), - [sym_unquoted_symbol] = ACTIONS(1678), - [anon_sym_COLON_DQUOTE] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_DASH_GT] = ACTIONS(1690), - [anon_sym_annotation] = ACTIONS(1693), - [anon_sym_end] = ACTIONS(1696), - [anon_sym_AT_LBRACK] = ACTIONS(1698), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_lib] = ACTIONS(1716), - [anon_sym_fun] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_def] = ACTIONS(1731), - [anon_sym_include] = ACTIONS(1734), - [anon_sym_extend] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_next] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_with] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1758), - [anon_sym_instance_sizeof] = ACTIONS(1761), - [anon_sym_offsetof] = ACTIONS(1764), - [sym__constant_segment] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym___LINE__] = ACTIONS(1773), - [anon_sym___END_LINE__] = ACTIONS(1773), - [anon_sym___FILE__] = ACTIONS(1773), - [anon_sym___DIR__] = ACTIONS(1773), - [sym_special_variable] = ACTIONS(1776), - [sym_global_match_data_index] = ACTIONS(1678), - [sym_identifier_method_call] = ACTIONS(1779), - [sym_instance_var] = ACTIONS(1782), - [sym_class_var] = ACTIONS(1782), - [sym_self] = ACTIONS(1666), - [sym_private] = ACTIONS(1785), - [sym_protected] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1791), - [anon_sym_begin] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_until] = ACTIONS(1800), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_require] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1806), - [anon_sym_select] = ACTIONS(1809), - [aux_sym_asm_token1] = ACTIONS(1812), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1815), - [sym__start_of_named_tuple] = ACTIONS(1818), - [sym_unary_plus] = ACTIONS(1821), - [sym_unary_minus] = ACTIONS(1821), - [sym_unary_wrapping_plus] = ACTIONS(1824), - [sym_unary_wrapping_minus] = ACTIONS(1824), - [sym__beginless_range_operator] = ACTIONS(1827), - [sym__regex_start] = ACTIONS(1830), - [sym__regular_if_keyword] = ACTIONS(1833), - [sym__regular_unless_keyword] = ACTIONS(1836), - [sym__regular_rescue_keyword] = ACTIONS(1655), - [sym__regular_ensure_keyword] = ACTIONS(1655), - [sym__string_literal_start] = ACTIONS(1839), - [sym__string_percent_literal_start] = ACTIONS(1842), - [sym__command_percent_literal_start] = ACTIONS(1845), - [sym__string_array_percent_literal_start] = ACTIONS(1848), - [sym__symbol_array_percent_literal_start] = ACTIONS(1851), - [sym__regex_percent_literal_start] = ACTIONS(1854), - [sym_heredoc_start] = ACTIONS(1678), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym__end_of_with_expression] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(1197), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1199), }, - [329] = { - [sym__statements] = STATE(11827), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(329), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [341] = { + [sym__statements] = STATE(12264), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(341), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -97012,12 +99392,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(2260), + [anon_sym_end] = ACTIONS(2286), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2262), + [anon_sym_LT] = ACTIONS(2288), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -97049,7 +99429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -97080,106 +99460,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [330] = { - [sym__statements] = STATE(12109), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(330), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [342] = { + [sym__statements] = STATE(11000), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9046), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(342), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym_fun_param_list] = STATE(12035), + [sym_fun_param] = STATE(10658), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(4432), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(2207), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2290), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -97194,12 +99577,10 @@ 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(2264), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2266), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -97231,7 +99612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -97262,106 +99642,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [331] = { - [sym__statements] = STATE(11617), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(331), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [343] = { + [sym__statements] = STATE(12032), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(343), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -97376,12 +99756,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(2268), + [anon_sym_end] = ACTIONS(2292), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2294), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -97413,7 +99793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -97444,288 +99824,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [332] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5727), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(332), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5456), - [sym_double_splat] = STATE(5456), - [sym_named_expr] = STATE(5456), - [sym_argument_list_no_parens] = STATE(5254), - [sym_argument_list_no_parens_with_block] = STATE(6848), - [sym_argument_list_with_parens] = STATE(5399), - [sym_argument_list_with_parens_and_block] = STATE(6731), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6858), - [sym_brace_block] = STATE(6859), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1243), - [anon_sym_BANG_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ] = ACTIONS(1243), - [anon_sym_GT] = ACTIONS(1243), - [anon_sym_GT_EQ] = ACTIONS(1241), - [anon_sym_LT_EQ_GT] = ACTIONS(1241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1241), - [anon_sym_EQ_TILDE] = ACTIONS(1241), - [anon_sym_AMP_STAR] = ACTIONS(1243), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1241), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1241), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1241), - [anon_sym_PIPE_PIPE] = ACTIONS(1241), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym__end_of_with_expression] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1241), - [sym_binary_minus] = ACTIONS(1241), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1241), - [sym_binary_wrapping_minus] = ACTIONS(1241), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1241), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1241), - [sym__block_ampersand] = ACTIONS(1197), - [sym_binary_ampersand] = ACTIONS(1241), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1241), - [sym__binary_double_slash] = ACTIONS(1241), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1241), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1199), - }, - [333] = { - [sym__statements] = STATE(11383), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(333), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [344] = { + [sym__statements] = STATE(11813), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(344), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -97740,12 +99938,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(2272), + [anon_sym_end] = ACTIONS(2296), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2298), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -97777,7 +99975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -97808,109 +100006,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [334] = { - [sym__statements] = STATE(12284), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8919), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(334), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym_fun_param_list] = STATE(11077), - [sym_fun_param] = STATE(10626), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(4353), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [345] = { + [sym__statements] = STATE(12288), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(345), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(2209), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -97925,10 +100120,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(2300), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2302), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -97960,6 +100157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -97990,109 +100188,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [335] = { - [sym__statements] = STATE(12284), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8919), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(335), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym_fun_param_list] = STATE(11097), - [sym_fun_param] = STATE(10626), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(4353), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [346] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5746), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(346), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5752), + [sym_double_splat] = STATE(5752), + [sym_named_expr] = STATE(5752), + [sym_argument_list_no_parens] = STATE(3224), + [sym_argument_list_no_parens_with_block] = STATE(4490), + [sym_argument_list_with_parens] = STATE(3224), + [sym_argument_list_with_parens_and_block] = STATE(4490), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4350), + [sym_brace_block] = STATE(4351), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1235), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ_GT] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1233), + [anon_sym_EQ_TILDE] = ACTIONS(1233), + [anon_sym_AMP_STAR] = ACTIONS(1235), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(1233), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1233), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_COLON2] = ACTIONS(1235), + [anon_sym_do] = ACTIONS(521), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(535), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1233), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(1233), + [sym_binary_minus] = ACTIONS(1233), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(1233), + [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(1233), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(1233), + [sym__block_ampersand] = ACTIONS(1219), + [sym_binary_ampersand] = ACTIONS(1233), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1233), + [sym__binary_double_slash] = ACTIONS(1233), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1233), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1221), + }, + [347] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2649), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(347), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(2304), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2304), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(2304), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_elsif] = ACTIONS(2306), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_when] = ACTIONS(2306), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_in] = ACTIONS(2306), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_break] = ACTIONS(2304), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2304), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__modifier_if_keyword] = ACTIONS(2304), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2308), + }, + [348] = { + [sym__statements] = STATE(10980), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(348), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(2209), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98107,10 +100666,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(2310), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2312), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -98142,6 +100703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -98172,106 +100734,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [336] = { - [sym__statements] = STATE(12299), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(336), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [349] = { + [sym__statements] = STATE(11818), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(349), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(2314), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98286,16 +100848,17 @@ 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(2280), + [anon_sym_end] = ACTIONS(2316), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2282), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(2318), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2320), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -98323,7 +100886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -98354,106 +100916,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [337] = { - [sym__statements] = STATE(11618), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(337), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [350] = { + [sym__statements] = STATE(11907), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(350), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98468,12 +101030,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(2284), + [anon_sym_end] = ACTIONS(2322), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2324), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -98505,7 +101067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -98536,106 +101098,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [338] = { - [sym__statements] = STATE(11347), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(338), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [351] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5828), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(351), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5829), + [sym_double_splat] = STATE(5829), + [sym_named_expr] = STATE(5829), + [sym_argument_list_no_parens] = STATE(5502), + [sym_argument_list_no_parens_with_block] = STATE(6782), + [sym_argument_list_with_parens] = STATE(5503), + [sym_argument_list_with_parens_and_block] = STATE(6783), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_do_end_block] = STATE(6784), + [sym_brace_block] = STATE(6789), + [sym_block_argument] = STATE(6740), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1003), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_LPAREN2] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1245), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1123), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1125), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1245), + [sym__end_of_with_expression] = ACTIONS(1245), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1245), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(1197), + [sym_binary_ampersand] = ACTIONS(1245), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1245), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1199), + }, + [352] = { + [sym__statements] = STATE(11015), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(352), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98650,12 +101394,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(2288), + [anon_sym_end] = ACTIONS(2326), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2328), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -98687,7 +101431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -98718,109 +101462,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [339] = { - [sym__statements] = STATE(12284), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8919), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(339), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym_fun_param_list] = STATE(11159), - [sym_fun_param] = STATE(10626), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(4353), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [353] = { + [sym__statements] = STATE(12033), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(353), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(2209), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98835,10 +101576,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(2330), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2332), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -98870,6 +101613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -98900,106 +101644,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [340] = { - [sym__statements] = STATE(10390), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(340), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [354] = { + [sym__statements] = STATE(11908), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(354), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -99014,11 +101758,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(2239), + [anon_sym_end] = ACTIONS(2334), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2336), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -99050,15 +101795,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_else] = ACTIONS(2239), [anon_sym_require] = ACTIONS(107), - [anon_sym_when] = ACTIONS(2239), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -99082,470 +101826,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [341] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5727), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(341), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5456), - [sym_double_splat] = STATE(5456), - [sym_named_expr] = STATE(5456), - [sym_argument_list_no_parens] = STATE(5406), - [sym_argument_list_no_parens_with_block] = STATE(6885), - [sym_argument_list_with_parens] = STATE(5428), - [sym_argument_list_with_parens_and_block] = STATE(6893), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6894), - [sym_brace_block] = STATE(6897), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym__end_of_with_expression] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(1197), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1199), - }, - [342] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5547), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(342), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5634), - [sym_double_splat] = STATE(5634), - [sym_named_expr] = STATE(5634), - [sym_argument_list_no_parens] = STATE(3133), - [sym_argument_list_no_parens_with_block] = STATE(4357), - [sym_argument_list_with_parens] = STATE(3135), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4477), - [sym_brace_block] = STATE(4487), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_COLON2] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(1221), - [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1223), - }, - [343] = { - [sym__statements] = STATE(11207), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(343), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [355] = { + [sym__statements] = STATE(10981), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(355), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -99560,12 +101940,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(2294), + [anon_sym_end] = ACTIONS(2338), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2340), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -99597,7 +101977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -99628,106 +102008,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [344] = { - [sym__statements] = STATE(11696), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(344), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [356] = { + [sym__statements] = STATE(11019), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(356), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -99742,12 +102122,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(2298), + [anon_sym_end] = ACTIONS(2342), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2344), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -99779,7 +102159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -99810,467 +102190,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [345] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5547), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(345), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5634), - [sym_double_splat] = STATE(5634), - [sym_named_expr] = STATE(5634), - [sym_argument_list_no_parens] = STATE(3138), - [sym_argument_list_no_parens_with_block] = STATE(4530), - [sym_argument_list_with_parens] = STATE(3139), - [sym_argument_list_with_parens_and_block] = STATE(4325), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4330), - [sym_brace_block] = STATE(4354), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_EQ_EQ] = ACTIONS(1247), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1247), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ_GT] = ACTIONS(1245), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1245), - [anon_sym_EQ_TILDE] = ACTIONS(1245), - [anon_sym_AMP_STAR] = ACTIONS(1247), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1245), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_COLON2] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(521), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(535), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1245), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1245), - [sym_binary_minus] = ACTIONS(1245), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1245), - [sym_binary_wrapping_minus] = ACTIONS(1245), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1245), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1245), - [sym__block_ampersand] = ACTIONS(1221), - [sym_binary_ampersand] = ACTIONS(1245), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1245), - [sym__binary_double_slash] = ACTIONS(1245), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1245), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1223), - }, - [346] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2701), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(346), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(2302), + [357] = { + [sym__statements] = STATE(12217), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(357), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(2346), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(2302), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_when] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(2308), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(2302), + [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(2348), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_EQ] = ACTIONS(2350), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2352), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2302), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(2302), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2314), }, - [347] = { - [sym__statements] = STATE(10049), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(347), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [358] = { + [sym__statements] = STATE(10095), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(358), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -100288,7 +102486,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(2316), + [anon_sym_end] = ACTIONS(2354), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -100330,9 +102528,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_else] = ACTIONS(2316), + [anon_sym_else] = ACTIONS(2354), [anon_sym_require] = ACTIONS(107), - [anon_sym_when] = ACTIONS(2316), + [anon_sym_when] = ACTIONS(2354), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -100356,106 +102554,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [348] = { - [sym__statements] = STATE(11841), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(348), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [359] = { + [sym__statements] = STATE(11937), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(359), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -100470,12 +102668,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(2318), + [anon_sym_end] = ACTIONS(2356), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2358), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -100507,7 +102705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -100538,470 +102736,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [349] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5727), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(349), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5456), - [sym_double_splat] = STATE(5456), - [sym_named_expr] = STATE(5456), - [sym_argument_list_no_parens] = STATE(5386), - [sym_argument_list_no_parens_with_block] = STATE(6851), - [sym_argument_list_with_parens] = STATE(5391), - [sym_argument_list_with_parens_and_block] = STATE(6871), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6873), - [sym_brace_block] = STATE(6881), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_GT_GT] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1249), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ_GT] = ACTIONS(1249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1249), - [anon_sym_EQ_TILDE] = ACTIONS(1249), - [anon_sym_AMP_STAR] = ACTIONS(1251), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1249), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1249), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1249), - [sym__end_of_with_expression] = ACTIONS(1249), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1249), - [sym_binary_minus] = ACTIONS(1249), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1249), - [sym_binary_wrapping_minus] = ACTIONS(1249), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1249), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1249), - [sym__block_ampersand] = ACTIONS(1197), - [sym_binary_ampersand] = ACTIONS(1249), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1249), - [sym__binary_double_slash] = ACTIONS(1249), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1249), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1199), - }, - [350] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2531), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(350), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(2322), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(2322), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_when] = ACTIONS(2324), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(2324), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(2322), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2322), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(2322), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2326), - }, - [351] = { - [sym__statements] = STATE(10919), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(351), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [360] = { + [sym__statements] = STATE(10209), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(360), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -101016,12 +102850,11 @@ 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(2328), + [anon_sym_end] = ACTIONS(2199), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2330), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -101053,14 +102886,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), + [anon_sym_else] = ACTIONS(2199), [anon_sym_require] = ACTIONS(107), + [anon_sym_when] = ACTIONS(2199), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -101084,106 +102918,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [352] = { - [sym__statements] = STATE(11740), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(352), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [361] = { + [sym__statements] = STATE(10210), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(361), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -101198,12 +103032,11 @@ 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(2332), + [anon_sym_end] = ACTIONS(2199), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2334), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -101235,14 +103068,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), + [anon_sym_else] = ACTIONS(2199), [anon_sym_require] = ACTIONS(107), + [anon_sym_when] = ACTIONS(2199), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -101266,84 +103100,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [353] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5547), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(353), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5634), - [sym_double_splat] = STATE(5634), - [sym_named_expr] = STATE(5634), - [sym_argument_list_no_parens] = STATE(3197), - [sym_argument_list_no_parens_with_block] = STATE(4523), - [sym_argument_list_with_parens] = STATE(3197), - [sym_argument_list_with_parens_and_block] = STATE(4523), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(4526), - [sym_brace_block] = STATE(4527), - [sym_block_argument] = STATE(4528), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [362] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5746), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(362), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5752), + [sym_double_splat] = STATE(5752), + [sym_named_expr] = STATE(5752), + [sym_argument_list_no_parens] = STATE(3258), + [sym_argument_list_no_parens_with_block] = STATE(4600), + [sym_argument_list_with_parens] = STATE(3268), + [sym_argument_list_with_parens_and_block] = STATE(4444), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(4483), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4356), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -101358,28 +103192,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ_GT] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), [anon_sym_BANG] = ACTIONS(1135), [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), + [anon_sym_BANG_TILDE] = ACTIONS(1245), + [anon_sym_EQ_TILDE] = ACTIONS(1245), + [anon_sym_AMP_STAR] = ACTIONS(1247), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1245), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), @@ -101399,12 +103233,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1245), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_COLON2] = ACTIONS(1235), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_COLON2] = ACTIONS(1247), [anon_sym_do] = ACTIONS(521), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), @@ -101416,28 +103250,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_brace_block] = ACTIONS(535), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1233), + [sym__start_of_index_operator] = ACTIONS(1245), [sym_unary_plus] = ACTIONS(1157), [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), + [sym_binary_plus] = ACTIONS(1245), + [sym_binary_minus] = ACTIONS(1245), [sym_unary_wrapping_plus] = ACTIONS(1159), [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), + [sym_binary_wrapping_plus] = ACTIONS(1245), + [sym_binary_wrapping_minus] = ACTIONS(1245), [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1233), + [sym__binary_star] = ACTIONS(1245), [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1221), - [sym_binary_ampersand] = ACTIONS(1233), + [sym__binary_double_star] = ACTIONS(1245), + [sym__block_ampersand] = ACTIONS(1219), + [sym_binary_ampersand] = ACTIONS(1245), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), + [sym__binary_slash] = ACTIONS(1245), + [sym__binary_double_slash] = ACTIONS(1245), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1233), + [sym__modulo_operator] = ACTIONS(1245), [sym__string_literal_start] = ACTIONS(559), [sym__string_percent_literal_start] = ACTIONS(561), [sym__command_percent_literal_start] = ACTIONS(563), @@ -101446,108 +103280,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1223), + [sym__start_of_parenless_args] = ACTIONS(1221), }, - [354] = { - [sym__statements] = STATE(10392), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(354), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [363] = { + [sym__statements] = STATE(11000), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9046), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(363), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym_fun_param_list] = STATE(11124), + [sym_fun_param] = STATE(10658), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(4432), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(2207), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2360), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -101562,7 +103399,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(2239), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -101604,9 +103440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_else] = ACTIONS(2239), [anon_sym_require] = ACTIONS(107), - [anon_sym_when] = ACTIONS(2239), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -101630,106 +103464,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [355] = { - [sym__statements] = STATE(11288), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(355), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [364] = { + [sym__statements] = STATE(12040), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(364), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -101744,12 +103578,11 @@ 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(2336), + [anon_sym_end] = ACTIONS(2362), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2338), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -101781,7 +103614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -101812,106 +103645,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [356] = { - [sym__statements] = STATE(11292), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(356), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [365] = { + [sym__statements] = STATE(11812), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(365), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -101926,12 +103759,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(2340), + [anon_sym_end] = ACTIONS(2258), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2260), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -101963,7 +103796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -101994,106 +103826,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [357] = { - [sym__statements] = STATE(10906), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(357), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [366] = { + [sym__statements] = STATE(12264), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(366), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -102108,12 +103940,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(2344), + [anon_sym_end] = ACTIONS(2286), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2346), + [anon_sym_LT] = ACTIONS(2288), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -102145,7 +103977,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -102176,109 +104007,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [358] = { - [sym__statements] = STATE(12284), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8919), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(358), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym_fun_param_list] = STATE(12111), - [sym_fun_param] = STATE(10626), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(4353), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [367] = { + [sym__statements] = STATE(12156), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(367), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(2209), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2348), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -102286,6 +104114,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(2366), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -102302,6 +104131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(2368), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -102358,106 +104188,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [359] = { - [sym__statements] = STATE(12060), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(359), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [368] = { + [sym__statements] = STATE(11917), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(368), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -102472,12 +104302,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(2350), + [anon_sym_end] = ACTIONS(2262), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2352), + [anon_sym_LT] = ACTIONS(2264), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -102509,7 +104339,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -102540,106 +104369,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [360] = { - [sym__statements] = STATE(12069), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(360), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [369] = { + [sym__statements] = STATE(12192), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(369), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -102654,12 +104483,11 @@ 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(2354), + [anon_sym_end] = ACTIONS(2370), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2356), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -102691,7 +104519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -102722,103 +104550,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [361] = { - [sym__statements] = STATE(10391), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(361), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [370] = { + [sym__statements] = STATE(12204), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(370), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -102836,11 +104664,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(2239), + [anon_sym_end] = ACTIONS(2231), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2233), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -102878,9 +104707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_else] = ACTIONS(2239), [anon_sym_require] = ACTIONS(107), - [anon_sym_when] = ACTIONS(2239), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), @@ -102904,288 +104731,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [362] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5727), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(362), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5456), - [sym_double_splat] = STATE(5456), - [sym_named_expr] = STATE(5456), - [sym_argument_list_no_parens] = STATE(5169), - [sym_argument_list_no_parens_with_block] = STATE(6865), - [sym_argument_list_with_parens] = STATE(5169), - [sym_argument_list_with_parens_and_block] = STATE(6865), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_do_end_block] = STATE(6906), - [sym_brace_block] = STATE(6660), - [sym_block_argument] = STATE(6679), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(1003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1235), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_GT_GT] = ACTIONS(1233), - [anon_sym_LT_LT] = ACTIONS(1233), - [anon_sym_EQ_EQ] = ACTIONS(1235), - [anon_sym_BANG_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_EQ] = ACTIONS(1233), - [anon_sym_LT_EQ_GT] = ACTIONS(1233), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1233), - [anon_sym_EQ_TILDE] = ACTIONS(1233), - [anon_sym_AMP_STAR] = ACTIONS(1235), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1233), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1055), - [anon_sym_QMARK] = ACTIONS(1233), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1233), - [anon_sym_PIPE_PIPE] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1233), - [sym__end_of_with_expression] = ACTIONS(1233), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1233), - [sym_binary_minus] = ACTIONS(1233), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1233), - [sym_binary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1233), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1233), - [sym__block_ampersand] = ACTIONS(1197), - [sym_binary_ampersand] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1233), - [sym__binary_double_slash] = ACTIONS(1233), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1233), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1199), - }, - [363] = { - [sym__statements] = STATE(11711), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(363), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [371] = { + [sym__statements] = STATE(12208), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(371), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -103200,12 +104845,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(2358), + [anon_sym_end] = ACTIONS(2235), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2237), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -103237,7 +104882,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -103268,106 +104912,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [364] = { - [sym__statements] = STATE(11850), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(364), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [372] = { + [sym__statements] = STATE(12288), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(372), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -103382,11 +105026,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(2362), + [anon_sym_end] = ACTIONS(2300), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2302), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -103418,7 +105063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -103449,103 +105093,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [365] = { - [sym__statements] = STATE(10855), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(365), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [373] = { + [sym__statements] = STATE(10980), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(373), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -103563,11 +105207,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(2366), + [anon_sym_end] = ACTIONS(2310), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2312), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -103608,7 +105253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2366), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -103630,103 +105274,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [366] = { - [sym__statements] = STATE(10856), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(366), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [374] = { + [sym__statements] = STATE(10981), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(374), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -103744,11 +105388,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(2366), + [anon_sym_end] = ACTIONS(2338), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2340), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -103789,7 +105434,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2366), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -103811,106 +105455,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [367] = { - [sym__statements] = STATE(10859), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(367), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [375] = { + [sym__statements] = STATE(11002), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(375), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -103925,7 +105569,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(2366), + [anon_sym_end] = ACTIONS(2372), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -103961,6 +105605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -103970,7 +105615,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2366), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -103992,103 +105636,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [368] = { - [sym__statements] = STATE(10864), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(368), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [376] = { + [sym__statements] = STATE(11015), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(376), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -104106,11 +105750,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(2366), + [anon_sym_end] = ACTIONS(2326), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2328), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -104151,7 +105796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2366), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -104173,106 +105817,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [369] = { - [sym__statements] = STATE(12093), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(369), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [377] = { + [sym__statements] = STATE(11013), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(377), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -104287,7 +105931,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(2368), + [anon_sym_end] = ACTIONS(2374), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -104296,7 +105940,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2370), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -104324,6 +105967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -104354,103 +105998,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [370] = { - [sym__statements] = STATE(11022), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(370), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [378] = { + [sym__statements] = STATE(11019), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(378), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -104468,12 +106112,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(2199), + [anon_sym_end] = ACTIONS(2342), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2344), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -104535,106 +106179,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [371] = { - [sym__statements] = STATE(12109), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(371), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [379] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2755), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(379), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2376), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(2376), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_elsif] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_when] = ACTIONS(2378), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_in] = ACTIONS(2378), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_break] = ACTIONS(2376), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2376), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__modifier_if_keyword] = ACTIONS(2376), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [380] = { + [sym__statements] = STATE(11112), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(380), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -104649,12 +106474,11 @@ 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(2264), + [anon_sym_end] = ACTIONS(2380), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2266), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -104686,6 +106510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -104716,106 +106541,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [372] = { - [sym__statements] = STATE(11711), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(372), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [381] = { + [sym__statements] = STATE(11117), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(381), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -104830,12 +106655,11 @@ 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(2358), + [anon_sym_end] = ACTIONS(2382), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2360), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -104867,6 +106691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -104897,106 +106722,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [373] = { - [sym__statements] = STATE(10906), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(373), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [382] = { + [sym__statements] = STATE(11384), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(382), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -105011,12 +106836,11 @@ 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(2344), + [anon_sym_end] = ACTIONS(2384), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2346), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -105048,6 +106872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -105078,106 +106903,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [374] = { - [sym__statements] = STATE(11937), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(374), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [383] = { + [sym__statements] = STATE(11130), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(383), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(2386), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -105192,7 +107017,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(2372), + [anon_sym_end] = ACTIONS(2388), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -105201,6 +107026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -105228,7 +107054,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -105259,103 +107084,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [375] = { - [sym__statements] = STATE(11137), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(375), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [384] = { + [sym__statements] = STATE(11159), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(384), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -105366,7 +107191,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(2374), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -105374,16 +107198,17 @@ 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(2223), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2225), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -105440,106 +107265,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [376] = { - [sym__statements] = STATE(11381), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(376), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [385] = { + [sym__statements] = STATE(11161), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(385), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -105554,11 +107379,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(2378), + [anon_sym_end] = ACTIONS(2227), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2229), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -105590,7 +107416,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -105621,103 +107446,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [377] = { - [sym__statements] = STATE(11827), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(377), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [386] = { + [sym__statements] = STATE(11142), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(386), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -105735,16 +107560,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(2260), + [anon_sym_end] = ACTIONS(2392), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2262), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2394), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -105802,106 +107627,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [378] = { - [sym__statements] = STATE(11841), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(378), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [387] = { + [sym__statements] = STATE(11229), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(387), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -105916,12 +107741,11 @@ 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(2318), + [anon_sym_end] = ACTIONS(2396), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2320), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -105953,6 +107777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -105983,106 +107808,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [379] = { - [sym__statements] = STATE(11696), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(379), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [388] = { + [sym__statements] = STATE(11230), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(388), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -106097,12 +107922,11 @@ 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(2298), + [anon_sym_end] = ACTIONS(2398), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2300), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -106134,6 +107958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -106164,103 +107989,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [380] = { - [sym__statements] = STATE(12060), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(380), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [389] = { + [sym__statements] = STATE(11234), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(389), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -106278,16 +108103,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(2350), + [anon_sym_end] = ACTIONS(2400), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2352), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2402), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -106345,106 +108170,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [381] = { - [sym__statements] = STATE(11740), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(381), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [390] = { + [sym__statements] = STATE(11256), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(390), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -106459,12 +108284,11 @@ 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(2332), + [anon_sym_end] = ACTIONS(2404), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2334), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -106496,6 +108320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -106526,106 +108351,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [382] = { - [sym__statements] = STATE(12278), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(382), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [391] = { + [sym__statements] = STATE(11257), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(391), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -106640,7 +108465,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(2380), + [anon_sym_end] = ACTIONS(2406), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -106676,7 +108501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -106707,106 +108532,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [383] = { - [sym__statements] = STATE(12286), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(383), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [392] = { + [sym__statements] = STATE(11296), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(392), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -106821,12 +108646,11 @@ 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(2227), + [anon_sym_end] = ACTIONS(2408), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2229), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -106858,6 +108682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -106888,106 +108713,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [384] = { - [sym__statements] = STATE(12069), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(384), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [393] = { + [sym__statements] = STATE(11298), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(393), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -107002,12 +108827,11 @@ 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(2354), + [anon_sym_end] = ACTIONS(2410), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2356), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -107039,6 +108863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -107069,103 +108894,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [385] = { - [sym__statements] = STATE(12294), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(385), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [394] = { + [sym__statements] = STATE(11304), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(394), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -107183,16 +109008,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(2235), + [anon_sym_end] = ACTIONS(2412), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2237), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2414), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -107250,287 +109075,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [386] = { - [sym__statements] = STATE(12017), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(386), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [395] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2692), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(395), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [ts_builtin_sym_end] = ACTIONS(2416), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2416), [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(2382), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(2416), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_elsif] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_when] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [anon_sym_in] = ACTIONS(2418), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_break] = ACTIONS(2416), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_brace_block] = ACTIONS(2416), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__modifier_if_keyword] = ACTIONS(2416), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [387] = { - [sym__statements] = STATE(12021), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(387), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [396] = { + [sym__statements] = STATE(11513), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(396), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -107545,11 +109370,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(2384), + [anon_sym_end] = ACTIONS(2213), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2215), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -107581,7 +109407,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -107612,106 +109437,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [388] = { - [sym__statements] = STATE(12055), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(388), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [397] = { + [sym__statements] = STATE(11786), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(397), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -107719,6 +109544,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(2420), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -107726,7 +109552,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(2388), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -107735,8 +109560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2390), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(2422), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -107793,106 +109618,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [389] = { - [sym__statements] = STATE(12289), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(389), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [398] = { + [sym__statements] = STATE(11797), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(398), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -107907,12 +109732,11 @@ 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(2223), + [anon_sym_end] = ACTIONS(2424), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2225), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -107944,6 +109768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -107974,103 +109799,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [390] = { - [sym__statements] = STATE(12299), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(390), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [399] = { + [sym__statements] = STATE(11811), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(399), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -108088,12 +109913,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(2280), + [anon_sym_end] = ACTIONS(2219), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2221), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -108155,106 +109980,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [391] = { - [sym__statements] = STATE(11322), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(391), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [400] = { + [sym__statements] = STATE(12036), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(400), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -108269,7 +110094,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(2392), + [anon_sym_end] = ACTIONS(2426), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -108336,106 +110161,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [392] = { - [sym__statements] = STATE(11323), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(392), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [401] = { + [sym__statements] = STATE(11813), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(401), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -108450,11 +110275,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(2394), + [anon_sym_end] = ACTIONS(2296), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2298), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -108486,7 +110312,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -108517,103 +110342,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [393] = { - [sym__statements] = STATE(11332), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(393), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [402] = { + [sym__statements] = STATE(11544), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(402), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -108631,16 +110456,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(2396), + [anon_sym_end] = ACTIONS(2282), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2284), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2398), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -108698,468 +110523,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [394] = { - [sym__statements] = STATE(11413), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(394), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), - [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(2400), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [395] = { - [sym__statements] = STATE(11458), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(395), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), - [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(2402), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [396] = { - [sym__statements] = STATE(11774), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(396), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [403] = { + [sym__statements] = STATE(12205), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(403), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -109167,6 +110630,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(2428), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -109174,7 +110638,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(2404), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -109184,6 +110647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(2430), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -109210,7 +110674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -109241,106 +110704,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [397] = { - [sym__statements] = STATE(11781), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(397), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [404] = { + [sym__statements] = STATE(11907), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(404), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -109355,11 +110818,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(2406), + [anon_sym_end] = ACTIONS(2322), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2324), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -109391,7 +110855,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -109422,103 +110885,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [398] = { - [sym__statements] = STATE(11842), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(398), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [405] = { + [sym__statements] = STATE(11908), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(405), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -109536,16 +110999,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(2408), + [anon_sym_end] = ACTIONS(2334), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2336), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -109603,106 +111066,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [399] = { - [sym__statements] = STATE(12296), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(399), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [406] = { + [sym__statements] = STATE(11932), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(406), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -109710,7 +111173,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(2412), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -109718,6 +111180,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(2432), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -109727,7 +111190,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2414), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -109754,6 +111216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -109784,106 +111247,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [400] = { - [sym__statements] = STATE(10895), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(400), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [407] = { + [sym__statements] = STATE(11937), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(407), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -109898,11 +111361,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(2416), + [anon_sym_end] = ACTIONS(2356), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2358), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -109934,7 +111398,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -109965,106 +111428,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [401] = { - [sym__statements] = STATE(10919), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(401), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [408] = { + [sym__statements] = STATE(11554), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(408), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2434), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -110079,16 +111542,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(2328), + [anon_sym_end] = ACTIONS(2436), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2330), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2438), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -110146,103 +111609,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [402] = { - [sym__statements] = STATE(10955), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(402), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [409] = { + [sym__statements] = STATE(11938), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(409), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -110260,12 +111723,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(2231), + [anon_sym_end] = ACTIONS(2201), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2203), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -110327,106 +111790,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [403] = { - [sym__statements] = STATE(11288), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(403), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [410] = { + [sym__statements] = STATE(12006), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(410), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -110441,12 +111904,11 @@ 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(2336), + [anon_sym_end] = ACTIONS(2440), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2338), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -110478,6 +111940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -110508,106 +111971,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [404] = { - [sym__statements] = STATE(11292), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(404), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [411] = { + [sym__statements] = STATE(12008), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(411), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -110622,12 +112085,11 @@ 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(2340), + [anon_sym_end] = ACTIONS(2442), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2342), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -110659,6 +112121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -110689,106 +112152,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [405] = { - [sym__statements] = STATE(11339), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(405), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [412] = { + [sym__statements] = STATE(12014), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(412), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(2444), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -110803,7 +112266,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(2418), + [anon_sym_end] = ACTIONS(2446), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -110812,6 +112275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2448), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -110839,7 +112303,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -110870,103 +112333,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [406] = { - [sym__statements] = STATE(11347), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(406), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [413] = { + [sym__statements] = STATE(10881), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(413), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -110984,12 +112447,11 @@ 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(2288), + [anon_sym_end] = ACTIONS(2450), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2290), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -111030,6 +112492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(2450), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -111051,103 +112514,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [407] = { - [sym__statements] = STATE(11348), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(407), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [414] = { + [sym__statements] = STATE(12032), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(414), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -111165,12 +112628,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(2205), + [anon_sym_end] = ACTIONS(2292), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2294), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -111232,106 +112695,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [408] = { - [sym__statements] = STATE(11852), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(408), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [415] = { + [sym__statements] = STATE(12033), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(415), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -111346,11 +112809,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(2420), + [anon_sym_end] = ACTIONS(2330), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2332), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -111382,7 +112846,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -111413,106 +112876,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [409] = { - [sym__statements] = STATE(11577), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(409), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [416] = { + [sym__statements] = STATE(12105), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(416), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -111527,7 +112990,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(2422), + [anon_sym_end] = ACTIONS(2452), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -111594,106 +113057,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [410] = { - [sym__statements] = STATE(11654), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(410), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [417] = { + [sym__statements] = STATE(12106), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(417), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -111708,7 +113171,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(2424), + [anon_sym_end] = ACTIONS(2454), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -111775,106 +113238,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [411] = { - [sym__statements] = STATE(11593), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(411), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [418] = { + [sym__statements] = STATE(12108), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(418), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -111889,7 +113352,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(2428), + [anon_sym_end] = ACTIONS(2456), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -111898,7 +113361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2430), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2458), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -111956,106 +113419,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [412] = { - [sym__statements] = STATE(11617), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(412), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [419] = { + [sym__statements] = STATE(12122), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(419), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -112070,12 +113533,11 @@ 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(2268), + [anon_sym_end] = ACTIONS(2460), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2270), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -112107,6 +113569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -112137,106 +113600,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [413] = { - [sym__statements] = STATE(11618), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(413), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [420] = { + [sym__statements] = STATE(12127), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(420), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -112251,12 +113714,11 @@ 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(2284), + [anon_sym_end] = ACTIONS(2462), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2286), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), @@ -112288,6 +113750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -112318,106 +113781,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [414] = { - [sym__statements] = STATE(11787), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(414), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [421] = { + [sym__statements] = STATE(12186), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(421), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -112432,7 +113895,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(2432), + [anon_sym_end] = ACTIONS(2464), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -112499,106 +113962,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [415] = { - [sym__statements] = STATE(11801), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(415), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [422] = { + [sym__statements] = STATE(12187), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(422), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -112613,7 +114076,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(2434), + [anon_sym_end] = ACTIONS(2466), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -112680,103 +114143,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [416] = { - [sym__statements] = STATE(11821), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(416), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [423] = { + [sym__statements] = STATE(12213), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(423), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -112794,7 +114257,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_end] = ACTIONS(2468), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -112803,7 +114266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2438), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2470), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -112861,106 +114324,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [417] = { - [sym__statements] = STATE(11858), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(417), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [424] = { + [sym__statements] = STATE(12269), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(424), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -112968,6 +114431,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(2472), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -112975,7 +114439,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(2440), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -112985,6 +114448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -113011,7 +114475,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -113042,106 +114505,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [418] = { - [sym__statements] = STATE(11860), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(418), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [425] = { + [sym__statements] = STATE(11480), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(425), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -113156,7 +114619,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(2442), + [anon_sym_end] = ACTIONS(2476), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -113223,106 +114686,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [419] = { - [sym__statements] = STATE(11889), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(419), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [426] = { + [sym__statements] = STATE(11489), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(426), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -113337,7 +114800,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(2444), + [anon_sym_end] = ACTIONS(2478), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -113404,106 +114867,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [420] = { - [sym__statements] = STATE(11892), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(420), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [427] = { + [sym__statements] = STATE(11168), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(427), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -113511,6 +114974,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(2480), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -113518,7 +114982,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(2446), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -113528,6 +114991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(2482), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -113554,7 +115018,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -113585,103 +115048,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [421] = { - [sym__statements] = STATE(11904), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(421), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [428] = { + [sym__statements] = STATE(11865), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(428), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -113699,16 +115162,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(2448), + [anon_sym_end] = ACTIONS(2243), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2245), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2450), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -113766,103 +115229,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [422] = { - [sym__statements] = STATE(11428), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(422), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [429] = { + [sym__statements] = STATE(10857), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(429), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -113873,7 +115336,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(2452), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -113881,6 +115343,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(2484), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -113890,7 +115353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2454), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -113926,6 +115388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(2484), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -113947,106 +115410,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [423] = { - [sym__statements] = STATE(11658), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(423), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [430] = { + [sym__statements] = STATE(10859), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(430), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -114061,7 +115524,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(2456), + [anon_sym_end] = ACTIONS(2484), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -114097,7 +115560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -114107,6 +115569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(2484), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -114128,106 +115591,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [424] = { - [sym__statements] = STATE(12049), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(424), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [431] = { + [sym__statements] = STATE(10860), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(431), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -114242,7 +115705,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(2460), + [anon_sym_end] = ACTIONS(2484), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -114251,7 +115714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2462), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -114288,6 +115750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(2484), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -114309,284 +115772,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [425] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2657), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(425), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(2464), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(2464), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_when] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(2466), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(2464), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2464), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(2464), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [426] = { - [sym__statements] = STATE(11267), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(426), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [432] = { + [sym__statements] = STATE(11750), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(432), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -114597,7 +115879,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(2468), + [anon_sym_RBRACE] = ACTIONS(2486), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -114614,7 +115896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2488), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -114671,284 +115953,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [427] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2582), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(427), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [ts_builtin_sym_end] = ACTIONS(2472), - [sym_identifier] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(2472), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(2472), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(201), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_elsif] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [anon_sym_in] = ACTIONS(2474), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_break] = ACTIONS(2472), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2472), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__modifier_if_keyword] = ACTIONS(2472), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [428] = { - [sym__statements] = STATE(12288), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(428), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [433] = { + [sym__statements] = STATE(10867), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(433), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -114959,7 +116060,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(2476), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -114967,6 +116067,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(2484), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -114976,7 +116077,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2478), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -115012,6 +116112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(2484), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -115033,103 +116134,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [429] = { - [sym__statements] = STATE(11179), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(429), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [434] = { + [sym__statements] = STATE(10949), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(434), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -115140,7 +116241,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(2480), + [anon_sym_RBRACE] = ACTIONS(2490), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -115157,7 +116258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2492), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -115214,103 +116315,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [430] = { - [sym__statements] = STATE(11207), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(430), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [435] = { + [sym__statements] = STATE(11753), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(435), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -115328,16 +116429,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(2294), + [anon_sym_end] = ACTIONS(2494), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2296), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), + [aux_sym_top_level_fun_def_token1] = ACTIONS(2496), [anon_sym_STAR] = ACTIONS(53), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), @@ -115395,103 +116496,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [431] = { - [sym__statements] = STATE(11383), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(431), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [436] = { + [sym__statements] = STATE(12067), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(436), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -115502,6 +116603,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(2498), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -115509,17 +116611,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(2272), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(2274), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(2500), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -115576,103 +116677,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [432] = { - [sym__statements] = STATE(11448), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(432), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [437] = { + [sym__statements] = STATE(11328), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(437), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -115683,7 +116784,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(2484), + [anon_sym_RBRACE] = ACTIONS(2502), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -115700,7 +116801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2504), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -115757,284 +116858,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [433] = { - [sym__statements] = STATE(10794), - [sym__parenthesized_statement] = STATE(4749), - [sym__statement] = STATE(8634), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(5006), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(433), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_annotation_def] = STATE(8953), - [sym_annotation] = STATE(8953), - [sym_module_def] = STATE(8953), - [sym_class_def] = STATE(8953), - [sym_struct_def] = STATE(8953), - [sym_enum_def] = STATE(8953), - [sym_lib_def] = STATE(8953), - [sym_top_level_fun_def] = STATE(8953), - [sym__base_method_def] = STATE(154), - [sym_method_def] = STATE(8953), - [sym_abstract_method_def] = STATE(8953), - [sym_include] = STATE(8953), - [sym_extend] = STATE(8953), - [sym_return] = STATE(8953), - [sym_next] = STATE(8953), - [sym_break] = STATE(8953), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4439), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2274), - [sym_index_call] = STATE(2274), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_const_assign] = STATE(8953), - [sym_operator_assign] = STATE(4749), - [sym_lhs_splat] = STATE(10850), - [sym_multi_assign] = STATE(8953), - [sym_type_declaration] = STATE(4749), - [sym_alias] = STATE(8953), - [sym_begin_block] = STATE(4749), - [sym_modifier_rescue] = STATE(8953), - [sym_modifier_ensure] = STATE(8953), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_modifier_if] = STATE(8953), - [sym_modifier_unless] = STATE(8953), - [sym_require] = STATE(8953), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym__statements_repeat1] = STATE(552), - [aux_sym_multi_assign_repeat1] = STATE(1056), - [sym_identifier] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_annotation] = ACTIONS(2496), - [anon_sym_end] = ACTIONS(2498), - [anon_sym_AT_LBRACK] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_lib] = ACTIONS(2512), - [anon_sym_fun] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(2520), - [anon_sym_extend] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_next] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(2536), - [sym_class_var] = ACTIONS(2536), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2538), - [sym_protected] = ACTIONS(2540), - [anon_sym_alias] = ACTIONS(2542), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2544), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__regular_ensure_keyword] = ACTIONS(2554), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [434] = { - [sym__statements] = STATE(11705), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(434), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [438] = { + [sym__statements] = STATE(11890), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(438), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -116045,7 +116965,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(2556), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -116053,16 +116972,17 @@ 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(2239), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), [anon_sym_class] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(2241), [anon_sym_struct] = ACTIONS(45), [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2558), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -116119,103 +117039,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [435] = { - [sym__statements] = STATE(11626), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(435), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [439] = { + [sym__statements] = STATE(11663), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(439), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -116226,7 +117146,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(2560), + [anon_sym_RBRACE] = ACTIONS(2506), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -116243,7 +117163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2508), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -116300,106 +117220,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [436] = { - [sym__statements] = STATE(11952), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(436), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [440] = { + [sym__statements] = STATE(11737), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(440), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -116407,7 +117327,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(2564), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -116415,6 +117334,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(2510), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -116424,7 +117344,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2566), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -116451,6 +117370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -116481,106 +117401,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [437] = { - [sym__statements] = STATE(10952), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(437), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [441] = { + [sym__statements] = STATE(12285), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(441), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -116588,6 +117508,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(2512), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -116595,7 +117516,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(2568), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -116605,6 +117525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(2514), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -116631,7 +117552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -116662,103 +117582,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [438] = { - [sym__statements] = STATE(12302), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(438), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [442] = { + [sym__statements] = STATE(11110), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(442), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -116769,7 +117689,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(2570), + [anon_sym_RBRACE] = ACTIONS(2516), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -116786,7 +117706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2518), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -116843,103 +117763,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [439] = { - [sym__statements] = STATE(11379), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(439), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [443] = { + [sym__statements] = STATE(11146), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(443), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -116950,7 +117870,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(2574), + [anon_sym_RBRACE] = ACTIONS(2520), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -116967,7 +117887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2522), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -117024,106 +117944,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [440] = { - [sym__statements] = STATE(10956), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(440), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [444] = { + [sym__statements] = STATE(11416), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(444), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -117138,7 +118058,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(2578), + [anon_sym_end] = ACTIONS(2524), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -117205,103 +118125,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [441] = { - [sym__statements] = STATE(11213), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(441), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [445] = { + [sym__statements] = STATE(11897), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(445), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -117312,7 +118232,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(2580), + [anon_sym_RBRACE] = ACTIONS(2526), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -117329,7 +118249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2528), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -117386,103 +118306,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [442] = { - [sym__statements] = STATE(11142), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(442), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [446] = { + [sym__statements] = STATE(10962), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(446), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -117493,6 +118413,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(2530), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -117500,7 +118421,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(2584), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -117509,8 +118429,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(47), [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), - [aux_sym_top_level_fun_def_token1] = ACTIONS(2586), [anon_sym_STAR] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(2532), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -117567,103 +118487,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [443] = { - [sym__statements] = STATE(12001), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(443), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [447] = { + [sym__statements] = STATE(11094), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(447), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -117674,7 +118594,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(2588), + [anon_sym_RBRACE] = ACTIONS(2534), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -117691,7 +118611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2536), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -117748,106 +118668,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [444] = { - [sym__statements] = STATE(10908), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(444), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [448] = { + [sym__statements] = STATE(11456), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(448), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -117855,7 +118775,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(2592), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -117863,6 +118782,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(2538), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -117872,7 +118792,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(49), [anon_sym_fun] = ACTIONS(51), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2594), [anon_sym_BANG] = ACTIONS(55), [anon_sym_TILDE] = ACTIONS(57), [anon_sym_def] = ACTIONS(59), @@ -117899,6 +118818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -117929,287 +118849,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [445] = { - [sym__statements] = STATE(11007), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(445), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [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(2596), - [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_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), + [449] = { + [sym__statements] = STATE(10883), + [sym__parenthesized_statement] = STATE(4608), + [sym__statement] = STATE(8766), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4882), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(449), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_annotation_def] = STATE(8828), + [sym_annotation] = STATE(8828), + [sym_module_def] = STATE(8828), + [sym_class_def] = STATE(8828), + [sym_struct_def] = STATE(8828), + [sym_enum_def] = STATE(8828), + [sym_lib_def] = STATE(8828), + [sym_top_level_fun_def] = STATE(8828), + [sym__base_method_def] = STATE(170), + [sym_method_def] = STATE(8828), + [sym_abstract_method_def] = STATE(8828), + [sym_include] = STATE(8828), + [sym_extend] = STATE(8828), + [sym_return] = STATE(8828), + [sym_next] = STATE(8828), + [sym_break] = STATE(8828), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4541), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7862), + [sym_index_operator] = STATE(2301), + [sym_index_call] = STATE(2301), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_const_assign] = STATE(8828), + [sym_operator_assign] = STATE(4608), + [sym_lhs_splat] = STATE(10912), + [sym_multi_assign] = STATE(8828), + [sym_type_declaration] = STATE(4608), + [sym_alias] = STATE(8828), + [sym_begin_block] = STATE(4608), + [sym_modifier_rescue] = STATE(8828), + [sym_modifier_ensure] = STATE(8828), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_modifier_if] = STATE(8828), + [sym_modifier_unless] = STATE(8828), + [sym_require] = STATE(8828), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym__statements_repeat1] = STATE(563), + [aux_sym_multi_assign_repeat1] = STATE(1055), + [sym_identifier] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_annotation] = ACTIONS(2548), + [anon_sym_end] = ACTIONS(2550), + [anon_sym_AT_LBRACK] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2554), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_class] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_lib] = ACTIONS(2564), + [anon_sym_fun] = ACTIONS(2566), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [anon_sym_include] = ACTIONS(2572), + [anon_sym_extend] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_next] = ACTIONS(2578), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(2588), + [sym_class_var] = ACTIONS(2588), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2590), + [sym_protected] = ACTIONS(2592), + [anon_sym_alias] = ACTIONS(2594), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_require] = ACTIONS(2596), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__regular_ensure_keyword] = ACTIONS(2606), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [446] = { - [sym__statements] = STATE(11295), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(446), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [450] = { + [sym__statements] = STATE(12194), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(450), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1515), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -118224,7 +119144,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(2600), + [anon_sym_end] = ACTIONS(2608), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -118260,7 +119180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), + [anon_sym_LPAREN2] = ACTIONS(2205), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -118291,106 +119211,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [447] = { - [sym__statements] = STATE(11297), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(447), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [451] = { + [sym__statements] = STATE(12074), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9030), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(451), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2610), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -118405,7 +119326,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(2602), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -118441,7 +119361,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -118472,106 +119391,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [448] = { - [sym__statements] = STATE(12110), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(448), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [452] = { + [sym__statements] = STATE(11608), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(452), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -118586,7 +119505,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(2604), + [anon_sym_end] = ACTIONS(2612), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -118622,7 +119541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2203), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -118653,103 +119571,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [449] = { - [sym__statements] = STATE(10742), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(449), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [453] = { + [sym__statements] = STATE(11932), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(453), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -118767,7 +119685,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(2606), + [anon_sym_end] = ACTIONS(2432), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -118812,7 +119730,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2606), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), @@ -118834,106 +119751,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [450] = { - [sym__statements] = STATE(11573), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(450), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [454] = { + [sym__statements] = STATE(11131), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(454), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -118948,7 +119865,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(2608), + [anon_sym_end] = ACTIONS(2614), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -118984,7 +119901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(93), [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2364), [sym_private] = ACTIONS(95), [sym_protected] = ACTIONS(97), [anon_sym_alias] = ACTIONS(99), @@ -119015,103 +119931,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [451] = { - [sym__statements] = STATE(11852), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(451), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [455] = { + [sym__statements] = STATE(11384), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(455), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -119129,7 +120045,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(2420), + [anon_sym_end] = ACTIONS(2384), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -119195,103 +120111,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [452] = { - [sym__statements] = STATE(11850), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(452), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [456] = { + [sym__statements] = STATE(12192), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(456), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -119309,7 +120225,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(2362), + [anon_sym_end] = ACTIONS(2370), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -119375,103 +120291,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [453] = { - [sym__statements] = STATE(12061), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(453), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [457] = { + [sym__statements] = STATE(11972), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(457), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -119489,7 +120405,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(2610), + [anon_sym_end] = ACTIONS(2616), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -119555,103 +120471,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [454] = { - [sym__statements] = STATE(11170), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(454), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [458] = { + [sym__statements] = STATE(11973), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(458), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -119662,7 +120578,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(2612), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -119670,6 +120585,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(2618), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -119735,103 +120651,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [455] = { - [sym__statements] = STATE(11322), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(455), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [459] = { + [sym__statements] = STATE(12006), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(459), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -119849,7 +120765,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(2392), + [anon_sym_end] = ACTIONS(2440), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -119915,107 +120831,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [456] = { - [sym__statements] = STATE(12284), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8919), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(456), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [460] = { + [sym__statements] = STATE(11216), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(460), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2614), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -120023,6 +120938,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(2620), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -120095,103 +121011,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [457] = { - [sym__statements] = STATE(11323), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(457), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [461] = { + [sym__statements] = STATE(12015), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(461), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -120209,7 +121125,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(2394), + [anon_sym_end] = ACTIONS(2622), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -120275,103 +121191,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [458] = { - [sym__statements] = STATE(11413), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(458), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [462] = { + [sym__statements] = STATE(11229), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(462), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -120389,7 +121305,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(2400), + [anon_sym_end] = ACTIONS(2396), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -120455,103 +121371,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [459] = { - [sym__statements] = STATE(12021), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(459), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [463] = { + [sym__statements] = STATE(12097), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(463), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -120562,6 +121478,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(2624), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -120569,7 +121486,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(2384), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -120635,103 +121551,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [460] = { - [sym__statements] = STATE(11625), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(460), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [464] = { + [sym__statements] = STATE(12194), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(464), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -120749,7 +121665,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(2616), + [anon_sym_end] = ACTIONS(2608), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -120815,103 +121731,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [461] = { - [sym__statements] = STATE(11659), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(461), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [465] = { + [sym__statements] = STATE(11230), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(465), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -120929,7 +121845,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(2618), + [anon_sym_end] = ACTIONS(2398), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -120995,103 +121911,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [462] = { - [sym__statements] = STATE(11774), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(462), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [466] = { + [sym__statements] = STATE(12105), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(466), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -121109,7 +122025,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(2404), + [anon_sym_end] = ACTIONS(2452), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -121175,103 +122091,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [463] = { - [sym__statements] = STATE(11781), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(463), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [467] = { + [sym__statements] = STATE(12106), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(467), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -121289,7 +122205,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(2406), + [anon_sym_end] = ACTIONS(2454), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -121355,103 +122271,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [464] = { - [sym__statements] = STATE(11830), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(464), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [468] = { + [sym__statements] = STATE(12352), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(468), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -121462,6 +122378,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(2626), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -121469,7 +122386,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(2620), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -121535,103 +122451,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [465] = { - [sym__statements] = STATE(11857), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(465), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [469] = { + [sym__statements] = STATE(11256), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(469), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -121649,7 +122565,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(2622), + [anon_sym_end] = ACTIONS(2404), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -121715,103 +122631,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [466] = { - [sym__statements] = STATE(11884), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(466), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [470] = { + [sym__statements] = STATE(12122), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(470), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -121829,7 +122745,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(2624), + [anon_sym_end] = ACTIONS(2460), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -121895,107 +122811,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [467] = { - [sym__statements] = STATE(11913), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(9125), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(467), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [471] = { + [sym__statements] = STATE(12127), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(471), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2626), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -122010,6 +122925,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(2462), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -122075,283 +122991,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [468] = { - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(9319), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(468), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [472] = { + [sym__statements] = STATE(12172), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(472), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(468), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_LPAREN] = ACTIONS(1663), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1666), - [sym_true] = ACTIONS(1666), - [sym_false] = ACTIONS(1666), - [aux_sym_integer_token2] = ACTIONS(1669), - [aux_sym_float_token2] = ACTIONS(1672), - [anon_sym_SQUOTE] = ACTIONS(1675), - [sym_operator_symbol] = ACTIONS(1678), - [sym_unquoted_symbol] = ACTIONS(1678), - [anon_sym_COLON_DQUOTE] = ACTIONS(1681), - [anon_sym_BQUOTE] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_DASH_GT] = ACTIONS(1690), - [anon_sym_annotation] = ACTIONS(1693), - [anon_sym_end] = ACTIONS(1696), - [anon_sym_AT_LBRACK] = ACTIONS(1698), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_lib] = ACTIONS(1716), - [anon_sym_fun] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_def] = ACTIONS(1731), - [anon_sym_include] = ACTIONS(1734), - [anon_sym_extend] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_next] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_with] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1758), - [anon_sym_instance_sizeof] = ACTIONS(1761), - [anon_sym_offsetof] = ACTIONS(1764), - [sym__constant_segment] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym___LINE__] = ACTIONS(1773), - [anon_sym___END_LINE__] = ACTIONS(1773), - [anon_sym___FILE__] = ACTIONS(1773), - [anon_sym___DIR__] = ACTIONS(1773), - [sym_special_variable] = ACTIONS(1776), - [sym_global_match_data_index] = ACTIONS(1678), - [sym_identifier_method_call] = ACTIONS(1779), - [sym_instance_var] = ACTIONS(1782), - [sym_class_var] = ACTIONS(1782), - [sym_self] = ACTIONS(1666), - [sym_private] = ACTIONS(1785), - [sym_protected] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1791), - [anon_sym_begin] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_until] = ACTIONS(1800), - [anon_sym_require] = ACTIONS(1803), - [anon_sym_case] = ACTIONS(1806), - [anon_sym_select] = ACTIONS(1809), - [aux_sym_asm_token1] = ACTIONS(1812), + [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(2628), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1815), - [sym__start_of_named_tuple] = ACTIONS(1818), - [sym_unary_plus] = ACTIONS(1821), - [sym_unary_minus] = ACTIONS(1821), - [sym_unary_wrapping_plus] = ACTIONS(1824), - [sym_unary_wrapping_minus] = ACTIONS(1824), - [sym__beginless_range_operator] = ACTIONS(1827), - [sym__regex_start] = ACTIONS(1830), - [sym__regular_if_keyword] = ACTIONS(1833), - [sym__regular_unless_keyword] = ACTIONS(1836), - [sym__regular_ensure_keyword] = ACTIONS(1655), - [sym__string_literal_start] = ACTIONS(1839), - [sym__string_percent_literal_start] = ACTIONS(1842), - [sym__command_percent_literal_start] = ACTIONS(1845), - [sym__string_array_percent_literal_start] = ACTIONS(1848), - [sym__symbol_array_percent_literal_start] = ACTIONS(1851), - [sym__regex_percent_literal_start] = ACTIONS(1854), - [sym_heredoc_start] = ACTIONS(1678), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [469] = { - [sym__statements] = STATE(10895), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(469), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [473] = { + [sym__statements] = STATE(11352), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(473), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -122369,7 +123285,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(2416), + [anon_sym_end] = ACTIONS(2630), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -122435,103 +123351,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [470] = { - [sym__statements] = STATE(12079), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(470), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [474] = { + [sym__statements] = STATE(12179), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(474), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -122549,7 +123465,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(2631), + [anon_sym_end] = ACTIONS(2632), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -122615,103 +123531,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [471] = { - [sym__statements] = STATE(10988), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(471), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [475] = { + [sym__statements] = STATE(11257), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(475), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -122729,7 +123645,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(2633), + [anon_sym_end] = ACTIONS(2406), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -122795,103 +123711,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [472] = { - [sym__statements] = STATE(10993), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(472), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [476] = { + [sym__statements] = STATE(12186), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(476), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -122909,7 +123825,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(2635), + [anon_sym_end] = ACTIONS(2464), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -122975,103 +123891,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [473] = { - [sym__statements] = STATE(11339), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(473), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [477] = { + [sym__statements] = STATE(11285), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(477), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -123089,7 +124005,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(2418), + [anon_sym_end] = ACTIONS(2634), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -123155,103 +124071,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [474] = { - [sym__statements] = STATE(11438), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(474), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [478] = { + [sym__statements] = STATE(12187), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(478), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -123269,7 +124185,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(2637), + [anon_sym_end] = ACTIONS(2466), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -123335,103 +124251,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [475] = { - [sym__statements] = STATE(11445), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(475), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [479] = { + [sym__statements] = STATE(12211), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(479), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -123449,7 +124365,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(2639), + [anon_sym_end] = ACTIONS(2636), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -123515,103 +124431,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [476] = { - [sym__statements] = STATE(11573), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(476), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [480] = { + [sym__statements] = STATE(11293), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(480), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -123629,7 +124545,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(2608), + [anon_sym_end] = ACTIONS(2638), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -123695,103 +124611,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [477] = { - [sym__statements] = STATE(11577), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(477), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [481] = { + [sym__statements] = STATE(12218), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(481), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -123809,7 +124725,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(2422), + [anon_sym_end] = ACTIONS(2640), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -123875,103 +124791,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [478] = { - [sym__statements] = STATE(11594), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(478), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [482] = { + [sym__statements] = STATE(12225), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(482), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -123989,7 +124905,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(2641), + [anon_sym_end] = ACTIONS(2642), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -124055,106 +124971,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [479] = { - [sym__statements] = STATE(11357), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(479), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [483] = { + [sym__statements] = STATE(11407), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8938), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(483), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2644), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -124169,7 +125086,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(2498), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -124235,103 +125151,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [480] = { - [sym__statements] = STATE(11758), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(480), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [484] = { + [sym__statements] = STATE(11374), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(484), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -124342,7 +125258,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(2643), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -124350,6 +125265,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(2646), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -124415,103 +125331,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [481] = { - [sym__statements] = STATE(11787), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(481), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [485] = { + [sym__statements] = STATE(11296), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(485), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -124529,7 +125445,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(2432), + [anon_sym_end] = ACTIONS(2408), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -124595,103 +125511,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [482] = { - [sym__statements] = STATE(11801), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(482), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [486] = { + [sym__statements] = STATE(11480), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(486), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -124709,7 +125625,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(2434), + [anon_sym_end] = ACTIONS(2476), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -124775,103 +125691,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [483] = { - [sym__statements] = STATE(11858), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(483), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [487] = { + [sym__statements] = STATE(12349), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(487), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -124889,7 +125805,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(2440), + [anon_sym_end] = ACTIONS(2648), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -124955,103 +125871,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [484] = { - [sym__statements] = STATE(11860), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(484), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [488] = { + [sym__statements] = STATE(12355), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(488), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -125069,7 +125985,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(2442), + [anon_sym_end] = ACTIONS(2650), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -125135,103 +126051,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [485] = { - [sym__statements] = STATE(11879), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(485), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [489] = { + [sym__statements] = STATE(11752), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(489), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -125242,6 +126158,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), @@ -125249,7 +126166,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(2645), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -125315,103 +126231,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [486] = { - [sym__statements] = STATE(11885), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(486), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [490] = { + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9204), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(490), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(490), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(2654), + [anon_sym_LPAREN] = ACTIONS(1663), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1666), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [aux_sym_integer_token2] = ACTIONS(1669), + [aux_sym_float_token2] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1675), + [sym_operator_symbol] = ACTIONS(1678), + [sym_unquoted_symbol] = ACTIONS(1678), + [anon_sym_COLON_DQUOTE] = ACTIONS(1681), + [anon_sym_BQUOTE] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_DASH_GT] = ACTIONS(1690), + [anon_sym_annotation] = ACTIONS(1693), + [anon_sym_end] = ACTIONS(1696), + [anon_sym_AT_LBRACK] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_abstract] = ACTIONS(1704), + [anon_sym_class] = ACTIONS(1707), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_lib] = ACTIONS(1716), + [anon_sym_fun] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_include] = ACTIONS(1734), + [anon_sym_extend] = ACTIONS(1737), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_next] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_with] = ACTIONS(1749), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1758), + [anon_sym_instance_sizeof] = ACTIONS(1761), + [anon_sym_offsetof] = ACTIONS(1764), + [sym__constant_segment] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym___LINE__] = ACTIONS(1773), + [anon_sym___END_LINE__] = ACTIONS(1773), + [anon_sym___FILE__] = ACTIONS(1773), + [anon_sym___DIR__] = ACTIONS(1773), + [sym_special_variable] = ACTIONS(1776), + [sym_global_match_data_index] = ACTIONS(1678), + [sym_identifier_method_call] = ACTIONS(1779), + [sym_instance_var] = ACTIONS(1782), + [sym_class_var] = ACTIONS(1782), + [sym_self] = ACTIONS(1666), + [sym_private] = ACTIONS(1785), + [sym_protected] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1791), + [anon_sym_begin] = ACTIONS(1794), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_until] = ACTIONS(1800), + [anon_sym_require] = ACTIONS(1803), + [anon_sym_case] = ACTIONS(1806), + [anon_sym_select] = ACTIONS(1809), + [aux_sym_asm_token1] = ACTIONS(1812), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1815), + [sym__start_of_named_tuple] = ACTIONS(1818), + [sym_unary_plus] = ACTIONS(1821), + [sym_unary_minus] = ACTIONS(1821), + [sym_unary_wrapping_plus] = ACTIONS(1824), + [sym_unary_wrapping_minus] = ACTIONS(1824), + [sym__beginless_range_operator] = ACTIONS(1827), + [sym__regex_start] = ACTIONS(1830), + [sym__regular_if_keyword] = ACTIONS(1833), + [sym__regular_unless_keyword] = ACTIONS(1836), + [sym__regular_ensure_keyword] = ACTIONS(1655), + [sym__string_literal_start] = ACTIONS(1839), + [sym__string_percent_literal_start] = ACTIONS(1842), + [sym__command_percent_literal_start] = ACTIONS(1845), + [sym__string_array_percent_literal_start] = ACTIONS(1848), + [sym__symbol_array_percent_literal_start] = ACTIONS(1851), + [sym__regex_percent_literal_start] = ACTIONS(1854), + [sym_heredoc_start] = ACTIONS(1678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [491] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5150), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(491), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym__control_expressions] = STATE(5300), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5218), + [sym_double_splat] = STATE(5218), + [sym_named_expr] = STATE(5218), + [sym_argument_list_no_parens] = STATE(5405), + [sym_argument_list_with_parens] = STATE(5405), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_then] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1261), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1261), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2659), + }, + [492] = { + [sym__statements] = STATE(11002), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(492), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -125429,7 +126705,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(2647), + [anon_sym_end] = ACTIONS(2372), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -125495,103 +126771,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [487] = { - [sym__statements] = STATE(11937), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(487), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [493] = { + [sym__statements] = STATE(11298), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(493), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -125609,7 +126885,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(2372), + [anon_sym_end] = ACTIONS(2410), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -125675,103 +126951,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [488] = { - [sym__statements] = STATE(11889), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(488), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [494] = { + [sym__statements] = STATE(11489), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(494), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -125789,7 +127065,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(2444), + [anon_sym_end] = ACTIONS(2478), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -125855,107 +127131,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [489] = { - [sym__statements] = STATE(11312), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8836), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(489), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [495] = { + [sym__statements] = STATE(11302), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(495), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2649), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -125970,6 +127245,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(2661), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -126035,103 +127311,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [490] = { - [sym__statements] = STATE(11892), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(490), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [496] = { + [sym__statements] = STATE(11557), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(496), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -126149,7 +127425,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(2446), + [anon_sym_end] = ACTIONS(2663), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -126215,103 +127491,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [491] = { - [sym__statements] = STATE(11896), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(491), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [497] = { + [sym__statements] = STATE(11577), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(497), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -126329,7 +127605,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(2651), + [anon_sym_end] = ACTIONS(2665), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -126395,103 +127671,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [492] = { - [sym__statements] = STATE(11907), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(492), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [498] = { + [sym__statements] = STATE(11698), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(498), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -126502,6 +127778,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(2667), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -126509,7 +127786,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(2653), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -126575,103 +127851,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [493] = { - [sym__statements] = STATE(11911), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(493), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [499] = { + [sym__statements] = STATE(11308), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(499), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -126689,7 +127965,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(2655), + [anon_sym_end] = ACTIONS(2669), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -126755,107 +128031,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [494] = { - [sym__statements] = STATE(12177), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(9008), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(494), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [500] = { + [sym__statements] = STATE(12347), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8817), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(500), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_RPAREN] = ACTIONS(2671), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -126935,103 +128211,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [495] = { - [sym__statements] = STATE(11654), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(495), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [501] = { + [sym__statements] = STATE(11310), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(501), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -127049,7 +128325,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(2424), + [anon_sym_end] = ACTIONS(2673), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -127115,103 +128391,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [496] = { - [sym__statements] = STATE(11658), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(496), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [502] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5150), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(502), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym__control_expressions] = STATE(5439), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5218), + [sym_double_splat] = STATE(5218), + [sym_named_expr] = STATE(5218), + [sym_argument_list_no_parens] = STATE(5405), + [sym_argument_list_with_parens] = STATE(5405), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_then] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1269), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(827), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(829), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2659), + }, + [503] = { + [sym__statements] = STATE(12331), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(503), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -127229,7 +128685,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(2456), + [anon_sym_end] = ACTIONS(2675), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -127295,103 +128751,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [497] = { - [sym__statements] = STATE(12068), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(497), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [504] = { + [sym__statements] = STATE(12337), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(504), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -127409,7 +128865,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(2659), + [anon_sym_end] = ACTIONS(2677), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -127475,103 +128931,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [498] = { - [sym__statements] = STATE(11134), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(498), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [505] = { + [sym__statements] = STATE(11137), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(505), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -127582,6 +129038,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(2679), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -127589,7 +129046,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(2661), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -127655,106 +129111,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [499] = { - [sym__statements] = STATE(11147), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(499), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [506] = { + [sym__statements] = STATE(11996), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8923), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(506), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2681), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -127769,7 +129226,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(2663), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -127835,106 +129291,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [500] = { - [sym__statements] = STATE(11909), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(500), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [507] = { + [sym__statements] = STATE(11791), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8886), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(507), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2683), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -127942,7 +129399,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(2665), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -128015,106 +129471,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [501] = { - [sym__statements] = STATE(11381), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(501), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [508] = { + [sym__statements] = STATE(11660), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9105), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(508), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2685), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -128129,7 +129586,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(2378), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -128195,107 +129651,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [502] = { + [509] = { + [sym__statements] = STATE(11729), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(509), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [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(2687), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_require] = ACTIONS(107), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [510] = { [sym__statements] = STATE(11013), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8847), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(502), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(510), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2667), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -128310,6 +129945,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(2374), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -128375,103 +130011,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [503] = { - [sym__statements] = STATE(11789), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(503), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [511] = { + [sym__statements] = STATE(11337), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(511), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -128489,7 +130125,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(2669), + [anon_sym_end] = ACTIONS(2689), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -128555,103 +130191,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [504] = { - [sym__statements] = STATE(11790), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(504), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [512] = { + [sym__statements] = STATE(11341), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(512), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -128669,7 +130305,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(2671), + [anon_sym_end] = ACTIONS(2691), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -128735,103 +130371,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [505] = { - [sym__statements] = STATE(11900), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(505), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [513] = { + [sym__statements] = STATE(11510), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(513), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -128842,7 +130478,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(2673), + [anon_sym_RBRACE] = ACTIONS(2693), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -128915,107 +130551,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [506] = { - [sym__statements] = STATE(12087), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8890), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(506), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [514] = { + [sym__statements] = STATE(11991), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(514), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2675), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -129030,6 +130665,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(2695), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -129095,106 +130731,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [507] = { - [sym__statements] = STATE(10963), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(507), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [515] = { + [sym__statements] = STATE(11926), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8937), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(515), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2697), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -129209,7 +130846,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(2677), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -129275,103 +130911,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [508] = { - [sym__statements] = STATE(10964), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(508), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [516] = { + [sym__statements] = STATE(12037), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(516), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -129389,7 +131025,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(2679), + [anon_sym_end] = ACTIONS(2699), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -129455,103 +131091,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [509] = { - [sym__statements] = STATE(11004), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(509), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [517] = { + [sym__statements] = STATE(12330), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(517), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -129562,7 +131198,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(2681), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -129570,6 +131205,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(2701), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -129635,107 +131271,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [510] = { - [sym__statements] = STATE(11112), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8938), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(510), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [518] = { + [sym__statements] = STATE(12336), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(518), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2683), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -129750,6 +131385,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(2703), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -129815,103 +131451,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [511] = { - [sym__statements] = STATE(12281), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(511), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [519] = { + [sym__statements] = STATE(10985), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(519), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -129922,6 +131558,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(2705), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -129929,7 +131566,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(2685), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -129995,106 +131631,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [512] = { - [sym__statements] = STATE(11270), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(512), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [520] = { + [sym__statements] = STATE(11207), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9023), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(520), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2707), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -130109,7 +131746,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(2687), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -130175,103 +131811,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [513] = { - [sym__statements] = STATE(11273), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(513), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [521] = { + [sym__statements] = STATE(11447), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(521), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -130289,7 +131925,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(2689), + [anon_sym_end] = ACTIONS(2709), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -130355,103 +131991,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [514] = { - [sym__statements] = STATE(11305), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(514), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [522] = { + [sym__statements] = STATE(11450), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(522), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -130462,7 +132098,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(2691), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -130470,6 +132105,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(2711), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -130535,107 +132171,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [515] = { - [sym__statements] = STATE(11387), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8979), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(515), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [523] = { + [sym__statements] = STATE(11493), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(523), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2693), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -130643,6 +132278,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(2713), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -130715,106 +132351,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [516] = { - [sym__statements] = STATE(11530), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(516), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [524] = { + [sym__statements] = STATE(11592), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9083), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(524), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2715), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -130829,7 +132466,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(2695), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -130895,103 +132531,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [517] = { - [sym__statements] = STATE(11531), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(517), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [525] = { + [sym__statements] = STATE(11797), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(525), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -131009,7 +132645,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(2697), + [anon_sym_end] = ACTIONS(2424), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -131075,103 +132711,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [518] = { - [sym__statements] = STATE(11569), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(518), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [526] = { + [sym__statements] = STATE(11046), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(526), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -131182,7 +132818,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(2699), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -131190,6 +132825,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(2717), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -131255,107 +132891,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [519] = { - [sym__statements] = STATE(11642), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(9020), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(519), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [527] = { + [sym__statements] = STATE(11000), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9046), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(527), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2701), + [anon_sym_RPAREN] = ACTIONS(2719), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -131435,103 +133071,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [520] = { - [sym__statements] = STATE(11809), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(520), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [528] = { + [sym__statements] = STATE(11853), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(528), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -131549,7 +133185,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(2703), + [anon_sym_end] = ACTIONS(2721), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -131615,103 +133251,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [521] = { - [sym__statements] = STATE(11810), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(521), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [529] = { + [sym__statements] = STATE(11856), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(529), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -131729,7 +133365,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(2705), + [anon_sym_end] = ACTIONS(2723), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -131795,103 +133431,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [522] = { - [sym__statements] = STATE(11839), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(522), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [530] = { + [sym__statements] = STATE(11921), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(530), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -131902,7 +133538,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(2707), + [anon_sym_RBRACE] = ACTIONS(2725), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -131975,107 +133611,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [523] = { - [sym__statements] = STATE(11903), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(9086), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(523), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [531] = { + [sym__statements] = STATE(11047), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(531), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2709), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -132090,6 +133725,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(2727), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -132155,106 +133791,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [524] = { - [sym__statements] = STATE(12252), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(524), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [532] = { + [sym__statements] = STATE(12195), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(9168), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(532), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2729), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -132262,7 +133899,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(2711), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -132335,103 +133971,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [525] = { - [sym__statements] = STATE(12052), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(525), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [533] = { + [sym__statements] = STATE(11233), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(533), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -132449,7 +134085,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(2713), + [anon_sym_end] = ACTIONS(2731), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -132515,103 +134151,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [526] = { - [sym__statements] = STATE(12053), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(526), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [534] = { + [sym__statements] = STATE(11569), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(534), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -132629,7 +134265,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(2715), + [anon_sym_end] = ACTIONS(2733), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -132695,103 +134331,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [527] = { - [sym__statements] = STATE(12083), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(527), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [535] = { + [sym__statements] = STATE(11113), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(535), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -132802,7 +134438,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(2717), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -132810,6 +134445,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(2735), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -132875,107 +134511,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [528] = { - [sym__statements] = STATE(12195), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8820), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(528), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [536] = { + [sym__statements] = STATE(11327), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(536), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2719), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -132990,6 +134625,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(2737), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -133055,103 +134691,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [529] = { - [sym__statements] = STATE(11001), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(529), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [537] = { + [sym__statements] = STATE(11491), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(537), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -133162,6 +134798,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(2739), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -133169,7 +134806,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(2721), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -133235,106 +134871,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [530] = { - [sym__statements] = STATE(10952), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(530), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [538] = { + [sym__statements] = STATE(11900), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8805), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(538), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2741), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -133349,7 +134986,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(2568), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -133415,103 +135051,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [531] = { - [sym__statements] = STATE(12028), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(531), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [539] = { + [sym__statements] = STATE(12036), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(539), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -133529,7 +135165,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(2723), + [anon_sym_end] = ACTIONS(2426), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -133595,103 +135231,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [532] = { - [sym__statements] = STATE(11366), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(532), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [540] = { + [sym__statements] = STATE(11826), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(540), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -133709,7 +135345,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(2725), + [anon_sym_end] = ACTIONS(2743), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -133775,103 +135411,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [533] = { - [sym__statements] = STATE(11385), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(533), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [541] = { + [sym__statements] = STATE(11707), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(541), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -133889,7 +135525,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(2727), + [anon_sym_end] = ACTIONS(2745), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -133955,103 +135591,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [534] = { - [sym__statements] = STATE(10942), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(534), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [542] = { + [sym__statements] = STATE(11713), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(542), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -134062,7 +135698,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(2729), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -134070,6 +135705,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_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -134135,107 +135771,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [535] = { - [sym__statements] = STATE(10967), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8855), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(535), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [543] = { + [sym__statements] = STATE(11860), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(543), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2731), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -134243,6 +135878,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(2749), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -134315,106 +135951,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [536] = { - [sym__statements] = STATE(12278), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(536), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [544] = { + [sym__statements] = STATE(10971), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8825), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(544), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2751), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -134429,7 +136066,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(2380), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -134495,103 +136131,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [537] = { - [sym__statements] = STATE(12003), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(537), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [545] = { + [sym__statements] = STATE(11626), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(545), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -134609,7 +136245,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(2550), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -134675,103 +136311,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [538] = { - [sym__statements] = STATE(12010), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(538), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [546] = { + [sym__statements] = STATE(11405), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(546), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -134789,7 +136425,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(2735), + [anon_sym_end] = ACTIONS(2753), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -134855,103 +136491,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [539] = { - [sym__statements] = STATE(12226), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(539), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [547] = { + [sym__statements] = STATE(11418), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(547), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -134962,7 +136598,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(2737), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -134970,6 +136605,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(2755), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -135035,107 +136671,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [540] = { - [sym__statements] = STATE(11044), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8988), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(540), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [548] = { + [sym__statements] = STATE(11511), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(548), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2739), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -135143,6 +136778,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(2757), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -135215,286 +136851,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [541] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5128), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(541), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym__control_expressions] = STATE(5405), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5068), - [sym_double_splat] = STATE(5068), - [sym_named_expr] = STATE(5068), - [sym_argument_list_no_parens] = STATE(5237), - [sym_argument_list_with_parens] = STATE(5237), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1273), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1273), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2743), - }, - [542] = { - [sym__statements] = STATE(10956), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(542), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [549] = { + [sym__statements] = STATE(11755), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8851), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(549), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [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), @@ -135509,7 +136966,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(2578), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -135575,103 +137031,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [543] = { - [sym__statements] = STATE(11469), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(543), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [550] = { + [sym__statements] = STATE(12040), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(550), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -135689,7 +137145,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(2745), + [anon_sym_end] = ACTIONS(2362), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -135755,103 +137211,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [544] = { - [sym__statements] = STATE(11482), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(544), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [551] = { + [sym__statements] = STATE(12092), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(551), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -135869,7 +137325,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(2761), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -135935,103 +137391,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [545] = { - [sym__statements] = STATE(11681), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(545), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [552] = { + [sym__statements] = STATE(12093), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(552), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -136042,7 +137498,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(2749), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -136050,6 +137505,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_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -136115,107 +137571,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [546] = { - [sym__statements] = STATE(11894), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8829), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(546), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [553] = { + [sym__statements] = STATE(12263), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(553), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2751), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -136223,6 +137678,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(2765), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -136295,103 +137751,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [547] = { - [sym__statements] = STATE(12171), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(547), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [554] = { + [sym__statements] = STATE(11112), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(554), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -136409,7 +137865,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(2380), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -136475,103 +137931,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [548] = { - [sym__statements] = STATE(12174), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(548), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [555] = { + [sym__statements] = STATE(11052), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(555), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -136582,6 +138038,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(2767), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -136589,7 +138046,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(2755), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -136655,103 +138111,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [549] = { - [sym__statements] = STATE(12245), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(549), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [556] = { + [sym__statements] = STATE(11416), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(556), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -136762,7 +138218,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), @@ -136770,6 +138225,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_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -136835,103 +138291,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [550] = { - [sym__statements] = STATE(10961), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(550), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [557] = { + [sym__statements] = STATE(11149), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(557), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -136942,7 +138398,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(2759), + [anon_sym_RBRACE] = ACTIONS(2769), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -137015,466 +138471,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [551] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5128), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(551), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym__control_expressions] = STATE(5401), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5068), - [sym_double_splat] = STATE(5068), - [sym_named_expr] = STATE(5068), - [sym_argument_list_no_parens] = STATE(5237), - [sym_argument_list_with_parens] = STATE(5237), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(743), + [558] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3076), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(558), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2266), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1257), + [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(2266), + [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(1517), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_elsif] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_when] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(2272), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_break] = ACTIONS(2266), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1257), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(827), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(829), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2743), - }, - [552] = { - [sym__parenthesized_statement] = STATE(4749), - [sym__statement] = STATE(8746), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(5006), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(552), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_annotation_def] = STATE(8953), - [sym_annotation] = STATE(8953), - [sym_module_def] = STATE(8953), - [sym_class_def] = STATE(8953), - [sym_struct_def] = STATE(8953), - [sym_enum_def] = STATE(8953), - [sym_lib_def] = STATE(8953), - [sym_top_level_fun_def] = STATE(8953), - [sym__base_method_def] = STATE(154), - [sym_method_def] = STATE(8953), - [sym_abstract_method_def] = STATE(8953), - [sym_include] = STATE(8953), - [sym_extend] = STATE(8953), - [sym_return] = STATE(8953), - [sym_next] = STATE(8953), - [sym_break] = STATE(8953), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4439), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2274), - [sym_index_call] = STATE(2274), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_const_assign] = STATE(8953), - [sym_operator_assign] = STATE(4749), - [sym_lhs_splat] = STATE(10850), - [sym_multi_assign] = STATE(8953), - [sym_type_declaration] = STATE(4749), - [sym_alias] = STATE(8953), - [sym_begin_block] = STATE(4749), - [sym_modifier_rescue] = STATE(8953), - [sym_modifier_ensure] = STATE(8953), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_modifier_if] = STATE(8953), - [sym_modifier_unless] = STATE(8953), - [sym_require] = STATE(8953), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym__statements_repeat1] = STATE(468), - [aux_sym_multi_assign_repeat1] = STATE(1056), - [sym_identifier] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_annotation] = ACTIONS(2496), - [anon_sym_end] = ACTIONS(1859), - [anon_sym_AT_LBRACK] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_lib] = ACTIONS(2512), - [anon_sym_fun] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(2520), - [anon_sym_extend] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_next] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(2536), - [sym_class_var] = ACTIONS(2536), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2538), - [sym_protected] = ACTIONS(2540), - [anon_sym_alias] = ACTIONS(2542), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2544), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__regular_ensure_keyword] = ACTIONS(1857), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__modifier_if_keyword] = ACTIONS(2266), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2775), }, - [553] = { - [sym__statements] = STATE(11075), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(553), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), + [559] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2945), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(559), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(2304), + [sym_identifier] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2304), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2304), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -137482,31 +138731,36 @@ 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(2761), + [anon_sym_RBRACE] = ACTIONS(2304), [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(1517), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -137519,33 +138773,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(89), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), + [anon_sym_elsif] = ACTIONS(2306), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_when] = ACTIONS(2306), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), + [anon_sym_in] = ACTIONS(2306), [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_break] = ACTIONS(2304), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(127), + [sym__modifier_if_keyword] = ACTIONS(2304), [sym__regular_unless_keyword] = ACTIONS(129), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -137554,80 +138829,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2777), }, - [554] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3107), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(554), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2322), + [560] = { + [sym__statements] = STATE(11456), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(560), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2322), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -137635,36 +138938,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(2322), [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(1445), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2538), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_module] = ACTIONS(39), + [anon_sym_abstract] = ACTIONS(41), + [anon_sym_class] = ACTIONS(43), + [anon_sym_struct] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_lib] = ACTIONS(49), + [anon_sym_fun] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_def] = 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), @@ -137677,54 +138975,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(89), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(93), + [sym_class_var] = ACTIONS(93), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [sym_private] = ACTIONS(95), + [sym_protected] = ACTIONS(97), + [anon_sym_alias] = ACTIONS(99), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_when] = ACTIONS(2324), + [anon_sym_require] = ACTIONS(107), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2324), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(2322), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(115), [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(2322), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -137733,105 +139010,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2767), }, - [555] = { - [sym__statements] = STATE(11152), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(555), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [561] = { + [sym__statements] = STATE(11117), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(561), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -137849,7 +139125,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(2769), + [anon_sym_end] = ACTIONS(2382), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -137915,103 +139191,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [556] = { - [sym__statements] = STATE(11295), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(556), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [562] = { + [sym__statements] = STATE(11737), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(562), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -138029,7 +139305,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(2600), + [anon_sym_end] = ACTIONS(2510), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -138095,103 +139371,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [557] = { - [sym__statements] = STATE(11157), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(557), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [563] = { + [sym__parenthesized_statement] = STATE(4608), + [sym__statement] = STATE(8717), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4882), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(563), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_annotation_def] = STATE(8828), + [sym_annotation] = STATE(8828), + [sym_module_def] = STATE(8828), + [sym_class_def] = STATE(8828), + [sym_struct_def] = STATE(8828), + [sym_enum_def] = STATE(8828), + [sym_lib_def] = STATE(8828), + [sym_top_level_fun_def] = STATE(8828), + [sym__base_method_def] = STATE(170), + [sym_method_def] = STATE(8828), + [sym_abstract_method_def] = STATE(8828), + [sym_include] = STATE(8828), + [sym_extend] = STATE(8828), + [sym_return] = STATE(8828), + [sym_next] = STATE(8828), + [sym_break] = STATE(8828), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4541), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7862), + [sym_index_operator] = STATE(2301), + [sym_index_call] = STATE(2301), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_const_assign] = STATE(8828), + [sym_operator_assign] = STATE(4608), + [sym_lhs_splat] = STATE(10912), + [sym_multi_assign] = STATE(8828), + [sym_type_declaration] = STATE(4608), + [sym_alias] = STATE(8828), + [sym_begin_block] = STATE(4608), + [sym_modifier_rescue] = STATE(8828), + [sym_modifier_ensure] = STATE(8828), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_modifier_if] = STATE(8828), + [sym_modifier_unless] = STATE(8828), + [sym_require] = STATE(8828), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym__statements_repeat1] = STATE(490), + [aux_sym_multi_assign_repeat1] = STATE(1055), + [sym_identifier] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2542), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_annotation] = ACTIONS(2548), + [anon_sym_end] = ACTIONS(1861), + [anon_sym_AT_LBRACK] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2554), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_class] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_lib] = ACTIONS(2564), + [anon_sym_fun] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(2572), + [anon_sym_extend] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_next] = ACTIONS(2578), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(2588), + [sym_class_var] = ACTIONS(2588), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2590), + [sym_protected] = ACTIONS(2592), + [anon_sym_alias] = ACTIONS(2594), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_require] = ACTIONS(2596), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__regular_ensure_keyword] = ACTIONS(1859), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [564] = { + [sym__statements] = STATE(12008), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8145), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(564), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym__statements_repeat1] = STATE(228), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -138209,1267 +139665,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_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [558] = { - [sym__statements] = STATE(11297), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(558), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [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(2602), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [559] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2892), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(559), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2302), - [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(2302), - [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(1445), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_when] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2308), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(2302), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(2302), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2773), - }, - [560] = { - [sym__statements] = STATE(12110), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(560), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [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(2604), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [561] = { - [sym__statements] = STATE(12017), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(561), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [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(2382), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [562] = { - [sym__statements] = STATE(11779), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(562), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [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(2775), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [563] = { - [sym__statements] = STATE(11811), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(563), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [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(2777), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_module] = ACTIONS(39), - [anon_sym_abstract] = ACTIONS(41), - [anon_sym_class] = ACTIONS(43), - [anon_sym_struct] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_lib] = ACTIONS(49), - [anon_sym_fun] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_def] = 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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(93), - [sym_class_var] = ACTIONS(93), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(95), - [sym_protected] = ACTIONS(97), - [anon_sym_alias] = ACTIONS(99), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_require] = ACTIONS(107), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [564] = { - [sym__statements] = STATE(11458), - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8074), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(564), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym__statements_repeat1] = STATE(226), - [aux_sym_multi_assign_repeat1] = STATE(1051), - [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(2402), + [anon_sym_end] = ACTIONS(2442), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_module] = ACTIONS(39), [anon_sym_abstract] = ACTIONS(41), @@ -139536,79 +139732,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [565] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5318), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5411), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(565), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym__control_expressions] = STATE(5548), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5208), - [sym_double_splat] = STATE(5208), - [sym_named_expr] = STATE(5208), - [sym_argument_list_no_parens] = STATE(5472), - [sym_argument_list_with_parens] = STATE(5472), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym__control_expressions] = STATE(5671), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5320), + [sym_double_splat] = STATE(5320), + [sym_named_expr] = STATE(5320), + [sym_argument_list_no_parens] = STATE(5581), + [sym_argument_list_with_parens] = STATE(5581), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -139623,30 +139819,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(885), [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), [anon_sym_BANG] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), [anon_sym_typeof] = ACTIONS(903), @@ -139666,13 +139862,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1269), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1275), + [anon_sym_RBRACK_QMARK] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1271), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -139680,30 +139876,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(941), [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1273), + [sym__start_of_brace_block] = ACTIONS(1269), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(1273), + [sym__start_of_index_operator] = ACTIONS(1269), [sym_unary_plus] = ACTIONS(951), [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), [sym_unary_wrapping_plus] = ACTIONS(953), [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), [sym__unary_star] = ACTIONS(955), - [sym__binary_star] = ACTIONS(1273), + [sym__binary_star] = ACTIONS(1269), [sym__unary_double_star] = ACTIONS(957), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), [sym__regular_if_keyword] = ACTIONS(965), [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(1273), + [sym__modulo_operator] = ACTIONS(1269), [sym__string_literal_start] = ACTIONS(969), [sym__string_percent_literal_start] = ACTIONS(971), [sym__command_percent_literal_start] = ACTIONS(973), @@ -139715,78 +139911,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(2781), }, [566] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3225), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3054), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(566), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2302), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2376), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2376), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -139794,35 +139990,36 @@ 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(2302), + [anon_sym_RBRACE] = ACTIONS(2376), [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(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -139835,54 +140032,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(89), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(2308), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_when] = ACTIONS(2308), + [anon_sym_elsif] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_when] = ACTIONS(2378), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2308), + [anon_sym_in] = ACTIONS(2378), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(2302), + [sym__line_break] = ACTIONS(2376), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(123), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(2302), + [sym__modifier_if_keyword] = ACTIONS(2376), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -139891,81 +140088,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2789), }, [567] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3218), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3086), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(567), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2322), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(2416), + [sym_identifier] = ACTIONS(2771), + [anon_sym_SEMI] = ACTIONS(2416), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2322), + [anon_sym_RPAREN] = ACTIONS(2416), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -139973,35 +140169,36 @@ 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(2322), + [anon_sym_RBRACE] = ACTIONS(2416), [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(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(1517), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -140014,54 +140211,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(89), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_when] = ACTIONS(2324), + [anon_sym_elsif] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_when] = ACTIONS(2418), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2418), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(2322), + [sym__line_break] = ACTIONS(2416), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(123), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(2322), + [sym__modifier_if_keyword] = ACTIONS(2416), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -140070,81 +140267,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2791), }, [568] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3123), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3282), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(568), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(2472), - [sym_identifier] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2472), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2266), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2472), + [anon_sym_RPAREN] = ACTIONS(2266), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -140152,36 +140348,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(2472), + [anon_sym_RBRACE] = ACTIONS(2266), [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(1445), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -140194,54 +140389,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(89), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_when] = ACTIONS(2474), + [anon_sym_elsif] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_when] = ACTIONS(2272), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2272), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(2472), + [sym__line_break] = ACTIONS(2266), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(115), [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(123), [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(2472), + [sym__modifier_if_keyword] = ACTIONS(2266), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -140250,80 +140445,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2789), }, [569] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3089), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3276), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(569), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2464), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(2304), + [sym_identifier] = ACTIONS(2783), + [anon_sym_SEMI] = ACTIONS(2304), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2464), + [anon_sym_RPAREN] = ACTIONS(2304), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -140331,36 +140527,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(2464), + [anon_sym_RBRACE] = ACTIONS(2304), [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(1445), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -140373,54 +140568,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(89), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_when] = ACTIONS(2466), + [anon_sym_elsif] = ACTIONS(2306), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_when] = ACTIONS(2306), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2306), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(2464), + [sym__line_break] = ACTIONS(2304), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(115), [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(123), [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(2464), + [sym__modifier_if_keyword] = ACTIONS(2304), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -140429,81 +140624,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2791), }, [570] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5318), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5411), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(570), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym__control_expressions] = STATE(5466), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5208), - [sym_double_splat] = STATE(5208), - [sym_named_expr] = STATE(5208), - [sym_argument_list_no_parens] = STATE(5472), - [sym_argument_list_with_parens] = STATE(5472), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym__control_expressions] = STATE(5651), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5320), + [sym_double_splat] = STATE(5320), + [sym_named_expr] = STATE(5320), + [sym_argument_list_no_parens] = STATE(5581), + [sym_argument_list_with_parens] = STATE(5581), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(873), [sym_comment] = ACTIONS(5), @@ -140518,30 +140714,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(885), [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_RBRACK] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), [anon_sym_typeof] = ACTIONS(903), @@ -140561,13 +140757,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1261), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1259), + [anon_sym_RBRACK_QMARK] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1263), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -140575,30 +140771,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(941), [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1257), + [sym__start_of_brace_block] = ACTIONS(1261), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(1257), + [sym__start_of_index_operator] = ACTIONS(1261), [sym_unary_plus] = ACTIONS(951), [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), [sym_unary_wrapping_plus] = ACTIONS(953), [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), [sym__unary_star] = ACTIONS(955), - [sym__binary_star] = ACTIONS(1257), + [sym__binary_star] = ACTIONS(1261), [sym__unary_double_star] = ACTIONS(957), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), [sym__regular_if_keyword] = ACTIONS(965), [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(1257), + [sym__modulo_operator] = ACTIONS(1261), [sym__string_literal_start] = ACTIONS(969), [sym__string_percent_literal_start] = ACTIONS(971), [sym__command_percent_literal_start] = ACTIONS(973), @@ -140610,257 +140806,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(2781), }, [571] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5557), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(4870), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(5523), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5714), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(571), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym__control_expressions] = STATE(5967), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_splat] = STATE(5730), - [sym_double_splat] = STATE(5730), - [sym_named_expr] = STATE(5730), - [sym_argument_list_no_parens] = STATE(6052), - [sym_argument_list_with_parens] = STATE(6052), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(2795), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(2839), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2843), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_then] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(1257), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(2867), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(2869), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2891), - }, - [572] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5663), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(572), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym__control_expressions] = STATE(3613), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5740), - [sym_double_splat] = STATE(5740), - [sym_named_expr] = STATE(5740), - [sym_argument_list_no_parens] = STATE(3758), - [sym_argument_list_with_parens] = STATE(3758), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym__control_expressions] = STATE(3878), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5596), + [sym_double_splat] = STATE(5596), + [sym_named_expr] = STATE(5596), + [sym_argument_list_no_parens] = STATE(3847), + [sym_argument_list_with_parens] = STATE(3847), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -140875,29 +140893,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(1135), [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), @@ -140916,14 +140934,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1149), [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_QMARK] = ACTIONS(1261), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_COLON2] = ACTIONS(1275), - [anon_sym_do] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_COLON2] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -140931,30 +140949,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(531), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1273), + [sym__start_of_brace_block] = ACTIONS(1261), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1273), + [sym__start_of_index_operator] = ACTIONS(1261), [sym_unary_plus] = ACTIONS(1157), [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), [sym_unary_wrapping_plus] = ACTIONS(1159), [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1273), + [sym__binary_star] = ACTIONS(1261), [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1273), + [sym__modulo_operator] = ACTIONS(1261), [sym__string_literal_start] = ACTIONS(559), [sym__string_percent_literal_start] = ACTIONS(561), [sym__command_percent_literal_start] = ACTIONS(563), @@ -140963,259 +140981,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2893), + [sym__start_of_parenless_args] = ACTIONS(2793), }, - [573] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), + [572] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), [sym__expression] = STATE(5663), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(573), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym__control_expressions] = STATE(3704), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5740), - [sym_double_splat] = STATE(5740), - [sym_named_expr] = STATE(5740), - [sym_argument_list_no_parens] = STATE(3758), - [sym_argument_list_with_parens] = STATE(3758), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(461), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_LPAREN2] = ACTIONS(1913), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_COLON2] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1257), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(1161), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(1163), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(4958), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(572), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym__control_expressions] = STATE(5856), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_splat] = STATE(5827), + [sym_double_splat] = STATE(5827), + [sym_named_expr] = STATE(5827), + [sym_argument_list_no_parens] = STATE(5946), + [sym_argument_list_with_parens] = STATE(5946), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(2797), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(2841), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2845), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_then] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(1269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(2869), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(2871), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(2893), }, - [574] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3243), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(574), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [573] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3245), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(573), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(2464), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(2376), [sym_identifier] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2376), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2464), + [anon_sym_RPAREN] = ACTIONS(2376), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -141223,35 +141241,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(2464), + [anon_sym_RBRACE] = ACTIONS(2376), [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(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -141270,48 +141288,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(2785), [sym_class_var] = ACTIONS(2785), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(2787), [sym_protected] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_when] = ACTIONS(2466), + [anon_sym_elsif] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_when] = ACTIONS(2378), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2378), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(2464), + [sym__line_break] = ACTIONS(2376), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(119), [sym_unary_minus] = ACTIONS(119), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(121), [sym_unary_wrapping_minus] = ACTIONS(121), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(123), [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(2464), + [sym__modifier_if_keyword] = ACTIONS(2376), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -141321,79 +141339,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [575] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3246), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(575), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [574] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3244), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(574), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(2472), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(2416), [sym_identifier] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2416), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2472), + [anon_sym_RPAREN] = ACTIONS(2416), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -141401,35 +141419,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(2472), + [anon_sym_RBRACE] = ACTIONS(2416), [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(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(151), [anon_sym_TILDE] = ACTIONS(57), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -141448,48 +141466,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(2785), [sym_class_var] = ACTIONS(2785), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(2787), [sym_protected] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_when] = ACTIONS(2474), + [anon_sym_elsif] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_when] = ACTIONS(2418), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2418), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(2472), + [sym__line_break] = ACTIONS(2416), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), [sym__start_of_named_tuple] = ACTIONS(117), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(119), [sym_unary_minus] = ACTIONS(119), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(121), [sym_unary_wrapping_minus] = ACTIONS(121), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(123), [sym__regex_start] = ACTIONS(125), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(2472), + [sym__modifier_if_keyword] = ACTIONS(2416), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -141499,80 +141517,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [575] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3386), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(575), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(2304), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2304), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(2304), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__regular_rescue_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__regular_ensure_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2903), + }, [576] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5599), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5751), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), [sym_heredoc_body] = STATE(576), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym__control_expressions] = STATE(5781), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5622), - [sym_double_splat] = STATE(5622), - [sym_named_expr] = STATE(5622), - [sym_argument_list_no_parens] = STATE(6146), - [sym_argument_list_with_parens] = STATE(6146), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym__control_expressions] = STATE(6257), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5652), + [sym_double_splat] = STATE(5652), + [sym_named_expr] = STATE(5652), + [sym_argument_list_no_parens] = STATE(6062), + [sym_argument_list_with_parens] = STATE(6062), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -141587,29 +141783,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1015), [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), [anon_sym_BANG] = ACTIONS(1025), [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), [anon_sym_typeof] = ACTIONS(1033), @@ -141628,307 +141824,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_QMARK] = ACTIONS(1269), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1275), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1273), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym__end_of_with_expression] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1269), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym__end_of_with_expression] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2897), + [sym__start_of_parenless_args] = ACTIONS(2907), }, [577] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5557), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(4870), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(5523), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5663), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(4958), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), [sym_heredoc_body] = STATE(577), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym__control_expressions] = STATE(6139), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_splat] = STATE(5730), - [sym_double_splat] = STATE(5730), - [sym_named_expr] = STATE(5730), - [sym_argument_list_no_parens] = STATE(6052), - [sym_argument_list_with_parens] = STATE(6052), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(2795), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(2839), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2843), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_then] = ACTIONS(1275), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(1273), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(2867), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(2869), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2891), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym__control_expressions] = STATE(6038), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_splat] = STATE(5827), + [sym_double_splat] = STATE(5827), + [sym_named_expr] = STATE(5827), + [sym_argument_list_no_parens] = STATE(5946), + [sym_argument_list_with_parens] = STATE(5946), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(2797), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(2841), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [anon_sym_LPAREN2] = ACTIONS(2845), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_then] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(1261), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(2869), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(2871), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2893), }, [578] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5599), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5714), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(578), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym__control_expressions] = STATE(5932), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym__control_expressions] = STATE(3726), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5622), - [sym_double_splat] = STATE(5622), - [sym_named_expr] = STATE(5622), - [sym_argument_list_no_parens] = STATE(6146), - [sym_argument_list_with_parens] = STATE(6146), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5596), + [sym_double_splat] = STATE(5596), + [sym_named_expr] = STATE(5596), + [sym_argument_list_no_parens] = STATE(3847), + [sym_argument_list_with_parens] = STATE(3847), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(461), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_LPAREN2] = ACTIONS(1919), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_COLON2] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1269), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(1161), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(1163), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2793), + }, + [579] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5751), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(579), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym__control_expressions] = STATE(6123), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5652), + [sym_double_splat] = STATE(5652), + [sym_named_expr] = STATE(5652), + [sym_argument_list_no_parens] = STATE(6062), + [sym_argument_list_with_parens] = STATE(6062), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(1003), [sym_comment] = ACTIONS(5), @@ -141943,29 +142317,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1015), [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(1025), [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), [anon_sym_typeof] = ACTIONS(1033), @@ -141984,304 +142358,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_QMARK] = ACTIONS(1261), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1257), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym__end_of_with_expression] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(1087), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(1089), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1261), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym__end_of_with_expression] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(1085), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(1087), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2897), - }, - [579] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3440), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(579), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(2302), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2302), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(2302), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__regular_rescue_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__regular_ensure_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2907), + [sym__start_of_parenless_args] = ACTIONS(2907), }, [580] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3434), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3532), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(580), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2901), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -142294,37 +142490,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(333), [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), [anon_sym_BANG] = ACTIONS(343), [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), [anon_sym_typeof] = ACTIONS(351), [anon_sym_sizeof] = ACTIONS(353), [anon_sym_instance_sizeof] = ACTIONS(355), [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), + [sym__constant_segment] = ACTIONS(2899), [anon_sym_COLON_COLON] = ACTIONS(361), [anon_sym___LINE__] = ACTIONS(363), [anon_sym___END_LINE__] = ACTIONS(363), @@ -142332,314 +142528,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(363), [sym_special_variable] = ACTIONS(365), [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), + [sym_identifier_method_call] = ACTIONS(2901), [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(2322), + [anon_sym_QMARK] = ACTIONS(2266), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(2322), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2322), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(2322), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__regular_rescue_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__regular_ensure_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(2266), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2266), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(2266), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__regular_rescue_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__regular_ensure_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(2909), }, [581] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3300), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5966), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), [sym_heredoc_body] = STATE(581), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(2472), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2472), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(2472), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__regular_rescue_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__regular_ensure_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [582] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6107), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(582), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym__control_expressions] = STATE(6484), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(6109), - [sym_double_splat] = STATE(6109), - [sym_named_expr] = STATE(6109), - [sym_argument_list_no_parens] = STATE(6247), - [sym_argument_list_with_parens] = STATE(6247), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym__control_expressions] = STATE(6342), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(5855), + [sym_double_splat] = STATE(5855), + [sym_named_expr] = STATE(5855), + [sym_argument_list_no_parens] = STATE(6618), + [sym_argument_list_with_parens] = STATE(6618), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(2913), [sym_comment] = ACTIONS(5), @@ -142654,30 +142673,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(2925), [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(2933), [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), [anon_sym_typeof] = ACTIONS(2941), @@ -142697,12 +142716,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(2959), [sym_self] = ACTIONS(2915), [anon_sym_LPAREN2] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(1273), + [anon_sym_QMARK] = ACTIONS(1261), [sym_private] = ACTIONS(2963), [sym_protected] = ACTIONS(2963), - [anon_sym_RBRACK_QMARK] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), + [anon_sym_RBRACK_QMARK] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), [anon_sym_begin] = ACTIONS(2965), [anon_sym_while] = ACTIONS(2967), [anon_sym_until] = ACTIONS(2969), @@ -142712,27 +142731,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2977), [sym__start_of_named_tuple] = ACTIONS(2979), - [sym__start_of_index_operator] = ACTIONS(1273), + [sym__start_of_index_operator] = ACTIONS(1261), [sym_unary_plus] = ACTIONS(2981), [sym_unary_minus] = ACTIONS(2981), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), [sym_unary_wrapping_plus] = ACTIONS(2983), [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), [sym__unary_star] = ACTIONS(2985), - [sym__binary_star] = ACTIONS(1273), + [sym__binary_star] = ACTIONS(1261), [sym__unary_double_star] = ACTIONS(2987), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), [sym__beginless_range_operator] = ACTIONS(2989), [sym__regex_start] = ACTIONS(2991), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), [sym__regular_if_keyword] = ACTIONS(2993), [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__modulo_operator] = ACTIONS(1273), + [sym__modulo_operator] = ACTIONS(1261), [sym__string_literal_start] = ACTIONS(2997), [sym__string_percent_literal_start] = ACTIONS(2999), [sym__command_percent_literal_start] = ACTIONS(3001), @@ -142743,80 +142762,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(3009), }, + [582] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3415), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(582), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(2416), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2416), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(2416), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__regular_rescue_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__regular_ensure_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, [583] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6107), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3347), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(583), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym__control_expressions] = STATE(6566), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(6109), - [sym_double_splat] = STATE(6109), - [sym_named_expr] = STATE(6109), - [sym_argument_list_no_parens] = STATE(6247), - [sym_argument_list_with_parens] = STATE(6247), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_break] = ACTIONS(2376), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2376), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__modifier_if_keyword] = ACTIONS(2376), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__regular_rescue_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__regular_ensure_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [584] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5966), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(584), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym__control_expressions] = STATE(6305), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(5855), + [sym_double_splat] = STATE(5855), + [sym_named_expr] = STATE(5855), + [sym_argument_list_no_parens] = STATE(6618), + [sym_argument_list_with_parens] = STATE(6618), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(2913), [sym_comment] = ACTIONS(5), @@ -142831,30 +143204,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(2925), [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_RBRACK] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), [anon_sym_BANG] = ACTIONS(2933), [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), [anon_sym_typeof] = ACTIONS(2941), @@ -142874,12 +143247,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_var] = ACTIONS(2959), [sym_self] = ACTIONS(2915), [anon_sym_LPAREN2] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1269), [sym_private] = ACTIONS(2963), [sym_protected] = ACTIONS(2963), - [anon_sym_RBRACK_QMARK] = ACTIONS(1257), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_RBRACK_QMARK] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), [anon_sym_begin] = ACTIONS(2965), [anon_sym_while] = ACTIONS(2967), [anon_sym_until] = ACTIONS(2969), @@ -142889,27 +143262,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2977), [sym__start_of_named_tuple] = ACTIONS(2979), - [sym__start_of_index_operator] = ACTIONS(1257), + [sym__start_of_index_operator] = ACTIONS(1269), [sym_unary_plus] = ACTIONS(2981), [sym_unary_minus] = ACTIONS(2981), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), [sym_unary_wrapping_plus] = ACTIONS(2983), [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), [sym__unary_star] = ACTIONS(2985), - [sym__binary_star] = ACTIONS(1257), + [sym__binary_star] = ACTIONS(1269), [sym__unary_double_star] = ACTIONS(2987), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), [sym__beginless_range_operator] = ACTIONS(2989), [sym__regex_start] = ACTIONS(2991), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), [sym__regular_if_keyword] = ACTIONS(2993), [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__modulo_operator] = ACTIONS(1257), + [sym__modulo_operator] = ACTIONS(1269), [sym__string_literal_start] = ACTIONS(2997), [sym__string_percent_literal_start] = ACTIONS(2999), [sym__command_percent_literal_start] = ACTIONS(3001), @@ -142920,429 +143293,630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(3009), }, - [584] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3311), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(584), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2901), + [585] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3957), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(2266), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_break] = ACTIONS(2464), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2464), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__modifier_if_keyword] = ACTIONS(2464), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__regular_rescue_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__regular_ensure_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [anon_sym_RBRACE] = ACTIONS(2266), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_RBRACK] = ACTIONS(2266), + [anon_sym_EQ_GT] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_when] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [anon_sym_in] = ACTIONS(2272), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2266), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - }, - [585] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6290), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5185), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6412), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(585), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym__control_expressions] = STATE(6849), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_splat] = STATE(6418), - [sym_double_splat] = STATE(6418), - [sym_named_expr] = STATE(6418), - [sym_argument_list_no_parens] = STATE(6912), - [sym_argument_list_with_parens] = STATE(6912), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3057), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym__end_of_with_expression] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(3085), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(3087), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3109), + [sym__end_of_range] = ACTIONS(3019), }, [586] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4202), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4608), + [sym__statement] = STATE(9034), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4882), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), [sym_heredoc_body] = STATE(586), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(2322), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_annotation_def] = STATE(8828), + [sym_annotation] = STATE(8828), + [sym_module_def] = STATE(8828), + [sym_class_def] = STATE(8828), + [sym_struct_def] = STATE(8828), + [sym_enum_def] = STATE(8828), + [sym_lib_def] = STATE(8828), + [sym_top_level_fun_def] = STATE(8828), + [sym__base_method_def] = STATE(170), + [sym_method_def] = STATE(8828), + [sym_abstract_method_def] = STATE(8828), + [sym_include] = STATE(8828), + [sym_extend] = STATE(8828), + [sym_return] = STATE(8828), + [sym_next] = STATE(8828), + [sym_break] = STATE(8828), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4541), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7862), + [sym_index_operator] = STATE(2301), + [sym_index_call] = STATE(2301), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_const_assign] = STATE(8828), + [sym_operator_assign] = STATE(4608), + [sym_lhs_splat] = STATE(10912), + [sym_multi_assign] = STATE(8828), + [sym_type_declaration] = STATE(4608), + [sym_alias] = STATE(8828), + [sym_begin_block] = STATE(4608), + [sym_modifier_rescue] = STATE(8828), + [sym_modifier_ensure] = STATE(8828), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_modifier_if] = STATE(8828), + [sym_modifier_unless] = STATE(8828), + [sym_require] = STATE(8828), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat1] = STATE(1055), + [sym_identifier] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_annotation] = ACTIONS(2548), + [anon_sym_AT_LBRACK] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2554), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_class] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_lib] = ACTIONS(2564), + [anon_sym_fun] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(2572), + [anon_sym_extend] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_next] = ACTIONS(2578), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(2588), + [sym_class_var] = ACTIONS(2588), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2590), + [sym_protected] = ACTIONS(2592), + [anon_sym_alias] = ACTIONS(2594), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_require] = ACTIONS(2596), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [587] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6555), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5258), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6588), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(587), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym__control_expressions] = STATE(6878), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_splat] = STATE(6600), + [sym_double_splat] = STATE(6600), + [sym_named_expr] = STATE(6600), + [sym_argument_list_no_parens] = STATE(6728), + [sym_argument_list_with_parens] = STATE(6728), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3023), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3067), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym__end_of_with_expression] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(3095), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(3097), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(1269), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3119), + }, + [588] = { + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8405), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(588), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat1] = STATE(1057), + [sym_identifier] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -143355,31 +143929,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_annotation] = ACTIONS(1301), + [anon_sym_AT_LBRACK] = ACTIONS(1305), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_abstract] = ACTIONS(1309), + [anon_sym_class] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_lib] = ACTIONS(1317), + [anon_sym_fun] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_def] = ACTIONS(59), + [anon_sym_include] = ACTIONS(1325), + [anon_sym_extend] = ACTIONS(1327), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_next] = ACTIONS(1331), + [anon_sym_break] = ACTIONS(1333), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -143392,53 +143961,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1353), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(1357), + [sym_class_var] = ACTIONS(1357), [sym_self] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [sym_private] = ACTIONS(1359), + [sym_protected] = ACTIONS(1361), + [anon_sym_alias] = ACTIONS(1363), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2324), + [anon_sym_require] = ACTIONS(1373), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(2322), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(2322), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__regular_rescue_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__regular_ensure_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -143447,431 +143996,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(1413), [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3115), - }, - [587] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3979), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(587), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(2302), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2302), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(2302), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__regular_ensure_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3125), - }, - [588] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4191), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(588), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(2322), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2322), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(2322), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__regular_ensure_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3127), }, [589] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4038), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4241), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(589), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(2322), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(2304), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -143879,45 +144075,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(465), [aux_sym_float_token2] = ACTIONS(467), [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2304), [sym_operator_symbol] = ACTIONS(471), [sym_unquoted_symbol] = ACTIONS(471), [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_RBRACK] = ACTIONS(2322), - [anon_sym_EQ_GT] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACK] = ACTIONS(2304), + [anon_sym_EQ_GT] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), [anon_sym_BANG] = ACTIONS(483), [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), [anon_sym_with] = ACTIONS(487), [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -143925,48 +144121,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(2322), + [anon_sym_QMARK] = ACTIONS(2304), [sym_private] = ACTIONS(515), [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2324), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2306), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_when] = ACTIONS(2324), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_when] = ACTIONS(2306), [anon_sym_case] = ACTIONS(529), [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2306), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2322), + [sym__start_of_brace_block] = ACTIONS(2304), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(2322), + [sym__start_of_index_operator] = ACTIONS(2304), [sym_unary_plus] = ACTIONS(541), [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), [sym_unary_wrapping_plus] = ACTIONS(543), [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(2322), + [sym__modulo_operator] = ACTIONS(2304), [sym__string_literal_start] = ACTIONS(559), [sym__string_percent_literal_start] = ACTIONS(561), [sym__command_percent_literal_start] = ACTIONS(563), @@ -143975,455 +144171,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3137), + [sym__end_of_range] = ACTIONS(3121), }, [590] = { - [sym__parenthesized_statement] = STATE(4749), - [sym__statement] = STATE(9031), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(5006), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(4608), + [sym__statement] = STATE(9151), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4882), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), [sym_heredoc_body] = STATE(590), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_annotation_def] = STATE(8953), - [sym_annotation] = STATE(8953), - [sym_module_def] = STATE(8953), - [sym_class_def] = STATE(8953), - [sym_struct_def] = STATE(8953), - [sym_enum_def] = STATE(8953), - [sym_lib_def] = STATE(8953), - [sym_top_level_fun_def] = STATE(8953), - [sym__base_method_def] = STATE(154), - [sym_method_def] = STATE(8953), - [sym_abstract_method_def] = STATE(8953), - [sym_include] = STATE(8953), - [sym_extend] = STATE(8953), - [sym_return] = STATE(8953), - [sym_next] = STATE(8953), - [sym_break] = STATE(8953), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4439), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2274), - [sym_index_call] = STATE(2274), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_const_assign] = STATE(8953), - [sym_operator_assign] = STATE(4749), - [sym_lhs_splat] = STATE(10850), - [sym_multi_assign] = STATE(8953), - [sym_type_declaration] = STATE(4749), - [sym_alias] = STATE(8953), - [sym_begin_block] = STATE(4749), - [sym_modifier_rescue] = STATE(8953), - [sym_modifier_ensure] = STATE(8953), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_modifier_if] = STATE(8953), - [sym_modifier_unless] = STATE(8953), - [sym_require] = STATE(8953), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat1] = STATE(1056), - [sym_identifier] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_annotation] = ACTIONS(2496), - [anon_sym_AT_LBRACK] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_lib] = ACTIONS(2512), - [anon_sym_fun] = ACTIONS(2514), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_annotation_def] = STATE(8828), + [sym_annotation] = STATE(8828), + [sym_module_def] = STATE(8828), + [sym_class_def] = STATE(8828), + [sym_struct_def] = STATE(8828), + [sym_enum_def] = STATE(8828), + [sym_lib_def] = STATE(8828), + [sym_top_level_fun_def] = STATE(8828), + [sym__base_method_def] = STATE(170), + [sym_method_def] = STATE(8828), + [sym_abstract_method_def] = STATE(8828), + [sym_include] = STATE(8828), + [sym_extend] = STATE(8828), + [sym_return] = STATE(8828), + [sym_next] = STATE(8828), + [sym_break] = STATE(8828), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4541), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7862), + [sym_index_operator] = STATE(2301), + [sym_index_call] = STATE(2301), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_const_assign] = STATE(8828), + [sym_operator_assign] = STATE(4608), + [sym_lhs_splat] = STATE(10912), + [sym_multi_assign] = STATE(8828), + [sym_type_declaration] = STATE(4608), + [sym_alias] = STATE(8828), + [sym_begin_block] = STATE(4608), + [sym_modifier_rescue] = STATE(8828), + [sym_modifier_ensure] = STATE(8828), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_modifier_if] = STATE(8828), + [sym_modifier_unless] = STATE(8828), + [sym_require] = STATE(8828), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat1] = STATE(1055), + [sym_identifier] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_annotation] = ACTIONS(2548), + [anon_sym_AT_LBRACK] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2554), + [anon_sym_abstract] = ACTIONS(2556), + [anon_sym_class] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2560), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_lib] = ACTIONS(2564), + [anon_sym_fun] = ACTIONS(2566), [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(2520), - [anon_sym_extend] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_next] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(2536), - [sym_class_var] = ACTIONS(2536), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2538), - [sym_protected] = ACTIONS(2540), - [anon_sym_alias] = ACTIONS(2542), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2544), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [anon_sym_include] = ACTIONS(2572), + [anon_sym_extend] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_next] = ACTIONS(2578), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(2588), + [sym_class_var] = ACTIONS(2588), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2590), + [sym_protected] = ACTIONS(2592), + [anon_sym_alias] = ACTIONS(2594), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_require] = ACTIONS(2596), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, [591] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6290), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5185), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6412), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), + [sym__parenthesized_statement] = STATE(4030), + [sym__statement] = STATE(8442), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4572), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(591), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym__control_expressions] = STATE(6668), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_splat] = STATE(6418), - [sym_double_splat] = STATE(6418), - [sym_named_expr] = STATE(6418), - [sym_argument_list_no_parens] = STATE(6912), - [sym_argument_list_with_parens] = STATE(6912), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3057), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym__end_of_with_expression] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(3085), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(3087), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(1273), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3109), - }, - [592] = { - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8529), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(592), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat1] = STATE(1049), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_annotation_def] = STATE(8585), + [sym_annotation] = STATE(8585), + [sym_module_def] = STATE(8585), + [sym_class_def] = STATE(8585), + [sym_struct_def] = STATE(8585), + [sym_enum_def] = STATE(8585), + [sym_lib_def] = STATE(8585), + [sym_top_level_fun_def] = STATE(8585), + [sym__base_method_def] = STATE(151), + [sym_method_def] = STATE(8585), + [sym_abstract_method_def] = STATE(8585), + [sym_include] = STATE(8585), + [sym_extend] = STATE(8585), + [sym_return] = STATE(8585), + [sym_next] = STATE(8585), + [sym_break] = STATE(8585), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3881), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2269), + [sym_index_call] = STATE(2269), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_const_assign] = STATE(8585), + [sym_operator_assign] = STATE(4030), + [sym_lhs_splat] = STATE(10878), + [sym_multi_assign] = STATE(8585), + [sym_type_declaration] = STATE(4030), + [sym_alias] = STATE(8585), + [sym_begin_block] = STATE(4030), + [sym_modifier_rescue] = STATE(8585), + [sym_modifier_ensure] = STATE(8585), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_modifier_if] = STATE(8585), + [sym_modifier_unless] = STATE(8585), + [sym_require] = STATE(8585), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat1] = STATE(1057), [sym_identifier] = ACTIONS(1277), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -144505,101 +144525,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [593] = { - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8226), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(593), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [592] = { + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8160), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(592), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), @@ -144681,76 +144701,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [593] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6396), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5468), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(6366), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(593), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__control_expressions] = STATE(4546), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(6614), + [sym_double_splat] = STATE(6614), + [sym_named_expr] = STATE(6614), + [sym_argument_list_no_parens] = STATE(4345), + [sym_argument_list_with_parens] = STATE(4345), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3123), + [anon_sym_LPAREN] = ACTIONS(1959), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3135), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3137), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), + [sym_self] = ACTIONS(1961), + [anon_sym_LPAREN2] = ACTIONS(2007), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_COLON2] = ACTIONS(1263), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(3147), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(3149), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(3151), + [sym__regex_start] = ACTIONS(2037), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3153), + }, [594] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4187), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6555), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5258), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6588), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), [sym_heredoc_body] = STATE(594), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(2302), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym__control_expressions] = STATE(6725), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_splat] = STATE(6600), + [sym_double_splat] = STATE(6600), + [sym_named_expr] = STATE(6600), + [sym_argument_list_no_parens] = STATE(6728), + [sym_argument_list_with_parens] = STATE(6728), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3023), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1261), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ_GT] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_BANG_TILDE] = ACTIONS(1261), + [anon_sym_EQ_TILDE] = ACTIONS(1261), + [anon_sym_AMP_STAR] = ACTIONS(1263), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1261), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3067), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_QMARK] = ACTIONS(1261), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(1261), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(1261), + [sym__end_of_with_expression] = ACTIONS(1261), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_binary_plus] = ACTIONS(1261), + [sym_binary_minus] = ACTIONS(1261), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym_binary_wrapping_plus] = ACTIONS(1261), + [sym_binary_wrapping_minus] = ACTIONS(1261), + [sym__unary_star] = ACTIONS(3095), + [sym__binary_star] = ACTIONS(1261), + [sym__unary_double_star] = ACTIONS(3097), + [sym__binary_double_star] = ACTIONS(1261), + [sym_binary_ampersand] = ACTIONS(1261), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(1261), + [sym__binary_double_slash] = ACTIONS(1261), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(1261), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3119), + }, + [595] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4182), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(595), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(2266), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -144763,31 +145135,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -144800,53 +145172,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2272), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(2302), + [sym__line_break] = ACTIONS(2266), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(2302), + [sym__modifier_if_keyword] = ACTIONS(2266), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__regular_rescue_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__regular_ensure_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__regular_rescue_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__regular_ensure_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -144855,455 +145227,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(1413), [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3139), - }, - [595] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6437), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5319), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(6255), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(595), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__control_expressions] = STATE(4454), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(6246), - [sym_double_splat] = STATE(6246), - [sym_named_expr] = STATE(6246), - [sym_argument_list_no_parens] = STATE(4315), - [sym_argument_list_with_parens] = STATE(4315), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_GT_GT] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1257), - [anon_sym_EQ_EQ] = ACTIONS(1259), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1259), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ_GT] = ACTIONS(1257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_BANG_TILDE] = ACTIONS(1257), - [anon_sym_EQ_TILDE] = ACTIONS(1257), - [anon_sym_AMP_STAR] = ACTIONS(1259), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1257), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3155), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [anon_sym_LPAREN2] = ACTIONS(2007), - [anon_sym_QMARK] = ACTIONS(1257), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_COLON2] = ACTIONS(1259), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(1257), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_binary_plus] = ACTIONS(1257), - [sym_binary_minus] = ACTIONS(1257), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym_binary_wrapping_plus] = ACTIONS(1257), - [sym_binary_wrapping_minus] = ACTIONS(1257), - [sym__unary_star] = ACTIONS(3165), - [sym__binary_star] = ACTIONS(1257), - [sym__unary_double_star] = ACTIONS(3167), - [sym__binary_double_star] = ACTIONS(1257), - [sym_binary_ampersand] = ACTIONS(1257), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(1257), - [sym__binary_double_slash] = ACTIONS(1257), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(1257), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3171), + [sym__end_of_range] = ACTIONS(3159), }, [596] = { - [sym__parenthesized_statement] = STATE(4749), - [sym__statement] = STATE(8892), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(5006), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4272), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(596), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_annotation_def] = STATE(8953), - [sym_annotation] = STATE(8953), - [sym_module_def] = STATE(8953), - [sym_class_def] = STATE(8953), - [sym_struct_def] = STATE(8953), - [sym_enum_def] = STATE(8953), - [sym_lib_def] = STATE(8953), - [sym_top_level_fun_def] = STATE(8953), - [sym__base_method_def] = STATE(154), - [sym_method_def] = STATE(8953), - [sym_abstract_method_def] = STATE(8953), - [sym_include] = STATE(8953), - [sym_extend] = STATE(8953), - [sym_return] = STATE(8953), - [sym_next] = STATE(8953), - [sym_break] = STATE(8953), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4439), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2274), - [sym_index_call] = STATE(2274), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_const_assign] = STATE(8953), - [sym_operator_assign] = STATE(4749), - [sym_lhs_splat] = STATE(10850), - [sym_multi_assign] = STATE(8953), - [sym_type_declaration] = STATE(4749), - [sym_alias] = STATE(8953), - [sym_begin_block] = STATE(4749), - [sym_modifier_rescue] = STATE(8953), - [sym_modifier_ensure] = STATE(8953), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_modifier_if] = STATE(8953), - [sym_modifier_unless] = STATE(8953), - [sym_require] = STATE(8953), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat1] = STATE(1056), - [sym_identifier] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_annotation] = ACTIONS(2496), - [anon_sym_AT_LBRACK] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_struct] = ACTIONS(2508), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_lib] = ACTIONS(2512), - [anon_sym_fun] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(2520), - [anon_sym_extend] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2524), - [anon_sym_next] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(2536), - [sym_class_var] = ACTIONS(2536), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2538), - [sym_protected] = ACTIONS(2540), - [anon_sym_alias] = ACTIONS(2542), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_require] = ACTIONS(2544), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(2304), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2304), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(2304), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__regular_ensure_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3169), }, [597] = { - [sym__parenthesized_statement] = STATE(3065), - [sym__statement] = STATE(8217), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3166), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(2978), + [sym__statement] = STATE(8262), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3285), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(597), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_annotation_def] = STATE(8088), - [sym_annotation] = STATE(8088), - [sym_module_def] = STATE(8088), - [sym_class_def] = STATE(8088), - [sym_struct_def] = STATE(8088), - [sym_enum_def] = STATE(8088), - [sym_lib_def] = STATE(8088), - [sym_top_level_fun_def] = STATE(8088), - [sym__base_method_def] = STATE(145), - [sym_method_def] = STATE(8088), - [sym_abstract_method_def] = STATE(8088), - [sym_include] = STATE(8088), - [sym_extend] = STATE(8088), - [sym_return] = STATE(8088), - [sym_next] = STATE(8088), - [sym_break] = STATE(8088), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2786), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_annotation_def] = STATE(8107), + [sym_annotation] = STATE(8107), + [sym_module_def] = STATE(8107), + [sym_class_def] = STATE(8107), + [sym_struct_def] = STATE(8107), + [sym_enum_def] = STATE(8107), + [sym_lib_def] = STATE(8107), + [sym_top_level_fun_def] = STATE(8107), + [sym__base_method_def] = STATE(152), + [sym_method_def] = STATE(8107), + [sym_abstract_method_def] = STATE(8107), + [sym_include] = STATE(8107), + [sym_extend] = STATE(8107), + [sym_return] = STATE(8107), + [sym_next] = STATE(8107), + [sym_break] = STATE(8107), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2815), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2201), - [sym_index_call] = STATE(2201), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_const_assign] = STATE(8088), - [sym_operator_assign] = STATE(3065), - [sym_lhs_splat] = STATE(10796), - [sym_multi_assign] = STATE(8088), - [sym_type_declaration] = STATE(3065), - [sym_alias] = STATE(8088), - [sym_begin_block] = STATE(3065), - [sym_modifier_rescue] = STATE(8088), - [sym_modifier_ensure] = STATE(8088), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_modifier_if] = STATE(8088), - [sym_modifier_unless] = STATE(8088), - [sym_require] = STATE(8088), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat1] = STATE(1051), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7858), + [sym_index_operator] = STATE(2218), + [sym_index_call] = STATE(2218), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_const_assign] = STATE(8107), + [sym_operator_assign] = STATE(2978), + [sym_lhs_splat] = STATE(10835), + [sym_multi_assign] = STATE(8107), + [sym_type_declaration] = STATE(2978), + [sym_alias] = STATE(8107), + [sym_begin_block] = STATE(2978), + [sym_modifier_rescue] = STATE(8107), + [sym_modifier_ensure] = STATE(8107), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_modifier_if] = STATE(8107), + [sym_modifier_unless] = STATE(8107), + [sym_require] = STATE(8107), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), @@ -145386,432 +145582,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [598] = { - [sym__parenthesized_statement] = STATE(4108), - [sym__statement] = STATE(8414), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4337), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6396), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5468), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(6366), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(598), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_annotation_def] = STATE(8373), - [sym_annotation] = STATE(8373), - [sym_module_def] = STATE(8373), - [sym_class_def] = STATE(8373), - [sym_struct_def] = STATE(8373), - [sym_enum_def] = STATE(8373), - [sym_lib_def] = STATE(8373), - [sym_top_level_fun_def] = STATE(8373), - [sym__base_method_def] = STATE(146), - [sym_method_def] = STATE(8373), - [sym_abstract_method_def] = STATE(8373), - [sym_include] = STATE(8373), - [sym_extend] = STATE(8373), - [sym_return] = STATE(8373), - [sym_next] = STATE(8373), - [sym_break] = STATE(8373), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3699), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2248), - [sym_index_call] = STATE(2248), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_const_assign] = STATE(8373), - [sym_operator_assign] = STATE(4108), - [sym_lhs_splat] = STATE(10745), - [sym_multi_assign] = STATE(8373), - [sym_type_declaration] = STATE(4108), - [sym_alias] = STATE(8373), - [sym_begin_block] = STATE(4108), - [sym_modifier_rescue] = STATE(8373), - [sym_modifier_ensure] = STATE(8373), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_modifier_if] = STATE(8373), - [sym_modifier_unless] = STATE(8373), - [sym_require] = STATE(8373), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat1] = STATE(1049), - [sym_identifier] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_annotation] = ACTIONS(1301), - [anon_sym_AT_LBRACK] = ACTIONS(1305), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_abstract] = ACTIONS(1309), - [anon_sym_class] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_lib] = ACTIONS(1317), - [anon_sym_fun] = ACTIONS(1319), - [anon_sym_STAR] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_def] = ACTIONS(59), - [anon_sym_include] = ACTIONS(1325), - [anon_sym_extend] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_next] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(1357), - [sym_class_var] = ACTIONS(1357), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1359), - [sym_protected] = ACTIONS(1361), - [anon_sym_alias] = ACTIONS(1363), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_require] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [599] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3974), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(599), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(2302), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(2302), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_RBRACK] = ACTIONS(2302), - [anon_sym_EQ_GT] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_when] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(2308), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2302), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3173), - }, - [600] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6437), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5319), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(6255), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(600), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__control_expressions] = STATE(4460), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(6246), - [sym_double_splat] = STATE(6246), - [sym_named_expr] = STATE(6246), - [sym_argument_list_no_parens] = STATE(4315), - [sym_argument_list_with_parens] = STATE(4315), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3141), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__control_expressions] = STATE(4377), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(6614), + [sym_double_splat] = STATE(6614), + [sym_named_expr] = STATE(6614), + [sym_argument_list_no_parens] = STATE(4345), + [sym_argument_list_with_parens] = STATE(4345), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3123), [anon_sym_LPAREN] = ACTIONS(1959), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -145825,54 +145669,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1273), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_GT_GT] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_EQ_GT] = ACTIONS(1273), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_BANG_TILDE] = ACTIONS(1273), - [anon_sym_EQ_TILDE] = ACTIONS(1273), - [anon_sym_AMP_STAR] = ACTIONS(1275), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1271), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ_GT] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_BANG_TILDE] = ACTIONS(1269), + [anon_sym_EQ_TILDE] = ACTIONS(1269), + [anon_sym_AMP_STAR] = ACTIONS(1271), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1269), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3151), + [sym__constant_segment] = ACTIONS(3133), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3155), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3137), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), [anon_sym_LPAREN2] = ACTIONS(2007), - [anon_sym_QMARK] = ACTIONS(1273), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1273), - [anon_sym_COLON2] = ACTIONS(1275), + [anon_sym_QMARK] = ACTIONS(1269), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_COLON2] = ACTIONS(1271), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -145882,27 +145726,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(1273), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_binary_plus] = ACTIONS(1273), - [sym_binary_minus] = ACTIONS(1273), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym_binary_wrapping_plus] = ACTIONS(1273), - [sym_binary_wrapping_minus] = ACTIONS(1273), - [sym__unary_star] = ACTIONS(3165), - [sym__binary_star] = ACTIONS(1273), - [sym__unary_double_star] = ACTIONS(3167), - [sym__binary_double_star] = ACTIONS(1273), - [sym_binary_ampersand] = ACTIONS(1273), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym__start_of_index_operator] = ACTIONS(1269), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_binary_plus] = ACTIONS(1269), + [sym_binary_minus] = ACTIONS(1269), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym_binary_wrapping_plus] = ACTIONS(1269), + [sym_binary_wrapping_minus] = ACTIONS(1269), + [sym__unary_star] = ACTIONS(3147), + [sym__binary_star] = ACTIONS(1269), + [sym__unary_double_star] = ACTIONS(3149), + [sym__binary_double_star] = ACTIONS(1269), + [sym_binary_ampersand] = ACTIONS(1269), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(1273), - [sym__binary_double_slash] = ACTIONS(1273), + [sym__binary_slash] = ACTIONS(1269), + [sym__binary_double_slash] = ACTIONS(1269), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(1273), + [sym__modulo_operator] = ACTIONS(1269), [sym__string_literal_start] = ACTIONS(2043), [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), @@ -145911,78 +145755,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(2053), [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3171), + [sym__start_of_parenless_args] = ACTIONS(3153), }, - [601] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4326), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(601), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(2322), + [599] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4170), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(599), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(2304), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -145995,30 +145839,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -146031,53 +145876,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2324), + [anon_sym_else] = ACTIONS(2306), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(2322), + [sym__line_break] = ACTIONS(2304), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(1391), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(2322), + [sym__modifier_if_keyword] = ACTIONS(2304), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__regular_rescue_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__regular_ensure_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__regular_rescue_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__regular_ensure_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -146086,79 +145931,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(1413), [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3183), + [sym__end_of_range] = ACTIONS(3171), }, - [602] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4012), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(602), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [600] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4052), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(600), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_break] = ACTIONS(2266), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2266), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__modifier_if_keyword] = ACTIONS(2266), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__regular_ensure_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3173), + }, + [601] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4063), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(601), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(2464), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(2376), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -146166,45 +146187,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(465), [aux_sym_float_token2] = ACTIONS(467), [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2376), [sym_operator_symbol] = ACTIONS(471), [sym_unquoted_symbol] = ACTIONS(471), [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_RBRACK] = ACTIONS(2464), - [anon_sym_EQ_GT] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(483), [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(487), [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -146212,48 +146233,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(515), [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2378), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_when] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_when] = ACTIONS(2378), [anon_sym_case] = ACTIONS(529), [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2378), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2464), + [sym__start_of_brace_block] = ACTIONS(2376), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(541), [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(543), [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(559), [sym__string_percent_literal_start] = ACTIONS(561), [sym__command_percent_literal_start] = ACTIONS(563), @@ -146263,77 +146284,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [603] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4078), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(603), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [602] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4007), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(602), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(2472), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(2416), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -146341,45 +146362,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(465), [aux_sym_float_token2] = ACTIONS(467), [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2416), [sym_operator_symbol] = ACTIONS(471), [sym_unquoted_symbol] = ACTIONS(471), [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RBRACK] = ACTIONS(2472), - [anon_sym_EQ_GT] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_RBRACK] = ACTIONS(2416), + [anon_sym_EQ_GT] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(483), [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(487), [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -146387,48 +146408,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(515), [sym_protected] = ACTIONS(515), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2418), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_when] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_when] = ACTIONS(2418), [anon_sym_case] = ACTIONS(529), [anon_sym_select] = ACTIONS(531), - [anon_sym_in] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2418), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2472), + [sym__start_of_brace_block] = ACTIONS(2416), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(541), [sym_unary_minus] = ACTIONS(541), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(543), [sym_unary_wrapping_minus] = ACTIONS(543), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(559), [sym__string_percent_literal_start] = ACTIONS(561), [sym__command_percent_literal_start] = ACTIONS(563), @@ -146438,76 +146459,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, + [603] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4411), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(603), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), + [sym_self] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_break] = ACTIONS(2304), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__modifier_if_keyword] = ACTIONS(2304), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__regular_rescue_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__regular_ensure_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3183), + }, [604] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4193), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4361), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(604), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(2464), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(2266), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -146520,31 +146716,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -146557,53 +146752,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1353), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), [sym_self] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2272), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(2464), + [sym__line_break] = ACTIONS(2266), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(1391), [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(2464), + [sym__modifier_if_keyword] = ACTIONS(2266), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__regular_rescue_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__regular_ensure_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__regular_rescue_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__regular_ensure_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -146612,77 +146807,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(1413), [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3185), }, [605] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4211), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4190), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(605), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_SEMI] = ACTIONS(2472), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(2416), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -146695,31 +146891,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -146732,53 +146928,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2418), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(2472), + [sym__line_break] = ACTIONS(2416), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(2472), + [sym__modifier_if_keyword] = ACTIONS(2416), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__regular_rescue_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__regular_ensure_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__regular_rescue_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__regular_ensure_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -146789,75 +146985,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [606] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4463), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4174), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(606), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(2302), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(2376), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -146870,30 +147066,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(1885), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -146906,53 +147103,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2378), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(2302), + [sym__line_break] = ACTIONS(2376), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(1391), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(2302), + [sym__modifier_if_keyword] = ACTIONS(2376), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__regular_rescue_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__regular_ensure_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__regular_rescue_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__regular_ensure_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -146961,79 +147158,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(1413), [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3185), }, [607] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4262), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4036), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(607), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(3119), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -147046,37 +147242,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(603), [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(613), [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_typeof] = ACTIONS(621), [anon_sym_sizeof] = ACTIONS(623), [anon_sym_instance_sizeof] = ACTIONS(625), [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), + [sym__constant_segment] = ACTIONS(3165), [anon_sym_COLON_COLON] = ACTIONS(631), [anon_sym___LINE__] = ACTIONS(633), [anon_sym___END_LINE__] = ACTIONS(633), @@ -147084,51 +147280,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(633), [sym_special_variable] = ACTIONS(635), [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), + [sym_identifier_method_call] = ACTIONS(3167), [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(645), [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2378), [anon_sym_begin] = ACTIONS(653), [anon_sym_while] = ACTIONS(655), [anon_sym_until] = ACTIONS(657), [anon_sym_case] = ACTIONS(659), [anon_sym_select] = ACTIONS(661), [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(2472), + [sym__line_break] = ACTIONS(2376), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2472), + [sym__start_of_brace_block] = ACTIONS(2376), [sym__start_of_hash_or_tuple] = ACTIONS(667), [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(671), [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(673), [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(2472), + [sym__modifier_if_keyword] = ACTIONS(2376), [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__regular_ensure_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__regular_ensure_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(689), [sym__string_percent_literal_start] = ACTIONS(691), [sym__command_percent_literal_start] = ACTIONS(693), @@ -147139,76 +147335,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [608] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4161), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4074), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(608), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(3119), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -147221,37 +147417,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(603), [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(613), [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), [anon_sym_typeof] = ACTIONS(621), [anon_sym_sizeof] = ACTIONS(623), [anon_sym_instance_sizeof] = ACTIONS(625), [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), + [sym__constant_segment] = ACTIONS(3165), [anon_sym_COLON_COLON] = ACTIONS(631), [anon_sym___LINE__] = ACTIONS(633), [anon_sym___END_LINE__] = ACTIONS(633), @@ -147259,51 +147455,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(633), [sym_special_variable] = ACTIONS(635), [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), + [sym_identifier_method_call] = ACTIONS(3167), [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(645), [sym_protected] = ACTIONS(645), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2418), [anon_sym_begin] = ACTIONS(653), [anon_sym_while] = ACTIONS(655), [anon_sym_until] = ACTIONS(657), [anon_sym_case] = ACTIONS(659), [anon_sym_select] = ACTIONS(661), [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_break] = ACTIONS(2464), + [sym__line_break] = ACTIONS(2416), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2464), + [sym__start_of_brace_block] = ACTIONS(2416), [sym__start_of_hash_or_tuple] = ACTIONS(667), [sym__start_of_named_tuple] = ACTIONS(669), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(671), [sym_unary_minus] = ACTIONS(671), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(673), [sym_unary_wrapping_minus] = ACTIONS(673), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(685), - [sym__modifier_if_keyword] = ACTIONS(2464), + [sym__modifier_if_keyword] = ACTIONS(2416), [sym__regular_unless_keyword] = ACTIONS(687), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__regular_ensure_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__regular_ensure_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(689), [sym__string_percent_literal_start] = ACTIONS(691), [sym__command_percent_literal_start] = ACTIONS(693), @@ -147314,75 +147510,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [609] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4391), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4701), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(609), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(2266), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(2266), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_RBRACK] = ACTIONS(2266), + [anon_sym_EQ_GT] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_when] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2272), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3195), + }, + [610] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4878), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(610), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(2304), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(2304), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACK] = ACTIONS(2304), + [anon_sym_EQ_GT] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(1979), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_when] = ACTIONS(2306), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [anon_sym_in] = ACTIONS(2306), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3197), + }, + [611] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4535), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(611), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2416), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -147396,29 +147940,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(3177), [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -147437,47 +147981,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(3179), [sym_class_var] = ACTIONS(3179), [sym_self] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(3181), [sym_protected] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2418), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(2464), + [sym__line_break] = ACTIONS(2416), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(1387), [sym_unary_minus] = ACTIONS(1387), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(1389), [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(1391), [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(2464), + [sym__modifier_if_keyword] = ACTIONS(2416), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__regular_rescue_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__regular_ensure_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__regular_rescue_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__regular_ensure_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -147487,76 +148031,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [610] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4381), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(610), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [612] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4565), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(612), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2376), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -147570,29 +148114,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(3177), [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -147611,47 +148155,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(3179), [sym_class_var] = ACTIONS(3179), [sym_self] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(3181), [sym_protected] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2378), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(2472), + [sym__line_break] = ACTIONS(2376), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(1387), [sym_unary_minus] = ACTIONS(1387), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(1389), [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(1391), [sym__regex_start] = ACTIONS(1393), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(2472), + [sym__modifier_if_keyword] = ACTIONS(2376), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__regular_rescue_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__regular_ensure_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__regular_rescue_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__regular_ensure_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -147661,77 +148205,598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [611] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4672), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(611), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [613] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4813), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(613), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(2304), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(2304), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__regular_ensure_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3203), + }, + [614] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4864), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(614), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(2266), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(2266), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__regular_ensure_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3205), + }, + [615] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4911), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(615), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(2266), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(2266), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(2266), + [sym__modifier_rescue_keyword] = ACTIONS(2266), + [sym__regular_ensure_keyword] = ACTIONS(2266), + [sym__modifier_ensure_keyword] = ACTIONS(2266), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3215), + }, + [616] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4778), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(616), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(2322), + [anon_sym_RPAREN] = ACTIONS(2376), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -147739,38 +148804,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2376), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_RBRACK] = ACTIONS(2322), - [anon_sym_EQ_GT] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2376), + [anon_sym_EQ_GT] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(1979), [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -147789,42 +148854,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(2005), [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2322), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(2009), [sym_protected] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_when] = ACTIONS(2324), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_when] = ACTIONS(2378), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2378), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2322), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(2027), [sym_unary_minus] = ACTIONS(2027), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(2029), [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2322), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(2043), [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), @@ -147833,79 +148898,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(2053), [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3195), }, - [612] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4705), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(612), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [617] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4866), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(617), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2416), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -147913,38 +148977,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2416), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_RBRACK] = ACTIONS(2302), - [anon_sym_EQ_GT] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_RBRACK] = ACTIONS(2416), + [anon_sym_EQ_GT] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(1979), [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -147963,42 +149027,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(2005), [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(2009), [sym_protected] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_when] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_when] = ACTIONS(2418), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2308), + [anon_sym_in] = ACTIONS(2418), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2302), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(2027), [sym_unary_minus] = ACTIONS(2027), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(2029), [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(2043), [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), @@ -148007,1637 +149071,941 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(2053), [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3197), }, - [613] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4707), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(613), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(2302), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(2302), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__regular_ensure_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3203), - }, - [614] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4718), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(614), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(2322), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(2322), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__regular_ensure_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3205), - }, - [615] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4974), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(615), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(2322), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(2322), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(2322), - [sym__modifier_rescue_keyword] = ACTIONS(2322), - [sym__regular_ensure_keyword] = ACTIONS(2322), - [sym__modifier_ensure_keyword] = ACTIONS(2322), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3215), - }, - [616] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4738), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(616), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(2472), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(2472), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RBRACK] = ACTIONS(2472), - [anon_sym_EQ_GT] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_when] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2474), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [617] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4733), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(617), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(2464), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(2464), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_RBRACK] = ACTIONS(2464), - [anon_sym_EQ_GT] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_when] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2466), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [618] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4725), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(618), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(2472), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(2472), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__regular_ensure_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [618] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4893), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(618), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(2304), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(2304), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(2304), + [sym__modifier_rescue_keyword] = ACTIONS(2304), + [sym__regular_ensure_keyword] = ACTIONS(2304), + [sym__modifier_ensure_keyword] = ACTIONS(2304), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3217), }, [619] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4710), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4827), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), [sym_heredoc_body] = STATE(619), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(2464), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(2464), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__regular_ensure_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(2376), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(2376), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__regular_ensure_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, [620] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4899), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4607), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), [sym_heredoc_body] = STATE(620), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(2416), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(2416), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__regular_ensure_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [621] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4922), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(621), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), [sym_instance_var] = ACTIONS(3211), [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2302), + [sym_self] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(3213), [sym_protected] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(2302), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(2302), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(2302), - [sym__modifier_rescue_keyword] = ACTIONS(2302), - [sym__regular_ensure_keyword] = ACTIONS(2302), - [sym__modifier_ensure_keyword] = ACTIONS(2302), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(2416), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(2416), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(2416), + [sym__modifier_rescue_keyword] = ACTIONS(2416), + [sym__regular_ensure_keyword] = ACTIONS(2416), + [sym__modifier_ensure_keyword] = ACTIONS(2416), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3217), }, - [621] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4852), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(621), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [622] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4902), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(622), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), [sym_instance_var] = ACTIONS(3211), [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2472), + [sym_self] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(3213), [sym_protected] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(2472), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(2472), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(2472), - [sym__modifier_rescue_keyword] = ACTIONS(2472), - [sym__regular_ensure_keyword] = ACTIONS(2472), - [sym__modifier_ensure_keyword] = ACTIONS(2472), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(2376), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(2376), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(2376), + [sym__modifier_rescue_keyword] = ACTIONS(2376), + [sym__regular_ensure_keyword] = ACTIONS(2376), + [sym__modifier_ensure_keyword] = ACTIONS(2376), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [622] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5101), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(622), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [623] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5164), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(623), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_RPAREN] = ACTIONS(2266), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -149645,36 +150013,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2266), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_EQ_GT] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_end] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_end] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), [anon_sym_BANG] = ACTIONS(3223), [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -149693,42 +150061,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2266), [sym_private] = ACTIONS(3233), [sym_protected] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2308), - [anon_sym_when] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_when] = ACTIONS(2272), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2308), + [anon_sym_in] = ACTIONS(2272), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2302), + [sym__start_of_index_operator] = ACTIONS(2266), [sym_unary_plus] = ACTIONS(3237), [sym_unary_minus] = ACTIONS(3237), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), [sym_unary_wrapping_plus] = ACTIONS(3239), [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modulo_operator] = ACTIONS(2266), [sym__string_literal_start] = ACTIONS(2043), [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), @@ -149739,77 +150107,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(3243), }, - [623] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5058), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(623), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [624] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5208), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(624), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(2322), + [anon_sym_RPAREN] = ACTIONS(2304), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -149817,36 +150185,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2304), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_EQ_GT] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_end] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_end] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), [anon_sym_BANG] = ACTIONS(3223), [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -149865,42 +150233,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2322), + [anon_sym_QMARK] = ACTIONS(2304), [sym_private] = ACTIONS(3233), [sym_protected] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_when] = ACTIONS(2324), + [anon_sym_else] = ACTIONS(2306), + [anon_sym_when] = ACTIONS(2306), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2324), + [anon_sym_in] = ACTIONS(2306), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2322), + [sym__start_of_index_operator] = ACTIONS(2304), [sym_unary_plus] = ACTIONS(3237), [sym_unary_minus] = ACTIONS(3237), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), [sym_unary_wrapping_plus] = ACTIONS(3239), [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2322), + [sym__modulo_operator] = ACTIONS(2304), [sym__string_literal_start] = ACTIONS(2043), [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), @@ -149911,249 +150279,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(3245), }, - [624] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4938), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(624), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(2464), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(2464), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(2464), - [sym__modifier_rescue_keyword] = ACTIONS(2464), - [sym__regular_ensure_keyword] = ACTIONS(2464), - [sym__modifier_ensure_keyword] = ACTIONS(2464), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, [625] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5065), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5171), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(625), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(2472), + [anon_sym_RPAREN] = ACTIONS(2416), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -150161,36 +150357,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2416), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_EQ_GT] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_end] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_end] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(3223), [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -150209,42 +150405,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(3233), [sym_protected] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_when] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_when] = ACTIONS(2418), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2418), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(3237), [sym_unary_minus] = ACTIONS(3237), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(3239), [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(2043), [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), @@ -150255,75 +150451,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [626] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5366), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5376), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(626), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2266), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(745), @@ -150337,29 +150533,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(755), [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), [anon_sym_BANG] = ACTIONS(765), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(773), @@ -150378,43 +150574,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(791), [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2266), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2308), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2272), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(2308), + [anon_sym_then] = ACTIONS(2272), [anon_sym_case] = ACTIONS(811), [anon_sym_select] = ACTIONS(813), [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(2302), + [sym__line_break] = ACTIONS(2266), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2302), + [sym__start_of_brace_block] = ACTIONS(2266), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(2302), + [sym__start_of_index_operator] = ACTIONS(2266), [sym_unary_plus] = ACTIONS(823), [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), [sym_unary_wrapping_plus] = ACTIONS(825), [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), [sym__regular_if_keyword] = ACTIONS(837), [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modulo_operator] = ACTIONS(2266), [sym__string_literal_start] = ACTIONS(841), [sym__string_percent_literal_start] = ACTIONS(843), [sym__command_percent_literal_start] = ACTIONS(845), @@ -150426,76 +150622,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__end_of_range] = ACTIONS(3255), }, [627] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5050), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5282), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(627), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_then] = ACTIONS(2306), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(2304), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2304), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3257), + }, + [628] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5155), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(628), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(2464), + [anon_sym_RPAREN] = ACTIONS(2376), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -150503,36 +150870,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2376), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_EQ_GT] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_EQ_GT] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_end] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(3223), [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -150551,42 +150918,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(3233), [sym_protected] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_when] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_when] = ACTIONS(2378), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2378), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(3237), [sym_unary_minus] = ACTIONS(3237), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(3239), [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(2043), [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), @@ -150596,76 +150963,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [628] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5226), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(628), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [629] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5322), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(629), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(2322), + [anon_sym_SEMI] = ACTIONS(2376), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(745), @@ -150679,29 +151046,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(755), [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(765), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(773), @@ -150720,43 +151087,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(791), [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(2322), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2324), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2378), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(2324), + [anon_sym_then] = ACTIONS(2378), [anon_sym_case] = ACTIONS(811), [anon_sym_select] = ACTIONS(813), [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(2322), + [sym__line_break] = ACTIONS(2376), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2322), + [sym__start_of_brace_block] = ACTIONS(2376), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(2322), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(823), [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(825), [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(837), [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(2322), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(841), [sym__string_percent_literal_start] = ACTIONS(843), [sym__command_percent_literal_start] = ACTIONS(845), @@ -150765,246 +151132,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(851), [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3257), - }, - [629] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5642), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(629), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_RBRACK] = ACTIONS(2324), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2322), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3271), }, [630] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5476), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5735), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(630), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(3259), [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), @@ -151019,30 +151215,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(885), [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_RBRACK] = ACTIONS(2308), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_RBRACK] = ACTIONS(2272), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), [anon_sym_BANG] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), [anon_sym_typeof] = ACTIONS(903), @@ -151061,13 +151257,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(921), [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2266), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2308), + [anon_sym_RBRACK_QMARK] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2272), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -151075,28 +151271,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(941), [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2302), + [sym__start_of_brace_block] = ACTIONS(2266), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(2302), + [sym__start_of_index_operator] = ACTIONS(2266), [sym_unary_plus] = ACTIONS(951), [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), [sym_unary_wrapping_plus] = ACTIONS(953), [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), [sym__regular_if_keyword] = ACTIONS(965), [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modulo_operator] = ACTIONS(2266), [sym__string_literal_start] = ACTIONS(3267), [sym__string_percent_literal_start] = ACTIONS(3269), [sym__command_percent_literal_start] = ACTIONS(973), @@ -151105,78 +151301,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(979), [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3273), + [sym__end_of_range] = ACTIONS(3271), }, [631] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5381), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5425), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(631), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2416), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(745), @@ -151190,29 +151386,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(755), [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(765), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), [anon_sym_typeof] = ACTIONS(773), @@ -151231,43 +151427,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(791), [sym_class_var] = ACTIONS(791), [sym_self] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(797), [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2418), [anon_sym_begin] = ACTIONS(805), [anon_sym_while] = ACTIONS(807), [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(2466), + [anon_sym_then] = ACTIONS(2418), [anon_sym_case] = ACTIONS(811), [anon_sym_select] = ACTIONS(813), [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(2464), + [sym__line_break] = ACTIONS(2416), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2464), + [sym__start_of_brace_block] = ACTIONS(2416), [sym__start_of_hash_or_tuple] = ACTIONS(819), [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(823), [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(825), [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(837), [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(841), [sym__string_percent_literal_start] = ACTIONS(843), [sym__command_percent_literal_start] = ACTIONS(845), @@ -151278,581 +151474,581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [632] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5360), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5837), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(632), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(3249), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(2472), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACK] = ACTIONS(2306), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_RBRACK_QMARK] = ACTIONS(2304), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2472), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_brace_block] = ACTIONS(2304), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3273), }, [633] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6130), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6050), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), [sym_heredoc_body] = STATE(633), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2266), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_then] = ACTIONS(2308), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(2302), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_then] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(2266), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(3283), }, [634] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6199), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6180), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), [sym_heredoc_body] = STATE(634), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(1135), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_COLON2] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2322), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3289), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_then] = ACTIONS(2306), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(2304), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3285), }, [635] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5601), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5710), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(635), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(3259), [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), @@ -151867,30 +152063,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(885), [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_RBRACK] = ACTIONS(2466), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), [anon_sym_typeof] = ACTIONS(903), @@ -151909,13 +152105,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(921), [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2466), + [anon_sym_RBRACK_QMARK] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2378), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -151923,28 +152119,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(941), [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2464), + [sym__start_of_brace_block] = ACTIONS(2376), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(951), [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(953), [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(965), [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(3267), [sym__string_percent_literal_start] = ACTIONS(3269), [sym__command_percent_literal_start] = ACTIONS(973), @@ -151955,413 +152151,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [636] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5764), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5924), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(636), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2308), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2302), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym__end_of_with_expression] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_COLON2] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2266), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3299), + [sym__end_of_range] = ACTIONS(3291), }, [637] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5992), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5984), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(637), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_then] = ACTIONS(2324), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(2322), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3301), - }, - [638] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6018), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(638), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -152374,36 +152401,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), [anon_sym_BANG] = ACTIONS(1135), [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -152411,17 +152438,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), + [sym_identifier_method_call] = ACTIONS(3289), [sym_instance_var] = ACTIONS(1149), [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2304), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_COLON2] = ACTIONS(2308), - [anon_sym_do] = ACTIONS(2308), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_COLON2] = ACTIONS(2306), + [anon_sym_do] = ACTIONS(2306), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -152429,28 +152456,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(531), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2302), + [sym__start_of_brace_block] = ACTIONS(2304), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(2302), + [sym__start_of_index_operator] = ACTIONS(2304), [sym_unary_plus] = ACTIONS(1157), [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), [sym_unary_wrapping_plus] = ACTIONS(1159), [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modulo_operator] = ACTIONS(2304), [sym__string_literal_start] = ACTIONS(3267), [sym__string_percent_literal_start] = ACTIONS(3269), [sym__command_percent_literal_start] = ACTIONS(563), @@ -152459,76 +152486,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(569), [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3293), + }, + [638] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6110), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(638), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2306), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2304), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym__end_of_with_expression] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(3303), }, [639] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5518), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6189), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), [sym_heredoc_body] = STATE(639), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2266), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym__end_of_with_expression] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3305), + }, + [640] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5786), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(640), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(3259), [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), @@ -152543,30 +152908,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(885), [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RBRACK] = ACTIONS(2474), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_RBRACK] = ACTIONS(2418), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(895), [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), [anon_sym_typeof] = ACTIONS(903), @@ -152585,13 +152950,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(921), [sym_class_var] = ACTIONS(921), [sym_self] = ACTIONS(875), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(927), [sym_protected] = ACTIONS(927), - [anon_sym_RBRACK_QMARK] = ACTIONS(2472), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2474), + [anon_sym_RBRACK_QMARK] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2418), [anon_sym_begin] = ACTIONS(933), [anon_sym_while] = ACTIONS(935), [anon_sym_until] = ACTIONS(937), @@ -152599,28 +152964,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(941), [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2472), + [sym__start_of_brace_block] = ACTIONS(2416), [sym__start_of_hash_or_tuple] = ACTIONS(947), [sym__start_of_named_tuple] = ACTIONS(949), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(951), [sym_unary_minus] = ACTIONS(951), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(953), [sym_unary_wrapping_minus] = ACTIONS(953), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(965), [sym__regular_unless_keyword] = ACTIONS(967), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(3267), [sym__string_percent_literal_start] = ACTIONS(3269), [sym__command_percent_literal_start] = ACTIONS(973), @@ -152630,245 +152995,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [640] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5858), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(640), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2322), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym__end_of_with_expression] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3305), - }, [641] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5913), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6238), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), [sym_heredoc_body] = STATE(641), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -152881,36 +153077,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1015), [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(1025), [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), [anon_sym_typeof] = ACTIONS(1033), [anon_sym_sizeof] = ACTIONS(1035), [anon_sym_instance_sizeof] = ACTIONS(1037), [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), + [sym__constant_segment] = ACTIONS(3299), [anon_sym_COLON_COLON] = ACTIONS(1043), [anon_sym___LINE__] = ACTIONS(1045), [anon_sym___END_LINE__] = ACTIONS(1045), @@ -152918,125 +153114,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1045), [sym_special_variable] = ACTIONS(1047), [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), + [sym_identifier_method_call] = ACTIONS(3301), [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2472), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym__end_of_with_expression] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2416), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym__end_of_with_expression] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, [642] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6035), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5934), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(642), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -153049,36 +153245,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(1135), [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -153086,17 +153282,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), + [sym_identifier_method_call] = ACTIONS(3289), [sym_instance_var] = ACTIONS(1149), [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_COLON2] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_COLON2] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -153104,28 +153300,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(531), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2464), + [sym__start_of_brace_block] = ACTIONS(2416), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(1157), [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(1159), [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(3267), [sym__string_percent_literal_start] = ACTIONS(3269), [sym__command_percent_literal_start] = ACTIONS(563), @@ -153136,75 +153332,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [643] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5969), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6042), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), [sym_heredoc_body] = STATE(643), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_then] = ACTIONS(2378), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(2376), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [644] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6144), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(644), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2376), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym__end_of_with_expression] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [645] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5911), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(645), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -153217,36 +153749,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(1135), [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -153254,17 +153786,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), + [sym_identifier_method_call] = ACTIONS(3289), [sym_instance_var] = ACTIONS(1149), [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(1153), [sym_protected] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_COLON2] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_COLON2] = ACTIONS(2378), + [anon_sym_do] = ACTIONS(2378), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -153272,28 +153804,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(531), [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2472), + [sym__start_of_brace_block] = ACTIONS(2376), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(1157), [sym_unary_minus] = ACTIONS(1157), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(1159), [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(3267), [sym__string_percent_literal_start] = ACTIONS(3269), [sym__command_percent_literal_start] = ACTIONS(563), @@ -153303,242 +153835,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [644] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6003), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(644), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [646] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6057), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(646), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2416), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_then] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(2472), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_then] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(2416), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [645] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6619), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(645), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [647] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6669), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(647), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(3307), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -153553,30 +154085,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(2925), [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_RBRACK] = ACTIONS(2324), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACK] = ACTIONS(2306), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), [anon_sym_BANG] = ACTIONS(2933), [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), [anon_sym_typeof] = ACTIONS(2941), @@ -153595,12 +154127,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(2959), [sym_class_var] = ACTIONS(2959), [sym_self] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2322), + [anon_sym_QMARK] = ACTIONS(2304), [sym_private] = ACTIONS(2963), [sym_protected] = ACTIONS(2963), - [anon_sym_RBRACK_QMARK] = ACTIONS(2322), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), + [anon_sym_RBRACK_QMARK] = ACTIONS(2304), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), [anon_sym_begin] = ACTIONS(2965), [anon_sym_while] = ACTIONS(2967), [anon_sym_until] = ACTIONS(2969), @@ -153610,25 +154142,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2977), [sym__start_of_named_tuple] = ACTIONS(2979), - [sym__start_of_index_operator] = ACTIONS(2322), + [sym__start_of_index_operator] = ACTIONS(2304), [sym_unary_plus] = ACTIONS(2981), [sym_unary_minus] = ACTIONS(2981), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), [sym_unary_wrapping_plus] = ACTIONS(2983), [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), [sym__beginless_range_operator] = ACTIONS(2989), [sym__regex_start] = ACTIONS(2991), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(2993), [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__modulo_operator] = ACTIONS(2322), + [sym__modulo_operator] = ACTIONS(2304), [sym__string_literal_start] = ACTIONS(2997), [sym__string_percent_literal_start] = ACTIONS(2999), [sym__command_percent_literal_start] = ACTIONS(3001), @@ -153639,410 +154171,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(3315), }, - [646] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5811), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(646), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2464), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym__end_of_with_expression] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [647] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5983), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(647), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_then] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(2464), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, [648] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6285), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6705), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), [sym_heredoc_body] = STATE(648), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(3307), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -154057,30 +154253,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(2925), [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_RBRACK] = ACTIONS(2308), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_RBRACK] = ACTIONS(2272), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), [anon_sym_BANG] = ACTIONS(2933), [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), [anon_sym_typeof] = ACTIONS(2941), @@ -154099,12 +154295,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(2959), [sym_class_var] = ACTIONS(2959), [sym_self] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2302), + [anon_sym_QMARK] = ACTIONS(2266), [sym_private] = ACTIONS(2963), [sym_protected] = ACTIONS(2963), - [anon_sym_RBRACK_QMARK] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), + [anon_sym_RBRACK_QMARK] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), [anon_sym_begin] = ACTIONS(2965), [anon_sym_while] = ACTIONS(2967), [anon_sym_until] = ACTIONS(2969), @@ -154114,25 +154310,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2977), [sym__start_of_named_tuple] = ACTIONS(2979), - [sym__start_of_index_operator] = ACTIONS(2302), + [sym__start_of_index_operator] = ACTIONS(2266), [sym_unary_plus] = ACTIONS(2981), [sym_unary_minus] = ACTIONS(2981), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), [sym_unary_wrapping_plus] = ACTIONS(2983), [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), [sym__beginless_range_operator] = ACTIONS(2989), [sym__regex_start] = ACTIONS(2991), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), [sym__regular_if_keyword] = ACTIONS(2993), [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__modulo_operator] = ACTIONS(2302), + [sym__modulo_operator] = ACTIONS(2266), [sym__string_literal_start] = ACTIONS(2997), [sym__string_percent_literal_start] = ACTIONS(2999), [sym__command_percent_literal_start] = ACTIONS(3001), @@ -154144,741 +154340,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__end_of_range] = ACTIONS(3317), }, [649] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6804), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6903), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), [sym_heredoc_body] = STATE(649), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_COLON2] = ACTIONS(2324), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym__end_of_with_expression] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(3327), }, [650] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6828), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6814), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), [sym_heredoc_body] = STATE(650), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_COLON2] = ACTIONS(2308), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym__end_of_with_expression] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(3329), }, [651] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6909), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6383), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), [sym_heredoc_body] = STATE(651), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(2322), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3355), - }, - [652] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6713), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(652), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym__end_of_with_expression] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3365), - }, - [653] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6470), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(653), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(3307), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -154893,30 +154755,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(2925), [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_RBRACK] = ACTIONS(2474), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACK] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), [anon_sym_BANG] = ACTIONS(2933), [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), [anon_sym_typeof] = ACTIONS(2941), @@ -154935,12 +154797,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(2959), [sym_class_var] = ACTIONS(2959), [sym_self] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2472), + [anon_sym_QMARK] = ACTIONS(2376), [sym_private] = ACTIONS(2963), [sym_protected] = ACTIONS(2963), - [anon_sym_RBRACK_QMARK] = ACTIONS(2472), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_RBRACK_QMARK] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), [anon_sym_begin] = ACTIONS(2965), [anon_sym_while] = ACTIONS(2967), [anon_sym_until] = ACTIONS(2969), @@ -154950,25 +154812,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2977), [sym__start_of_named_tuple] = ACTIONS(2979), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_index_operator] = ACTIONS(2376), [sym_unary_plus] = ACTIONS(2981), [sym_unary_minus] = ACTIONS(2981), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), [sym_unary_wrapping_plus] = ACTIONS(2983), [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), [sym__beginless_range_operator] = ACTIONS(2989), [sym__regex_start] = ACTIONS(2991), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(2993), [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__modulo_operator] = ACTIONS(2472), + [sym__modulo_operator] = ACTIONS(2376), [sym__string_literal_start] = ACTIONS(2997), [sym__string_percent_literal_start] = ACTIONS(2999), [sym__command_percent_literal_start] = ACTIONS(3001), @@ -154978,243 +154840,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [654] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6739), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(654), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym__end_of_with_expression] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3367), - }, - [655] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6476), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(655), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), + [652] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6368), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(652), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(2915), [sym_true] = ACTIONS(2915), @@ -155227,30 +154922,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(2925), [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_RBRACK] = ACTIONS(2466), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_RBRACK] = ACTIONS(2418), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(2933), [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), [anon_sym_typeof] = ACTIONS(2941), @@ -155269,12 +154964,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(2959), [sym_class_var] = ACTIONS(2959), [sym_self] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2464), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(2963), [sym_protected] = ACTIONS(2963), - [anon_sym_RBRACK_QMARK] = ACTIONS(2464), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_RBRACK_QMARK] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), [anon_sym_begin] = ACTIONS(2965), [anon_sym_while] = ACTIONS(2967), [anon_sym_until] = ACTIONS(2969), @@ -155284,25 +154979,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2977), [sym__start_of_named_tuple] = ACTIONS(2979), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(2981), [sym_unary_minus] = ACTIONS(2981), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(2983), [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(2989), [sym__regex_start] = ACTIONS(2991), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(2993), [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__modulo_operator] = ACTIONS(2464), + [sym__modulo_operator] = ACTIONS(2416), [sym__string_literal_start] = ACTIONS(2997), [sym__string_percent_literal_start] = ACTIONS(2999), [sym__command_percent_literal_start] = ACTIONS(3001), @@ -155312,740 +155007,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [656] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6866), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(656), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [653] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6827), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(653), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2266), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), [anon_sym_BANG] = ACTIONS(3335), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [anon_sym_QMARK] = ACTIONS(2302), + [sym_self] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2266), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(2302), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(2266), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(2302), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(2266), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3369), - }, - [657] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6917), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(657), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym__end_of_with_expression] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3395), - }, - [658] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6671), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(658), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym__end_of_with_expression] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3355), }, - [659] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6832), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(659), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [654] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6906), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(654), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2304), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), [anon_sym_BANG] = ACTIONS(3335), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [anon_sym_QMARK] = ACTIONS(2472), + [sym_self] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2304), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(2304), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(2472), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(2304), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3357), }, - [660] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6962), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(660), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [655] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6926), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(655), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -156058,31 +155422,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2302), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_LT_EQ_GT] = ACTIONS(2302), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_BANG_TILDE] = ACTIONS(2302), - [anon_sym_EQ_TILDE] = ACTIONS(2302), - [anon_sym_AMP_STAR] = ACTIONS(2308), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -156093,18 +155458,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2302), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_COLON2] = ACTIONS(2308), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_COLON2] = ACTIONS(2272), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -156112,272 +155477,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2302), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_binary_plus] = ACTIONS(2302), - [sym_binary_minus] = ACTIONS(2302), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym_binary_wrapping_plus] = ACTIONS(2302), - [sym_binary_wrapping_minus] = ACTIONS(2302), - [sym__binary_star] = ACTIONS(2302), - [sym__binary_double_star] = ACTIONS(2302), - [sym_binary_ampersand] = ACTIONS(2302), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2302), - [sym__binary_double_slash] = ACTIONS(2302), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2302), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), [sym__regex_percent_literal_start] = ACTIONS(2053), [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3417), - }, - [661] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6738), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(661), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym__end_of_with_expression] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3367), }, - [662] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6813), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(662), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [656] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6941), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(656), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -156391,31 +155590,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -156426,18 +155625,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_COLON2] = ACTIONS(2474), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_COLON2] = ACTIONS(2306), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -156447,435 +155646,1432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), [sym__regex_percent_literal_start] = ACTIONS(2053), [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3369), }, - [663] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6755), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(663), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [657] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6804), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(657), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym__end_of_with_expression] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [658] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6971), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(658), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym__end_of_with_expression] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3395), + }, + [659] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6901), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(659), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2416), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(3335), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [anon_sym_QMARK] = ACTIONS(2464), + [sym_self] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_break] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(2416), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym__start_of_index_operator] = ACTIONS(2464), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [664] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6924), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(664), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [660] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6822), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(660), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym__end_of_with_expression] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [661] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7015), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(661), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), [anon_sym_BANG] = ACTIONS(3375), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(2322), + [sym_self] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(2304), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym__end_of_with_expression] = ACTIONS(2322), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym__end_of_with_expression] = ACTIONS(2304), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3397), + }, + [662] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6917), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(662), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3135), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), + [sym_self] = ACTIONS(1961), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_COLON2] = ACTIONS(2378), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(3151), + [sym__regex_start] = ACTIONS(2037), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [663] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6765), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(663), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_break] = ACTIONS(2376), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [664] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7027), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(664), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2272), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2272), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_LT_EQ_GT] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_BANG_TILDE] = ACTIONS(2266), + [anon_sym_EQ_TILDE] = ACTIONS(2266), + [anon_sym_AMP_STAR] = ACTIONS(2272), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2266), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [anon_sym_QMARK] = ACTIONS(2266), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_COLON2] = ACTIONS(2272), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym__start_of_index_operator] = ACTIONS(2266), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_binary_plus] = ACTIONS(2266), + [sym_binary_minus] = ACTIONS(2266), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym_binary_wrapping_plus] = ACTIONS(2266), + [sym_binary_wrapping_minus] = ACTIONS(2266), + [sym__binary_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(2266), + [sym_binary_ampersand] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__binary_slash] = ACTIONS(2266), + [sym__binary_double_slash] = ACTIONS(2266), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__modulo_operator] = ACTIONS(2266), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), [sym__end_of_range] = ACTIONS(3419), }, [665] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6796), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6934), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(665), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -156889,31 +157085,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COMMA] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -156924,18 +157120,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_COLON2] = ACTIONS(2466), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_COLON2] = ACTIONS(2418), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -156945,27 +157141,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -156974,74 +157170,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [666] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6946), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6989), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(666), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -157055,30 +157251,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2322), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2322), - [anon_sym_GT_GT] = ACTIONS(2322), - [anon_sym_LT_LT] = ACTIONS(2322), - [anon_sym_EQ_EQ] = ACTIONS(2324), - [anon_sym_BANG_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ] = ACTIONS(2324), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2322), - [anon_sym_LT_EQ_GT] = ACTIONS(2322), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2322), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_BANG_TILDE] = ACTIONS(2322), - [anon_sym_EQ_TILDE] = ACTIONS(2322), - [anon_sym_AMP_STAR] = ACTIONS(2324), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2322), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_LT_EQ_GT] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_BANG_TILDE] = ACTIONS(2304), + [anon_sym_EQ_TILDE] = ACTIONS(2304), + [anon_sym_AMP_STAR] = ACTIONS(2306), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -157089,18 +157285,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2322), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(2322), - [anon_sym_PIPE_PIPE] = ACTIONS(2322), - [anon_sym_COLON2] = ACTIONS(2324), + [anon_sym_QMARK] = ACTIONS(2304), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_COLON2] = ACTIONS(2306), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -157110,27 +157306,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2322), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_binary_plus] = ACTIONS(2322), - [sym_binary_minus] = ACTIONS(2322), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym_binary_wrapping_plus] = ACTIONS(2322), - [sym_binary_wrapping_minus] = ACTIONS(2322), - [sym__binary_star] = ACTIONS(2322), - [sym__binary_double_star] = ACTIONS(2322), - [sym_binary_ampersand] = ACTIONS(2322), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym__start_of_index_operator] = ACTIONS(2304), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_binary_plus] = ACTIONS(2304), + [sym_binary_minus] = ACTIONS(2304), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym_binary_wrapping_plus] = ACTIONS(2304), + [sym_binary_wrapping_minus] = ACTIONS(2304), + [sym__binary_star] = ACTIONS(2304), + [sym__binary_double_star] = ACTIONS(2304), + [sym_binary_ampersand] = ACTIONS(2304), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2322), - [sym__binary_double_slash] = ACTIONS(2322), + [sym__binary_slash] = ACTIONS(2304), + [sym__binary_double_slash] = ACTIONS(2304), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2322), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__modulo_operator] = ACTIONS(2304), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -157140,239 +157336,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__end_of_range] = ACTIONS(3421), }, [667] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6966), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7046), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), [sym_heredoc_body] = STATE(667), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), [anon_sym_BANG] = ACTIONS(3375), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(2472), + [sym_self] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(2416), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym__end_of_with_expression] = ACTIONS(2472), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym__end_of_with_expression] = ACTIONS(2416), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, [668] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6967), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7021), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), [sym_heredoc_body] = STATE(668), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym__end_of_with_expression] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [669] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6962), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(669), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -157386,30 +157747,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2416), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2416), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(2416), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2416), + [anon_sym_LT_EQ_GT] = ACTIONS(2416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_BANG_TILDE] = ACTIONS(2416), + [anon_sym_EQ_TILDE] = ACTIONS(2416), + [anon_sym_AMP_STAR] = ACTIONS(2418), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2416), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -157420,18 +157781,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_COLON2] = ACTIONS(2466), + [anon_sym_QMARK] = ACTIONS(2416), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_COLON2] = ACTIONS(2418), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -157441,27 +157802,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym__start_of_index_operator] = ACTIONS(2416), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_binary_plus] = ACTIONS(2416), + [sym_binary_minus] = ACTIONS(2416), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym_binary_wrapping_plus] = ACTIONS(2416), + [sym_binary_wrapping_minus] = ACTIONS(2416), + [sym__binary_star] = ACTIONS(2416), + [sym__binary_double_star] = ACTIONS(2416), + [sym_binary_ampersand] = ACTIONS(2416), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), + [sym__binary_slash] = ACTIONS(2416), + [sym__binary_double_slash] = ACTIONS(2416), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__modulo_operator] = ACTIONS(2416), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -157469,240 +157830,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [669] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(7001), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(669), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2464), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_PIPE] = ACTIONS(2466), - [anon_sym_CARET] = ACTIONS(2464), - [anon_sym_GT_GT] = ACTIONS(2464), - [anon_sym_LT_LT] = ACTIONS(2464), - [anon_sym_EQ_EQ] = ACTIONS(2466), - [anon_sym_BANG_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2466), - [anon_sym_GT_EQ] = ACTIONS(2464), - [anon_sym_LT_EQ_GT] = ACTIONS(2464), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_BANG_TILDE] = ACTIONS(2464), - [anon_sym_EQ_TILDE] = ACTIONS(2464), - [anon_sym_AMP_STAR] = ACTIONS(2466), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2464), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(2464), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(2464), - [anon_sym_PIPE_PIPE] = ACTIONS(2464), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym__start_of_index_operator] = ACTIONS(2464), - [sym__end_of_with_expression] = ACTIONS(2464), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_binary_plus] = ACTIONS(2464), - [sym_binary_minus] = ACTIONS(2464), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym_binary_wrapping_plus] = ACTIONS(2464), - [sym_binary_wrapping_minus] = ACTIONS(2464), - [sym__binary_star] = ACTIONS(2464), - [sym__binary_double_star] = ACTIONS(2464), - [sym_binary_ampersand] = ACTIONS(2464), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__binary_slash] = ACTIONS(2464), - [sym__binary_double_slash] = ACTIONS(2464), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__modulo_operator] = ACTIONS(2464), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, [670] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6948), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7003), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(670), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -157716,30 +157912,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DOT_DOT] = ACTIONS(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2376), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2472), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2472), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_EQ_GT] = ACTIONS(2472), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_BANG_TILDE] = ACTIONS(2472), - [anon_sym_EQ_TILDE] = ACTIONS(2472), - [anon_sym_AMP_STAR] = ACTIONS(2474), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2472), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_LT_EQ_GT] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_BANG_TILDE] = ACTIONS(2376), + [anon_sym_EQ_TILDE] = ACTIONS(2376), + [anon_sym_AMP_STAR] = ACTIONS(2378), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -157750,18 +157946,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [anon_sym_QMARK] = ACTIONS(2472), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_COLON2] = ACTIONS(2474), + [anon_sym_QMARK] = ACTIONS(2376), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_COLON2] = ACTIONS(2378), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -157771,27 +157967,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym__start_of_index_operator] = ACTIONS(2472), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_binary_plus] = ACTIONS(2472), - [sym_binary_minus] = ACTIONS(2472), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym_binary_wrapping_plus] = ACTIONS(2472), - [sym_binary_wrapping_minus] = ACTIONS(2472), - [sym__binary_star] = ACTIONS(2472), - [sym__binary_double_star] = ACTIONS(2472), - [sym_binary_ampersand] = ACTIONS(2472), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym__start_of_index_operator] = ACTIONS(2376), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_binary_plus] = ACTIONS(2376), + [sym_binary_minus] = ACTIONS(2376), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym_binary_wrapping_plus] = ACTIONS(2376), + [sym_binary_wrapping_minus] = ACTIONS(2376), + [sym__binary_star] = ACTIONS(2376), + [sym__binary_double_star] = ACTIONS(2376), + [sym_binary_ampersand] = ACTIONS(2376), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), - [sym__binary_slash] = ACTIONS(2472), - [sym__binary_double_slash] = ACTIONS(2472), + [sym__binary_slash] = ACTIONS(2376), + [sym__binary_double_slash] = ACTIONS(2376), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__modulo_operator] = ACTIONS(2472), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__modulo_operator] = ACTIONS(2376), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -157800,84 +157996,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [671] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2841), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5133), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(671), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym__control_expressions] = STATE(8179), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(7940), - [sym_double_splat] = STATE(7940), - [sym_named_expr] = STATE(7940), - [sym_argument_list_no_parens] = STATE(8190), - [sym_argument_list_with_parens] = STATE(8190), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(3423), - [sym_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(3423), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(9314), + [sym_double_splat] = STATE(9314), + [sym_named_expr] = STATE(9314), + [sym_argument_list_no_parens] = STATE(8989), + [sym_argument_list_no_parens_with_block] = STATE(9868), + [sym_argument_list_with_parens] = STATE(8343), + [sym_argument_list_with_parens_and_block] = STATE(9220), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_do_end_block] = STATE(9227), + [sym_brace_block] = STATE(9228), + [sym_block_argument] = STATE(9783), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(743), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [anon_sym_LPAREN2] = ACTIONS(3425), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_then] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_break] = ACTIONS(1239), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3429), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym__start_of_index_operator] = ACTIONS(1239), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(3431), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3433), + }, + [672] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2818), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(672), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym__control_expressions] = STATE(8113), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(7983), + [sym_double_splat] = STATE(7983), + [sym_named_expr] = STATE(7983), + [sym_argument_list_no_parens] = STATE(8155), + [sym_argument_list_with_parens] = STATE(8155), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(3435), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(3435), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -157885,65 +158236,65 @@ 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(3423), + [anon_sym_RBRACE] = ACTIONS(3435), [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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_end] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [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(1451), + [sym__constant_segment] = ACTIONS(1523), [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(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(3429), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [anon_sym_LPAREN2] = ACTIONS(3441), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(3425), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_when] = ACTIONS(3425), + [anon_sym_elsif] = ACTIONS(3437), + [anon_sym_else] = ACTIONS(3437), + [anon_sym_when] = ACTIONS(3437), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(3425), + [anon_sym_in] = ACTIONS(3437), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(3423), + [sym__line_break] = ACTIONS(3435), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__unary_star] = ACTIONS(1469), - [sym__unary_double_star] = ACTIONS(1471), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__unary_star] = ACTIONS(1541), + [sym__unary_double_star] = ACTIONS(1543), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(3423), + [sym__modifier_if_keyword] = ACTIONS(3435), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(3423), - [sym__modifier_rescue_keyword] = ACTIONS(3423), - [sym__modifier_ensure_keyword] = ACTIONS(3423), + [sym__modifier_unless_keyword] = ACTIONS(3435), + [sym__modifier_rescue_keyword] = ACTIONS(3435), + [sym__modifier_ensure_keyword] = ACTIONS(3435), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -157952,87 +158303,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3431), + [sym__start_of_parenless_args] = ACTIONS(3443), }, - [672] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2841), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(672), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym__control_expressions] = STATE(8220), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(7940), - [sym_double_splat] = STATE(7940), - [sym_named_expr] = STATE(7940), - [sym_argument_list_no_parens] = STATE(8190), - [sym_argument_list_with_parens] = STATE(8190), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(3433), - [sym_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(3433), + [673] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2818), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(673), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym__control_expressions] = STATE(8165), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(7983), + [sym_double_splat] = STATE(7983), + [sym_named_expr] = STATE(7983), + [sym_argument_list_no_parens] = STATE(8155), + [sym_argument_list_with_parens] = STATE(8155), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(3445), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(3445), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -158040,65 +158391,65 @@ 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(3433), + [anon_sym_RBRACE] = ACTIONS(3445), [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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_end] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [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(1451), + [sym__constant_segment] = ACTIONS(1523), [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(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(3429), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [anon_sym_LPAREN2] = ACTIONS(3441), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3435), - [anon_sym_when] = ACTIONS(3435), + [anon_sym_elsif] = ACTIONS(3447), + [anon_sym_else] = ACTIONS(3447), + [anon_sym_when] = ACTIONS(3447), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(3435), + [anon_sym_in] = ACTIONS(3447), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(3433), + [sym__line_break] = ACTIONS(3445), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__unary_star] = ACTIONS(1469), - [sym__unary_double_star] = ACTIONS(1471), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__unary_star] = ACTIONS(1541), + [sym__unary_double_star] = ACTIONS(1543), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(3433), + [sym__modifier_if_keyword] = ACTIONS(3445), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(3433), - [sym__modifier_rescue_keyword] = ACTIONS(3433), - [sym__modifier_ensure_keyword] = ACTIONS(3433), + [sym__modifier_unless_keyword] = ACTIONS(3445), + [sym__modifier_rescue_keyword] = ACTIONS(3445), + [sym__modifier_ensure_keyword] = ACTIONS(3445), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -158107,87 +158458,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3431), + [sym__start_of_parenless_args] = ACTIONS(3443), }, - [673] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2841), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(673), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym__control_expressions] = STATE(8034), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(7940), - [sym_double_splat] = STATE(7940), - [sym_named_expr] = STATE(7940), - [sym_argument_list_no_parens] = STATE(8190), - [sym_argument_list_with_parens] = STATE(8190), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [ts_builtin_sym_end] = ACTIONS(3437), - [sym_identifier] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(3437), + [674] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2818), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(674), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym__control_expressions] = STATE(8050), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(7983), + [sym_double_splat] = STATE(7983), + [sym_named_expr] = STATE(7983), + [sym_argument_list_no_parens] = STATE(8155), + [sym_argument_list_with_parens] = STATE(8155), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [ts_builtin_sym_end] = ACTIONS(3449), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(3449), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -158195,65 +158546,65 @@ 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(3437), + [anon_sym_RBRACE] = ACTIONS(3449), [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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_end] = ACTIONS(3451), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [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(1451), + [sym__constant_segment] = ACTIONS(1523), [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(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(3429), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [anon_sym_LPAREN2] = ACTIONS(3441), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), - [anon_sym_elsif] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3439), - [anon_sym_when] = ACTIONS(3439), + [anon_sym_elsif] = ACTIONS(3451), + [anon_sym_else] = ACTIONS(3451), + [anon_sym_when] = ACTIONS(3451), [anon_sym_case] = ACTIONS(109), [anon_sym_select] = ACTIONS(111), - [anon_sym_in] = ACTIONS(3439), + [anon_sym_in] = ACTIONS(3451), [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_break] = ACTIONS(3437), + [sym__line_break] = ACTIONS(3449), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__unary_star] = ACTIONS(1469), - [sym__unary_double_star] = ACTIONS(1471), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__unary_star] = ACTIONS(1541), + [sym__unary_double_star] = ACTIONS(1543), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), - [sym__modifier_if_keyword] = ACTIONS(3437), + [sym__modifier_if_keyword] = ACTIONS(3449), [sym__regular_unless_keyword] = ACTIONS(129), - [sym__modifier_unless_keyword] = ACTIONS(3437), - [sym__modifier_rescue_keyword] = ACTIONS(3437), - [sym__modifier_ensure_keyword] = ACTIONS(3437), + [sym__modifier_unless_keyword] = ACTIONS(3449), + [sym__modifier_rescue_keyword] = ACTIONS(3449), + [sym__modifier_ensure_keyword] = ACTIONS(3449), [sym__string_literal_start] = ACTIONS(131), [sym__string_percent_literal_start] = ACTIONS(133), [sym__command_percent_literal_start] = ACTIONS(135), @@ -158262,240 +158613,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_percent_literal_start] = ACTIONS(141), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3431), - }, - [674] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5025), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(674), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(9209), - [sym_double_splat] = STATE(9209), - [sym_named_expr] = STATE(9209), - [sym_argument_list_no_parens] = STATE(9126), - [sym_argument_list_no_parens_with_block] = STATE(9847), - [sym_argument_list_with_parens] = STATE(8324), - [sym_argument_list_with_parens_and_block] = STATE(9395), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_do_end_block] = STATE(9457), - [sym_brace_block] = STATE(9412), - [sym_block_argument] = STATE(9886), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(743), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_COMMA] = ACTIONS(1241), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [anon_sym_LPAREN2] = ACTIONS(3443), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_then] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_break] = ACTIONS(1241), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3447), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym__start_of_index_operator] = ACTIONS(1241), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(3449), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3451), + [sym__start_of_parenless_args] = ACTIONS(3443), }, [675] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5461), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5720), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(675), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9532), - [sym_double_splat] = STATE(9532), - [sym_named_expr] = STATE(9532), - [sym_argument_list_no_parens] = STATE(9218), - [sym_argument_list_no_parens_with_block] = STATE(10284), - [sym_argument_list_with_parens] = STATE(8712), - [sym_argument_list_with_parens_and_block] = STATE(9579), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(9604), - [sym_brace_block] = STATE(9496), - [sym_block_argument] = STATE(10674), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9568), + [sym_double_splat] = STATE(9568), + [sym_named_expr] = STATE(9568), + [sym_argument_list_no_parens] = STATE(9208), + [sym_argument_list_no_parens_with_block] = STATE(10118), + [sym_argument_list_with_parens] = STATE(8375), + [sym_argument_list_with_parens_and_block] = STATE(9538), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(9544), + [sym_brace_block] = STATE(9548), + [sym_block_argument] = STATE(10697), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), [sym_comment] = ACTIONS(5), @@ -158505,15 +158702,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(465), [aux_sym_float_token2] = ACTIONS(467), [anon_sym_SQUOTE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1239), [sym_operator_symbol] = ACTIONS(471), [sym_unquoted_symbol] = ACTIONS(471), [anon_sym_COLON_DQUOTE] = ACTIONS(473), [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1239), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(3453), [anon_sym_TILDE] = ACTIONS(485), [anon_sym_with] = ACTIONS(487), @@ -158548,7 +158746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_brace_block] = ACTIONS(3459), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(541), [sym_unary_minus] = ACTIONS(541), [sym_unary_wrapping_plus] = ACTIONS(543), @@ -158571,86 +158769,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(3463), }, [676] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5519), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5782), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(676), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9551), - [sym_double_splat] = STATE(9551), - [sym_named_expr] = STATE(9551), - [sym_argument_list_no_parens] = STATE(9218), - [sym_argument_list_no_parens_with_block] = STATE(10284), - [sym_argument_list_with_parens] = STATE(8712), - [sym_argument_list_with_parens_and_block] = STATE(9579), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_do_end_block] = STATE(9604), - [sym_brace_block] = STATE(9496), - [sym_block_argument] = STATE(10674), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9656), + [sym_double_splat] = STATE(9656), + [sym_named_expr] = STATE(9656), + [sym_argument_list_no_parens] = STATE(9208), + [sym_argument_list_no_parens_with_block] = STATE(10118), + [sym_argument_list_with_parens] = STATE(8375), + [sym_argument_list_with_parens_and_block] = STATE(9538), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_do_end_block] = STATE(9544), + [sym_brace_block] = STATE(9548), + [sym_block_argument] = STATE(10697), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -158664,7 +158862,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(3453), [anon_sym_TILDE] = ACTIONS(485), [anon_sym_with] = ACTIONS(487), @@ -158699,7 +158898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_brace_block] = ACTIONS(3459), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym__start_of_index_operator] = ACTIONS(1241), + [sym__start_of_index_operator] = ACTIONS(1239), [sym_unary_plus] = ACTIONS(541), [sym_unary_minus] = ACTIONS(541), [sym_unary_wrapping_plus] = ACTIONS(543), @@ -158722,82 +158921,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(3467), }, [677] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(3562), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3764), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(677), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym__control_expressions] = STATE(8558), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(8274), - [sym_double_splat] = STATE(8274), - [sym_named_expr] = STATE(8274), - [sym_argument_list_no_parens] = STATE(8502), - [sym_argument_list_with_parens] = STATE(8502), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(1877), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym__control_expressions] = STATE(8456), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(8296), + [sym_double_splat] = STATE(8296), + [sym_named_expr] = STATE(8296), + [sym_argument_list_no_parens] = STATE(8539), + [sym_argument_list_with_parens] = STATE(8539), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(1881), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), [sym_true] = ACTIONS(1283), @@ -158809,59 +159008,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_end] = ACTIONS(3439), + [anon_sym_end] = ACTIONS(3451), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), [anon_sym_sizeof] = ACTIONS(1341), [anon_sym_instance_sizeof] = ACTIONS(1343), [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), + [sym__constant_segment] = ACTIONS(1889), [anon_sym_COLON_COLON] = ACTIONS(1349), [anon_sym___LINE__] = ACTIONS(1351), [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), [anon_sym_LPAREN2] = ACTIONS(3471), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3451), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(3437), + [sym__line_break] = ACTIONS(3449), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__unary_star] = ACTIONS(1903), - [sym__unary_double_star] = ACTIONS(1905), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__unary_star] = ACTIONS(1907), + [sym__unary_double_star] = ACTIONS(1909), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(3437), + [sym__modifier_if_keyword] = ACTIONS(3449), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(3437), - [sym__regular_rescue_keyword] = ACTIONS(3437), - [sym__modifier_rescue_keyword] = ACTIONS(3437), - [sym__regular_ensure_keyword] = ACTIONS(3437), - [sym__modifier_ensure_keyword] = ACTIONS(3437), + [sym__modifier_unless_keyword] = ACTIONS(3449), + [sym__regular_rescue_keyword] = ACTIONS(3449), + [sym__modifier_rescue_keyword] = ACTIONS(3449), + [sym__regular_ensure_keyword] = ACTIONS(3449), + [sym__modifier_ensure_keyword] = ACTIONS(3449), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -158873,82 +159072,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(3473), }, [678] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(3562), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3764), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(678), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym__control_expressions] = STATE(8415), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(8274), - [sym_double_splat] = STATE(8274), - [sym_named_expr] = STATE(8274), - [sym_argument_list_no_parens] = STATE(8502), - [sym_argument_list_with_parens] = STATE(8502), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(1877), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym__control_expressions] = STATE(8426), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(8296), + [sym_double_splat] = STATE(8296), + [sym_named_expr] = STATE(8296), + [sym_argument_list_no_parens] = STATE(8539), + [sym_argument_list_with_parens] = STATE(8539), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(1881), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), [sym_true] = ACTIONS(1283), @@ -158960,59 +159159,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_end] = ACTIONS(3435), + [anon_sym_end] = ACTIONS(3437), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), [anon_sym_sizeof] = ACTIONS(1341), [anon_sym_instance_sizeof] = ACTIONS(1343), [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), + [sym__constant_segment] = ACTIONS(1889), [anon_sym_COLON_COLON] = ACTIONS(1349), [anon_sym___LINE__] = ACTIONS(1351), [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), [anon_sym_LPAREN2] = ACTIONS(3471), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(3435), + [anon_sym_else] = ACTIONS(3437), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(3433), + [sym__line_break] = ACTIONS(3435), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__unary_star] = ACTIONS(1903), - [sym__unary_double_star] = ACTIONS(1905), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__unary_star] = ACTIONS(1907), + [sym__unary_double_star] = ACTIONS(1909), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(3433), + [sym__modifier_if_keyword] = ACTIONS(3435), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(3433), - [sym__regular_rescue_keyword] = ACTIONS(3433), - [sym__modifier_rescue_keyword] = ACTIONS(3433), - [sym__regular_ensure_keyword] = ACTIONS(3433), - [sym__modifier_ensure_keyword] = ACTIONS(3433), + [sym__modifier_unless_keyword] = ACTIONS(3435), + [sym__regular_rescue_keyword] = ACTIONS(3435), + [sym__modifier_rescue_keyword] = ACTIONS(3435), + [sym__regular_ensure_keyword] = ACTIONS(3435), + [sym__modifier_ensure_keyword] = ACTIONS(3435), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -159024,82 +159223,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(3473), }, [679] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(3562), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3764), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(679), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym__control_expressions] = STATE(8322), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(8274), - [sym_double_splat] = STATE(8274), - [sym_named_expr] = STATE(8274), - [sym_argument_list_no_parens] = STATE(8502), - [sym_argument_list_with_parens] = STATE(8502), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(1877), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym__control_expressions] = STATE(8427), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(8296), + [sym_double_splat] = STATE(8296), + [sym_named_expr] = STATE(8296), + [sym_argument_list_no_parens] = STATE(8539), + [sym_argument_list_with_parens] = STATE(8539), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(1881), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), [sym_true] = ACTIONS(1283), @@ -159111,59 +159310,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_end] = ACTIONS(3425), + [anon_sym_end] = ACTIONS(3447), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), [anon_sym_sizeof] = ACTIONS(1341), [anon_sym_instance_sizeof] = ACTIONS(1343), [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), + [sym__constant_segment] = ACTIONS(1889), [anon_sym_COLON_COLON] = ACTIONS(1349), [anon_sym___LINE__] = ACTIONS(1351), [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), [anon_sym_LPAREN2] = ACTIONS(3471), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3447), [anon_sym_case] = ACTIONS(1375), [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_break] = ACTIONS(3423), + [sym__line_break] = ACTIONS(3445), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__unary_star] = ACTIONS(1903), - [sym__unary_double_star] = ACTIONS(1905), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__unary_star] = ACTIONS(1907), + [sym__unary_double_star] = ACTIONS(1909), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), - [sym__modifier_if_keyword] = ACTIONS(3423), + [sym__modifier_if_keyword] = ACTIONS(3445), [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__modifier_unless_keyword] = ACTIONS(3423), - [sym__regular_rescue_keyword] = ACTIONS(3423), - [sym__modifier_rescue_keyword] = ACTIONS(3423), - [sym__regular_ensure_keyword] = ACTIONS(3423), - [sym__modifier_ensure_keyword] = ACTIONS(3423), + [sym__modifier_unless_keyword] = ACTIONS(3445), + [sym__regular_rescue_keyword] = ACTIONS(3445), + [sym__modifier_rescue_keyword] = ACTIONS(3445), + [sym__regular_ensure_keyword] = ACTIONS(3445), + [sym__modifier_ensure_keyword] = ACTIONS(3445), [sym__string_literal_start] = ACTIONS(1403), [sym__string_percent_literal_start] = ACTIONS(1405), [sym__command_percent_literal_start] = ACTIONS(1407), @@ -159175,521 +159374,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_parenless_args] = ACTIONS(3473), }, [680] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4494), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4394), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), [sym_heredoc_body] = STATE(680), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym__control_expressions] = STATE(8996), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(8513), - [sym_double_splat] = STATE(8513), - [sym_named_expr] = STATE(8513), - [sym_argument_list_no_parens] = STATE(8989), - [sym_argument_list_with_parens] = STATE(8989), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(2097), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_end] = ACTIONS(3439), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym__control_expressions] = STATE(9166), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(8424), + [sym_double_splat] = STATE(8424), + [sym_named_expr] = STATE(8424), + [sym_argument_list_no_parens] = STATE(8871), + [sym_argument_list_with_parens] = STATE(8871), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_end] = ACTIONS(3437), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), [anon_sym_LPAREN2] = ACTIONS(3477), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(3437), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__unary_star] = ACTIONS(2169), - [sym__unary_double_star] = ACTIONS(2171), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(3437), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(3437), - [sym__modifier_rescue_keyword] = ACTIONS(3437), - [sym__regular_ensure_keyword] = ACTIONS(3437), - [sym__modifier_ensure_keyword] = ACTIONS(3437), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(3435), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__unary_star] = ACTIONS(2145), + [sym__unary_double_star] = ACTIONS(2147), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(3435), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(3435), + [sym__modifier_rescue_keyword] = ACTIONS(3435), + [sym__regular_ensure_keyword] = ACTIONS(3435), + [sym__modifier_ensure_keyword] = ACTIONS(3435), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(3479), }, [681] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4494), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4394), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), [sym_heredoc_body] = STATE(681), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym__control_expressions] = STATE(9005), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(8513), - [sym_double_splat] = STATE(8513), - [sym_named_expr] = STATE(8513), - [sym_argument_list_no_parens] = STATE(8989), - [sym_argument_list_with_parens] = STATE(8989), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(2097), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_end] = ACTIONS(3425), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym__control_expressions] = STATE(8839), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(8424), + [sym_double_splat] = STATE(8424), + [sym_named_expr] = STATE(8424), + [sym_argument_list_no_parens] = STATE(8871), + [sym_argument_list_with_parens] = STATE(8871), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_end] = ACTIONS(3447), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), [anon_sym_LPAREN2] = ACTIONS(3477), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(3423), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__unary_star] = ACTIONS(2169), - [sym__unary_double_star] = ACTIONS(2171), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(3423), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(3423), - [sym__modifier_rescue_keyword] = ACTIONS(3423), - [sym__regular_ensure_keyword] = ACTIONS(3423), - [sym__modifier_ensure_keyword] = ACTIONS(3423), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(3445), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__unary_star] = ACTIONS(2145), + [sym__unary_double_star] = ACTIONS(2147), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(3445), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(3445), + [sym__modifier_rescue_keyword] = ACTIONS(3445), + [sym__regular_ensure_keyword] = ACTIONS(3445), + [sym__modifier_ensure_keyword] = ACTIONS(3445), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(3479), }, [682] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4494), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4394), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), [sym_heredoc_body] = STATE(682), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym__control_expressions] = STATE(9004), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(8513), - [sym_double_splat] = STATE(8513), - [sym_named_expr] = STATE(8513), - [sym_argument_list_no_parens] = STATE(8989), - [sym_argument_list_with_parens] = STATE(8989), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(2097), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_end] = ACTIONS(3435), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym__control_expressions] = STATE(8864), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(8424), + [sym_double_splat] = STATE(8424), + [sym_named_expr] = STATE(8424), + [sym_argument_list_no_parens] = STATE(8871), + [sym_argument_list_with_parens] = STATE(8871), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_end] = ACTIONS(3451), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), [anon_sym_LPAREN2] = ACTIONS(3477), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_break] = ACTIONS(3433), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__unary_star] = ACTIONS(2169), - [sym__unary_double_star] = ACTIONS(2171), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__modifier_if_keyword] = ACTIONS(3433), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__modifier_unless_keyword] = ACTIONS(3433), - [sym__modifier_rescue_keyword] = ACTIONS(3433), - [sym__regular_ensure_keyword] = ACTIONS(3433), - [sym__modifier_ensure_keyword] = ACTIONS(3433), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_break] = ACTIONS(3449), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__unary_star] = ACTIONS(2145), + [sym__unary_double_star] = ACTIONS(2147), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__modifier_if_keyword] = ACTIONS(3449), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__modifier_unless_keyword] = ACTIONS(3449), + [sym__modifier_rescue_keyword] = ACTIONS(3449), + [sym__regular_ensure_keyword] = ACTIONS(3449), + [sym__modifier_ensure_keyword] = ACTIONS(3449), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(3479), }, [683] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7014), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7055), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(683), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__base_method_def] = STATE(156), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(6690), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4776), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__base_method_def] = STATE(154), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(6880), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4189), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3481), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -159728,7 +159927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2534), + [sym_identifier_method_call] = ACTIONS(1355), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -159762,74 +159961,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [684] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7015), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7059), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(684), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__base_method_def] = STATE(168), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(6687), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(3012), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__base_method_def] = STATE(173), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(6939), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4666), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3501), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -159868,7 +160067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(91), + [sym_identifier_method_call] = ACTIONS(2586), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -159902,74 +160101,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [685] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7021), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7071), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(685), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__base_method_def] = STATE(148), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(6895), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4250), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__base_method_def] = STATE(171), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(6849), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(2971), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3519), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -160008,7 +160207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(1355), + [sym_identifier_method_call] = ACTIONS(91), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -160042,77 +160241,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [686] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(686), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11836), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11951), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3537), @@ -160181,77 +160380,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [687] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(687), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11316), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11846), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3541), @@ -160320,77 +160519,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [688] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6573), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6537), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(688), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10573), - [sym_double_splat] = STATE(10573), - [sym_named_expr] = STATE(10573), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11470), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10552), + [sym_double_splat] = STATE(10552), + [sym_named_expr] = STATE(10552), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11842), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3543), @@ -160459,80 +160658,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [689] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(689), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11564), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11244), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3545), + [anon_sym_RPAREN] = ACTIONS(3537), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -160598,80 +160797,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [690] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6613), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(690), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11579), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10173), + [sym_double_splat] = STATE(10173), + [sym_named_expr] = STATE(10173), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11933), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3547), + [anon_sym_RPAREN] = ACTIONS(3545), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -160737,80 +160936,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [691] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6636), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(691), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10333), - [sym_double_splat] = STATE(10333), - [sym_named_expr] = STATE(10333), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11526), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(12030), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3549), + [anon_sym_RPAREN] = ACTIONS(3547), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -160876,80 +161075,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [692] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6578), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6661), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(692), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10578), - [sym_double_splat] = STATE(10578), - [sym_named_expr] = STATE(10578), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11746), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10621), + [sym_double_splat] = STATE(10621), + [sym_named_expr] = STATE(10621), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11059), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3551), + [anon_sym_RPAREN] = ACTIONS(3549), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -161015,80 +161214,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [693] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(693), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11973), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11474), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3553), + [anon_sym_RPAREN] = ACTIONS(3551), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -161154,77 +161353,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [694] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(694), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11847), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11571), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3553), @@ -161293,77 +161492,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [695] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6580), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(695), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10581), - [sym_double_splat] = STATE(10581), - [sym_named_expr] = STATE(10581), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11979), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11445), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3555), @@ -161432,80 +161631,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [696] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6672), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(696), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12078), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10629), + [sym_double_splat] = STATE(10629), + [sym_named_expr] = STATE(10629), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(12103), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3543), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -161571,80 +161770,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [697] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(697), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12095), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(10972), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3559), + [anon_sym_RPAREN] = ACTIONS(3547), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -161710,80 +161909,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [698] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6502), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(698), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10277), - [sym_double_splat] = STATE(10277), - [sym_named_expr] = STATE(10277), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12207), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11008), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3551), + [anon_sym_RPAREN] = ACTIONS(3557), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -161849,80 +162048,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [699] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6583), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(699), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10585), - [sym_double_splat] = STATE(10585), - [sym_named_expr] = STATE(10585), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11282), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(12251), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3561), + [anon_sym_RPAREN] = ACTIONS(3559), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -161988,80 +162187,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [700] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6677), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(700), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11677), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10634), + [sym_double_splat] = STATE(10634), + [sym_named_expr] = STATE(10634), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11386), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3563), + [anon_sym_RPAREN] = ACTIONS(3561), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -162127,80 +162326,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [701] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(701), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11702), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11485), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3565), + [anon_sym_RPAREN] = ACTIONS(3563), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -162266,80 +162465,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [702] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6585), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(702), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10589), - [sym_double_splat] = STATE(10589), - [sym_named_expr] = STATE(10589), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(10923), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11505), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3549), + [anon_sym_RPAREN] = ACTIONS(3565), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -162405,77 +162604,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [703] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6678), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(703), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(10957), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10637), + [sym_double_splat] = STATE(10637), + [sym_named_expr] = STATE(10637), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11701), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3567), @@ -162544,77 +162743,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [704] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(704), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(10976), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11919), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3569), @@ -162683,80 +162882,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [705] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(705), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11014), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11807), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3559), + [anon_sym_RPAREN] = ACTIONS(3541), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -162822,77 +163021,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [706] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(706), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12267), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11915), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3571), @@ -162961,80 +163160,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [707] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6334), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(707), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10588), - [sym_double_splat] = STATE(10588), - [sym_named_expr] = STATE(10588), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12012), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11498), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3573), + [anon_sym_RPAREN] = ACTIONS(3555), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -163100,80 +163299,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [708] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(708), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11264), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11540), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3575), + [anon_sym_RPAREN] = ACTIONS(3573), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -163239,80 +163438,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [709] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6480), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6682), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(709), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10512), - [sym_double_splat] = STATE(10512), - [sym_named_expr] = STATE(10512), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11396), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10646), + [sym_double_splat] = STATE(10646), + [sym_named_expr] = STATE(10646), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(10987), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3577), + [anon_sym_RPAREN] = ACTIONS(3575), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -163378,80 +163577,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [710] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(710), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12285), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11045), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_RPAREN] = ACTIONS(3577), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -163517,80 +163716,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [711] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6612), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(711), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10191), - [sym_double_splat] = STATE(10191), - [sym_named_expr] = STATE(10191), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12317), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11062), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3561), + [anon_sym_RPAREN] = ACTIONS(3571), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -163656,80 +163855,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [712] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(712), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12221), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11848), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3567), + [anon_sym_RPAREN] = ACTIONS(3573), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -163795,80 +163994,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [713] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6598), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(713), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10266), - [sym_double_splat] = STATE(10266), - [sym_named_expr] = STATE(10266), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11034), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10508), + [sym_double_splat] = STATE(10508), + [sym_named_expr] = STATE(10508), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11200), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3543), + [anon_sym_RPAREN] = ACTIONS(3575), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -163934,80 +164133,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [714] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(714), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11069), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(12295), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3581), + [anon_sym_RPAREN] = ACTIONS(3579), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -164073,80 +164272,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [715] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(715), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(10936), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11086), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3563), + [anon_sym_RPAREN] = ACTIONS(3581), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -164212,80 +164411,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [716] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6392), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(716), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12273), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10192), + [sym_double_splat] = STATE(10192), + [sym_named_expr] = STATE(10192), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(12275), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3569), + [anon_sym_RPAREN] = ACTIONS(3549), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -164351,80 +164550,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [717] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6215), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6622), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(717), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10056), - [sym_double_splat] = STATE(10056), - [sym_named_expr] = STATE(10056), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11595), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10391), + [sym_double_splat] = STATE(10391), + [sym_named_expr] = STATE(10391), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11105), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3577), + [anon_sym_RPAREN] = ACTIONS(3583), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -164490,80 +164689,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [718] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(718), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11356), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(12115), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(3557), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -164629,80 +164828,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [719] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(719), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11239), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11241), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3565), + [anon_sym_RPAREN] = ACTIONS(3553), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -164768,80 +164967,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [720] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(720), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(10999), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11147), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3585), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -164907,80 +165106,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [721] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(721), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11090), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11175), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3583), + [anon_sym_RPAREN] = ACTIONS(3563), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -165046,80 +165245,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [722] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6558), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(722), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11880), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10664), + [sym_double_splat] = STATE(10664), + [sym_named_expr] = STATE(10664), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11392), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3585), + [anon_sym_RPAREN] = ACTIONS(3561), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -165185,80 +165384,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [723] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(723), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11832), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(12021), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3547), + [anon_sym_RPAREN] = ACTIONS(3565), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -165324,77 +165523,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [724] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6471), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(724), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10499), - [sym_double_splat] = STATE(10499), - [sym_named_expr] = STATE(10499), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11023), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11157), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3587), @@ -165463,80 +165662,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [725] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6564), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(725), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11938), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10546), + [sym_double_splat] = STATE(10546), + [sym_named_expr] = STATE(10546), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11295), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3575), + [anon_sym_RPAREN] = ACTIONS(3589), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -165602,77 +165801,494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [726] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6562), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(726), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10409), - [sym_double_splat] = STATE(10409), - [sym_named_expr] = STATE(10409), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12032), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11852), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3577), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__block_ampersand] = ACTIONS(3465), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [727] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(727), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11156), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3551), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__block_ampersand] = ACTIONS(3465), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [728] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(728), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11126), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3569), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__block_ampersand] = ACTIONS(3465), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [729] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6336), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(729), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10713), + [sym_double_splat] = STATE(10713), + [sym_named_expr] = STATE(10713), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11194), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(3589), @@ -165740,498 +166356,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [727] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(727), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11738), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3537), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__block_ampersand] = ACTIONS(3465), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [728] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(728), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11610), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3545), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__block_ampersand] = ACTIONS(3465), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [729] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(729), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(10990), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3585), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__block_ampersand] = ACTIONS(3465), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, [730] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6565), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(730), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10566), - [sym_double_splat] = STATE(10566), - [sym_named_expr] = STATE(10566), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11206), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11664), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3573), + [anon_sym_RPAREN] = ACTIONS(3581), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -166297,80 +166496,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [731] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6585), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(731), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(11301), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10398), + [sym_double_splat] = STATE(10398), + [sym_named_expr] = STATE(10398), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(12348), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_RPAREN] = ACTIONS(3591), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -166436,80 +166635,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [732] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6574), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(732), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12239), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10069), + [sym_double_splat] = STATE(10069), + [sym_named_expr] = STATE(10069), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11069), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3591), + [anon_sym_RPAREN] = ACTIONS(3567), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -166575,80 +166774,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [733] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6551), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6680), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(733), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10661), - [sym_double_splat] = STATE(10661), - [sym_named_expr] = STATE(10661), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_block_argument] = STATE(12318), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10643), + [sym_double_splat] = STATE(10643), + [sym_named_expr] = STATE(10643), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_block_argument] = STATE(11217), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3555), + [anon_sym_RPAREN] = ACTIONS(3591), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -166714,769 +166913,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [734] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5437), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3206), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), [sym_heredoc_body] = STATE(734), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5444), - [sym_double_splat] = STATE(5444), - [sym_named_expr] = STATE(5444), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_block_argument] = STATE(5549), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(3261), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3207), + [sym_double_splat] = STATE(3207), + [sym_named_expr] = STATE(3207), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(4253), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__unary_star] = ACTIONS(955), - [sym__unary_double_star] = ACTIONS(957), - [sym__block_ampersand] = ACTIONS(959), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(445), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, [735] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3741), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(735), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3742), - [sym_double_splat] = STATE(3742), - [sym_named_expr] = STATE(3742), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(3992), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(715), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [736] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(736), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(6069), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(1187), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [737] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(737), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4685), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(725), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [738] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(738), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4049), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(715), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [739] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(739), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4455), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4561), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -167527,7 +167174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(549), + [sym__block_ampersand] = ACTIONS(737), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -167541,80 +167188,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [740] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(740), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [736] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(736), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4561), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -167679,78 +167326,630 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, + [737] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(737), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6760), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1197), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [738] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5211), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(738), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5212), + [sym_double_splat] = STATE(5212), + [sym_named_expr] = STATE(5212), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(6039), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(831), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [739] = { + [sym_heredoc_body] = STATE(739), + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_RPAREN] = ACTIONS(3597), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [anon_sym_RBRACE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), + [anon_sym_PLUS_EQ] = ACTIONS(3603), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), + [anon_sym_DASH_EQ] = ACTIONS(3603), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), + [anon_sym_STAR_EQ] = ACTIONS(3603), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), + [anon_sym_SLASH_EQ] = ACTIONS(3603), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), + [anon_sym_PERCENT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_EQ] = ACTIONS(3603), + [anon_sym_CARET_EQ] = ACTIONS(3603), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), + [anon_sym_LT_LT_EQ] = ACTIONS(3603), + [anon_sym_GT_GT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_elsif] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_when] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [anon_sym_in] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), + }, + [740] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(740), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(6132), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(831), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, [741] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5121), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(741), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(6053), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5122), + [sym_double_splat] = STATE(5122), + [sym_named_expr] = STATE(5122), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(5361), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -167766,7 +167965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -167803,7 +168002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(825), [sym__unary_star] = ACTIONS(827), [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(1187), + [sym__block_ampersand] = ACTIONS(867), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), [sym__regular_if_keyword] = ACTIONS(837), @@ -167818,215 +168017,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [742] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3259), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5759), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(742), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3260), - [sym_double_splat] = STATE(3260), - [sym_named_expr] = STATE(3260), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3859), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5606), + [sym_double_splat] = STATE(5606), + [sym_named_expr] = STATE(5606), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_block_argument] = STATE(6569), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(455), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__unary_star] = ACTIONS(955), + [sym__unary_double_star] = ACTIONS(957), + [sym__block_ampersand] = ACTIONS(997), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, [743] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(743), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(6131), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(5861), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -168042,7 +168241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -168079,7 +168278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(825), [sym__unary_star] = ACTIONS(827), [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(1187), + [sym__block_ampersand] = ACTIONS(831), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), [sym__regular_if_keyword] = ACTIONS(837), @@ -168094,217 +168293,907 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [744] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(744), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4074), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(5897), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(715), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(831), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, [745] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5759), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), [sym_heredoc_body] = STATE(745), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3905), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5606), + [sym_double_splat] = STATE(5606), + [sym_named_expr] = STATE(5606), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_block_argument] = STATE(6370), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__unary_star] = ACTIONS(955), + [sym__unary_double_star] = ACTIONS(957), + [sym__block_ampersand] = ACTIONS(997), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [746] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5775), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(746), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5776), + [sym_double_splat] = STATE(5776), + [sym_named_expr] = STATE(5776), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(3657), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1177), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [747] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5794), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(747), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5795), + [sym_double_splat] = STATE(5795), + [sym_named_expr] = STATE(5795), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6781), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1127), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [748] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3857), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(748), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3861), + [sym_double_splat] = STATE(3861), + [sym_named_expr] = STATE(3861), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4786), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__block_ampersand] = ACTIONS(725), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [749] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(749), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6908), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1127), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [750] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(750), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(4134), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -168318,7 +169207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -168340,109 +169229,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), [sym__block_ampersand] = ACTIONS(455), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [746] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(746), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4088), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [751] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(751), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4622), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -168456,7 +169345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3609), [anon_sym_TILDE] = ACTIONS(615), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), @@ -168493,7 +169382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(673), [sym__unary_star] = ACTIONS(675), [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(715), + [sym__block_ampersand] = ACTIONS(725), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), [sym__regular_if_keyword] = ACTIONS(685), @@ -168507,80 +169396,494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [747] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(747), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3935), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [752] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(752), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6760), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1127), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [753] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(753), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6724), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1127), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [754] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5702), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(754), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6163), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1089), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [755] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(755), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(4196), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -168594,7 +169897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -168616,109 +169919,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), [sym__block_ampersand] = ACTIONS(455), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [748] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(748), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3952), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [756] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(756), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6724), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1197), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [757] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(757), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(6132), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(1187), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [758] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(758), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(5414), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(867), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [759] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(759), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(4064), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -168732,7 +170449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -168754,244 +170471,520 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(455), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(445), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [749] = { - [sym_heredoc_body] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3599), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [anon_sym_RBRACE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3603), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), - [anon_sym_DASH_EQ] = ACTIONS(3603), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), - [anon_sym_STAR_EQ] = ACTIONS(3603), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), - [anon_sym_SLASH_EQ] = ACTIONS(3603), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), - [anon_sym_PERCENT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_EQ] = ACTIONS(3603), - [anon_sym_CARET_EQ] = ACTIONS(3603), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), - [anon_sym_LT_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_GT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_elsif] = ACTIONS(3601), - [anon_sym_else] = ACTIONS(3601), - [anon_sym_when] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [anon_sym_in] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [760] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5784), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(760), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9692), + [sym_double_splat] = STATE(9692), + [sym_named_expr] = STATE(9692), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(10295), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__block_ampersand] = ACTIONS(3465), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), }, - [750] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6218), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(750), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [761] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(761), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(4134), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(445), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [762] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(762), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(4196), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(445), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [763] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6395), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(763), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -169006,9 +170999,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(2925), [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_RBRACK] = ACTIONS(3607), + [anon_sym_RBRACK] = ACTIONS(3611), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -169030,7 +171023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(2915), [sym_private] = ACTIONS(2963), [sym_protected] = ACTIONS(2963), - [anon_sym_RBRACK_QMARK] = ACTIONS(3611), + [anon_sym_RBRACK_QMARK] = ACTIONS(3615), [anon_sym_begin] = ACTIONS(2965), [anon_sym_while] = ACTIONS(2967), [anon_sym_until] = ACTIONS(2969), @@ -169059,494 +171052,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [751] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(751), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4544), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(725), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [752] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(752), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(2919), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__unary_star] = ACTIONS(263), - [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(315), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [753] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5389), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(753), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5396), - [sym_double_splat] = STATE(5396), - [sym_named_expr] = STATE(5396), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_block_argument] = STATE(5473), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__unary_star] = ACTIONS(955), - [sym__unary_double_star] = ACTIONS(957), - [sym__block_ampersand] = ACTIONS(959), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [754] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3732), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(754), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [764] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(764), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3733), - [sym_double_splat] = STATE(3733), - [sym_named_expr] = STATE(3733), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(3646), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9683), + [sym_double_splat] = STATE(9683), + [sym_named_expr] = STATE(9683), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(10082), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -169597,7 +171176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(585), + [sym__block_ampersand] = ACTIONS(3465), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -169611,80 +171190,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [755] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(755), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [765] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(765), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(3680), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9683), + [sym_double_splat] = STATE(9683), + [sym_named_expr] = STATE(9683), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(10347), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -169735,7 +171314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(585), + [sym__block_ampersand] = ACTIONS(3465), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -169749,356 +171328,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [756] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5734), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(756), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5445), - [sym_double_splat] = STATE(5445), - [sym_named_expr] = STATE(5445), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(6705), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), + [766] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(766), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(3475), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1197), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [757] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5437), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(757), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5444), - [sym_double_splat] = STATE(5444), - [sym_named_expr] = STATE(5444), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_block_argument] = STATE(5743), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__unary_star] = ACTIONS(955), - [sym__unary_double_star] = ACTIONS(957), - [sym__block_ampersand] = ACTIONS(959), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(407), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [758] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5653), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(758), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5660), - [sym_double_splat] = STATE(5660), - [sym_named_expr] = STATE(5660), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4493), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [767] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(767), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9683), + [sym_double_splat] = STATE(9683), + [sym_named_expr] = STATE(9683), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(10657), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -170112,28 +171553,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), + [sym__constant_segment] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), + [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -170143,14 +171584,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1221), - [sym__beginless_range_operator] = ACTIONS(1167), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__block_ampersand] = ACTIONS(3465), + [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -170163,80 +171604,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [759] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(759), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4578), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [768] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(768), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4710), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -170250,7 +171691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3609), [anon_sym_TILDE] = ACTIONS(615), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), @@ -170301,80 +171742,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [760] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(760), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [769] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5721), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(769), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(3705), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9569), + [sym_double_splat] = STATE(9569), + [sym_named_expr] = STATE(9569), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(10295), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -170425,7 +171866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(585), + [sym__block_ampersand] = ACTIONS(3461), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -170439,80 +171880,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [761] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(761), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [770] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(770), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(3718), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9683), + [sym_double_splat] = STATE(9683), + [sym_named_expr] = STATE(9683), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(10082), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -170563,7 +172004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(585), + [sym__block_ampersand] = ACTIONS(3461), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -170577,632 +172018,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [762] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(762), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4541), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1221), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [763] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5437), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(763), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5444), - [sym_double_splat] = STATE(5444), - [sym_named_expr] = STATE(5444), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_block_argument] = STATE(5603), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__unary_star] = ACTIONS(955), - [sym__unary_double_star] = ACTIONS(957), - [sym__block_ampersand] = ACTIONS(959), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [764] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5246), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(764), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5183), - [sym_double_splat] = STATE(5183), - [sym_named_expr] = STATE(5183), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_block_argument] = STATE(6542), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__unary_star] = ACTIONS(955), - [sym__unary_double_star] = ACTIONS(957), - [sym__block_ampersand] = ACTIONS(997), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [765] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3572), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(765), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3573), - [sym_double_splat] = STATE(3573), - [sym_named_expr] = STATE(3573), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4805), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(725), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [766] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3746), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(766), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [771] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(771), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3747), - [sym_double_splat] = STATE(3747), - [sym_named_expr] = STATE(3747), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4493), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9683), + [sym_double_splat] = STATE(9683), + [sym_named_expr] = STATE(9683), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(10347), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -171253,7 +172142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(549), + [sym__block_ampersand] = ACTIONS(3461), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -171267,80 +172156,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [767] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(767), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4455), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [772] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(772), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9683), + [sym_double_splat] = STATE(9683), + [sym_named_expr] = STATE(9683), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(10657), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -171354,28 +172243,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), + [sym__constant_segment] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), + [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -171385,14 +172274,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1221), - [sym__beginless_range_operator] = ACTIONS(1167), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__block_ampersand] = ACTIONS(3461), + [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -171405,354 +172294,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [768] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(768), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(2973), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__unary_star] = ACTIONS(263), - [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(315), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [769] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5522), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(769), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5525), - [sym_double_splat] = STATE(5525), - [sym_named_expr] = STATE(5525), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(3646), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [773] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(773), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4733), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__block_ampersand] = ACTIONS(725), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [770] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5112), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(770), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5113), - [sym_double_splat] = STATE(5113), - [sym_named_expr] = STATE(5113), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(5211), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [774] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5134), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(774), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(9287), + [sym_double_splat] = STATE(9287), + [sym_named_expr] = STATE(9287), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(9856), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -171768,7 +172519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -171805,7 +172556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(825), [sym__unary_star] = ACTIONS(827), [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(867), + [sym__block_ampersand] = ACTIONS(3431), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), [sym__regular_if_keyword] = ACTIONS(837), @@ -171819,354 +172570,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [771] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(771), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1221), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [772] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(772), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(3680), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [775] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3263), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(775), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3264), + [sym_double_splat] = STATE(3264), + [sym_named_expr] = STATE(3264), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(3467), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(407), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [773] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(773), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(5342), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [776] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(776), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(9461), + [sym_double_splat] = STATE(9461), + [sym_named_expr] = STATE(9461), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(9925), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -172182,7 +172795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -172219,7 +172832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(825), [sym__unary_star] = ACTIONS(827), [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(867), + [sym__block_ampersand] = ACTIONS(3431), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), [sym__regular_if_keyword] = ACTIONS(837), @@ -172233,354 +172846,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [774] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5437), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(774), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5444), - [sym_double_splat] = STATE(5444), - [sym_named_expr] = STATE(5444), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_block_argument] = STATE(6219), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__unary_star] = ACTIONS(955), - [sym__unary_double_star] = ACTIONS(957), - [sym__block_ampersand] = ACTIONS(997), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [775] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(775), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(6656), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1197), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [776] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(776), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(5404), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [777] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(777), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(5442), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -172596,7 +172933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -172647,84 +172984,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [777] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(777), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(3705), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [778] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(778), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(5458), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(867), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [779] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(779), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4575), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), [aux_sym_integer_token2] = ACTIONS(465), [aux_sym_float_token2] = ACTIONS(467), [anon_sym_SQUOTE] = ACTIONS(469), @@ -172734,28 +173209,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), + [sym__constant_segment] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), + [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -172765,14 +173240,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(1167), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__block_ampersand] = ACTIONS(549), + [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -172785,78 +173260,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [778] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(778), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(5150), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [780] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(780), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(9461), + [sym_double_splat] = STATE(9461), + [sym_named_expr] = STATE(9461), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(9958), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -172872,7 +173347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -172909,7 +173384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(825), [sym__unary_star] = ACTIONS(827), [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(867), + [sym__block_ampersand] = ACTIONS(3431), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), [sym__regular_if_keyword] = ACTIONS(837), @@ -172923,80 +173398,770 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [779] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(779), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(3718), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [781] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(781), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(9461), + [sym_double_splat] = STATE(9461), + [sym_named_expr] = STATE(9461), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(9996), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(3431), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [782] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(782), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(3533), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(407), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [783] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(783), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6908), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1197), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [784] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6395), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(784), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_RBRACK] = ACTIONS(3617), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_RBRACK_QMARK] = ACTIONS(3619), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [785] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(785), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2677), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__unary_star] = ACTIONS(263), + [sym__unary_double_star] = ACTIONS(265), + [sym__block_ampersand] = ACTIONS(303), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [786] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(786), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(3704), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -173010,7 +174175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_BANG] = ACTIONS(3607), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), @@ -173047,7 +174212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(1159), [sym__unary_star] = ACTIONS(1161), [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1165), + [sym__block_ampersand] = ACTIONS(1177), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -173061,80 +174226,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [780] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2512), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(780), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2513), - [sym_double_splat] = STATE(2513), - [sym_named_expr] = STATE(2513), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(3082), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [787] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(787), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2980), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -173148,7 +174313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -173185,7 +174350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(261), [sym__unary_star] = ACTIONS(263), [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(267), + [sym__block_ampersand] = ACTIONS(315), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), [sym__regular_if_keyword] = ACTIONS(273), @@ -173199,218 +174364,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [781] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(781), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(6657), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1197), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [782] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(782), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(2919), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [788] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(788), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2933), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -173424,7 +174451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -173461,7 +174488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(261), [sym__unary_star] = ACTIONS(263), [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(267), + [sym__block_ampersand] = ACTIONS(315), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), [sym__regular_if_keyword] = ACTIONS(273), @@ -173475,218 +174502,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [783] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(783), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(6701), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1197), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [784] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(784), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(3092), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [789] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(789), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2736), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -173700,7 +174589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -173737,7 +174626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(261), [sym__unary_star] = ACTIONS(263), [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(267), + [sym__block_ampersand] = ACTIONS(303), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), [sym__regular_if_keyword] = ACTIONS(273), @@ -173751,80 +174640,770 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [785] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(785), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(2973), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [790] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(790), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4536), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__block_ampersand] = ACTIONS(737), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [791] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5753), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(791), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5755), + [sym_double_splat] = STATE(5755), + [sym_named_expr] = STATE(5755), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4353), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1219), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [792] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5263), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(792), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5485), + [sym_double_splat] = STATE(5485), + [sym_named_expr] = STATE(5485), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_block_argument] = STATE(6341), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__unary_star] = ACTIONS(955), + [sym__unary_double_star] = ACTIONS(957), + [sym__block_ampersand] = ACTIONS(997), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [793] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(793), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4575), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1219), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [794] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(794), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6227), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1089), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [795] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(795), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2654), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -173838,7 +175417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -173875,7 +175454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(261), [sym__unary_star] = ACTIONS(263), [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(267), + [sym__block_ampersand] = ACTIONS(303), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), [sym__regular_if_keyword] = ACTIONS(273), @@ -173889,80 +175468,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [786] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2517), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(786), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2518), - [sym_double_splat] = STATE(2518), - [sym_named_expr] = STATE(2518), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(3082), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [796] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2531), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(796), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2532), + [sym_double_splat] = STATE(2532), + [sym_named_expr] = STATE(2532), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2955), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -173976,7 +175555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -174013,7 +175592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(261), [sym__unary_star] = ACTIONS(263), [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(315), + [sym__block_ampersand] = ACTIONS(267), [sym__beginless_range_operator] = ACTIONS(269), [sym__regex_start] = ACTIONS(271), [sym__regular_if_keyword] = ACTIONS(273), @@ -174027,80 +175606,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [787] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4241), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(787), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(4242), - [sym_double_splat] = STATE(4242), - [sym_named_expr] = STATE(4242), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4493), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [797] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(797), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(3747), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -174114,28 +175693,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), + [sym__constant_segment] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), + [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -174145,14 +175724,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(737), - [sym__beginless_range_operator] = ACTIONS(551), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1177), + [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -174165,80 +175744,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [788] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(788), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4541), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [798] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(798), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4536), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -174252,28 +175831,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), + [sym__constant_segment] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), + [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -174283,14 +175862,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(737), - [sym__beginless_range_operator] = ACTIONS(551), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1219), + [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -174303,80 +175882,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [789] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(789), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4541), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [799] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(799), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4561), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -174390,28 +175969,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), + [sym__constant_segment] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), + [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -174421,14 +176000,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(549), - [sym__beginless_range_operator] = ACTIONS(551), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1219), + [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -174441,80 +176020,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [790] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(790), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(3092), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [800] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(800), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(3138), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -174528,7 +176107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -174579,354 +176158,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [791] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(791), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [801] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2574), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(801), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2578), + [sym_double_splat] = STATE(2578), + [sym_named_expr] = STATE(2578), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2955), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(737), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [792] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5105), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(792), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5106), - [sym_double_splat] = STATE(5106), - [sym_named_expr] = STATE(5106), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(5792), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(831), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__unary_star] = ACTIONS(263), + [sym__unary_double_star] = ACTIONS(265), + [sym__block_ampersand] = ACTIONS(315), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [793] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5437), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(793), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5444), - [sym_double_splat] = STATE(5444), - [sym_named_expr] = STATE(5444), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_block_argument] = STATE(6295), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [802] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5759), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(802), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5606), + [sym_double_splat] = STATE(5606), + [sym_named_expr] = STATE(5606), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_block_argument] = STATE(5554), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), @@ -174942,7 +176383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_BANG] = ACTIONS(3605), [anon_sym_TILDE] = ACTIONS(897), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), @@ -174979,7 +176420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(953), [sym__unary_star] = ACTIONS(955), [sym__unary_double_star] = ACTIONS(957), - [sym__block_ampersand] = ACTIONS(997), + [sym__block_ampersand] = ACTIONS(959), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), [sym__regular_if_keyword] = ACTIONS(965), @@ -174993,494 +176434,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [794] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(794), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(6069), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(831), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [795] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(795), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(6053), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(831), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [796] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(796), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(6131), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(831), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [797] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5607), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(797), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5608), - [sym_double_splat] = STATE(5608), - [sym_named_expr] = STATE(5608), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(6705), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [803] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5634), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(803), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5635), + [sym_double_splat] = STATE(5635), + [sym_named_expr] = STATE(5635), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6781), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -175494,7 +176521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3595), [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), @@ -175516,247 +176543,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1005), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1091), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1197), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [798] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(798), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(6656), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1091), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), + [804] = { + [sym_heredoc_body] = STATE(804), + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_RPAREN] = ACTIONS(3597), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [anon_sym_RBRACE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), + [anon_sym_PLUS_EQ] = ACTIONS(3603), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), + [anon_sym_DASH_EQ] = ACTIONS(3603), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), + [anon_sym_STAR_EQ] = ACTIONS(3603), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), + [anon_sym_SLASH_EQ] = ACTIONS(3603), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), + [anon_sym_PERCENT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_EQ] = ACTIONS(3603), + [anon_sym_CARET_EQ] = ACTIONS(3603), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), + [anon_sym_LT_LT_EQ] = ACTIONS(3603), + [anon_sym_GT_GT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_elsif] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_when] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [anon_sym_in] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [799] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(799), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(6657), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [805] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(805), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6262), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -175770,7 +176797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3595), [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), @@ -175792,109 +176819,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1005), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1091), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1089), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [800] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(800), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(6701), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [806] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(806), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_block_argument] = STATE(6275), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -175908,7 +176935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3595), [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), @@ -175930,247 +176957,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1005), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1091), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__block_ampersand] = ACTIONS(1089), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [801] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5256), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(801), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5257), - [sym_double_splat] = STATE(5257), - [sym_named_expr] = STATE(5257), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(5792), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), + [807] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(807), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2933), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(1187), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__unary_star] = ACTIONS(263), + [sym__unary_double_star] = ACTIONS(265), + [sym__block_ampersand] = ACTIONS(267), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [802] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3143), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(802), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3144), - [sym_double_splat] = STATE(3144), - [sym_named_expr] = STATE(3144), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3859), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [808] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(808), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(3389), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -176184,7 +177211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -176206,109 +177233,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(409), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(407), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [803] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(803), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3905), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [809] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3225), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(809), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3226), + [sym_double_splat] = STATE(3226), + [sym_named_expr] = STATE(3226), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(4253), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -176322,7 +177349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -176344,521 +177371,659 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(409), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(455), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [804] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(804), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3935), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [810] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5231), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(810), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5233), + [sym_double_splat] = STATE(5233), + [sym_named_expr] = STATE(5233), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_block_argument] = STATE(5520), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(409), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__unary_star] = ACTIONS(955), + [sym__unary_double_star] = ACTIONS(957), + [sym__block_ampersand] = ACTIONS(959), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [805] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(805), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3952), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [811] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5759), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(811), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5606), + [sym_double_splat] = STATE(5606), + [sym_named_expr] = STATE(5606), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_block_argument] = STATE(6373), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(409), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__unary_star] = ACTIONS(955), + [sym__unary_double_star] = ACTIONS(957), + [sym__block_ampersand] = ACTIONS(997), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [806] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5625), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(806), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5628), - [sym_double_splat] = STATE(5628), - [sym_named_expr] = STATE(5628), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(5840), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), + [812] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3616), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(812), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3617), + [sym_double_splat] = STATE(3617), + [sym_named_expr] = STATE(3617), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4228), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1127), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__block_ampersand] = ACTIONS(715), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [807] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5437), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(807), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5444), - [sym_double_splat] = STATE(5444), - [sym_named_expr] = STATE(5444), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_block_argument] = STATE(6454), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [813] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(813), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(3138), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__unary_star] = ACTIONS(263), + [sym__unary_double_star] = ACTIONS(265), + [sym__block_ampersand] = ACTIONS(267), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [814] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5759), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(814), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5606), + [sym_double_splat] = STATE(5606), + [sym_named_expr] = STATE(5606), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_block_argument] = STATE(5571), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), @@ -176874,7 +178039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_BANG] = ACTIONS(3605), [anon_sym_TILDE] = ACTIONS(897), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), @@ -176911,7 +178076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(953), [sym__unary_star] = ACTIONS(955), [sym__unary_double_star] = ACTIONS(957), - [sym__block_ampersand] = ACTIONS(997), + [sym__block_ampersand] = ACTIONS(959), [sym__beginless_range_operator] = ACTIONS(961), [sym__regex_start] = ACTIONS(963), [sym__regular_if_keyword] = ACTIONS(965), @@ -176925,80 +178090,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [808] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5462), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(808), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [815] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(815), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9534), - [sym_double_splat] = STATE(9534), - [sym_named_expr] = STATE(9534), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(10092), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(3727), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -177049,7 +178214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(3461), + [sym__block_ampersand] = ACTIONS(585), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -177063,92 +178228,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [809] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(809), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9539), - [sym_double_splat] = STATE(9539), - [sym_named_expr] = STATE(9539), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(10130), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [816] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3894), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(816), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3895), + [sym_double_splat] = STATE(3895), + [sym_named_expr] = STATE(3895), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4786), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__block_ampersand] = ACTIONS(679), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [817] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(817), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2980), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(217), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(225), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__unary_star] = ACTIONS(263), + [sym__unary_double_star] = ACTIONS(265), + [sym__block_ampersand] = ACTIONS(267), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [818] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(818), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4622), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__block_ampersand] = ACTIONS(679), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [819] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3604), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(819), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3605), + [sym_double_splat] = STATE(3605), + [sym_named_expr] = STATE(3605), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(3657), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), [anon_sym_BANG] = ACTIONS(3453), [anon_sym_TILDE] = ACTIONS(485), @@ -177187,7 +178766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(3461), + [sym__block_ampersand] = ACTIONS(585), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -177201,80 +178780,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [810] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(810), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [820] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(820), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4710), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__block_ampersand] = ACTIONS(679), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [821] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(821), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4733), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__block_ampersand] = ACTIONS(679), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [822] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3637), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(822), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9539), - [sym_double_splat] = STATE(9539), - [sym_named_expr] = STATE(9539), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(10166), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3638), + [sym_double_splat] = STATE(3638), + [sym_named_expr] = STATE(3638), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4353), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -177325,7 +179180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(3461), + [sym__block_ampersand] = ACTIONS(549), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -177339,80 +179194,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [811] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(811), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9539), - [sym_double_splat] = STATE(9539), - [sym_named_expr] = STATE(9539), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(10186), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [823] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(823), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(5897), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(1187), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [824] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5823), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(824), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5824), + [sym_double_splat] = STATE(5824), + [sym_named_expr] = STATE(5824), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4353), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -177426,28 +179419,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), + [sym__constant_segment] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), + [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -177457,14 +179450,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(3461), - [sym__beginless_range_operator] = ACTIONS(551), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1165), + [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -177477,218 +179470,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [812] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(812), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(5902), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), + [825] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5759), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(825), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5606), + [sym_double_splat] = STATE(5606), + [sym_named_expr] = STATE(5606), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_block_argument] = STATE(5537), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1127), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__unary_star] = ACTIONS(955), + [sym__unary_double_star] = ACTIONS(957), + [sym__block_ampersand] = ACTIONS(959), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [813] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5520), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(813), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9589), - [sym_double_splat] = STATE(9589), - [sym_named_expr] = STATE(9589), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(10092), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [826] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(826), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4575), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -177702,28 +179695,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), + [sym__constant_segment] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), + [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -177733,14 +179726,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(3465), - [sym__beginless_range_operator] = ACTIONS(551), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1165), + [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -177753,80 +179746,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [814] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2522), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(814), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2523), - [sym_double_splat] = STATE(2523), - [sym_named_expr] = STATE(2523), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(2720), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [827] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2501), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(827), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2502), + [sym_double_splat] = STATE(2502), + [sym_named_expr] = STATE(2502), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_block_argument] = STATE(2598), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -177840,7 +179833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -177891,80 +179884,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [815] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(815), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [828] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4233), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(828), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9539), - [sym_double_splat] = STATE(9539), - [sym_named_expr] = STATE(9539), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(10130), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(4234), + [sym_double_splat] = STATE(4234), + [sym_named_expr] = STATE(4234), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4353), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -178015,7 +180008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(3465), + [sym__block_ampersand] = ACTIONS(737), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -178029,80 +180022,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [816] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(816), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9539), - [sym_double_splat] = STATE(9539), - [sym_named_expr] = STATE(9539), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(10166), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [829] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(829), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4536), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -178116,28 +180109,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), + [sym__constant_segment] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), + [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -178147,14 +180140,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(3465), - [sym__beginless_range_operator] = ACTIONS(551), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1165), + [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -178167,80 +180160,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [817] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(817), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9539), - [sym_double_splat] = STATE(9539), - [sym_named_expr] = STATE(9539), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(10186), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [830] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(830), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4561), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -178254,28 +180247,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), + [sym__constant_segment] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), + [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -178285,14 +180278,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(3465), - [sym__beginless_range_operator] = ACTIONS(551), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__block_ampersand] = ACTIONS(1165), + [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -178305,216 +180298,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [818] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5026), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(818), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(9281), - [sym_double_splat] = STATE(9281), - [sym_named_expr] = STATE(9281), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(9945), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), + [831] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(831), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4087), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(3449), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__block_ampersand] = ACTIONS(715), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [819] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(819), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(9436), - [sym_double_splat] = STATE(9436), - [sym_named_expr] = STATE(9436), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(9669), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [832] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(832), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_block_argument] = STATE(4064), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__block_ampersand] = ACTIONS(455), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [833] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5333), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(833), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5335), + [sym_double_splat] = STATE(5335), + [sym_named_expr] = STATE(5335), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(6039), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(741), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -178530,7 +180661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -178567,7 +180698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(825), [sym__unary_star] = ACTIONS(827), [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(3449), + [sym__block_ampersand] = ACTIONS(1187), [sym__beginless_range_operator] = ACTIONS(833), [sym__regex_start] = ACTIONS(835), [sym__regular_if_keyword] = ACTIONS(837), @@ -178581,1874 +180712,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [820] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(820), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(2568), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [834] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(834), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(3747), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__unary_star] = ACTIONS(263), - [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(303), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [821] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(821), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(5938), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1127), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [822] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(822), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_block_argument] = STATE(5953), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__block_ampersand] = ACTIONS(1127), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [823] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(823), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(9436), - [sym_double_splat] = STATE(9436), - [sym_named_expr] = STATE(9436), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(9686), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(3449), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [824] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(824), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(9436), - [sym_double_splat] = STATE(9436), - [sym_named_expr] = STATE(9436), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_block_argument] = STATE(9697), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__block_ampersand] = ACTIONS(3449), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [825] = { - [sym_heredoc_body] = STATE(825), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3599), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [anon_sym_RBRACE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3603), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), - [anon_sym_DASH_EQ] = ACTIONS(3603), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), - [anon_sym_STAR_EQ] = ACTIONS(3603), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), - [anon_sym_SLASH_EQ] = ACTIONS(3603), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), - [anon_sym_PERCENT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_EQ] = ACTIONS(3603), - [anon_sym_CARET_EQ] = ACTIONS(3603), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), - [anon_sym_LT_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_GT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_elsif] = ACTIONS(3601), - [anon_sym_else] = ACTIONS(3601), - [anon_sym_when] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [anon_sym_in] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), - }, - [826] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6218), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(826), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_RBRACK] = ACTIONS(3619), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_RBRACK_QMARK] = ACTIONS(3621), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [827] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(827), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(2601), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__unary_star] = ACTIONS(263), - [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(303), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [828] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3172), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(828), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3176), - [sym_double_splat] = STATE(3176), - [sym_named_expr] = STATE(3176), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3363), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(445), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [829] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(829), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3523), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(445), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [830] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3803), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(830), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3804), - [sym_double_splat] = STATE(3804), - [sym_named_expr] = STATE(3804), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4805), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(679), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [831] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(831), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4685), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(679), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [832] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(832), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_block_argument] = STATE(2625), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(217), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(225), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__unary_star] = ACTIONS(263), - [sym__unary_double_star] = ACTIONS(265), - [sym__block_ampersand] = ACTIONS(303), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__block_ampersand] = ACTIONS(585), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [833] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(833), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4544), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [835] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(835), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(4266), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -180462,7 +180937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3609), [anon_sym_TILDE] = ACTIONS(615), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), @@ -180499,7 +180974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(673), [sym__unary_star] = ACTIONS(675), [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(679), + [sym__block_ampersand] = ACTIONS(715), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), [sym__regular_if_keyword] = ACTIONS(685), @@ -180513,80 +180988,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [834] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(834), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_block_argument] = STATE(4578), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), + [836] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(836), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_block_argument] = STATE(3918), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -180600,7 +181075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3609), [anon_sym_TILDE] = ACTIONS(615), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), @@ -180637,7 +181112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(673), [sym__unary_star] = ACTIONS(675), [sym__unary_double_star] = ACTIONS(677), - [sym__block_ampersand] = ACTIONS(679), + [sym__block_ampersand] = ACTIONS(715), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), [sym__regular_if_keyword] = ACTIONS(685), @@ -180651,80 +181126,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [835] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5672), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(835), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5673), - [sym_double_splat] = STATE(5673), - [sym_named_expr] = STATE(5673), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4493), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [837] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(837), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(3704), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -180738,28 +181213,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), + [sym__constant_segment] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), + [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -180769,14 +181244,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1167), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__block_ampersand] = ACTIONS(585), + [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -180789,218 +181264,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [836] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(836), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4541), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [838] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(838), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_block_argument] = STATE(5861), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__block_ampersand] = ACTIONS(1187), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [837] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(837), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4455), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [839] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(839), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4575), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -181014,28 +181489,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), + [sym__constant_segment] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), + [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -181045,14 +181520,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__block_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1167), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__block_ampersand] = ACTIONS(737), + [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -181065,80 +181540,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [838] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(838), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [840] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(840), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(3727), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -181152,7 +181627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_BANG] = ACTIONS(3607), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), @@ -181203,356 +181678,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [839] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(839), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3350), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(445), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [840] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(840), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_block_argument] = STATE(3405), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__block_ampersand] = ACTIONS(445), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, [841] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(841), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_block_argument] = STATE(4455), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_block_argument] = STATE(4536), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -181603,7 +181802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_wrapping_minus] = ACTIONS(543), [sym__unary_star] = ACTIONS(545), [sym__unary_double_star] = ACTIONS(547), - [sym__block_ampersand] = ACTIONS(737), + [sym__block_ampersand] = ACTIONS(549), [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), @@ -181618,98 +181817,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [842] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6462), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), [sym_heredoc_body] = STATE(842), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10491), - [sym_double_splat] = STATE(10491), - [sym_named_expr] = STATE(10491), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3573), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10834), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [843] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6606), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(843), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10169), + [sym_double_splat] = STATE(10169), + [sym_named_expr] = STATE(10169), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3623), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(1995), @@ -181754,80 +182090,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [843] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(843), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [844] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(844), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3625), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -181891,80 +182227,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [844] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(844), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [845] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(845), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3623), + [anon_sym_RPAREN] = ACTIONS(3627), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -182028,80 +182364,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [845] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(845), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [846] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4848), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(846), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(11253), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9482), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3559), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -182113,46 +182448,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3629), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -182165,80 +182501,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [846] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(846), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [847] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6619), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(847), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10383), + [sym_double_splat] = STATE(10383), + [sym_named_expr] = STATE(10383), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3625), + [anon_sym_RPAREN] = ACTIONS(3549), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -182302,79 +182638,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [847] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4689), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(847), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11140), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9383), - [sym_identifier] = ACTIONS(3219), + [848] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(848), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3551), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -182386,47 +182723,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3627), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -182439,80 +182775,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [848] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6233), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(848), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10116), - [sym_double_splat] = STATE(10116), - [sym_named_expr] = STATE(10116), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [849] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(849), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3631), + [anon_sym_RPAREN] = ACTIONS(3553), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -182576,80 +182912,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [849] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(849), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [850] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4682), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(850), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(11708), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9477), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3633), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -182661,46 +182996,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3633), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -182713,80 +183049,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [850] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(850), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [851] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4811), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(851), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(11627), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9451), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3635), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -182798,46 +183133,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -182850,80 +183186,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [851] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6085), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(851), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10571), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10485), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [852] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(852), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10495), + [sym_double_splat] = STATE(10495), + [sym_named_expr] = STATE(10495), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3543), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -182931,14 +183267,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3637), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -182947,7 +183281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), @@ -182955,7 +183289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), + [sym_identifier_method_call] = ACTIONS(2003), [sym_instance_var] = ACTIONS(2005), [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), @@ -182974,6 +183308,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_minus] = ACTIONS(2027), [sym_unary_wrapping_plus] = ACTIONS(2029), [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), @@ -182987,80 +183323,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [852] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(852), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [853] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(853), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3641), + [anon_sym_RPAREN] = ACTIONS(3547), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -183124,217 +183460,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [853] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4692), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(853), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11957), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9468), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, [854] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(854), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3645), + [anon_sym_RPAREN] = ACTIONS(3637), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -183399,79 +183598,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [855] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6283), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(855), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10338), - [sym_double_splat] = STATE(10338), - [sym_named_expr] = STATE(10338), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3647), + [anon_sym_RPAREN] = ACTIONS(3557), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -183536,216 +183735,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [856] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4671), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6534), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(856), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11664), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9418), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3649), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [857] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(857), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10548), + [sym_double_splat] = STATE(10548), + [sym_named_expr] = STATE(10548), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3651), + [anon_sym_RPAREN] = ACTIONS(3639), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -183809,80 +183871,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [858] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(858), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [857] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4730), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(857), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(12250), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9540), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3653), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -183894,46 +183955,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3641), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -183946,217 +184008,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [859] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(859), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10876), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [860] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(860), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [858] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6638), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(858), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10717), + [sym_double_splat] = STATE(10717), + [sym_named_expr] = STATE(10717), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3655), + [anon_sym_RPAREN] = ACTIONS(3561), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -184220,80 +184145,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [861] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6340), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(861), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10438), - [sym_double_splat] = STATE(10438), - [sym_named_expr] = STATE(10438), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [859] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(859), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3563), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -184357,80 +184282,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [862] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(862), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [860] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(860), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3659), + [anon_sym_RPAREN] = ACTIONS(3565), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -184494,80 +184419,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [863] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(863), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [861] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4825), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(861), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(12286), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9475), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3661), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -184579,46 +184503,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3643), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -184631,79 +184556,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [864] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4657), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(864), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(12321), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9482), - [sym_identifier] = ACTIONS(3219), + [862] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(862), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3645), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -184715,47 +184641,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3663), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -184768,79 +184693,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [865] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4744), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(865), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11757), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9426), - [sym_identifier] = ACTIONS(3219), + [863] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6647), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(863), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10469), + [sym_double_splat] = STATE(10469), + [sym_named_expr] = STATE(10469), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3567), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -184852,47 +184778,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3665), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -184905,80 +184830,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [866] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6406), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(866), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10486), - [sym_double_splat] = STATE(10486), - [sym_named_expr] = STATE(10486), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [864] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(864), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3561), + [anon_sym_RPAREN] = ACTIONS(3569), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -185042,80 +184967,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [867] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(867), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [865] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(865), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3563), + [anon_sym_RPAREN] = ACTIONS(3537), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -185179,80 +185104,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [868] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(868), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [866] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4743), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(866), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(11087), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9531), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3565), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -185264,46 +185188,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3647), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -185316,80 +185241,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [869] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6455), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(869), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10528), - [sym_double_splat] = STATE(10528), - [sym_named_expr] = STATE(10528), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [867] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6654), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(867), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10134), + [sym_double_splat] = STATE(10134), + [sym_named_expr] = STATE(10134), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3549), + [anon_sym_RPAREN] = ACTIONS(3649), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -185453,80 +185378,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [870] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(870), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [868] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(868), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3567), + [anon_sym_RPAREN] = ACTIONS(3651), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -185590,80 +185515,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [871] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(871), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [869] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4711), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(869), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(12230), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9553), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3569), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -185675,46 +185599,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3653), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -185727,80 +185652,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [872] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6298), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(872), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10655), - [sym_double_splat] = STATE(10655), - [sym_named_expr] = STATE(10655), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [870] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(870), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3667), + [anon_sym_RPAREN] = ACTIONS(3655), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -185864,80 +185789,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [873] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6499), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(873), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10123), - [sym_double_splat] = STATE(10123), - [sym_named_expr] = STATE(10123), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [871] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(871), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3669), + [anon_sym_RPAREN] = ACTIONS(3657), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -186001,214 +185926,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [874] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(874), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10863), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [875] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4669), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(875), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11419), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9474), + [872] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4745), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(872), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(11834), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9468), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -186224,7 +186012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3671), + [anon_sym_end] = ACTIONS(3659), [anon_sym_BANG] = ACTIONS(3495), [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), @@ -186251,7 +186039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), @@ -186275,354 +186063,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [876] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(876), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10770), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [877] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(877), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10814), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [878] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6489), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(878), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10418), - [sym_double_splat] = STATE(10418), - [sym_named_expr] = STATE(10418), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [873] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6665), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(873), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10340), + [sym_double_splat] = STATE(10340), + [sym_named_expr] = STATE(10340), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3673), + [anon_sym_RPAREN] = ACTIONS(3661), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -186686,217 +186200,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [879] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(879), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10812), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), + [874] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4822), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(874), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(12062), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9515), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_end] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [880] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(880), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [875] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(875), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_RPAREN] = ACTIONS(3665), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -186960,79 +186474,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [881] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4630), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(881), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(12307), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9423), - [sym_identifier] = ACTIONS(3219), + [876] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(876), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3667), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -187044,47 +186559,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3675), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -187097,80 +186611,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [882] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(882), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [877] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6671), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(877), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10484), + [sym_double_splat] = STATE(10484), + [sym_named_expr] = STATE(10484), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(3669), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -187234,80 +186748,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [883] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(883), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [878] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(878), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3677), + [anon_sym_RPAREN] = ACTIONS(3671), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -187371,79 +186885,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [884] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4677), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(884), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11928), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9400), - [sym_identifier] = ACTIONS(3219), + [879] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(879), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3673), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -187455,47 +186970,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3679), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -187508,80 +187022,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [885] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6347), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(885), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10021), - [sym_double_splat] = STATE(10021), - [sym_named_expr] = STATE(10021), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [880] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(880), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3681), + [anon_sym_RPAREN] = ACTIONS(3675), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -187645,80 +187159,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [886] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(886), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [881] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6690), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(881), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10519), + [sym_double_splat] = STATE(10519), + [sym_named_expr] = STATE(10519), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3683), + [anon_sym_RPAREN] = ACTIONS(3591), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -187782,80 +187296,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [887] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6231), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(887), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10570), - [sym_double_splat] = STATE(10570), - [sym_named_expr] = STATE(10570), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [882] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(882), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3543), + [anon_sym_RPAREN] = ACTIONS(3555), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -187919,217 +187433,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [888] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(888), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10785), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [889] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(889), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [883] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6388), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(883), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10187), + [sym_double_splat] = STATE(10187), + [sym_named_expr] = STATE(10187), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3685), + [anon_sym_RPAREN] = ACTIONS(3677), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -188193,80 +187570,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [890] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(890), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [884] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(884), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3687), + [anon_sym_RPAREN] = ACTIONS(3573), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -188330,79 +187707,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [891] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4660), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(891), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11115), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9473), - [sym_identifier] = ACTIONS(3219), + [885] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6695), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(885), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10564), + [sym_double_splat] = STATE(10564), + [sym_named_expr] = STATE(10564), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3575), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -188414,47 +187792,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3689), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -188467,80 +187844,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [892] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(892), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [886] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(886), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3545), + [anon_sym_RPAREN] = ACTIONS(3577), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -188604,80 +187981,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [893] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(893), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [887] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(887), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3691), + [anon_sym_RPAREN] = ACTIONS(3571), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -188741,80 +188118,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [894] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6548), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(894), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10648), - [sym_double_splat] = STATE(10648), - [sym_named_expr] = STATE(10648), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [888] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(888), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10792), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [889] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(889), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10882), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [890] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(890), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10763), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [891] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(891), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10781), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [892] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4678), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(892), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(11782), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9524), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3693), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -188826,46 +188750,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3679), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -188878,80 +188803,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [895] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(895), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [893] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6556), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(893), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10238), + [sym_double_splat] = STATE(10238), + [sym_named_expr] = STATE(10238), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3547), + [anon_sym_RPAREN] = ACTIONS(3681), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -189015,79 +188940,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [896] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4678), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(896), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(12227), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9408), - [sym_identifier] = ACTIONS(3219), + [894] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6624), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(894), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10123), + [sym_double_splat] = STATE(10123), + [sym_named_expr] = STATE(10123), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3683), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -189099,47 +189025,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3695), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -189152,80 +189077,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [897] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6545), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(897), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10406), - [sym_double_splat] = STATE(10406), - [sym_named_expr] = STATE(10406), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [895] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(895), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3697), + [anon_sym_RPAREN] = ACTIONS(3685), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -189289,78 +189214,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [898] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(898), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10838), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [896] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(896), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10758), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -189376,7 +189301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -189426,80 +189351,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [899] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6386), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(899), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10697), - [sym_double_splat] = STATE(10697), - [sym_named_expr] = STATE(10697), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [897] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(897), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3551), + [anon_sym_RPAREN] = ACTIONS(3687), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -189563,80 +189488,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [900] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(900), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [898] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(898), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3699), + [anon_sym_RPAREN] = ACTIONS(3689), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -189700,80 +189625,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [901] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(901), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [899] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(899), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3701), + [anon_sym_RPAREN] = ACTIONS(3691), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -189837,95 +189762,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [902] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(902), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3703), + [900] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(900), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10919), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [901] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4821), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(901), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(10973), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9517), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_end] = ACTIONS(3693), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [902] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6623), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(902), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10406), + [sym_double_splat] = STATE(10406), + [sym_named_expr] = STATE(10406), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3695), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -189975,78 +190174,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [903] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4665), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(903), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(12146), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9382), - [sym_identifier] = ACTIONS(3219), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3697), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -190058,47 +190258,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -190112,77 +190311,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [904] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6572), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(904), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10776), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10337), + [sym_double_splat] = STATE(10337), + [sym_named_expr] = STATE(10337), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3699), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [905] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(905), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10863), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -190198,7 +190534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -190248,78 +190584,763 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [905] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(905), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10765), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [906] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(906), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3701), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [907] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6157), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(907), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10624), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10547), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3703), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [908] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(908), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3707), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [909] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4692), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(909), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(11997), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9459), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_end] = ACTIONS(3709), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [910] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(910), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3711), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [911] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(911), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10879), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -190335,7 +191356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -190385,78 +191406,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [906] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(906), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10865), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [912] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(912), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10850), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -190472,7 +191493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -190522,78 +191543,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [907] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(907), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10867), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [913] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(913), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10777), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -190609,7 +191630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -190659,78 +191680,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [908] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(908), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), + [914] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4702), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(914), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(12007), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9552), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_end] = ACTIONS(3713), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [915] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6582), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(915), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10301), + [sym_double_splat] = STATE(10301), + [sym_named_expr] = STATE(10301), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3589), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [916] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(916), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), [sym_bracket_argument_list] = STATE(10829), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -190746,7 +192041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -190796,78 +192091,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [909] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(909), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10842), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [917] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(917), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10930), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -190883,7 +192178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -190933,78 +192228,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [910] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(910), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10841), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [918] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(918), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10810), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -191020,7 +192315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -191070,78 +192365,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [911] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(911), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10852), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [919] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(919), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10759), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -191157,7 +192452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -191207,78 +192502,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [912] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(912), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10861), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [920] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(920), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10915), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -191294,7 +192589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -191344,78 +192639,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [913] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(913), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10716), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [921] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(921), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10865), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -191431,7 +192726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -191481,78 +192776,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [914] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(914), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10848), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [922] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(922), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10923), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -191568,7 +192863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -191618,78 +192913,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [915] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(915), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10707), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [923] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(923), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10931), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -191705,7 +193000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -191755,78 +193050,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [916] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(916), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10706), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [924] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(924), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10786), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -191842,7 +193137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -191892,78 +193187,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [917] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(917), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10777), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [925] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(925), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10877), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -191979,7 +193274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -192029,78 +193324,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [918] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(918), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10878), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [926] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(926), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10785), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -192116,7 +193411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -192166,78 +193461,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [919] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(919), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10888), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [927] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(927), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10840), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -192253,7 +193548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -192303,78 +193598,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [920] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(920), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10741), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [928] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(928), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10803), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -192390,7 +193685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -192440,78 +193735,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [921] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(921), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10803), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [929] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(929), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10862), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -192527,7 +193822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -192577,78 +193872,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [922] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(922), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10820), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [930] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(930), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10904), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -192664,7 +193959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -192714,78 +194009,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [923] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(923), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10821), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [931] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(931), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10906), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -192801,7 +194096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -192851,78 +194146,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [924] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(924), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10787), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [932] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(932), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10844), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -192938,7 +194233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -192988,78 +194283,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [925] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(925), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), + [933] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(933), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), [sym_bracket_argument_list] = STATE(10828), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -193075,7 +194370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -193125,78 +194420,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [926] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(926), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10844), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [934] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(934), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10914), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -193212,7 +194507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -193262,78 +194557,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [927] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(927), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10845), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [935] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(935), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10920), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -193349,7 +194644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -193399,78 +194694,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [928] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(928), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10789), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [936] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(936), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10908), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -193486,7 +194781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -193536,78 +194831,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [929] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(929), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10815), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [937] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(937), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10753), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -193623,7 +194918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -193673,78 +194968,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [930] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(930), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10823), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [938] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(938), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10771), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -193760,7 +195055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -193810,78 +195105,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [931] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(931), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10824), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [939] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(939), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10772), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -193897,7 +195192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -193947,78 +195242,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [932] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(932), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10726), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [940] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(940), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10795), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -194034,7 +195329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -194084,78 +195379,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [933] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(933), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10764), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [941] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(941), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10873), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -194171,7 +195466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -194221,78 +195516,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [934] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(934), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10773), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [942] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(942), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10905), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -194308,7 +195603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -194358,78 +195653,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [935] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(935), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10774), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [943] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(943), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10907), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -194445,7 +195740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -194495,78 +195790,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [936] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(936), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10813), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [944] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(944), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10929), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -194582,7 +195877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -194632,78 +195927,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [937] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(937), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10718), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [945] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(945), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10896), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -194719,7 +196014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -194769,78 +196064,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [938] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(938), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10875), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [946] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(946), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10869), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -194856,7 +196151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -194906,78 +196201,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [939] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(939), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), + [947] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(947), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10886), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [948] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(948), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10903), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [949] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(949), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), [sym_bracket_argument_list] = STATE(10887), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -194993,7 +196562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -195043,78 +196612,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [940] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(940), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10889), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [950] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(950), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10917), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -195130,7 +196699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -195180,78 +196749,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [941] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(941), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10853), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [951] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(951), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10918), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -195267,7 +196836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -195317,78 +196886,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [942] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(942), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10871), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [952] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(952), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10831), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -195404,7 +196973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -195454,78 +197023,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [943] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(943), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10872), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [953] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(953), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10858), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -195541,7 +197110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -195591,78 +197160,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [944] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(944), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10862), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [954] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(954), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10790), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -195678,7 +197247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -195728,78 +197297,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [945] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(945), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10738), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [955] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(955), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10802), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -195815,7 +197384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -195865,78 +197434,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [946] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(946), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10792), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [956] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(956), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10804), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -195952,7 +197521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -196002,352 +197571,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [947] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(947), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10810), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [948] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(948), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10798), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [949] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(949), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10873), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [957] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(957), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10774), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -196363,7 +197658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -196413,78 +197708,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [950] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(950), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10724), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [958] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(958), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10807), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -196500,7 +197795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -196550,78 +197845,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [951] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(951), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10730), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [959] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(959), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10809), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -196637,7 +197932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -196687,78 +197982,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [952] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(952), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10710), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [960] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(960), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10769), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -196774,7 +198069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -196824,78 +198119,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [953] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(953), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10712), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [961] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(961), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10770), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -196911,7 +198206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -196961,78 +198256,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [954] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(954), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10788), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [962] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(962), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10824), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -197048,7 +198343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -197098,78 +198393,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [955] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(955), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10890), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [963] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(963), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10826), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -197185,7 +198480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -197235,80 +198530,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [956] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(956), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [964] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(964), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_RPAREN] = ACTIONS(3581), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -197372,80 +198667,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [957] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6609), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(957), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10187), - [sym_double_splat] = STATE(10187), - [sym_named_expr] = STATE(10187), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [965] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(965), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3577), + [anon_sym_RPAREN] = ACTIONS(3541), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -197509,217 +198804,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [958] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6108), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(958), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_bracket_argument_list] = STATE(10772), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(9874), - [sym_double_splat] = STATE(9874), - [sym_named_expr] = STATE(9874), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [959] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(959), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [966] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4837), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(966), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_else] = STATE(11966), + [sym_conditional] = STATE(4555), + [sym_when] = STATE(10742), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_case_repeat1] = STATE(9527), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3553), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -197731,46 +198888,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_end] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_when] = ACTIONS(3631), [anon_sym_case] = ACTIONS(2017), [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -197783,80 +198941,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [960] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(960), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [967] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6594), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(967), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(10498), + [sym_double_splat] = STATE(10498), + [sym_named_expr] = STATE(10498), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3707), + [anon_sym_RPAREN] = ACTIONS(3717), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -197920,80 +199078,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [961] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(961), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [968] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(968), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3585), + [anon_sym_RPAREN] = ACTIONS(3719), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -198057,217 +199215,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [962] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4687), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(962), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11156), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9453), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3709), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [963] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6221), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(963), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10556), - [sym_double_splat] = STATE(10556), - [sym_named_expr] = STATE(10556), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [969] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(969), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3711), + [anon_sym_RPAREN] = ACTIONS(3721), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -198331,491 +199352,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [964] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(964), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3575), + [970] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5991), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(970), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_bracket_argument_list] = STATE(10778), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(10026), + [sym_double_splat] = STATE(10026), + [sym_named_expr] = STATE(10026), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [965] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6555), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(965), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10497), - [sym_double_splat] = STATE(10497), - [sym_named_expr] = STATE(10497), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3555), + [971] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5969), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(4958), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(971), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_splat] = STATE(5990), + [sym_double_splat] = STATE(5990), + [sym_named_expr] = STATE(5990), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(2841), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__unary_star] = ACTIONS(2869), + [sym__unary_double_star] = ACTIONS(2871), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [966] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4667), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(966), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(11145), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9414), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), + [972] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6075), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(972), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(6222), + [sym_double_splat] = STATE(6222), + [sym_named_expr] = STATE(6222), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3713), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(1041), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(1049), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [967] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(967), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [973] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6512), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5468), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(6366), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(973), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(6355), + [sym_double_splat] = STATE(6355), + [sym_named_expr] = STATE(6355), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3123), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3715), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -198829,28 +199847,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3133), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3137), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -198860,13 +199878,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__unary_star] = ACTIONS(3147), + [sym__unary_double_star] = ACTIONS(3149), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -198879,217 +199897,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [968] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4652), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(968), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_else] = STATE(12063), - [sym_conditional] = STATE(4476), - [sym_when] = STATE(10051), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_case_repeat1] = STATE(9479), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), + [974] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6775), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(974), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym__implicit_object_call] = STATE(6034), + [sym_implicit_call_chainable] = STATE(6035), + [sym_implicit_call_unchainable] = STATE(6036), + [sym_implicit_object_assign] = STATE(6034), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_end] = ACTIONS(3717), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(1869), - [anon_sym_when] = ACTIONS(3629), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(3727), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [969] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6634), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(969), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10327), - [sym_double_splat] = STATE(10327), - [sym_named_expr] = STATE(10327), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [975] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6306), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5258), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6588), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(975), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_splat] = STATE(6333), + [sym_double_splat] = STATE(6333), + [sym_named_expr] = STATE(6333), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3067), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__unary_star] = ACTIONS(3095), + [sym__unary_double_star] = ACTIONS(3097), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [976] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(976), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10453), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3719), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -199097,12 +200249,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3733), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(3705), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -199111,7 +200265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), @@ -199119,7 +200273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), + [sym_identifier_method_call] = ACTIONS(3193), [sym_instance_var] = ACTIONS(2005), [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), @@ -199138,8 +200292,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_minus] = ACTIONS(2027), [sym_unary_wrapping_plus] = ACTIONS(2029), [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), @@ -199153,80 +200305,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [970] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(970), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [977] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3615), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(977), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(3773), + [sym_double_splat] = STATE(3773), + [sym_named_expr] = STATE(3773), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1889), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__unary_star] = ACTIONS(1907), + [sym__unary_double_star] = ACTIONS(1909), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [978] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4598), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(978), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(4429), + [sym_double_splat] = STATE(4429), + [sym_named_expr] = STATE(4429), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(3721), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -199290,485 +200577,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [971] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(971), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5891), - [sym_double_splat] = STATE(5891), - [sym_named_expr] = STATE(5891), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), + [979] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4296), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(979), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(4225), + [sym_double_splat] = STATE(4225), + [sym_named_expr] = STATE(4225), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(1049), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1889), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__unary_star] = ACTIONS(1907), + [sym__unary_double_star] = ACTIONS(1909), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [972] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6879), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(972), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10722), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3723), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [980] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6987), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(980), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym__implicit_object_call] = STATE(6777), + [sym_implicit_call_chainable] = STATE(6313), + [sym_implicit_call_unchainable] = STATE(6773), + [sym_implicit_object_assign] = STATE(6777), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3735), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [973] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4543), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(973), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(4347), - [sym_double_splat] = STATE(4347), - [sym_named_expr] = STATE(4347), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [981] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4425), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(981), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(8481), + [sym_double_splat] = STATE(8481), + [sym_named_expr] = STATE(8481), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__unary_star] = ACTIONS(2145), + [sym__unary_double_star] = ACTIONS(2147), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [974] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6879), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(974), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10722), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [982] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6886), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(982), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10805), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -199778,14 +201065,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_RBRACE] = ACTIONS(3739), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), + [anon_sym_DOT] = ACTIONS(3705), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -199834,79 +201121,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [975] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5665), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(975), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(5746), - [sym_double_splat] = STATE(5746), - [sym_named_expr] = STATE(5746), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [983] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(983), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(9683), + [sym_double_splat] = STATE(9683), + [sym_named_expr] = STATE(9683), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -199920,28 +201207,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), [anon_sym_typeof] = ACTIONS(491), [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), + [sym__constant_segment] = ACTIONS(499), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), [anon_sym___FILE__] = ACTIONS(503), [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), + [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), [anon_sym_begin] = ACTIONS(523), [anon_sym_while] = ACTIONS(525), [anon_sym_until] = ACTIONS(527), @@ -199951,13 +201238,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(537), [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), - [sym__beginless_range_operator] = ACTIONS(1167), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__beginless_range_operator] = ACTIONS(551), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), @@ -199970,485 +201257,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [976] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4519), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(976), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(8549), - [sym_double_splat] = STATE(8549), - [sym_named_expr] = STATE(8549), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__unary_star] = ACTIONS(2169), - [sym__unary_double_star] = ACTIONS(2171), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [977] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6639), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5185), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6412), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(977), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_splat] = STATE(6589), - [sym_double_splat] = STATE(6589), - [sym_named_expr] = STATE(6589), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3057), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__unary_star] = ACTIONS(3085), - [sym__unary_double_star] = ACTIONS(3087), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [978] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5248), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(978), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym__implicit_object_call] = STATE(9466), - [sym_implicit_call_chainable] = STATE(9309), - [sym_implicit_call_unchainable] = STATE(9784), - [sym_implicit_object_tuple] = STATE(9466), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(3729), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3733), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [979] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6879), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(979), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10722), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [984] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4704), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(984), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(4346), + [sym_implicit_call_chainable] = STATE(4158), + [sym_implicit_call_unchainable] = STATE(4443), + [sym_implicit_object_assign] = STATE(4346), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -200458,14 +201338,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3735), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), + [anon_sym_DOT] = ACTIONS(3741), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -200514,350 +201393,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [980] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3565), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(980), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3579), - [sym_double_splat] = STATE(3579), - [sym_named_expr] = STATE(3579), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [981] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2902), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(981), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(7974), - [sym_double_splat] = STATE(7974), - [sym_named_expr] = STATE(7974), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(1441), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1451), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__unary_star] = ACTIONS(1469), - [sym__unary_double_star] = ACTIONS(1471), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [982] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2842), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(982), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(7959), - [sym_double_splat] = STATE(7959), - [sym_named_expr] = STATE(7959), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(1441), + [985] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2855), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(985), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(2896), + [sym_double_splat] = STATE(2896), + [sym_named_expr] = STATE(2896), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(1513), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -200870,30 +201477,30 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [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(1451), + [sym__constant_segment] = ACTIONS(1523), [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(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -200901,15 +201508,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__unary_star] = ACTIONS(1469), - [sym__unary_double_star] = ACTIONS(1471), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__unary_star] = ACTIONS(1541), + [sym__unary_double_star] = ACTIONS(1543), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -200922,79 +201529,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [983] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5438), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(4981), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5697), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(983), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_splat] = STATE(5686), - [sym_double_splat] = STATE(5686), - [sym_named_expr] = STATE(5686), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), + [986] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(5770), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5006), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(5547), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(986), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_splat] = STATE(5680), + [sym_double_splat] = STATE(5680), + [sym_named_expr] = STATE(5680), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), [sym_identifier] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -201008,7 +201615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3595), [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), @@ -201030,787 +201637,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1005), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__unary_star] = ACTIONS(1087), - [sym__unary_double_star] = ACTIONS(1089), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__unary_star] = ACTIONS(1085), + [sym__unary_double_star] = ACTIONS(1087), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [984] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6002), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(984), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym__implicit_object_call] = STATE(9755), - [sym_implicit_call_chainable] = STATE(9309), - [sym_implicit_call_unchainable] = STATE(9784), - [sym_implicit_object_tuple] = STATE(9755), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(3729), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3733), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [985] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6694), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5185), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6412), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(985), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_splat] = STATE(6753), - [sym_double_splat] = STATE(6753), - [sym_named_expr] = STATE(6753), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3049), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3057), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__unary_star] = ACTIONS(3085), - [sym__unary_double_star] = ACTIONS(3087), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [986] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(986), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10383), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [987] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5513), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(987), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(5600), + [sym_double_splat] = STATE(5600), + [sym_named_expr] = STATE(5600), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3737), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [987] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(987), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5265), - [sym_double_splat] = STATE(5265), - [sym_named_expr] = STATE(5265), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, [988] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6879), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3117), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(988), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10722), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(8019), + [sym_double_splat] = STATE(8019), + [sym_named_expr] = STATE(8019), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3739), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1523), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__unary_star] = ACTIONS(1541), + [sym__unary_double_star] = ACTIONS(1543), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [989] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2469), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2504), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), [sym_heredoc_body] = STATE(989), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2491), - [sym_double_splat] = STATE(2491), - [sym_named_expr] = STATE(2491), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2512), + [sym_double_splat] = STATE(2512), + [sym_named_expr] = STATE(2512), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -201824,7 +202023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -201875,214 +202074,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [990] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5367), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5917), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(990), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5215), - [sym_double_splat] = STATE(5215), - [sym_named_expr] = STATE(5215), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(919), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__unary_star] = ACTIONS(955), - [sym__unary_double_star] = ACTIONS(957), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(969), - [sym__string_percent_literal_start] = ACTIONS(971), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [991] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(4963), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(5654), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(991), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(1131), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym__implicit_object_call] = STATE(3776), + [sym_implicit_call_chainable] = STATE(5241), + [sym_implicit_call_unchainable] = STATE(3875), + [sym_implicit_object_assign] = STATE(3776), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -202096,7 +202160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(475), [anon_sym_LBRACK] = ACTIONS(477), [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_DOT] = ACTIONS(3743), + [anon_sym_BANG] = ACTIONS(3607), [anon_sym_TILDE] = ACTIONS(1137), [anon_sym_with] = ACTIONS(1139), [anon_sym_yield] = ACTIONS(1141), @@ -202104,7 +202169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(1143), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -202112,7 +202177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(1145), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(1147), + [sym_identifier_method_call] = ACTIONS(3289), [sym_instance_var] = ACTIONS(1149), [sym_class_var] = ACTIONS(1149), [sym_self] = ACTIONS(463), @@ -202131,14 +202196,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_minus] = ACTIONS(1157), [sym_unary_wrapping_plus] = ACTIONS(1159), [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__unary_star] = ACTIONS(1161), - [sym__unary_double_star] = ACTIONS(1163), [sym__beginless_range_operator] = ACTIONS(1167), [sym__regex_start] = ACTIONS(553), [sym__regular_if_keyword] = ACTIONS(555), [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), [sym__command_percent_literal_start] = ACTIONS(563), [sym__string_array_percent_literal_start] = ACTIONS(565), [sym__symbol_array_percent_literal_start] = ACTIONS(567), @@ -202146,486 +202209,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [992] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4346), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(992), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(4382), - [sym_double_splat] = STATE(4382), - [sym_named_expr] = STATE(4382), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [993] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5526), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(4870), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(5523), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(993), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_splat] = STATE(5632), - [sym_double_splat] = STATE(5632), - [sym_named_expr] = STATE(5632), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(2839), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__unary_star] = ACTIONS(2867), - [sym__unary_double_star] = ACTIONS(2869), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [994] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6248), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5319), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(6255), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(994), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(6395), - [sym_double_splat] = STATE(6395), - [sym_named_expr] = STATE(6395), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3155), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__unary_star] = ACTIONS(3165), - [sym__unary_double_star] = ACTIONS(3167), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [991] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4905), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(991), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym__implicit_object_call] = STATE(4856), + [sym_implicit_call_chainable] = STATE(4466), + [sym_implicit_call_unchainable] = STATE(4681), + [sym_implicit_object_assign] = STATE(4856), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(3745), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [995] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2902), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(995), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(2960), - [sym_double_splat] = STATE(2960), - [sym_named_expr] = STATE(2960), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(1441), + [992] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3061), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(992), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym__implicit_object_call] = STATE(2901), + [sym_implicit_call_chainable] = STATE(2667), + [sym_implicit_call_unchainable] = STATE(2906), + [sym_implicit_object_assign] = STATE(2901), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -202638,30 +202430,31 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(3747), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [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(1451), + [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(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -202669,15 +202462,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__unary_star] = ACTIONS(1469), - [sym__unary_double_star] = ACTIONS(1471), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -202690,78 +202481,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [996] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(3570), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(996), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(8266), - [sym_double_splat] = STATE(8266), - [sym_named_expr] = STATE(8266), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), + [993] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3821), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(993), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(8302), + [sym_double_splat] = STATE(8302), + [sym_named_expr] = STATE(8302), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -202774,30 +202565,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), [anon_sym_sizeof] = ACTIONS(1341), [anon_sym_instance_sizeof] = ACTIONS(1343), [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), + [sym__constant_segment] = ACTIONS(1889), [anon_sym_COLON_COLON] = ACTIONS(1349), [anon_sym___LINE__] = ACTIONS(1351), [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -202805,15 +202596,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__unary_star] = ACTIONS(1903), - [sym__unary_double_star] = ACTIONS(1905), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__unary_star] = ACTIONS(1907), + [sym__unary_double_star] = ACTIONS(1909), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -202826,214 +202617,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [997] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6218), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(997), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(2949), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(2957), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__unary_star] = ACTIONS(2985), - [sym__unary_double_star] = ACTIONS(2987), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [994] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4870), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(994), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(8682), + [sym_double_splat] = STATE(8682), + [sym_named_expr] = STATE(8682), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__unary_star] = ACTIONS(2145), + [sym__unary_double_star] = ACTIONS(2147), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [998] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4165), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(998), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), + [995] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3169), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(995), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(8307), - [sym_double_splat] = STATE(8307), - [sym_named_expr] = STATE(8307), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3318), + [sym_double_splat] = STATE(3318), + [sym_named_expr] = STATE(3318), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(359), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(367), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [996] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6747), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5258), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6588), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(996), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_splat] = STATE(6841), + [sym_double_splat] = STATE(6841), + [sym_named_expr] = STATE(6841), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3067), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__unary_star] = ACTIONS(3095), + [sym__unary_double_star] = ACTIONS(3097), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [997] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4491), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(997), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym__implicit_object_call] = STATE(3902), + [sym_implicit_call_chainable] = STATE(3656), + [sym_implicit_call_unchainable] = STATE(4150), + [sym_implicit_object_assign] = STATE(3902), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -203046,30 +203110,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1297), [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(3749), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), [anon_sym_sizeof] = ACTIONS(1341), [anon_sym_instance_sizeof] = ACTIONS(1343), [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), + [sym__constant_segment] = ACTIONS(1347), [anon_sym_COLON_COLON] = ACTIONS(1349), [anon_sym___LINE__] = ACTIONS(1351), [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1353), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -203077,15 +203142,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__unary_star] = ACTIONS(1903), - [sym__unary_double_star] = ACTIONS(1905), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -203098,349 +203161,893 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, + [998] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5981), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5016), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(5626), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(998), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(1147), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__unary_star] = ACTIONS(1161), + [sym__unary_double_star] = ACTIONS(1163), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, [999] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5021), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4296), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3102), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(3845), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), [sym_heredoc_body] = STATE(999), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(5147), - [sym_double_splat] = STATE(5147), - [sym_named_expr] = STATE(5147), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_splat] = STATE(8354), + [sym_double_splat] = STATE(8354), + [sym_named_expr] = STATE(8354), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1889), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1893), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__unary_star] = ACTIONS(1907), + [sym__unary_double_star] = ACTIONS(1909), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, [1000] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4842), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6159), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), [sym_heredoc_body] = STATE(1000), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(8653), - [sym_double_splat] = STATE(8653), - [sym_named_expr] = STATE(8653), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__unary_star] = ACTIONS(2169), - [sym__unary_double_star] = ACTIONS(2171), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym__implicit_object_call] = STATE(6122), + [sym_implicit_call_chainable] = STATE(5271), + [sym_implicit_call_unchainable] = STATE(6099), + [sym_implicit_object_assign] = STATE(6122), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(3751), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, [1001] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5437), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4748), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5336), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5157), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1001), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_splat] = STATE(5444), - [sym_double_splat] = STATE(5444), - [sym_named_expr] = STATE(5444), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym__implicit_object_call] = STATE(4346), + [sym_implicit_call_chainable] = STATE(4671), + [sym_implicit_call_unchainable] = STATE(4443), + [sym_implicit_object_assign] = STATE(4346), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(3753), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1002] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3117), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1002), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(2939), + [sym_double_splat] = STATE(2939), + [sym_named_expr] = STATE(2939), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(1513), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1523), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__unary_star] = ACTIONS(1541), + [sym__unary_double_star] = ACTIONS(1543), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1003] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2595), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1003), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym__implicit_object_call] = STATE(2596), + [sym_implicit_call_chainable] = STATE(2454), + [sym_implicit_call_unchainable] = STATE(2693), + [sym_implicit_object_assign] = STATE(2596), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_DOT] = ACTIONS(3755), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1004] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5410), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1004), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5327), + [sym_double_splat] = STATE(5327), + [sym_named_expr] = STATE(5327), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), [sym_identifier] = ACTIONS(871), [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), @@ -203456,7 +204063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(887), [anon_sym_LBRACK] = ACTIONS(889), [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_BANG] = ACTIONS(3605), [anon_sym_TILDE] = ACTIONS(897), [anon_sym_with] = ACTIONS(899), [anon_sym_yield] = ACTIONS(901), @@ -203506,77 +204113,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [1002] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(5800), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1002), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(6144), - [sym_double_splat] = STATE(6144), - [sym_named_expr] = STATE(6144), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [1005] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6395), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1005), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -203592,7 +204199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -203642,213 +204249,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1003] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(3740), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1003), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), + [1006] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3465), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1006), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(3751), - [sym_double_splat] = STATE(3751), - [sym_named_expr] = STATE(3751), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1281), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym__implicit_object_call] = STATE(3461), + [sym_implicit_call_chainable] = STATE(3107), + [sym_implicit_call_unchainable] = STATE(3345), + [sym_implicit_object_assign] = STATE(3461), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(3757), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1007] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3329), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1007), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym__implicit_object_call] = STATE(2901), + [sym_implicit_call_chainable] = STATE(2784), + [sym_implicit_call_unchainable] = STATE(2906), + [sym_implicit_object_assign] = STATE(2901), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [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_DOT] = ACTIONS(3759), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__unary_star] = ACTIONS(1903), - [sym__unary_double_star] = ACTIONS(1905), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1004] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6459), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6145), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1004), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_splat] = STATE(6577), - [sym_double_splat] = STATE(6577), - [sym_named_expr] = STATE(6577), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [1008] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6044), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1008), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym__implicit_object_call] = STATE(6034), + [sym_implicit_call_chainable] = STATE(5490), + [sym_implicit_call_unchainable] = STATE(6036), + [sym_implicit_object_assign] = STATE(6034), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(3761), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1009] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(5912), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1009), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(5863), + [sym_double_splat] = STATE(5863), + [sym_named_expr] = STATE(5863), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(2911), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -203864,7 +204743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -203914,623 +204793,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1005] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3140), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1005), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3186), - [sym_double_splat] = STATE(3186), - [sym_named_expr] = STATE(3186), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(359), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(367), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1006] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4033), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(2878), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(3555), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1006), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_splat] = STATE(3854), - [sym_double_splat] = STATE(3854), - [sym_named_expr] = STATE(3854), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3119), + [1010] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4744), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1010), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(4479), + [sym_double_splat] = STATE(4479), + [sym_named_expr] = STATE(4479), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(629), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(637), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2003), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__unary_star] = ACTIONS(675), - [sym__unary_double_star] = ACTIONS(677), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1007] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4165), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(3756), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1007), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_splat] = STATE(4264), - [sym_double_splat] = STATE(4264), - [sym_named_expr] = STATE(4264), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1281), + [1011] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6686), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1011), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym__implicit_object_call] = STATE(6605), + [sym_implicit_call_chainable] = STATE(5518), + [sym_implicit_call_unchainable] = STATE(6653), + [sym_implicit_object_assign] = STATE(6605), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1889), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_DOT] = ACTIONS(3763), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__unary_star] = ACTIONS(1903), - [sym__unary_double_star] = ACTIONS(1905), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1008] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1008), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(9539), - [sym_double_splat] = STATE(9539), - [sym_named_expr] = STATE(9539), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [1012] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5759), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4804), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5401), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1012), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_splat] = STATE(5606), + [sym_double_splat] = STATE(5606), + [sym_named_expr] = STATE(5606), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(919), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__unary_star] = ACTIONS(955), + [sym__unary_double_star] = ACTIONS(957), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(969), + [sym__string_percent_literal_start] = ACTIONS(971), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [1009] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3511), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2619), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3167), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1009), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_splat] = STATE(3314), - [sym_double_splat] = STATE(3314), - [sym_named_expr] = STATE(3314), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), + [1013] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2734), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3254), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1013), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_splat] = STATE(3501), + [sym_double_splat] = STATE(3501), + [sym_named_expr] = STATE(3501), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), [sym_identifier] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -204544,7 +205287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -204566,107 +205309,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__unary_star] = ACTIONS(405), - [sym__unary_double_star] = ACTIONS(407), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__unary_star] = ACTIONS(403), + [sym__unary_double_star] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1010] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2685), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2351), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2485), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1010), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_splat] = STATE(2742), - [sym_double_splat] = STATE(2742), - [sym_named_expr] = STATE(2742), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), + [1014] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1014), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(9461), + [sym_double_splat] = STATE(9461), + [sym_named_expr] = STATE(9461), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1015] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2762), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2358), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2530), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1015), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_splat] = STATE(2660), + [sym_double_splat] = STATE(2660), + [sym_named_expr] = STATE(2660), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), [sym_identifier] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -204680,7 +205559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -204730,487 +205609,487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1011] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5187), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4305), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5102), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1011), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_splat] = STATE(9436), - [sym_double_splat] = STATE(9436), - [sym_named_expr] = STATE(9436), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(3249), + [1016] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4176), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1016), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym__implicit_object_call] = STATE(3902), + [sym_implicit_call_chainable] = STATE(3404), + [sym_implicit_call_unchainable] = STATE(4150), + [sym_implicit_object_assign] = STATE(3902), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(781), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(789), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(3765), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__unary_star] = ACTIONS(827), - [sym__unary_double_star] = ACTIONS(829), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1012] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2817), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2394), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(2757), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1012), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_splat] = STATE(2824), - [sym_double_splat] = STATE(2824), - [sym_named_expr] = STATE(2824), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(15), + [1017] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6693), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5099), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6059), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1017), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_splat] = STATE(6566), + [sym_double_splat] = STATE(6566), + [sym_named_expr] = STATE(6566), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(3309), [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1451), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1455), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(2957), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__unary_star] = ACTIONS(1469), - [sym__unary_double_star] = ACTIONS(1471), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__unary_star] = ACTIONS(2985), + [sym__unary_double_star] = ACTIONS(2987), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1013] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4480), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1013), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__unary_star] = ACTIONS(2169), - [sym__unary_double_star] = ACTIONS(2171), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1018] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6044), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1018), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym__implicit_object_call] = STATE(9867), + [sym_implicit_call_chainable] = STATE(9010), + [sym_implicit_call_unchainable] = STATE(9926), + [sym_implicit_object_assign] = STATE(9867), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(3767), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1014] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4184), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1014), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1019] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3653), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1019), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3536), - [sym_double_splat] = STATE(3536), - [sym_named_expr] = STATE(3536), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3865), + [sym_double_splat] = STATE(3865), + [sym_named_expr] = STATE(3865), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -205274,350 +206153,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1015] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4842), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3495), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4498), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1015), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_splat] = STATE(4700), - [sym_double_splat] = STATE(4700), - [sym_named_expr] = STATE(4700), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [1020] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4518), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1020), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(4360), + [sym_double_splat] = STATE(4360), + [sym_named_expr] = STATE(4360), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2141), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__unary_star] = ACTIONS(2169), - [sym__unary_double_star] = ACTIONS(2171), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__unary_star] = ACTIONS(2145), + [sym__unary_double_star] = ACTIONS(2147), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1016] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6787), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5319), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(6255), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1016), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(4347), - [sym_double_splat] = STATE(4347), - [sym_named_expr] = STATE(4347), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3189), + [1021] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5726), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1021), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym__implicit_object_call] = STATE(5517), + [sym_implicit_call_chainable] = STATE(5072), + [sym_implicit_call_unchainable] = STATE(5519), + [sym_implicit_object_assign] = STATE(5517), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3151), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3155), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(3769), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__unary_star] = ACTIONS(3165), - [sym__unary_double_star] = ACTIONS(3167), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [1017] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1017), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10544), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1022] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3425), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4343), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1022), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(9942), + [sym_double_splat] = STATE(9942), + [sym_named_expr] = STATE(9942), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(1957), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -205626,14 +206505,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3743), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -205642,7 +206519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(1995), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), @@ -205650,7 +206527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), + [sym_identifier_method_call] = ACTIONS(2003), [sym_instance_var] = ACTIONS(2005), [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), @@ -205669,6 +206546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_minus] = ACTIONS(2027), [sym_unary_wrapping_plus] = ACTIONS(2029), [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__unary_star] = ACTIONS(2031), + [sym__unary_double_star] = ACTIONS(2033), [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), @@ -205682,94 +206561,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1018] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6879), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1018), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10722), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1023] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4870), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3541), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4558), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1023), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_splat] = STATE(4698), + [sym_double_splat] = STATE(4698), + [sym_named_expr] = STATE(4698), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2117), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__unary_star] = ACTIONS(2145), + [sym__unary_double_star] = ACTIONS(2147), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1024] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3901), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1024), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym__implicit_object_call] = STATE(3776), + [sym_implicit_call_chainable] = STATE(3503), + [sym_implicit_call_unchainable] = STATE(3875), + [sym_implicit_object_assign] = STATE(3776), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(3771), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1025] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4704), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1025), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10439), + [sym_implicit_call_chainable] = STATE(9467), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_implicit_object_assign] = STATE(10439), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), [sym_false] = ACTIONS(1961), [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3745), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), + [anon_sym_DOT] = ACTIONS(3705), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -205818,78 +206969,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1019] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3397), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4525), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1019), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_splat] = STATE(10016), - [sym_double_splat] = STATE(10016), - [sym_named_expr] = STATE(10016), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(1957), + [1026] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5240), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1026), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym__implicit_object_call] = STATE(9455), + [sym_implicit_call_chainable] = STATE(9448), + [sym_implicit_call_unchainable] = STATE(9926), + [sym_implicit_object_tuple] = STATE(9455), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(3767), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3773), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1027] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4018), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1027), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(4139), + [sym_double_splat] = STATE(4139), + [sym_named_expr] = STATE(4139), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(637), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1028] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7035), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1028), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym__implicit_object_call] = STATE(4346), + [sym_implicit_call_chainable] = STATE(6398), + [sym_implicit_call_unchainable] = STATE(4443), + [sym_implicit_object_assign] = STATE(4346), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -205902,30 +207326,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(3775), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(1995), + [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2003), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -205933,20 +207358,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__unary_star] = ACTIONS(2031), - [sym__unary_double_star] = ACTIONS(2033), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -205954,890 +207377,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1020] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6135), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(4870), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(5523), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1020), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_splat] = STATE(6037), - [sym_double_splat] = STATE(6037), - [sym_named_expr] = STATE(6037), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(2839), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__unary_star] = ACTIONS(2867), - [sym__unary_double_star] = ACTIONS(2869), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1021] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3645), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(2982), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3749), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1021), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_splat] = STATE(3759), - [sym_double_splat] = STATE(3759), - [sym_named_expr] = STATE(3759), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(499), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(507), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__unary_star] = ACTIONS(545), - [sym__unary_double_star] = ACTIONS(547), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1022] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5627), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1022), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym__implicit_object_call] = STATE(5616), - [sym_implicit_call_chainable] = STATE(5168), - [sym_implicit_call_unchainable] = STATE(5651), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_DOT] = ACTIONS(3747), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1023] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6853), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1023), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym__implicit_object_call] = STATE(5765), - [sym_implicit_call_chainable] = STATE(6223), - [sym_implicit_call_unchainable] = STATE(5797), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(3749), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1024] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4378), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1024), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym__implicit_object_call] = STATE(4028), - [sym_implicit_call_chainable] = STATE(4133), - [sym_implicit_call_unchainable] = STATE(4134), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(3753), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1025] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5985), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1025), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym__implicit_object_call] = STATE(5765), - [sym_implicit_call_chainable] = STATE(5606), - [sym_implicit_call_unchainable] = STATE(5797), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(3755), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1026] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5052), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1026), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym__implicit_object_call] = STATE(4478), - [sym_implicit_call_chainable] = STATE(4901), - [sym_implicit_call_unchainable] = STATE(4411), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1029] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6886), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1029), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10805), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -206846,15 +207457,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3779), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3757), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -206867,14 +207479,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -206882,13 +207494,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -206901,483 +207513,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1027] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5985), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1027), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym__implicit_object_call] = STATE(9775), - [sym_implicit_call_chainable] = STATE(9309), - [sym_implicit_call_unchainable] = STATE(9784), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_DOT] = ACTIONS(3729), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1028] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3362), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1028), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym__implicit_object_call] = STATE(3331), - [sym_implicit_call_chainable] = STATE(3214), - [sym_implicit_call_unchainable] = STATE(3351), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1029] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5206), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1029), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym__implicit_object_call] = STATE(5182), - [sym_implicit_call_chainable] = STATE(5088), - [sym_implicit_call_unchainable] = STATE(5274), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_DOT] = ACTIONS(3761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, [1030] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5052), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6894), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5468), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(6366), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1030), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym__implicit_object_call] = STATE(10362), - [sym_implicit_call_chainable] = STATE(9929), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_splat] = STATE(4479), + [sym_double_splat] = STATE(4479), + [sym_named_expr] = STATE(4479), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3123), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -207390,31 +207597,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3763), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), + [sym__constant_segment] = ACTIONS(3133), [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3137), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -207422,13 +207628,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__unary_star] = ACTIONS(3147), + [sym__unary_double_star] = ACTIONS(3149), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -207442,77 +207650,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [1031] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3096), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2781), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2442), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2826), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), [sym_heredoc_body] = STATE(1031), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym__implicit_object_call] = STATE(3072), - [sym_implicit_call_chainable] = STATE(2780), - [sym_implicit_call_unchainable] = STATE(3074), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_splat] = STATE(8006), + [sym_double_splat] = STATE(8006), + [sym_named_expr] = STATE(8006), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(1513), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -207525,31 +207733,30 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_DOT] = ACTIONS(3765), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [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), + [sym__constant_segment] = ACTIONS(1523), [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(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(1527), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -207557,13 +207764,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__unary_star] = ACTIONS(1541), + [sym__unary_double_star] = ACTIONS(1543), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -207577,76 +207786,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [1032] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4644), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6886), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1032), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10362), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10805), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -207656,13 +207865,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3781), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), + [anon_sym_DOT] = ACTIONS(3705), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -207712,616 +207922,620 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [1033] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4712), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4083), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(2913), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3734), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), [sym_heredoc_body] = STATE(1033), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym__implicit_object_call] = STATE(4639), - [sym_implicit_call_chainable] = STATE(4540), - [sym_implicit_call_unchainable] = STATE(4576), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(3767), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_splat] = STATE(3833), + [sym_double_splat] = STATE(3833), + [sym_named_expr] = STATE(3833), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(499), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(507), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__unary_star] = ACTIONS(545), + [sym__unary_double_star] = ACTIONS(547), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, [1034] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6995), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5948), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), [sym_heredoc_body] = STATE(1034), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym__implicit_object_call] = STATE(6741), - [sym_implicit_call_chainable] = STATE(6856), - [sym_implicit_call_unchainable] = STATE(6857), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3769), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym__implicit_object_call] = STATE(9786), + [sym_implicit_call_chainable] = STATE(9448), + [sym_implicit_call_unchainable] = STATE(9926), + [sym_implicit_object_tuple] = STATE(9786), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_DOT] = ACTIONS(3767), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3773), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, [1035] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3181), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5178), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(1035), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym__implicit_object_call] = STATE(3072), - [sym_implicit_call_chainable] = STATE(3073), - [sym_implicit_call_unchainable] = STATE(3074), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(15), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5194), + [sym_double_splat] = STATE(5194), + [sym_named_expr] = STATE(5194), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), [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_DOT] = ACTIONS(3773), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, [1036] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6271), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4852), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), [sym_heredoc_body] = STATE(1036), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym__implicit_object_call] = STATE(6534), - [sym_implicit_call_chainable] = STATE(6150), - [sym_implicit_call_unchainable] = STATE(6539), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(3775), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym__implicit_object_call] = STATE(4856), + [sym_implicit_call_chainable] = STATE(4249), + [sym_implicit_call_unchainable] = STATE(4681), + [sym_implicit_object_assign] = STATE(4856), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_DOT] = ACTIONS(3783), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, [1037] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6879), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6886), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1037), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(10722), - [sym_implicit_call_chainable] = STATE(9630), - [sym_implicit_call_unchainable] = STATE(10529), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10805), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -208331,13 +208545,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3785), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3639), + [anon_sym_DOT] = ACTIONS(3705), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -208387,211 +208602,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [1038] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4196), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1038), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym__implicit_object_call] = STATE(4028), - [sym_implicit_call_chainable] = STATE(3793), - [sym_implicit_call_unchainable] = STATE(4134), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(3777), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1039] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4644), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1039), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym__implicit_object_call] = STATE(4478), - [sym_implicit_call_chainable] = STATE(4410), - [sym_implicit_call_unchainable] = STATE(4411), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10203), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -208601,13 +208681,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3787), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3779), + [anon_sym_DOT] = ACTIONS(3705), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), @@ -208656,348 +208737,486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, + [1039] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5359), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1039), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym__implicit_object_call] = STATE(5483), + [sym_implicit_call_chainable] = STATE(5028), + [sym_implicit_call_unchainable] = STATE(5298), + [sym_implicit_object_assign] = STATE(5483), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(3789), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, [1040] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6798), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5574), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(4958), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), [sym_heredoc_body] = STATE(1040), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym__implicit_object_call] = STATE(4478), - [sym_implicit_call_chainable] = STATE(6570), - [sym_implicit_call_unchainable] = STATE(4411), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3189), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_splat] = STATE(5846), + [sym_double_splat] = STATE(5846), + [sym_named_expr] = STATE(5846), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3781), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(2841), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__unary_star] = ACTIONS(2869), + [sym__unary_double_star] = ACTIONS(2871), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, [1041] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2718), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5249), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4567), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), [sym_heredoc_body] = STATE(1041), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym__implicit_object_call] = STATE(2719), - [sym_implicit_call_chainable] = STATE(2493), - [sym_implicit_call_unchainable] = STATE(2658), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_splat] = STATE(5267), + [sym_double_splat] = STATE(5267), + [sym_named_expr] = STATE(5267), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(741), + [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_DOT] = ACTIONS(3783), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(789), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__unary_star] = ACTIONS(827), + [sym__unary_double_star] = ACTIONS(829), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, [1042] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6990), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6886), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1042), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym__implicit_object_call] = STATE(4478), - [sym_implicit_call_chainable] = STATE(6908), - [sym_implicit_call_unchainable] = STATE(4411), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10805), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -209006,17 +209225,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3791), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_DOT] = ACTIONS(3785), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -209027,14 +209247,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -209042,18 +209262,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -209062,348 +209282,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [1043] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6122), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6919), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1043), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym__implicit_object_call] = STATE(3753), - [sym_implicit_call_chainable] = STATE(5684), - [sym_implicit_call_unchainable] = STATE(3762), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym__implicit_object_call] = STATE(4346), + [sym_implicit_call_chainable] = STATE(6249), + [sym_implicit_call_unchainable] = STATE(4443), + [sym_implicit_object_assign] = STATE(4346), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(3789), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3135), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, [1044] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4959), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3731), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3001), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(3674), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), [sym_heredoc_body] = STATE(1044), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym__implicit_object_call] = STATE(4639), - [sym_implicit_call_chainable] = STATE(4575), - [sym_implicit_call_unchainable] = STATE(4576), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_DOT] = ACTIONS(3791), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1045] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4170), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1045), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym__implicit_object_call] = STATE(4114), - [sym_implicit_call_chainable] = STATE(3566), - [sym_implicit_call_unchainable] = STATE(4172), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_splat] = STATE(3798), + [sym_double_splat] = STATE(3798), + [sym_named_expr] = STATE(3798), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -209417,8 +209503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3609), [anon_sym_TILDE] = ACTIONS(615), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), @@ -209426,7 +209511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(623), [anon_sym_instance_sizeof] = ACTIONS(625), [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), + [sym__constant_segment] = ACTIONS(629), [anon_sym_COLON_COLON] = ACTIONS(631), [anon_sym___LINE__] = ACTIONS(633), [anon_sym___END_LINE__] = ACTIONS(633), @@ -209434,7 +209519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(633), [sym_special_variable] = ACTIONS(635), [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), + [sym_identifier_method_call] = ACTIONS(637), [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), @@ -209453,6 +209538,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unary_minus] = ACTIONS(671), [sym_unary_wrapping_plus] = ACTIONS(673), [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__unary_star] = ACTIONS(675), + [sym__unary_double_star] = ACTIONS(677), [sym__beginless_range_operator] = ACTIONS(681), [sym__regex_start] = ACTIONS(683), [sym__regular_if_keyword] = ACTIONS(685), @@ -209466,482 +209553,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [1046] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4027), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1046), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym__implicit_object_call] = STATE(3753), - [sym_implicit_call_chainable] = STATE(3761), - [sym_implicit_call_unchainable] = STATE(3762), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(3795), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1047] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6695), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1047), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym__implicit_object_call] = STATE(6741), - [sym_implicit_call_chainable] = STATE(6519), - [sym_implicit_call_unchainable] = STATE(6857), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1048] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5838), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1048), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym__implicit_object_call] = STATE(6051), - [sym_implicit_call_chainable] = STATE(5691), - [sym_implicit_call_unchainable] = STATE(6185), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(3799), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1049] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7016), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1049), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2448), - [sym_index_call] = STATE(2449), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_lhs_splat] = STATE(10874), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_multi_assign_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(3801), + [1045] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5157), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1045), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym__implicit_object_call] = STATE(10439), + [sym_implicit_call_chainable] = STATE(9673), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_implicit_object_assign] = STATE(10439), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -209956,7 +209640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(53), + [anon_sym_DOT] = ACTIONS(3795), [anon_sym_BANG] = ACTIONS(3495), [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), @@ -209974,8 +209658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3803), - [sym_class_var] = ACTIONS(3805), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), [sym_private] = ACTIONS(3233), [sym_protected] = ACTIONS(3233), @@ -210005,76 +209689,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1050] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7021), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1050), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__base_method_def] = STATE(149), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4250), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3519), + [1046] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4045), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1046), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym__implicit_object_call] = STATE(3989), + [sym_implicit_call_chainable] = STATE(3348), + [sym_implicit_call_unchainable] = STATE(4046), + [sym_implicit_object_assign] = STATE(3989), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_DOT] = ACTIONS(3797), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1047] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6806), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1047), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym__implicit_object_call] = STATE(6777), + [sym_implicit_call_chainable] = STATE(6195), + [sym_implicit_call_unchainable] = STATE(6773), + [sym_implicit_object_assign] = STATE(6777), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3799), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1048] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6886), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1048), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym__implicit_object_call] = STATE(10805), + [sym_implicit_call_chainable] = STATE(9591), + [sym_implicit_call_unchainable] = STATE(10399), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -210087,12 +210045,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_abstract] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_def] = ACTIONS(59), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -210100,19 +210057,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -210120,13 +210077,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -210139,77 +210096,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1051] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7016), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1051), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7814), - [sym_index_operator] = STATE(2432), - [sym_index_call] = STATE(2433), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_lhs_splat] = STATE(10802), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_multi_assign_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(3809), + [1049] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7063), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1049), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2446), + [sym_index_call] = STATE(2475), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_lhs_splat] = STATE(10836), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_multi_assign_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(3801), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -210242,8 +210199,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3811), - [sym_class_var] = ACTIONS(3813), + [sym_instance_var] = ACTIONS(3803), + [sym_class_var] = ACTIONS(3805), [sym_self] = ACTIONS(1961), [sym_private] = ACTIONS(3233), [sym_protected] = ACTIONS(3233), @@ -210273,76 +210230,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1052] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7015), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1052), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__base_method_def] = STATE(169), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(3012), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3501), + [1050] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7055), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1050), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__base_method_def] = STATE(156), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4189), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3481), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -210357,7 +210314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_abstract] = ACTIONS(3815), + [anon_sym_abstract] = ACTIONS(3807), [anon_sym_BANG] = ACTIONS(3495), [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_def] = ACTIONS(59), @@ -210368,14 +210325,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3497), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(91), + [sym_identifier_method_call] = ACTIONS(1355), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -210407,210 +210364,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1053] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7016), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1053), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2451), - [sym_index_call] = STATE(2451), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_lhs_splat] = STATE(11634), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_multi_assign_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(3817), - [anon_sym_LPAREN] = ACTIONS(3820), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3823), - [sym_true] = ACTIONS(3823), - [sym_false] = ACTIONS(3823), - [aux_sym_integer_token2] = ACTIONS(3826), - [aux_sym_float_token2] = ACTIONS(3829), - [anon_sym_SQUOTE] = ACTIONS(3832), - [sym_operator_symbol] = ACTIONS(3835), - [sym_unquoted_symbol] = ACTIONS(3835), - [anon_sym_COLON_DQUOTE] = ACTIONS(3838), - [anon_sym_BQUOTE] = ACTIONS(3841), - [anon_sym_LBRACK] = ACTIONS(3844), - [anon_sym_DASH_GT] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3850), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_TILDE] = ACTIONS(3856), - [anon_sym_with] = ACTIONS(3859), - [anon_sym_yield] = ACTIONS(3862), - [anon_sym_typeof] = ACTIONS(3865), - [anon_sym_sizeof] = ACTIONS(3868), - [anon_sym_instance_sizeof] = ACTIONS(3871), - [anon_sym_offsetof] = ACTIONS(3874), - [sym__constant_segment] = ACTIONS(3877), - [anon_sym_COLON_COLON] = ACTIONS(3880), - [anon_sym___LINE__] = ACTIONS(3883), - [anon_sym___END_LINE__] = ACTIONS(3883), - [anon_sym___FILE__] = ACTIONS(3883), - [anon_sym___DIR__] = ACTIONS(3883), - [sym_special_variable] = ACTIONS(3886), - [sym_global_match_data_index] = ACTIONS(3835), - [sym_identifier_method_call] = ACTIONS(3889), - [sym_instance_var] = ACTIONS(3892), - [sym_class_var] = ACTIONS(3892), - [sym_self] = ACTIONS(3823), - [sym_private] = ACTIONS(3895), - [sym_protected] = ACTIONS(3895), - [anon_sym_begin] = ACTIONS(3898), - [anon_sym_while] = ACTIONS(3901), - [anon_sym_until] = ACTIONS(3904), - [anon_sym_case] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3910), - [aux_sym_asm_token1] = ACTIONS(3913), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3916), - [sym__start_of_named_tuple] = ACTIONS(3919), - [sym_unary_plus] = ACTIONS(3922), - [sym_unary_minus] = ACTIONS(3922), - [sym_unary_wrapping_plus] = ACTIONS(3925), - [sym_unary_wrapping_minus] = ACTIONS(3925), - [sym__beginless_range_operator] = ACTIONS(3928), - [sym__regex_start] = ACTIONS(3931), - [sym__regular_if_keyword] = ACTIONS(3934), - [sym__regular_unless_keyword] = ACTIONS(3937), - [sym__string_literal_start] = ACTIONS(3940), - [sym__string_percent_literal_start] = ACTIONS(3943), - [sym__command_percent_literal_start] = ACTIONS(3946), - [sym__string_array_percent_literal_start] = ACTIONS(3949), - [sym__symbol_array_percent_literal_start] = ACTIONS(3952), - [sym__regex_percent_literal_start] = ACTIONS(3955), - [sym_heredoc_start] = ACTIONS(3835), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1054] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7014), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1054), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym__base_method_def] = STATE(157), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4776), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3481), + [1051] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7071), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1051), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__base_method_def] = STATE(176), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(2971), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3519), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -210625,7 +210448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_abstract] = ACTIONS(3958), + [anon_sym_abstract] = ACTIONS(3809), [anon_sym_BANG] = ACTIONS(3495), [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_def] = ACTIONS(59), @@ -210636,14 +210459,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3533), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2534), + [sym_identifier_method_call] = ACTIONS(91), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -210675,211 +210498,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1055] = { - [sym_heredoc_body] = STATE(1055), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3603), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), - [anon_sym_DASH_EQ] = ACTIONS(3603), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), - [anon_sym_STAR_EQ] = ACTIONS(3603), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), - [anon_sym_SLASH_EQ] = ACTIONS(3603), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), - [anon_sym_PERCENT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_EQ] = ACTIONS(3603), - [anon_sym_CARET_EQ] = ACTIONS(3603), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), - [anon_sym_LT_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_GT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_else] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__regular_rescue_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__regular_ensure_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), - }, - [1056] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7016), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1056), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2412), - [sym_index_call] = STATE(2413), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_lhs_splat] = STATE(10782), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_multi_assign_repeat1] = STATE(1053), - [sym_identifier] = ACTIONS(3960), + [1052] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7059), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1052), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym__base_method_def] = STATE(174), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4666), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3501), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -210894,9 +210582,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(3811), [anon_sym_BANG] = ACTIONS(3495), [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_def] = ACTIONS(59), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -210904,16 +210593,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(3515), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3962), - [sym_class_var] = ACTIONS(3964), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), [sym_private] = ACTIONS(3233), [sym_protected] = ACTIONS(3233), @@ -210943,72 +210632,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1057] = { - [sym_heredoc_body] = STATE(1057), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), + [1053] = { + [sym_heredoc_body] = STATE(1053), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), + [anon_sym_PLUS_EQ] = ACTIONS(3603), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), + [anon_sym_DASH_EQ] = ACTIONS(3603), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), + [anon_sym_STAR_EQ] = ACTIONS(3603), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), + [anon_sym_SLASH_EQ] = ACTIONS(3603), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), + [anon_sym_PERCENT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_EQ] = ACTIONS(3603), + [anon_sym_CARET_EQ] = ACTIONS(3603), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), + [anon_sym_LT_LT_EQ] = ACTIONS(3603), + [anon_sym_GT_GT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__regular_rescue_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__regular_ensure_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), + }, + [1054] = { + [sym_heredoc_body] = STATE(1054), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), [anon_sym_PLUS_EQ] = ACTIONS(3603), [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), [anon_sym_DASH_EQ] = ACTIONS(3603), @@ -211026,127 +210849,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3603), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_else] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__regular_rescue_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__regular_ensure_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__regular_rescue_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__regular_ensure_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1058] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6048), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1058), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10571), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1055] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7063), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1055), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7870), + [sym_index_operator] = STATE(2473), + [sym_index_call] = STATE(2474), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_lhs_splat] = STATE(10793), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_multi_assign_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(3813), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -211155,15 +210979,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3637), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -211176,14 +211000,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3815), + [sym_class_var] = ACTIONS(3817), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -211191,13 +211015,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -211210,209 +211034,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1059] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1059), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token1] = ACTIONS(3966), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token1] = ACTIONS(3968), - [aux_sym_float_token2] = ACTIONS(3970), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [1056] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7063), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1056), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7869), + [sym_index_operator] = STATE(2422), + [sym_index_call] = STATE(2422), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_lhs_splat] = STATE(12051), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_multi_assign_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(3819), + [anon_sym_LPAREN] = ACTIONS(3822), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3825), + [sym_true] = ACTIONS(3825), + [sym_false] = ACTIONS(3825), + [aux_sym_integer_token2] = ACTIONS(3828), + [aux_sym_float_token2] = ACTIONS(3831), + [anon_sym_SQUOTE] = ACTIONS(3834), + [sym_operator_symbol] = ACTIONS(3837), + [sym_unquoted_symbol] = ACTIONS(3837), + [anon_sym_COLON_DQUOTE] = ACTIONS(3840), + [anon_sym_BQUOTE] = ACTIONS(3843), + [anon_sym_LBRACK] = ACTIONS(3846), + [anon_sym_DASH_GT] = ACTIONS(3849), + [anon_sym_STAR] = ACTIONS(3852), + [anon_sym_BANG] = ACTIONS(3855), + [anon_sym_TILDE] = ACTIONS(3858), + [anon_sym_with] = ACTIONS(3861), + [anon_sym_yield] = ACTIONS(3864), + [anon_sym_typeof] = ACTIONS(3867), + [anon_sym_sizeof] = ACTIONS(3870), + [anon_sym_instance_sizeof] = ACTIONS(3873), + [anon_sym_offsetof] = ACTIONS(3876), + [sym__constant_segment] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3882), + [anon_sym___LINE__] = ACTIONS(3885), + [anon_sym___END_LINE__] = ACTIONS(3885), + [anon_sym___FILE__] = ACTIONS(3885), + [anon_sym___DIR__] = ACTIONS(3885), + [sym_special_variable] = ACTIONS(3888), + [sym_global_match_data_index] = ACTIONS(3837), + [sym_identifier_method_call] = ACTIONS(3891), + [sym_instance_var] = ACTIONS(3894), + [sym_class_var] = ACTIONS(3894), + [sym_self] = ACTIONS(3825), + [sym_private] = ACTIONS(3897), + [sym_protected] = ACTIONS(3897), + [anon_sym_begin] = ACTIONS(3900), + [anon_sym_while] = ACTIONS(3903), + [anon_sym_until] = ACTIONS(3906), + [anon_sym_case] = ACTIONS(3909), + [anon_sym_select] = ACTIONS(3912), + [aux_sym_asm_token1] = ACTIONS(3915), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3918), + [sym__start_of_named_tuple] = ACTIONS(3921), + [sym_unary_plus] = ACTIONS(3924), + [sym_unary_minus] = ACTIONS(3924), + [sym_unary_wrapping_plus] = ACTIONS(3927), + [sym_unary_wrapping_minus] = ACTIONS(3927), + [sym__beginless_range_operator] = ACTIONS(3930), + [sym__regex_start] = ACTIONS(3933), + [sym__regular_if_keyword] = ACTIONS(3936), + [sym__regular_unless_keyword] = ACTIONS(3939), + [sym__string_literal_start] = ACTIONS(3942), + [sym__string_percent_literal_start] = ACTIONS(3945), + [sym__command_percent_literal_start] = ACTIONS(3948), + [sym__string_array_percent_literal_start] = ACTIONS(3951), + [sym__symbol_array_percent_literal_start] = ACTIONS(3954), + [sym__regex_percent_literal_start] = ACTIONS(3957), + [sym_heredoc_start] = ACTIONS(3837), [sym__heredoc_body_start] = ACTIONS(7), }, - [1060] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6113), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1060), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10633), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1057] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7063), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1057), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2447), + [sym_index_call] = STATE(2449), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_lhs_splat] = STATE(10762), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_multi_assign_repeat1] = STATE(1056), + [sym_identifier] = ACTIONS(3960), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -211421,15 +211247,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3972), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(53), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -211442,14 +211268,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3962), + [sym_class_var] = ACTIONS(3964), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -211457,13 +211283,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -211476,85 +211302,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1061] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1061), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1058] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3185), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1058), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [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(3966), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token1] = ACTIONS(3968), + [aux_sym_float_token2] = ACTIONS(3970), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1059] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5974), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1059), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10145), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), [sym_false] = ACTIONS(1961), - [aux_sym_integer_token1] = ACTIONS(3966), [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token1] = ACTIONS(3968), - [aux_sym_float_token2] = ACTIONS(3970), + [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3972), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -211609,76 +211568,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1062] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5892), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1062), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10288), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1060] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1060), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -211692,10 +211651,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -211708,14 +211667,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -211723,13 +211682,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -211742,75 +211701,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1063] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1063), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1061] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1061), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -211875,76 +211834,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1064] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6184), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1064), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10622), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1062] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1062), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -211958,10 +211917,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -211974,14 +211933,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -211989,13 +211948,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -212008,75 +211967,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1065] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1065), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1063] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6840), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1063), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token1] = ACTIONS(3980), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token1] = ACTIONS(3982), + [aux_sym_float_token2] = ACTIONS(3984), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1064] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1064), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -212086,7 +212178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_RBRACE] = ACTIONS(3986), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -212141,76 +212233,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1066] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6149), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1066), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10467), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1065] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1065), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -212219,15 +212311,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_RBRACE] = ACTIONS(3988), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -212240,14 +212332,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -212255,13 +212347,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -212274,208 +212366,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1067] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4898), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1067), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token1] = ACTIONS(3984), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token1] = ACTIONS(3986), - [aux_sym_float_token2] = ACTIONS(3988), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1068] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1068), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1066] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1066), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -212540,75 +212499,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1069] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1069), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1067] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1067), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -212673,341 +212632,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1070] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5900), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1070), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), + [1068] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6664), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1068), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), [aux_sym_integer_token1] = ACTIONS(3994), - [aux_sym_integer_token2] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2917), [aux_sym_float_token1] = ACTIONS(3996), [aux_sym_float_token2] = ACTIONS(3998), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1071] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2891), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1071), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(4000), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token1] = ACTIONS(4002), - [aux_sym_float_token2] = ACTIONS(4004), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1072] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1072), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1069] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1069), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -213017,7 +212843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_RBRACE] = ACTIONS(4000), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -213072,76 +212898,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1073] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6175), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1073), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10119), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1070] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1070), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -213150,15 +212976,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_RBRACE] = ACTIONS(4002), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -213171,14 +212997,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -213186,13 +213012,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -213205,350 +213031,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1074] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3593), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1074), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(4010), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(4012), - [aux_sym_float_token2] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1075] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5361), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1075), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3249), + [1071] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1071), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token1] = ACTIONS(4016), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token1] = ACTIONS(4018), - [aux_sym_float_token2] = ACTIONS(4020), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4004), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1076] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2688), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1076), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1072] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2647), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1072), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), [sym_false] = ACTIONS(179), - [aux_sym_integer_token1] = ACTIONS(4022), + [aux_sym_integer_token1] = ACTIONS(4006), [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token1] = ACTIONS(4024), - [aux_sym_float_token2] = ACTIONS(4026), + [aux_sym_float_token1] = ACTIONS(4008), + [aux_sym_float_token2] = ACTIONS(4010), [anon_sym_SQUOTE] = ACTIONS(185), [sym_operator_symbol] = ACTIONS(187), [sym_unquoted_symbol] = ACTIONS(187), @@ -213556,7 +213249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -213564,7 +213257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(211), [anon_sym_instance_sizeof] = ACTIONS(213), [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), + [sym__constant_segment] = ACTIONS(2274), [anon_sym_COLON_COLON] = ACTIONS(219), [anon_sym___LINE__] = ACTIONS(221), [anon_sym___END_LINE__] = ACTIONS(221), @@ -213572,7 +213265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(221), [sym_special_variable] = ACTIONS(223), [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), + [sym_identifier_method_call] = ACTIONS(2276), [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), @@ -213604,75 +213297,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1077] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1077), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1073] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1073), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -213682,7 +213375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(4012), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -213737,76 +213430,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1078] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6193), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1078), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10293), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1074] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1074), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -213815,15 +213508,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4014), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -213836,14 +213529,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -213851,13 +213544,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -213870,85 +213563,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1079] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1079), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1075] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4589), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1075), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), [sym_false] = ACTIONS(1961), + [aux_sym_integer_token1] = ACTIONS(4016), [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), + [aux_sym_float_token1] = ACTIONS(4018), + [aux_sym_float_token2] = ACTIONS(4020), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4032), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -214003,474 +213696,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1080] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3153), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1080), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(4000), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token1] = ACTIONS(4002), - [aux_sym_float_token2] = ACTIONS(4004), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1081] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6872), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1081), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token1] = ACTIONS(4034), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token1] = ACTIONS(4036), - [aux_sym_float_token2] = ACTIONS(4038), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1082] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3973), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1082), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token1] = ACTIONS(4040), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token1] = ACTIONS(4042), - [aux_sym_float_token2] = ACTIONS(4044), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1083] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1083), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1076] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1076), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -214480,7 +213774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4022), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -214535,75 +213829,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1084] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1084), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1077] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1077), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -214613,7 +213907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4048), + [anon_sym_RBRACE] = ACTIONS(4024), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -214668,76 +213962,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1085] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5753), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1085), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10375), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1078] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6188), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1078), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token1] = ACTIONS(4026), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token1] = ACTIONS(4028), + [aux_sym_float_token2] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1079] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1079), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -214746,15 +214173,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4032), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -214767,14 +214194,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -214782,13 +214209,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -214801,341 +214228,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1086] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6280), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1086), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token1] = ACTIONS(4052), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token1] = ACTIONS(4054), - [aux_sym_float_token2] = ACTIONS(4056), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1087] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5475), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1087), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token1] = ACTIONS(4058), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token1] = ACTIONS(4060), - [aux_sym_float_token2] = ACTIONS(4062), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1088] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1088), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1080] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1080), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -215145,7 +214306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4034), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -215200,93 +214361,758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1089] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1089), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1081] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6840), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1081), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token1] = ACTIONS(3980), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token1] = ACTIONS(3982), + [aux_sym_float_token2] = ACTIONS(3984), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1082] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4168), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1082), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token1] = ACTIONS(4036), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token1] = ACTIONS(4038), + [aux_sym_float_token2] = ACTIONS(4040), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1083] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4568), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1083), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token1] = ACTIONS(4036), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token1] = ACTIONS(4038), + [aux_sym_float_token2] = ACTIONS(4040), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1084] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4589), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1084), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), [sym_false] = ACTIONS(1961), + [aux_sym_integer_token1] = ACTIONS(4016), [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), + [aux_sym_float_token1] = ACTIONS(4018), + [aux_sym_float_token2] = ACTIONS(4020), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4066), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1085] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4812), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1085), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token1] = ACTIONS(4042), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token1] = ACTIONS(4044), + [aux_sym_float_token2] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1086] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5987), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1086), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10481), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4048), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -215299,14 +215125,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -215314,13 +215140,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -215333,75 +215159,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1090] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1090), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1087] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6188), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1087), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token1] = ACTIONS(4026), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token1] = ACTIONS(4028), + [aux_sym_float_token2] = ACTIONS(4030), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1088] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1088), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -215411,7 +215370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_RBRACE] = ACTIONS(4050), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -215466,75 +215425,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1091] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1091), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1089] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1089), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -215544,7 +215503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4052), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -215599,76 +215558,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1092] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1092), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1090] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5992), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1090), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10735), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -215677,15 +215636,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4054), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -215698,14 +215657,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -215713,13 +215672,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -215732,75 +215691,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1093] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5774), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1093), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10452), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1091] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5996), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1091), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10150), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -215810,7 +215769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4056), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -215865,217 +215824,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1094] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4186), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1094), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), + [1092] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3535), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1092), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token1] = ACTIONS(4076), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token1] = ACTIONS(4078), - [aux_sym_float_token2] = ACTIONS(4080), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1095] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3433), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1095), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), [sym_false] = ACTIONS(323), - [aux_sym_integer_token1] = ACTIONS(4082), + [aux_sym_integer_token1] = ACTIONS(4058), [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token1] = ACTIONS(4084), - [aux_sym_float_token2] = ACTIONS(4086), + [aux_sym_float_token1] = ACTIONS(4060), + [aux_sym_float_token2] = ACTIONS(4062), [anon_sym_SQUOTE] = ACTIONS(329), [sym_operator_symbol] = ACTIONS(331), [sym_unquoted_symbol] = ACTIONS(331), @@ -216083,7 +215909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -216091,7 +215917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(353), [anon_sym_instance_sizeof] = ACTIONS(355), [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), + [sym__constant_segment] = ACTIONS(2899), [anon_sym_COLON_COLON] = ACTIONS(361), [anon_sym___LINE__] = ACTIONS(363), [anon_sym___END_LINE__] = ACTIONS(363), @@ -216099,240 +215925,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(363), [sym_special_variable] = ACTIONS(365), [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), + [sym_identifier_method_call] = ACTIONS(2901), [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1096] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1096), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4088), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1097] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1097), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1093] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1093), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -216342,7 +216035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_RBRACE] = ACTIONS(4064), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -216397,75 +216090,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1098] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5793), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1098), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10537), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1094] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5999), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1094), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10698), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -216475,7 +216168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4092), + [anon_sym_RBRACE] = ACTIONS(4066), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -216530,75 +216223,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1099] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1099), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1095] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1095), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -216608,7 +216301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4094), + [anon_sym_RBRACE] = ACTIONS(4068), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -216663,342 +216356,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1100] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4462), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1100), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token1] = ACTIONS(4076), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token1] = ACTIONS(4078), - [aux_sym_float_token2] = ACTIONS(4080), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1101] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6872), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1101), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token1] = ACTIONS(4034), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token1] = ACTIONS(4036), - [aux_sym_float_token2] = ACTIONS(4038), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1102] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1102), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1096] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6002), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1096), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10282), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -217007,15 +216434,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4070), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -217028,14 +216455,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -217043,13 +216470,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -217062,75 +216489,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1103] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5817), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1103), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10646), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1097] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4270), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1097), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token1] = ACTIONS(4072), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token1] = ACTIONS(4074), + [aux_sym_float_token2] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1098] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1098), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10122), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -217140,7 +216700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4078), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -217195,351 +216755,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1104] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4706), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1104), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token1] = ACTIONS(3984), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token1] = ACTIONS(3986), - [aux_sym_float_token2] = ACTIONS(3988), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1105] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3593), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1105), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token1] = ACTIONS(4010), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token1] = ACTIONS(4012), - [aux_sym_float_token2] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1106] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6048), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1106), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10699), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1099] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4589), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1099), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), [sym_false] = ACTIONS(1961), + [aux_sym_integer_token1] = ACTIONS(4016), [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), + [aux_sym_float_token1] = ACTIONS(4018), + [aux_sym_float_token2] = ACTIONS(4020), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4100), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -217594,209 +216888,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1107] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5900), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1107), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token1] = ACTIONS(3994), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token1] = ACTIONS(3996), - [aux_sym_float_token2] = ACTIONS(3998), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1108] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1108), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1100] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6006), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1100), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10319), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -217805,15 +216966,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4080), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -217826,14 +216987,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -217841,13 +217002,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -217860,76 +217021,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1109] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1109), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1101] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6009), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1101), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10452), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -217938,15 +217099,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_RBRACE] = ACTIONS(4082), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -217959,14 +217120,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -217974,13 +217135,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -217993,75 +217154,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1110] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1110), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1102] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1102), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -218071,7 +217232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4106), + [anon_sym_RBRACE] = ACTIONS(4084), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -218126,208 +217287,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1111] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5751), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1111), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10296), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4108), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1112] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1112), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1103] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1103), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -218337,7 +217365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_RBRACE] = ACTIONS(4086), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -218392,76 +217420,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1113] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1113), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1104] = { + [sym_heredoc_body] = STATE(1104), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_RPAREN] = ACTIONS(3597), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [anon_sym_RBRACE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_RBRACK] = ACTIONS(3597), + [anon_sym_EQ_GT] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), + [anon_sym_PLUS_EQ] = ACTIONS(3603), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), + [anon_sym_DASH_EQ] = ACTIONS(3603), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), + [anon_sym_STAR_EQ] = ACTIONS(3603), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), + [anon_sym_SLASH_EQ] = ACTIONS(3603), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), + [anon_sym_PERCENT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_EQ] = ACTIONS(3603), + [anon_sym_CARET_EQ] = ACTIONS(3603), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), + [anon_sym_LT_LT_EQ] = ACTIONS(3603), + [anon_sym_GT_GT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), + [anon_sym_COLON2] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_when] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [anon_sym_in] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), + }, + [1105] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5281), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1105), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token1] = ACTIONS(4088), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token1] = ACTIONS(4090), + [aux_sym_float_token2] = ACTIONS(4092), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1106] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6011), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1106), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10674), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -218470,15 +217764,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_RBRACE] = ACTIONS(4094), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -218491,14 +217785,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -218506,13 +217800,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -218525,75 +217819,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1114] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1114), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1107] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1107), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -218603,7 +217897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4114), + [anon_sym_RBRACE] = ACTIONS(4096), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -218658,76 +217952,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1115] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1115), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1108] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6013), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1108), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10194), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -218736,15 +218030,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4098), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -218757,14 +218051,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -218772,13 +218066,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -218791,75 +218085,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1116] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6159), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1116), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10367), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1109] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6015), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1109), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10103), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -218869,7 +218163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4118), + [anon_sym_RBRACE] = ACTIONS(4100), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -218924,76 +218218,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1117] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1117), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1110] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5697), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1110), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token1] = ACTIONS(4102), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token1] = ACTIONS(4104), + [aux_sym_float_token2] = ACTIONS(4106), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1111] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6018), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1111), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10290), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -219002,15 +218429,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_RBRACE] = ACTIONS(4108), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -219023,14 +218450,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -219038,13 +218465,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -219057,75 +218484,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1118] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1118), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1112] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2944), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1112), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(3966), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token1] = ACTIONS(3968), + [aux_sym_float_token2] = ACTIONS(3970), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1113] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1113), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -219135,7 +218695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4122), + [anon_sym_RBRACE] = ACTIONS(4110), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -219190,76 +218750,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1119] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1119), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1114] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6020), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1114), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10464), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -219268,15 +218828,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4112), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -219289,14 +218849,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -219304,13 +218864,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -219323,75 +218883,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1120] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1120), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1115] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3838), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1115), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token1] = ACTIONS(4114), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(4116), + [aux_sym_float_token2] = ACTIONS(4118), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1116] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1116), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -219401,7 +219094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4126), + [anon_sym_RBRACE] = ACTIONS(4120), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -219456,75 +219149,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1121] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1121), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1117] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1117), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -219534,7 +219227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_RBRACE] = ACTIONS(4122), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -219589,75 +219282,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1122] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1122), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1118] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3838), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1118), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token1] = ACTIONS(4114), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token1] = ACTIONS(4116), + [aux_sym_float_token2] = ACTIONS(4118), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1119] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6109), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1119), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token1] = ACTIONS(4124), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token1] = ACTIONS(4126), + [aux_sym_float_token2] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1120] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4892), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1120), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token1] = ACTIONS(4042), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token1] = ACTIONS(4044), + [aux_sym_float_token2] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1121] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1121), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -219722,75 +219814,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1123] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1123), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1122] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1122), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -219855,75 +219947,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1124] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1124), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1123] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1123), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -219988,75 +220080,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1125] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1125), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1124] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1124), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -220121,95 +220213,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1126] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1126), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1125] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1125), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), [sym_false] = ACTIONS(1961), - [aux_sym_integer_token1] = ACTIONS(3966), [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token1] = ACTIONS(3968), - [aux_sym_float_token2] = ACTIONS(3970), + [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4138), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -220220,14 +220312,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -220235,18 +220327,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -220254,75 +220346,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1127] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1127), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1126] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1126), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -220332,7 +220424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4140), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -220387,76 +220479,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1128] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6184), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1128), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10563), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1127] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1127), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -220465,15 +220557,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4140), + [anon_sym_RBRACE] = ACTIONS(4142), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -220486,14 +220578,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -220501,13 +220593,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -220520,75 +220612,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1129] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1129), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1128] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1128), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -220598,7 +220690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4142), + [anon_sym_RBRACE] = ACTIONS(4144), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -220653,76 +220745,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1130] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6113), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1130), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10576), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1129] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1129), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -220731,15 +220823,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4146), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -220752,14 +220844,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -220767,13 +220859,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -220786,76 +220878,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1131] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6175), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1131), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10583), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1130] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1130), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -220864,15 +220956,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4148), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -220885,14 +220977,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -220900,13 +220992,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -220919,76 +221011,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1132] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5817), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1132), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10594), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1131] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1131), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -220997,15 +221089,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4150), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -221018,14 +221110,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -221033,13 +221125,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -221052,75 +221144,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1133] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1133), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1132] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1132), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -221130,7 +221222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4152), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -221185,95 +221277,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1134] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1134), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1133] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4589), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1133), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), [sym_false] = ACTIONS(1961), + [aux_sym_integer_token1] = ACTIONS(4016), [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), + [aux_sym_float_token1] = ACTIONS(4018), + [aux_sym_float_token2] = ACTIONS(4020), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4152), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -221284,14 +221376,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -221299,18 +221391,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -221318,93 +221410,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1135] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1135), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1134] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5974), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1134), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10617), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), [sym_false] = ACTIONS(1961), - [aux_sym_integer_token1] = ACTIONS(3966), [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token1] = ACTIONS(3968), - [aux_sym_float_token2] = ACTIONS(3970), + [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4154), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -221417,14 +221509,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -221432,13 +221524,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -221451,75 +221543,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1136] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5871), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1136), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10058), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1135] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5987), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1135), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10624), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -221529,7 +221621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(3703), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -221584,341 +221676,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1137] = { - [sym_heredoc_body] = STATE(1137), - [sym_identifier] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3599), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [anon_sym_RBRACE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_RBRACK] = ACTIONS(3599), - [anon_sym_EQ_GT] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3603), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), - [anon_sym_DASH_EQ] = ACTIONS(3603), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), - [anon_sym_STAR_EQ] = ACTIONS(3603), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), - [anon_sym_SLASH_EQ] = ACTIONS(3603), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), - [anon_sym_PERCENT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_EQ] = ACTIONS(3603), - [anon_sym_CARET_EQ] = ACTIONS(3603), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), - [anon_sym_LT_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_GT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_COLON2] = ACTIONS(3601), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_else] = ACTIONS(3601), - [anon_sym_when] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [anon_sym_in] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), - }, - [1138] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5763), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1138), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token1] = ACTIONS(4156), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token1] = ACTIONS(4158), - [aux_sym_float_token2] = ACTIONS(4160), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1139] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6159), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1139), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10700), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1136] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5992), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1136), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10632), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -221928,7 +221754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4162), + [anon_sym_RBRACE] = ACTIONS(4156), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -221983,76 +221809,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1140] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1140), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1137] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5999), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1137), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10639), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -222061,15 +221887,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4158), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -222082,14 +221908,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -222097,13 +221923,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -222116,76 +221942,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1141] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1141), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1138] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6011), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1138), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10649), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -222194,15 +222020,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4160), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -222215,14 +222041,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -222230,13 +222056,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -222249,74 +222075,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1142] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6579), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1142), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1139] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6020), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1139), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10745), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -222326,12 +222153,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4162), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4168), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -222381,75 +222208,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1143] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1143), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1140] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1140), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -222458,15 +222286,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_RBRACE] = ACTIONS(4164), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -222479,14 +222307,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -222494,13 +222322,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -222513,75 +222341,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1144] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1144), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1141] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1141), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -222590,15 +222419,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4166), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4172), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -222611,14 +222440,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -222626,13 +222455,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -222645,74 +222474,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1145] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1145), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1142] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1142), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -222722,12 +222551,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4174), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4168), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1143] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3936), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1143), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1144] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3142), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1144), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1199), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1145] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1145), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4170), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -222778,73 +223003,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [1146] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1146), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -222859,7 +223084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4176), + [anon_sym_RBRACK] = ACTIONS(4172), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -222910,76 +223135,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [1147] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1147), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4178), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -222992,6 +223216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4174), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -223042,469 +223267,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), }, [1148] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2978), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1148), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(15), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4176), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, [1149] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2980), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1149), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1257), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(15), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4178), [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, [1150] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3000), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), [sym_heredoc_body] = STATE(1150), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1258), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1151] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1151), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(4180), @@ -223569,2584 +223662,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1152] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3010), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1152), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1266), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1153] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3016), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1153), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1267), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1154] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3019), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1154), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1268), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1155] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4728), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1155), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1156), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1156] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4562), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1156), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1157] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4563), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1157), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1164), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1158] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4564), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1158), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1165), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1159] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4565), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1159), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1166), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1160] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4566), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1160), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1167), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1161] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4567), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1161), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1168), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1162] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4568), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1162), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1169), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1163] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4569), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1163), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1170), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1164] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4602), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1164), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1165] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4603), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1165), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1166] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4604), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1166), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1167] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4605), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1167), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1168] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4606), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1168), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1169] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4607), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1169), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1170] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4608), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1170), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1171] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3022), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1171), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1270), - [sym_identifier] = ACTIONS(2763), + [1151] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2927), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1151), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1271), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -226159,10 +223744,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -226175,14 +223760,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -226190,13 +223775,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -226209,76 +223794,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1172] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3024), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1172), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1271), - [sym_identifier] = ACTIONS(2763), + [1152] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3003), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1152), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -226291,10 +223876,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -226307,14 +223892,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -226322,13 +223907,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -226341,76 +223926,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1173] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1173), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1153] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1153), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4182), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -226418,7 +224004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4182), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -226473,74 +224058,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1174] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1174), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1154] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1154), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -226550,12 +224135,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3737), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4184), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -226605,76 +224190,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1175] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1175), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1155] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1155), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4186), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -226687,7 +224273,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4184), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -226737,76 +224322,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1176] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1176), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1156] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1156), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4188), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -226819,7 +224405,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4186), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -226869,74 +224454,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1177] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1177), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1157] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1157), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -226946,12 +224531,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(3743), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4190), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -227001,74 +224586,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1178] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1178), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1158] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1158), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -227083,7 +224668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4188), + [anon_sym_RBRACK] = ACTIONS(4192), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -227133,77 +224718,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1179] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1179), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1159] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3937), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1159), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1160] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3938), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1160), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1161] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1161), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4190), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -227216,6 +225064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4194), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -227265,77 +225114,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1180] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1180), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1162] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4226), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1162), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1221), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1163] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4872), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1163), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1164] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1164), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4192), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -227343,6 +225455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(3787), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -227397,74 +225510,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1181] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6561), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1181), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1165] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1165), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -227479,7 +225592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4194), + [anon_sym_RBRACK] = ACTIONS(4196), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -227529,74 +225642,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1182] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1182), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1166] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1166), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -227606,12 +225719,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4196), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4198), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -227661,74 +225774,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1183] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1183), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1167] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4801), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1167), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1163), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1168] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6516), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1168), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -227743,7 +225988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4198), + [anon_sym_RBRACK] = ACTIONS(4200), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -227793,74 +226038,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1184] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1184), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1169] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3939), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1169), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1170] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1170), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -227870,7 +226247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4200), + [anon_sym_RBRACE] = ACTIONS(3733), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -227925,74 +226302,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1185] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1185), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1171] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1171), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -228002,12 +226379,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4202), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4202), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -228057,74 +226434,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1186] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1186), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1172] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1172), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(4204), @@ -228189,77 +226566,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1187] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1187), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1173] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4873), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1173), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1174] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1174), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4206), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -228272,6 +226780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4206), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -228321,74 +226830,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1188] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1188), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1175] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1175), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -228453,75 +226962,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1189] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1189), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1176] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3940), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1176), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1177] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3008), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1177), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1178] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6397), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1178), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -228585,74 +227358,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1190] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1190), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1179] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1179), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(4212), @@ -228717,74 +227490,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1191] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1191), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1180] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6570), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1180), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -228794,12 +227567,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4214), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4214), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -228849,74 +227622,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1192] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1192), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1181] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1181), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -228981,77 +227754,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1193] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1193), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1182] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1182), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4218), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -229059,6 +227831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4218), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -229113,77 +227886,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1194] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1194), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1183] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1183), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4220), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -229196,6 +227968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4220), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -229245,74 +228018,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1195] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1195), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1184] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6552), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1184), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -229322,12 +228095,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4222), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4222), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -229377,206 +228150,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1196] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1196), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1185] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3050), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1185), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1197] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1197), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1186] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1186), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -229586,7 +228359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4226), + [anon_sym_RBRACE] = ACTIONS(4224), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -229641,76 +228414,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1198] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1198), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1187] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1187), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4226), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -229723,7 +228497,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4228), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -229773,77 +228546,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1199] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1199), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1188] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1188), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4230), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -229856,6 +228628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4228), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -229905,77 +228678,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1200] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1200), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1189] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1189), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4232), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -229983,6 +228755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4230), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -230037,74 +228810,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1201] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1201), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1190] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6567), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1190), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -230114,12 +228887,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4234), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4232), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -230169,75 +228942,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1202] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1202), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1191] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1191), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_hash_entry] = STATE(10894), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -230250,11 +229024,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -230267,14 +229040,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -230282,13 +229055,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -230301,76 +229074,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1203] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1203), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1192] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1192), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4234), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -230378,7 +229152,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4238), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -230433,74 +229206,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1204] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1204), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1193] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1193), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -230510,12 +229283,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4236), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4240), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -230565,77 +229338,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1205] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1205), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1194] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1194), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4242), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -230648,6 +229420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4238), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -230697,77 +229470,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1206] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1206), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1195] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3143), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1195), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1217), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1196] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6578), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1196), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4244), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -230780,6 +229684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4240), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -230829,76 +229734,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1207] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2969), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1207), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1148), - [sym_identifier] = ACTIONS(2763), + [1197] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3101), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1197), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1293), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -230911,10 +229816,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -230927,14 +229832,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -230942,13 +229847,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -230961,76 +229866,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1208] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1208), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1198] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1198), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4242), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -231038,7 +229944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4246), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -231093,208 +229998,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1209] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1209), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1199] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3051), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1199), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1210] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1210), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1200] = { + [sym_heredoc_body] = STATE(1200), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), + [anon_sym_PLUS_EQ] = ACTIONS(3603), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), + [anon_sym_DASH_EQ] = ACTIONS(3603), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), + [anon_sym_STAR_EQ] = ACTIONS(3603), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), + [anon_sym_SLASH_EQ] = ACTIONS(3603), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), + [anon_sym_PERCENT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_EQ] = ACTIONS(3603), + [anon_sym_CARET_EQ] = ACTIONS(3603), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), + [anon_sym_LT_LT_EQ] = ACTIONS(3603), + [anon_sym_GT_GT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__regular_ensure_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), + }, + [1201] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1201), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4244), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -231302,7 +230340,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4250), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -231357,74 +230394,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1211] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1211), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1202] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6590), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1202), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -231439,7 +230476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4252), + [anon_sym_RBRACK] = ACTIONS(4246), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -231489,77 +230526,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1212] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1212), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1203] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4797), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1203), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1204] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3105), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1204), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1152), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1205] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1205), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4254), + [anon_sym_RPAREN] = ACTIONS(4248), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -231621,77 +230922,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1213] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1213), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1206] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1206), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4256), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -231704,6 +231004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4250), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -231753,340 +231054,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1214] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4185), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1214), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1223), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), + [1207] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1207), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4252), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1215] = { - [sym_heredoc_body] = STATE(1215), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3603), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), - [anon_sym_DASH_EQ] = ACTIONS(3603), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), - [anon_sym_STAR_EQ] = ACTIONS(3603), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), - [anon_sym_SLASH_EQ] = ACTIONS(3603), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), - [anon_sym_PERCENT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_EQ] = ACTIONS(3603), - [anon_sym_CARET_EQ] = ACTIONS(3603), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), - [anon_sym_LT_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_GT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__regular_ensure_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [1208] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6399), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1208), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4254), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), }, - [1216] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1216), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1209] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1209), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4256), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -232094,7 +231396,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4258), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -232149,74 +231450,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1217] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1217), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1210] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4875), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1210), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1211] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1211), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -232226,12 +231659,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4258), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4260), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -232281,74 +231714,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1218] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1218), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1212] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1212), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -232358,7 +231791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4260), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -232413,76 +231846,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1219] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1219), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1213] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1213), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4262), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -232495,7 +231929,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4264), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -232545,77 +231978,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1220] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1220), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1214] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6601), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1214), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4266), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -232628,6 +232060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4264), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -232677,77 +232110,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1221] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1221), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1215] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1215), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4268), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -232755,6 +232187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4266), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -232809,76 +232242,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1222] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1222), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1216] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1216), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4268), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -232886,7 +232320,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4270), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -232941,470 +232374,470 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1223] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4222), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1223), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), + [1217] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2900), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1217), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1224] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4223), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1224), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1242), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), + [1218] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1218), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4270), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1225] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4224), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1225), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1245), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [1219] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4815), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1219), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1234), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1226] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1226), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1220] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6401), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1220), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -233414,12 +232847,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4272), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4272), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -233469,76 +232902,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1227] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4225), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1227), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1246), - [sym_identifier] = ACTIONS(3111), + [1221] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4324), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1221), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -233551,10 +232984,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -233567,14 +233000,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -233582,13 +233015,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -233601,76 +233034,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1228] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4226), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1228), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1247), - [sym_identifier] = ACTIONS(3111), + [1222] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3903), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1222), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1237), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -233683,10 +233116,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -233699,14 +233132,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -233714,13 +233147,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -233733,74 +233166,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1229] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1229), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1223] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1223), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -233810,12 +233243,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4274), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4274), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -233865,338 +233298,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1230] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4227), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1230), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1249), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1231] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4228), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1231), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1250), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), + [1224] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1224), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1232] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1232), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1225] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1225), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -234206,12 +233507,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4276), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4278), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -234261,74 +233562,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1233] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1233), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1226] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6615), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1226), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -234343,7 +233644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4280), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -234393,77 +233694,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1234] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1234), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1227] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1227), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4280), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -234476,6 +233776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4282), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -234525,77 +233826,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1235] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1235), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1228] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4741), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1228), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1229] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1229), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4284), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -234657,76 +234090,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1236] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4229), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1236), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1252), - [sym_identifier] = ACTIONS(3111), + [1230] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3906), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1230), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1310), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -234739,10 +234172,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -234755,14 +234188,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -234770,13 +234203,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -234789,76 +234222,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1237] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1237), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1231] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1231), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4286), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -234866,7 +234300,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4284), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -234921,74 +234354,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1238] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1238), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1232] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6406), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1232), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -235003,7 +234436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4286), + [anon_sym_RBRACK] = ACTIONS(4288), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -235053,76 +234486,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1239] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1239), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1233] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3908), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1233), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1143), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1234] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4606), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1234), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1235] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1235), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4290), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -235135,7 +234833,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4288), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -235185,74 +234882,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1240] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1240), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1236] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1236), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -235262,12 +234959,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4290), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4292), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -235317,208 +235014,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1241] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1241), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4292), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1242] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4232), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1242), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3111), + [1237] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3933), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1237), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -235531,10 +235096,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -235547,14 +235112,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -235562,13 +235127,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -235581,74 +235146,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1243] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1243), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1238] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1238), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [anon_sym_RPAREN] = ACTIONS(4294), @@ -235713,208 +235278,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1244] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1244), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4296), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1245] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4233), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1245), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3111), + [1239] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3911), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1239), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1159), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -235927,10 +235360,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -235943,14 +235376,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -235958,13 +235391,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -235977,76 +235410,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1246] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4234), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1246), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3111), + [1240] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1240), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1160), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -236059,10 +235492,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -236075,14 +235508,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -236090,13 +235523,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -236109,76 +235542,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1247] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4235), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1247), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3111), + [1241] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3915), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1241), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1169), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -236191,10 +235624,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -236207,14 +235640,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -236222,13 +235655,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -236241,74 +235674,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1248] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1248), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1242] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1242), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -236318,12 +235751,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4298), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4296), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -236373,338 +235806,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1249] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4236), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1249), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1250] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4237), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1250), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1251] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1251), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1243] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6633), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1243), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -236719,7 +235888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4300), + [anon_sym_RBRACK] = ACTIONS(4298), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -236769,340 +235938,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1252] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4238), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1252), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1253] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6930), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1253), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4305), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4308), - [sym_true] = ACTIONS(4308), - [sym_false] = ACTIONS(4308), - [aux_sym_integer_token2] = ACTIONS(4311), - [aux_sym_float_token2] = ACTIONS(4314), - [anon_sym_SQUOTE] = ACTIONS(4317), - [sym_operator_symbol] = ACTIONS(4320), - [sym_unquoted_symbol] = ACTIONS(4320), - [anon_sym_COLON_DQUOTE] = ACTIONS(4323), - [anon_sym_BQUOTE] = ACTIONS(4326), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4332), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4338), - [anon_sym_with] = ACTIONS(4341), - [anon_sym_yield] = ACTIONS(4344), - [anon_sym_typeof] = ACTIONS(4347), - [anon_sym_sizeof] = ACTIONS(4350), - [anon_sym_instance_sizeof] = ACTIONS(4353), - [anon_sym_offsetof] = ACTIONS(4356), - [sym__constant_segment] = ACTIONS(4359), - [anon_sym_COLON_COLON] = ACTIONS(4362), - [anon_sym___LINE__] = ACTIONS(4365), - [anon_sym___END_LINE__] = ACTIONS(4365), - [anon_sym___FILE__] = ACTIONS(4365), - [anon_sym___DIR__] = ACTIONS(4365), - [sym_special_variable] = ACTIONS(4368), - [sym_global_match_data_index] = ACTIONS(4320), - [sym_identifier_method_call] = ACTIONS(4371), - [sym_instance_var] = ACTIONS(4374), - [sym_class_var] = ACTIONS(4374), - [sym_self] = ACTIONS(4308), - [sym_private] = ACTIONS(4377), - [sym_protected] = ACTIONS(4377), - [anon_sym_begin] = ACTIONS(4380), - [anon_sym_while] = ACTIONS(4383), - [anon_sym_until] = ACTIONS(4386), - [anon_sym_case] = ACTIONS(4389), - [anon_sym_select] = ACTIONS(4392), - [aux_sym_asm_token1] = ACTIONS(4395), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4398), - [sym__start_of_named_tuple] = ACTIONS(4401), - [sym_unary_plus] = ACTIONS(4404), - [sym_unary_minus] = ACTIONS(4404), - [sym_unary_wrapping_plus] = ACTIONS(4407), - [sym_unary_wrapping_minus] = ACTIONS(4407), - [sym__beginless_range_operator] = ACTIONS(4410), - [sym__regex_start] = ACTIONS(4413), - [sym__regular_if_keyword] = ACTIONS(4416), - [sym__regular_unless_keyword] = ACTIONS(4419), - [sym__string_literal_start] = ACTIONS(4422), - [sym__string_percent_literal_start] = ACTIONS(4425), - [sym__command_percent_literal_start] = ACTIONS(4428), - [sym__string_array_percent_literal_start] = ACTIONS(4431), - [sym__symbol_array_percent_literal_start] = ACTIONS(4434), - [sym__regex_percent_literal_start] = ACTIONS(4437), - [sym_heredoc_start] = ACTIONS(4320), + [1244] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4805), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1244), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1173), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1254] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1254), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1245] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1245), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4300), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -237110,7 +236148,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4440), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -237165,74 +236202,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1255] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1255), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1246] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6645), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1246), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -237247,7 +236284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4442), + [anon_sym_RBRACK] = ACTIONS(4302), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -237297,77 +236334,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1256] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1256), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1247] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1247), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4444), + [anon_sym_RPAREN] = ACTIONS(4304), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -237429,341 +236466,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1257] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3031), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1257), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1258] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3071), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1258), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1259] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1259), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1248] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1248), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4446), + [anon_sym_RPAREN] = ACTIONS(4306), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -237825,74 +236598,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1260] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1260), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1249] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6411), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1249), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -237902,12 +236675,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4448), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4308), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -237957,74 +236730,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1261] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1261), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1250] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6651), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1250), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -238039,7 +236812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4450), + [anon_sym_RBRACK] = ACTIONS(4310), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -238089,74 +236862,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1262] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1262), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1251] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6660), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1251), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -238166,12 +236939,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4452), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4312), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -238221,74 +236994,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1263] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1263), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1252] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1252), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -238303,7 +237076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4454), + [anon_sym_RBRACK] = ACTIONS(4314), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -238353,77 +237126,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1264] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1264), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1253] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1253), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4456), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -238431,6 +237203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4316), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -238485,77 +237258,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1265] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1265), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1254] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6561), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1254), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4458), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -238568,6 +237340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4318), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -238617,472 +237390,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1266] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2851), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1266), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1267] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2976), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1267), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1268] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2977), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1268), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1269] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1269), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1255] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1255), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4320), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -239090,7 +237468,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4460), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -239145,338 +237522,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1270] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3025), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1270), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1271] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3027), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1271), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [aux_sym_multi_assign_repeat2] = STATE(1253), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1272] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1272), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1256] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1256), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -239486,12 +237599,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4322), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4462), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -239541,74 +237654,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1273] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1273), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1257] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1257), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -239618,7 +237731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4324), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -239673,74 +237786,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1274] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1274), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1258] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1258), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -239755,7 +237868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4466), + [anon_sym_RBRACK] = ACTIONS(4326), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -239805,77 +237918,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1275] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1275), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1259] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1259), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4468), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -239888,6 +238000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4328), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -239937,77 +238050,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1276] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1276), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1260] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1260), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4330), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -240069,77 +238182,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1277] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1277), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1261] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4816), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1261), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1270), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1262] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1262), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4472), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -240152,6 +238396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4332), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -240201,77 +238446,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1278] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1278), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1263] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3917), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1263), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1176), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1264] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1264), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4474), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -240279,6 +238655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4334), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), @@ -240333,76 +238710,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1279] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1279), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_hash_entry] = STATE(10877), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1265] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1265), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -240411,14 +238787,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4336), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -240431,14 +238808,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -240446,13 +238823,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -240465,77 +238842,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1280] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1280), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1266] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6375), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1266), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4476), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -240548,6 +238924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4338), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -240597,77 +238974,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1281] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1281), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1267] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1267), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4478), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -240680,6 +239056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4340), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -240729,77 +239106,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1282] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1282), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1268] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1268), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4480), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -240812,6 +239188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4342), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -240861,77 +239238,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1283] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1283), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1269] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1269), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4344), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -240993,341 +239370,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1284] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1284), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4484), + [1270] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4651), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1270), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1271] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3067), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1271), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1285] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1285), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4486), + [1272] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3096), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1272), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1283), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1286] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1286), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1273] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1273), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4488), + [anon_sym_RPAREN] = ACTIONS(4346), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -241389,77 +239898,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1287] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1287), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1274] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1274), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4490), + [anon_sym_RPAREN] = ACTIONS(4348), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -241521,77 +240030,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1288] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1288), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1275] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1275), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4492), + [anon_sym_RPAREN] = ACTIONS(4350), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -241653,77 +240162,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1289] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1289), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1276] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1276), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4494), + [anon_sym_RPAREN] = ACTIONS(4352), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -241785,77 +240294,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1290] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1290), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1277] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7040), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1277), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(4354), + [anon_sym_LPAREN] = ACTIONS(4357), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4360), + [sym_true] = ACTIONS(4360), + [sym_false] = ACTIONS(4360), + [aux_sym_integer_token2] = ACTIONS(4363), + [aux_sym_float_token2] = ACTIONS(4366), + [anon_sym_SQUOTE] = ACTIONS(4369), + [sym_operator_symbol] = ACTIONS(4372), + [sym_unquoted_symbol] = ACTIONS(4372), + [anon_sym_COLON_DQUOTE] = ACTIONS(4375), + [anon_sym_BQUOTE] = ACTIONS(4378), + [anon_sym_LBRACK] = ACTIONS(4381), + [anon_sym_DASH_GT] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_with] = ACTIONS(4393), + [anon_sym_yield] = ACTIONS(4396), + [anon_sym_typeof] = ACTIONS(4399), + [anon_sym_sizeof] = ACTIONS(4402), + [anon_sym_instance_sizeof] = ACTIONS(4405), + [anon_sym_offsetof] = ACTIONS(4408), + [sym__constant_segment] = ACTIONS(4411), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym___LINE__] = ACTIONS(4417), + [anon_sym___END_LINE__] = ACTIONS(4417), + [anon_sym___FILE__] = ACTIONS(4417), + [anon_sym___DIR__] = ACTIONS(4417), + [sym_special_variable] = ACTIONS(4420), + [sym_global_match_data_index] = ACTIONS(4372), + [sym_identifier_method_call] = ACTIONS(4423), + [sym_instance_var] = ACTIONS(4426), + [sym_class_var] = ACTIONS(4426), + [sym_self] = ACTIONS(4360), + [sym_private] = ACTIONS(4429), + [sym_protected] = ACTIONS(4429), + [anon_sym_begin] = ACTIONS(4432), + [anon_sym_while] = ACTIONS(4435), + [anon_sym_until] = ACTIONS(4438), + [anon_sym_case] = ACTIONS(4441), + [anon_sym_select] = ACTIONS(4444), + [aux_sym_asm_token1] = ACTIONS(4447), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4450), + [sym__start_of_named_tuple] = ACTIONS(4453), + [sym_unary_plus] = ACTIONS(4456), + [sym_unary_minus] = ACTIONS(4456), + [sym_unary_wrapping_plus] = ACTIONS(4459), + [sym_unary_wrapping_minus] = ACTIONS(4459), + [sym__beginless_range_operator] = ACTIONS(4462), + [sym__regex_start] = ACTIONS(4465), + [sym__regular_if_keyword] = ACTIONS(4468), + [sym__regular_unless_keyword] = ACTIONS(4471), + [sym__string_literal_start] = ACTIONS(4474), + [sym__string_percent_literal_start] = ACTIONS(4477), + [sym__command_percent_literal_start] = ACTIONS(4480), + [sym__string_array_percent_literal_start] = ACTIONS(4483), + [sym__symbol_array_percent_literal_start] = ACTIONS(4486), + [sym__regex_percent_literal_start] = ACTIONS(4489), + [sym_heredoc_start] = ACTIONS(4372), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1278] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1278), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4496), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -241868,6 +240508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4492), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -241917,209 +240558,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1291] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1291), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4498), + [1279] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3112), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1279), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1177), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1292] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1292), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1280] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4656), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1280), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1281] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1281), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_RPAREN] = ACTIONS(4494), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -242181,77 +240954,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1293] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1293), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1282] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1282), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4502), + [anon_sym_RPAREN] = ACTIONS(4496), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -242313,206 +241086,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1294] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6607), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1294), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1283] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2996), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1283), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4504), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1295] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1295), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1284] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1284), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -242527,7 +241300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4506), + [anon_sym_RBRACK] = ACTIONS(4498), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -242577,76 +241350,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1296] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1296), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1285] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1285), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4500), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -242659,7 +241433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4508), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -242709,76 +241482,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1297] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1297), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1286] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4807), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1286), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1210), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1287] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1287), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4502), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -242791,7 +241697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4510), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -242841,74 +241746,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1298] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1298), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1288] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1288), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -242918,12 +241823,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4504), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4512), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -242973,74 +241878,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1299] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1299), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1289] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1289), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -243050,12 +241955,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4506), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4514), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -243105,76 +242010,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1300] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1300), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1290] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1290), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4508), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -243187,7 +242093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4516), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -243237,76 +242142,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1301] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1301), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1291] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1291), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4510), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -243319,7 +242225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4518), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -243369,77 +242274,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1302] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1302), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1292] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1292), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_RPAREN] = ACTIONS(4520), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -243452,6 +242356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4512), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -243501,208 +242406,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1303] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1303), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1293] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3000), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1293), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4522), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1304] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1304), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1294] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1294), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4514), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -243715,7 +242621,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4524), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -243765,74 +242670,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1305] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1305), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1295] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1295), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -243842,12 +242747,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4516), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4526), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -243897,74 +242802,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1306] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1306), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1296] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2952), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1296), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [aux_sym_multi_assign_repeat2] = STATE(1185), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1297] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1297), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -243974,12 +243011,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4518), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4528), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -244029,74 +243066,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1307] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6293), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1307), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1298] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4809), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1298), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1228), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1299] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1299), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -244111,7 +243280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4530), + [anon_sym_RBRACK] = ACTIONS(4520), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -244161,76 +243330,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1308] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6284), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1308), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1300] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1300), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4522), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -244243,7 +243413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4532), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -244293,76 +243462,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1309] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6479), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1309), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1301] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4817), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1301), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1280), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1302] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1302), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4524), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -244375,7 +243677,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4534), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -244425,74 +243726,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1310] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6536), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1310), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1303] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1303), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -244507,7 +243808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4536), + [anon_sym_RBRACK] = ACTIONS(4526), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -244557,74 +243858,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1311] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6626), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1311), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1304] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1304), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -244639,7 +243940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4538), + [anon_sym_RBRACK] = ACTIONS(4528), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -244689,74 +243990,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1312] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6292), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1312), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1305] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1305), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -244771,7 +244072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4540), + [anon_sym_RBRACK] = ACTIONS(4530), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -244821,74 +244122,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1313] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6256), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1313), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1306] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1306), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -244898,12 +244199,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4532), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4542), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -244953,76 +244254,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1314] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6296), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1314), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1307] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1307), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4534), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -245035,7 +244337,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4544), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -245085,74 +244386,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1315] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6291), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1315), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1308] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1308), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -245162,12 +244463,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4536), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4546), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -245217,76 +244518,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1316] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6299), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1316), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1309] = { + [sym_heredoc_body] = STATE(1309), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3603), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), + [anon_sym_PLUS_EQ] = ACTIONS(3603), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), + [anon_sym_DASH_EQ] = ACTIONS(3603), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), + [anon_sym_STAR_EQ] = ACTIONS(3603), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), + [anon_sym_SLASH_EQ] = ACTIONS(3603), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), + [anon_sym_PERCENT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_EQ] = ACTIONS(3603), + [anon_sym_CARET_EQ] = ACTIONS(3603), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), + [anon_sym_LT_LT_EQ] = ACTIONS(3603), + [anon_sym_GT_GT_EQ] = ACTIONS(3603), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__regular_ensure_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), + }, + [1310] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(3934), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1310), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [aux_sym_multi_assign_repeat2] = STATE(1277), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1311] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1311), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4538), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -245299,7 +244865,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4548), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -245349,74 +244914,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1317] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6217), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1317), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1312] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1312), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -245426,12 +244991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4540), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4550), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -245481,74 +245046,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1318] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6294), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1318), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1313] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1313), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -245563,7 +245128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4552), + [anon_sym_RBRACK] = ACTIONS(4542), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -245613,74 +245178,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1319] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6517), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1319), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1314] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1314), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -245695,7 +245260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4554), + [anon_sym_RBRACK] = ACTIONS(4544), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -245745,74 +245310,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1320] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6304), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1320), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1315] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1315), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -245822,12 +245387,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(1963), [aux_sym_float_token2] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4546), [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4556), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -245877,74 +245442,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1321] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6224), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1321), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1316] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1316), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -245959,7 +245524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4558), + [anon_sym_RBRACK] = ACTIONS(4548), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -246009,76 +245574,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1322] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6260), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1322), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1317] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1317), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4550), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -246091,7 +245657,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4560), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -246141,76 +245706,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1323] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6474), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1323), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1318] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4712), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1318), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [aux_sym_multi_assign_repeat2] = STATE(1203), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1319] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1319), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4552), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -246223,7 +245921,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4562), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -246273,76 +245970,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1324] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1324), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1320] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1320), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4554), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -246355,7 +246053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_RBRACK] = ACTIONS(4564), [anon_sym_DASH_GT] = ACTIONS(1977), [anon_sym_BANG] = ACTIONS(3539), [anon_sym_TILDE] = ACTIONS(1981), @@ -246405,601 +246102,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1325] = { - [sym_heredoc_body] = STATE(1325), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), - [anon_sym_PLUS_EQ] = ACTIONS(3603), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), - [anon_sym_DASH_EQ] = ACTIONS(3603), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3603), - [anon_sym_STAR_EQ] = ACTIONS(3603), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3603), - [anon_sym_SLASH_EQ] = ACTIONS(3603), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3603), - [anon_sym_PERCENT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_EQ] = ACTIONS(3603), - [anon_sym_CARET_EQ] = ACTIONS(3603), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3603), - [anon_sym_LT_LT_EQ] = ACTIONS(3603), - [anon_sym_GT_GT_EQ] = ACTIONS(3603), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__regular_ensure_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), - }, - [1326] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3129), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1326), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1327] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4155), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1327), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1328] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4156), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1328), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1329] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6714), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1329), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1321] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1321), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(4556), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -247061,74 +246234,864 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1330] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4294), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1330), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1322] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1322), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4558), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1323] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1323), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4560), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1324] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1324), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_RBRACE] = ACTIONS(4562), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1325] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6626), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1325), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(4564), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1326] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6428), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1326), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1327] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6780), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1327), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1328] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4547), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1328), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -247192,598 +247155,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1331] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4886), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1331), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1332] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4903), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1332), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1333] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4906), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1333), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1334] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4907), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1334), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1335] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4295), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1335), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1329] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4596), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1329), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -247847,74 +247286,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1336] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6725), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1336), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1330] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6625), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1330), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -247978,467 +247417,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1337] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4182), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1337), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1338] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4183), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1338), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1339] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5900), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1339), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1340] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4369), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1340), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1331] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4489), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1331), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -248502,74 +247548,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1341] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3132), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1341), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [1332] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3323), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1332), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), [sym_identifier] = ACTIONS(2783), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), @@ -248633,336 +247679,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1342] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6746), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1342), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1343] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7025), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1343), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(6681), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4566), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(4568), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1344] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4356), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1344), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1333] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4528), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1333), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -249026,74 +247810,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1345] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4419), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1345), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1334] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4492), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1334), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -249157,74 +247941,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1346] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4293), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1346), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1335] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4500), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1335), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -249288,74 +248072,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1347] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4304), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1347), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1336] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4548), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1336), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -249419,74 +248203,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1348] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4308), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1348), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1337] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4355), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1337), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -249550,205 +248334,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1349] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6387), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1349), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1350] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4332), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1350), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1338] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4422), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1338), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -249812,74 +248465,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1351] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4333), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1351), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1339] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4468), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1339), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -249943,74 +248596,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1352] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4334), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1352), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1340] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4475), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1340), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -250074,74 +248727,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1353] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4335), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1353), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1341] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4385), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1341), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -250205,74 +248858,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1354] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4338), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1354), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1342] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4448), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1342), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -250336,74 +248989,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1355] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4351), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1355), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1343] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4487), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1343), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -250467,205 +249120,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1356] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6692), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1356), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1344] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4576), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1344), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1357] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4322), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1357), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1345] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4342), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1345), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -250729,74 +249382,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1358] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4365), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1358), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), + [1346] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4396), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1346), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), [sym_identifier] = ACTIONS(3175), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), @@ -250860,76 +249513,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1359] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3609), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1359), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1347] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3864), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1347), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -250951,7 +249604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -250959,7 +249612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -250991,76 +249644,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1360] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3610), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1360), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1348] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3866), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1348), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -251082,7 +249735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -251090,7 +249743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -251122,641 +249775,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1361] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4430), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1361), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1349] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3255), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1349), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1362] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4431), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1362), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1363] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3205), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1363), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1364] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3267), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1364), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1365] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3165), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1365), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(115), [sym__start_of_named_tuple] = ACTIONS(117), @@ -251777,76 +249906,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1366] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4026), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1366), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1350] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4289), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1350), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -251868,7 +249997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -251876,7 +250005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -251908,862 +250037,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1367] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3177), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1367), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1368] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6161), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1368), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1369] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6163), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1369), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1370] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5431), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1370), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1371] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5149), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1371), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3249), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1372] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6872), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1372), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1373] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4029), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1373), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1351] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3907), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1351), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -252785,7 +250128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -252793,7 +250136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -252825,76 +250168,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1374] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4034), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1374), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1352] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3947), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1352), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -252916,7 +250259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -252924,7 +250267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -252956,76 +250299,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1375] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4035), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1375), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1353] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3948), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1353), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -253047,7 +250390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -253055,7 +250398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -253087,76 +250430,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1376] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4036), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1376), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1354] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3949), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1354), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -253178,7 +250521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -253186,7 +250529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -253218,207 +250561,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1377] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7020), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1377), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(2714), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4570), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1378] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4037), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1378), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1355] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3950), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1355), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -253440,7 +250652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -253448,7 +250660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -253480,76 +250692,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1379] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4039), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1379), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1356] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3961), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1356), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -253571,7 +250783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -253579,7 +250791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -253611,76 +250823,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1380] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4040), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1380), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1357] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3962), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1357), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -253702,7 +250914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -253710,7 +250922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -253742,76 +250954,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1381] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4041), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1381), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1358] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3964), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1358), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -253833,7 +251045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -253841,7 +251053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -253873,76 +251085,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1382] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4042), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1382), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1359] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3965), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1359), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -253964,7 +251176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -253972,7 +251184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -254004,76 +251216,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1383] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4043), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1383), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1360] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3966), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1360), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -254095,7 +251307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -254103,7 +251315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -254135,76 +251347,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1384] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4044), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1384), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1361] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3968), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1361), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -254226,7 +251438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -254234,7 +251446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -254266,74 +251478,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1385] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3147), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1385), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [1362] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3296), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1362), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), [sym_identifier] = ACTIONS(2783), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), @@ -254397,207 +251609,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1386] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3149), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1386), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(15), + [1363] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4040), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1363), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1387] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4097), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1387), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), + [1364] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4060), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1364), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(463), [sym_true] = ACTIONS(463), @@ -254619,7 +251831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(493), [anon_sym_instance_sizeof] = ACTIONS(495), [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), + [sym__constant_segment] = ACTIONS(3015), [anon_sym_COLON_COLON] = ACTIONS(501), [anon_sym___LINE__] = ACTIONS(503), [anon_sym___END_LINE__] = ACTIONS(503), @@ -254627,7 +251839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(503), [sym_special_variable] = ACTIONS(505), [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), + [sym_identifier_method_call] = ACTIONS(3017), [sym_instance_var] = ACTIONS(509), [sym_class_var] = ACTIONS(509), [sym_self] = ACTIONS(463), @@ -254659,74 +251871,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1388] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5340), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1388), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1365] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4077), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1365), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1366] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5295), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1366), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -254742,7 +252085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -254790,74 +252133,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1389] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5341), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1389), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1367] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5296), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1367), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -254873,7 +252216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -254921,600 +252264,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1390] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6719), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1390), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1391] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6790), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1391), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [1368] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6988), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1368), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1392] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2688), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1392), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1369] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3185), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1369), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1393] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(4105), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1393), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1394] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7023), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1394), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(3618), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4572), - [anon_sym_LPAREN] = ACTIONS(3189), + [1370] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6969), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1370), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), [sym_true] = ACTIONS(1961), @@ -255544,138 +252625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1395] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7015), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1395), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(3012), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(91), + [sym_identifier_method_call] = ACTIONS(3229), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -255707,74 +252657,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1396] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5388), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1396), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1371] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5358), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1371), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -255790,7 +252740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -255838,74 +252788,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1397] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5390), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1397), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1372] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5362), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1372), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -255921,7 +252871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -255969,1384 +252919,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1398] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3156), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1398), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1399] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2649), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1399), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1400] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2650), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1400), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1401] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3189), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1401), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1402] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6814), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1402), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1403] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6816), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1403), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1404] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6124), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1404), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1405] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6126), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1405), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1406] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6931), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1406), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1407] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4462), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1407), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1408] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5202), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1408), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1373] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5372), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1373), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -257362,7 +253002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -257410,205 +253050,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1409] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3195), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1409), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1410] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5212), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1410), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1374] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5373), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1374), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -257624,7 +253133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -257672,205 +253181,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1411] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7024), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1411), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(5418), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4574), - [anon_sym_LPAREN] = ACTIONS(3189), + [1375] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5374), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1375), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(4576), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1412] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5222), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1412), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1376] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5375), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1376), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -257886,7 +253395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -257934,74 +253443,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1413] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5223), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1413), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1377] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5377), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1377), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -258017,7 +253526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -258065,74 +253574,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1414] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5224), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1414), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1378] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5378), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1378), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -258148,7 +253657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -258196,74 +253705,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1415] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5225), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1415), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1379] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5379), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1379), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -258279,7 +253788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -258327,74 +253836,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1416] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5227), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1416), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1380] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5509), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1380), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -258410,7 +253919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -258458,74 +253967,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1417] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5228), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1417), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1381] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5381), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1381), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -258541,7 +254050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -258589,74 +254098,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1418] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5231), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1418), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1382] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5382), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1382), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -258672,7 +254181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -258720,74 +254229,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1419] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5233), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1419), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1383] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5441), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1383), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -258803,7 +254312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -258851,74 +254360,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1420] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5236), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1420), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1384] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5449), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1384), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -258934,7 +254443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -258982,74 +254491,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1421] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5238), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1421), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), + [1385] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5460), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1385), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), [sym_identifier] = ACTIONS(3247), [anon_sym_LPAREN] = ACTIONS(3249), [sym_comment] = ACTIONS(5), @@ -259065,7 +254574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(757), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3423), [anon_sym_TILDE] = ACTIONS(767), [anon_sym_with] = ACTIONS(769), [anon_sym_yield] = ACTIONS(771), @@ -259113,205 +254622,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(753), [sym__heredoc_body_start] = ACTIONS(7), }, - [1422] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4641), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1422), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1386] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6120), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1386), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1423] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3198), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1423), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [1387] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6121), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1387), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1388] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3305), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1388), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), [sym_identifier] = ACTIONS(2783), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), @@ -259375,75 +255015,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1424] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4647), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1424), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1389] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7062), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1389), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4433), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4566), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -259456,10 +255096,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -259472,14 +255112,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -259487,13 +255127,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -259506,76 +255146,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1425] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6078), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1425), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), + [1390] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6158), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1390), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -259589,7 +255229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3595), [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), @@ -259597,7 +255237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1035), [anon_sym_instance_sizeof] = ACTIONS(1037), [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), + [sym__constant_segment] = ACTIONS(3299), [anon_sym_COLON_COLON] = ACTIONS(1043), [anon_sym___LINE__] = ACTIONS(1045), [anon_sym___END_LINE__] = ACTIONS(1045), @@ -259605,108 +255245,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1045), [sym_special_variable] = ACTIONS(1047), [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), + [sym_identifier_method_call] = ACTIONS(3301), [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1426] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(6079), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1426), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), + [1391] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6164), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1391), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -259720,7 +255360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3595), [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), @@ -259728,7 +255368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1035), [anon_sym_instance_sizeof] = ACTIONS(1037), [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), + [sym__constant_segment] = ACTIONS(3299), [anon_sym_COLON_COLON] = ACTIONS(1043), [anon_sym___LINE__] = ACTIONS(1045), [anon_sym___END_LINE__] = ACTIONS(1045), @@ -259736,1418 +255376,1156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1045), [sym_special_variable] = ACTIONS(1047), [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), + [sym_identifier_method_call] = ACTIONS(3301), [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1427] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4162), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1427), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), + [1392] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6175), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1392), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1428] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4163), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1428), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1429] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3593), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(3270), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1429), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(125), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(126), - [sym_assign_call] = STATE(7869), - [sym_index_operator] = STATE(2250), - [sym_index_call] = STATE(2250), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_with] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(505), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3135), - [sym_instance_var] = ACTIONS(509), - [sym_class_var] = ACTIONS(509), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(515), - [sym_protected] = ACTIONS(515), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(541), - [sym_unary_minus] = ACTIONS(541), - [sym_unary_wrapping_plus] = ACTIONS(543), - [sym_unary_wrapping_minus] = ACTIONS(543), - [sym__beginless_range_operator] = ACTIONS(551), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(559), - [sym__string_percent_literal_start] = ACTIONS(561), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1430] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7016), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1430), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2444), - [sym_index_call] = STATE(2444), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4578), - [anon_sym_LPAREN] = ACTIONS(3189), + [1393] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6177), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1393), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(4580), - [sym_class_var] = ACTIONS(4580), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1431] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4270), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1431), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1281), + [1394] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6178), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1394), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1432] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5413), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1432), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3249), + [1395] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6179), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1395), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1433] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7025), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1433), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(5788), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4582), - [anon_sym_LPAREN] = ACTIONS(3189), + [1396] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6190), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1396), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(4568), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1434] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4277), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1434), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1281), + [1397] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6191), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1397), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1435] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5152), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1435), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3249), + [1398] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6192), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1398), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1436] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4278), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1436), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1281), + [1399] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6193), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1399), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1437] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5775), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1437), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), + [1400] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6194), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1400), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -261161,7 +256539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3595), [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), @@ -261169,7 +256547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1035), [anon_sym_instance_sizeof] = ACTIONS(1037), [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), + [sym__constant_segment] = ACTIONS(3299), [anon_sym_COLON_COLON] = ACTIONS(1043), [anon_sym___LINE__] = ACTIONS(1045), [anon_sym___END_LINE__] = ACTIONS(1045), @@ -261177,108 +256555,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1045), [sym_special_variable] = ACTIONS(1047), [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), + [sym_identifier_method_call] = ACTIONS(3301), [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1438] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5776), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1438), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), + [1401] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6199), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1401), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1005), [sym_true] = ACTIONS(1005), @@ -261292,7 +256670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1017), [anon_sym_LBRACK] = ACTIONS(1019), [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3595), [anon_sym_TILDE] = ACTIONS(1027), [anon_sym_with] = ACTIONS(1029), [anon_sym_yield] = ACTIONS(1031), @@ -261300,7 +256678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(1035), [anon_sym_instance_sizeof] = ACTIONS(1037), [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), + [sym__constant_segment] = ACTIONS(3299), [anon_sym_COLON_COLON] = ACTIONS(1043), [anon_sym___LINE__] = ACTIONS(1045), [anon_sym___END_LINE__] = ACTIONS(1045), @@ -261308,368 +256686,892 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1045), [sym_special_variable] = ACTIONS(1047), [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), + [sym_identifier_method_call] = ACTIONS(3301), [sym_instance_var] = ACTIONS(1051), [sym_class_var] = ACTIONS(1051), [sym_self] = ACTIONS(1005), [sym_private] = ACTIONS(1057), [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1439] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4279), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1439), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7838), - [sym_index_operator] = STATE(2259), - [sym_index_call] = STATE(2259), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1281), + [1402] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3189), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1402), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1353), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3179), - [sym_class_var] = ACTIONS(3179), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(3181), - [sym_protected] = ACTIONS(3181), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1383), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1387), - [sym_unary_minus] = ACTIONS(1387), - [sym_unary_wrapping_plus] = ACTIONS(1389), - [sym_unary_wrapping_minus] = ACTIONS(1389), - [sym__beginless_range_operator] = ACTIONS(1391), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1440] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4662), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1440), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1403] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3190), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1403), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1441] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4663), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1441), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1404] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6261), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1404), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1405] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3193), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1405), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1406] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6267), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1406), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1407] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6276), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1407), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1408] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1408), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -261733,74 +257635,598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1442] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4664), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1442), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1409] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3478), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1409), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1410] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3481), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1410), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1411] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3220), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1411), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1412] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3463), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1412), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1413] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6772), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1413), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -261864,338 +258290,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1443] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4158), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1443), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), + [1414] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3468), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1414), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1444] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4159), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1444), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), + [1415] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3526), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1415), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1445] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3477), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1445), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), + [1416] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3528), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1416), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -262209,7 +258635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -262217,7 +258643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(353), [anon_sym_instance_sizeof] = ACTIONS(355), [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), + [sym__constant_segment] = ACTIONS(2899), [anon_sym_COLON_COLON] = ACTIONS(361), [anon_sym___LINE__] = ACTIONS(363), [anon_sym___END_LINE__] = ACTIONS(363), @@ -262225,108 +258651,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(363), [sym_special_variable] = ACTIONS(365), [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), + [sym_identifier_method_call] = ACTIONS(2901), [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1446] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3478), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1446), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), + [1417] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3529), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1417), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -262340,7 +258766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -262348,7 +258774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(353), [anon_sym_instance_sizeof] = ACTIONS(355), [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), + [sym__constant_segment] = ACTIONS(2899), [anon_sym_COLON_COLON] = ACTIONS(361), [anon_sym___LINE__] = ACTIONS(363), [anon_sym___END_LINE__] = ACTIONS(363), @@ -262356,237 +258782,1023 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(363), [sym_special_variable] = ACTIONS(365), [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), + [sym_identifier_method_call] = ACTIONS(2901), [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1447] = { - [sym__parenthesized_statement] = STATE(5344), - [sym_expressions] = STATE(5344), - [sym__expression] = STATE(5361), - [sym_empty_parens] = STATE(5344), - [sym_integer] = STATE(5344), - [sym_float] = STATE(5344), - [sym_char] = STATE(5344), - [sym_string] = STATE(4670), - [sym_chained_string] = STATE(5344), - [sym_string_percent_literal] = STATE(5344), - [sym_string_array_percent_literal] = STATE(5344), - [sym_symbol_array_percent_literal] = STATE(5344), - [sym_heredoc_body] = STATE(1447), - [sym_quoted_symbol] = STATE(5344), - [sym_command] = STATE(5344), - [sym_command_percent_literal] = STATE(5344), - [sym_regex] = STATE(5344), - [sym_regex_percent_literal] = STATE(5344), - [sym_array] = STATE(5344), - [sym_hash] = STATE(5344), - [sym_tuple] = STATE(5344), - [sym_named_tuple] = STATE(5344), - [sym_range] = STATE(5344), - [sym_beginless_range] = STATE(5344), - [sym_proc] = STATE(5344), - [sym_method_proc] = STATE(5344), - [sym_yield] = STATE(5344), - [sym_typeof] = STATE(5344), - [sym_sizeof] = STATE(5344), - [sym_instance_sizeof] = STATE(5344), - [sym_offsetof] = STATE(5344), - [sym_constant] = STATE(5020), - [sym_pseudo_constant] = STATE(5344), - [sym_generic_instance_type] = STATE(5344), - [sym__dot_call] = STATE(244), - [sym_call_with_visibility] = STATE(5344), - [sym_call] = STATE(5344), - [sym__global_method] = STATE(245), - [sym_assign_call] = STATE(7835), - [sym_index_operator] = STATE(2290), - [sym_index_call] = STATE(2290), - [sym_not] = STATE(5344), - [sym_and] = STATE(5344), - [sym_or] = STATE(5344), - [sym_additive_operator] = STATE(5344), - [sym_unary_additive_operator] = STATE(5344), - [sym_multiplicative_operator] = STATE(5344), - [sym_exponential_operator] = STATE(5344), - [sym_shift_operator] = STATE(5344), - [sym_complement_operator] = STATE(5344), - [sym_binary_and_operator] = STATE(5344), - [sym_binary_or_operator] = STATE(5344), - [sym_equality_operator] = STATE(5344), - [sym_comparison_operator] = STATE(5344), - [sym_assign] = STATE(5344), - [sym_operator_assign] = STATE(5344), - [sym_type_declaration] = STATE(5344), - [sym_begin_block] = STATE(5344), - [sym_while] = STATE(5344), - [sym_until] = STATE(5344), - [sym_if] = STATE(5344), - [sym_unless] = STATE(5344), - [sym_conditional] = STATE(5344), - [sym_case] = STATE(5344), - [sym_select] = STATE(5344), - [sym_exhaustive_case] = STATE(5344), - [sym_asm] = STATE(5344), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3249), + [1418] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3531), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1418), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [aux_sym_integer_token2] = ACTIONS(747), - [aux_sym_float_token2] = ACTIONS(749), - [anon_sym_SQUOTE] = ACTIONS(751), - [sym_operator_symbol] = ACTIONS(753), - [sym_unquoted_symbol] = ACTIONS(753), - [anon_sym_COLON_DQUOTE] = ACTIONS(755), - [anon_sym_BQUOTE] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(759), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_with] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(771), - [anon_sym_typeof] = ACTIONS(773), - [anon_sym_sizeof] = ACTIONS(775), - [anon_sym_instance_sizeof] = ACTIONS(777), - [anon_sym_offsetof] = ACTIONS(779), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym___LINE__] = ACTIONS(785), - [anon_sym___END_LINE__] = ACTIONS(785), - [anon_sym___FILE__] = ACTIONS(785), - [anon_sym___DIR__] = ACTIONS(785), - [sym_special_variable] = ACTIONS(787), - [sym_global_match_data_index] = ACTIONS(753), - [sym_identifier_method_call] = ACTIONS(3253), - [sym_instance_var] = ACTIONS(791), - [sym_class_var] = ACTIONS(791), - [sym_self] = ACTIONS(745), - [sym_private] = ACTIONS(797), - [sym_protected] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(805), - [anon_sym_while] = ACTIONS(807), - [anon_sym_until] = ACTIONS(809), - [anon_sym_case] = ACTIONS(811), - [anon_sym_select] = ACTIONS(813), - [aux_sym_asm_token1] = ACTIONS(815), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(819), - [sym__start_of_named_tuple] = ACTIONS(821), - [sym_unary_plus] = ACTIONS(823), - [sym_unary_minus] = ACTIONS(823), - [sym_unary_wrapping_plus] = ACTIONS(825), - [sym_unary_wrapping_minus] = ACTIONS(825), - [sym__beginless_range_operator] = ACTIONS(833), - [sym__regex_start] = ACTIONS(835), - [sym__regular_if_keyword] = ACTIONS(837), - [sym__regular_unless_keyword] = ACTIONS(839), - [sym__string_literal_start] = ACTIONS(841), - [sym__string_percent_literal_start] = ACTIONS(843), - [sym__command_percent_literal_start] = ACTIONS(845), - [sym__string_array_percent_literal_start] = ACTIONS(847), - [sym__symbol_array_percent_literal_start] = ACTIONS(849), - [sym__regex_percent_literal_start] = ACTIONS(851), - [sym_heredoc_start] = ACTIONS(753), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1448] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4668), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1448), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1419] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3536), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1419), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1420] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3542), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1420), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1421] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3546), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1421), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1422] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3548), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1422), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1423] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3554), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1423), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1424] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3558), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1424), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1425] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6776), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1425), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -262650,2303 +259862,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1449] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4673), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1449), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1426] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3246), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1426), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1450] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7021), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1450), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(104), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4250), - [sym__global_method] = STATE(106), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3519), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(1355), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1451] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4674), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1451), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1452] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5837), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1452), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1453] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4675), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1453), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1454] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4676), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1454), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1455] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5842), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1455), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1456] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5854), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1456), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1457] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5855), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1457), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1458] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5856), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1458), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1459] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5857), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1459), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1460] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4684), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1460), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1461] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5859), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1461), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1462] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5860), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1462), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1463] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5861), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1463), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1464] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5862), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1464), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1465] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5863), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1465), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1466] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3340), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1466), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), + [1427] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3474), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1427), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -264960,7 +260076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -264968,7 +260084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(353), [anon_sym_instance_sizeof] = ACTIONS(355), [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), + [sym__constant_segment] = ACTIONS(2899), [anon_sym_COLON_COLON] = ACTIONS(361), [anon_sym___LINE__] = ACTIONS(363), [anon_sym___END_LINE__] = ACTIONS(363), @@ -264976,108 +260092,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(363), [sym_special_variable] = ACTIONS(365), [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), + [sym_identifier_method_call] = ACTIONS(2901), [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1467] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3343), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1467), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), + [1428] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3504), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1428), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(323), [sym_true] = ACTIONS(323), @@ -265091,7 +260207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(335), [anon_sym_LBRACK] = ACTIONS(337), [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3593), [anon_sym_TILDE] = ACTIONS(345), [anon_sym_with] = ACTIONS(347), [anon_sym_yield] = ACTIONS(349), @@ -265099,7 +260215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(353), [anon_sym_instance_sizeof] = ACTIONS(355), [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), + [sym__constant_segment] = ACTIONS(2899), [anon_sym_COLON_COLON] = ACTIONS(361), [anon_sym___LINE__] = ACTIONS(363), [anon_sym___END_LINE__] = ACTIONS(363), @@ -265107,893 +260223,1024 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(363), [sym_special_variable] = ACTIONS(365), [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), + [sym_identifier_method_call] = ACTIONS(2901), [sym_instance_var] = ACTIONS(369), [sym_class_var] = ACTIONS(369), [sym_self] = ACTIONS(323), [sym_private] = ACTIONS(375), [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1468] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6357), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1468), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), + [1429] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3249), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1429), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1469] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6358), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1469), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), + [1430] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3549), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1430), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), [sym__heredoc_body_start] = ACTIONS(7), }, - [1470] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1470), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), + [1431] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3260), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1431), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1471] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5763), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1471), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [1432] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4895), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1432), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1472] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4694), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1472), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1433] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4896), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1433), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1434] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3279), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1434), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1473] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7018), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1473), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(3299), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4584), - [anon_sym_LPAREN] = ACTIONS(3189), + [1435] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3310), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1435), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1474] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2951), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1474), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), + [1436] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3330), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1436), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -266006,10 +261253,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -266022,14 +261269,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(89), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -266037,13 +261284,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(115), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -266056,75 +261303,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1475] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2958), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1475), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), + [1437] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4904), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1437), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1438] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3308), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1438), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -266137,10 +261515,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -266153,14 +261531,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(89), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -266168,13 +261546,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(115), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -266187,598 +261565,2039 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1476] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5943), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1476), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [1439] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4906), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1439), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1477] = { - [sym__parenthesized_statement] = STATE(5754), - [sym_expressions] = STATE(5754), - [sym__expression] = STATE(5955), - [sym_empty_parens] = STATE(5754), - [sym_integer] = STATE(5754), - [sym_float] = STATE(5754), - [sym_char] = STATE(5754), - [sym_string] = STATE(5049), - [sym_chained_string] = STATE(5754), - [sym_string_percent_literal] = STATE(5754), - [sym_string_array_percent_literal] = STATE(5754), - [sym_symbol_array_percent_literal] = STATE(5754), - [sym_heredoc_body] = STATE(1477), - [sym_quoted_symbol] = STATE(5754), - [sym_command] = STATE(5754), - [sym_command_percent_literal] = STATE(5754), - [sym_regex] = STATE(5754), - [sym_regex_percent_literal] = STATE(5754), - [sym_array] = STATE(5754), - [sym_hash] = STATE(5754), - [sym_tuple] = STATE(5754), - [sym_named_tuple] = STATE(5754), - [sym_range] = STATE(5754), - [sym_beginless_range] = STATE(5754), - [sym_proc] = STATE(5754), - [sym_method_proc] = STATE(5754), - [sym_yield] = STATE(5754), - [sym_typeof] = STATE(5754), - [sym_sizeof] = STATE(5754), - [sym_instance_sizeof] = STATE(5754), - [sym_offsetof] = STATE(5754), - [sym_constant] = STATE(5598), - [sym_pseudo_constant] = STATE(5754), - [sym_generic_instance_type] = STATE(5754), - [sym__dot_call] = STATE(290), - [sym_call_with_visibility] = STATE(5754), - [sym_call] = STATE(5754), - [sym__global_method] = STATE(313), - [sym_assign_call] = STATE(7852), - [sym_index_operator] = STATE(2311), - [sym_index_call] = STATE(2311), - [sym_not] = STATE(5754), - [sym_and] = STATE(5754), - [sym_or] = STATE(5754), - [sym_additive_operator] = STATE(5754), - [sym_unary_additive_operator] = STATE(5754), - [sym_multiplicative_operator] = STATE(5754), - [sym_exponential_operator] = STATE(5754), - [sym_shift_operator] = STATE(5754), - [sym_complement_operator] = STATE(5754), - [sym_binary_and_operator] = STATE(5754), - [sym_binary_or_operator] = STATE(5754), - [sym_equality_operator] = STATE(5754), - [sym_comparison_operator] = STATE(5754), - [sym_assign] = STATE(5754), - [sym_operator_assign] = STATE(5754), - [sym_type_declaration] = STATE(5754), - [sym_begin_block] = STATE(5754), - [sym_while] = STATE(5754), - [sym_until] = STATE(5754), - [sym_if] = STATE(5754), - [sym_unless] = STATE(5754), - [sym_conditional] = STATE(5754), - [sym_case] = STATE(5754), - [sym_select] = STATE(5754), - [sym_exhaustive_case] = STATE(5754), - [sym_asm] = STATE(5754), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [aux_sym_integer_token2] = ACTIONS(1007), - [aux_sym_float_token2] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1011), - [sym_operator_symbol] = ACTIONS(1013), - [sym_unquoted_symbol] = ACTIONS(1013), - [anon_sym_COLON_DQUOTE] = ACTIONS(1015), - [anon_sym_BQUOTE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_DASH_GT] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(1027), - [anon_sym_with] = ACTIONS(1029), - [anon_sym_yield] = ACTIONS(1031), - [anon_sym_typeof] = ACTIONS(1033), - [anon_sym_sizeof] = ACTIONS(1035), - [anon_sym_instance_sizeof] = ACTIONS(1037), - [anon_sym_offsetof] = ACTIONS(1039), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym___LINE__] = ACTIONS(1045), - [anon_sym___END_LINE__] = ACTIONS(1045), - [anon_sym___FILE__] = ACTIONS(1045), - [anon_sym___DIR__] = ACTIONS(1045), - [sym_special_variable] = ACTIONS(1047), - [sym_global_match_data_index] = ACTIONS(1013), - [sym_identifier_method_call] = ACTIONS(3297), - [sym_instance_var] = ACTIONS(1051), - [sym_class_var] = ACTIONS(1051), - [sym_self] = ACTIONS(1005), - [sym_private] = ACTIONS(1057), - [sym_protected] = ACTIONS(1057), - [anon_sym_begin] = ACTIONS(1065), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_until] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_select] = ACTIONS(1073), - [aux_sym_asm_token1] = ACTIONS(1075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1079), - [sym__start_of_named_tuple] = ACTIONS(1081), - [sym_unary_plus] = ACTIONS(1083), - [sym_unary_minus] = ACTIONS(1083), - [sym_unary_wrapping_plus] = ACTIONS(1085), - [sym_unary_wrapping_minus] = ACTIONS(1085), - [sym__beginless_range_operator] = ACTIONS(1093), - [sym__regex_start] = ACTIONS(1095), - [sym__regular_if_keyword] = ACTIONS(1097), - [sym__regular_unless_keyword] = ACTIONS(1099), - [sym__string_literal_start] = ACTIONS(1101), - [sym__string_percent_literal_start] = ACTIONS(1103), - [sym__command_percent_literal_start] = ACTIONS(1105), - [sym__string_array_percent_literal_start] = ACTIONS(1107), - [sym__symbol_array_percent_literal_start] = ACTIONS(1109), - [sym__regex_percent_literal_start] = ACTIONS(1111), - [sym_heredoc_start] = ACTIONS(1013), + [1440] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4907), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1440), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1478] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3407), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1478), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [1441] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4908), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1441), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1479] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3501), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1479), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), + [1442] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4909), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1442), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1443] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4910), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1443), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1444] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4912), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1444), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1445] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4913), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1445), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1446] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4914), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1446), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1447] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4915), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1447), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1448] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4916), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1448), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1449] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4917), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1449), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1450] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3183), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1450), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1480] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6596), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1480), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [1451] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4925), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1451), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1452] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4926), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1452), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1453] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4927), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1453), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1454] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6335), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1454), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(3307), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -266794,7 +263613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -266842,74 +263661,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1481] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6597), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1481), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [1455] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6337), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1455), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(3307), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -266925,7 +263744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -266973,599 +263792,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1482] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4825), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1482), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1483] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4826), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1483), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1484] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3433), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1484), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1485] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6903), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1485), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1486] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7019), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1486), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(6558), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4586), + [1456] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6970), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1456), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -267580,28 +263875,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -267611,16 +263906,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -267628,2825 +263923,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1487] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3361), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1487), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), + [1457] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3229), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1457), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1488] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1488), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1489] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6969), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1489), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1490] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3364), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1490), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1491] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7016), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1491), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2431), - [sym_index_call] = STATE(2431), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4590), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(4592), - [sym_class_var] = ACTIONS(4592), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1492] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3412), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1492), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1493] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1493), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1494] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3425), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1494), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1495] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3426), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1495), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1496] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4635), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1496), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1497] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4636), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1497), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1498] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4013), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1498), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1499] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4014), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1499), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1500] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4898), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1500), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1501] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3437), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1501), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1502] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3442), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1502), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1503] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3444), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1503), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1504] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3445), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1504), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1505] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7023), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1505), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4329), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4594), - [anon_sym_LPAREN] = ACTIONS(3189), + [1458] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3259), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1458), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1506] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3446), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1506), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1507] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3447), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1507), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1508] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3255), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1508), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [1459] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3328), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1459), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), [sym_identifier] = ACTIONS(2783), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), @@ -270510,1253 +264316,991 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1509] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7024), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1509), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(5825), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4596), - [anon_sym_LPAREN] = ACTIONS(3189), + [1460] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6667), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1460), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(4576), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1510] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6991), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1510), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1511] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4747), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1511), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1461] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6326), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1461), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1512] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3377), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1512), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1513] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4111), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1513), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1462] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6442), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1462), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1514] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4112), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1514), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1463] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6450), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1463), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1515] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5541), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1515), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), + [1464] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6452), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1464), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1516] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5543), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1516), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), + [1465] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6688), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1465), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1517] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6287), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1517), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), + [1466] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6717), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1466), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1518] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6280), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1518), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [1467] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6307), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1467), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(3307), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -271772,7 +265316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -271820,992 +265364,992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1519] = { - [sym__parenthesized_statement] = STATE(3365), - [sym_expressions] = STATE(3365), - [sym__expression] = STATE(3410), - [sym_empty_parens] = STATE(3365), - [sym_integer] = STATE(3365), - [sym_float] = STATE(3365), - [sym_char] = STATE(3365), - [sym_string] = STATE(2806), - [sym_chained_string] = STATE(3365), - [sym_string_percent_literal] = STATE(3365), - [sym_string_array_percent_literal] = STATE(3365), - [sym_symbol_array_percent_literal] = STATE(3365), - [sym_heredoc_body] = STATE(1519), - [sym_quoted_symbol] = STATE(3365), - [sym_command] = STATE(3365), - [sym_command_percent_literal] = STATE(3365), - [sym_regex] = STATE(3365), - [sym_regex_percent_literal] = STATE(3365), - [sym_array] = STATE(3365), - [sym_hash] = STATE(3365), - [sym_tuple] = STATE(3365), - [sym_named_tuple] = STATE(3365), - [sym_range] = STATE(3365), - [sym_beginless_range] = STATE(3365), - [sym_proc] = STATE(3365), - [sym_method_proc] = STATE(3365), - [sym_yield] = STATE(3365), - [sym_typeof] = STATE(3365), - [sym_sizeof] = STATE(3365), - [sym_instance_sizeof] = STATE(3365), - [sym_offsetof] = STATE(3365), - [sym_constant] = STATE(3193), - [sym_pseudo_constant] = STATE(3365), - [sym_generic_instance_type] = STATE(3365), - [sym__dot_call] = STATE(95), - [sym_call_with_visibility] = STATE(3365), - [sym_call] = STATE(3365), - [sym__global_method] = STATE(96), - [sym_assign_call] = STATE(7866), - [sym_index_operator] = STATE(2210), - [sym_index_call] = STATE(2210), - [sym_not] = STATE(3365), - [sym_and] = STATE(3365), - [sym_or] = STATE(3365), - [sym_additive_operator] = STATE(3365), - [sym_unary_additive_operator] = STATE(3365), - [sym_multiplicative_operator] = STATE(3365), - [sym_exponential_operator] = STATE(3365), - [sym_shift_operator] = STATE(3365), - [sym_complement_operator] = STATE(3365), - [sym_binary_and_operator] = STATE(3365), - [sym_binary_or_operator] = STATE(3365), - [sym_equality_operator] = STATE(3365), - [sym_comparison_operator] = STATE(3365), - [sym_assign] = STATE(3365), - [sym_operator_assign] = STATE(3365), - [sym_type_declaration] = STATE(3365), - [sym_begin_block] = STATE(3365), - [sym_while] = STATE(3365), - [sym_until] = STATE(3365), - [sym_if] = STATE(3365), - [sym_unless] = STATE(3365), - [sym_conditional] = STATE(3365), - [sym_case] = STATE(3365), - [sym_select] = STATE(3365), - [sym_exhaustive_case] = STATE(3365), - [sym_asm] = STATE(3365), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), + [1468] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6331), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1468), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(323), - [sym_true] = ACTIONS(323), - [sym_false] = ACTIONS(323), - [aux_sym_integer_token2] = ACTIONS(325), - [aux_sym_float_token2] = ACTIONS(327), - [anon_sym_SQUOTE] = ACTIONS(329), - [sym_operator_symbol] = ACTIONS(331), - [sym_unquoted_symbol] = ACTIONS(331), - [anon_sym_COLON_DQUOTE] = ACTIONS(333), - [anon_sym_BQUOTE] = ACTIONS(335), - [anon_sym_LBRACK] = ACTIONS(337), - [anon_sym_DASH_GT] = ACTIONS(339), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(345), - [anon_sym_with] = ACTIONS(347), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_typeof] = ACTIONS(351), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym_instance_sizeof] = ACTIONS(355), - [anon_sym_offsetof] = ACTIONS(357), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(361), - [anon_sym___LINE__] = ACTIONS(363), - [anon_sym___END_LINE__] = ACTIONS(363), - [anon_sym___FILE__] = ACTIONS(363), - [anon_sym___DIR__] = ACTIONS(363), - [sym_special_variable] = ACTIONS(365), - [sym_global_match_data_index] = ACTIONS(331), - [sym_identifier_method_call] = ACTIONS(2905), - [sym_instance_var] = ACTIONS(369), - [sym_class_var] = ACTIONS(369), - [sym_self] = ACTIONS(323), - [sym_private] = ACTIONS(375), - [sym_protected] = ACTIONS(375), - [anon_sym_begin] = ACTIONS(383), - [anon_sym_while] = ACTIONS(385), - [anon_sym_until] = ACTIONS(387), - [anon_sym_case] = ACTIONS(389), - [anon_sym_select] = ACTIONS(391), - [aux_sym_asm_token1] = ACTIONS(393), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(397), - [sym__start_of_named_tuple] = ACTIONS(399), - [sym_unary_plus] = ACTIONS(401), - [sym_unary_minus] = ACTIONS(401), - [sym_unary_wrapping_plus] = ACTIONS(403), - [sym_unary_wrapping_minus] = ACTIONS(403), - [sym__beginless_range_operator] = ACTIONS(411), - [sym__regex_start] = ACTIONS(413), - [sym__regular_if_keyword] = ACTIONS(415), - [sym__regular_unless_keyword] = ACTIONS(417), - [sym__string_literal_start] = ACTIONS(419), - [sym__string_percent_literal_start] = ACTIONS(421), - [sym__command_percent_literal_start] = ACTIONS(423), - [sym__string_array_percent_literal_start] = ACTIONS(425), - [sym__symbol_array_percent_literal_start] = ACTIONS(427), - [sym__regex_percent_literal_start] = ACTIONS(429), - [sym_heredoc_start] = ACTIONS(331), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1520] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7014), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1520), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4776), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3189), + [1469] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6332), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1469), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3497), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1521] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2651), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1521), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1470] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6338), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1470), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1522] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4910), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1522), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1471] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6340), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1471), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1523] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4911), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1523), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1472] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6470), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1472), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1524] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2560), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1524), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1473] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6551), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1473), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1525] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6344), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1525), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), + [1474] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6593), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1474), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1526] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4771), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1526), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1475] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4371), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1475), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -272818,12 +266362,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -272834,14 +266378,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -272849,18 +266393,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -272868,730 +266412,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1527] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5656), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1527), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1528] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5458), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1528), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1529] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5974), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1529), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1530] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5975), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1530), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1531] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4958), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1531), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1532] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1532), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1476] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4540), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1476), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -273606,10 +266495,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -273620,14 +266509,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -273637,16 +266526,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -273654,468 +266543,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1533] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5978), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1533), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1534] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4961), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1534), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1535] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4970), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1535), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1536] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7017), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1536), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(3858), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4598), + [1477] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6980), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1477), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -274139,14 +266635,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3123), + [sym_identifier_method_call] = ACTIONS(3229), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -274178,1910 +266674,2041 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1537] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4971), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1537), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1478] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7020), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1478), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1538] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4972), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1538), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1479] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7049), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1479), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1539] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4973), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1539), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1480] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7024), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1480), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1540] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5979), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1540), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), + [1481] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7044), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1481), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1541] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4975), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1541), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1482] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7016), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1482), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1542] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4976), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1542), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1483] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7018), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1483), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1543] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4977), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1543), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1484] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7038), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1484), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1544] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4978), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1544), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1485] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7039), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1485), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1545] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4979), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1545), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1486] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7041), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1486), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1546] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4980), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1546), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1487] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6973), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1487), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1547] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6491), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1547), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), + [1488] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6998), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1488), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1548] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5971), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1548), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [1489] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7002), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1489), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1549] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5972), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1549), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [1490] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6983), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1490), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1550] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2717), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1550), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1491] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7000), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1491), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1551] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3973), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1551), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1492] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7007), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1492), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1493] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4284), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1493), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(593), [sym_true] = ACTIONS(593), @@ -276095,7 +268722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(607), [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3609), [anon_sym_TILDE] = ACTIONS(615), [anon_sym_with] = ACTIONS(617), [anon_sym_yield] = ACTIONS(619), @@ -276103,7 +268730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(623), [anon_sym_instance_sizeof] = ACTIONS(625), [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), + [sym__constant_segment] = ACTIONS(3165), [anon_sym_COLON_COLON] = ACTIONS(631), [anon_sym___LINE__] = ACTIONS(633), [anon_sym___END_LINE__] = ACTIONS(633), @@ -276111,7 +268738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(633), [sym_special_variable] = ACTIONS(635), [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), + [sym_identifier_method_call] = ACTIONS(3167), [sym_instance_var] = ACTIONS(639), [sym_class_var] = ACTIONS(639), [sym_self] = ACTIONS(593), @@ -276143,337 +268770,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [1552] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6921), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1552), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1553] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3183), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1553), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(15), + [1494] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4285), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1494), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [1554] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7019), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1554), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(5570), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4600), + [1495] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6890), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1495), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -276486,10 +268982,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -276497,19 +268993,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym_COLON_COLON] = ACTIONS(1997), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -276517,13 +269013,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -276536,250 +269032,13481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1555] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2721), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1555), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1496] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6891), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1496), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1556] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2743), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1556), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1497] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4044), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1497), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1498] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4047), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1498), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1499] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4048), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1499), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1500] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4049), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1500), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1501] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4050), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1501), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1502] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4051), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1502), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1503] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4053), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1503), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1504] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4054), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1504), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1505] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4055), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1505), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1506] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4056), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1506), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1507] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4057), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1507), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1508] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4058), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1508), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1509] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4089), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1509), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1510] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4093), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1510), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1511] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4099), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1511), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1512] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5622), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1512), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1513] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5624), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1513), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1514] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5724), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1514), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1515] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5729), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1515), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1516] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5730), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1516), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1517] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5731), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1517), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1518] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5732), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1518), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1519] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5733), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1519), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1520] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5736), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1520), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1521] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5738), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1521), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1522] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5739), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1522), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1523] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5740), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1523), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1524] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5741), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1524), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1525] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5743), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1525), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1526] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6730), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1526), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1527] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5787), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1527), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1528] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5789), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1528), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1529] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6916), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1529), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1530] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1530), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1531] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3864), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1531), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1532] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3866), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1532), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1533] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6921), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1533), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1534] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4781), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1534), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1535] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5916), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1535), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1536] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5919), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1536), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1537] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5920), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1537), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1538] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5921), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1538), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1539] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5922), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1539), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1540] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5923), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1540), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1541] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5925), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1541), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1542] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5926), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1542), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1543] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5927), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1543), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1544] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5928), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1544), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1545] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5929), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1545), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1546] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5930), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1546), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1547] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4613), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1547), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1548] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5938), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1548), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1549] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5939), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1549), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1550] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6950), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1550), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1551] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5943), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1551), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1552] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4589), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1552), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1553] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7063), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1553), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7854), + [sym_index_operator] = STATE(2456), + [sym_index_call] = STATE(2456), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4568), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(4570), + [sym_class_var] = ACTIONS(4570), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1554] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7069), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1554), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(6098), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(4574), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1555] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4371), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1555), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1556] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4540), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1556), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1557] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7071), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1557), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(2971), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1558] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2745), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1558), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1559] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2751), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1559), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1560] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4775), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1560), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1561] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4655), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1561), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1562] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4070), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1562), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1563] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4071), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1563), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1564] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4897), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1564), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1565] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4898), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1565), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1566] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4899), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1566), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1567] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4900), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1567), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1568] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4403), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1568), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1569] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4405), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1569), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1570] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4406), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1570), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1571] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4407), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1571), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1572] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4683), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1572), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1573] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4690), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1573), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1574] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4693), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1574), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1575] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4696), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1575), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1576] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4724), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1576), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1577] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4726), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1577), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1578] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4736), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1578), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1579] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4746), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1579), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1580] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4766), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1580), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1581] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4767), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1581), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1582] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4078), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1582), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1583] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(4079), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1583), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1584] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6188), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1584), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1585] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7067), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1585), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(6741), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1586] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2922), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1586), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1587] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2924), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1587), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1588] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5962), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1588), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1589] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5963), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1589), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1590] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5246), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1590), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1591] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5247), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1591), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1592] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6840), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1592), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1593] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7056), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1593), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(2712), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1594] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5228), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1594), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1595] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5229), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1595), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1596] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6744), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1596), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1597] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6745), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1597), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1598] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2647), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1598), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), [sym__start_of_named_tuple] = ACTIONS(257), [sym_unary_plus] = ACTIONS(259), [sym_unary_minus] = ACTIONS(259), @@ -276798,205 +282525,2039 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1557] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2748), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1557), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1599] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7062), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1599), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(3887), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4582), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1600] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4773), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1600), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1601] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4650), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1601), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1602] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6737), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1602), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1603] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6738), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1603), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1604] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6071), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1604), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1605] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6072), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1605), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1606] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4568), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1606), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7900), + [sym_index_operator] = STATE(2292), + [sym_index_call] = STATE(2292), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1321), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1353), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3179), + [sym_class_var] = ACTIONS(3179), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(3181), + [sym_protected] = ACTIONS(3181), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1383), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1387), + [sym_unary_minus] = ACTIONS(1387), + [sym_unary_wrapping_plus] = ACTIONS(1389), + [sym_unary_wrapping_minus] = ACTIONS(1389), + [sym__beginless_range_operator] = ACTIONS(1391), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1607] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7069), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1607), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(5306), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4584), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(4574), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1608] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6040), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1608), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1609] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6041), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1609), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1610] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4293), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1610), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1611] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4294), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1611), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1612] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3838), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(3322), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1612), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(124), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(126), + [sym_assign_call] = STATE(7895), + [sym_index_operator] = STATE(2272), + [sym_index_call] = STATE(2272), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3013), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(485), + [anon_sym_with] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(489), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(505), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3017), + [sym_instance_var] = ACTIONS(509), + [sym_class_var] = ACTIONS(509), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(515), + [sym_protected] = ACTIONS(515), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(541), + [sym_unary_minus] = ACTIONS(541), + [sym_unary_wrapping_plus] = ACTIONS(543), + [sym_unary_wrapping_minus] = ACTIONS(543), + [sym__beginless_range_operator] = ACTIONS(551), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(559), + [sym__string_percent_literal_start] = ACTIONS(561), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1558] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1558), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1613] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7067), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1613), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(6128), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1614] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4835), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1614), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -277060,467 +284621,1384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1559] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2752), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1559), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1615] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6327), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1615), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1560] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4879), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1560), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1616] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4262), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1616), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1561] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2753), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1561), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1617] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4263), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1617), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1562] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3194), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1562), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), + [1618] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3336), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1618), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1619] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1619), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1620] = { + [sym__parenthesized_statement] = STATE(5273), + [sym_expressions] = STATE(5273), + [sym__expression] = STATE(5281), + [sym_empty_parens] = STATE(5273), + [sym_integer] = STATE(5273), + [sym_float] = STATE(5273), + [sym_char] = STATE(5273), + [sym_string] = STATE(4787), + [sym_chained_string] = STATE(5273), + [sym_string_percent_literal] = STATE(5273), + [sym_string_array_percent_literal] = STATE(5273), + [sym_symbol_array_percent_literal] = STATE(5273), + [sym_heredoc_body] = STATE(1620), + [sym_quoted_symbol] = STATE(5273), + [sym_command] = STATE(5273), + [sym_command_percent_literal] = STATE(5273), + [sym_regex] = STATE(5273), + [sym_regex_percent_literal] = STATE(5273), + [sym_array] = STATE(5273), + [sym_hash] = STATE(5273), + [sym_tuple] = STATE(5273), + [sym_named_tuple] = STATE(5273), + [sym_range] = STATE(5273), + [sym_beginless_range] = STATE(5273), + [sym_proc] = STATE(5273), + [sym_method_proc] = STATE(5273), + [sym_yield] = STATE(5273), + [sym_typeof] = STATE(5273), + [sym_sizeof] = STATE(5273), + [sym_instance_sizeof] = STATE(5273), + [sym_offsetof] = STATE(5273), + [sym_constant] = STATE(5136), + [sym_pseudo_constant] = STATE(5273), + [sym_generic_instance_type] = STATE(5273), + [sym__dot_call] = STATE(243), + [sym_call_with_visibility] = STATE(5273), + [sym_call] = STATE(5273), + [sym__global_method] = STATE(256), + [sym_assign_call] = STATE(7922), + [sym_index_operator] = STATE(2317), + [sym_index_call] = STATE(2317), + [sym_not] = STATE(5273), + [sym_and] = STATE(5273), + [sym_or] = STATE(5273), + [sym_additive_operator] = STATE(5273), + [sym_unary_additive_operator] = STATE(5273), + [sym_multiplicative_operator] = STATE(5273), + [sym_exponential_operator] = STATE(5273), + [sym_shift_operator] = STATE(5273), + [sym_complement_operator] = STATE(5273), + [sym_binary_and_operator] = STATE(5273), + [sym_binary_or_operator] = STATE(5273), + [sym_equality_operator] = STATE(5273), + [sym_comparison_operator] = STATE(5273), + [sym_assign] = STATE(5273), + [sym_operator_assign] = STATE(5273), + [sym_type_declaration] = STATE(5273), + [sym_begin_block] = STATE(5273), + [sym_while] = STATE(5273), + [sym_until] = STATE(5273), + [sym_if] = STATE(5273), + [sym_unless] = STATE(5273), + [sym_conditional] = STATE(5273), + [sym_case] = STATE(5273), + [sym_select] = STATE(5273), + [sym_exhaustive_case] = STATE(5273), + [sym_asm] = STATE(5273), + [sym_identifier] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3249), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(745), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(747), + [aux_sym_float_token2] = ACTIONS(749), + [anon_sym_SQUOTE] = ACTIONS(751), + [sym_operator_symbol] = ACTIONS(753), + [sym_unquoted_symbol] = ACTIONS(753), + [anon_sym_COLON_DQUOTE] = ACTIONS(755), + [anon_sym_BQUOTE] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_with] = ACTIONS(769), + [anon_sym_yield] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(773), + [anon_sym_sizeof] = ACTIONS(775), + [anon_sym_instance_sizeof] = ACTIONS(777), + [anon_sym_offsetof] = ACTIONS(779), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(783), + [anon_sym___LINE__] = ACTIONS(785), + [anon_sym___END_LINE__] = ACTIONS(785), + [anon_sym___FILE__] = ACTIONS(785), + [anon_sym___DIR__] = ACTIONS(785), + [sym_special_variable] = ACTIONS(787), + [sym_global_match_data_index] = ACTIONS(753), + [sym_identifier_method_call] = ACTIONS(3253), + [sym_instance_var] = ACTIONS(791), + [sym_class_var] = ACTIONS(791), + [sym_self] = ACTIONS(745), + [sym_private] = ACTIONS(797), + [sym_protected] = ACTIONS(797), + [anon_sym_begin] = ACTIONS(805), + [anon_sym_while] = ACTIONS(807), + [anon_sym_until] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_select] = ACTIONS(813), + [aux_sym_asm_token1] = ACTIONS(815), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(819), + [sym__start_of_named_tuple] = ACTIONS(821), + [sym_unary_plus] = ACTIONS(823), + [sym_unary_minus] = ACTIONS(823), + [sym_unary_wrapping_plus] = ACTIONS(825), + [sym_unary_wrapping_minus] = ACTIONS(825), + [sym__beginless_range_operator] = ACTIONS(833), + [sym__regex_start] = ACTIONS(835), + [sym__regular_if_keyword] = ACTIONS(837), + [sym__regular_unless_keyword] = ACTIONS(839), + [sym__string_literal_start] = ACTIONS(841), + [sym__string_percent_literal_start] = ACTIONS(843), + [sym__command_percent_literal_start] = ACTIONS(845), + [sym__string_array_percent_literal_start] = ACTIONS(847), + [sym__symbol_array_percent_literal_start] = ACTIONS(849), + [sym__regex_percent_literal_start] = ACTIONS(851), + [sym_heredoc_start] = ACTIONS(753), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1621] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7055), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1621), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(110), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4189), + [sym__global_method] = STATE(115), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(1355), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1622] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7063), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1622), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7852), + [sym_index_operator] = STATE(2419), + [sym_index_call] = STATE(2419), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4588), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(4590), + [sym_class_var] = ACTIONS(4590), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1623] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5935), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1623), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1624] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5945), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1624), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1625] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3257), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1625), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), [sym_identifier] = ACTIONS(2783), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), @@ -277584,468 +286062,1123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1563] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1563), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1626] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6541), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1626), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1627] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6542), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1627), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1628] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3281), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1628), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(91), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(90), + [sym_assign_call] = STATE(7920), + [sym_index_operator] = STATE(2228), + [sym_index_call] = STATE(2228), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2783), + [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(55), + [anon_sym_TILDE] = ACTIONS(57), + [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(89), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2785), + [sym_class_var] = ACTIONS(2785), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(2787), + [sym_protected] = ACTIONS(2787), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(119), + [sym_unary_minus] = ACTIONS(119), + [sym_unary_wrapping_plus] = ACTIONS(121), + [sym_unary_wrapping_minus] = ACTIONS(121), + [sym__beginless_range_operator] = ACTIONS(123), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1629] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3453), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1629), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1630] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3455), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1630), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1631] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6631), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1631), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1564] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2534), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1564), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1632] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6637), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1632), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1565] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5475), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1565), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), + [1633] = { + [sym__parenthesized_statement] = STATE(6103), + [sym_expressions] = STATE(6103), + [sym__expression] = STATE(6109), + [sym_empty_parens] = STATE(6103), + [sym_integer] = STATE(6103), + [sym_float] = STATE(6103), + [sym_char] = STATE(6103), + [sym_string] = STATE(5205), + [sym_chained_string] = STATE(6103), + [sym_string_percent_literal] = STATE(6103), + [sym_string_array_percent_literal] = STATE(6103), + [sym_symbol_array_percent_literal] = STATE(6103), + [sym_heredoc_body] = STATE(1633), + [sym_quoted_symbol] = STATE(6103), + [sym_command] = STATE(6103), + [sym_command_percent_literal] = STATE(6103), + [sym_regex] = STATE(6103), + [sym_regex_percent_literal] = STATE(6103), + [sym_array] = STATE(6103), + [sym_hash] = STATE(6103), + [sym_tuple] = STATE(6103), + [sym_named_tuple] = STATE(6103), + [sym_range] = STATE(6103), + [sym_beginless_range] = STATE(6103), + [sym_proc] = STATE(6103), + [sym_method_proc] = STATE(6103), + [sym_yield] = STATE(6103), + [sym_typeof] = STATE(6103), + [sym_sizeof] = STATE(6103), + [sym_instance_sizeof] = STATE(6103), + [sym_offsetof] = STATE(6103), + [sym_constant] = STATE(5523), + [sym_pseudo_constant] = STATE(6103), + [sym_generic_instance_type] = STATE(6103), + [sym__dot_call] = STATE(286), + [sym_call_with_visibility] = STATE(6103), + [sym_call] = STATE(6103), + [sym__global_method] = STATE(293), + [sym_assign_call] = STATE(7890), + [sym_index_operator] = STATE(2341), + [sym_index_call] = STATE(2341), + [sym_not] = STATE(6103), + [sym_and] = STATE(6103), + [sym_or] = STATE(6103), + [sym_additive_operator] = STATE(6103), + [sym_unary_additive_operator] = STATE(6103), + [sym_multiplicative_operator] = STATE(6103), + [sym_exponential_operator] = STATE(6103), + [sym_shift_operator] = STATE(6103), + [sym_complement_operator] = STATE(6103), + [sym_binary_and_operator] = STATE(6103), + [sym_binary_or_operator] = STATE(6103), + [sym_equality_operator] = STATE(6103), + [sym_comparison_operator] = STATE(6103), + [sym_assign] = STATE(6103), + [sym_operator_assign] = STATE(6103), + [sym_type_declaration] = STATE(6103), + [sym_begin_block] = STATE(6103), + [sym_while] = STATE(6103), + [sym_until] = STATE(6103), + [sym_if] = STATE(6103), + [sym_unless] = STATE(6103), + [sym_conditional] = STATE(6103), + [sym_case] = STATE(6103), + [sym_select] = STATE(6103), + [sym_exhaustive_case] = STATE(6103), + [sym_asm] = STATE(6103), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [sym_nil] = ACTIONS(1005), + [sym_true] = ACTIONS(1005), + [sym_false] = ACTIONS(1005), + [aux_sym_integer_token2] = ACTIONS(1007), + [aux_sym_float_token2] = ACTIONS(1009), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_operator_symbol] = ACTIONS(1013), + [sym_unquoted_symbol] = ACTIONS(1013), + [anon_sym_COLON_DQUOTE] = ACTIONS(1015), + [anon_sym_BQUOTE] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1019), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(3595), + [anon_sym_TILDE] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1029), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_sizeof] = ACTIONS(1035), + [anon_sym_instance_sizeof] = ACTIONS(1037), + [anon_sym_offsetof] = ACTIONS(1039), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym___LINE__] = ACTIONS(1045), + [anon_sym___END_LINE__] = ACTIONS(1045), + [anon_sym___FILE__] = ACTIONS(1045), + [anon_sym___DIR__] = ACTIONS(1045), + [sym_special_variable] = ACTIONS(1047), + [sym_global_match_data_index] = ACTIONS(1013), + [sym_identifier_method_call] = ACTIONS(3301), + [sym_instance_var] = ACTIONS(1051), + [sym_class_var] = ACTIONS(1051), + [sym_self] = ACTIONS(1005), + [sym_private] = ACTIONS(1057), + [sym_protected] = ACTIONS(1057), + [anon_sym_begin] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_until] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(1069), + [anon_sym_select] = ACTIONS(1071), + [aux_sym_asm_token1] = ACTIONS(1073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1077), + [sym__start_of_named_tuple] = ACTIONS(1079), + [sym_unary_plus] = ACTIONS(1081), + [sym_unary_minus] = ACTIONS(1081), + [sym_unary_wrapping_plus] = ACTIONS(1083), + [sym_unary_wrapping_minus] = ACTIONS(1083), + [sym__beginless_range_operator] = ACTIONS(1091), + [sym__regex_start] = ACTIONS(1093), + [sym__regular_if_keyword] = ACTIONS(1095), + [sym__regular_unless_keyword] = ACTIONS(1097), + [sym__string_literal_start] = ACTIONS(1099), + [sym__string_percent_literal_start] = ACTIONS(1101), + [sym__command_percent_literal_start] = ACTIONS(1103), + [sym__string_array_percent_literal_start] = ACTIONS(1105), + [sym__symbol_array_percent_literal_start] = ACTIONS(1107), + [sym__regex_percent_literal_start] = ACTIONS(1109), + [sym_heredoc_start] = ACTIONS(1013), [sym__heredoc_body_start] = ACTIONS(7), }, - [1566] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7023), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1566), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(3618), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4602), + [1634] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7068), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1634), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(3397), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4592), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -278069,14 +287202,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(3497), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3287), + [sym_identifier_method_call] = ACTIONS(2901), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -278108,598 +287241,598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1567] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4995), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1567), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(175), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(159), - [sym_assign_call] = STATE(7849), - [sym_index_operator] = STATE(2284), - [sym_index_call] = STATE(2284), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2494), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2532), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(2534), - [sym_instance_var] = ACTIONS(3211), - [sym_class_var] = ACTIONS(3211), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(3213), - [sym_protected] = ACTIONS(3213), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2546), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2548), - [sym_unary_minus] = ACTIONS(2548), - [sym_unary_wrapping_plus] = ACTIONS(2550), - [sym_unary_wrapping_minus] = ACTIONS(2550), - [sym__beginless_range_operator] = ACTIONS(2552), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [1635] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4771), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1635), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1568] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2535), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1568), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1636] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4774), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1636), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1569] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2536), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1569), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1637] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6764), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1637), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1570] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3593), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1570), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [1638] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6786), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1638), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1571] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6443), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1571), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [1639] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6393), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1639), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(3307), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -278715,7 +287848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -278763,205 +287896,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1572] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2537), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1572), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1573] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6446), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1573), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), + [1640] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6394), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1640), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), [sym_identifier] = ACTIONS(3307), [anon_sym_LPAREN] = ACTIONS(3309), [sym_comment] = ACTIONS(5), @@ -278977,7 +287979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(2927), [anon_sym_LBRACK] = ACTIONS(2929), [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_BANG] = ACTIONS(3613), [anon_sym_TILDE] = ACTIONS(2935), [anon_sym_with] = ACTIONS(2937), [anon_sym_yield] = ACTIONS(2939), @@ -279025,206 +288027,992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(2923), [sym__heredoc_body_start] = ACTIONS(7), }, - [1574] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3059), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1574), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(15), + [1641] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4841), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1641), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1642] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4842), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1642), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1643] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6803), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1643), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1575] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6869), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1575), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1644] = { + [sym__parenthesized_statement] = STATE(3352), + [sym_expressions] = STATE(3352), + [sym__expression] = STATE(3535), + [sym_empty_parens] = STATE(3352), + [sym_integer] = STATE(3352), + [sym_float] = STATE(3352), + [sym_char] = STATE(3352), + [sym_string] = STATE(2856), + [sym_chained_string] = STATE(3352), + [sym_string_percent_literal] = STATE(3352), + [sym_string_array_percent_literal] = STATE(3352), + [sym_symbol_array_percent_literal] = STATE(3352), + [sym_heredoc_body] = STATE(1644), + [sym_quoted_symbol] = STATE(3352), + [sym_command] = STATE(3352), + [sym_command_percent_literal] = STATE(3352), + [sym_regex] = STATE(3352), + [sym_regex_percent_literal] = STATE(3352), + [sym_array] = STATE(3352), + [sym_hash] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_named_tuple] = STATE(3352), + [sym_range] = STATE(3352), + [sym_beginless_range] = STATE(3352), + [sym_proc] = STATE(3352), + [sym_method_proc] = STATE(3352), + [sym_yield] = STATE(3352), + [sym_typeof] = STATE(3352), + [sym_sizeof] = STATE(3352), + [sym_instance_sizeof] = STATE(3352), + [sym_offsetof] = STATE(3352), + [sym_constant] = STATE(3240), + [sym_pseudo_constant] = STATE(3352), + [sym_generic_instance_type] = STATE(3352), + [sym__dot_call] = STATE(99), + [sym_call_with_visibility] = STATE(3352), + [sym_call] = STATE(3352), + [sym__global_method] = STATE(98), + [sym_assign_call] = STATE(7888), + [sym_index_operator] = STATE(2236), + [sym_index_call] = STATE(2236), + [sym_not] = STATE(3352), + [sym_and] = STATE(3352), + [sym_or] = STATE(3352), + [sym_additive_operator] = STATE(3352), + [sym_unary_additive_operator] = STATE(3352), + [sym_multiplicative_operator] = STATE(3352), + [sym_exponential_operator] = STATE(3352), + [sym_shift_operator] = STATE(3352), + [sym_complement_operator] = STATE(3352), + [sym_binary_and_operator] = STATE(3352), + [sym_binary_or_operator] = STATE(3352), + [sym_equality_operator] = STATE(3352), + [sym_comparison_operator] = STATE(3352), + [sym_assign] = STATE(3352), + [sym_operator_assign] = STATE(3352), + [sym_type_declaration] = STATE(3352), + [sym_begin_block] = STATE(3352), + [sym_while] = STATE(3352), + [sym_until] = STATE(3352), + [sym_if] = STATE(3352), + [sym_unless] = STATE(3352), + [sym_conditional] = STATE(3352), + [sym_case] = STATE(3352), + [sym_select] = STATE(3352), + [sym_exhaustive_case] = STATE(3352), + [sym_asm] = STATE(3352), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2897), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(323), + [sym_true] = ACTIONS(323), + [sym_false] = ACTIONS(323), + [aux_sym_integer_token2] = ACTIONS(325), + [aux_sym_float_token2] = ACTIONS(327), + [anon_sym_SQUOTE] = ACTIONS(329), + [sym_operator_symbol] = ACTIONS(331), + [sym_unquoted_symbol] = ACTIONS(331), + [anon_sym_COLON_DQUOTE] = ACTIONS(333), + [anon_sym_BQUOTE] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_DASH_GT] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(345), + [anon_sym_with] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(349), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_sizeof] = ACTIONS(353), + [anon_sym_instance_sizeof] = ACTIONS(355), + [anon_sym_offsetof] = ACTIONS(357), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(361), + [anon_sym___LINE__] = ACTIONS(363), + [anon_sym___END_LINE__] = ACTIONS(363), + [anon_sym___FILE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [sym_special_variable] = ACTIONS(365), + [sym_global_match_data_index] = ACTIONS(331), + [sym_identifier_method_call] = ACTIONS(2901), + [sym_instance_var] = ACTIONS(369), + [sym_class_var] = ACTIONS(369), + [sym_self] = ACTIONS(323), + [sym_private] = ACTIONS(375), + [sym_protected] = ACTIONS(375), + [anon_sym_begin] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_case] = ACTIONS(387), + [anon_sym_select] = ACTIONS(389), + [aux_sym_asm_token1] = ACTIONS(391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(395), + [sym__start_of_named_tuple] = ACTIONS(397), + [sym_unary_plus] = ACTIONS(399), + [sym_unary_minus] = ACTIONS(399), + [sym_unary_wrapping_plus] = ACTIONS(401), + [sym_unary_wrapping_minus] = ACTIONS(401), + [sym__beginless_range_operator] = ACTIONS(409), + [sym__regex_start] = ACTIONS(411), + [sym__regular_if_keyword] = ACTIONS(413), + [sym__regular_unless_keyword] = ACTIONS(415), + [sym__string_literal_start] = ACTIONS(417), + [sym__string_percent_literal_start] = ACTIONS(419), + [sym__command_percent_literal_start] = ACTIONS(421), + [sym__string_array_percent_literal_start] = ACTIONS(423), + [sym__symbol_array_percent_literal_start] = ACTIONS(425), + [sym__regex_percent_literal_start] = ACTIONS(427), + [sym_heredoc_start] = ACTIONS(331), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1645] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6808), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1645), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1646] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6813), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1646), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1647] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6821), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1647), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1648] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7066), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1648), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(6351), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4594), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -279237,10 +289025,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -279248,19 +289036,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(4596), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -279268,13 +289056,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -279287,75 +289075,861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1576] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6875), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1576), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1649] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6828), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1649), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1650] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6830), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1650), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1651] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6831), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1651), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1652] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6832), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1652), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1653] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6833), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1653), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1654] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6834), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1654), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1655] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7001), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1655), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -279368,12 +289942,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -279384,14 +289958,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -279399,18 +289973,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -279418,76 +289992,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1577] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2538), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1577), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1656] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2651), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1656), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -279501,7 +290075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -279509,7 +290083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(211), [anon_sym_instance_sizeof] = ACTIONS(213), [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), + [sym__constant_segment] = ACTIONS(2274), [anon_sym_COLON_COLON] = ACTIONS(219), [anon_sym___LINE__] = ACTIONS(221), [anon_sym___END_LINE__] = ACTIONS(221), @@ -279517,7 +290091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(221), [sym_special_variable] = ACTIONS(223), [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), + [sym_identifier_method_call] = ACTIONS(2276), [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), @@ -279549,468 +290123,730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1578] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6867), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1578), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [1657] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4867), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1657), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1579] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6655), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1579), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3189), + [1658] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4769), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1658), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1659] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3975), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1659), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [1580] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3219), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1580), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(15), + [1660] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3976), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1660), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [1581] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6928), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1581), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1661] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4892), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1661), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7914), + [sym_index_operator] = STATE(2307), + [sym_index_call] = STATE(2307), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_TILDE] = ACTIONS(2570), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2584), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(3213), + [sym_protected] = ACTIONS(3213), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2598), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2600), + [sym_unary_minus] = ACTIONS(2600), + [sym_unary_wrapping_plus] = ACTIONS(2602), + [sym_unary_wrapping_minus] = ACTIONS(2602), + [sym__beginless_range_operator] = ACTIONS(2604), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1662] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7062), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1662), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4433), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4598), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -280041,7 +290877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), + [sym_identifier_method_call] = ACTIONS(3407), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -280073,75 +290909,992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1582] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4745), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1582), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1663] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6752), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1663), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1664] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6852), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1664), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1665] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3986), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1665), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1666] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(3987), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1666), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1667] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5594), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1667), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1668] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5595), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1668), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1669] = { + [sym__parenthesized_statement] = STATE(6628), + [sym_expressions] = STATE(6628), + [sym__expression] = STATE(6664), + [sym_empty_parens] = STATE(6628), + [sym_integer] = STATE(6628), + [sym_float] = STATE(6628), + [sym_char] = STATE(6628), + [sym_string] = STATE(5501), + [sym_chained_string] = STATE(6628), + [sym_string_percent_literal] = STATE(6628), + [sym_string_array_percent_literal] = STATE(6628), + [sym_symbol_array_percent_literal] = STATE(6628), + [sym_heredoc_body] = STATE(1669), + [sym_quoted_symbol] = STATE(6628), + [sym_command] = STATE(6628), + [sym_command_percent_literal] = STATE(6628), + [sym_regex] = STATE(6628), + [sym_regex_percent_literal] = STATE(6628), + [sym_array] = STATE(6628), + [sym_hash] = STATE(6628), + [sym_tuple] = STATE(6628), + [sym_named_tuple] = STATE(6628), + [sym_range] = STATE(6628), + [sym_beginless_range] = STATE(6628), + [sym_proc] = STATE(6628), + [sym_method_proc] = STATE(6628), + [sym_yield] = STATE(6628), + [sym_typeof] = STATE(6628), + [sym_sizeof] = STATE(6628), + [sym_instance_sizeof] = STATE(6628), + [sym_offsetof] = STATE(6628), + [sym_constant] = STATE(5953), + [sym_pseudo_constant] = STATE(6628), + [sym_generic_instance_type] = STATE(6628), + [sym__dot_call] = STATE(272), + [sym_call_with_visibility] = STATE(6628), + [sym_call] = STATE(6628), + [sym__global_method] = STATE(273), + [sym_assign_call] = STATE(7897), + [sym_index_operator] = STATE(2362), + [sym_index_call] = STATE(2362), + [sym_not] = STATE(6628), + [sym_and] = STATE(6628), + [sym_or] = STATE(6628), + [sym_additive_operator] = STATE(6628), + [sym_unary_additive_operator] = STATE(6628), + [sym_multiplicative_operator] = STATE(6628), + [sym_exponential_operator] = STATE(6628), + [sym_shift_operator] = STATE(6628), + [sym_complement_operator] = STATE(6628), + [sym_binary_and_operator] = STATE(6628), + [sym_binary_or_operator] = STATE(6628), + [sym_equality_operator] = STATE(6628), + [sym_comparison_operator] = STATE(6628), + [sym_assign] = STATE(6628), + [sym_operator_assign] = STATE(6628), + [sym_type_declaration] = STATE(6628), + [sym_begin_block] = STATE(6628), + [sym_while] = STATE(6628), + [sym_until] = STATE(6628), + [sym_if] = STATE(6628), + [sym_unless] = STATE(6628), + [sym_conditional] = STATE(6628), + [sym_case] = STATE(6628), + [sym_select] = STATE(6628), + [sym_exhaustive_case] = STATE(6628), + [sym_asm] = STATE(6628), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [aux_sym_integer_token2] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_SQUOTE] = ACTIONS(2921), + [sym_operator_symbol] = ACTIONS(2923), + [sym_unquoted_symbol] = ACTIONS(2923), + [anon_sym_COLON_DQUOTE] = ACTIONS(2925), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_DASH_GT] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_with] = ACTIONS(2937), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_typeof] = ACTIONS(2941), + [anon_sym_sizeof] = ACTIONS(2943), + [anon_sym_instance_sizeof] = ACTIONS(2945), + [anon_sym_offsetof] = ACTIONS(2947), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(2951), + [anon_sym___LINE__] = ACTIONS(2953), + [anon_sym___END_LINE__] = ACTIONS(2953), + [anon_sym___FILE__] = ACTIONS(2953), + [anon_sym___DIR__] = ACTIONS(2953), + [sym_special_variable] = ACTIONS(2955), + [sym_global_match_data_index] = ACTIONS(2923), + [sym_identifier_method_call] = ACTIONS(3313), + [sym_instance_var] = ACTIONS(2959), + [sym_class_var] = ACTIONS(2959), + [sym_self] = ACTIONS(2915), + [sym_private] = ACTIONS(2963), + [sym_protected] = ACTIONS(2963), + [anon_sym_begin] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_until] = ACTIONS(2969), + [anon_sym_case] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2973), + [aux_sym_asm_token1] = ACTIONS(2975), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2977), + [sym__start_of_named_tuple] = ACTIONS(2979), + [sym_unary_plus] = ACTIONS(2981), + [sym_unary_minus] = ACTIONS(2981), + [sym_unary_wrapping_plus] = ACTIONS(2983), + [sym_unary_wrapping_minus] = ACTIONS(2983), + [sym__beginless_range_operator] = ACTIONS(2989), + [sym__regex_start] = ACTIONS(2991), + [sym__regular_if_keyword] = ACTIONS(2993), + [sym__regular_unless_keyword] = ACTIONS(2995), + [sym__string_literal_start] = ACTIONS(2997), + [sym__string_percent_literal_start] = ACTIONS(2999), + [sym__command_percent_literal_start] = ACTIONS(3001), + [sym__string_array_percent_literal_start] = ACTIONS(3003), + [sym__symbol_array_percent_literal_start] = ACTIONS(3005), + [sym__regex_percent_literal_start] = ACTIONS(3007), + [sym_heredoc_start] = ACTIONS(2923), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1670] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7059), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1670), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(169), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4666), + [sym__global_method] = STATE(160), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3501), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -280154,10 +291907,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -280165,19 +291918,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(3515), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(2586), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -280185,13 +291938,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -280204,75 +291957,730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1583] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6238), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1583), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1671] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6761), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1671), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1672] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5566), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1672), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1673] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5567), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1673), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1674] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5979), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1674), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1675] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5980), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1675), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1676] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4589), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1676), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -280285,12 +292693,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -280301,14 +292709,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -280316,18 +292724,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -280335,206 +292743,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1584] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2843), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1584), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1585] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4557), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1585), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1677] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7057), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1677), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4302), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4600), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -280547,10 +292824,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -280558,19 +292835,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(3515), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -280578,13 +292855,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -280597,861 +292874,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1586] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3097), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1586), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1587] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6257), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1587), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1588] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3103), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1588), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1589] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3104), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1589), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1590] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3105), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1590), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [1678] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6896), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1678), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1591] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3106), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1591), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [1679] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6900), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1679), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1592] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4558), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1592), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1680] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6909), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1680), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -281466,10 +293219,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -281480,14 +293233,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -281497,16 +293250,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -281514,599 +293267,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1593] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3108), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1593), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1594] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3109), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1594), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1595] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3110), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1595), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(15), + [1681] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5976), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1681), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1596] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3111), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1596), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(15), + [1682] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(5977), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1682), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), [sym__heredoc_body_start] = ACTIONS(7), }, - [1597] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6937), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1597), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1683] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6910), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1683), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -282119,12 +293610,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -282135,14 +293626,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -282150,18 +293641,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -282169,337 +293660,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1598] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3112), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1598), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1599] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3113), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1599), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(15), + [1684] = { + [sym__parenthesized_statement] = STATE(4254), + [sym_expressions] = STATE(4254), + [sym__expression] = STATE(4270), + [sym_empty_parens] = STATE(4254), + [sym_integer] = STATE(4254), + [sym_float] = STATE(4254), + [sym_char] = STATE(4254), + [sym_string] = STATE(3294), + [sym_chained_string] = STATE(4254), + [sym_string_percent_literal] = STATE(4254), + [sym_string_array_percent_literal] = STATE(4254), + [sym_symbol_array_percent_literal] = STATE(4254), + [sym_heredoc_body] = STATE(1684), + [sym_quoted_symbol] = STATE(4254), + [sym_command] = STATE(4254), + [sym_command_percent_literal] = STATE(4254), + [sym_regex] = STATE(4254), + [sym_regex_percent_literal] = STATE(4254), + [sym_array] = STATE(4254), + [sym_hash] = STATE(4254), + [sym_tuple] = STATE(4254), + [sym_named_tuple] = STATE(4254), + [sym_range] = STATE(4254), + [sym_beginless_range] = STATE(4254), + [sym_proc] = STATE(4254), + [sym_method_proc] = STATE(4254), + [sym_yield] = STATE(4254), + [sym_typeof] = STATE(4254), + [sym_sizeof] = STATE(4254), + [sym_instance_sizeof] = STATE(4254), + [sym_offsetof] = STATE(4254), + [sym_constant] = STATE(3867), + [sym_pseudo_constant] = STATE(4254), + [sym_generic_instance_type] = STATE(4254), + [sym__dot_call] = STATE(137), + [sym_call_with_visibility] = STATE(4254), + [sym_call] = STATE(4254), + [sym__global_method] = STATE(138), + [sym_assign_call] = STATE(7896), + [sym_index_operator] = STATE(2262), + [sym_index_call] = STATE(2262), + [sym_not] = STATE(4254), + [sym_and] = STATE(4254), + [sym_or] = STATE(4254), + [sym_additive_operator] = STATE(4254), + [sym_unary_additive_operator] = STATE(4254), + [sym_multiplicative_operator] = STATE(4254), + [sym_exponential_operator] = STATE(4254), + [sym_shift_operator] = STATE(4254), + [sym_complement_operator] = STATE(4254), + [sym_binary_and_operator] = STATE(4254), + [sym_binary_or_operator] = STATE(4254), + [sym_equality_operator] = STATE(4254), + [sym_comparison_operator] = STATE(4254), + [sym_assign] = STATE(4254), + [sym_operator_assign] = STATE(4254), + [sym_type_declaration] = STATE(4254), + [sym_begin_block] = STATE(4254), + [sym_while] = STATE(4254), + [sym_until] = STATE(4254), + [sym_if] = STATE(4254), + [sym_unless] = STATE(4254), + [sym_conditional] = STATE(4254), + [sym_case] = STATE(4254), + [sym_select] = STATE(4254), + [sym_exhaustive_case] = STATE(4254), + [sym_asm] = STATE(4254), + [sym_identifier] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(593), + [sym_true] = ACTIONS(593), + [sym_false] = ACTIONS(593), + [aux_sym_integer_token2] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(597), + [anon_sym_SQUOTE] = ACTIONS(599), + [sym_operator_symbol] = ACTIONS(601), + [sym_unquoted_symbol] = ACTIONS(601), + [anon_sym_COLON_DQUOTE] = ACTIONS(603), + [anon_sym_BQUOTE] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_with] = ACTIONS(617), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_typeof] = ACTIONS(621), + [anon_sym_sizeof] = ACTIONS(623), + [anon_sym_instance_sizeof] = ACTIONS(625), + [anon_sym_offsetof] = ACTIONS(627), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(631), + [anon_sym___LINE__] = ACTIONS(633), + [anon_sym___END_LINE__] = ACTIONS(633), + [anon_sym___FILE__] = ACTIONS(633), + [anon_sym___DIR__] = ACTIONS(633), + [sym_special_variable] = ACTIONS(635), + [sym_global_match_data_index] = ACTIONS(601), + [sym_identifier_method_call] = ACTIONS(3167), + [sym_instance_var] = ACTIONS(639), + [sym_class_var] = ACTIONS(639), + [sym_self] = ACTIONS(593), + [sym_private] = ACTIONS(645), + [sym_protected] = ACTIONS(645), + [anon_sym_begin] = ACTIONS(653), + [anon_sym_while] = ACTIONS(655), + [anon_sym_until] = ACTIONS(657), + [anon_sym_case] = ACTIONS(659), + [anon_sym_select] = ACTIONS(661), + [aux_sym_asm_token1] = ACTIONS(663), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(667), + [sym__start_of_named_tuple] = ACTIONS(669), + [sym_unary_plus] = ACTIONS(671), + [sym_unary_minus] = ACTIONS(671), + [sym_unary_wrapping_plus] = ACTIONS(673), + [sym_unary_wrapping_minus] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(681), + [sym__regex_start] = ACTIONS(683), + [sym__regular_if_keyword] = ACTIONS(685), + [sym__regular_unless_keyword] = ACTIONS(687), + [sym__string_literal_start] = ACTIONS(689), + [sym__string_percent_literal_start] = ACTIONS(691), + [sym__command_percent_literal_start] = ACTIONS(693), + [sym__string_array_percent_literal_start] = ACTIONS(695), + [sym__symbol_array_percent_literal_start] = ACTIONS(697), + [sym__regex_percent_literal_start] = ACTIONS(699), + [sym_heredoc_start] = ACTIONS(601), [sym__heredoc_body_start] = ACTIONS(7), }, - [1600] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4760), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1600), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1685] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7066), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1685), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(268), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(5716), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4602), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -282512,10 +293872,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -282523,19 +293883,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(4596), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -282543,1797 +293903,2059 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1686] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6979), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1686), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1687] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7006), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1687), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1601] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6473), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1601), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1688] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7033), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1688), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1602] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6615), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1602), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1689] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7034), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1689), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1603] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6616), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1603), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1690] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6964), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1690), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1604] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6617), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1604), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1691] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6968), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1691), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1605] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6618), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1605), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1692] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6984), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1692), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1606] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6628), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1606), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1693] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6985), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1693), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1607] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6633), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1607), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1694] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6993), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1694), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1608] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3153), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1608), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [1695] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6995), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1695), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1609] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6638), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1609), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1696] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6996), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1696), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1610] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6640), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1610), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [1697] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6999), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1697), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1611] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6213), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1611), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), + [1698] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5967), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1698), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1612] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3095), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1612), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(15), + [1699] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5968), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1699), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), [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(1445), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), - [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(1453), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1613] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6367), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1613), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), + [1700] = { + [sym__parenthesized_statement] = STATE(5565), + [sym_expressions] = STATE(5565), + [sym__expression] = STATE(5697), + [sym_empty_parens] = STATE(5565), + [sym_integer] = STATE(5565), + [sym_float] = STATE(5565), + [sym_char] = STATE(5565), + [sym_string] = STATE(4932), + [sym_chained_string] = STATE(5565), + [sym_string_percent_literal] = STATE(5565), + [sym_string_array_percent_literal] = STATE(5565), + [sym_symbol_array_percent_literal] = STATE(5565), + [sym_heredoc_body] = STATE(1700), + [sym_quoted_symbol] = STATE(5565), + [sym_command] = STATE(5565), + [sym_command_percent_literal] = STATE(5565), + [sym_regex] = STATE(5565), + [sym_regex_percent_literal] = STATE(5565), + [sym_array] = STATE(5565), + [sym_hash] = STATE(5565), + [sym_tuple] = STATE(5565), + [sym_named_tuple] = STATE(5565), + [sym_range] = STATE(5565), + [sym_beginless_range] = STATE(5565), + [sym_proc] = STATE(5565), + [sym_method_proc] = STATE(5565), + [sym_yield] = STATE(5565), + [sym_typeof] = STATE(5565), + [sym_sizeof] = STATE(5565), + [sym_instance_sizeof] = STATE(5565), + [sym_offsetof] = STATE(5565), + [sym_constant] = STATE(5293), + [sym_pseudo_constant] = STATE(5565), + [sym_generic_instance_type] = STATE(5565), [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), + [sym_call_with_visibility] = STATE(5565), + [sym_call] = STATE(5565), + [sym__global_method] = STATE(269), + [sym_assign_call] = STATE(7918), + [sym_index_operator] = STATE(2321), + [sym_index_call] = STATE(2321), + [sym_not] = STATE(5565), + [sym_and] = STATE(5565), + [sym_or] = STATE(5565), + [sym_additive_operator] = STATE(5565), + [sym_unary_additive_operator] = STATE(5565), + [sym_multiplicative_operator] = STATE(5565), + [sym_exponential_operator] = STATE(5565), + [sym_shift_operator] = STATE(5565), + [sym_complement_operator] = STATE(5565), + [sym_binary_and_operator] = STATE(5565), + [sym_binary_or_operator] = STATE(5565), + [sym_equality_operator] = STATE(5565), + [sym_comparison_operator] = STATE(5565), + [sym_assign] = STATE(5565), + [sym_operator_assign] = STATE(5565), + [sym_type_declaration] = STATE(5565), + [sym_begin_block] = STATE(5565), + [sym_while] = STATE(5565), + [sym_until] = STATE(5565), + [sym_if] = STATE(5565), + [sym_unless] = STATE(5565), + [sym_conditional] = STATE(5565), + [sym_case] = STATE(5565), + [sym_select] = STATE(5565), + [sym_exhaustive_case] = STATE(5565), + [sym_asm] = STATE(5565), + [sym_identifier] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), + [sym_nil] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [aux_sym_integer_token2] = ACTIONS(877), + [aux_sym_float_token2] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(881), + [sym_operator_symbol] = ACTIONS(883), + [sym_unquoted_symbol] = ACTIONS(883), + [anon_sym_COLON_DQUOTE] = ACTIONS(885), + [anon_sym_BQUOTE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_with] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_typeof] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [anon_sym_instance_sizeof] = ACTIONS(907), + [anon_sym_offsetof] = ACTIONS(909), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym___LINE__] = ACTIONS(915), + [anon_sym___END_LINE__] = ACTIONS(915), + [anon_sym___FILE__] = ACTIONS(915), + [anon_sym___DIR__] = ACTIONS(915), + [sym_special_variable] = ACTIONS(917), + [sym_global_match_data_index] = ACTIONS(883), + [sym_identifier_method_call] = ACTIONS(3265), + [sym_instance_var] = ACTIONS(921), + [sym_class_var] = ACTIONS(921), + [sym_self] = ACTIONS(875), + [sym_private] = ACTIONS(927), + [sym_protected] = ACTIONS(927), + [anon_sym_begin] = ACTIONS(933), + [anon_sym_while] = ACTIONS(935), + [anon_sym_until] = ACTIONS(937), + [anon_sym_case] = ACTIONS(939), + [anon_sym_select] = ACTIONS(941), + [aux_sym_asm_token1] = ACTIONS(943), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), + [sym__start_of_hash_or_tuple] = ACTIONS(947), + [sym__start_of_named_tuple] = ACTIONS(949), + [sym_unary_plus] = ACTIONS(951), + [sym_unary_minus] = ACTIONS(951), + [sym_unary_wrapping_plus] = ACTIONS(953), + [sym_unary_wrapping_minus] = ACTIONS(953), + [sym__beginless_range_operator] = ACTIONS(961), + [sym__regex_start] = ACTIONS(963), + [sym__regular_if_keyword] = ACTIONS(965), + [sym__regular_unless_keyword] = ACTIONS(967), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(973), + [sym__string_array_percent_literal_start] = ACTIONS(975), + [sym__symbol_array_percent_literal_start] = ACTIONS(977), + [sym__regex_percent_literal_start] = ACTIONS(979), + [sym_heredoc_start] = ACTIONS(883), [sym__heredoc_body_start] = ACTIONS(7), }, - [1614] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4430), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1614), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1701] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7062), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1701), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(3887), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4604), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -284364,7 +295986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), + [sym_identifier_method_call] = ACTIONS(3289), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -284396,206 +296018,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1615] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4431), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1615), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), + [1702] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3157), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1702), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1616] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3060), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1616), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), + [1703] = { + [sym__parenthesized_statement] = STATE(3817), + [sym_expressions] = STATE(3817), + [sym__expression] = STATE(3838), + [sym_empty_parens] = STATE(3817), + [sym_integer] = STATE(3817), + [sym_float] = STATE(3817), + [sym_char] = STATE(3817), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(3817), + [sym_string_percent_literal] = STATE(3817), + [sym_string_array_percent_literal] = STATE(3817), + [sym_symbol_array_percent_literal] = STATE(3817), + [sym_heredoc_body] = STATE(1703), + [sym_quoted_symbol] = STATE(3817), + [sym_command] = STATE(3817), + [sym_command_percent_literal] = STATE(3817), + [sym_regex] = STATE(3817), + [sym_regex_percent_literal] = STATE(3817), + [sym_array] = STATE(3817), + [sym_hash] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_named_tuple] = STATE(3817), + [sym_range] = STATE(3817), + [sym_beginless_range] = STATE(3817), + [sym_proc] = STATE(3817), + [sym_method_proc] = STATE(3817), + [sym_yield] = STATE(3817), + [sym_typeof] = STATE(3817), + [sym_sizeof] = STATE(3817), + [sym_instance_sizeof] = STATE(3817), + [sym_offsetof] = STATE(3817), + [sym_constant] = STATE(3480), + [sym_pseudo_constant] = STATE(3817), + [sym_generic_instance_type] = STATE(3817), + [sym__dot_call] = STATE(290), + [sym_call_with_visibility] = STATE(3817), + [sym_call] = STATE(3817), + [sym__global_method] = STATE(291), + [sym_assign_call] = STATE(7874), + [sym_index_operator] = STATE(2336), + [sym_index_call] = STATE(2336), + [sym_not] = STATE(3817), + [sym_and] = STATE(3817), + [sym_or] = STATE(3817), + [sym_additive_operator] = STATE(3817), + [sym_unary_additive_operator] = STATE(3817), + [sym_multiplicative_operator] = STATE(3817), + [sym_exponential_operator] = STATE(3817), + [sym_shift_operator] = STATE(3817), + [sym_complement_operator] = STATE(3817), + [sym_binary_and_operator] = STATE(3817), + [sym_binary_or_operator] = STATE(3817), + [sym_equality_operator] = STATE(3817), + [sym_comparison_operator] = STATE(3817), + [sym_assign] = STATE(3817), + [sym_operator_assign] = STATE(3817), + [sym_type_declaration] = STATE(3817), + [sym_begin_block] = STATE(3817), + [sym_while] = STATE(3817), + [sym_until] = STATE(3817), + [sym_if] = STATE(3817), + [sym_unless] = STATE(3817), + [sym_conditional] = STATE(3817), + [sym_case] = STATE(3817), + [sym_select] = STATE(3817), + [sym_exhaustive_case] = STATE(3817), + [sym_asm] = STATE(3817), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3013), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(463), + [sym_true] = ACTIONS(463), + [sym_false] = ACTIONS(463), + [aux_sym_integer_token2] = ACTIONS(465), + [aux_sym_float_token2] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_operator_symbol] = ACTIONS(471), + [sym_unquoted_symbol] = ACTIONS(471), + [anon_sym_COLON_DQUOTE] = ACTIONS(473), + [anon_sym_BQUOTE] = ACTIONS(475), + [anon_sym_LBRACK] = ACTIONS(477), + [anon_sym_DASH_GT] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(3607), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_with] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(491), + [anon_sym_sizeof] = ACTIONS(493), + [anon_sym_instance_sizeof] = ACTIONS(495), + [anon_sym_offsetof] = ACTIONS(497), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(501), + [anon_sym___LINE__] = ACTIONS(503), + [anon_sym___END_LINE__] = ACTIONS(503), + [anon_sym___FILE__] = ACTIONS(503), + [anon_sym___DIR__] = ACTIONS(503), + [sym_special_variable] = ACTIONS(1145), + [sym_global_match_data_index] = ACTIONS(471), + [sym_identifier_method_call] = ACTIONS(3289), + [sym_instance_var] = ACTIONS(1149), + [sym_class_var] = ACTIONS(1149), + [sym_self] = ACTIONS(463), + [sym_private] = ACTIONS(1153), + [sym_protected] = ACTIONS(1153), + [anon_sym_begin] = ACTIONS(523), + [anon_sym_while] = ACTIONS(525), + [anon_sym_until] = ACTIONS(527), + [anon_sym_case] = ACTIONS(529), + [anon_sym_select] = ACTIONS(531), + [aux_sym_asm_token1] = ACTIONS(533), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(537), + [sym__start_of_named_tuple] = ACTIONS(539), + [sym_unary_plus] = ACTIONS(1157), + [sym_unary_minus] = ACTIONS(1157), + [sym_unary_wrapping_plus] = ACTIONS(1159), + [sym_unary_wrapping_minus] = ACTIONS(1159), + [sym__beginless_range_operator] = ACTIONS(1167), + [sym__regex_start] = ACTIONS(553), + [sym__regular_if_keyword] = ACTIONS(555), + [sym__regular_unless_keyword] = ACTIONS(557), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3269), + [sym__command_percent_literal_start] = ACTIONS(563), + [sym__string_array_percent_literal_start] = ACTIONS(565), + [sym__symbol_array_percent_literal_start] = ACTIONS(567), + [sym__regex_percent_literal_start] = ACTIONS(569), + [sym_heredoc_start] = ACTIONS(471), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1704] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3048), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1704), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -284608,10 +296361,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -284624,14 +296377,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -284639,13 +296392,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -284658,74 +296411,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1617] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5051), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1617), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1705] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7026), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1705), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1706] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7023), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1706), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1707] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6966), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1707), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -284789,205 +296804,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1618] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6835), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1618), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1619] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6825), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1619), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1708] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6390), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1708), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -285051,468 +296935,1516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1620] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5054), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1620), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), + [1709] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3060), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1709), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1621] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5055), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1621), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), + [1710] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7005), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1710), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3379), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3381), + [sym_instance_var] = ACTIONS(3383), + [sym_class_var] = ACTIONS(3383), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3385), + [sym_protected] = ACTIONS(3385), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3387), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3389), + [sym_unary_minus] = ACTIONS(3389), + [sym_unary_wrapping_plus] = ACTIONS(3391), + [sym_unary_wrapping_minus] = ACTIONS(3391), + [sym__beginless_range_operator] = ACTIONS(3393), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1711] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3062), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1711), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1622] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5056), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1622), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), + [1712] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3069), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1712), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1623] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5057), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1623), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1713] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3070), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1713), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1714] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3074), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1714), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1715] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3075), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1715), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1716] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3077), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1716), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1717] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3078), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1717), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1718] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3079), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1718), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1719] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3080), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1719), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1720] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6976), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1720), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -285524,13 +298456,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_symbol] = ACTIONS(1969), [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -285541,14 +298473,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -285558,16 +298490,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -285575,75 +298507,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1624] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3211), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1624), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), + [1721] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3081), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1721), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -285656,10 +298588,10 @@ 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(31), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -285672,14 +298604,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(89), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -285687,13 +298619,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -285706,74 +298638,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1625] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5059), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1625), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1722] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3082), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1722), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1723] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3091), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1723), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1724] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3093), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1724), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1725] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6330), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1725), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1726] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(3095), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1726), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), + [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(1517), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), + [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(1525), + [sym_global_match_data_index] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), + [sym_self] = ACTIONS(17), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), + [anon_sym_begin] = ACTIONS(101), + [anon_sym_while] = ACTIONS(103), + [anon_sym_until] = ACTIONS(105), + [anon_sym_case] = ACTIONS(109), + [anon_sym_select] = ACTIONS(111), + [aux_sym_asm_token1] = ACTIONS(113), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), + [sym__start_of_named_tuple] = ACTIONS(117), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), + [sym__regex_start] = ACTIONS(125), + [sym__regular_if_keyword] = ACTIONS(127), + [sym__regular_unless_keyword] = ACTIONS(129), + [sym__string_literal_start] = ACTIONS(131), + [sym__string_percent_literal_start] = ACTIONS(133), + [sym__command_percent_literal_start] = ACTIONS(135), + [sym__string_array_percent_literal_start] = ACTIONS(137), + [sym__symbol_array_percent_literal_start] = ACTIONS(139), + [sym__regex_percent_literal_start] = ACTIONS(141), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1727] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4371), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1727), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -285837,74 +299424,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1626] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5060), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1626), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1728] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4540), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1728), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -285968,74 +299555,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1627] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5061), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1627), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1729] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2669), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1729), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1730] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2670), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1730), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1731] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5156), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1731), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -286099,74 +299948,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1628] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5062), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1628), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1732] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5158), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1732), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -286230,74 +300079,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1629] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5063), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1629), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1733] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5159), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1733), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -286361,74 +300210,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1630] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5064), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1630), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1734] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5160), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1734), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -286492,205 +300341,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1631] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6901), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1631), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1632] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5066), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1632), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1735] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5161), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1735), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -286754,205 +300472,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1633] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6557), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1633), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1634] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5067), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1634), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1736] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5162), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1736), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -287016,1909 +300603,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1635] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5984), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1635), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1636] = { - [sym__parenthesized_statement] = STATE(6543), - [sym_expressions] = STATE(6543), - [sym__expression] = STATE(6254), - [sym_empty_parens] = STATE(6543), - [sym_integer] = STATE(6543), - [sym_float] = STATE(6543), - [sym_char] = STATE(6543), - [sym_string] = STATE(5394), - [sym_chained_string] = STATE(6543), - [sym_string_percent_literal] = STATE(6543), - [sym_string_array_percent_literal] = STATE(6543), - [sym_symbol_array_percent_literal] = STATE(6543), - [sym_heredoc_body] = STATE(1636), - [sym_quoted_symbol] = STATE(6543), - [sym_command] = STATE(6543), - [sym_command_percent_literal] = STATE(6543), - [sym_regex] = STATE(6543), - [sym_regex_percent_literal] = STATE(6543), - [sym_array] = STATE(6543), - [sym_hash] = STATE(6543), - [sym_tuple] = STATE(6543), - [sym_named_tuple] = STATE(6543), - [sym_range] = STATE(6543), - [sym_beginless_range] = STATE(6543), - [sym_proc] = STATE(6543), - [sym_method_proc] = STATE(6543), - [sym_yield] = STATE(6543), - [sym_typeof] = STATE(6543), - [sym_sizeof] = STATE(6543), - [sym_instance_sizeof] = STATE(6543), - [sym_offsetof] = STATE(6543), - [sym_constant] = STATE(6023), - [sym_pseudo_constant] = STATE(6543), - [sym_generic_instance_type] = STATE(6543), - [sym__dot_call] = STATE(268), - [sym_call_with_visibility] = STATE(6543), - [sym_call] = STATE(6543), - [sym__global_method] = STATE(270), - [sym_assign_call] = STATE(7837), - [sym_index_operator] = STATE(2339), - [sym_index_call] = STATE(2339), - [sym_not] = STATE(6543), - [sym_and] = STATE(6543), - [sym_or] = STATE(6543), - [sym_additive_operator] = STATE(6543), - [sym_unary_additive_operator] = STATE(6543), - [sym_multiplicative_operator] = STATE(6543), - [sym_exponential_operator] = STATE(6543), - [sym_shift_operator] = STATE(6543), - [sym_complement_operator] = STATE(6543), - [sym_binary_and_operator] = STATE(6543), - [sym_binary_or_operator] = STATE(6543), - [sym_equality_operator] = STATE(6543), - [sym_comparison_operator] = STATE(6543), - [sym_assign] = STATE(6543), - [sym_operator_assign] = STATE(6543), - [sym_type_declaration] = STATE(6543), - [sym_begin_block] = STATE(6543), - [sym_while] = STATE(6543), - [sym_until] = STATE(6543), - [sym_if] = STATE(6543), - [sym_unless] = STATE(6543), - [sym_conditional] = STATE(6543), - [sym_case] = STATE(6543), - [sym_select] = STATE(6543), - [sym_exhaustive_case] = STATE(6543), - [sym_asm] = STATE(6543), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [aux_sym_integer_token2] = ACTIONS(2917), - [aux_sym_float_token2] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [sym_operator_symbol] = ACTIONS(2923), - [sym_unquoted_symbol] = ACTIONS(2923), - [anon_sym_COLON_DQUOTE] = ACTIONS(2925), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(3609), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_typeof] = ACTIONS(2941), - [anon_sym_sizeof] = ACTIONS(2943), - [anon_sym_instance_sizeof] = ACTIONS(2945), - [anon_sym_offsetof] = ACTIONS(2947), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym___LINE__] = ACTIONS(2953), - [anon_sym___END_LINE__] = ACTIONS(2953), - [anon_sym___FILE__] = ACTIONS(2953), - [anon_sym___DIR__] = ACTIONS(2953), - [sym_special_variable] = ACTIONS(2955), - [sym_global_match_data_index] = ACTIONS(2923), - [sym_identifier_method_call] = ACTIONS(3313), - [sym_instance_var] = ACTIONS(2959), - [sym_class_var] = ACTIONS(2959), - [sym_self] = ACTIONS(2915), - [sym_private] = ACTIONS(2963), - [sym_protected] = ACTIONS(2963), - [anon_sym_begin] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_until] = ACTIONS(2969), - [anon_sym_case] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_asm_token1] = ACTIONS(2975), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2977), - [sym__start_of_named_tuple] = ACTIONS(2979), - [sym_unary_plus] = ACTIONS(2981), - [sym_unary_minus] = ACTIONS(2981), - [sym_unary_wrapping_plus] = ACTIONS(2983), - [sym_unary_wrapping_minus] = ACTIONS(2983), - [sym__beginless_range_operator] = ACTIONS(2989), - [sym__regex_start] = ACTIONS(2991), - [sym__regular_if_keyword] = ACTIONS(2993), - [sym__regular_unless_keyword] = ACTIONS(2995), - [sym__string_literal_start] = ACTIONS(2997), - [sym__string_percent_literal_start] = ACTIONS(2999), - [sym__command_percent_literal_start] = ACTIONS(3001), - [sym__string_array_percent_literal_start] = ACTIONS(3003), - [sym__symbol_array_percent_literal_start] = ACTIONS(3005), - [sym__regex_percent_literal_start] = ACTIONS(3007), - [sym_heredoc_start] = ACTIONS(2923), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1637] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5986), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1637), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1638] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5987), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1638), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1639] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5988), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1639), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1640] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5989), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1640), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1641] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5990), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1641), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1642] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6654), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1642), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1643] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5993), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1643), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1644] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5994), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1644), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1645] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5995), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1645), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1646] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5996), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1646), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1647] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5997), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1647), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1648] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5998), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1648), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1649] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4430), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1649), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1737] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5165), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1737), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -288933,10 +300686,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -288947,14 +300700,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -288964,16 +300717,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -288981,75 +300734,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1650] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4431), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1650), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1738] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5166), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1738), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -289064,10 +300817,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -289078,14 +300831,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -289095,2974 +300848,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), [sym__regex_percent_literal_start] = ACTIONS(2053), [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), - }, - [1651] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6811), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1651), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1652] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6699), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1652), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1653] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6004), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1653), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1654] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6703), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1654), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1655] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6005), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1655), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1656] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6762), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1656), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1657] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6683), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1657), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1658] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6696), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1658), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1659] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6698), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1659), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1660] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6700), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1660), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1661] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6710), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1661), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1662] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6711), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1662), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1663] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6765), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1663), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1664] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6716), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1664), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1665] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6717), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1665), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1666] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6718), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1666), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1667] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6724), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1667), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1668] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6727), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1668), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1669] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6728), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1669), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1670] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6766), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1670), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1671] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6771), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1671), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1672] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6772), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1672), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1673] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6984), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1673), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + }, + [1739] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5167), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1739), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -292077,10 +300948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -292091,14 +300962,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -292108,16 +300979,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -292125,467 +300996,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1674] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6747), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1674), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1675] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6874), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1675), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1676] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6748), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1676), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1677] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7004), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1677), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1740] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5168), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1740), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -292649,75 +301127,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1678] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7007), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1678), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1741] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5169), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1741), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -292732,10 +301210,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -292746,14 +301224,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -292763,16 +301241,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -292780,75 +301258,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1679] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6973), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1679), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1742] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5170), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1742), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -292863,10 +301341,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -292877,14 +301355,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -292894,16 +301372,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -292911,206 +301389,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1680] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4195), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1680), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), + [1743] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5172), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1743), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3227), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1681] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6971), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1681), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1744] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5175), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1744), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -293125,10 +301603,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -293139,14 +301617,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -293156,16 +301634,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -293173,75 +301651,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1682] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6978), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1682), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1745] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(5176), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1745), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -293256,10 +301734,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -293270,14 +301748,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -293287,16 +301765,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -293304,75 +301782,4005 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1683] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4197), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1683), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1746] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6043), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1746), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1747] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6045), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1747), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1748] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6046), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1748), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1749] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6047), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1749), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1750] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6048), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1750), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1751] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6049), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1751), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1752] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6283), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1752), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1753] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6052), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1753), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1754] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6053), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1754), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1755] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6054), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1755), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1756] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6055), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1756), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1757] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6056), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1757), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1758] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6058), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1758), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1759] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6060), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1759), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1760] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6061), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1760), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1761] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6805), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1761), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1762] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6807), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1762), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1763] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6809), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1763), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1764] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6810), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1764), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1765] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6811), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1765), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1766] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6812), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1766), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1767] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6815), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1767), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1768] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6816), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1768), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1769] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6817), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1769), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1770] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6818), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1770), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1771] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6819), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1771), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1772] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6820), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1772), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1773] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6824), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1773), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1774] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6825), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1774), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1775] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6826), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1775), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1776] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4175), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1776), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -293385,10 +305793,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -293401,14 +305809,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -293416,13 +305824,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -293435,75 +305843,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1684] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4198), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1684), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1777] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4177), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1777), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -293516,10 +305924,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -293532,14 +305940,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -293547,13 +305955,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -293566,75 +305974,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1685] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4199), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1685), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1778] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4178), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1778), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -293647,10 +306055,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -293663,14 +306071,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -293678,13 +306086,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -293697,75 +306105,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1686] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4200), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1686), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1779] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4179), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1779), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -293778,10 +306186,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -293794,14 +306202,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -293809,13 +306217,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -293828,75 +306236,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1687] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4201), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1687), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1780] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4180), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1780), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -293909,10 +306317,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -293925,14 +306333,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -293940,13 +306348,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -293959,206 +306367,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1688] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6985), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1688), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1689] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4203), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1689), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1781] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4181), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1781), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -294171,10 +306448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -294187,14 +306464,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -294202,13 +306479,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -294221,75 +306498,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1690] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4204), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1690), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1782] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4183), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1782), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -294302,10 +306579,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -294318,14 +306595,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -294333,13 +306610,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -294352,75 +306629,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1691] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4205), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1691), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1783] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4184), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1783), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -294433,10 +306710,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -294449,14 +306726,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -294464,13 +306741,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -294483,75 +306760,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1692] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4206), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1692), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1784] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4185), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1784), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -294564,10 +306841,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -294580,14 +306857,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -294595,13 +306872,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -294614,75 +306891,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1693] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4207), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1693), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1785] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4186), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1785), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -294695,10 +306972,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -294711,14 +306988,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -294726,13 +307003,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -294745,75 +307022,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1694] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4208), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1694), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1786] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4187), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1786), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -294826,10 +307103,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -294842,14 +307119,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -294857,13 +307134,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -294876,337 +307153,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1695] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6955), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1695), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1696] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6992), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1696), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1697] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4213), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1697), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1787] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4188), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1787), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -295219,10 +307234,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -295235,14 +307250,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -295250,13 +307265,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -295269,206 +307284,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1698] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6926), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1698), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1699] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4214), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1699), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1788] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4191), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1788), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -295481,10 +307365,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -295497,14 +307381,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -295512,13 +307396,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -295531,467 +307415,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1700] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6932), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1700), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), + [1789] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4192), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1789), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1701] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6945), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1701), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), + [1790] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4193), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1790), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1702] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6954), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1702), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), + [1791] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2594), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1791), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1703] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1703), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1792] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4589), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1792), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -296055,76 +307939,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1704] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2736), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1704), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1793] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2599), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1793), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -296138,7 +308022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -296146,7 +308030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(211), [anon_sym_instance_sizeof] = ACTIONS(213), [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), + [sym__constant_segment] = ACTIONS(2274), [anon_sym_COLON_COLON] = ACTIONS(219), [anon_sym___LINE__] = ACTIONS(221), [anon_sym___END_LINE__] = ACTIONS(221), @@ -296154,7 +308038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(221), [sym_special_variable] = ACTIONS(223), [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), + [sym_identifier_method_call] = ACTIONS(2276), [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), @@ -296186,76 +308070,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1705] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2737), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1705), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1794] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6188), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1794), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3281), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1795] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2608), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1795), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -296269,7 +308284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -296277,7 +308292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(211), [anon_sym_instance_sizeof] = ACTIONS(213), [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), + [sym__constant_segment] = ACTIONS(2274), [anon_sym_COLON_COLON] = ACTIONS(219), [anon_sym___LINE__] = ACTIONS(221), [anon_sym___END_LINE__] = ACTIONS(221), @@ -296285,7 +308300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(221), [sym_special_variable] = ACTIONS(223), [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), + [sym_identifier_method_call] = ACTIONS(2276), [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), @@ -296317,3351 +308332,1386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1706] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6970), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1706), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1707] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5900), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1707), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1708] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6993), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1708), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1709] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6872), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1709), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1710] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4104), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1710), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1711] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4109), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1711), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1712] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4186), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1712), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1283), - [sym_true] = ACTIONS(1283), - [sym_false] = ACTIONS(1283), - [aux_sym_integer_token2] = ACTIONS(1285), - [aux_sym_float_token2] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1289), - [sym_operator_symbol] = ACTIONS(1291), - [sym_unquoted_symbol] = ACTIONS(1291), - [anon_sym_COLON_DQUOTE] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), - [anon_sym_DASH_GT] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), - [anon_sym_with] = ACTIONS(1335), - [anon_sym_yield] = ACTIONS(1337), - [anon_sym_typeof] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1341), - [anon_sym_instance_sizeof] = ACTIONS(1343), - [anon_sym_offsetof] = ACTIONS(1345), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym___LINE__] = ACTIONS(1351), - [anon_sym___END_LINE__] = ACTIONS(1351), - [anon_sym___FILE__] = ACTIONS(1351), - [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), - [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), - [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), - [anon_sym_begin] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_until] = ACTIONS(1369), - [anon_sym_case] = ACTIONS(1375), - [anon_sym_select] = ACTIONS(1377), - [aux_sym_asm_token1] = ACTIONS(1379), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), - [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), - [sym__regex_start] = ACTIONS(1393), - [sym__regular_if_keyword] = ACTIONS(1395), - [sym__regular_unless_keyword] = ACTIONS(1397), - [sym__string_literal_start] = ACTIONS(1403), - [sym__string_percent_literal_start] = ACTIONS(1405), - [sym__command_percent_literal_start] = ACTIONS(1407), - [sym__string_array_percent_literal_start] = ACTIONS(1409), - [sym__symbol_array_percent_literal_start] = ACTIONS(1411), - [sym__regex_percent_literal_start] = ACTIONS(1413), - [sym_heredoc_start] = ACTIONS(1291), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1713] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6860), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1713), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1714] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6434), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1714), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1715] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6737), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1715), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1716] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7018), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1716), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4250), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4604), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1717] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4169), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1717), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1718] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4706), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1718), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), - [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1719] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6788), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1719), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1720] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6793), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1720), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1721] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6956), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1721), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1722] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4173), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1722), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1796] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2609), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1796), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1723] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6349), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1723), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), + [1797] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2610), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1797), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1724] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4175), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1724), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1798] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2611), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1798), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1725] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6918), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1725), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), + [1799] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6424), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1799), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), + [sym_identifier] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(3339), + [sym_global_match_data_index] = ACTIONS(2807), + [sym_identifier_method_call] = ACTIONS(3341), + [sym_instance_var] = ACTIONS(3343), + [sym_class_var] = ACTIONS(3343), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(3345), + [sym_protected] = ACTIONS(3345), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(3347), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(3349), + [sym_unary_minus] = ACTIONS(3349), + [sym_unary_wrapping_plus] = ACTIONS(3351), + [sym_unary_wrapping_minus] = ACTIONS(3351), + [sym__beginless_range_operator] = ACTIONS(3353), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1726] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4176), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1726), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1800] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2613), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1800), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1727] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4177), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1727), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1801] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2614), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1801), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1728] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4178), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1728), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1802] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6840), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1802), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1803] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2616), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1803), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1729] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4194), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1729), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1804] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2617), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1804), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1730] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4209), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1730), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), + [1805] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2618), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1805), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1731] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2612), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1731), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1806] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2619), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1806), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(179), [sym_true] = ACTIONS(179), @@ -299675,7 +309725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(193), [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_BANG] = ACTIONS(3621), [anon_sym_TILDE] = ACTIONS(203), [anon_sym_with] = ACTIONS(205), [anon_sym_yield] = ACTIONS(207), @@ -299683,7 +309733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(211), [anon_sym_instance_sizeof] = ACTIONS(213), [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), + [sym__constant_segment] = ACTIONS(2274), [anon_sym_COLON_COLON] = ACTIONS(219), [anon_sym___LINE__] = ACTIONS(221), [anon_sym___END_LINE__] = ACTIONS(221), @@ -299691,7 +309741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(221), [sym_special_variable] = ACTIONS(223), [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), + [sym_identifier_method_call] = ACTIONS(2276), [sym_instance_var] = ACTIONS(227), [sym_class_var] = ACTIONS(227), [sym_self] = ACTIONS(179), @@ -299723,75 +309773,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1732] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6982), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1732), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), + [1807] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4168), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1807), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), + [anon_sym_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1283), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [aux_sym_integer_token2] = ACTIONS(1285), + [aux_sym_float_token2] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1289), + [sym_operator_symbol] = ACTIONS(1291), + [sym_unquoted_symbol] = ACTIONS(1291), + [anon_sym_COLON_DQUOTE] = ACTIONS(1293), + [anon_sym_BQUOTE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_DASH_GT] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_with] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [anon_sym_instance_sizeof] = ACTIONS(1343), + [anon_sym_offsetof] = ACTIONS(1345), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym___LINE__] = ACTIONS(1351), + [anon_sym___END_LINE__] = ACTIONS(1351), + [anon_sym___FILE__] = ACTIONS(1351), + [anon_sym___DIR__] = ACTIONS(1351), + [sym_special_variable] = ACTIONS(1891), + [sym_global_match_data_index] = ACTIONS(1291), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), + [sym_self] = ACTIONS(1283), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), + [anon_sym_begin] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_until] = ACTIONS(1369), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_select] = ACTIONS(1377), + [aux_sym_asm_token1] = ACTIONS(1379), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), + [sym__start_of_named_tuple] = ACTIONS(1385), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), + [sym__regex_start] = ACTIONS(1393), + [sym__regular_if_keyword] = ACTIONS(1395), + [sym__regular_unless_keyword] = ACTIONS(1397), + [sym__string_literal_start] = ACTIONS(1403), + [sym__string_percent_literal_start] = ACTIONS(1405), + [sym__command_percent_literal_start] = ACTIONS(1407), + [sym__string_array_percent_literal_start] = ACTIONS(1409), + [sym__symbol_array_percent_literal_start] = ACTIONS(1411), + [sym__regex_percent_literal_start] = ACTIONS(1413), + [sym_heredoc_start] = ACTIONS(1291), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1808] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7068), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1808), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4189), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(4606), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -299815,14 +309996,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym_COLON_COLON] = ACTIONS(3497), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), + [sym_identifier_method_call] = ACTIONS(3157), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -299854,337 +310035,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1733] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6500), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1733), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1734] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4212), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1734), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [1809] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4812), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1809), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1735] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1735), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1810] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6887), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1810), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -300197,12 +310247,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -300213,14 +310263,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -300228,486 +310278,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1736] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4221), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1736), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1737] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4246), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1737), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1738] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(4247), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1738), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1739] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6923), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1739), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1811] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6888), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1811), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3189), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3135), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1812] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7043), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1812), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -300771,74 +310559,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1740] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6550), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1740), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1813] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6536), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1813), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -300902,75 +310690,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1741] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6925), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1741), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1814] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7050), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1814), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -300985,10 +310773,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -300999,14 +310787,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -301016,16 +310804,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -301033,205 +310821,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1742] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3188), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1742), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1743] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6938), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1743), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1815] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7004), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1815), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -301295,74 +310952,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1744] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6610), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1744), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1816] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6557), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1816), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -301426,75 +311083,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1745] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6958), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1745), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1817] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7025), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1817), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -301509,10 +311166,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -301523,14 +311180,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -301540,16 +311197,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -301557,206 +311214,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1746] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1746), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1747] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6635), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1747), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1818] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7011), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1818), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -301769,10 +311295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_with] = ACTIONS(1983), [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), @@ -301785,14 +311311,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -301800,13 +311326,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), @@ -301819,75 +311345,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1748] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6960), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1748), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1819] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6573), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1819), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -301900,12 +311426,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -301916,14 +311442,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -301931,18 +311457,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -301950,206 +311476,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1749] = { - [sym__parenthesized_statement] = STATE(4070), - [sym_expressions] = STATE(4070), - [sym__expression] = STATE(3825), - [sym_empty_parens] = STATE(4070), - [sym_integer] = STATE(4070), - [sym_float] = STATE(4070), - [sym_char] = STATE(4070), - [sym_string] = STATE(3216), - [sym_chained_string] = STATE(4070), - [sym_string_percent_literal] = STATE(4070), - [sym_string_array_percent_literal] = STATE(4070), - [sym_symbol_array_percent_literal] = STATE(4070), - [sym_heredoc_body] = STATE(1749), - [sym_quoted_symbol] = STATE(4070), - [sym_command] = STATE(4070), - [sym_command_percent_literal] = STATE(4070), - [sym_regex] = STATE(4070), - [sym_regex_percent_literal] = STATE(4070), - [sym_array] = STATE(4070), - [sym_hash] = STATE(4070), - [sym_tuple] = STATE(4070), - [sym_named_tuple] = STATE(4070), - [sym_range] = STATE(4070), - [sym_beginless_range] = STATE(4070), - [sym_proc] = STATE(4070), - [sym_method_proc] = STATE(4070), - [sym_yield] = STATE(4070), - [sym_typeof] = STATE(4070), - [sym_sizeof] = STATE(4070), - [sym_instance_sizeof] = STATE(4070), - [sym_offsetof] = STATE(4070), - [sym_constant] = STATE(3528), - [sym_pseudo_constant] = STATE(4070), - [sym_generic_instance_type] = STATE(4070), - [sym__dot_call] = STATE(138), - [sym_call_with_visibility] = STATE(4070), - [sym_call] = STATE(4070), - [sym__global_method] = STATE(113), - [sym_assign_call] = STATE(7843), - [sym_index_operator] = STATE(2247), - [sym_index_call] = STATE(2247), - [sym_not] = STATE(4070), - [sym_and] = STATE(4070), - [sym_or] = STATE(4070), - [sym_additive_operator] = STATE(4070), - [sym_unary_additive_operator] = STATE(4070), - [sym_multiplicative_operator] = STATE(4070), - [sym_exponential_operator] = STATE(4070), - [sym_shift_operator] = STATE(4070), - [sym_complement_operator] = STATE(4070), - [sym_binary_and_operator] = STATE(4070), - [sym_binary_or_operator] = STATE(4070), - [sym_equality_operator] = STATE(4070), - [sym_comparison_operator] = STATE(4070), - [sym_assign] = STATE(4070), - [sym_operator_assign] = STATE(4070), - [sym_type_declaration] = STATE(4070), - [sym_begin_block] = STATE(4070), - [sym_while] = STATE(4070), - [sym_until] = STATE(4070), - [sym_if] = STATE(4070), - [sym_unless] = STATE(4070), - [sym_conditional] = STATE(4070), - [sym_case] = STATE(4070), - [sym_select] = STATE(4070), - [sym_exhaustive_case] = STATE(4070), - [sym_asm] = STATE(4070), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [aux_sym_integer_token2] = ACTIONS(595), - [aux_sym_float_token2] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(599), - [sym_operator_symbol] = ACTIONS(601), - [sym_unquoted_symbol] = ACTIONS(601), - [anon_sym_COLON_DQUOTE] = ACTIONS(603), - [anon_sym_BQUOTE] = ACTIONS(605), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_DASH_GT] = ACTIONS(609), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_with] = ACTIONS(617), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_sizeof] = ACTIONS(623), - [anon_sym_instance_sizeof] = ACTIONS(625), - [anon_sym_offsetof] = ACTIONS(627), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(631), - [anon_sym___LINE__] = ACTIONS(633), - [anon_sym___END_LINE__] = ACTIONS(633), - [anon_sym___FILE__] = ACTIONS(633), - [anon_sym___DIR__] = ACTIONS(633), - [sym_special_variable] = ACTIONS(635), - [sym_global_match_data_index] = ACTIONS(601), - [sym_identifier_method_call] = ACTIONS(3123), - [sym_instance_var] = ACTIONS(639), - [sym_class_var] = ACTIONS(639), - [sym_self] = ACTIONS(593), - [sym_private] = ACTIONS(645), - [sym_protected] = ACTIONS(645), - [anon_sym_begin] = ACTIONS(653), - [anon_sym_while] = ACTIONS(655), - [anon_sym_until] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_select] = ACTIONS(661), - [aux_sym_asm_token1] = ACTIONS(663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(667), - [sym__start_of_named_tuple] = ACTIONS(669), - [sym_unary_plus] = ACTIONS(671), - [sym_unary_minus] = ACTIONS(671), - [sym_unary_wrapping_plus] = ACTIONS(673), - [sym_unary_wrapping_minus] = ACTIONS(673), - [sym__beginless_range_operator] = ACTIONS(681), - [sym__regex_start] = ACTIONS(683), - [sym__regular_if_keyword] = ACTIONS(685), - [sym__regular_unless_keyword] = ACTIONS(687), - [sym__string_literal_start] = ACTIONS(689), - [sym__string_percent_literal_start] = ACTIONS(691), - [sym__command_percent_literal_start] = ACTIONS(693), - [sym__string_array_percent_literal_start] = ACTIONS(695), - [sym__symbol_array_percent_literal_start] = ACTIONS(697), - [sym__regex_percent_literal_start] = ACTIONS(699), - [sym_heredoc_start] = ACTIONS(601), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1750] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6549), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1750), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1820] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7017), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1820), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -302162,12 +311557,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -302178,14 +311573,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -302193,18 +311588,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -302212,75 +311607,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1751] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6998), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1751), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1821] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7009), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1821), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -302295,10 +311690,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -302309,14 +311704,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3229), + [sym_instance_var] = ACTIONS(3231), + [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3233), + [sym_protected] = ACTIONS(3233), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -302326,16 +311721,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3237), + [sym_unary_minus] = ACTIONS(3237), + [sym_unary_wrapping_plus] = ACTIONS(3239), + [sym_unary_wrapping_minus] = ACTIONS(3239), + [sym__beginless_range_operator] = ACTIONS(3241), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -302343,336 +311738,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1752] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5524), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1752), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1753] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5535), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1753), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1754] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6464), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1754), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1822] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6583), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1822), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -302736,75 +311869,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1755] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6961), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1755), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1823] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6978), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1823), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -302819,10 +311952,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -302833,14 +311966,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -302850,16 +311983,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -302867,75 +312000,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1756] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6845), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1756), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1824] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6595), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1824), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -302950,10 +312083,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -302964,14 +312097,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(2001), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -302981,16 +312114,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -302998,75 +312131,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1757] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6846), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1757), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1825] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7013), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1825), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -303079,12 +312212,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1969), [anon_sym_COLON_DQUOTE] = ACTIONS(1971), [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -303095,14 +312228,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -303110,18 +312243,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(2019), [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -303129,206 +312262,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1758] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3179), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1758), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(15), + [1826] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6608), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1826), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1759] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7023), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1759), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4329), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(4606), + [1827] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7019), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1827), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -303343,10 +312476,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -303357,14 +312490,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -303374,16 +312507,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -303391,74 +312524,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1760] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6232), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1760), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1828] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6620), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1828), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -303522,75 +312655,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1761] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6996), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1761), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1829] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7031), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1829), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -303605,10 +312738,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -303619,14 +312752,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -303636,16 +312769,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -303653,205 +312786,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1762] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6936), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1762), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1763] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6390), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1763), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1830] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6630), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1830), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -303915,206 +312917,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1764] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3224), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1764), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1765] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6959), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1765), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1831] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7030), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1831), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -304129,646 +313000,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1766] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5626), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1766), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1767] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6952), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1767), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1768] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6999), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1768), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1769] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5636), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1769), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1770] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6559), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1770), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1832] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6639), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1832), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -304832,206 +313179,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1771] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5638), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1771), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1772] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6976), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1772), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1833] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7032), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1833), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -305046,10 +313262,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -305060,14 +313276,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -305077,16 +313293,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -305094,598 +313310,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1773] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5639), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1773), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1774] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5640), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1774), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1775] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5641), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1775), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1776] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6972), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1776), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1777] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6234), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1777), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1834] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6648), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1834), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -305749,206 +313441,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1778] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5643), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1778), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1779] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6987), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1779), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1835] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7051), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1835), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -305963,10 +313524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -305977,14 +313538,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -305994,16 +313555,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -306011,729 +313572,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1780] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5644), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1780), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1781] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5659), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1781), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1782] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5666), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1782), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1783] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5681), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1783), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), + [1836] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6655), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1836), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(1981), + [anon_sym_with] = ACTIONS(1983), + [anon_sym_yield] = ACTIONS(1985), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(2001), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3193), + [sym_instance_var] = ACTIONS(2005), + [sym_class_var] = ACTIONS(2005), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(2009), + [sym_protected] = ACTIONS(2009), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(2027), + [sym_unary_minus] = ACTIONS(2027), + [sym_unary_wrapping_plus] = ACTIONS(2029), + [sym_unary_wrapping_minus] = ACTIONS(2029), + [sym__beginless_range_operator] = ACTIONS(2035), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(2043), + [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1784] = { - [sym__parenthesized_statement] = STATE(2587), - [sym_expressions] = STATE(2587), - [sym__expression] = STATE(2627), - [sym_empty_parens] = STATE(2587), - [sym_integer] = STATE(2587), - [sym_float] = STATE(2587), - [sym_char] = STATE(2587), - [sym_string] = STATE(2372), - [sym_chained_string] = STATE(2587), - [sym_string_percent_literal] = STATE(2587), - [sym_string_array_percent_literal] = STATE(2587), - [sym_symbol_array_percent_literal] = STATE(2587), - [sym_heredoc_body] = STATE(1784), - [sym_quoted_symbol] = STATE(2587), - [sym_command] = STATE(2587), - [sym_command_percent_literal] = STATE(2587), - [sym_regex] = STATE(2587), - [sym_regex_percent_literal] = STATE(2587), - [sym_array] = STATE(2587), - [sym_hash] = STATE(2587), - [sym_tuple] = STATE(2587), - [sym_named_tuple] = STATE(2587), - [sym_range] = STATE(2587), - [sym_beginless_range] = STATE(2587), - [sym_proc] = STATE(2587), - [sym_method_proc] = STATE(2587), - [sym_yield] = STATE(2587), - [sym_typeof] = STATE(2587), - [sym_sizeof] = STATE(2587), - [sym_instance_sizeof] = STATE(2587), - [sym_offsetof] = STATE(2587), - [sym_constant] = STATE(2486), - [sym_pseudo_constant] = STATE(2587), - [sym_generic_instance_type] = STATE(2587), - [sym__dot_call] = STATE(87), - [sym_call_with_visibility] = STATE(2587), - [sym_call] = STATE(2587), - [sym__global_method] = STATE(83), - [sym_assign_call] = STATE(7845), - [sym_index_operator] = STATE(2181), - [sym_index_call] = STATE(2181), - [sym_not] = STATE(2587), - [sym_and] = STATE(2587), - [sym_or] = STATE(2587), - [sym_additive_operator] = STATE(2587), - [sym_unary_additive_operator] = STATE(2587), - [sym_multiplicative_operator] = STATE(2587), - [sym_exponential_operator] = STATE(2587), - [sym_shift_operator] = STATE(2587), - [sym_complement_operator] = STATE(2587), - [sym_binary_and_operator] = STATE(2587), - [sym_binary_or_operator] = STATE(2587), - [sym_equality_operator] = STATE(2587), - [sym_comparison_operator] = STATE(2587), - [sym_assign] = STATE(2587), - [sym_operator_assign] = STATE(2587), - [sym_type_declaration] = STATE(2587), - [sym_begin_block] = STATE(2587), - [sym_while] = STATE(2587), - [sym_until] = STATE(2587), - [sym_if] = STATE(2587), - [sym_unless] = STATE(2587), - [sym_conditional] = STATE(2587), - [sym_case] = STATE(2587), - [sym_select] = STATE(2587), - [sym_exhaustive_case] = STATE(2587), - [sym_asm] = STATE(2587), - [sym_identifier] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), + [1837] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7042), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1837), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(179), - [sym_true] = ACTIONS(179), - [sym_false] = ACTIONS(179), - [aux_sym_integer_token2] = ACTIONS(181), - [aux_sym_float_token2] = ACTIONS(183), - [anon_sym_SQUOTE] = ACTIONS(185), - [sym_operator_symbol] = ACTIONS(187), - [sym_unquoted_symbol] = ACTIONS(187), - [anon_sym_COLON_DQUOTE] = ACTIONS(189), - [anon_sym_BQUOTE] = ACTIONS(191), - [anon_sym_LBRACK] = ACTIONS(193), - [anon_sym_DASH_GT] = ACTIONS(197), - [anon_sym_BANG] = ACTIONS(3613), - [anon_sym_TILDE] = ACTIONS(203), - [anon_sym_with] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(207), - [anon_sym_typeof] = ACTIONS(209), - [anon_sym_sizeof] = ACTIONS(211), - [anon_sym_instance_sizeof] = ACTIONS(213), - [anon_sym_offsetof] = ACTIONS(215), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(219), - [anon_sym___LINE__] = ACTIONS(221), - [anon_sym___END_LINE__] = ACTIONS(221), - [anon_sym___FILE__] = ACTIONS(221), - [anon_sym___DIR__] = ACTIONS(221), - [sym_special_variable] = ACTIONS(223), - [sym_global_match_data_index] = ACTIONS(187), - [sym_identifier_method_call] = ACTIONS(2312), - [sym_instance_var] = ACTIONS(227), - [sym_class_var] = ACTIONS(227), - [sym_self] = ACTIONS(179), - [sym_private] = ACTIONS(233), - [sym_protected] = ACTIONS(233), - [anon_sym_begin] = ACTIONS(241), - [anon_sym_while] = ACTIONS(243), - [anon_sym_until] = ACTIONS(245), - [anon_sym_case] = ACTIONS(247), - [anon_sym_select] = ACTIONS(249), - [aux_sym_asm_token1] = ACTIONS(251), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3405), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(255), - [sym__start_of_named_tuple] = ACTIONS(257), - [sym_unary_plus] = ACTIONS(259), - [sym_unary_minus] = ACTIONS(259), - [sym_unary_wrapping_plus] = ACTIONS(261), - [sym_unary_wrapping_minus] = ACTIONS(261), - [sym__beginless_range_operator] = ACTIONS(269), - [sym__regex_start] = ACTIONS(271), - [sym__regular_if_keyword] = ACTIONS(273), - [sym__regular_unless_keyword] = ACTIONS(275), - [sym__string_literal_start] = ACTIONS(277), - [sym__string_percent_literal_start] = ACTIONS(279), - [sym__command_percent_literal_start] = ACTIONS(281), - [sym__string_array_percent_literal_start] = ACTIONS(283), - [sym__symbol_array_percent_literal_start] = ACTIONS(285), - [sym__regex_percent_literal_start] = ACTIONS(287), - [sym_heredoc_start] = ACTIONS(187), + [sym__start_of_hash_or_tuple] = ACTIONS(3235), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1785] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6286), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1785), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1838] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6666), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1838), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -306797,206 +313965,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1786] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5682), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1786), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1787] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7008), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1787), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1839] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6975), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1839), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -307011,10 +314048,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -307025,14 +314062,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -307042,16 +314079,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -307059,467 +314096,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1788] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6975), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1788), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1789] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6988), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1789), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1790] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(3196), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1790), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(91), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(92), - [sym_assign_call] = STATE(7840), - [sym_index_operator] = STATE(2204), - [sym_index_call] = STATE(2204), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2783), - [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(55), - [anon_sym_TILDE] = ACTIONS(57), - [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(89), - [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(91), - [sym_instance_var] = ACTIONS(2785), - [sym_class_var] = ACTIONS(2785), - [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(2787), - [sym_protected] = ACTIONS(2787), - [anon_sym_begin] = ACTIONS(101), - [anon_sym_while] = ACTIONS(103), - [anon_sym_until] = ACTIONS(105), - [anon_sym_case] = ACTIONS(109), - [anon_sym_select] = ACTIONS(111), - [aux_sym_asm_token1] = ACTIONS(113), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(115), - [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(119), - [sym_unary_minus] = ACTIONS(119), - [sym_unary_wrapping_plus] = ACTIONS(121), - [sym_unary_wrapping_minus] = ACTIONS(121), - [sym__beginless_range_operator] = ACTIONS(123), - [sym__regex_start] = ACTIONS(125), - [sym__regular_if_keyword] = ACTIONS(127), - [sym__regular_unless_keyword] = ACTIONS(129), - [sym__string_literal_start] = ACTIONS(131), - [sym__string_percent_literal_start] = ACTIONS(133), - [sym__command_percent_literal_start] = ACTIONS(135), - [sym__string_array_percent_literal_start] = ACTIONS(137), - [sym__symbol_array_percent_literal_start] = ACTIONS(139), - [sym__regex_percent_literal_start] = ACTIONS(141), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1791] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6348), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1791), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1840] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6673), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1840), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -307583,75 +314227,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1792] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6922), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1792), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1841] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7010), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1841), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -307666,10 +314310,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -307680,14 +314324,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -307697,16 +314341,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -307714,205 +314358,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1793] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6934), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1793), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1794] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6411), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1794), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1842] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6691), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1842), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -307976,75 +314489,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1795] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7006), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1795), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1843] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7014), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1843), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -308059,10 +314572,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -308073,14 +314586,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -308090,16 +314603,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -308107,205 +314620,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1796] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6940), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1796), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1797] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6457), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1797), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1844] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6701), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1844), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -308369,75 +314751,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1798] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6977), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1798), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1845] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7022), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1845), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -308452,10 +314834,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -308466,14 +314848,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -308483,16 +314865,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -308500,74 +314882,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1799] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6465), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1799), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1846] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6703), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1846), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -308631,75 +315013,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1800] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6964), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1800), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1847] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7028), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1847), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -308714,10 +315096,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -308728,14 +315110,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -308745,16 +315127,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -308762,74 +315144,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1801] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6468), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1801), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1848] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6708), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1848), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -308893,75 +315275,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1802] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6986), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1802), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1849] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7029), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1849), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -308976,10 +315358,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -308990,14 +315372,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -309007,16 +315389,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -309024,74 +315406,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1803] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6472), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1803), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1850] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6710), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1850), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -309155,75 +315537,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1804] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6981), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1804), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1851] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7036), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1851), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -309238,10 +315620,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -309252,14 +315634,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -309269,16 +315651,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -309286,74 +315668,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1805] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6478), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1805), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1852] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6714), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1852), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -309417,74 +315799,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1806] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6485), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1806), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1853] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6718), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1853), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(135), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(139), + [sym_assign_call] = STATE(7884), + [sym_index_operator] = STATE(2296), + [sym_index_call] = STATE(2296), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3187), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -309548,206 +315930,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1807] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6941), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1807), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1808] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2891), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1808), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), + [1854] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2944), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1854), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -309760,10 +316011,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -309776,14 +316027,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -309791,13 +316042,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -309810,468 +316061,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1809] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5498), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1809), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1810] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6495), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1810), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1855] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6288), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1855), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1811] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6496), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1811), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1856] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6289), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1856), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1812] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2893), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1812), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), + [1857] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2946), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1857), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -310284,10 +316404,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -310300,14 +316420,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -310315,13 +316435,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -310334,75 +316454,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1813] = { - [sym__parenthesized_statement] = STATE(3065), - [sym_expressions] = STATE(3065), - [sym__expression] = STATE(2894), - [sym_empty_parens] = STATE(3065), - [sym_integer] = STATE(3065), - [sym_float] = STATE(3065), - [sym_char] = STATE(3065), - [sym_string] = STATE(2481), - [sym_chained_string] = STATE(3065), - [sym_string_percent_literal] = STATE(3065), - [sym_string_array_percent_literal] = STATE(3065), - [sym_symbol_array_percent_literal] = STATE(3065), - [sym_heredoc_body] = STATE(1813), - [sym_quoted_symbol] = STATE(3065), - [sym_command] = STATE(3065), - [sym_command_percent_literal] = STATE(3065), - [sym_regex] = STATE(3065), - [sym_regex_percent_literal] = STATE(3065), - [sym_array] = STATE(3065), - [sym_hash] = STATE(3065), - [sym_tuple] = STATE(3065), - [sym_named_tuple] = STATE(3065), - [sym_range] = STATE(3065), - [sym_beginless_range] = STATE(3065), - [sym_proc] = STATE(3065), - [sym_method_proc] = STATE(3065), - [sym_yield] = STATE(3065), - [sym_typeof] = STATE(3065), - [sym_sizeof] = STATE(3065), - [sym_instance_sizeof] = STATE(3065), - [sym_offsetof] = STATE(3065), - [sym_constant] = STATE(2779), - [sym_pseudo_constant] = STATE(3065), - [sym_generic_instance_type] = STATE(3065), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(3065), - [sym_call] = STATE(3065), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7873), - [sym_index_operator] = STATE(2196), - [sym_index_call] = STATE(2196), - [sym_not] = STATE(3065), - [sym_and] = STATE(3065), - [sym_or] = STATE(3065), - [sym_additive_operator] = STATE(3065), - [sym_unary_additive_operator] = STATE(3065), - [sym_multiplicative_operator] = STATE(3065), - [sym_exponential_operator] = STATE(3065), - [sym_shift_operator] = STATE(3065), - [sym_complement_operator] = STATE(3065), - [sym_binary_and_operator] = STATE(3065), - [sym_binary_or_operator] = STATE(3065), - [sym_equality_operator] = STATE(3065), - [sym_comparison_operator] = STATE(3065), - [sym_assign] = STATE(3065), - [sym_operator_assign] = STATE(3065), - [sym_type_declaration] = STATE(3065), - [sym_begin_block] = STATE(3065), - [sym_while] = STATE(3065), - [sym_until] = STATE(3065), - [sym_if] = STATE(3065), - [sym_unless] = STATE(3065), - [sym_conditional] = STATE(3065), - [sym_case] = STATE(3065), - [sym_select] = STATE(3065), - [sym_exhaustive_case] = STATE(3065), - [sym_asm] = STATE(3065), - [sym_identifier] = ACTIONS(2763), + [1858] = { + [sym__parenthesized_statement] = STATE(2978), + [sym_expressions] = STATE(2978), + [sym__expression] = STATE(2947), + [sym_empty_parens] = STATE(2978), + [sym_integer] = STATE(2978), + [sym_float] = STATE(2978), + [sym_char] = STATE(2978), + [sym_string] = STATE(2492), + [sym_chained_string] = STATE(2978), + [sym_string_percent_literal] = STATE(2978), + [sym_string_array_percent_literal] = STATE(2978), + [sym_symbol_array_percent_literal] = STATE(2978), + [sym_heredoc_body] = STATE(1858), + [sym_quoted_symbol] = STATE(2978), + [sym_command] = STATE(2978), + [sym_command_percent_literal] = STATE(2978), + [sym_regex] = STATE(2978), + [sym_regex_percent_literal] = STATE(2978), + [sym_array] = STATE(2978), + [sym_hash] = STATE(2978), + [sym_tuple] = STATE(2978), + [sym_named_tuple] = STATE(2978), + [sym_range] = STATE(2978), + [sym_beginless_range] = STATE(2978), + [sym_proc] = STATE(2978), + [sym_method_proc] = STATE(2978), + [sym_yield] = STATE(2978), + [sym_typeof] = STATE(2978), + [sym_sizeof] = STATE(2978), + [sym_instance_sizeof] = STATE(2978), + [sym_offsetof] = STATE(2978), + [sym_constant] = STATE(2857), + [sym_pseudo_constant] = STATE(2978), + [sym_generic_instance_type] = STATE(2978), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(2978), + [sym_call] = STATE(2978), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7905), + [sym_index_operator] = STATE(2223), + [sym_index_call] = STATE(2223), + [sym_not] = STATE(2978), + [sym_and] = STATE(2978), + [sym_or] = STATE(2978), + [sym_additive_operator] = STATE(2978), + [sym_unary_additive_operator] = STATE(2978), + [sym_multiplicative_operator] = STATE(2978), + [sym_exponential_operator] = STATE(2978), + [sym_shift_operator] = STATE(2978), + [sym_complement_operator] = STATE(2978), + [sym_binary_and_operator] = STATE(2978), + [sym_binary_or_operator] = STATE(2978), + [sym_equality_operator] = STATE(2978), + [sym_comparison_operator] = STATE(2978), + [sym_assign] = STATE(2978), + [sym_operator_assign] = STATE(2978), + [sym_type_declaration] = STATE(2978), + [sym_begin_block] = STATE(2978), + [sym_while] = STATE(2978), + [sym_until] = STATE(2978), + [sym_if] = STATE(2978), + [sym_unless] = STATE(2978), + [sym_conditional] = STATE(2978), + [sym_case] = STATE(2978), + [sym_select] = STATE(2978), + [sym_exhaustive_case] = STATE(2978), + [sym_asm] = STATE(2978), + [sym_identifier] = ACTIONS(2771), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -310415,10 +316535,10 @@ 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(1445), + [anon_sym_LBRACK] = ACTIONS(1517), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(1521), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -310431,14 +316551,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(1453), + [sym_special_variable] = ACTIONS(1525), [sym_global_match_data_index] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2765), - [sym_instance_var] = ACTIONS(1457), - [sym_class_var] = ACTIONS(1457), + [sym_identifier_method_call] = ACTIONS(2773), + [sym_instance_var] = ACTIONS(1529), + [sym_class_var] = ACTIONS(1529), [sym_self] = ACTIONS(17), - [sym_private] = ACTIONS(1461), - [sym_protected] = ACTIONS(1461), + [sym_private] = ACTIONS(1533), + [sym_protected] = ACTIONS(1533), [anon_sym_begin] = ACTIONS(101), [anon_sym_while] = ACTIONS(103), [anon_sym_until] = ACTIONS(105), @@ -310446,13 +316566,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(111), [aux_sym_asm_token1] = ACTIONS(113), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1463), + [sym__start_of_hash_or_tuple] = ACTIONS(1535), [sym__start_of_named_tuple] = ACTIONS(117), - [sym_unary_plus] = ACTIONS(1465), - [sym_unary_minus] = ACTIONS(1465), - [sym_unary_wrapping_plus] = ACTIONS(1467), - [sym_unary_wrapping_minus] = ACTIONS(1467), - [sym__beginless_range_operator] = ACTIONS(1473), + [sym_unary_plus] = ACTIONS(1537), + [sym_unary_minus] = ACTIONS(1537), + [sym_unary_wrapping_plus] = ACTIONS(1539), + [sym_unary_wrapping_minus] = ACTIONS(1539), + [sym__beginless_range_operator] = ACTIONS(1545), [sym__regex_start] = ACTIONS(125), [sym__regular_if_keyword] = ACTIONS(127), [sym__regular_unless_keyword] = ACTIONS(129), @@ -310465,598 +316585,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1814] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6949), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1814), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1859] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7012), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1859), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1815] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6524), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1815), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1860] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6294), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1860), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1816] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6525), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1816), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1861] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6295), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1861), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1817] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6943), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1817), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1818] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7023), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1818), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4329), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1862] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7062), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1862), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(209), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4433), + [sym__global_method] = STATE(187), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(3219), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -311120,336 +317109,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1819] = { - [sym__parenthesized_statement] = STATE(5441), - [sym_expressions] = STATE(5441), - [sym__expression] = STATE(5621), - [sym_empty_parens] = STATE(5441), - [sym_integer] = STATE(5441), - [sym_float] = STATE(5441), - [sym_char] = STATE(5441), - [sym_string] = STATE(4909), - [sym_chained_string] = STATE(5441), - [sym_string_percent_literal] = STATE(5441), - [sym_string_array_percent_literal] = STATE(5441), - [sym_symbol_array_percent_literal] = STATE(5441), - [sym_heredoc_body] = STATE(1819), - [sym_quoted_symbol] = STATE(5441), - [sym_command] = STATE(5441), - [sym_command_percent_literal] = STATE(5441), - [sym_regex] = STATE(5441), - [sym_regex_percent_literal] = STATE(5441), - [sym_array] = STATE(5441), - [sym_hash] = STATE(5441), - [sym_tuple] = STATE(5441), - [sym_named_tuple] = STATE(5441), - [sym_range] = STATE(5441), - [sym_beginless_range] = STATE(5441), - [sym_proc] = STATE(5441), - [sym_method_proc] = STATE(5441), - [sym_yield] = STATE(5441), - [sym_typeof] = STATE(5441), - [sym_sizeof] = STATE(5441), - [sym_instance_sizeof] = STATE(5441), - [sym_offsetof] = STATE(5441), - [sym_constant] = STATE(5283), - [sym_pseudo_constant] = STATE(5441), - [sym_generic_instance_type] = STATE(5441), - [sym__dot_call] = STATE(261), - [sym_call_with_visibility] = STATE(5441), - [sym_call] = STATE(5441), - [sym__global_method] = STATE(267), - [sym_assign_call] = STATE(7871), - [sym_index_operator] = STATE(2299), - [sym_index_call] = STATE(2299), - [sym_not] = STATE(5441), - [sym_and] = STATE(5441), - [sym_or] = STATE(5441), - [sym_additive_operator] = STATE(5441), - [sym_unary_additive_operator] = STATE(5441), - [sym_multiplicative_operator] = STATE(5441), - [sym_exponential_operator] = STATE(5441), - [sym_shift_operator] = STATE(5441), - [sym_complement_operator] = STATE(5441), - [sym_binary_and_operator] = STATE(5441), - [sym_binary_or_operator] = STATE(5441), - [sym_equality_operator] = STATE(5441), - [sym_comparison_operator] = STATE(5441), - [sym_assign] = STATE(5441), - [sym_operator_assign] = STATE(5441), - [sym_type_declaration] = STATE(5441), - [sym_begin_block] = STATE(5441), - [sym_while] = STATE(5441), - [sym_until] = STATE(5441), - [sym_if] = STATE(5441), - [sym_unless] = STATE(5441), - [sym_conditional] = STATE(5441), - [sym_case] = STATE(5441), - [sym_select] = STATE(5441), - [sym_exhaustive_case] = STATE(5441), - [sym_asm] = STATE(5441), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3261), + [1863] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2735), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1863), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [aux_sym_integer_token2] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(879), - [anon_sym_SQUOTE] = ACTIONS(881), - [sym_operator_symbol] = ACTIONS(883), - [sym_unquoted_symbol] = ACTIONS(883), - [anon_sym_COLON_DQUOTE] = ACTIONS(885), - [anon_sym_BQUOTE] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(3593), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_with] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(901), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_sizeof] = ACTIONS(905), - [anon_sym_instance_sizeof] = ACTIONS(907), - [anon_sym_offsetof] = ACTIONS(909), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(913), - [anon_sym___LINE__] = ACTIONS(915), - [anon_sym___END_LINE__] = ACTIONS(915), - [anon_sym___FILE__] = ACTIONS(915), - [anon_sym___DIR__] = ACTIONS(915), - [sym_special_variable] = ACTIONS(917), - [sym_global_match_data_index] = ACTIONS(883), - [sym_identifier_method_call] = ACTIONS(3265), - [sym_instance_var] = ACTIONS(921), - [sym_class_var] = ACTIONS(921), - [sym_self] = ACTIONS(875), - [sym_private] = ACTIONS(927), - [sym_protected] = ACTIONS(927), - [anon_sym_begin] = ACTIONS(933), - [anon_sym_while] = ACTIONS(935), - [anon_sym_until] = ACTIONS(937), - [anon_sym_case] = ACTIONS(939), - [anon_sym_select] = ACTIONS(941), - [aux_sym_asm_token1] = ACTIONS(943), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(947), - [sym__start_of_named_tuple] = ACTIONS(949), - [sym_unary_plus] = ACTIONS(951), - [sym_unary_minus] = ACTIONS(951), - [sym_unary_wrapping_plus] = ACTIONS(953), - [sym_unary_wrapping_minus] = ACTIONS(953), - [sym__beginless_range_operator] = ACTIONS(961), - [sym__regex_start] = ACTIONS(963), - [sym__regular_if_keyword] = ACTIONS(965), - [sym__regular_unless_keyword] = ACTIONS(967), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(973), - [sym__string_array_percent_literal_start] = ACTIONS(975), - [sym__symbol_array_percent_literal_start] = ACTIONS(977), - [sym__regex_percent_literal_start] = ACTIONS(979), - [sym_heredoc_start] = ACTIONS(883), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1820] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6944), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1820), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1821] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7020), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1821), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(85), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(3012), - [sym__global_method] = STATE(86), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1864] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7056), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1864), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(86), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(2971), + [sym__global_method] = STATE(88), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(4608), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -311474,14 +317332,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3533), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(2765), + [sym_identifier_method_call] = ACTIONS(2773), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -311513,1254 +317371,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1822] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3609), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1822), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1823] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5978), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1823), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1824] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5979), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1824), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1825] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(3610), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1825), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1826] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6950), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1826), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3381), - [sym_instance_var] = ACTIONS(3383), - [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3385), - [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3389), - [sym_unary_minus] = ACTIONS(3389), - [sym_unary_wrapping_plus] = ACTIONS(3391), - [sym_unary_wrapping_minus] = ACTIONS(3391), - [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1827] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(5980), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1827), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1865] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5935), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1865), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3275), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), - }, - [1828] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6788), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1828), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1829] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6793), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1829), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7842), - [sym_index_operator] = STATE(2365), - [sym_index_call] = STATE(2365), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), - [sym_identifier] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), - [sym_special_variable] = ACTIONS(3055), - [sym_global_match_data_index] = ACTIONS(3023), - [sym_identifier_method_call] = ACTIONS(3363), - [sym_instance_var] = ACTIONS(3059), - [sym_class_var] = ACTIONS(3059), - [sym_self] = ACTIONS(3015), - [sym_private] = ACTIONS(3063), - [sym_protected] = ACTIONS(3063), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3077), - [sym__start_of_named_tuple] = ACTIONS(3079), - [sym_unary_plus] = ACTIONS(3081), - [sym_unary_minus] = ACTIONS(3081), - [sym_unary_wrapping_plus] = ACTIONS(3083), - [sym_unary_wrapping_minus] = ACTIONS(3083), - [sym__beginless_range_operator] = ACTIONS(3089), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1830] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6000), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1830), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7875), - [sym_index_operator] = STATE(2313), - [sym_index_call] = STATE(2313), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + }, + [1866] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(5945), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1866), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7879), + [sym_index_operator] = STATE(2344), + [sym_index_call] = STATE(2344), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3275), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3731), - [anon_sym_TILDE] = ACTIONS(2817), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(2837), - [sym_global_match_data_index] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), + [sym_special_variable] = ACTIONS(2839), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3281), - [sym_instance_var] = ACTIONS(2841), - [sym_class_var] = ACTIONS(2841), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(2845), - [sym_protected] = ACTIONS(2845), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2859), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(2863), - [sym_unary_minus] = ACTIONS(2863), - [sym_unary_wrapping_plus] = ACTIONS(2865), - [sym_unary_wrapping_minus] = ACTIONS(2865), - [sym__beginless_range_operator] = ACTIONS(2871), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym_instance_var] = ACTIONS(2843), + [sym_class_var] = ACTIONS(2843), + [sym_self] = ACTIONS(2799), + [sym_private] = ACTIONS(2847), + [sym_protected] = ACTIONS(2847), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), + [sym_unary_plus] = ACTIONS(2865), + [sym_unary_minus] = ACTIONS(2865), + [sym_unary_wrapping_plus] = ACTIONS(2867), + [sym_unary_wrapping_minus] = ACTIONS(2867), + [sym__beginless_range_operator] = ACTIONS(2873), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1831] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4188), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1831), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1867] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6896), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1867), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1868] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6900), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1868), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7898), + [sym_index_operator] = STATE(2390), + [sym_index_call] = STATE(2390), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), + [sym_identifier] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3731), + [anon_sym_TILDE] = ACTIONS(3045), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), + [sym_special_variable] = ACTIONS(3065), + [sym_global_match_data_index] = ACTIONS(3033), + [sym_identifier_method_call] = ACTIONS(3325), + [sym_instance_var] = ACTIONS(3069), + [sym_class_var] = ACTIONS(3069), + [sym_self] = ACTIONS(3025), + [sym_private] = ACTIONS(3073), + [sym_protected] = ACTIONS(3073), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3087), + [sym__start_of_named_tuple] = ACTIONS(3089), + [sym_unary_plus] = ACTIONS(3091), + [sym_unary_minus] = ACTIONS(3091), + [sym_unary_wrapping_plus] = ACTIONS(3093), + [sym_unary_wrapping_minus] = ACTIONS(3093), + [sym__beginless_range_operator] = ACTIONS(3099), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1869] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4171), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1869), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -312773,10 +317976,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -312789,14 +317992,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -312804,13 +318007,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -312823,75 +318026,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1832] = { - [sym__parenthesized_statement] = STATE(4108), - [sym_expressions] = STATE(4108), - [sym__expression] = STATE(4189), - [sym_empty_parens] = STATE(4108), - [sym_integer] = STATE(4108), - [sym_float] = STATE(4108), - [sym_char] = STATE(4108), - [sym_string] = STATE(3213), - [sym_chained_string] = STATE(4108), - [sym_string_percent_literal] = STATE(4108), - [sym_string_array_percent_literal] = STATE(4108), - [sym_symbol_array_percent_literal] = STATE(4108), - [sym_heredoc_body] = STATE(1832), - [sym_quoted_symbol] = STATE(4108), - [sym_command] = STATE(4108), - [sym_command_percent_literal] = STATE(4108), - [sym_regex] = STATE(4108), - [sym_regex_percent_literal] = STATE(4108), - [sym_array] = STATE(4108), - [sym_hash] = STATE(4108), - [sym_tuple] = STATE(4108), - [sym_named_tuple] = STATE(4108), - [sym_range] = STATE(4108), - [sym_beginless_range] = STATE(4108), - [sym_proc] = STATE(4108), - [sym_method_proc] = STATE(4108), - [sym_yield] = STATE(4108), - [sym_typeof] = STATE(4108), - [sym_sizeof] = STATE(4108), - [sym_instance_sizeof] = STATE(4108), - [sym_offsetof] = STATE(4108), - [sym_constant] = STATE(3755), - [sym_pseudo_constant] = STATE(4108), - [sym_generic_instance_type] = STATE(4108), - [sym__dot_call] = STATE(99), - [sym_call_with_visibility] = STATE(4108), - [sym_call] = STATE(4108), - [sym__global_method] = STATE(100), - [sym_assign_call] = STATE(7856), - [sym_index_operator] = STATE(2246), - [sym_index_call] = STATE(2246), - [sym_not] = STATE(4108), - [sym_and] = STATE(4108), - [sym_or] = STATE(4108), - [sym_additive_operator] = STATE(4108), - [sym_unary_additive_operator] = STATE(4108), - [sym_multiplicative_operator] = STATE(4108), - [sym_exponential_operator] = STATE(4108), - [sym_shift_operator] = STATE(4108), - [sym_complement_operator] = STATE(4108), - [sym_binary_and_operator] = STATE(4108), - [sym_binary_or_operator] = STATE(4108), - [sym_equality_operator] = STATE(4108), - [sym_comparison_operator] = STATE(4108), - [sym_assign] = STATE(4108), - [sym_operator_assign] = STATE(4108), - [sym_type_declaration] = STATE(4108), - [sym_begin_block] = STATE(4108), - [sym_while] = STATE(4108), - [sym_until] = STATE(4108), - [sym_if] = STATE(4108), - [sym_unless] = STATE(4108), - [sym_conditional] = STATE(4108), - [sym_case] = STATE(4108), - [sym_select] = STATE(4108), - [sym_exhaustive_case] = STATE(4108), - [sym_asm] = STATE(4108), - [sym_identifier] = ACTIONS(3111), + [1870] = { + [sym__parenthesized_statement] = STATE(4030), + [sym_expressions] = STATE(4030), + [sym__expression] = STATE(4172), + [sym_empty_parens] = STATE(4030), + [sym_integer] = STATE(4030), + [sym_float] = STATE(4030), + [sym_char] = STATE(4030), + [sym_string] = STATE(3324), + [sym_chained_string] = STATE(4030), + [sym_string_percent_literal] = STATE(4030), + [sym_string_array_percent_literal] = STATE(4030), + [sym_symbol_array_percent_literal] = STATE(4030), + [sym_heredoc_body] = STATE(1870), + [sym_quoted_symbol] = STATE(4030), + [sym_command] = STATE(4030), + [sym_command_percent_literal] = STATE(4030), + [sym_regex] = STATE(4030), + [sym_regex_percent_literal] = STATE(4030), + [sym_array] = STATE(4030), + [sym_hash] = STATE(4030), + [sym_tuple] = STATE(4030), + [sym_named_tuple] = STATE(4030), + [sym_range] = STATE(4030), + [sym_beginless_range] = STATE(4030), + [sym_proc] = STATE(4030), + [sym_method_proc] = STATE(4030), + [sym_yield] = STATE(4030), + [sym_typeof] = STATE(4030), + [sym_sizeof] = STATE(4030), + [sym_instance_sizeof] = STATE(4030), + [sym_offsetof] = STATE(4030), + [sym_constant] = STATE(3827), + [sym_pseudo_constant] = STATE(4030), + [sym_generic_instance_type] = STATE(4030), + [sym__dot_call] = STATE(101), + [sym_call_with_visibility] = STATE(4030), + [sym_call] = STATE(4030), + [sym__global_method] = STATE(103), + [sym_assign_call] = STATE(7915), + [sym_index_operator] = STATE(2270), + [sym_index_call] = STATE(2270), + [sym_not] = STATE(4030), + [sym_and] = STATE(4030), + [sym_or] = STATE(4030), + [sym_additive_operator] = STATE(4030), + [sym_unary_additive_operator] = STATE(4030), + [sym_multiplicative_operator] = STATE(4030), + [sym_exponential_operator] = STATE(4030), + [sym_shift_operator] = STATE(4030), + [sym_complement_operator] = STATE(4030), + [sym_binary_and_operator] = STATE(4030), + [sym_binary_or_operator] = STATE(4030), + [sym_equality_operator] = STATE(4030), + [sym_comparison_operator] = STATE(4030), + [sym_assign] = STATE(4030), + [sym_operator_assign] = STATE(4030), + [sym_type_declaration] = STATE(4030), + [sym_begin_block] = STATE(4030), + [sym_while] = STATE(4030), + [sym_until] = STATE(4030), + [sym_if] = STATE(4030), + [sym_unless] = STATE(4030), + [sym_conditional] = STATE(4030), + [sym_case] = STATE(4030), + [sym_select] = STATE(4030), + [sym_exhaustive_case] = STATE(4030), + [sym_asm] = STATE(4030), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1283), @@ -312904,10 +318107,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(1291), [anon_sym_COLON_DQUOTE] = ACTIONS(1293), [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1883), [anon_sym_DASH_GT] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1887), [anon_sym_with] = ACTIONS(1335), [anon_sym_yield] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1339), @@ -312920,14 +318123,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1351), [anon_sym___FILE__] = ACTIONS(1351), [anon_sym___DIR__] = ACTIONS(1351), - [sym_special_variable] = ACTIONS(1887), + [sym_special_variable] = ACTIONS(1891), [sym_global_match_data_index] = ACTIONS(1291), - [sym_identifier_method_call] = ACTIONS(3113), - [sym_instance_var] = ACTIONS(1891), - [sym_class_var] = ACTIONS(1891), + [sym_identifier_method_call] = ACTIONS(3157), + [sym_instance_var] = ACTIONS(1895), + [sym_class_var] = ACTIONS(1895), [sym_self] = ACTIONS(1283), - [sym_private] = ACTIONS(1895), - [sym_protected] = ACTIONS(1895), + [sym_private] = ACTIONS(1899), + [sym_protected] = ACTIONS(1899), [anon_sym_begin] = ACTIONS(1365), [anon_sym_while] = ACTIONS(1367), [anon_sym_until] = ACTIONS(1369), @@ -312935,13 +318138,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(1377), [aux_sym_asm_token1] = ACTIONS(1379), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1897), + [sym__start_of_hash_or_tuple] = ACTIONS(1901), [sym__start_of_named_tuple] = ACTIONS(1385), - [sym_unary_plus] = ACTIONS(1899), - [sym_unary_minus] = ACTIONS(1899), - [sym_unary_wrapping_plus] = ACTIONS(1901), - [sym_unary_wrapping_minus] = ACTIONS(1901), - [sym__beginless_range_operator] = ACTIONS(1907), + [sym_unary_plus] = ACTIONS(1903), + [sym_unary_minus] = ACTIONS(1903), + [sym_unary_wrapping_plus] = ACTIONS(1905), + [sym_unary_wrapping_minus] = ACTIONS(1905), + [sym__beginless_range_operator] = ACTIONS(1911), [sym__regex_start] = ACTIONS(1393), [sym__regular_if_keyword] = ACTIONS(1395), [sym__regular_unless_keyword] = ACTIONS(1397), @@ -312954,3350 +318157,2433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1291), [sym__heredoc_body_start] = ACTIONS(7), }, - [1833] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6119), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1833), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1834] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4708), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1834), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1871] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4820), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1871), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1835] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4709), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1835), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1872] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4824), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1872), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1836] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6957), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1836), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1837] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4711), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1837), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1873] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4836), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1873), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1838] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6230), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1838), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1839] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6165), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1839), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1840] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4713), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1840), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1874] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4855), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1874), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1841] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4714), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1841), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1875] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4858), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1875), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1842] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4715), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1842), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1876] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4859), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1876), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1843] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4716), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1843), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1877] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4860), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1877), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1844] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4717), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1844), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1878] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4863), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1878), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1845] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6174), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1845), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [1879] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2746), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1879), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1846] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4719), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1846), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1880] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4865), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1880), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1847] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4720), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1847), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1881] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4868), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1881), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1848] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4721), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1848), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1882] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4871), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1882), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1849] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4722), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1849), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1883] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4874), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1883), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1850] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4723), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1850), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1884] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4876), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1884), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1851] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4724), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1851), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1885] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4605), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1885), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1852] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6177), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1852), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1853] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6191), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1853), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1854] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6196), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1854), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1855] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4726), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1855), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1886] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4609), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1886), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1856] = { - [sym__parenthesized_statement] = STATE(4749), - [sym_expressions] = STATE(4749), - [sym__expression] = STATE(4727), - [sym_empty_parens] = STATE(4749), - [sym_integer] = STATE(4749), - [sym_float] = STATE(4749), - [sym_char] = STATE(4749), - [sym_string] = STATE(3590), - [sym_chained_string] = STATE(4749), - [sym_string_percent_literal] = STATE(4749), - [sym_string_array_percent_literal] = STATE(4749), - [sym_symbol_array_percent_literal] = STATE(4749), - [sym_heredoc_body] = STATE(1856), - [sym_quoted_symbol] = STATE(4749), - [sym_command] = STATE(4749), - [sym_command_percent_literal] = STATE(4749), - [sym_regex] = STATE(4749), - [sym_regex_percent_literal] = STATE(4749), - [sym_array] = STATE(4749), - [sym_hash] = STATE(4749), - [sym_tuple] = STATE(4749), - [sym_named_tuple] = STATE(4749), - [sym_range] = STATE(4749), - [sym_beginless_range] = STATE(4749), - [sym_proc] = STATE(4749), - [sym_method_proc] = STATE(4749), - [sym_yield] = STATE(4749), - [sym_typeof] = STATE(4749), - [sym_sizeof] = STATE(4749), - [sym_instance_sizeof] = STATE(4749), - [sym_offsetof] = STATE(4749), - [sym_constant] = STATE(4475), - [sym_pseudo_constant] = STATE(4749), - [sym_generic_instance_type] = STATE(4749), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4749), - [sym_call] = STATE(4749), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7861), - [sym_index_operator] = STATE(2280), - [sym_index_call] = STATE(2280), - [sym_not] = STATE(4749), - [sym_and] = STATE(4749), - [sym_or] = STATE(4749), - [sym_additive_operator] = STATE(4749), - [sym_unary_additive_operator] = STATE(4749), - [sym_multiplicative_operator] = STATE(4749), - [sym_exponential_operator] = STATE(4749), - [sym_shift_operator] = STATE(4749), - [sym_complement_operator] = STATE(4749), - [sym_binary_and_operator] = STATE(4749), - [sym_binary_or_operator] = STATE(4749), - [sym_equality_operator] = STATE(4749), - [sym_comparison_operator] = STATE(4749), - [sym_assign] = STATE(4749), - [sym_operator_assign] = STATE(4749), - [sym_type_declaration] = STATE(4749), - [sym_begin_block] = STATE(4749), - [sym_while] = STATE(4749), - [sym_until] = STATE(4749), - [sym_if] = STATE(4749), - [sym_unless] = STATE(4749), - [sym_conditional] = STATE(4749), - [sym_case] = STATE(4749), - [sym_select] = STATE(4749), - [sym_exhaustive_case] = STATE(4749), - [sym_asm] = STATE(4749), + [1887] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4610), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1887), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), [sym_identifier] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(2492), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2099), - [sym_true] = ACTIONS(2099), - [sym_false] = ACTIONS(2099), - [aux_sym_integer_token2] = ACTIONS(2101), - [aux_sym_float_token2] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [sym_operator_symbol] = ACTIONS(2107), - [sym_unquoted_symbol] = ACTIONS(2107), - [anon_sym_COLON_DQUOTE] = ACTIONS(2109), - [anon_sym_BQUOTE] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_DASH_GT] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), [anon_sym_BANG] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2125), - [anon_sym_sizeof] = ACTIONS(2127), - [anon_sym_instance_sizeof] = ACTIONS(2129), - [anon_sym_offsetof] = ACTIONS(2131), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym___LINE__] = ACTIONS(2137), - [anon_sym___END_LINE__] = ACTIONS(2137), - [anon_sym___FILE__] = ACTIONS(2137), - [anon_sym___DIR__] = ACTIONS(2137), - [sym_special_variable] = ACTIONS(2139), - [sym_global_match_data_index] = ACTIONS(2107), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), [sym_identifier_method_call] = ACTIONS(3201), - [sym_instance_var] = ACTIONS(2143), - [sym_class_var] = ACTIONS(2143), - [sym_self] = ACTIONS(2099), - [sym_private] = ACTIONS(2147), - [sym_protected] = ACTIONS(2147), - [anon_sym_begin] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_until] = ACTIONS(2153), - [anon_sym_case] = ACTIONS(2155), - [anon_sym_select] = ACTIONS(2157), - [aux_sym_asm_token1] = ACTIONS(2159), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2161), - [sym__start_of_named_tuple] = ACTIONS(2163), - [sym_unary_plus] = ACTIONS(2165), - [sym_unary_minus] = ACTIONS(2165), - [sym_unary_wrapping_plus] = ACTIONS(2167), - [sym_unary_wrapping_minus] = ACTIONS(2167), - [sym__beginless_range_operator] = ACTIONS(2173), - [sym__regex_start] = ACTIONS(2175), - [sym__regular_if_keyword] = ACTIONS(2177), - [sym__regular_unless_keyword] = ACTIONS(2179), - [sym__string_literal_start] = ACTIONS(2181), - [sym__string_percent_literal_start] = ACTIONS(2183), - [sym__command_percent_literal_start] = ACTIONS(2185), - [sym__string_array_percent_literal_start] = ACTIONS(2187), - [sym__symbol_array_percent_literal_start] = ACTIONS(2189), - [sym__regex_percent_literal_start] = ACTIONS(2191), - [sym_heredoc_start] = ACTIONS(2107), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1857] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6202), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1857), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [1888] = { + [sym__parenthesized_statement] = STATE(4608), + [sym_expressions] = STATE(4608), + [sym__expression] = STATE(4611), + [sym_empty_parens] = STATE(4608), + [sym_integer] = STATE(4608), + [sym_float] = STATE(4608), + [sym_char] = STATE(4608), + [sym_string] = STATE(3826), + [sym_chained_string] = STATE(4608), + [sym_string_percent_literal] = STATE(4608), + [sym_string_array_percent_literal] = STATE(4608), + [sym_symbol_array_percent_literal] = STATE(4608), + [sym_heredoc_body] = STATE(1888), + [sym_quoted_symbol] = STATE(4608), + [sym_command] = STATE(4608), + [sym_command_percent_literal] = STATE(4608), + [sym_regex] = STATE(4608), + [sym_regex_percent_literal] = STATE(4608), + [sym_array] = STATE(4608), + [sym_hash] = STATE(4608), + [sym_tuple] = STATE(4608), + [sym_named_tuple] = STATE(4608), + [sym_range] = STATE(4608), + [sym_beginless_range] = STATE(4608), + [sym_proc] = STATE(4608), + [sym_method_proc] = STATE(4608), + [sym_yield] = STATE(4608), + [sym_typeof] = STATE(4608), + [sym_sizeof] = STATE(4608), + [sym_instance_sizeof] = STATE(4608), + [sym_offsetof] = STATE(4608), + [sym_constant] = STATE(4357), + [sym_pseudo_constant] = STATE(4608), + [sym_generic_instance_type] = STATE(4608), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4608), + [sym_call] = STATE(4608), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7894), + [sym_index_operator] = STATE(2303), + [sym_index_call] = STATE(2303), + [sym_not] = STATE(4608), + [sym_and] = STATE(4608), + [sym_or] = STATE(4608), + [sym_additive_operator] = STATE(4608), + [sym_unary_additive_operator] = STATE(4608), + [sym_multiplicative_operator] = STATE(4608), + [sym_exponential_operator] = STATE(4608), + [sym_shift_operator] = STATE(4608), + [sym_complement_operator] = STATE(4608), + [sym_binary_and_operator] = STATE(4608), + [sym_binary_or_operator] = STATE(4608), + [sym_equality_operator] = STATE(4608), + [sym_comparison_operator] = STATE(4608), + [sym_assign] = STATE(4608), + [sym_operator_assign] = STATE(4608), + [sym_type_declaration] = STATE(4608), + [sym_begin_block] = STATE(4608), + [sym_while] = STATE(4608), + [sym_until] = STATE(4608), + [sym_if] = STATE(4608), + [sym_unless] = STATE(4608), + [sym_conditional] = STATE(4608), + [sym_case] = STATE(4608), + [sym_select] = STATE(4608), + [sym_exhaustive_case] = STATE(4608), + [sym_asm] = STATE(4608), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2075), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [aux_sym_integer_token2] = ACTIONS(2077), + [aux_sym_float_token2] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [sym_operator_symbol] = ACTIONS(2083), + [sym_unquoted_symbol] = ACTIONS(2083), + [anon_sym_COLON_DQUOTE] = ACTIONS(2085), + [anon_sym_BQUOTE] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_DASH_GT] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(2095), + [anon_sym_with] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_typeof] = ACTIONS(2101), + [anon_sym_sizeof] = ACTIONS(2103), + [anon_sym_instance_sizeof] = ACTIONS(2105), + [anon_sym_offsetof] = ACTIONS(2107), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym___LINE__] = ACTIONS(2113), + [anon_sym___END_LINE__] = ACTIONS(2113), + [anon_sym___FILE__] = ACTIONS(2113), + [anon_sym___DIR__] = ACTIONS(2113), + [sym_special_variable] = ACTIONS(2115), + [sym_global_match_data_index] = ACTIONS(2083), + [sym_identifier_method_call] = ACTIONS(3201), + [sym_instance_var] = ACTIONS(2119), + [sym_class_var] = ACTIONS(2119), + [sym_self] = ACTIONS(2075), + [sym_private] = ACTIONS(2123), + [sym_protected] = ACTIONS(2123), + [anon_sym_begin] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_until] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2131), + [anon_sym_select] = ACTIONS(2133), + [aux_sym_asm_token1] = ACTIONS(2135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2137), + [sym__start_of_named_tuple] = ACTIONS(2139), + [sym_unary_plus] = ACTIONS(2141), + [sym_unary_minus] = ACTIONS(2141), + [sym_unary_wrapping_plus] = ACTIONS(2143), + [sym_unary_wrapping_minus] = ACTIONS(2143), + [sym__beginless_range_operator] = ACTIONS(2149), + [sym__regex_start] = ACTIONS(2151), + [sym__regular_if_keyword] = ACTIONS(2153), + [sym__regular_unless_keyword] = ACTIONS(2155), + [sym__string_literal_start] = ACTIONS(2157), + [sym__string_percent_literal_start] = ACTIONS(2159), + [sym__command_percent_literal_start] = ACTIONS(2161), + [sym__string_array_percent_literal_start] = ACTIONS(2163), + [sym__symbol_array_percent_literal_start] = ACTIONS(2165), + [sym__regex_percent_literal_start] = ACTIONS(2167), + [sym_heredoc_start] = ACTIONS(2083), [sym__heredoc_body_start] = ACTIONS(7), }, - [1858] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4430), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1858), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1889] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4371), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1889), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -316312,10 +320598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -316326,14 +320612,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -316343,16 +320629,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -316360,75 +320646,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1859] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4431), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1859), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1890] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4540), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1890), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -316443,10 +320729,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -316457,14 +320743,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -316474,16 +320760,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -316491,206 +320777,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1860] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6206), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1860), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1861] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6797), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1861), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1891] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6918), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1891), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -316705,10 +320860,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -316719,14 +320874,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -316736,16 +320891,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -316753,337 +320908,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1862] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6208), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1862), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1863] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5752), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1863), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1864] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6799), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1864), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1892] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6920), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1892), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -317098,10 +320991,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -317112,14 +321005,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -317129,16 +321022,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -317146,75 +321039,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1865] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6800), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1865), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1893] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6922), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1893), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -317229,10 +321122,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -317243,14 +321136,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -317260,16 +321153,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -317277,75 +321170,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1866] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6801), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1866), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1894] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6923), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1894), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -317360,10 +321253,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -317374,14 +321267,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -317391,16 +321284,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -317408,75 +321301,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1867] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6802), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1867), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1895] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6924), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1895), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -317491,10 +321384,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -317505,14 +321398,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -317522,16 +321415,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -317539,75 +321432,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1868] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6803), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1868), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1896] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6925), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1896), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -317622,10 +321515,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -317636,14 +321529,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -317653,16 +321546,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -317670,206 +321563,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1869] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5760), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1869), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [1897] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6927), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1897), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(1961), + [sym_true] = ACTIONS(1961), + [sym_false] = ACTIONS(1961), + [aux_sym_integer_token2] = ACTIONS(1963), + [aux_sym_float_token2] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [sym_operator_symbol] = ACTIONS(1969), + [sym_unquoted_symbol] = ACTIONS(1969), + [anon_sym_COLON_DQUOTE] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1977), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_typeof] = ACTIONS(1987), + [anon_sym_sizeof] = ACTIONS(1989), + [anon_sym_instance_sizeof] = ACTIONS(1991), + [anon_sym_offsetof] = ACTIONS(1993), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(1997), + [anon_sym___LINE__] = ACTIONS(1999), + [anon_sym___END_LINE__] = ACTIONS(1999), + [anon_sym___FILE__] = ACTIONS(1999), + [anon_sym___DIR__] = ACTIONS(1999), + [sym_special_variable] = ACTIONS(3135), + [sym_global_match_data_index] = ACTIONS(1969), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), + [sym_self] = ACTIONS(1961), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), + [anon_sym_begin] = ACTIONS(2011), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_until] = ACTIONS(2015), + [anon_sym_case] = ACTIONS(2017), + [anon_sym_select] = ACTIONS(2019), + [aux_sym_asm_token1] = ACTIONS(2021), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(2023), + [sym__start_of_named_tuple] = ACTIONS(2025), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), + [sym__regex_start] = ACTIONS(2037), + [sym__regular_if_keyword] = ACTIONS(2039), + [sym__regular_unless_keyword] = ACTIONS(2041), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), + [sym__command_percent_literal_start] = ACTIONS(2047), + [sym__string_array_percent_literal_start] = ACTIONS(2049), + [sym__symbol_array_percent_literal_start] = ACTIONS(2051), + [sym__regex_percent_literal_start] = ACTIONS(2053), + [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1870] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6805), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1870), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1898] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6928), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1898), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -317884,10 +321777,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -317898,14 +321791,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -317915,16 +321808,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -317932,75 +321825,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1871] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6806), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1871), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1899] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6929), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1899), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -318015,10 +321908,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -318029,14 +321922,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -318046,16 +321939,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -318063,75 +321956,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1872] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6807), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1872), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1900] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6930), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1900), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -318146,10 +322039,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -318160,14 +322053,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -318177,16 +322070,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -318194,75 +322087,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1873] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6808), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1873), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1901] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6931), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1901), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -318277,10 +322170,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -318291,14 +322184,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -318308,16 +322201,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -318325,75 +322218,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1874] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6809), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1874), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1902] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6932), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1902), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -318408,10 +322301,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -318422,14 +322315,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -318439,16 +322332,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -318456,75 +322349,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1875] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6810), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1875), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1903] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6935), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1903), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -318539,10 +322432,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -318553,14 +322446,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -318570,16 +322463,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -318587,206 +322480,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1876] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(5782), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1876), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1877] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6817), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1877), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1904] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6937), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1904), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -318801,10 +322563,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -318815,14 +322577,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -318832,16 +322594,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -318849,75 +322611,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1878] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6818), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1878), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), + [1905] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(6938), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1905), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -318932,10 +322694,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -318946,14 +322708,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -318963,16 +322725,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -318980,74 +322742,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1879] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7024), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1879), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(257), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(5825), - [sym__global_method] = STATE(258), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1906] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7069), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1906), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(258), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(6098), + [sym__global_method] = STATE(259), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(4610), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -319072,7 +322834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(4576), + [anon_sym_COLON_COLON] = ACTIONS(4574), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), @@ -319111,74 +322873,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1880] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7025), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1880), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(304), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(6681), - [sym__global_method] = STATE(305), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1907] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7067), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1907), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(305), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(6741), + [sym__global_method] = STATE(306), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(4612), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -319203,14 +322965,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(4568), + [anon_sym_COLON_COLON] = ACTIONS(4578), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3363), + [sym_identifier_method_call] = ACTIONS(3325), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -319242,336 +323004,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1881] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6021), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1881), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1882] = { - [sym__parenthesized_statement] = STATE(3585), - [sym_expressions] = STATE(3585), - [sym__expression] = STATE(6032), - [sym_empty_parens] = STATE(3585), - [sym_integer] = STATE(3585), - [sym_float] = STATE(3585), - [sym_char] = STATE(3585), - [sym_string] = STATE(5077), - [sym_chained_string] = STATE(3585), - [sym_string_percent_literal] = STATE(3585), - [sym_string_array_percent_literal] = STATE(3585), - [sym_symbol_array_percent_literal] = STATE(3585), - [sym_heredoc_body] = STATE(1882), - [sym_quoted_symbol] = STATE(3585), - [sym_command] = STATE(3585), - [sym_command_percent_literal] = STATE(3585), - [sym_regex] = STATE(3585), - [sym_regex_percent_literal] = STATE(3585), - [sym_array] = STATE(3585), - [sym_hash] = STATE(3585), - [sym_tuple] = STATE(3585), - [sym_named_tuple] = STATE(3585), - [sym_range] = STATE(3585), - [sym_beginless_range] = STATE(3585), - [sym_proc] = STATE(3585), - [sym_method_proc] = STATE(3585), - [sym_yield] = STATE(3585), - [sym_typeof] = STATE(3585), - [sym_sizeof] = STATE(3585), - [sym_instance_sizeof] = STATE(3585), - [sym_offsetof] = STATE(3585), - [sym_constant] = STATE(3295), - [sym_pseudo_constant] = STATE(3585), - [sym_generic_instance_type] = STATE(3585), - [sym__dot_call] = STATE(284), - [sym_call_with_visibility] = STATE(3585), - [sym_call] = STATE(3585), - [sym__global_method] = STATE(285), - [sym_assign_call] = STATE(7827), - [sym_index_operator] = STATE(2308), - [sym_index_call] = STATE(2308), - [sym_not] = STATE(3585), - [sym_and] = STATE(3585), - [sym_or] = STATE(3585), - [sym_additive_operator] = STATE(3585), - [sym_unary_additive_operator] = STATE(3585), - [sym_multiplicative_operator] = STATE(3585), - [sym_exponential_operator] = STATE(3585), - [sym_shift_operator] = STATE(3585), - [sym_complement_operator] = STATE(3585), - [sym_binary_and_operator] = STATE(3585), - [sym_binary_or_operator] = STATE(3585), - [sym_equality_operator] = STATE(3585), - [sym_comparison_operator] = STATE(3585), - [sym_assign] = STATE(3585), - [sym_operator_assign] = STATE(3585), - [sym_type_declaration] = STATE(3585), - [sym_begin_block] = STATE(3585), - [sym_while] = STATE(3585), - [sym_until] = STATE(3585), - [sym_if] = STATE(3585), - [sym_unless] = STATE(3585), - [sym_conditional] = STATE(3585), - [sym_case] = STATE(3585), - [sym_select] = STATE(3585), - [sym_exhaustive_case] = STATE(3585), - [sym_asm] = STATE(3585), - [sym_identifier] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3131), + [1908] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2699), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1908), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [aux_sym_integer_token2] = ACTIONS(465), - [aux_sym_float_token2] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_operator_symbol] = ACTIONS(471), - [sym_unquoted_symbol] = ACTIONS(471), - [anon_sym_COLON_DQUOTE] = ACTIONS(473), - [anon_sym_BQUOTE] = ACTIONS(475), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_DASH_GT] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(3617), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_with] = ACTIONS(1139), - [anon_sym_yield] = ACTIONS(1141), - [anon_sym_typeof] = ACTIONS(491), - [anon_sym_sizeof] = ACTIONS(493), - [anon_sym_instance_sizeof] = ACTIONS(495), - [anon_sym_offsetof] = ACTIONS(497), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(501), - [anon_sym___LINE__] = ACTIONS(503), - [anon_sym___END_LINE__] = ACTIONS(503), - [anon_sym___FILE__] = ACTIONS(503), - [anon_sym___DIR__] = ACTIONS(503), - [sym_special_variable] = ACTIONS(1145), - [sym_global_match_data_index] = ACTIONS(471), - [sym_identifier_method_call] = ACTIONS(3287), - [sym_instance_var] = ACTIONS(1149), - [sym_class_var] = ACTIONS(1149), - [sym_self] = ACTIONS(463), - [sym_private] = ACTIONS(1153), - [sym_protected] = ACTIONS(1153), - [anon_sym_begin] = ACTIONS(523), - [anon_sym_while] = ACTIONS(525), - [anon_sym_until] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_select] = ACTIONS(531), - [aux_sym_asm_token1] = ACTIONS(533), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(537), - [sym__start_of_named_tuple] = ACTIONS(539), - [sym_unary_plus] = ACTIONS(1157), - [sym_unary_minus] = ACTIONS(1157), - [sym_unary_wrapping_plus] = ACTIONS(1159), - [sym_unary_wrapping_minus] = ACTIONS(1159), - [sym__beginless_range_operator] = ACTIONS(1167), - [sym__regex_start] = ACTIONS(553), - [sym__regular_if_keyword] = ACTIONS(555), - [sym__regular_unless_keyword] = ACTIONS(557), - [sym__string_literal_start] = ACTIONS(3267), - [sym__string_percent_literal_start] = ACTIONS(3269), - [sym__command_percent_literal_start] = ACTIONS(563), - [sym__string_array_percent_literal_start] = ACTIONS(565), - [sym__symbol_array_percent_literal_start] = ACTIONS(567), - [sym__regex_percent_literal_start] = ACTIONS(569), - [sym_heredoc_start] = ACTIONS(471), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1883] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7023), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1883), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4329), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1909] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7062), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1909), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4433), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(4614), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -319603,7 +323234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(1999), [sym_special_variable] = ACTIONS(3227), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), + [sym_identifier_method_call] = ACTIONS(3361), [sym_instance_var] = ACTIONS(3231), [sym_class_var] = ACTIONS(3231), [sym_self] = ACTIONS(1961), @@ -319635,74 +323266,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1884] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(7017), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1884), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(142), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4776), - [sym__global_method] = STATE(114), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), + [1910] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7057), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(3880), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1910), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(133), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4666), + [sym__global_method] = STATE(143), + [sym_assign_call] = STATE(7913), + [sym_index_operator] = STATE(2309), + [sym_index_call] = STATE(2309), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), [sym_identifier] = ACTIONS(4616), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), @@ -319727,7 +323358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(1991), [anon_sym_offsetof] = ACTIONS(1993), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3515), [anon_sym___LINE__] = ACTIONS(1999), [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), @@ -319766,206 +323397,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1885] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(4352), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1885), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(310), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(311), - [sym_assign_call] = STATE(7860), - [sym_index_operator] = STATE(2383), - [sym_index_call] = STATE(2383), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3741), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3153), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3321), - [sym_instance_var] = ACTIONS(3157), - [sym_class_var] = ACTIONS(3157), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3159), - [sym_protected] = ACTIONS(3159), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2023), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3161), - [sym_unary_minus] = ACTIONS(3161), - [sym_unary_wrapping_plus] = ACTIONS(3163), - [sym_unary_wrapping_minus] = ACTIONS(3163), - [sym__beginless_range_operator] = ACTIONS(3169), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1886] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6886), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1886), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(115), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(124), - [sym_assign_call] = STATE(7876), - [sym_index_operator] = STATE(2279), - [sym_index_call] = STATE(2279), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3187), + [1911] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(4589), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1911), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(312), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(313), + [sym_assign_call] = STATE(7892), + [sym_index_operator] = STATE(2382), + [sym_index_call] = STATE(2382), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3359), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -319980,10 +323480,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(1975), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(1981), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -319994,14 +323494,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(2001), + [sym_special_variable] = ACTIONS(3135), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3193), - [sym_instance_var] = ACTIONS(2005), - [sym_class_var] = ACTIONS(2005), + [sym_identifier_method_call] = ACTIONS(3361), + [sym_instance_var] = ACTIONS(3139), + [sym_class_var] = ACTIONS(3139), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(2009), - [sym_protected] = ACTIONS(2009), + [sym_private] = ACTIONS(3141), + [sym_protected] = ACTIONS(3141), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -320011,16 +323511,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(2023), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(2027), - [sym_unary_minus] = ACTIONS(2027), - [sym_unary_wrapping_plus] = ACTIONS(2029), - [sym_unary_wrapping_minus] = ACTIONS(2029), - [sym__beginless_range_operator] = ACTIONS(2035), + [sym_unary_plus] = ACTIONS(3143), + [sym_unary_minus] = ACTIONS(3143), + [sym_unary_wrapping_plus] = ACTIONS(3145), + [sym_unary_wrapping_minus] = ACTIONS(3145), + [sym__beginless_range_operator] = ACTIONS(3151), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -320028,75 +323528,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1887] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6929), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1887), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1912] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7047), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1912), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -320111,10 +323611,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -320125,14 +323625,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -320142,16 +323642,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -320159,75 +323659,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1888] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6933), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1888), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), + [1913] = { + [sym__parenthesized_statement] = STATE(4555), + [sym_expressions] = STATE(4555), + [sym__expression] = STATE(7048), + [sym_empty_parens] = STATE(4555), + [sym_integer] = STATE(4555), + [sym_float] = STATE(4555), + [sym_char] = STATE(4555), + [sym_string] = STATE(5564), + [sym_chained_string] = STATE(4555), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4555), + [sym_symbol_array_percent_literal] = STATE(4555), + [sym_heredoc_body] = STATE(1913), + [sym_quoted_symbol] = STATE(4555), + [sym_command] = STATE(4555), + [sym_command_percent_literal] = STATE(4555), + [sym_regex] = STATE(4555), + [sym_regex_percent_literal] = STATE(4555), + [sym_array] = STATE(4555), + [sym_hash] = STATE(4555), + [sym_tuple] = STATE(4555), + [sym_named_tuple] = STATE(4555), + [sym_range] = STATE(4555), + [sym_beginless_range] = STATE(4555), + [sym_proc] = STATE(4555), + [sym_method_proc] = STATE(4555), + [sym_yield] = STATE(4555), + [sym_typeof] = STATE(4555), + [sym_sizeof] = STATE(4555), + [sym_instance_sizeof] = STATE(4555), + [sym_offsetof] = STATE(4555), + [sym_constant] = STATE(4027), + [sym_pseudo_constant] = STATE(4555), + [sym_generic_instance_type] = STATE(4555), + [sym__dot_call] = STATE(362), + [sym_call_with_visibility] = STATE(4555), + [sym_call] = STATE(4555), + [sym__global_method] = STATE(336), + [sym_assign_call] = STATE(7908), + [sym_index_operator] = STATE(2443), + [sym_index_call] = STATE(2443), + [sym_not] = STATE(4555), + [sym_and] = STATE(4555), + [sym_or] = STATE(4555), + [sym_additive_operator] = STATE(4555), + [sym_unary_additive_operator] = STATE(4555), + [sym_multiplicative_operator] = STATE(4555), + [sym_exponential_operator] = STATE(4555), + [sym_shift_operator] = STATE(4555), + [sym_complement_operator] = STATE(4555), + [sym_binary_and_operator] = STATE(4555), + [sym_binary_or_operator] = STATE(4555), + [sym_equality_operator] = STATE(4555), + [sym_comparison_operator] = STATE(4555), + [sym_assign] = STATE(4555), + [sym_operator_assign] = STATE(4555), + [sym_type_declaration] = STATE(4555), + [sym_begin_block] = STATE(4555), + [sym_while] = STATE(4555), + [sym_until] = STATE(4555), + [sym_if] = STATE(4555), + [sym_unless] = STATE(4555), + [sym_conditional] = STATE(4555), + [sym_case] = STATE(4555), + [sym_select] = STATE(4555), + [sym_exhaustive_case] = STATE(4555), + [sym_asm] = STATE(4555), + [sym_identifier] = ACTIONS(3399), [anon_sym_LPAREN] = ACTIONS(3189), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1961), @@ -320242,10 +323742,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1973), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3131), [anon_sym_typeof] = ACTIONS(1987), [anon_sym_sizeof] = ACTIONS(1989), [anon_sym_instance_sizeof] = ACTIONS(1991), @@ -320256,14 +323756,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___END_LINE__] = ACTIONS(1999), [anon_sym___FILE__] = ACTIONS(1999), [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), + [sym_special_variable] = ACTIONS(3405), [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), + [sym_identifier_method_call] = ACTIONS(3407), + [sym_instance_var] = ACTIONS(3409), + [sym_class_var] = ACTIONS(3409), [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), + [sym_private] = ACTIONS(3411), + [sym_protected] = ACTIONS(3411), [anon_sym_begin] = ACTIONS(2011), [anon_sym_while] = ACTIONS(2013), [anon_sym_until] = ACTIONS(2015), @@ -320273,16 +323773,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3235), [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), + [sym_unary_plus] = ACTIONS(3413), + [sym_unary_minus] = ACTIONS(3413), + [sym_unary_wrapping_plus] = ACTIONS(3415), + [sym_unary_wrapping_minus] = ACTIONS(3415), + [sym__beginless_range_operator] = ACTIONS(3417), [sym__regex_start] = ACTIONS(2037), [sym__regular_if_keyword] = ACTIONS(2039), [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), + [sym__string_literal_start] = ACTIONS(3363), + [sym__string_percent_literal_start] = ACTIONS(3365), [sym__command_percent_literal_start] = ACTIONS(2047), [sym__string_array_percent_literal_start] = ACTIONS(2049), [sym__symbol_array_percent_literal_start] = ACTIONS(2051), @@ -320290,8455 +323790,8193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1969), [sym__heredoc_body_start] = ACTIONS(7), }, - [1889] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6305), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1889), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1914] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6413), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1914), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1890] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6306), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1890), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1915] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6414), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1915), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1891] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6942), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1891), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1916] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7045), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1916), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1892] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6307), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1892), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1917] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6416), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1917), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1893] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6308), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1893), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1918] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6417), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1918), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1894] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6315), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1894), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1919] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6426), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1919), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1895] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6316), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1895), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1920] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6427), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1920), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1896] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6919), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1896), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1921] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(7053), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1921), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1897] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6317), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1897), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3277), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), - [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), - [sym_identifier_method_call] = ACTIONS(3341), - [sym_instance_var] = ACTIONS(3343), - [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), - [sym_private] = ACTIONS(3345), - [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), - [sym_unary_plus] = ACTIONS(3349), - [sym_unary_minus] = ACTIONS(3349), - [sym_unary_wrapping_plus] = ACTIONS(3351), - [sym_unary_wrapping_minus] = ACTIONS(3351), - [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1898] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6318), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1898), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1922] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6429), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1922), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1899] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6323), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1899), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1923] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6436), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1923), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1900] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6324), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1900), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1924] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6437), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1924), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1901] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), + [1925] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), [sym__expression] = STATE(6963), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1901), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1925), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1902] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6326), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1902), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1926] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6438), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1926), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1903] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6327), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1903), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1927] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6439), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1927), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1904] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6338), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1904), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1928] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6444), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1928), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1905] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6339), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1905), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1929] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6445), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1929), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1906] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), + [1930] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), [sym__expression] = STATE(6965), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1906), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1930), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1907] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6341), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1907), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1931] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6446), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1931), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1908] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6211), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1908), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1932] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6447), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1932), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1909] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6353), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1909), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1933] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6454), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1933), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1910] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6354), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1910), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1934] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6455), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1934), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1911] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6968), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1911), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1935] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6967), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1935), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1912] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6355), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1912), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1936] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6456), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1936), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1913] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6356), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1913), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1937] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6457), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1937), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1914] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6365), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1914), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1938] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6465), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1938), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1915] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6366), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1915), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1939] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6466), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1939), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1916] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(7002), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1916), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1940] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6972), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1940), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1917] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6368), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1917), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1941] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6467), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1941), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1918] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6369), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1918), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1942] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6468), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1942), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1919] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6379), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1919), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1943] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6478), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1943), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1920] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6380), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1920), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1944] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6479), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1944), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1921] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6927), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1921), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1945] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6974), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1945), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1922] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6382), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1922), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1946] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6481), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1946), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1923] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6383), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1923), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1947] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6482), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1947), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1924] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6391), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1924), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1948] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6488), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1948), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1925] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6392), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1925), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1949] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6489), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1949), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1926] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6951), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1926), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1950] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6977), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1950), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1927] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6393), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1927), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1951] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6490), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1951), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1928] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6394), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1928), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1952] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6491), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1952), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1929] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6401), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1929), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1953] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6497), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1953), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1930] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6402), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1930), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1954] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6498), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1954), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1931] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6974), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1931), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1955] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6981), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1955), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1932] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6404), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1932), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1956] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6499), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1956), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1933] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6405), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1933), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1957] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6500), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1957), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1934] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6413), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1934), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1958] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6506), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1958), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1935] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6414), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1935), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1959] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6507), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1959), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1936] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6997), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1936), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1960] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6982), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1960), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1937] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6416), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1937), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1961] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6509), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1961), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1938] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6417), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1938), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1962] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6510), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1962), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1939] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6427), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1939), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1963] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6519), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1963), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1940] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6428), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1940), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1964] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6520), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1964), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1941] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6979), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1941), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1965] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6986), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1965), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1942] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6430), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1942), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1966] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6521), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1966), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1943] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6431), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1943), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1967] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6522), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1967), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1944] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6439), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1944), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1968] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6526), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1968), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1945] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6440), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1945), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1969] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6527), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1969), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1946] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6920), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1946), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1970] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6990), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1970), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1947] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6441), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1947), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1971] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6528), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1971), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1948] = { - [sym__parenthesized_statement] = STATE(6158), - [sym_expressions] = STATE(6158), - [sym__expression] = STATE(6442), - [sym_empty_parens] = STATE(6158), - [sym_integer] = STATE(6158), - [sym_float] = STATE(6158), - [sym_char] = STATE(6158), - [sym_string] = STATE(5086), - [sym_chained_string] = STATE(6158), - [sym_string_percent_literal] = STATE(6158), - [sym_string_array_percent_literal] = STATE(6158), - [sym_symbol_array_percent_literal] = STATE(6158), - [sym_heredoc_body] = STATE(1948), - [sym_quoted_symbol] = STATE(6158), - [sym_command] = STATE(6158), - [sym_command_percent_literal] = STATE(6158), - [sym_regex] = STATE(6158), - [sym_regex_percent_literal] = STATE(6158), - [sym_array] = STATE(6158), - [sym_hash] = STATE(6158), - [sym_tuple] = STATE(6158), - [sym_named_tuple] = STATE(6158), - [sym_range] = STATE(6158), - [sym_beginless_range] = STATE(6158), - [sym_proc] = STATE(6158), - [sym_method_proc] = STATE(6158), - [sym_yield] = STATE(6158), - [sym_typeof] = STATE(6158), - [sym_sizeof] = STATE(6158), - [sym_instance_sizeof] = STATE(6158), - [sym_offsetof] = STATE(6158), - [sym_constant] = STATE(5558), - [sym_pseudo_constant] = STATE(6158), - [sym_generic_instance_type] = STATE(6158), - [sym__dot_call] = STATE(306), - [sym_call_with_visibility] = STATE(6158), - [sym_call] = STATE(6158), - [sym__global_method] = STATE(272), - [sym_assign_call] = STATE(7828), - [sym_index_operator] = STATE(2377), - [sym_index_call] = STATE(2377), - [sym_not] = STATE(6158), - [sym_and] = STATE(6158), - [sym_or] = STATE(6158), - [sym_additive_operator] = STATE(6158), - [sym_unary_additive_operator] = STATE(6158), - [sym_multiplicative_operator] = STATE(6158), - [sym_exponential_operator] = STATE(6158), - [sym_shift_operator] = STATE(6158), - [sym_complement_operator] = STATE(6158), - [sym_binary_and_operator] = STATE(6158), - [sym_binary_or_operator] = STATE(6158), - [sym_equality_operator] = STATE(6158), - [sym_comparison_operator] = STATE(6158), - [sym_assign] = STATE(6158), - [sym_operator_assign] = STATE(6158), - [sym_type_declaration] = STATE(6158), - [sym_begin_block] = STATE(6158), - [sym_while] = STATE(6158), - [sym_until] = STATE(6158), - [sym_if] = STATE(6158), - [sym_unless] = STATE(6158), - [sym_conditional] = STATE(6158), - [sym_case] = STATE(6158), - [sym_select] = STATE(6158), - [sym_exhaustive_case] = STATE(6158), - [sym_asm] = STATE(6158), + [1972] = { + [sym__parenthesized_statement] = STATE(6022), + [sym_expressions] = STATE(6022), + [sym__expression] = STATE(6529), + [sym_empty_parens] = STATE(6022), + [sym_integer] = STATE(6022), + [sym_float] = STATE(6022), + [sym_char] = STATE(6022), + [sym_string] = STATE(5073), + [sym_chained_string] = STATE(6022), + [sym_string_percent_literal] = STATE(6022), + [sym_string_array_percent_literal] = STATE(6022), + [sym_symbol_array_percent_literal] = STATE(6022), + [sym_heredoc_body] = STATE(1972), + [sym_quoted_symbol] = STATE(6022), + [sym_command] = STATE(6022), + [sym_command_percent_literal] = STATE(6022), + [sym_regex] = STATE(6022), + [sym_regex_percent_literal] = STATE(6022), + [sym_array] = STATE(6022), + [sym_hash] = STATE(6022), + [sym_tuple] = STATE(6022), + [sym_named_tuple] = STATE(6022), + [sym_range] = STATE(6022), + [sym_beginless_range] = STATE(6022), + [sym_proc] = STATE(6022), + [sym_method_proc] = STATE(6022), + [sym_yield] = STATE(6022), + [sym_typeof] = STATE(6022), + [sym_sizeof] = STATE(6022), + [sym_instance_sizeof] = STATE(6022), + [sym_offsetof] = STATE(6022), + [sym_constant] = STATE(5593), + [sym_pseudo_constant] = STATE(6022), + [sym_generic_instance_type] = STATE(6022), + [sym__dot_call] = STATE(302), + [sym_call_with_visibility] = STATE(6022), + [sym_call] = STATE(6022), + [sym__global_method] = STATE(303), + [sym_assign_call] = STATE(7880), + [sym_index_operator] = STATE(2394), + [sym_index_call] = STATE(2394), + [sym_not] = STATE(6022), + [sym_and] = STATE(6022), + [sym_or] = STATE(6022), + [sym_additive_operator] = STATE(6022), + [sym_unary_additive_operator] = STATE(6022), + [sym_multiplicative_operator] = STATE(6022), + [sym_exponential_operator] = STATE(6022), + [sym_shift_operator] = STATE(6022), + [sym_complement_operator] = STATE(6022), + [sym_binary_and_operator] = STATE(6022), + [sym_binary_or_operator] = STATE(6022), + [sym_equality_operator] = STATE(6022), + [sym_comparison_operator] = STATE(6022), + [sym_assign] = STATE(6022), + [sym_operator_assign] = STATE(6022), + [sym_type_declaration] = STATE(6022), + [sym_begin_block] = STATE(6022), + [sym_while] = STATE(6022), + [sym_until] = STATE(6022), + [sym_if] = STATE(6022), + [sym_unless] = STATE(6022), + [sym_conditional] = STATE(6022), + [sym_case] = STATE(6022), + [sym_select] = STATE(6022), + [sym_exhaustive_case] = STATE(6022), + [sym_asm] = STATE(6022), [sym_identifier] = ACTIONS(3331), [anon_sym_LPAREN] = ACTIONS(3277), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2797), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [aux_sym_integer_token2] = ACTIONS(2799), - [aux_sym_float_token2] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [sym_operator_symbol] = ACTIONS(2805), - [sym_unquoted_symbol] = ACTIONS(2805), - [anon_sym_COLON_DQUOTE] = ACTIONS(2807), - [anon_sym_BQUOTE] = ACTIONS(2809), + [sym_nil] = ACTIONS(2799), + [sym_true] = ACTIONS(2799), + [sym_false] = ACTIONS(2799), + [aux_sym_integer_token2] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2805), + [sym_operator_symbol] = ACTIONS(2807), + [sym_unquoted_symbol] = ACTIONS(2807), + [anon_sym_COLON_DQUOTE] = ACTIONS(2809), + [anon_sym_BQUOTE] = ACTIONS(2811), [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_DASH_GT] = ACTIONS(2813), - [anon_sym_BANG] = ACTIONS(3751), + [anon_sym_DASH_GT] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(3729), [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_typeof] = ACTIONS(2823), - [anon_sym_sizeof] = ACTIONS(2825), - [anon_sym_instance_sizeof] = ACTIONS(2827), - [anon_sym_offsetof] = ACTIONS(2829), + [anon_sym_with] = ACTIONS(2821), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_typeof] = ACTIONS(2825), + [anon_sym_sizeof] = ACTIONS(2827), + [anon_sym_instance_sizeof] = ACTIONS(2829), + [anon_sym_offsetof] = ACTIONS(2831), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym___LINE__] = ACTIONS(2835), - [anon_sym___END_LINE__] = ACTIONS(2835), - [anon_sym___FILE__] = ACTIONS(2835), - [anon_sym___DIR__] = ACTIONS(2835), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym___LINE__] = ACTIONS(2837), + [anon_sym___END_LINE__] = ACTIONS(2837), + [anon_sym___FILE__] = ACTIONS(2837), + [anon_sym___DIR__] = ACTIONS(2837), [sym_special_variable] = ACTIONS(3339), - [sym_global_match_data_index] = ACTIONS(2805), + [sym_global_match_data_index] = ACTIONS(2807), [sym_identifier_method_call] = ACTIONS(3341), [sym_instance_var] = ACTIONS(3343), [sym_class_var] = ACTIONS(3343), - [sym_self] = ACTIONS(2797), + [sym_self] = ACTIONS(2799), [sym_private] = ACTIONS(3345), [sym_protected] = ACTIONS(3345), - [anon_sym_begin] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_until] = ACTIONS(2851), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_select] = ACTIONS(2855), - [aux_sym_asm_token1] = ACTIONS(2857), + [anon_sym_begin] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_until] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2855), + [anon_sym_select] = ACTIONS(2857), + [aux_sym_asm_token1] = ACTIONS(2859), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3347), - [sym__start_of_named_tuple] = ACTIONS(2861), + [sym__start_of_named_tuple] = ACTIONS(2863), [sym_unary_plus] = ACTIONS(3349), [sym_unary_minus] = ACTIONS(3349), [sym_unary_wrapping_plus] = ACTIONS(3351), [sym_unary_wrapping_minus] = ACTIONS(3351), [sym__beginless_range_operator] = ACTIONS(3353), - [sym__regex_start] = ACTIONS(2873), - [sym__regular_if_keyword] = ACTIONS(2875), - [sym__regular_unless_keyword] = ACTIONS(2877), - [sym__string_literal_start] = ACTIONS(2879), - [sym__string_percent_literal_start] = ACTIONS(2881), - [sym__command_percent_literal_start] = ACTIONS(2883), - [sym__string_array_percent_literal_start] = ACTIONS(2885), - [sym__symbol_array_percent_literal_start] = ACTIONS(2887), - [sym__regex_percent_literal_start] = ACTIONS(2889), - [sym_heredoc_start] = ACTIONS(2805), + [sym__regex_start] = ACTIONS(2875), + [sym__regular_if_keyword] = ACTIONS(2877), + [sym__regular_unless_keyword] = ACTIONS(2879), + [sym__string_literal_start] = ACTIONS(2881), + [sym__string_percent_literal_start] = ACTIONS(2883), + [sym__command_percent_literal_start] = ACTIONS(2885), + [sym__string_array_percent_literal_start] = ACTIONS(2887), + [sym__symbol_array_percent_literal_start] = ACTIONS(2889), + [sym__regex_percent_literal_start] = ACTIONS(2891), + [sym_heredoc_start] = ACTIONS(2807), [sym__heredoc_body_start] = ACTIONS(7), }, - [1949] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(7005), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1949), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1973] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6991), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1973), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1950] = { - [sym__parenthesized_statement] = STATE(6781), - [sym_expressions] = STATE(6781), - [sym__expression] = STATE(6953), - [sym_empty_parens] = STATE(6781), - [sym_integer] = STATE(6781), - [sym_float] = STATE(6781), - [sym_char] = STATE(6781), - [sym_string] = STATE(5491), - [sym_chained_string] = STATE(6781), - [sym_string_percent_literal] = STATE(6781), - [sym_string_array_percent_literal] = STATE(6781), - [sym_symbol_array_percent_literal] = STATE(6781), - [sym_heredoc_body] = STATE(1950), - [sym_quoted_symbol] = STATE(6781), - [sym_command] = STATE(6781), - [sym_command_percent_literal] = STATE(6781), - [sym_regex] = STATE(6781), - [sym_regex_percent_literal] = STATE(6781), - [sym_array] = STATE(6781), - [sym_hash] = STATE(6781), - [sym_tuple] = STATE(6781), - [sym_named_tuple] = STATE(6781), - [sym_range] = STATE(6781), - [sym_beginless_range] = STATE(6781), - [sym_proc] = STATE(6781), - [sym_method_proc] = STATE(6781), - [sym_yield] = STATE(6781), - [sym_typeof] = STATE(6781), - [sym_sizeof] = STATE(6781), - [sym_instance_sizeof] = STATE(6781), - [sym_offsetof] = STATE(6781), - [sym_constant] = STATE(6228), - [sym_pseudo_constant] = STATE(6781), - [sym_generic_instance_type] = STATE(6781), - [sym__dot_call] = STATE(349), - [sym_call_with_visibility] = STATE(6781), - [sym_call] = STATE(6781), - [sym__global_method] = STATE(341), - [sym_assign_call] = STATE(7863), - [sym_index_operator] = STATE(2452), - [sym_index_call] = STATE(2452), - [sym_not] = STATE(6781), - [sym_and] = STATE(6781), - [sym_or] = STATE(6781), - [sym_additive_operator] = STATE(6781), - [sym_unary_additive_operator] = STATE(6781), - [sym_multiplicative_operator] = STATE(6781), - [sym_exponential_operator] = STATE(6781), - [sym_shift_operator] = STATE(6781), - [sym_complement_operator] = STATE(6781), - [sym_binary_and_operator] = STATE(6781), - [sym_binary_or_operator] = STATE(6781), - [sym_equality_operator] = STATE(6781), - [sym_comparison_operator] = STATE(6781), - [sym_assign] = STATE(6781), - [sym_operator_assign] = STATE(6781), - [sym_type_declaration] = STATE(6781), - [sym_begin_block] = STATE(6781), - [sym_while] = STATE(6781), - [sym_until] = STATE(6781), - [sym_if] = STATE(6781), - [sym_unless] = STATE(6781), - [sym_conditional] = STATE(6781), - [sym_case] = STATE(6781), - [sym_select] = STATE(6781), - [sym_exhaustive_case] = STATE(6781), - [sym_asm] = STATE(6781), + [1974] = { + [sym__parenthesized_statement] = STATE(6771), + [sym_expressions] = STATE(6771), + [sym__expression] = STATE(6992), + [sym_empty_parens] = STATE(6771), + [sym_integer] = STATE(6771), + [sym_float] = STATE(6771), + [sym_char] = STATE(6771), + [sym_string] = STATE(5818), + [sym_chained_string] = STATE(6771), + [sym_string_percent_literal] = STATE(6771), + [sym_string_array_percent_literal] = STATE(6771), + [sym_symbol_array_percent_literal] = STATE(6771), + [sym_heredoc_body] = STATE(1974), + [sym_quoted_symbol] = STATE(6771), + [sym_command] = STATE(6771), + [sym_command_percent_literal] = STATE(6771), + [sym_regex] = STATE(6771), + [sym_regex_percent_literal] = STATE(6771), + [sym_array] = STATE(6771), + [sym_hash] = STATE(6771), + [sym_tuple] = STATE(6771), + [sym_named_tuple] = STATE(6771), + [sym_range] = STATE(6771), + [sym_beginless_range] = STATE(6771), + [sym_proc] = STATE(6771), + [sym_method_proc] = STATE(6771), + [sym_yield] = STATE(6771), + [sym_typeof] = STATE(6771), + [sym_sizeof] = STATE(6771), + [sym_instance_sizeof] = STATE(6771), + [sym_offsetof] = STATE(6771), + [sym_constant] = STATE(6410), + [sym_pseudo_constant] = STATE(6771), + [sym_generic_instance_type] = STATE(6771), + [sym__dot_call] = STATE(351), + [sym_call_with_visibility] = STATE(6771), + [sym_call] = STATE(6771), + [sym__global_method] = STATE(324), + [sym_assign_call] = STATE(7921), + [sym_index_operator] = STATE(2424), + [sym_index_call] = STATE(2424), + [sym_not] = STATE(6771), + [sym_and] = STATE(6771), + [sym_or] = STATE(6771), + [sym_additive_operator] = STATE(6771), + [sym_unary_additive_operator] = STATE(6771), + [sym_multiplicative_operator] = STATE(6771), + [sym_exponential_operator] = STATE(6771), + [sym_shift_operator] = STATE(6771), + [sym_complement_operator] = STATE(6771), + [sym_binary_and_operator] = STATE(6771), + [sym_binary_or_operator] = STATE(6771), + [sym_equality_operator] = STATE(6771), + [sym_comparison_operator] = STATE(6771), + [sym_assign] = STATE(6771), + [sym_operator_assign] = STATE(6771), + [sym_type_declaration] = STATE(6771), + [sym_begin_block] = STATE(6771), + [sym_while] = STATE(6771), + [sym_until] = STATE(6771), + [sym_if] = STATE(6771), + [sym_unless] = STATE(6771), + [sym_conditional] = STATE(6771), + [sym_case] = STATE(6771), + [sym_select] = STATE(6771), + [sym_exhaustive_case] = STATE(6771), + [sym_asm] = STATE(6771), [sym_identifier] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [aux_sym_integer_token2] = ACTIONS(3017), - [aux_sym_float_token2] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [sym_operator_symbol] = ACTIONS(3023), - [sym_unquoted_symbol] = ACTIONS(3023), - [anon_sym_COLON_DQUOTE] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3025), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token2] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [sym_operator_symbol] = ACTIONS(3033), + [sym_unquoted_symbol] = ACTIONS(3033), + [anon_sym_COLON_DQUOTE] = ACTIONS(3035), + [anon_sym_BQUOTE] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_DASH_GT] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3771), + [anon_sym_DASH_GT] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3737), [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3043), - [anon_sym_instance_sizeof] = ACTIONS(3045), - [anon_sym_offsetof] = ACTIONS(3047), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym___LINE__] = ACTIONS(3053), - [anon_sym___END_LINE__] = ACTIONS(3053), - [anon_sym___FILE__] = ACTIONS(3053), - [anon_sym___DIR__] = ACTIONS(3053), + [anon_sym_with] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_typeof] = ACTIONS(3051), + [anon_sym_sizeof] = ACTIONS(3053), + [anon_sym_instance_sizeof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3057), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym___LINE__] = ACTIONS(3063), + [anon_sym___END_LINE__] = ACTIONS(3063), + [anon_sym___FILE__] = ACTIONS(3063), + [anon_sym___DIR__] = ACTIONS(3063), [sym_special_variable] = ACTIONS(3379), - [sym_global_match_data_index] = ACTIONS(3023), + [sym_global_match_data_index] = ACTIONS(3033), [sym_identifier_method_call] = ACTIONS(3381), [sym_instance_var] = ACTIONS(3383), [sym_class_var] = ACTIONS(3383), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3025), [sym_private] = ACTIONS(3385), [sym_protected] = ACTIONS(3385), - [anon_sym_begin] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3067), - [anon_sym_until] = ACTIONS(3069), - [anon_sym_case] = ACTIONS(3071), - [anon_sym_select] = ACTIONS(3073), - [aux_sym_asm_token1] = ACTIONS(3075), + [anon_sym_begin] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_until] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_select] = ACTIONS(3083), + [aux_sym_asm_token1] = ACTIONS(3085), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(3387), - [sym__start_of_named_tuple] = ACTIONS(3079), + [sym__start_of_named_tuple] = ACTIONS(3089), [sym_unary_plus] = ACTIONS(3389), [sym_unary_minus] = ACTIONS(3389), [sym_unary_wrapping_plus] = ACTIONS(3391), [sym_unary_wrapping_minus] = ACTIONS(3391), [sym__beginless_range_operator] = ACTIONS(3393), - [sym__regex_start] = ACTIONS(3091), - [sym__regular_if_keyword] = ACTIONS(3093), - [sym__regular_unless_keyword] = ACTIONS(3095), - [sym__string_literal_start] = ACTIONS(3097), - [sym__string_percent_literal_start] = ACTIONS(3099), - [sym__command_percent_literal_start] = ACTIONS(3101), - [sym__string_array_percent_literal_start] = ACTIONS(3103), - [sym__symbol_array_percent_literal_start] = ACTIONS(3105), - [sym__regex_percent_literal_start] = ACTIONS(3107), - [sym_heredoc_start] = ACTIONS(3023), + [sym__regex_start] = ACTIONS(3101), + [sym__regular_if_keyword] = ACTIONS(3103), + [sym__regular_unless_keyword] = ACTIONS(3105), + [sym__string_literal_start] = ACTIONS(3107), + [sym__string_percent_literal_start] = ACTIONS(3109), + [sym__command_percent_literal_start] = ACTIONS(3111), + [sym__string_array_percent_literal_start] = ACTIONS(3113), + [sym__symbol_array_percent_literal_start] = ACTIONS(3115), + [sym__regex_percent_literal_start] = ACTIONS(3117), + [sym_heredoc_start] = ACTIONS(3033), [sym__heredoc_body_start] = ACTIONS(7), }, - [1951] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(6935), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(5574), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1951), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(342), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(345), - [sym_assign_call] = STATE(7830), - [sym_index_operator] = STATE(2445), - [sym_index_call] = STATE(2445), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3787), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3149), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3403), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3405), - [sym_instance_var] = ACTIONS(3407), - [sym_class_var] = ACTIONS(3407), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3409), - [sym_protected] = ACTIONS(3409), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3411), - [sym_unary_minus] = ACTIONS(3411), - [sym_unary_wrapping_plus] = ACTIONS(3413), - [sym_unary_wrapping_minus] = ACTIONS(3413), - [sym__beginless_range_operator] = ACTIONS(3415), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(3323), - [sym__string_percent_literal_start] = ACTIONS(3325), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1952] = { - [sym__parenthesized_statement] = STATE(4476), - [sym_expressions] = STATE(4476), - [sym__expression] = STATE(5053), - [sym_empty_parens] = STATE(4476), - [sym_integer] = STATE(4476), - [sym_float] = STATE(4476), - [sym_char] = STATE(4476), - [sym_string] = STATE(3691), - [sym_chained_string] = STATE(4476), - [sym_string_percent_literal] = STATE(4476), - [sym_string_array_percent_literal] = STATE(4476), - [sym_symbol_array_percent_literal] = STATE(4476), - [sym_heredoc_body] = STATE(1952), - [sym_quoted_symbol] = STATE(4476), - [sym_command] = STATE(4476), - [sym_command_percent_literal] = STATE(4476), - [sym_regex] = STATE(4476), - [sym_regex_percent_literal] = STATE(4476), - [sym_array] = STATE(4476), - [sym_hash] = STATE(4476), - [sym_tuple] = STATE(4476), - [sym_named_tuple] = STATE(4476), - [sym_range] = STATE(4476), - [sym_beginless_range] = STATE(4476), - [sym_proc] = STATE(4476), - [sym_method_proc] = STATE(4476), - [sym_yield] = STATE(4476), - [sym_typeof] = STATE(4476), - [sym_sizeof] = STATE(4476), - [sym_instance_sizeof] = STATE(4476), - [sym_offsetof] = STATE(4476), - [sym_constant] = STATE(4120), - [sym_pseudo_constant] = STATE(4476), - [sym_generic_instance_type] = STATE(4476), - [sym__dot_call] = STATE(208), - [sym_call_with_visibility] = STATE(4476), - [sym_call] = STATE(4476), - [sym__global_method] = STATE(209), - [sym_assign_call] = STATE(7834), - [sym_index_operator] = STATE(2287), - [sym_index_call] = STATE(2287), - [sym_not] = STATE(4476), - [sym_and] = STATE(4476), - [sym_or] = STATE(4476), - [sym_additive_operator] = STATE(4476), - [sym_unary_additive_operator] = STATE(4476), - [sym_multiplicative_operator] = STATE(4476), - [sym_exponential_operator] = STATE(4476), - [sym_shift_operator] = STATE(4476), - [sym_complement_operator] = STATE(4476), - [sym_binary_and_operator] = STATE(4476), - [sym_binary_or_operator] = STATE(4476), - [sym_equality_operator] = STATE(4476), - [sym_comparison_operator] = STATE(4476), - [sym_assign] = STATE(4476), - [sym_operator_assign] = STATE(4476), - [sym_type_declaration] = STATE(4476), - [sym_begin_block] = STATE(4476), - [sym_while] = STATE(4476), - [sym_until] = STATE(4476), - [sym_if] = STATE(4476), - [sym_unless] = STATE(4476), - [sym_conditional] = STATE(4476), - [sym_case] = STATE(4476), - [sym_select] = STATE(4476), - [sym_exhaustive_case] = STATE(4476), - [sym_asm] = STATE(4476), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3189), + [1975] = { + [sym__parenthesized_statement] = STATE(2591), + [sym_expressions] = STATE(2591), + [sym__expression] = STATE(2642), + [sym_empty_parens] = STATE(2591), + [sym_integer] = STATE(2591), + [sym_float] = STATE(2591), + [sym_char] = STATE(2591), + [sym_string] = STATE(2401), + [sym_chained_string] = STATE(2591), + [sym_string_percent_literal] = STATE(2591), + [sym_string_array_percent_literal] = STATE(2591), + [sym_symbol_array_percent_literal] = STATE(2591), + [sym_heredoc_body] = STATE(1975), + [sym_quoted_symbol] = STATE(2591), + [sym_command] = STATE(2591), + [sym_command_percent_literal] = STATE(2591), + [sym_regex] = STATE(2591), + [sym_regex_percent_literal] = STATE(2591), + [sym_array] = STATE(2591), + [sym_hash] = STATE(2591), + [sym_tuple] = STATE(2591), + [sym_named_tuple] = STATE(2591), + [sym_range] = STATE(2591), + [sym_beginless_range] = STATE(2591), + [sym_proc] = STATE(2591), + [sym_method_proc] = STATE(2591), + [sym_yield] = STATE(2591), + [sym_typeof] = STATE(2591), + [sym_sizeof] = STATE(2591), + [sym_instance_sizeof] = STATE(2591), + [sym_offsetof] = STATE(2591), + [sym_constant] = STATE(2555), + [sym_pseudo_constant] = STATE(2591), + [sym_generic_instance_type] = STATE(2591), + [sym__dot_call] = STATE(85), + [sym_call_with_visibility] = STATE(2591), + [sym_call] = STATE(2591), + [sym__global_method] = STATE(87), + [sym_assign_call] = STATE(7917), + [sym_index_operator] = STATE(2212), + [sym_index_call] = STATE(2212), + [sym_not] = STATE(2591), + [sym_and] = STATE(2591), + [sym_or] = STATE(2591), + [sym_additive_operator] = STATE(2591), + [sym_unary_additive_operator] = STATE(2591), + [sym_multiplicative_operator] = STATE(2591), + [sym_exponential_operator] = STATE(2591), + [sym_shift_operator] = STATE(2591), + [sym_complement_operator] = STATE(2591), + [sym_binary_and_operator] = STATE(2591), + [sym_binary_or_operator] = STATE(2591), + [sym_equality_operator] = STATE(2591), + [sym_comparison_operator] = STATE(2591), + [sym_assign] = STATE(2591), + [sym_operator_assign] = STATE(2591), + [sym_type_declaration] = STATE(2591), + [sym_begin_block] = STATE(2591), + [sym_while] = STATE(2591), + [sym_until] = STATE(2591), + [sym_if] = STATE(2591), + [sym_unless] = STATE(2591), + [sym_conditional] = STATE(2591), + [sym_case] = STATE(2591), + [sym_select] = STATE(2591), + [sym_exhaustive_case] = STATE(2591), + [sym_asm] = STATE(2591), + [sym_identifier] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2270), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1961), - [sym_true] = ACTIONS(1961), - [sym_false] = ACTIONS(1961), - [aux_sym_integer_token2] = ACTIONS(1963), - [aux_sym_float_token2] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [sym_operator_symbol] = ACTIONS(1969), - [sym_unquoted_symbol] = ACTIONS(1969), - [anon_sym_COLON_DQUOTE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_DASH_GT] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(1983), - [anon_sym_yield] = ACTIONS(1985), - [anon_sym_typeof] = ACTIONS(1987), - [anon_sym_sizeof] = ACTIONS(1989), - [anon_sym_instance_sizeof] = ACTIONS(1991), - [anon_sym_offsetof] = ACTIONS(1993), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym___LINE__] = ACTIONS(1999), - [anon_sym___END_LINE__] = ACTIONS(1999), - [anon_sym___FILE__] = ACTIONS(1999), - [anon_sym___DIR__] = ACTIONS(1999), - [sym_special_variable] = ACTIONS(3227), - [sym_global_match_data_index] = ACTIONS(1969), - [sym_identifier_method_call] = ACTIONS(3229), - [sym_instance_var] = ACTIONS(3231), - [sym_class_var] = ACTIONS(3231), - [sym_self] = ACTIONS(1961), - [sym_private] = ACTIONS(3233), - [sym_protected] = ACTIONS(3233), - [anon_sym_begin] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_until] = ACTIONS(2015), - [anon_sym_case] = ACTIONS(2017), - [anon_sym_select] = ACTIONS(2019), - [aux_sym_asm_token1] = ACTIONS(2021), + [sym_nil] = ACTIONS(179), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [aux_sym_integer_token2] = ACTIONS(181), + [aux_sym_float_token2] = ACTIONS(183), + [anon_sym_SQUOTE] = ACTIONS(185), + [sym_operator_symbol] = ACTIONS(187), + [sym_unquoted_symbol] = ACTIONS(187), + [anon_sym_COLON_DQUOTE] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_DASH_GT] = ACTIONS(197), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(203), + [anon_sym_with] = ACTIONS(205), + [anon_sym_yield] = ACTIONS(207), + [anon_sym_typeof] = ACTIONS(209), + [anon_sym_sizeof] = ACTIONS(211), + [anon_sym_instance_sizeof] = ACTIONS(213), + [anon_sym_offsetof] = ACTIONS(215), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym___LINE__] = ACTIONS(221), + [anon_sym___END_LINE__] = ACTIONS(221), + [anon_sym___FILE__] = ACTIONS(221), + [anon_sym___DIR__] = ACTIONS(221), + [sym_special_variable] = ACTIONS(223), + [sym_global_match_data_index] = ACTIONS(187), + [sym_identifier_method_call] = ACTIONS(2276), + [sym_instance_var] = ACTIONS(227), + [sym_class_var] = ACTIONS(227), + [sym_self] = ACTIONS(179), + [sym_private] = ACTIONS(233), + [sym_protected] = ACTIONS(233), + [anon_sym_begin] = ACTIONS(241), + [anon_sym_while] = ACTIONS(243), + [anon_sym_until] = ACTIONS(245), + [anon_sym_case] = ACTIONS(247), + [anon_sym_select] = ACTIONS(249), + [aux_sym_asm_token1] = ACTIONS(251), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3235), - [sym__start_of_named_tuple] = ACTIONS(2025), - [sym_unary_plus] = ACTIONS(3237), - [sym_unary_minus] = ACTIONS(3237), - [sym_unary_wrapping_plus] = ACTIONS(3239), - [sym_unary_wrapping_minus] = ACTIONS(3239), - [sym__beginless_range_operator] = ACTIONS(3241), - [sym__regex_start] = ACTIONS(2037), - [sym__regular_if_keyword] = ACTIONS(2039), - [sym__regular_unless_keyword] = ACTIONS(2041), - [sym__string_literal_start] = ACTIONS(2043), - [sym__string_percent_literal_start] = ACTIONS(2045), - [sym__command_percent_literal_start] = ACTIONS(2047), - [sym__string_array_percent_literal_start] = ACTIONS(2049), - [sym__symbol_array_percent_literal_start] = ACTIONS(2051), - [sym__regex_percent_literal_start] = ACTIONS(2053), - [sym_heredoc_start] = ACTIONS(1969), + [sym__start_of_hash_or_tuple] = ACTIONS(255), + [sym__start_of_named_tuple] = ACTIONS(257), + [sym_unary_plus] = ACTIONS(259), + [sym_unary_minus] = ACTIONS(259), + [sym_unary_wrapping_plus] = ACTIONS(261), + [sym_unary_wrapping_minus] = ACTIONS(261), + [sym__beginless_range_operator] = ACTIONS(269), + [sym__regex_start] = ACTIONS(271), + [sym__regular_if_keyword] = ACTIONS(273), + [sym__regular_unless_keyword] = ACTIONS(275), + [sym__string_literal_start] = ACTIONS(277), + [sym__string_percent_literal_start] = ACTIONS(279), + [sym__command_percent_literal_start] = ACTIONS(281), + [sym__string_array_percent_literal_start] = ACTIONS(283), + [sym__symbol_array_percent_literal_start] = ACTIONS(285), + [sym__regex_percent_literal_start] = ACTIONS(287), + [sym_heredoc_start] = ACTIONS(187), [sym__heredoc_body_start] = ACTIONS(7), }, - [1953] = { - [sym_heredoc_body] = STATE(1953), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), + [1976] = { + [sym_heredoc_body] = STATE(1976), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), [anon_sym_PLUS_EQ] = ACTIONS(3603), [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), [anon_sym_DASH_EQ] = ACTIONS(3603), @@ -328756,117 +331994,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3603), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_then] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_then] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1954] = { - [sym_heredoc_body] = STATE(1954), - [sym_identifier] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_RBRACK] = ACTIONS(3601), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_RBRACK_QMARK] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), + [1977] = { + [sym_heredoc_body] = STATE(1977), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_RBRACK] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_RBRACK_QMARK] = ACTIONS(3597), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), [anon_sym_PLUS_EQ] = ACTIONS(3603), [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), [anon_sym_DASH_EQ] = ACTIONS(3603), @@ -328884,113 +332122,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3603), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1955] = { - [sym_heredoc_body] = STATE(1955), - [sym_identifier] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), + [1978] = { + [sym_heredoc_body] = STATE(1978), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), [anon_sym_PLUS_EQ] = ACTIONS(3603), [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), [anon_sym_DASH_EQ] = ACTIONS(3603), @@ -329008,114 +332246,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3603), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym__end_of_with_expression] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym__end_of_with_expression] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1956] = { - [sym_heredoc_body] = STATE(1956), - [sym_identifier] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), + [1979] = { + [sym_heredoc_body] = STATE(1979), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), [anon_sym_COMMA] = ACTIONS(3603), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_EQ] = ACTIONS(3605), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3601), - [anon_sym_GT_GT] = ACTIONS(3601), - [anon_sym_LT_LT] = ACTIONS(3601), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3601), - [anon_sym_PIPE_PIPE] = ACTIONS(3601), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_EQ] = ACTIONS(3601), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3599), + [anon_sym_GT_GT] = ACTIONS(3599), + [anon_sym_LT_LT] = ACTIONS(3599), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3599), + [anon_sym_PIPE_PIPE] = ACTIONS(3599), [anon_sym_PLUS_EQ] = ACTIONS(3603), [anon_sym_AMP_PLUS_EQ] = ACTIONS(3603), [anon_sym_DASH_EQ] = ACTIONS(3603), @@ -329133,51 +332371,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(3603), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3603), [anon_sym_AMP_AMP_EQ] = ACTIONS(3603), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1957] = { - [sym_heredoc_body] = STATE(1957), + [1980] = { + [sym_heredoc_body] = STATE(1980), [ts_builtin_sym_end] = ACTIONS(4618), [sym_identifier] = ACTIONS(4620), [anon_sym_SEMI] = ACTIONS(4618), @@ -329203,6 +332441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4620), [anon_sym_end] = ACTIONS(4620), [anon_sym_LT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), [anon_sym_PIPE] = ACTIONS(4620), [anon_sym_CARET] = ACTIONS(4618), [anon_sym_GT_GT] = ACTIONS(4618), @@ -329296,8 +332535,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4618), }, - [1958] = { - [sym_heredoc_body] = STATE(1958), + [1981] = { + [sym_heredoc_body] = STATE(1981), [ts_builtin_sym_end] = ACTIONS(4622), [sym_identifier] = ACTIONS(4624), [anon_sym_SEMI] = ACTIONS(4622), @@ -329416,360 +332655,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4622), }, - [1959] = { - [sym_heredoc_body] = STATE(1959), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3599), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [anon_sym_RBRACE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_elsif] = ACTIONS(3601), - [anon_sym_else] = ACTIONS(3601), - [anon_sym_when] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [anon_sym_in] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), - }, - [1960] = { - [sym_heredoc_body] = STATE(1960), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_else] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__regular_rescue_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__regular_ensure_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), - }, - [1961] = { - [sym_heredoc_body] = STATE(1961), - [sym_identifier] = ACTIONS(4624), - [anon_sym_SEMI] = ACTIONS(4622), - [anon_sym_LPAREN] = ACTIONS(4624), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4624), - [sym_true] = ACTIONS(4624), - [sym_false] = ACTIONS(4624), - [aux_sym_integer_token2] = ACTIONS(4624), - [aux_sym_float_token2] = ACTIONS(4622), - [anon_sym_SQUOTE] = ACTIONS(4622), - [sym_operator_symbol] = ACTIONS(4622), - [sym_unquoted_symbol] = ACTIONS(4622), - [anon_sym_COLON_DQUOTE] = ACTIONS(4622), - [anon_sym_BQUOTE] = ACTIONS(4622), - [anon_sym_LBRACK] = ACTIONS(4622), - [anon_sym_COMMA] = ACTIONS(4622), - [anon_sym_DOT_DOT] = ACTIONS(4624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4622), - [anon_sym_DASH_GT] = ACTIONS(4622), - [anon_sym_DOT] = ACTIONS(4624), - [anon_sym_end] = ACTIONS(4624), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_CARET] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(4622), - [anon_sym_LT_LT] = ACTIONS(4622), - [anon_sym_EQ_EQ] = ACTIONS(4624), - [anon_sym_BANG_EQ] = ACTIONS(4622), - [anon_sym_LT_EQ] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_EQ] = ACTIONS(4622), - [anon_sym_LT_EQ_GT] = ACTIONS(4622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(4624), - [anon_sym_TILDE] = ACTIONS(4622), - [anon_sym_BANG_TILDE] = ACTIONS(4622), - [anon_sym_EQ_TILDE] = ACTIONS(4622), - [anon_sym_AMP_STAR] = ACTIONS(4624), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4622), - [anon_sym_with] = ACTIONS(4624), - [anon_sym_yield] = ACTIONS(4624), - [anon_sym_typeof] = ACTIONS(4624), - [anon_sym_sizeof] = ACTIONS(4624), - [anon_sym_instance_sizeof] = ACTIONS(4624), - [anon_sym_offsetof] = ACTIONS(4624), - [sym__constant_segment] = ACTIONS(4622), - [anon_sym_COLON_COLON] = ACTIONS(4622), - [anon_sym___LINE__] = ACTIONS(4624), - [anon_sym___END_LINE__] = ACTIONS(4624), - [anon_sym___FILE__] = ACTIONS(4624), - [anon_sym___DIR__] = ACTIONS(4624), - [sym_special_variable] = ACTIONS(4622), - [sym_global_match_data_index] = ACTIONS(4622), - [sym_identifier_method_call] = ACTIONS(4622), - [sym_instance_var] = ACTIONS(4622), - [sym_class_var] = ACTIONS(4622), - [sym_self] = ACTIONS(4624), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_QMARK] = ACTIONS(4622), - [sym_private] = ACTIONS(4624), - [sym_protected] = ACTIONS(4624), - [anon_sym_AMP_AMP] = ACTIONS(4622), - [anon_sym_PIPE_PIPE] = ACTIONS(4622), - [anon_sym_do] = ACTIONS(4624), - [anon_sym_begin] = ACTIONS(4624), - [anon_sym_while] = ACTIONS(4624), - [anon_sym_until] = ACTIONS(4624), - [anon_sym_else] = ACTIONS(4624), - [anon_sym_case] = ACTIONS(4624), - [anon_sym_select] = ACTIONS(4624), - [aux_sym_asm_token1] = ACTIONS(4622), - [sym__line_break] = ACTIONS(4622), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4622), - [sym__start_of_hash_or_tuple] = ACTIONS(4622), - [sym__start_of_named_tuple] = ACTIONS(4622), - [sym__start_of_index_operator] = ACTIONS(4622), - [sym_unary_plus] = ACTIONS(4622), - [sym_unary_minus] = ACTIONS(4622), - [sym_binary_plus] = ACTIONS(4622), - [sym_binary_minus] = ACTIONS(4622), - [sym_unary_wrapping_plus] = ACTIONS(4622), - [sym_unary_wrapping_minus] = ACTIONS(4622), - [sym_binary_wrapping_plus] = ACTIONS(4622), - [sym_binary_wrapping_minus] = ACTIONS(4622), - [sym__unary_star] = ACTIONS(4622), - [sym__binary_star] = ACTIONS(4622), - [sym__unary_double_star] = ACTIONS(4622), - [sym__binary_double_star] = ACTIONS(4622), - [sym__block_ampersand] = ACTIONS(4622), - [sym_binary_ampersand] = ACTIONS(4622), - [sym__beginless_range_operator] = ACTIONS(4622), - [sym__regex_start] = ACTIONS(4622), - [sym__binary_slash] = ACTIONS(4622), - [sym__binary_double_slash] = ACTIONS(4622), - [sym__regular_if_keyword] = ACTIONS(4622), - [sym__modifier_if_keyword] = ACTIONS(4622), - [sym__regular_unless_keyword] = ACTIONS(4622), - [sym__modifier_unless_keyword] = ACTIONS(4622), - [sym__regular_rescue_keyword] = ACTIONS(4622), - [sym__modifier_rescue_keyword] = ACTIONS(4622), - [sym__regular_ensure_keyword] = ACTIONS(4622), - [sym__modifier_ensure_keyword] = ACTIONS(4622), - [sym__modulo_operator] = ACTIONS(4622), - [sym__string_literal_start] = ACTIONS(4622), - [sym__string_percent_literal_start] = ACTIONS(4622), - [sym__command_percent_literal_start] = ACTIONS(4622), - [sym__string_array_percent_literal_start] = ACTIONS(4622), - [sym__symbol_array_percent_literal_start] = ACTIONS(4622), - [sym__regex_percent_literal_start] = ACTIONS(4622), - [sym_heredoc_start] = ACTIONS(4622), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4622), + [1982] = { + [sym_heredoc_body] = STATE(1982), + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_RPAREN] = ACTIONS(3597), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [anon_sym_RBRACE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3597), + [anon_sym_GT_GT] = ACTIONS(3597), + [anon_sym_LT_LT] = ACTIONS(3597), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_elsif] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_when] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [anon_sym_in] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1962] = { - [sym_heredoc_body] = STATE(1962), + [1983] = { + [sym_heredoc_body] = STATE(1983), [sym_identifier] = ACTIONS(4620), [anon_sym_SEMI] = ACTIONS(4618), [anon_sym_LPAREN] = ACTIONS(4620), @@ -329792,6 +332799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4620), [anon_sym_end] = ACTIONS(4620), [anon_sym_LT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), [anon_sym_PIPE] = ACTIONS(4620), [anon_sym_CARET] = ACTIONS(4618), [anon_sym_GT_GT] = ACTIONS(4618), @@ -329884,8 +332892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4618), }, - [1963] = { - [sym_heredoc_body] = STATE(1963), + [1984] = { + [sym_heredoc_body] = STATE(1984), [sym_identifier] = ACTIONS(4620), [anon_sym_LPAREN] = ACTIONS(4620), [anon_sym_RPAREN] = ACTIONS(4618), @@ -329911,6 +332919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4620), [anon_sym_end] = ACTIONS(4620), [anon_sym_LT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), [anon_sym_PIPE] = ACTIONS(4620), [anon_sym_CARET] = ACTIONS(4618), [anon_sym_GT_GT] = ACTIONS(4618), @@ -329999,123 +333008,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4618), }, - [1964] = { - [sym_heredoc_body] = STATE(1964), - [sym_identifier] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3599), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [anon_sym_RBRACE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_RBRACK] = ACTIONS(3599), - [anon_sym_EQ_GT] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_COLON2] = ACTIONS(3601), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_else] = ACTIONS(3601), - [anon_sym_when] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [anon_sym_in] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [1985] = { + [sym_heredoc_body] = STATE(1985), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3597), + [anon_sym_GT_GT] = ACTIONS(3597), + [anon_sym_LT_LT] = ACTIONS(3597), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__regular_rescue_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__regular_ensure_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1965] = { - [sym_heredoc_body] = STATE(1965), + [1986] = { + [sym_heredoc_body] = STATE(1986), + [sym_identifier] = ACTIONS(4624), + [anon_sym_SEMI] = ACTIONS(4622), + [anon_sym_LPAREN] = ACTIONS(4624), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4624), + [sym_true] = ACTIONS(4624), + [sym_false] = ACTIONS(4624), + [aux_sym_integer_token2] = ACTIONS(4624), + [aux_sym_float_token2] = ACTIONS(4622), + [anon_sym_SQUOTE] = ACTIONS(4622), + [sym_operator_symbol] = ACTIONS(4622), + [sym_unquoted_symbol] = ACTIONS(4622), + [anon_sym_COLON_DQUOTE] = ACTIONS(4622), + [anon_sym_BQUOTE] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_DOT_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4622), + [anon_sym_DASH_GT] = ACTIONS(4622), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_end] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(4622), + [anon_sym_LT_LT] = ACTIONS(4622), + [anon_sym_EQ_EQ] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(4622), + [anon_sym_LT_EQ] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_EQ] = ACTIONS(4622), + [anon_sym_LT_EQ_GT] = ACTIONS(4622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4622), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_TILDE] = ACTIONS(4622), + [anon_sym_BANG_TILDE] = ACTIONS(4622), + [anon_sym_EQ_TILDE] = ACTIONS(4622), + [anon_sym_AMP_STAR] = ACTIONS(4624), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4622), + [anon_sym_with] = ACTIONS(4624), + [anon_sym_yield] = ACTIONS(4624), + [anon_sym_typeof] = ACTIONS(4624), + [anon_sym_sizeof] = ACTIONS(4624), + [anon_sym_instance_sizeof] = ACTIONS(4624), + [anon_sym_offsetof] = ACTIONS(4624), + [sym__constant_segment] = ACTIONS(4622), + [anon_sym_COLON_COLON] = ACTIONS(4622), + [anon_sym___LINE__] = ACTIONS(4624), + [anon_sym___END_LINE__] = ACTIONS(4624), + [anon_sym___FILE__] = ACTIONS(4624), + [anon_sym___DIR__] = ACTIONS(4624), + [sym_special_variable] = ACTIONS(4622), + [sym_global_match_data_index] = ACTIONS(4622), + [sym_identifier_method_call] = ACTIONS(4622), + [sym_instance_var] = ACTIONS(4622), + [sym_class_var] = ACTIONS(4622), + [sym_self] = ACTIONS(4624), + [anon_sym_LPAREN2] = ACTIONS(4622), + [anon_sym_QMARK] = ACTIONS(4622), + [sym_private] = ACTIONS(4624), + [sym_protected] = ACTIONS(4624), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4622), + [anon_sym_do] = ACTIONS(4624), + [anon_sym_begin] = ACTIONS(4624), + [anon_sym_while] = ACTIONS(4624), + [anon_sym_until] = ACTIONS(4624), + [anon_sym_else] = ACTIONS(4624), + [anon_sym_case] = ACTIONS(4624), + [anon_sym_select] = ACTIONS(4624), + [aux_sym_asm_token1] = ACTIONS(4622), + [sym__line_break] = ACTIONS(4622), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4622), + [sym__start_of_hash_or_tuple] = ACTIONS(4622), + [sym__start_of_named_tuple] = ACTIONS(4622), + [sym__start_of_index_operator] = ACTIONS(4622), + [sym_unary_plus] = ACTIONS(4622), + [sym_unary_minus] = ACTIONS(4622), + [sym_binary_plus] = ACTIONS(4622), + [sym_binary_minus] = ACTIONS(4622), + [sym_unary_wrapping_plus] = ACTIONS(4622), + [sym_unary_wrapping_minus] = ACTIONS(4622), + [sym_binary_wrapping_plus] = ACTIONS(4622), + [sym_binary_wrapping_minus] = ACTIONS(4622), + [sym__unary_star] = ACTIONS(4622), + [sym__binary_star] = ACTIONS(4622), + [sym__unary_double_star] = ACTIONS(4622), + [sym__binary_double_star] = ACTIONS(4622), + [sym__block_ampersand] = ACTIONS(4622), + [sym_binary_ampersand] = ACTIONS(4622), + [sym__beginless_range_operator] = ACTIONS(4622), + [sym__regex_start] = ACTIONS(4622), + [sym__binary_slash] = ACTIONS(4622), + [sym__binary_double_slash] = ACTIONS(4622), + [sym__regular_if_keyword] = ACTIONS(4622), + [sym__modifier_if_keyword] = ACTIONS(4622), + [sym__regular_unless_keyword] = ACTIONS(4622), + [sym__modifier_unless_keyword] = ACTIONS(4622), + [sym__regular_rescue_keyword] = ACTIONS(4622), + [sym__modifier_rescue_keyword] = ACTIONS(4622), + [sym__regular_ensure_keyword] = ACTIONS(4622), + [sym__modifier_ensure_keyword] = ACTIONS(4622), + [sym__modulo_operator] = ACTIONS(4622), + [sym__string_literal_start] = ACTIONS(4622), + [sym__string_percent_literal_start] = ACTIONS(4622), + [sym__command_percent_literal_start] = ACTIONS(4622), + [sym__string_array_percent_literal_start] = ACTIONS(4622), + [sym__symbol_array_percent_literal_start] = ACTIONS(4622), + [sym__regex_percent_literal_start] = ACTIONS(4622), + [sym_heredoc_start] = ACTIONS(4622), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4622), + }, + [1987] = { + [sym_heredoc_body] = STATE(1987), + [sym_identifier] = ACTIONS(4620), + [anon_sym_SEMI] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4620), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4620), + [sym_true] = ACTIONS(4620), + [sym_false] = ACTIONS(4620), + [aux_sym_integer_token2] = ACTIONS(4620), + [aux_sym_float_token2] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4618), + [sym_operator_symbol] = ACTIONS(4618), + [sym_unquoted_symbol] = ACTIONS(4618), + [anon_sym_COLON_DQUOTE] = ACTIONS(4618), + [anon_sym_BQUOTE] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4618), + [anon_sym_COMMA] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4618), + [anon_sym_DASH_GT] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4620), + [anon_sym_end] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), + [anon_sym_PIPE] = ACTIONS(4620), + [anon_sym_CARET] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(4618), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4618), + [anon_sym_LT_EQ_GT] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4620), + [anon_sym_TILDE] = ACTIONS(4618), + [anon_sym_BANG_TILDE] = ACTIONS(4618), + [anon_sym_EQ_TILDE] = ACTIONS(4618), + [anon_sym_AMP_STAR] = ACTIONS(4620), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4618), + [anon_sym_with] = ACTIONS(4620), + [anon_sym_yield] = ACTIONS(4620), + [anon_sym_typeof] = ACTIONS(4620), + [anon_sym_sizeof] = ACTIONS(4620), + [anon_sym_instance_sizeof] = ACTIONS(4620), + [anon_sym_offsetof] = ACTIONS(4620), + [sym__constant_segment] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4618), + [anon_sym___LINE__] = ACTIONS(4620), + [anon_sym___END_LINE__] = ACTIONS(4620), + [anon_sym___FILE__] = ACTIONS(4620), + [anon_sym___DIR__] = ACTIONS(4620), + [sym_special_variable] = ACTIONS(4618), + [sym_global_match_data_index] = ACTIONS(4618), + [sym_identifier_method_call] = ACTIONS(4618), + [sym_instance_var] = ACTIONS(4618), + [sym_class_var] = ACTIONS(4618), + [sym_self] = ACTIONS(4620), + [anon_sym_LPAREN2] = ACTIONS(4618), + [anon_sym_QMARK] = ACTIONS(4618), + [sym_private] = ACTIONS(4620), + [sym_protected] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4618), + [anon_sym_PIPE_PIPE] = ACTIONS(4618), + [anon_sym_do] = ACTIONS(4620), + [anon_sym_begin] = ACTIONS(4620), + [anon_sym_while] = ACTIONS(4620), + [anon_sym_until] = ACTIONS(4620), + [anon_sym_case] = ACTIONS(4620), + [anon_sym_select] = ACTIONS(4620), + [aux_sym_asm_token1] = ACTIONS(4618), + [sym__line_break] = ACTIONS(4618), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4618), + [sym__start_of_hash_or_tuple] = ACTIONS(4618), + [sym__start_of_named_tuple] = ACTIONS(4618), + [sym__start_of_index_operator] = ACTIONS(4618), + [sym_unary_plus] = ACTIONS(4618), + [sym_unary_minus] = ACTIONS(4618), + [sym_binary_plus] = ACTIONS(4618), + [sym_binary_minus] = ACTIONS(4618), + [sym_unary_wrapping_plus] = ACTIONS(4618), + [sym_unary_wrapping_minus] = ACTIONS(4618), + [sym_binary_wrapping_plus] = ACTIONS(4618), + [sym_binary_wrapping_minus] = ACTIONS(4618), + [sym__unary_star] = ACTIONS(4618), + [sym__binary_star] = ACTIONS(4618), + [sym__unary_double_star] = ACTIONS(4618), + [sym__binary_double_star] = ACTIONS(4618), + [sym__block_ampersand] = ACTIONS(4618), + [sym_binary_ampersand] = ACTIONS(4618), + [sym__beginless_range_operator] = ACTIONS(4618), + [sym__regex_start] = ACTIONS(4618), + [sym__binary_slash] = ACTIONS(4618), + [sym__binary_double_slash] = ACTIONS(4618), + [sym__regular_if_keyword] = ACTIONS(4618), + [sym__modifier_if_keyword] = ACTIONS(4618), + [sym__regular_unless_keyword] = ACTIONS(4618), + [sym__modifier_unless_keyword] = ACTIONS(4618), + [sym__modifier_rescue_keyword] = ACTIONS(4618), + [sym__regular_ensure_keyword] = ACTIONS(4618), + [sym__modifier_ensure_keyword] = ACTIONS(4618), + [sym__modulo_operator] = ACTIONS(4618), + [sym__string_literal_start] = ACTIONS(4618), + [sym__string_percent_literal_start] = ACTIONS(4618), + [sym__command_percent_literal_start] = ACTIONS(4618), + [sym__string_array_percent_literal_start] = ACTIONS(4618), + [sym__symbol_array_percent_literal_start] = ACTIONS(4618), + [sym__regex_percent_literal_start] = ACTIONS(4618), + [sym_heredoc_start] = ACTIONS(4618), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4618), + }, + [1988] = { + [sym_heredoc_body] = STATE(1988), [sym_identifier] = ACTIONS(4624), [anon_sym_LPAREN] = ACTIONS(4624), [anon_sym_RPAREN] = ACTIONS(4622), @@ -330229,122 +333470,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4622), }, - [1966] = { - [sym_heredoc_body] = STATE(1966), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_end] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__modifier_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modifier_unless_keyword] = ACTIONS(3599), - [sym__modifier_rescue_keyword] = ACTIONS(3599), - [sym__regular_ensure_keyword] = ACTIONS(3599), - [sym__modifier_ensure_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [1989] = { + [sym_heredoc_body] = STATE(1989), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3599), + [anon_sym_RPAREN] = ACTIONS(3597), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [anon_sym_RBRACE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_RBRACK] = ACTIONS(3597), + [anon_sym_EQ_GT] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3597), + [anon_sym_GT_GT] = ACTIONS(3597), + [anon_sym_LT_LT] = ACTIONS(3597), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_COLON2] = ACTIONS(3599), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_when] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [anon_sym_in] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1967] = { - [sym_heredoc_body] = STATE(1967), + [1990] = { + [sym_heredoc_body] = STATE(1990), [sym_identifier] = ACTIONS(4624), [anon_sym_SEMI] = ACTIONS(4622), [anon_sym_LPAREN] = ACTIONS(4624), @@ -330457,136 +333699,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4622), }, - [1968] = { - [sym_heredoc_body] = STATE(1968), - [sym_identifier] = ACTIONS(4620), - [anon_sym_SEMI] = ACTIONS(4618), - [anon_sym_LPAREN] = ACTIONS(4620), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4620), - [sym_true] = ACTIONS(4620), - [sym_false] = ACTIONS(4620), - [aux_sym_integer_token2] = ACTIONS(4620), - [aux_sym_float_token2] = ACTIONS(4618), - [anon_sym_SQUOTE] = ACTIONS(4618), - [sym_operator_symbol] = ACTIONS(4618), - [sym_unquoted_symbol] = ACTIONS(4618), - [anon_sym_COLON_DQUOTE] = ACTIONS(4618), - [anon_sym_BQUOTE] = ACTIONS(4618), - [anon_sym_LBRACK] = ACTIONS(4618), - [anon_sym_COMMA] = ACTIONS(4618), - [anon_sym_DOT_DOT] = ACTIONS(4620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4618), - [anon_sym_DASH_GT] = ACTIONS(4618), - [anon_sym_DOT] = ACTIONS(4620), - [anon_sym_end] = ACTIONS(4620), - [anon_sym_LT] = ACTIONS(4620), - [anon_sym_PIPE] = ACTIONS(4620), - [anon_sym_CARET] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(4618), - [anon_sym_LT_LT] = ACTIONS(4618), - [anon_sym_EQ_EQ] = ACTIONS(4620), - [anon_sym_BANG_EQ] = ACTIONS(4618), - [anon_sym_LT_EQ] = ACTIONS(4620), - [anon_sym_GT] = ACTIONS(4620), - [anon_sym_GT_EQ] = ACTIONS(4618), - [anon_sym_LT_EQ_GT] = ACTIONS(4618), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4618), - [anon_sym_BANG] = ACTIONS(4620), - [anon_sym_TILDE] = ACTIONS(4618), - [anon_sym_BANG_TILDE] = ACTIONS(4618), - [anon_sym_EQ_TILDE] = ACTIONS(4618), - [anon_sym_AMP_STAR] = ACTIONS(4620), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4618), - [anon_sym_with] = ACTIONS(4620), - [anon_sym_yield] = ACTIONS(4620), - [anon_sym_typeof] = ACTIONS(4620), - [anon_sym_sizeof] = ACTIONS(4620), - [anon_sym_instance_sizeof] = ACTIONS(4620), - [anon_sym_offsetof] = ACTIONS(4620), - [sym__constant_segment] = ACTIONS(4618), - [anon_sym_COLON_COLON] = ACTIONS(4618), - [anon_sym___LINE__] = ACTIONS(4620), - [anon_sym___END_LINE__] = ACTIONS(4620), - [anon_sym___FILE__] = ACTIONS(4620), - [anon_sym___DIR__] = ACTIONS(4620), - [sym_special_variable] = ACTIONS(4618), - [sym_global_match_data_index] = ACTIONS(4618), - [sym_identifier_method_call] = ACTIONS(4618), - [sym_instance_var] = ACTIONS(4618), - [sym_class_var] = ACTIONS(4618), - [sym_self] = ACTIONS(4620), - [anon_sym_LPAREN2] = ACTIONS(4618), - [anon_sym_QMARK] = ACTIONS(4618), - [sym_private] = ACTIONS(4620), - [sym_protected] = ACTIONS(4620), - [anon_sym_AMP_AMP] = ACTIONS(4618), - [anon_sym_PIPE_PIPE] = ACTIONS(4618), - [anon_sym_do] = ACTIONS(4620), - [anon_sym_begin] = ACTIONS(4620), - [anon_sym_while] = ACTIONS(4620), - [anon_sym_until] = ACTIONS(4620), - [anon_sym_case] = ACTIONS(4620), - [anon_sym_select] = ACTIONS(4620), - [aux_sym_asm_token1] = ACTIONS(4618), - [sym__line_break] = ACTIONS(4618), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4618), - [sym__start_of_hash_or_tuple] = ACTIONS(4618), - [sym__start_of_named_tuple] = ACTIONS(4618), - [sym__start_of_index_operator] = ACTIONS(4618), - [sym_unary_plus] = ACTIONS(4618), - [sym_unary_minus] = ACTIONS(4618), - [sym_binary_plus] = ACTIONS(4618), - [sym_binary_minus] = ACTIONS(4618), - [sym_unary_wrapping_plus] = ACTIONS(4618), - [sym_unary_wrapping_minus] = ACTIONS(4618), - [sym_binary_wrapping_plus] = ACTIONS(4618), - [sym_binary_wrapping_minus] = ACTIONS(4618), - [sym__unary_star] = ACTIONS(4618), - [sym__binary_star] = ACTIONS(4618), - [sym__unary_double_star] = ACTIONS(4618), - [sym__binary_double_star] = ACTIONS(4618), - [sym__block_ampersand] = ACTIONS(4618), - [sym_binary_ampersand] = ACTIONS(4618), - [sym__beginless_range_operator] = ACTIONS(4618), - [sym__regex_start] = ACTIONS(4618), - [sym__binary_slash] = ACTIONS(4618), - [sym__binary_double_slash] = ACTIONS(4618), - [sym__regular_if_keyword] = ACTIONS(4618), - [sym__modifier_if_keyword] = ACTIONS(4618), - [sym__regular_unless_keyword] = ACTIONS(4618), - [sym__modifier_unless_keyword] = ACTIONS(4618), - [sym__modifier_rescue_keyword] = ACTIONS(4618), - [sym__regular_ensure_keyword] = ACTIONS(4618), - [sym__modifier_ensure_keyword] = ACTIONS(4618), - [sym__modulo_operator] = ACTIONS(4618), - [sym__string_literal_start] = ACTIONS(4618), - [sym__string_percent_literal_start] = ACTIONS(4618), - [sym__command_percent_literal_start] = ACTIONS(4618), - [sym__string_array_percent_literal_start] = ACTIONS(4618), - [sym__symbol_array_percent_literal_start] = ACTIONS(4618), - [sym__regex_percent_literal_start] = ACTIONS(4618), - [sym_heredoc_start] = ACTIONS(4618), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4618), + [1991] = { + [sym_heredoc_body] = STATE(1991), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_end] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3597), + [anon_sym_GT_GT] = ACTIONS(3597), + [anon_sym_LT_LT] = ACTIONS(3597), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__modifier_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modifier_unless_keyword] = ACTIONS(3597), + [sym__modifier_rescue_keyword] = ACTIONS(3597), + [sym__regular_ensure_keyword] = ACTIONS(3597), + [sym__modifier_ensure_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1969] = { - [sym_heredoc_body] = STATE(1969), - [sym_typeof] = STATE(2017), - [sym_constant] = STATE(2002), - [sym__type] = STATE(1998), - [sym_class_type] = STATE(2017), - [sym_union_type] = STATE(2017), - [sym__parenthesized_type] = STATE(2017), - [sym_no_args_proc_type] = STATE(2017), - [sym_parenthesized_proc_type] = STATE(2017), - [sym_tuple_type] = STATE(2017), - [sym_named_tuple_type] = STATE(2017), - [sym_generic_instance_type] = STATE(2017), - [sym_nilable_type] = STATE(2017), - [sym_pointer_type] = STATE(2017), - [sym_static_array_type] = STATE(2017), + [1992] = { + [sym_heredoc_body] = STATE(1992), + [sym_typeof] = STATE(2038), + [sym_constant] = STATE(2025), + [sym__type] = STATE(2023), + [sym_class_type] = STATE(2038), + [sym_union_type] = STATE(2038), + [sym__parenthesized_type] = STATE(2038), + [sym_no_args_proc_type] = STATE(2038), + [sym_parenthesized_proc_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_named_tuple_type] = STATE(2038), + [sym_generic_instance_type] = STATE(2038), + [sym_nilable_type] = STATE(2038), + [sym_pointer_type] = STATE(2038), + [sym_static_array_type] = STATE(2038), [sym_identifier] = ACTIONS(4626), [anon_sym_SEMI] = ACTIONS(4628), [anon_sym_LPAREN] = ACTIONS(4630), @@ -330682,22 +333924,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [1970] = { - [sym_heredoc_body] = STATE(1970), - [sym_typeof] = STATE(2017), - [sym_constant] = STATE(2002), - [sym__type] = STATE(1999), - [sym_class_type] = STATE(2017), - [sym_union_type] = STATE(2017), - [sym__parenthesized_type] = STATE(2017), - [sym_no_args_proc_type] = STATE(2017), - [sym_parenthesized_proc_type] = STATE(2017), - [sym_tuple_type] = STATE(2017), - [sym_named_tuple_type] = STATE(2017), - [sym_generic_instance_type] = STATE(2017), - [sym_nilable_type] = STATE(2017), - [sym_pointer_type] = STATE(2017), - [sym_static_array_type] = STATE(2017), + [1993] = { + [sym_heredoc_body] = STATE(1993), + [sym_typeof] = STATE(2038), + [sym_constant] = STATE(2025), + [sym__type] = STATE(2024), + [sym_class_type] = STATE(2038), + [sym_union_type] = STATE(2038), + [sym__parenthesized_type] = STATE(2038), + [sym_no_args_proc_type] = STATE(2038), + [sym_parenthesized_proc_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_named_tuple_type] = STATE(2038), + [sym_generic_instance_type] = STATE(2038), + [sym_nilable_type] = STATE(2038), + [sym_pointer_type] = STATE(2038), + [sym_static_array_type] = STATE(2038), [sym_identifier] = ACTIONS(4654), [anon_sym_SEMI] = ACTIONS(4656), [anon_sym_LPAREN] = ACTIONS(4658), @@ -330793,22 +334035,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [1971] = { - [sym_heredoc_body] = STATE(1971), - [sym_typeof] = STATE(2017), - [sym_constant] = STATE(2002), - [sym__type] = STATE(2001), - [sym_class_type] = STATE(2017), - [sym_union_type] = STATE(2017), - [sym__parenthesized_type] = STATE(2017), - [sym_no_args_proc_type] = STATE(2017), - [sym_parenthesized_proc_type] = STATE(2017), - [sym_tuple_type] = STATE(2017), - [sym_named_tuple_type] = STATE(2017), - [sym_generic_instance_type] = STATE(2017), - [sym_nilable_type] = STATE(2017), - [sym_pointer_type] = STATE(2017), - [sym_static_array_type] = STATE(2017), + [1994] = { + [sym_heredoc_body] = STATE(1994), + [sym_typeof] = STATE(2038), + [sym_constant] = STATE(2025), + [sym__type] = STATE(2022), + [sym_class_type] = STATE(2038), + [sym_union_type] = STATE(2038), + [sym__parenthesized_type] = STATE(2038), + [sym_no_args_proc_type] = STATE(2038), + [sym_parenthesized_proc_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_named_tuple_type] = STATE(2038), + [sym_generic_instance_type] = STATE(2038), + [sym_nilable_type] = STATE(2038), + [sym_pointer_type] = STATE(2038), + [sym_static_array_type] = STATE(2038), [sym_identifier] = ACTIONS(4676), [anon_sym_SEMI] = ACTIONS(4678), [anon_sym_LPAREN] = ACTIONS(4680), @@ -330904,226 +334146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [1972] = { - [sym_heredoc_body] = STATE(1972), - [sym_identifier] = ACTIONS(4624), - [anon_sym_SEMI] = ACTIONS(4622), - [anon_sym_LPAREN] = ACTIONS(4624), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4624), - [sym_true] = ACTIONS(4624), - [sym_false] = ACTIONS(4624), - [aux_sym_integer_token2] = ACTIONS(4624), - [aux_sym_float_token2] = ACTIONS(4622), - [anon_sym_SQUOTE] = ACTIONS(4622), - [sym_operator_symbol] = ACTIONS(4622), - [sym_unquoted_symbol] = ACTIONS(4622), - [anon_sym_COLON_DQUOTE] = ACTIONS(4622), - [anon_sym_BQUOTE] = ACTIONS(4622), - [anon_sym_LBRACK] = ACTIONS(4622), - [anon_sym_COMMA] = ACTIONS(4622), - [anon_sym_DOT_DOT] = ACTIONS(4624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4622), - [anon_sym_DASH_GT] = ACTIONS(4622), - [anon_sym_DOT] = ACTIONS(4624), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_CARET] = ACTIONS(4622), - [anon_sym_GT_GT] = ACTIONS(4622), - [anon_sym_LT_LT] = ACTIONS(4622), - [anon_sym_EQ_EQ] = ACTIONS(4624), - [anon_sym_BANG_EQ] = ACTIONS(4622), - [anon_sym_LT_EQ] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_EQ] = ACTIONS(4622), - [anon_sym_LT_EQ_GT] = ACTIONS(4622), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(4624), - [anon_sym_TILDE] = ACTIONS(4622), - [anon_sym_BANG_TILDE] = ACTIONS(4622), - [anon_sym_EQ_TILDE] = ACTIONS(4622), - [anon_sym_AMP_STAR] = ACTIONS(4624), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4622), - [anon_sym_with] = ACTIONS(4624), - [anon_sym_yield] = ACTIONS(4624), - [anon_sym_typeof] = ACTIONS(4624), - [anon_sym_sizeof] = ACTIONS(4624), - [anon_sym_instance_sizeof] = ACTIONS(4624), - [anon_sym_offsetof] = ACTIONS(4624), - [sym__constant_segment] = ACTIONS(4622), - [anon_sym_COLON_COLON] = ACTIONS(4622), - [anon_sym___LINE__] = ACTIONS(4624), - [anon_sym___END_LINE__] = ACTIONS(4624), - [anon_sym___FILE__] = ACTIONS(4624), - [anon_sym___DIR__] = ACTIONS(4624), - [sym_special_variable] = ACTIONS(4622), - [sym_global_match_data_index] = ACTIONS(4622), - [sym_identifier_method_call] = ACTIONS(4622), - [sym_instance_var] = ACTIONS(4622), - [sym_class_var] = ACTIONS(4622), - [sym_self] = ACTIONS(4624), - [anon_sym_LPAREN2] = ACTIONS(4622), - [anon_sym_QMARK] = ACTIONS(4622), - [sym_private] = ACTIONS(4624), - [sym_protected] = ACTIONS(4624), - [anon_sym_AMP_AMP] = ACTIONS(4622), - [anon_sym_PIPE_PIPE] = ACTIONS(4622), - [anon_sym_do] = ACTIONS(4624), - [anon_sym_begin] = ACTIONS(4624), - [anon_sym_while] = ACTIONS(4624), - [anon_sym_until] = ACTIONS(4624), - [anon_sym_then] = ACTIONS(4624), - [anon_sym_case] = ACTIONS(4624), - [anon_sym_select] = ACTIONS(4624), - [aux_sym_asm_token1] = ACTIONS(4622), - [sym__line_break] = ACTIONS(4622), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4622), - [sym__start_of_hash_or_tuple] = ACTIONS(4622), - [sym__start_of_named_tuple] = ACTIONS(4622), - [sym__start_of_index_operator] = ACTIONS(4622), - [sym_unary_plus] = ACTIONS(4622), - [sym_unary_minus] = ACTIONS(4622), - [sym_binary_plus] = ACTIONS(4622), - [sym_binary_minus] = ACTIONS(4622), - [sym_unary_wrapping_plus] = ACTIONS(4622), - [sym_unary_wrapping_minus] = ACTIONS(4622), - [sym_binary_wrapping_plus] = ACTIONS(4622), - [sym_binary_wrapping_minus] = ACTIONS(4622), - [sym__unary_star] = ACTIONS(4622), - [sym__binary_star] = ACTIONS(4622), - [sym__unary_double_star] = ACTIONS(4622), - [sym__binary_double_star] = ACTIONS(4622), - [sym__block_ampersand] = ACTIONS(4622), - [sym_binary_ampersand] = ACTIONS(4622), - [sym__beginless_range_operator] = ACTIONS(4622), - [sym__regex_start] = ACTIONS(4622), - [sym__binary_slash] = ACTIONS(4622), - [sym__binary_double_slash] = ACTIONS(4622), - [sym__regular_if_keyword] = ACTIONS(4622), - [sym__regular_unless_keyword] = ACTIONS(4622), - [sym__modulo_operator] = ACTIONS(4622), - [sym__string_literal_start] = ACTIONS(4622), - [sym__string_percent_literal_start] = ACTIONS(4622), - [sym__command_percent_literal_start] = ACTIONS(4622), - [sym__string_array_percent_literal_start] = ACTIONS(4622), - [sym__symbol_array_percent_literal_start] = ACTIONS(4622), - [sym__regex_percent_literal_start] = ACTIONS(4622), - [sym_heredoc_start] = ACTIONS(4622), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4622), - }, - [1973] = { - [sym_heredoc_body] = STATE(1973), - [sym_identifier] = ACTIONS(3601), - [anon_sym_SEMI] = ACTIONS(3599), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_then] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_break] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), - }, - [1974] = { - [sym_heredoc_body] = STATE(1974), + [1995] = { + [sym_heredoc_body] = STATE(1995), [sym_identifier] = ACTIONS(4620), [anon_sym_SEMI] = ACTIONS(4618), [anon_sym_LPAREN] = ACTIONS(4620), @@ -331145,6 +334169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(4618), [anon_sym_DOT] = ACTIONS(4620), [anon_sym_LT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), [anon_sym_PIPE] = ACTIONS(4620), [anon_sym_CARET] = ACTIONS(4618), [anon_sym_GT_GT] = ACTIONS(4618), @@ -331231,117 +334256,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4618), }, - [1975] = { - [sym_heredoc_body] = STATE(1975), - [sym_identifier] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_RBRACK] = ACTIONS(3601), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_RBRACK_QMARK] = ACTIONS(3599), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), - }, - [1976] = { - [sym_heredoc_body] = STATE(1976), + [1996] = { + [sym_heredoc_body] = STATE(1996), [sym_identifier] = ACTIONS(4624), + [anon_sym_SEMI] = ACTIONS(4622), [anon_sym_LPAREN] = ACTIONS(4624), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(4624), @@ -331356,7 +334274,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(4622), [anon_sym_LBRACK] = ACTIONS(4622), [anon_sym_COMMA] = ACTIONS(4622), - [anon_sym_RBRACK] = ACTIONS(4624), [anon_sym_DOT_DOT] = ACTIONS(4624), [anon_sym_DOT_DOT_DOT] = ACTIONS(4622), [anon_sym_DASH_GT] = ACTIONS(4622), @@ -331401,16 +334318,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4622), [sym_private] = ACTIONS(4624), [sym_protected] = ACTIONS(4624), - [anon_sym_RBRACK_QMARK] = ACTIONS(4622), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4622), [anon_sym_do] = ACTIONS(4624), [anon_sym_begin] = ACTIONS(4624), [anon_sym_while] = ACTIONS(4624), [anon_sym_until] = ACTIONS(4624), + [anon_sym_then] = ACTIONS(4624), [anon_sym_case] = ACTIONS(4624), [anon_sym_select] = ACTIONS(4624), [aux_sym_asm_token1] = ACTIONS(4622), + [sym__line_break] = ACTIONS(4622), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4622), [sym__start_of_hash_or_tuple] = ACTIONS(4622), @@ -331447,8 +334365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4622), }, - [1977] = { - [sym_heredoc_body] = STATE(1977), + [1997] = { + [sym_heredoc_body] = STATE(1997), [sym_identifier] = ACTIONS(4620), [anon_sym_LPAREN] = ACTIONS(4620), [sym_comment] = ACTIONS(5), @@ -331470,6 +334388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(4618), [anon_sym_DOT] = ACTIONS(4620), [anon_sym_LT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), [anon_sym_PIPE] = ACTIONS(4620), [anon_sym_CARET] = ACTIONS(4618), [anon_sym_GT_GT] = ACTIONS(4618), @@ -331555,115 +334474,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4618), }, - [1978] = { - [sym_heredoc_body] = STATE(1978), - [sym_identifier] = ACTIONS(3601), - [anon_sym_LPAREN] = ACTIONS(3601), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3601), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [aux_sym_integer_token2] = ACTIONS(3601), - [aux_sym_float_token2] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(3599), - [sym_operator_symbol] = ACTIONS(3599), - [sym_unquoted_symbol] = ACTIONS(3599), - [anon_sym_COLON_DQUOTE] = ACTIONS(3599), - [anon_sym_BQUOTE] = ACTIONS(3599), - [anon_sym_LBRACK] = ACTIONS(3599), - [anon_sym_COMMA] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_DASH_GT] = ACTIONS(3599), - [anon_sym_DOT] = ACTIONS(3601), - [anon_sym_LT] = ACTIONS(3601), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_CARET] = ACTIONS(3599), - [anon_sym_GT_GT] = ACTIONS(3599), - [anon_sym_LT_LT] = ACTIONS(3599), - [anon_sym_EQ_EQ] = ACTIONS(3601), - [anon_sym_BANG_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ] = ACTIONS(3601), - [anon_sym_GT] = ACTIONS(3601), - [anon_sym_GT_EQ] = ACTIONS(3599), - [anon_sym_LT_EQ_GT] = ACTIONS(3599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), - [anon_sym_BANG] = ACTIONS(3601), - [anon_sym_TILDE] = ACTIONS(3599), - [anon_sym_BANG_TILDE] = ACTIONS(3599), - [anon_sym_EQ_TILDE] = ACTIONS(3599), - [anon_sym_AMP_STAR] = ACTIONS(3601), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3599), - [anon_sym_with] = ACTIONS(3601), - [anon_sym_yield] = ACTIONS(3601), - [anon_sym_typeof] = ACTIONS(3601), - [anon_sym_sizeof] = ACTIONS(3601), - [anon_sym_instance_sizeof] = ACTIONS(3601), - [anon_sym_offsetof] = ACTIONS(3601), - [sym__constant_segment] = ACTIONS(3599), - [anon_sym_COLON_COLON] = ACTIONS(3599), - [anon_sym___LINE__] = ACTIONS(3601), - [anon_sym___END_LINE__] = ACTIONS(3601), - [anon_sym___FILE__] = ACTIONS(3601), - [anon_sym___DIR__] = ACTIONS(3601), - [sym_special_variable] = ACTIONS(3599), - [sym_global_match_data_index] = ACTIONS(3599), - [sym_identifier_method_call] = ACTIONS(3599), - [sym_instance_var] = ACTIONS(3599), - [sym_class_var] = ACTIONS(3599), - [sym_self] = ACTIONS(3601), - [anon_sym_LPAREN2] = ACTIONS(3599), - [anon_sym_QMARK] = ACTIONS(3599), - [sym_private] = ACTIONS(3601), - [sym_protected] = ACTIONS(3601), - [anon_sym_AMP_AMP] = ACTIONS(3599), - [anon_sym_PIPE_PIPE] = ACTIONS(3599), - [anon_sym_do] = ACTIONS(3601), - [anon_sym_begin] = ACTIONS(3601), - [anon_sym_while] = ACTIONS(3601), - [anon_sym_until] = ACTIONS(3601), - [anon_sym_case] = ACTIONS(3601), - [anon_sym_select] = ACTIONS(3601), - [aux_sym_asm_token1] = ACTIONS(3599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3599), - [sym__start_of_hash_or_tuple] = ACTIONS(3599), - [sym__start_of_named_tuple] = ACTIONS(3599), - [sym__start_of_index_operator] = ACTIONS(3599), - [sym__end_of_with_expression] = ACTIONS(3599), - [sym_unary_plus] = ACTIONS(3599), - [sym_unary_minus] = ACTIONS(3599), - [sym_binary_plus] = ACTIONS(3599), - [sym_binary_minus] = ACTIONS(3599), - [sym_unary_wrapping_plus] = ACTIONS(3599), - [sym_unary_wrapping_minus] = ACTIONS(3599), - [sym_binary_wrapping_plus] = ACTIONS(3599), - [sym_binary_wrapping_minus] = ACTIONS(3599), - [sym__unary_star] = ACTIONS(3599), - [sym__binary_star] = ACTIONS(3599), - [sym__unary_double_star] = ACTIONS(3599), - [sym__binary_double_star] = ACTIONS(3599), - [sym__block_ampersand] = ACTIONS(3599), - [sym_binary_ampersand] = ACTIONS(3599), - [sym__beginless_range_operator] = ACTIONS(3599), - [sym__regex_start] = ACTIONS(3599), - [sym__binary_slash] = ACTIONS(3599), - [sym__binary_double_slash] = ACTIONS(3599), - [sym__regular_if_keyword] = ACTIONS(3599), - [sym__regular_unless_keyword] = ACTIONS(3599), - [sym__modulo_operator] = ACTIONS(3599), - [sym__string_literal_start] = ACTIONS(3599), - [sym__string_percent_literal_start] = ACTIONS(3599), - [sym__command_percent_literal_start] = ACTIONS(3599), - [sym__string_array_percent_literal_start] = ACTIONS(3599), - [sym__symbol_array_percent_literal_start] = ACTIONS(3599), - [sym__regex_percent_literal_start] = ACTIONS(3599), - [sym_heredoc_start] = ACTIONS(3599), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3599), + [1998] = { + [sym_heredoc_body] = STATE(1998), + [sym_identifier] = ACTIONS(3599), + [anon_sym_SEMI] = ACTIONS(3597), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3597), + [anon_sym_GT_GT] = ACTIONS(3597), + [anon_sym_LT_LT] = ACTIONS(3597), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_then] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_break] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1979] = { - [sym_heredoc_body] = STATE(1979), + [1999] = { + [sym_heredoc_body] = STATE(1999), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_RBRACK] = ACTIONS(3599), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3597), + [anon_sym_GT_GT] = ACTIONS(3597), + [anon_sym_LT_LT] = ACTIONS(3597), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_RBRACK_QMARK] = ACTIONS(3597), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), + }, + [2000] = { + [sym_heredoc_body] = STATE(2000), [sym_identifier] = ACTIONS(4624), [anon_sym_LPAREN] = ACTIONS(4624), [sym_comment] = ACTIONS(5), @@ -331679,6 +334708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(4622), [anon_sym_LBRACK] = ACTIONS(4622), [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_RBRACK] = ACTIONS(4624), [anon_sym_DOT_DOT] = ACTIONS(4624), [anon_sym_DOT_DOT_DOT] = ACTIONS(4622), [anon_sym_DASH_GT] = ACTIONS(4622), @@ -331723,6 +334753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(4622), [sym_private] = ACTIONS(4624), [sym_protected] = ACTIONS(4624), + [anon_sym_RBRACK_QMARK] = ACTIONS(4622), [anon_sym_AMP_AMP] = ACTIONS(4622), [anon_sym_PIPE_PIPE] = ACTIONS(4622), [anon_sym_do] = ACTIONS(4624), @@ -331737,7 +334768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__start_of_hash_or_tuple] = ACTIONS(4622), [sym__start_of_named_tuple] = ACTIONS(4622), [sym__start_of_index_operator] = ACTIONS(4622), - [sym__end_of_with_expression] = ACTIONS(4622), [sym_unary_plus] = ACTIONS(4622), [sym_unary_minus] = ACTIONS(4622), [sym_binary_plus] = ACTIONS(4622), @@ -331769,22 +334799,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(4622), }, - [1980] = { - [sym_heredoc_body] = STATE(1980), - [sym_typeof] = STATE(2017), - [sym_constant] = STATE(2002), - [sym__type] = STATE(2019), - [sym_class_type] = STATE(2017), - [sym_union_type] = STATE(2017), - [sym__parenthesized_type] = STATE(2017), - [sym_no_args_proc_type] = STATE(2017), - [sym_parenthesized_proc_type] = STATE(2017), - [sym_tuple_type] = STATE(2017), - [sym_named_tuple_type] = STATE(2017), - [sym_generic_instance_type] = STATE(2017), - [sym_nilable_type] = STATE(2017), - [sym_pointer_type] = STATE(2017), - [sym_static_array_type] = STATE(2017), + [2001] = { + [sym_heredoc_body] = STATE(2001), + [sym_identifier] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4620), + [sym_true] = ACTIONS(4620), + [sym_false] = ACTIONS(4620), + [aux_sym_integer_token2] = ACTIONS(4620), + [aux_sym_float_token2] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4618), + [sym_operator_symbol] = ACTIONS(4618), + [sym_unquoted_symbol] = ACTIONS(4618), + [anon_sym_COLON_DQUOTE] = ACTIONS(4618), + [anon_sym_BQUOTE] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4618), + [anon_sym_COMMA] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4618), + [anon_sym_DASH_GT] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), + [anon_sym_PIPE] = ACTIONS(4620), + [anon_sym_CARET] = ACTIONS(4618), + [anon_sym_GT_GT] = ACTIONS(4618), + [anon_sym_LT_LT] = ACTIONS(4618), + [anon_sym_EQ_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4618), + [anon_sym_LT_EQ_GT] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4620), + [anon_sym_TILDE] = ACTIONS(4618), + [anon_sym_BANG_TILDE] = ACTIONS(4618), + [anon_sym_EQ_TILDE] = ACTIONS(4618), + [anon_sym_AMP_STAR] = ACTIONS(4620), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4618), + [anon_sym_with] = ACTIONS(4620), + [anon_sym_yield] = ACTIONS(4620), + [anon_sym_typeof] = ACTIONS(4620), + [anon_sym_sizeof] = ACTIONS(4620), + [anon_sym_instance_sizeof] = ACTIONS(4620), + [anon_sym_offsetof] = ACTIONS(4620), + [sym__constant_segment] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4618), + [anon_sym___LINE__] = ACTIONS(4620), + [anon_sym___END_LINE__] = ACTIONS(4620), + [anon_sym___FILE__] = ACTIONS(4620), + [anon_sym___DIR__] = ACTIONS(4620), + [sym_special_variable] = ACTIONS(4618), + [sym_global_match_data_index] = ACTIONS(4618), + [sym_identifier_method_call] = ACTIONS(4618), + [sym_instance_var] = ACTIONS(4618), + [sym_class_var] = ACTIONS(4618), + [sym_self] = ACTIONS(4620), + [anon_sym_LPAREN2] = ACTIONS(4618), + [anon_sym_QMARK] = ACTIONS(4618), + [sym_private] = ACTIONS(4620), + [sym_protected] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4618), + [anon_sym_PIPE_PIPE] = ACTIONS(4618), + [anon_sym_do] = ACTIONS(4620), + [anon_sym_begin] = ACTIONS(4620), + [anon_sym_while] = ACTIONS(4620), + [anon_sym_until] = ACTIONS(4620), + [anon_sym_case] = ACTIONS(4620), + [anon_sym_select] = ACTIONS(4620), + [aux_sym_asm_token1] = ACTIONS(4618), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4618), + [sym__start_of_hash_or_tuple] = ACTIONS(4618), + [sym__start_of_named_tuple] = ACTIONS(4618), + [sym__start_of_index_operator] = ACTIONS(4618), + [sym__end_of_with_expression] = ACTIONS(4618), + [sym_unary_plus] = ACTIONS(4618), + [sym_unary_minus] = ACTIONS(4618), + [sym_binary_plus] = ACTIONS(4618), + [sym_binary_minus] = ACTIONS(4618), + [sym_unary_wrapping_plus] = ACTIONS(4618), + [sym_unary_wrapping_minus] = ACTIONS(4618), + [sym_binary_wrapping_plus] = ACTIONS(4618), + [sym_binary_wrapping_minus] = ACTIONS(4618), + [sym__unary_star] = ACTIONS(4618), + [sym__binary_star] = ACTIONS(4618), + [sym__unary_double_star] = ACTIONS(4618), + [sym__binary_double_star] = ACTIONS(4618), + [sym__block_ampersand] = ACTIONS(4618), + [sym_binary_ampersand] = ACTIONS(4618), + [sym__beginless_range_operator] = ACTIONS(4618), + [sym__regex_start] = ACTIONS(4618), + [sym__binary_slash] = ACTIONS(4618), + [sym__binary_double_slash] = ACTIONS(4618), + [sym__regular_if_keyword] = ACTIONS(4618), + [sym__regular_unless_keyword] = ACTIONS(4618), + [sym__modulo_operator] = ACTIONS(4618), + [sym__string_literal_start] = ACTIONS(4618), + [sym__string_percent_literal_start] = ACTIONS(4618), + [sym__command_percent_literal_start] = ACTIONS(4618), + [sym__string_array_percent_literal_start] = ACTIONS(4618), + [sym__symbol_array_percent_literal_start] = ACTIONS(4618), + [sym__regex_percent_literal_start] = ACTIONS(4618), + [sym_heredoc_start] = ACTIONS(4618), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4618), + }, + [2002] = { + [sym_heredoc_body] = STATE(2002), + [sym_typeof] = STATE(2038), + [sym_constant] = STATE(2025), + [sym__type] = STATE(2043), + [sym_class_type] = STATE(2038), + [sym_union_type] = STATE(2038), + [sym__parenthesized_type] = STATE(2038), + [sym_no_args_proc_type] = STATE(2038), + [sym_parenthesized_proc_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_named_tuple_type] = STATE(2038), + [sym_generic_instance_type] = STATE(2038), + [sym_nilable_type] = STATE(2038), + [sym_pointer_type] = STATE(2038), + [sym_static_array_type] = STATE(2038), [sym_identifier] = ACTIONS(4698), [anon_sym_SEMI] = ACTIONS(4700), [anon_sym_LPAREN] = ACTIONS(4702), @@ -331876,22 +335014,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [1981] = { - [sym_heredoc_body] = STATE(1981), - [sym_typeof] = STATE(2017), - [sym_constant] = STATE(2002), - [sym__type] = STATE(2010), - [sym_class_type] = STATE(2017), - [sym_union_type] = STATE(2017), - [sym__parenthesized_type] = STATE(2017), - [sym_no_args_proc_type] = STATE(2017), - [sym_parenthesized_proc_type] = STATE(2017), - [sym_tuple_type] = STATE(2017), - [sym_named_tuple_type] = STATE(2017), - [sym_generic_instance_type] = STATE(2017), - [sym_nilable_type] = STATE(2017), - [sym_pointer_type] = STATE(2017), - [sym_static_array_type] = STATE(2017), + [2003] = { + [sym_heredoc_body] = STATE(2003), + [sym_typeof] = STATE(2038), + [sym_constant] = STATE(2025), + [sym__type] = STATE(2030), + [sym_class_type] = STATE(2038), + [sym_union_type] = STATE(2038), + [sym__parenthesized_type] = STATE(2038), + [sym_no_args_proc_type] = STATE(2038), + [sym_parenthesized_proc_type] = STATE(2038), + [sym_tuple_type] = STATE(2038), + [sym_named_tuple_type] = STATE(2038), + [sym_generic_instance_type] = STATE(2038), + [sym_nilable_type] = STATE(2038), + [sym_pointer_type] = STATE(2038), + [sym_static_array_type] = STATE(2038), [sym_identifier] = ACTIONS(4720), [anon_sym_SEMI] = ACTIONS(4722), [anon_sym_LPAREN] = ACTIONS(4724), @@ -331983,238 +335121,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, - [1982] = { - [sym_heredoc_body] = STATE(1982), - [sym_identifier] = ACTIONS(4620), - [anon_sym_LPAREN] = ACTIONS(4620), + [2004] = { + [sym_heredoc_body] = STATE(2004), + [sym_identifier] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4624), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4620), - [sym_true] = ACTIONS(4620), - [sym_false] = ACTIONS(4620), - [aux_sym_integer_token2] = ACTIONS(4620), - [aux_sym_float_token2] = ACTIONS(4618), - [anon_sym_SQUOTE] = ACTIONS(4618), - [sym_operator_symbol] = ACTIONS(4618), - [sym_unquoted_symbol] = ACTIONS(4618), - [anon_sym_COLON_DQUOTE] = ACTIONS(4618), - [anon_sym_BQUOTE] = ACTIONS(4618), - [anon_sym_LBRACK] = ACTIONS(4618), - [anon_sym_COMMA] = ACTIONS(4618), - [anon_sym_DOT_DOT] = ACTIONS(4620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4618), - [anon_sym_DASH_GT] = ACTIONS(4618), - [anon_sym_DOT] = ACTIONS(4620), - [anon_sym_LT] = ACTIONS(4620), - [anon_sym_PIPE] = ACTIONS(4620), - [anon_sym_CARET] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(4618), - [anon_sym_LT_LT] = ACTIONS(4618), - [anon_sym_EQ_EQ] = ACTIONS(4620), - [anon_sym_BANG_EQ] = ACTIONS(4618), - [anon_sym_LT_EQ] = ACTIONS(4620), - [anon_sym_GT] = ACTIONS(4620), - [anon_sym_GT_EQ] = ACTIONS(4618), - [anon_sym_LT_EQ_GT] = ACTIONS(4618), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4618), - [anon_sym_BANG] = ACTIONS(4620), - [anon_sym_TILDE] = ACTIONS(4618), - [anon_sym_BANG_TILDE] = ACTIONS(4618), - [anon_sym_EQ_TILDE] = ACTIONS(4618), - [anon_sym_AMP_STAR] = ACTIONS(4620), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4618), - [anon_sym_with] = ACTIONS(4620), - [anon_sym_yield] = ACTIONS(4620), - [anon_sym_typeof] = ACTIONS(4620), - [anon_sym_sizeof] = ACTIONS(4620), - [anon_sym_instance_sizeof] = ACTIONS(4620), - [anon_sym_offsetof] = ACTIONS(4620), - [sym__constant_segment] = ACTIONS(4618), - [anon_sym_COLON_COLON] = ACTIONS(4618), - [anon_sym___LINE__] = ACTIONS(4620), - [anon_sym___END_LINE__] = ACTIONS(4620), - [anon_sym___FILE__] = ACTIONS(4620), - [anon_sym___DIR__] = ACTIONS(4620), - [sym_special_variable] = ACTIONS(4618), - [sym_global_match_data_index] = ACTIONS(4618), - [sym_identifier_method_call] = ACTIONS(4618), - [sym_instance_var] = ACTIONS(4618), - [sym_class_var] = ACTIONS(4618), - [sym_self] = ACTIONS(4620), - [anon_sym_LPAREN2] = ACTIONS(4618), - [anon_sym_QMARK] = ACTIONS(4618), - [sym_private] = ACTIONS(4620), - [sym_protected] = ACTIONS(4620), - [anon_sym_AMP_AMP] = ACTIONS(4618), - [anon_sym_PIPE_PIPE] = ACTIONS(4618), - [anon_sym_do] = ACTIONS(4620), - [anon_sym_begin] = ACTIONS(4620), - [anon_sym_while] = ACTIONS(4620), - [anon_sym_until] = ACTIONS(4620), - [anon_sym_case] = ACTIONS(4620), - [anon_sym_select] = ACTIONS(4620), - [aux_sym_asm_token1] = ACTIONS(4618), + [sym_nil] = ACTIONS(4624), + [sym_true] = ACTIONS(4624), + [sym_false] = ACTIONS(4624), + [aux_sym_integer_token2] = ACTIONS(4624), + [aux_sym_float_token2] = ACTIONS(4622), + [anon_sym_SQUOTE] = ACTIONS(4622), + [sym_operator_symbol] = ACTIONS(4622), + [sym_unquoted_symbol] = ACTIONS(4622), + [anon_sym_COLON_DQUOTE] = ACTIONS(4622), + [anon_sym_BQUOTE] = ACTIONS(4622), + [anon_sym_LBRACK] = ACTIONS(4622), + [anon_sym_COMMA] = ACTIONS(4622), + [anon_sym_DOT_DOT] = ACTIONS(4624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4622), + [anon_sym_DASH_GT] = ACTIONS(4622), + [anon_sym_DOT] = ACTIONS(4624), + [anon_sym_LT] = ACTIONS(4624), + [anon_sym_PIPE] = ACTIONS(4624), + [anon_sym_CARET] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(4622), + [anon_sym_LT_LT] = ACTIONS(4622), + [anon_sym_EQ_EQ] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(4622), + [anon_sym_LT_EQ] = ACTIONS(4624), + [anon_sym_GT] = ACTIONS(4624), + [anon_sym_GT_EQ] = ACTIONS(4622), + [anon_sym_LT_EQ_GT] = ACTIONS(4622), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4622), + [anon_sym_BANG] = ACTIONS(4624), + [anon_sym_TILDE] = ACTIONS(4622), + [anon_sym_BANG_TILDE] = ACTIONS(4622), + [anon_sym_EQ_TILDE] = ACTIONS(4622), + [anon_sym_AMP_STAR] = ACTIONS(4624), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4622), + [anon_sym_with] = ACTIONS(4624), + [anon_sym_yield] = ACTIONS(4624), + [anon_sym_typeof] = ACTIONS(4624), + [anon_sym_sizeof] = ACTIONS(4624), + [anon_sym_instance_sizeof] = ACTIONS(4624), + [anon_sym_offsetof] = ACTIONS(4624), + [sym__constant_segment] = ACTIONS(4622), + [anon_sym_COLON_COLON] = ACTIONS(4622), + [anon_sym___LINE__] = ACTIONS(4624), + [anon_sym___END_LINE__] = ACTIONS(4624), + [anon_sym___FILE__] = ACTIONS(4624), + [anon_sym___DIR__] = ACTIONS(4624), + [sym_special_variable] = ACTIONS(4622), + [sym_global_match_data_index] = ACTIONS(4622), + [sym_identifier_method_call] = ACTIONS(4622), + [sym_instance_var] = ACTIONS(4622), + [sym_class_var] = ACTIONS(4622), + [sym_self] = ACTIONS(4624), + [anon_sym_LPAREN2] = ACTIONS(4622), + [anon_sym_QMARK] = ACTIONS(4622), + [sym_private] = ACTIONS(4624), + [sym_protected] = ACTIONS(4624), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4622), + [anon_sym_do] = ACTIONS(4624), + [anon_sym_begin] = ACTIONS(4624), + [anon_sym_while] = ACTIONS(4624), + [anon_sym_until] = ACTIONS(4624), + [anon_sym_case] = ACTIONS(4624), + [anon_sym_select] = ACTIONS(4624), + [aux_sym_asm_token1] = ACTIONS(4622), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4618), - [sym__start_of_hash_or_tuple] = ACTIONS(4618), - [sym__start_of_named_tuple] = ACTIONS(4618), - [sym__start_of_index_operator] = ACTIONS(4618), - [sym__end_of_with_expression] = ACTIONS(4618), - [sym_unary_plus] = ACTIONS(4618), - [sym_unary_minus] = ACTIONS(4618), - [sym_binary_plus] = ACTIONS(4618), - [sym_binary_minus] = ACTIONS(4618), - [sym_unary_wrapping_plus] = ACTIONS(4618), - [sym_unary_wrapping_minus] = ACTIONS(4618), - [sym_binary_wrapping_plus] = ACTIONS(4618), - [sym_binary_wrapping_minus] = ACTIONS(4618), - [sym__unary_star] = ACTIONS(4618), - [sym__binary_star] = ACTIONS(4618), - [sym__unary_double_star] = ACTIONS(4618), - [sym__binary_double_star] = ACTIONS(4618), - [sym__block_ampersand] = ACTIONS(4618), - [sym_binary_ampersand] = ACTIONS(4618), - [sym__beginless_range_operator] = ACTIONS(4618), - [sym__regex_start] = ACTIONS(4618), - [sym__binary_slash] = ACTIONS(4618), - [sym__binary_double_slash] = ACTIONS(4618), - [sym__regular_if_keyword] = ACTIONS(4618), - [sym__regular_unless_keyword] = ACTIONS(4618), - [sym__modulo_operator] = ACTIONS(4618), - [sym__string_literal_start] = ACTIONS(4618), - [sym__string_percent_literal_start] = ACTIONS(4618), - [sym__command_percent_literal_start] = ACTIONS(4618), - [sym__string_array_percent_literal_start] = ACTIONS(4618), - [sym__symbol_array_percent_literal_start] = ACTIONS(4618), - [sym__regex_percent_literal_start] = ACTIONS(4618), - [sym_heredoc_start] = ACTIONS(4618), + [sym__start_of_brace_block] = ACTIONS(4622), + [sym__start_of_hash_or_tuple] = ACTIONS(4622), + [sym__start_of_named_tuple] = ACTIONS(4622), + [sym__start_of_index_operator] = ACTIONS(4622), + [sym__end_of_with_expression] = ACTIONS(4622), + [sym_unary_plus] = ACTIONS(4622), + [sym_unary_minus] = ACTIONS(4622), + [sym_binary_plus] = ACTIONS(4622), + [sym_binary_minus] = ACTIONS(4622), + [sym_unary_wrapping_plus] = ACTIONS(4622), + [sym_unary_wrapping_minus] = ACTIONS(4622), + [sym_binary_wrapping_plus] = ACTIONS(4622), + [sym_binary_wrapping_minus] = ACTIONS(4622), + [sym__unary_star] = ACTIONS(4622), + [sym__binary_star] = ACTIONS(4622), + [sym__unary_double_star] = ACTIONS(4622), + [sym__binary_double_star] = ACTIONS(4622), + [sym__block_ampersand] = ACTIONS(4622), + [sym_binary_ampersand] = ACTIONS(4622), + [sym__beginless_range_operator] = ACTIONS(4622), + [sym__regex_start] = ACTIONS(4622), + [sym__binary_slash] = ACTIONS(4622), + [sym__binary_double_slash] = ACTIONS(4622), + [sym__regular_if_keyword] = ACTIONS(4622), + [sym__regular_unless_keyword] = ACTIONS(4622), + [sym__modulo_operator] = ACTIONS(4622), + [sym__string_literal_start] = ACTIONS(4622), + [sym__string_percent_literal_start] = ACTIONS(4622), + [sym__command_percent_literal_start] = ACTIONS(4622), + [sym__string_array_percent_literal_start] = ACTIONS(4622), + [sym__symbol_array_percent_literal_start] = ACTIONS(4622), + [sym__regex_percent_literal_start] = ACTIONS(4622), + [sym_heredoc_start] = ACTIONS(4622), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4618), + [sym__start_of_parenless_args] = ACTIONS(4622), }, - [1983] = { - [sym_heredoc_body] = STATE(1983), - [sym_typeof] = STATE(2084), - [sym_constant] = STATE(2052), - [sym__type] = STATE(2050), - [sym_class_type] = STATE(2084), - [sym_union_type] = STATE(2084), - [sym__parenthesized_type] = STATE(2084), - [sym_no_args_proc_type] = STATE(2084), - [sym_parenthesized_proc_type] = STATE(2084), - [sym_tuple_type] = STATE(2084), - [sym_named_tuple_type] = STATE(2084), - [sym_generic_instance_type] = STATE(2084), - [sym_nilable_type] = STATE(2084), - [sym_pointer_type] = STATE(2084), - [sym_static_array_type] = STATE(2084), - [sym_identifier] = ACTIONS(4654), - [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(4742), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4654), - [sym_true] = ACTIONS(4654), - [sym_false] = ACTIONS(4654), - [aux_sym_integer_token2] = ACTIONS(4654), - [aux_sym_float_token2] = ACTIONS(4656), - [anon_sym_SQUOTE] = ACTIONS(4656), - [sym_operator_symbol] = ACTIONS(4656), - [sym_unquoted_symbol] = ACTIONS(4656), - [anon_sym_COLON_DQUOTE] = ACTIONS(4656), - [anon_sym_BQUOTE] = ACTIONS(4656), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(4745), - [anon_sym_DOT] = ACTIONS(4656), - [anon_sym_annotation] = ACTIONS(4654), - [anon_sym_end] = ACTIONS(4654), - [anon_sym_AT_LBRACK] = ACTIONS(4656), - [anon_sym_module] = ACTIONS(4654), - [anon_sym_abstract] = ACTIONS(4654), - [anon_sym_class] = ACTIONS(4654), - [anon_sym_struct] = ACTIONS(4654), - [anon_sym_enum] = ACTIONS(4654), - [anon_sym_lib] = ACTIONS(4654), - [anon_sym_fun] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4656), - [anon_sym_BANG] = ACTIONS(4656), - [anon_sym_TILDE] = ACTIONS(4656), - [anon_sym_def] = ACTIONS(4654), - [anon_sym_include] = ACTIONS(4654), - [anon_sym_extend] = ACTIONS(4654), - [anon_sym_return] = ACTIONS(4654), - [anon_sym_next] = ACTIONS(4654), - [anon_sym_break] = ACTIONS(4654), - [anon_sym_with] = ACTIONS(4654), - [anon_sym_yield] = ACTIONS(4654), - [anon_sym_typeof] = ACTIONS(4748), - [anon_sym_sizeof] = ACTIONS(4654), - [anon_sym_instance_sizeof] = ACTIONS(4654), - [anon_sym_offsetof] = ACTIONS(4654), - [sym__constant_segment] = ACTIONS(4751), - [anon_sym_COLON_COLON] = ACTIONS(4754), - [anon_sym___LINE__] = ACTIONS(4654), - [anon_sym___END_LINE__] = ACTIONS(4654), - [anon_sym___FILE__] = ACTIONS(4654), - [anon_sym___DIR__] = ACTIONS(4654), - [sym_special_variable] = ACTIONS(4656), - [sym_global_match_data_index] = ACTIONS(4656), - [sym_identifier_method_call] = ACTIONS(4656), - [sym_instance_var] = ACTIONS(4656), - [sym_class_var] = ACTIONS(4656), - [sym_self] = ACTIONS(4757), - [sym_underscore_type] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4656), - [sym_private] = ACTIONS(4654), - [sym_protected] = ACTIONS(4654), - [anon_sym_alias] = ACTIONS(4654), - [anon_sym_begin] = ACTIONS(4654), - [anon_sym_while] = ACTIONS(4654), - [anon_sym_until] = ACTIONS(4654), - [anon_sym_require] = ACTIONS(4654), - [anon_sym_case] = ACTIONS(4654), - [anon_sym_select] = ACTIONS(4654), - [aux_sym_asm_token1] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4656), - [sym__start_of_named_tuple] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(4762), - [sym__start_of_named_tuple_type] = ACTIONS(4764), - [sym_unary_plus] = ACTIONS(4656), - [sym_unary_minus] = ACTIONS(4656), - [sym_unary_wrapping_plus] = ACTIONS(4656), - [sym_unary_wrapping_minus] = ACTIONS(4656), - [sym__beginless_range_operator] = ACTIONS(4656), - [sym__regex_start] = ACTIONS(4656), - [sym__regular_if_keyword] = ACTIONS(4656), - [sym__regular_unless_keyword] = ACTIONS(4656), - [sym__string_literal_start] = ACTIONS(4656), - [sym__string_percent_literal_start] = ACTIONS(4656), - [sym__command_percent_literal_start] = ACTIONS(4656), - [sym__string_array_percent_literal_start] = ACTIONS(4656), - [sym__symbol_array_percent_literal_start] = ACTIONS(4656), - [sym__regex_percent_literal_start] = ACTIONS(4656), - [sym_heredoc_start] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), + [2005] = { + [sym_heredoc_body] = STATE(2005), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3599), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3599), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [aux_sym_integer_token2] = ACTIONS(3599), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3597), + [sym_operator_symbol] = ACTIONS(3597), + [sym_unquoted_symbol] = ACTIONS(3597), + [anon_sym_COLON_DQUOTE] = ACTIONS(3597), + [anon_sym_BQUOTE] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_COMMA] = ACTIONS(3597), + [anon_sym_DOT_DOT] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3597), + [anon_sym_DASH_GT] = ACTIONS(3597), + [anon_sym_DOT] = ACTIONS(3599), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_PIPE] = ACTIONS(3599), + [anon_sym_CARET] = ACTIONS(3597), + [anon_sym_GT_GT] = ACTIONS(3597), + [anon_sym_LT_LT] = ACTIONS(3597), + [anon_sym_EQ_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3597), + [anon_sym_LT_EQ_GT] = ACTIONS(3597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3597), + [anon_sym_BANG] = ACTIONS(3599), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_BANG_TILDE] = ACTIONS(3597), + [anon_sym_EQ_TILDE] = ACTIONS(3597), + [anon_sym_AMP_STAR] = ACTIONS(3599), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3597), + [anon_sym_with] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_typeof] = ACTIONS(3599), + [anon_sym_sizeof] = ACTIONS(3599), + [anon_sym_instance_sizeof] = ACTIONS(3599), + [anon_sym_offsetof] = ACTIONS(3599), + [sym__constant_segment] = ACTIONS(3597), + [anon_sym_COLON_COLON] = ACTIONS(3597), + [anon_sym___LINE__] = ACTIONS(3599), + [anon_sym___END_LINE__] = ACTIONS(3599), + [anon_sym___FILE__] = ACTIONS(3599), + [anon_sym___DIR__] = ACTIONS(3599), + [sym_special_variable] = ACTIONS(3597), + [sym_global_match_data_index] = ACTIONS(3597), + [sym_identifier_method_call] = ACTIONS(3597), + [sym_instance_var] = ACTIONS(3597), + [sym_class_var] = ACTIONS(3597), + [sym_self] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(3597), + [anon_sym_QMARK] = ACTIONS(3597), + [sym_private] = ACTIONS(3599), + [sym_protected] = ACTIONS(3599), + [anon_sym_AMP_AMP] = ACTIONS(3597), + [anon_sym_PIPE_PIPE] = ACTIONS(3597), + [anon_sym_do] = ACTIONS(3599), + [anon_sym_begin] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_until] = ACTIONS(3599), + [anon_sym_case] = ACTIONS(3599), + [anon_sym_select] = ACTIONS(3599), + [aux_sym_asm_token1] = ACTIONS(3597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3597), + [sym__start_of_hash_or_tuple] = ACTIONS(3597), + [sym__start_of_named_tuple] = ACTIONS(3597), + [sym__start_of_index_operator] = ACTIONS(3597), + [sym__end_of_with_expression] = ACTIONS(3597), + [sym_unary_plus] = ACTIONS(3597), + [sym_unary_minus] = ACTIONS(3597), + [sym_binary_plus] = ACTIONS(3597), + [sym_binary_minus] = ACTIONS(3597), + [sym_unary_wrapping_plus] = ACTIONS(3597), + [sym_unary_wrapping_minus] = ACTIONS(3597), + [sym_binary_wrapping_plus] = ACTIONS(3597), + [sym_binary_wrapping_minus] = ACTIONS(3597), + [sym__unary_star] = ACTIONS(3597), + [sym__binary_star] = ACTIONS(3597), + [sym__unary_double_star] = ACTIONS(3597), + [sym__binary_double_star] = ACTIONS(3597), + [sym__block_ampersand] = ACTIONS(3597), + [sym_binary_ampersand] = ACTIONS(3597), + [sym__beginless_range_operator] = ACTIONS(3597), + [sym__regex_start] = ACTIONS(3597), + [sym__binary_slash] = ACTIONS(3597), + [sym__binary_double_slash] = ACTIONS(3597), + [sym__regular_if_keyword] = ACTIONS(3597), + [sym__regular_unless_keyword] = ACTIONS(3597), + [sym__modulo_operator] = ACTIONS(3597), + [sym__string_literal_start] = ACTIONS(3597), + [sym__string_percent_literal_start] = ACTIONS(3597), + [sym__command_percent_literal_start] = ACTIONS(3597), + [sym__string_array_percent_literal_start] = ACTIONS(3597), + [sym__symbol_array_percent_literal_start] = ACTIONS(3597), + [sym__regex_percent_literal_start] = ACTIONS(3597), + [sym_heredoc_start] = ACTIONS(3597), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3597), }, - [1984] = { - [sym_heredoc_body] = STATE(1984), - [sym_typeof] = STATE(2084), - [sym_constant] = STATE(2052), - [sym__type] = STATE(2056), - [sym_class_type] = STATE(2084), - [sym_union_type] = STATE(2084), - [sym__parenthesized_type] = STATE(2084), - [sym_no_args_proc_type] = STATE(2084), - [sym_parenthesized_proc_type] = STATE(2084), - [sym_tuple_type] = STATE(2084), - [sym_named_tuple_type] = STATE(2084), - [sym_generic_instance_type] = STATE(2084), - [sym_nilable_type] = STATE(2084), - [sym_pointer_type] = STATE(2084), - [sym_static_array_type] = STATE(2084), + [2006] = { + [sym_heredoc_body] = STATE(2006), + [sym_typeof] = STATE(2099), + [sym_constant] = STATE(2076), + [sym__type] = STATE(2074), + [sym_class_type] = STATE(2099), + [sym_union_type] = STATE(2099), + [sym__parenthesized_type] = STATE(2099), + [sym_no_args_proc_type] = STATE(2099), + [sym_parenthesized_proc_type] = STATE(2099), + [sym_tuple_type] = STATE(2099), + [sym_named_tuple_type] = STATE(2099), + [sym_generic_instance_type] = STATE(2099), + [sym_nilable_type] = STATE(2099), + [sym_pointer_type] = STATE(2099), + [sym_static_array_type] = STATE(2099), [sym_identifier] = ACTIONS(4676), [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(4766), + [anon_sym_LPAREN] = ACTIONS(4742), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(4676), [sym_true] = ACTIONS(4676), @@ -332228,7 +335367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(4678), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(4769), + [anon_sym_DASH_GT] = ACTIONS(4745), [anon_sym_DOT] = ACTIONS(4678), [anon_sym_annotation] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4676), @@ -332252,12 +335391,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(4676), [anon_sym_with] = ACTIONS(4676), [anon_sym_yield] = ACTIONS(4676), - [anon_sym_typeof] = ACTIONS(4772), + [anon_sym_typeof] = ACTIONS(4748), [anon_sym_sizeof] = ACTIONS(4676), [anon_sym_instance_sizeof] = ACTIONS(4676), [anon_sym_offsetof] = ACTIONS(4676), - [sym__constant_segment] = ACTIONS(4775), - [anon_sym_COLON_COLON] = ACTIONS(4778), + [sym__constant_segment] = ACTIONS(4751), + [anon_sym_COLON_COLON] = ACTIONS(4754), [anon_sym___LINE__] = ACTIONS(4676), [anon_sym___END_LINE__] = ACTIONS(4676), [anon_sym___FILE__] = ACTIONS(4676), @@ -332267,7 +335406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier_method_call] = ACTIONS(4678), [sym_instance_var] = ACTIONS(4678), [sym_class_var] = ACTIONS(4678), - [sym_self] = ACTIONS(4781), + [sym_self] = ACTIONS(4757), [sym_underscore_type] = ACTIONS(4760), [anon_sym_QMARK] = ACTIONS(4678), [sym_private] = ACTIONS(4676), @@ -332302,25 +335441,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [1985] = { - [sym_heredoc_body] = STATE(1985), - [sym_typeof] = STATE(2084), - [sym_constant] = STATE(2052), - [sym__type] = STATE(2057), - [sym_class_type] = STATE(2084), - [sym_union_type] = STATE(2084), - [sym__parenthesized_type] = STATE(2084), - [sym_no_args_proc_type] = STATE(2084), - [sym_parenthesized_proc_type] = STATE(2084), - [sym_tuple_type] = STATE(2084), - [sym_named_tuple_type] = STATE(2084), - [sym_generic_instance_type] = STATE(2084), - [sym_nilable_type] = STATE(2084), - [sym_pointer_type] = STATE(2084), - [sym_static_array_type] = STATE(2084), + [2007] = { + [sym_heredoc_body] = STATE(2007), + [sym_typeof] = STATE(2099), + [sym_constant] = STATE(2076), + [sym__type] = STATE(2078), + [sym_class_type] = STATE(2099), + [sym_union_type] = STATE(2099), + [sym__parenthesized_type] = STATE(2099), + [sym_no_args_proc_type] = STATE(2099), + [sym_parenthesized_proc_type] = STATE(2099), + [sym_tuple_type] = STATE(2099), + [sym_named_tuple_type] = STATE(2099), + [sym_generic_instance_type] = STATE(2099), + [sym_nilable_type] = STATE(2099), + [sym_pointer_type] = STATE(2099), + [sym_static_array_type] = STATE(2099), [sym_identifier] = ACTIONS(4626), [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(4784), + [anon_sym_LPAREN] = ACTIONS(4766), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(4626), [sym_true] = ACTIONS(4626), @@ -332334,7 +335473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(4628), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(4787), + [anon_sym_DASH_GT] = ACTIONS(4769), [anon_sym_DOT] = ACTIONS(4628), [anon_sym_annotation] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4626), @@ -332358,12 +335497,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(4626), [anon_sym_with] = ACTIONS(4626), [anon_sym_yield] = ACTIONS(4626), - [anon_sym_typeof] = ACTIONS(4790), + [anon_sym_typeof] = ACTIONS(4772), [anon_sym_sizeof] = ACTIONS(4626), [anon_sym_instance_sizeof] = ACTIONS(4626), [anon_sym_offsetof] = ACTIONS(4626), - [sym__constant_segment] = ACTIONS(4793), - [anon_sym_COLON_COLON] = ACTIONS(4796), + [sym__constant_segment] = ACTIONS(4775), + [anon_sym_COLON_COLON] = ACTIONS(4778), [anon_sym___LINE__] = ACTIONS(4626), [anon_sym___END_LINE__] = ACTIONS(4626), [anon_sym___FILE__] = ACTIONS(4626), @@ -332373,7 +335512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier_method_call] = ACTIONS(4628), [sym_instance_var] = ACTIONS(4628), [sym_class_var] = ACTIONS(4628), - [sym_self] = ACTIONS(4799), + [sym_self] = ACTIONS(4781), [sym_underscore_type] = ACTIONS(4760), [anon_sym_QMARK] = ACTIONS(4628), [sym_private] = ACTIONS(4626), @@ -332408,127 +335547,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [1986] = { - [sym_heredoc_body] = STATE(1986), - [sym_typeof] = STATE(2084), - [sym_constant] = STATE(2052), - [sym__type] = STATE(2071), - [sym_class_type] = STATE(2084), - [sym_union_type] = STATE(2084), - [sym__parenthesized_type] = STATE(2084), - [sym_no_args_proc_type] = STATE(2084), - [sym_parenthesized_proc_type] = STATE(2084), - [sym_tuple_type] = STATE(2084), - [sym_named_tuple_type] = STATE(2084), - [sym_generic_instance_type] = STATE(2084), - [sym_nilable_type] = STATE(2084), - [sym_pointer_type] = STATE(2084), - [sym_static_array_type] = STATE(2084), - [sym_identifier] = ACTIONS(4720), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(4802), + [2008] = { + [sym_heredoc_body] = STATE(2008), + [sym_typeof] = STATE(2099), + [sym_constant] = STATE(2076), + [sym__type] = STATE(2077), + [sym_class_type] = STATE(2099), + [sym_union_type] = STATE(2099), + [sym__parenthesized_type] = STATE(2099), + [sym_no_args_proc_type] = STATE(2099), + [sym_parenthesized_proc_type] = STATE(2099), + [sym_tuple_type] = STATE(2099), + [sym_named_tuple_type] = STATE(2099), + [sym_generic_instance_type] = STATE(2099), + [sym_nilable_type] = STATE(2099), + [sym_pointer_type] = STATE(2099), + [sym_static_array_type] = STATE(2099), + [sym_identifier] = ACTIONS(4654), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(4784), [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_DASH_GT] = ACTIONS(4805), - [anon_sym_annotation] = ACTIONS(4720), - [anon_sym_end] = ACTIONS(4720), - [anon_sym_AT_LBRACK] = ACTIONS(4722), - [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_lib] = ACTIONS(4720), - [anon_sym_fun] = ACTIONS(4720), - [anon_sym_STAR] = ACTIONS(4722), - [anon_sym_BANG] = ACTIONS(4722), - [anon_sym_TILDE] = ACTIONS(4722), - [anon_sym_def] = 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(4808), - [anon_sym_sizeof] = ACTIONS(4720), - [anon_sym_instance_sizeof] = ACTIONS(4720), - [anon_sym_offsetof] = ACTIONS(4720), - [sym__constant_segment] = ACTIONS(4811), - [anon_sym_COLON_COLON] = ACTIONS(4814), - [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_global_match_data_index] = ACTIONS(4722), - [sym_identifier_method_call] = ACTIONS(4722), - [sym_instance_var] = ACTIONS(4722), - [sym_class_var] = ACTIONS(4722), - [sym_self] = ACTIONS(4817), + [sym_nil] = ACTIONS(4654), + [sym_true] = ACTIONS(4654), + [sym_false] = ACTIONS(4654), + [aux_sym_integer_token2] = ACTIONS(4654), + [aux_sym_float_token2] = ACTIONS(4656), + [anon_sym_SQUOTE] = ACTIONS(4656), + [sym_operator_symbol] = ACTIONS(4656), + [sym_unquoted_symbol] = ACTIONS(4656), + [anon_sym_COLON_DQUOTE] = ACTIONS(4656), + [anon_sym_BQUOTE] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(4787), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_annotation] = ACTIONS(4654), + [anon_sym_end] = ACTIONS(4654), + [anon_sym_AT_LBRACK] = ACTIONS(4656), + [anon_sym_module] = ACTIONS(4654), + [anon_sym_abstract] = ACTIONS(4654), + [anon_sym_class] = ACTIONS(4654), + [anon_sym_struct] = ACTIONS(4654), + [anon_sym_enum] = ACTIONS(4654), + [anon_sym_lib] = ACTIONS(4654), + [anon_sym_fun] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(4656), + [anon_sym_TILDE] = ACTIONS(4656), + [anon_sym_def] = ACTIONS(4654), + [anon_sym_include] = ACTIONS(4654), + [anon_sym_extend] = ACTIONS(4654), + [anon_sym_return] = ACTIONS(4654), + [anon_sym_next] = ACTIONS(4654), + [anon_sym_break] = ACTIONS(4654), + [anon_sym_with] = ACTIONS(4654), + [anon_sym_yield] = ACTIONS(4654), + [anon_sym_typeof] = ACTIONS(4790), + [anon_sym_sizeof] = ACTIONS(4654), + [anon_sym_instance_sizeof] = ACTIONS(4654), + [anon_sym_offsetof] = ACTIONS(4654), + [sym__constant_segment] = ACTIONS(4793), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym___LINE__] = ACTIONS(4654), + [anon_sym___END_LINE__] = ACTIONS(4654), + [anon_sym___FILE__] = ACTIONS(4654), + [anon_sym___DIR__] = ACTIONS(4654), + [sym_special_variable] = ACTIONS(4656), + [sym_global_match_data_index] = ACTIONS(4656), + [sym_identifier_method_call] = ACTIONS(4656), + [sym_instance_var] = ACTIONS(4656), + [sym_class_var] = ACTIONS(4656), + [sym_self] = ACTIONS(4799), [sym_underscore_type] = ACTIONS(4760), - [sym_private] = ACTIONS(4720), - [sym_protected] = ACTIONS(4720), - [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), - [aux_sym_asm_token1] = ACTIONS(4722), + [anon_sym_QMARK] = ACTIONS(4656), + [sym_private] = ACTIONS(4654), + [sym_protected] = ACTIONS(4654), + [anon_sym_alias] = ACTIONS(4654), + [anon_sym_begin] = ACTIONS(4654), + [anon_sym_while] = ACTIONS(4654), + [anon_sym_until] = ACTIONS(4654), + [anon_sym_require] = ACTIONS(4654), + [anon_sym_case] = ACTIONS(4654), + [anon_sym_select] = ACTIONS(4654), + [aux_sym_asm_token1] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4722), - [sym__start_of_named_tuple] = ACTIONS(4722), + [sym__start_of_hash_or_tuple] = ACTIONS(4656), + [sym__start_of_named_tuple] = ACTIONS(4656), [sym__start_of_tuple_type] = ACTIONS(4762), [sym__start_of_named_tuple_type] = ACTIONS(4764), - [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_unary_plus] = ACTIONS(4656), + [sym_unary_minus] = ACTIONS(4656), + [sym_unary_wrapping_plus] = ACTIONS(4656), + [sym_unary_wrapping_minus] = ACTIONS(4656), + [sym__beginless_range_operator] = ACTIONS(4656), + [sym__regex_start] = ACTIONS(4656), + [sym__regular_if_keyword] = ACTIONS(4656), + [sym__regular_unless_keyword] = ACTIONS(4656), + [sym__string_literal_start] = ACTIONS(4656), + [sym__string_percent_literal_start] = ACTIONS(4656), + [sym__command_percent_literal_start] = ACTIONS(4656), + [sym__string_array_percent_literal_start] = ACTIONS(4656), + [sym__symbol_array_percent_literal_start] = ACTIONS(4656), + [sym__regex_percent_literal_start] = ACTIONS(4656), + [sym_heredoc_start] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [1987] = { - [sym_heredoc_body] = STATE(1987), - [sym_typeof] = STATE(2084), - [sym_constant] = STATE(2052), - [sym__type] = STATE(2062), - [sym_class_type] = STATE(2084), - [sym_union_type] = STATE(2084), - [sym__parenthesized_type] = STATE(2084), - [sym_no_args_proc_type] = STATE(2084), - [sym_parenthesized_proc_type] = STATE(2084), - [sym_tuple_type] = STATE(2084), - [sym_named_tuple_type] = STATE(2084), - [sym_generic_instance_type] = STATE(2084), - [sym_nilable_type] = STATE(2084), - [sym_pointer_type] = STATE(2084), - [sym_static_array_type] = STATE(2084), + [2009] = { + [sym_heredoc_body] = STATE(2009), + [sym_typeof] = STATE(2099), + [sym_constant] = STATE(2076), + [sym__type] = STATE(2108), + [sym_class_type] = STATE(2099), + [sym_union_type] = STATE(2099), + [sym__parenthesized_type] = STATE(2099), + [sym_no_args_proc_type] = STATE(2099), + [sym_parenthesized_proc_type] = STATE(2099), + [sym_tuple_type] = STATE(2099), + [sym_named_tuple_type] = STATE(2099), + [sym_generic_instance_type] = STATE(2099), + [sym_nilable_type] = STATE(2099), + [sym_pointer_type] = STATE(2099), + [sym_static_array_type] = STATE(2099), [sym_identifier] = ACTIONS(4698), [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(4820), + [anon_sym_LPAREN] = ACTIONS(4802), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(4698), [sym_true] = ACTIONS(4698), @@ -332541,7 +335684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(4700), [anon_sym_BQUOTE] = ACTIONS(4700), [anon_sym_LBRACK] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(4823), + [anon_sym_DASH_GT] = ACTIONS(4805), [anon_sym_annotation] = ACTIONS(4698), [anon_sym_end] = ACTIONS(4698), [anon_sym_AT_LBRACK] = ACTIONS(4700), @@ -332563,12 +335706,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(4698), [anon_sym_with] = ACTIONS(4698), [anon_sym_yield] = ACTIONS(4698), - [anon_sym_typeof] = ACTIONS(4826), + [anon_sym_typeof] = ACTIONS(4808), [anon_sym_sizeof] = ACTIONS(4698), [anon_sym_instance_sizeof] = ACTIONS(4698), [anon_sym_offsetof] = ACTIONS(4698), - [sym__constant_segment] = ACTIONS(4829), - [anon_sym_COLON_COLON] = ACTIONS(4832), + [sym__constant_segment] = ACTIONS(4811), + [anon_sym_COLON_COLON] = ACTIONS(4814), [anon_sym___LINE__] = ACTIONS(4698), [anon_sym___END_LINE__] = ACTIONS(4698), [anon_sym___FILE__] = ACTIONS(4698), @@ -332578,7 +335721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier_method_call] = ACTIONS(4700), [sym_instance_var] = ACTIONS(4700), [sym_class_var] = ACTIONS(4700), - [sym_self] = ACTIONS(4835), + [sym_self] = ACTIONS(4817), [sym_underscore_type] = ACTIONS(4760), [sym_private] = ACTIONS(4698), [sym_protected] = ACTIONS(4698), @@ -332612,9 +335755,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [1988] = { - [sym_heredoc_body] = STATE(1988), - [aux_sym_constant_repeat1] = STATE(1991), + [2010] = { + [sym_heredoc_body] = STATE(2010), + [sym_typeof] = STATE(2099), + [sym_constant] = STATE(2076), + [sym__type] = STATE(2112), + [sym_class_type] = STATE(2099), + [sym_union_type] = STATE(2099), + [sym__parenthesized_type] = STATE(2099), + [sym_no_args_proc_type] = STATE(2099), + [sym_parenthesized_proc_type] = STATE(2099), + [sym_tuple_type] = STATE(2099), + [sym_named_tuple_type] = STATE(2099), + [sym_generic_instance_type] = STATE(2099), + [sym_nilable_type] = STATE(2099), + [sym_pointer_type] = STATE(2099), + [sym_static_array_type] = STATE(2099), + [sym_identifier] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4820), + [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_DASH_GT] = ACTIONS(4823), + [anon_sym_annotation] = ACTIONS(4720), + [anon_sym_end] = ACTIONS(4720), + [anon_sym_AT_LBRACK] = ACTIONS(4722), + [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_lib] = ACTIONS(4720), + [anon_sym_fun] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_TILDE] = ACTIONS(4722), + [anon_sym_def] = 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(4826), + [anon_sym_sizeof] = ACTIONS(4720), + [anon_sym_instance_sizeof] = ACTIONS(4720), + [anon_sym_offsetof] = ACTIONS(4720), + [sym__constant_segment] = ACTIONS(4829), + [anon_sym_COLON_COLON] = ACTIONS(4832), + [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_global_match_data_index] = ACTIONS(4722), + [sym_identifier_method_call] = ACTIONS(4722), + [sym_instance_var] = ACTIONS(4722), + [sym_class_var] = ACTIONS(4722), + [sym_self] = ACTIONS(4835), + [sym_underscore_type] = ACTIONS(4760), + [sym_private] = ACTIONS(4720), + [sym_protected] = ACTIONS(4720), + [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), + [aux_sym_asm_token1] = ACTIONS(4722), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4722), + [sym__start_of_named_tuple] = ACTIONS(4722), + [sym__start_of_tuple_type] = ACTIONS(4762), + [sym__start_of_named_tuple_type] = ACTIONS(4764), + [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), + }, + [2011] = { + [sym_heredoc_body] = STATE(2011), + [aux_sym_constant_repeat1] = STATE(2011), [sym_identifier] = ACTIONS(4838), [anon_sym_SEMI] = ACTIONS(4840), [anon_sym_LPAREN] = ACTIONS(4838), @@ -332708,201 +335953,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4840), [sym__heredoc_body_start] = ACTIONS(7), }, - [1989] = { - [sym_heredoc_body] = STATE(1989), - [aux_sym_constant_repeat1] = STATE(1989), - [sym_identifier] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(4844), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4844), - [sym_true] = ACTIONS(4844), - [sym_false] = ACTIONS(4844), - [aux_sym_integer_token2] = ACTIONS(4844), - [aux_sym_float_token2] = ACTIONS(4846), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym_operator_symbol] = ACTIONS(4846), - [sym_unquoted_symbol] = ACTIONS(4846), - [anon_sym_COLON_DQUOTE] = ACTIONS(4846), - [anon_sym_BQUOTE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4846), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_end] = ACTIONS(4844), - [anon_sym_AT_LBRACK] = ACTIONS(4846), - [anon_sym_module] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_class] = ACTIONS(4844), - [anon_sym_struct] = ACTIONS(4844), - [anon_sym_enum] = ACTIONS(4844), - [anon_sym_lib] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_def] = ACTIONS(4844), - [anon_sym_include] = ACTIONS(4844), - [anon_sym_extend] = ACTIONS(4844), - [anon_sym_forall] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_next] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [anon_sym_yield] = ACTIONS(4844), - [anon_sym_typeof] = ACTIONS(4844), - [anon_sym_sizeof] = ACTIONS(4844), - [anon_sym_instance_sizeof] = ACTIONS(4844), - [anon_sym_offsetof] = ACTIONS(4844), - [sym__constant_segment] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(4848), - [anon_sym___LINE__] = ACTIONS(4844), - [anon_sym___END_LINE__] = ACTIONS(4844), - [anon_sym___FILE__] = ACTIONS(4844), - [anon_sym___DIR__] = ACTIONS(4844), - [sym_special_variable] = ACTIONS(4846), - [sym_global_match_data_index] = ACTIONS(4846), - [sym_identifier_method_call] = ACTIONS(4846), - [sym_instance_var] = ACTIONS(4846), - [sym_class_var] = ACTIONS(4846), - [sym_self] = ACTIONS(4844), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_QMARK] = ACTIONS(4846), - [sym_private] = ACTIONS(4844), - [sym_protected] = ACTIONS(4844), - [anon_sym_alias] = ACTIONS(4844), - [anon_sym_begin] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_until] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_require] = ACTIONS(4844), - [anon_sym_case] = ACTIONS(4844), - [anon_sym_select] = ACTIONS(4844), - [aux_sym_asm_token1] = ACTIONS(4846), - [sym__line_break] = ACTIONS(4846), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4846), - [sym__start_of_named_tuple] = ACTIONS(4846), - [sym_unary_plus] = ACTIONS(4846), - [sym_unary_minus] = ACTIONS(4846), - [sym_unary_wrapping_plus] = ACTIONS(4846), - [sym_unary_wrapping_minus] = ACTIONS(4846), - [sym__beginless_range_operator] = ACTIONS(4846), - [sym__regex_start] = ACTIONS(4846), - [sym__regular_if_keyword] = ACTIONS(4846), - [sym__regular_unless_keyword] = ACTIONS(4846), - [sym__regular_rescue_keyword] = ACTIONS(4846), - [sym__regular_ensure_keyword] = ACTIONS(4846), - [sym__string_literal_start] = ACTIONS(4846), - [sym__string_percent_literal_start] = ACTIONS(4846), - [sym__command_percent_literal_start] = ACTIONS(4846), - [sym__string_array_percent_literal_start] = ACTIONS(4846), - [sym__symbol_array_percent_literal_start] = ACTIONS(4846), - [sym__regex_percent_literal_start] = ACTIONS(4846), - [sym_heredoc_start] = ACTIONS(4846), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1990] = { - [sym_heredoc_body] = STATE(1990), - [aux_sym_constant_repeat1] = STATE(1989), - [sym_identifier] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4840), - [anon_sym_LPAREN] = ACTIONS(4838), - [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_COMMA] = ACTIONS(4840), - [anon_sym_DASH_GT] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4838), - [anon_sym_end] = ACTIONS(4838), - [anon_sym_AT_LBRACK] = ACTIONS(4840), - [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_lib] = ACTIONS(4838), - [anon_sym_fun] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4840), - [anon_sym_PIPE] = ACTIONS(4840), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_TILDE] = ACTIONS(4840), - [anon_sym_def] = ACTIONS(4838), - [anon_sym_include] = ACTIONS(4838), - [anon_sym_extend] = ACTIONS(4838), - [anon_sym_forall] = 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(4842), - [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_global_match_data_index] = ACTIONS(4840), - [sym_identifier_method_call] = ACTIONS(4840), - [sym_instance_var] = ACTIONS(4840), - [sym_class_var] = ACTIONS(4840), - [sym_self] = ACTIONS(4838), - [anon_sym_LPAREN2] = ACTIONS(4840), - [anon_sym_QMARK] = ACTIONS(4840), - [sym_private] = ACTIONS(4838), - [sym_protected] = 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), - [anon_sym_select] = ACTIONS(4838), - [aux_sym_asm_token1] = ACTIONS(4840), - [sym__line_break] = ACTIONS(4840), - [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), + [2012] = { + [sym_heredoc_body] = STATE(2012), + [aux_sym_constant_repeat1] = STATE(2013), + [sym_identifier] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4845), + [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_COMMA] = ACTIONS(4847), + [anon_sym_DASH_GT] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_annotation] = ACTIONS(4845), + [anon_sym_end] = ACTIONS(4845), + [anon_sym_AT_LBRACK] = ACTIONS(4847), + [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_lib] = ACTIONS(4845), + [anon_sym_fun] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4847), + [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_TILDE] = ACTIONS(4847), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_include] = ACTIONS(4845), + [anon_sym_extend] = ACTIONS(4845), + [anon_sym_forall] = 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(4849), + [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_global_match_data_index] = ACTIONS(4847), + [sym_identifier_method_call] = ACTIONS(4847), + [sym_instance_var] = ACTIONS(4847), + [sym_class_var] = ACTIONS(4847), + [sym_self] = ACTIONS(4845), + [anon_sym_LPAREN2] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4847), + [sym_private] = ACTIONS(4845), + [sym_protected] = 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), + [anon_sym_select] = ACTIONS(4845), + [aux_sym_asm_token1] = ACTIONS(4847), + [sym__line_break] = ACTIONS(4847), + [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), [sym__heredoc_body_start] = ACTIONS(7), }, - [1991] = { - [sym_heredoc_body] = STATE(1991), - [aux_sym_constant_repeat1] = STATE(1989), + [2013] = { + [sym_heredoc_body] = STATE(2013), + [aux_sym_constant_repeat1] = STATE(2011), [sym_identifier] = ACTIONS(4851), [anon_sym_SEMI] = ACTIONS(4853), [anon_sym_LPAREN] = ACTIONS(4851), @@ -332949,7 +336098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(4851), [anon_sym_offsetof] = ACTIONS(4851), [sym__constant_segment] = ACTIONS(4853), - [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4849), [anon_sym___LINE__] = ACTIONS(4851), [anon_sym___END_LINE__] = ACTIONS(4851), [anon_sym___FILE__] = ACTIONS(4851), @@ -332996,9 +336145,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4853), [sym__heredoc_body_start] = ACTIONS(7), }, - [1992] = { - [sym_heredoc_body] = STATE(1992), - [aux_sym_constant_repeat1] = STATE(1990), + [2014] = { + [sym_heredoc_body] = STATE(2014), + [aux_sym_constant_repeat1] = STATE(2015), [sym_identifier] = ACTIONS(4855), [anon_sym_SEMI] = ACTIONS(4857), [anon_sym_LPAREN] = ACTIONS(4855), @@ -333045,7 +336194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(4855), [anon_sym_offsetof] = ACTIONS(4855), [sym__constant_segment] = ACTIONS(4857), - [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_COLON_COLON] = ACTIONS(4849), [anon_sym___LINE__] = ACTIONS(4855), [anon_sym___END_LINE__] = ACTIONS(4855), [anon_sym___FILE__] = ACTIONS(4855), @@ -333092,9 +336241,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4857), [sym__heredoc_body_start] = ACTIONS(7), }, - [1993] = { - [sym_heredoc_body] = STATE(1993), - [aux_sym_union_type_repeat1] = STATE(1997), + [2015] = { + [sym_heredoc_body] = STATE(2015), + [aux_sym_constant_repeat1] = STATE(2011), + [sym_identifier] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4845), + [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_COMMA] = ACTIONS(4847), + [anon_sym_DASH_GT] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_annotation] = ACTIONS(4845), + [anon_sym_end] = ACTIONS(4845), + [anon_sym_AT_LBRACK] = ACTIONS(4847), + [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_lib] = ACTIONS(4845), + [anon_sym_fun] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4847), + [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_TILDE] = ACTIONS(4847), + [anon_sym_def] = ACTIONS(4845), + [anon_sym_include] = ACTIONS(4845), + [anon_sym_extend] = ACTIONS(4845), + [anon_sym_forall] = 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(4849), + [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_global_match_data_index] = ACTIONS(4847), + [sym_identifier_method_call] = ACTIONS(4847), + [sym_instance_var] = ACTIONS(4847), + [sym_class_var] = ACTIONS(4847), + [sym_self] = ACTIONS(4845), + [anon_sym_LPAREN2] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4847), + [sym_private] = ACTIONS(4845), + [sym_protected] = 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), + [anon_sym_select] = ACTIONS(4845), + [aux_sym_asm_token1] = ACTIONS(4847), + [sym__line_break] = ACTIONS(4847), + [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), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2016] = { + [sym_heredoc_body] = STATE(2016), + [aux_sym_union_type_repeat1] = STATE(2020), [sym_identifier] = ACTIONS(4859), [anon_sym_SEMI] = ACTIONS(4861), [anon_sym_LPAREN] = ACTIONS(4861), @@ -333187,104 +336432,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4861), [sym__heredoc_body_start] = ACTIONS(7), }, - [1994] = { - [sym_heredoc_body] = STATE(1994), - [sym_identifier] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(4844), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4844), - [sym_true] = ACTIONS(4844), - [sym_false] = ACTIONS(4844), - [aux_sym_integer_token2] = ACTIONS(4844), - [aux_sym_float_token2] = ACTIONS(4846), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym_operator_symbol] = ACTIONS(4846), - [sym_unquoted_symbol] = ACTIONS(4846), - [anon_sym_COLON_DQUOTE] = ACTIONS(4846), - [anon_sym_BQUOTE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4846), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_end] = ACTIONS(4844), - [anon_sym_AT_LBRACK] = ACTIONS(4846), - [anon_sym_module] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_class] = ACTIONS(4844), - [anon_sym_struct] = ACTIONS(4844), - [anon_sym_enum] = ACTIONS(4844), - [anon_sym_lib] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_def] = ACTIONS(4844), - [anon_sym_include] = ACTIONS(4844), - [anon_sym_extend] = ACTIONS(4844), - [anon_sym_forall] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_next] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [anon_sym_yield] = ACTIONS(4844), - [anon_sym_typeof] = ACTIONS(4844), - [anon_sym_sizeof] = ACTIONS(4844), - [anon_sym_instance_sizeof] = ACTIONS(4844), - [anon_sym_offsetof] = ACTIONS(4844), - [sym__constant_segment] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym___LINE__] = ACTIONS(4844), - [anon_sym___END_LINE__] = ACTIONS(4844), - [anon_sym___FILE__] = ACTIONS(4844), - [anon_sym___DIR__] = ACTIONS(4844), - [sym_special_variable] = ACTIONS(4846), - [sym_global_match_data_index] = ACTIONS(4846), - [sym_identifier_method_call] = ACTIONS(4846), - [sym_instance_var] = ACTIONS(4846), - [sym_class_var] = ACTIONS(4846), - [sym_self] = ACTIONS(4844), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_QMARK] = ACTIONS(4846), - [sym_private] = ACTIONS(4844), - [sym_protected] = ACTIONS(4844), - [anon_sym_alias] = ACTIONS(4844), - [anon_sym_begin] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_until] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_require] = ACTIONS(4844), - [anon_sym_case] = ACTIONS(4844), - [anon_sym_select] = ACTIONS(4844), - [aux_sym_asm_token1] = ACTIONS(4846), - [sym__line_break] = ACTIONS(4846), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4846), - [sym__start_of_named_tuple] = ACTIONS(4846), - [sym_unary_plus] = ACTIONS(4846), - [sym_unary_minus] = ACTIONS(4846), - [sym_unary_wrapping_plus] = ACTIONS(4846), - [sym_unary_wrapping_minus] = ACTIONS(4846), - [sym__beginless_range_operator] = ACTIONS(4846), - [sym__regex_start] = ACTIONS(4846), - [sym__regular_if_keyword] = ACTIONS(4846), - [sym__regular_unless_keyword] = ACTIONS(4846), - [sym__regular_rescue_keyword] = ACTIONS(4846), - [sym__regular_ensure_keyword] = ACTIONS(4846), - [sym__string_literal_start] = ACTIONS(4846), - [sym__string_percent_literal_start] = ACTIONS(4846), - [sym__command_percent_literal_start] = ACTIONS(4846), - [sym__string_array_percent_literal_start] = ACTIONS(4846), - [sym__symbol_array_percent_literal_start] = ACTIONS(4846), - [sym__regex_percent_literal_start] = ACTIONS(4846), - [sym_heredoc_start] = ACTIONS(4846), + [2017] = { + [sym_heredoc_body] = STATE(2017), + [sym_identifier] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4838), + [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_COMMA] = ACTIONS(4840), + [anon_sym_DASH_GT] = ACTIONS(4840), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4838), + [anon_sym_end] = ACTIONS(4838), + [anon_sym_AT_LBRACK] = ACTIONS(4840), + [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_lib] = ACTIONS(4838), + [anon_sym_fun] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_def] = ACTIONS(4838), + [anon_sym_include] = ACTIONS(4838), + [anon_sym_extend] = ACTIONS(4838), + [anon_sym_forall] = 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_global_match_data_index] = ACTIONS(4840), + [sym_identifier_method_call] = ACTIONS(4840), + [sym_instance_var] = ACTIONS(4840), + [sym_class_var] = ACTIONS(4840), + [sym_self] = ACTIONS(4838), + [anon_sym_LPAREN2] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [sym_private] = ACTIONS(4838), + [sym_protected] = 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), + [anon_sym_select] = ACTIONS(4838), + [aux_sym_asm_token1] = ACTIONS(4840), + [sym__line_break] = ACTIONS(4840), + [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), [sym__heredoc_body_start] = ACTIONS(7), }, - [1995] = { - [sym_heredoc_body] = STATE(1995), - [aux_sym_union_type_repeat1] = STATE(1995), + [2018] = { + [sym_heredoc_body] = STATE(2018), + [aux_sym_union_type_repeat1] = STATE(2020), [sym_identifier] = ACTIONS(4873), [anon_sym_SEMI] = ACTIONS(4875), [anon_sym_LPAREN] = ACTIONS(4875), @@ -333314,7 +336559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(4873), [anon_sym_fun] = ACTIONS(4873), [anon_sym_STAR] = ACTIONS(4875), - [anon_sym_PIPE] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4875), [anon_sym_BANG] = ACTIONS(4875), [anon_sym_TILDE] = ACTIONS(4875), [anon_sym_def] = ACTIONS(4873), @@ -333377,9 +336622,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4875), [sym__heredoc_body_start] = ACTIONS(7), }, - [1996] = { - [sym_heredoc_body] = STATE(1996), - [aux_sym_union_type_repeat1] = STATE(1997), + [2019] = { + [sym_heredoc_body] = STATE(2019), + [aux_sym_union_type_repeat1] = STATE(2020), + [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(4863), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_DASH_GT] = ACTIONS(4879), + [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_end] = ACTIONS(4877), + [anon_sym_AT_LBRACK] = ACTIONS(4879), + [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_lib] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4869), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_TILDE] = ACTIONS(4879), + [anon_sym_def] = ACTIONS(4877), + [anon_sym_include] = ACTIONS(4877), + [anon_sym_extend] = ACTIONS(4877), + [anon_sym_forall] = 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_global_match_data_index] = ACTIONS(4879), + [sym_identifier_method_call] = ACTIONS(4879), + [sym_instance_var] = ACTIONS(4879), + [sym_class_var] = ACTIONS(4879), + [sym_self] = ACTIONS(4877), + [anon_sym_QMARK] = ACTIONS(4871), + [sym_private] = ACTIONS(4877), + [sym_protected] = 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), + [anon_sym_select] = ACTIONS(4877), + [aux_sym_asm_token1] = ACTIONS(4879), + [sym__line_break] = ACTIONS(4879), + [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__heredoc_body_start] = ACTIONS(7), + }, + [2020] = { + [sym_heredoc_body] = STATE(2020), + [aux_sym_union_type_repeat1] = STATE(2021), + [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_COMMA] = ACTIONS(4883), + [anon_sym_DASH_GT] = ACTIONS(4883), + [anon_sym_DOT] = ACTIONS(4883), + [anon_sym_annotation] = ACTIONS(4881), + [anon_sym_end] = ACTIONS(4881), + [anon_sym_AT_LBRACK] = ACTIONS(4883), + [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_lib] = ACTIONS(4881), + [anon_sym_fun] = ACTIONS(4881), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4869), + [anon_sym_BANG] = ACTIONS(4883), + [anon_sym_TILDE] = ACTIONS(4883), + [anon_sym_def] = ACTIONS(4881), + [anon_sym_include] = ACTIONS(4881), + [anon_sym_extend] = ACTIONS(4881), + [anon_sym_forall] = 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_global_match_data_index] = ACTIONS(4883), + [sym_identifier_method_call] = ACTIONS(4883), + [sym_instance_var] = ACTIONS(4883), + [sym_class_var] = ACTIONS(4883), + [sym_self] = ACTIONS(4881), + [anon_sym_QMARK] = ACTIONS(4883), + [sym_private] = ACTIONS(4881), + [sym_protected] = 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), + [anon_sym_select] = ACTIONS(4881), + [aux_sym_asm_token1] = ACTIONS(4883), + [sym__line_break] = ACTIONS(4883), + [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__heredoc_body_start] = ACTIONS(7), + }, + [2021] = { + [sym_heredoc_body] = STATE(2021), + [aux_sym_union_type_repeat1] = STATE(2021), [sym_identifier] = ACTIONS(4873), [anon_sym_SEMI] = ACTIONS(4875), [anon_sym_LPAREN] = ACTIONS(4875), @@ -333409,7 +336844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(4873), [anon_sym_fun] = ACTIONS(4873), [anon_sym_STAR] = ACTIONS(4875), - [anon_sym_PIPE] = ACTIONS(4875), + [anon_sym_PIPE] = ACTIONS(4885), [anon_sym_BANG] = ACTIONS(4875), [anon_sym_TILDE] = ACTIONS(4875), [anon_sym_def] = ACTIONS(4873), @@ -333472,199 +336907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4875), [sym__heredoc_body_start] = ACTIONS(7), }, - [1997] = { - [sym_heredoc_body] = STATE(1997), - [aux_sym_union_type_repeat1] = STATE(1995), - [sym_identifier] = ACTIONS(4880), - [anon_sym_SEMI] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4880), - [sym_true] = ACTIONS(4880), - [sym_false] = ACTIONS(4880), - [aux_sym_integer_token2] = ACTIONS(4880), - [aux_sym_float_token2] = ACTIONS(4882), - [anon_sym_SQUOTE] = ACTIONS(4882), - [sym_operator_symbol] = ACTIONS(4882), - [sym_unquoted_symbol] = ACTIONS(4882), - [anon_sym_COLON_DQUOTE] = ACTIONS(4882), - [anon_sym_BQUOTE] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_COMMA] = ACTIONS(4882), - [anon_sym_DASH_GT] = ACTIONS(4882), - [anon_sym_DOT] = ACTIONS(4882), - [anon_sym_annotation] = ACTIONS(4880), - [anon_sym_end] = ACTIONS(4880), - [anon_sym_AT_LBRACK] = ACTIONS(4882), - [anon_sym_module] = ACTIONS(4880), - [anon_sym_abstract] = ACTIONS(4880), - [anon_sym_class] = ACTIONS(4880), - [anon_sym_struct] = ACTIONS(4880), - [anon_sym_enum] = ACTIONS(4880), - [anon_sym_lib] = ACTIONS(4880), - [anon_sym_fun] = ACTIONS(4880), - [anon_sym_STAR] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4869), - [anon_sym_BANG] = ACTIONS(4882), - [anon_sym_TILDE] = ACTIONS(4882), - [anon_sym_def] = ACTIONS(4880), - [anon_sym_include] = ACTIONS(4880), - [anon_sym_extend] = ACTIONS(4880), - [anon_sym_forall] = ACTIONS(4880), - [anon_sym_return] = ACTIONS(4880), - [anon_sym_next] = ACTIONS(4880), - [anon_sym_break] = ACTIONS(4880), - [anon_sym_with] = ACTIONS(4880), - [anon_sym_yield] = ACTIONS(4880), - [anon_sym_typeof] = ACTIONS(4880), - [anon_sym_sizeof] = ACTIONS(4880), - [anon_sym_instance_sizeof] = ACTIONS(4880), - [anon_sym_offsetof] = ACTIONS(4880), - [sym__constant_segment] = ACTIONS(4882), - [anon_sym_COLON_COLON] = ACTIONS(4882), - [anon_sym___LINE__] = ACTIONS(4880), - [anon_sym___END_LINE__] = ACTIONS(4880), - [anon_sym___FILE__] = ACTIONS(4880), - [anon_sym___DIR__] = ACTIONS(4880), - [sym_special_variable] = ACTIONS(4882), - [sym_global_match_data_index] = ACTIONS(4882), - [sym_identifier_method_call] = ACTIONS(4882), - [sym_instance_var] = ACTIONS(4882), - [sym_class_var] = ACTIONS(4882), - [sym_self] = ACTIONS(4880), - [anon_sym_QMARK] = ACTIONS(4882), - [sym_private] = ACTIONS(4880), - [sym_protected] = ACTIONS(4880), - [anon_sym_alias] = ACTIONS(4880), - [anon_sym_begin] = ACTIONS(4880), - [anon_sym_while] = ACTIONS(4880), - [anon_sym_until] = ACTIONS(4880), - [anon_sym_else] = ACTIONS(4880), - [anon_sym_require] = ACTIONS(4880), - [anon_sym_case] = ACTIONS(4880), - [anon_sym_select] = ACTIONS(4880), - [aux_sym_asm_token1] = ACTIONS(4882), - [sym__line_break] = ACTIONS(4882), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4882), - [sym__start_of_named_tuple] = ACTIONS(4882), - [sym_unary_plus] = ACTIONS(4882), - [sym_unary_minus] = ACTIONS(4882), - [sym_unary_wrapping_plus] = ACTIONS(4882), - [sym_unary_wrapping_minus] = ACTIONS(4882), - [sym__beginless_range_operator] = ACTIONS(4882), - [sym__regex_start] = ACTIONS(4882), - [sym__regular_if_keyword] = ACTIONS(4882), - [sym__regular_unless_keyword] = ACTIONS(4882), - [sym__regular_rescue_keyword] = ACTIONS(4882), - [sym__regular_ensure_keyword] = ACTIONS(4882), - [sym__string_literal_start] = ACTIONS(4882), - [sym__string_percent_literal_start] = ACTIONS(4882), - [sym__command_percent_literal_start] = ACTIONS(4882), - [sym__string_array_percent_literal_start] = ACTIONS(4882), - [sym__symbol_array_percent_literal_start] = ACTIONS(4882), - [sym__regex_percent_literal_start] = ACTIONS(4882), - [sym_heredoc_start] = ACTIONS(4882), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1998] = { - [sym_heredoc_body] = STATE(1998), - [aux_sym_union_type_repeat1] = STATE(1997), - [sym_identifier] = ACTIONS(4884), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4884), - [sym_true] = ACTIONS(4884), - [sym_false] = ACTIONS(4884), - [aux_sym_integer_token2] = ACTIONS(4884), - [aux_sym_float_token2] = ACTIONS(4886), - [anon_sym_SQUOTE] = ACTIONS(4886), - [sym_operator_symbol] = ACTIONS(4886), - [sym_unquoted_symbol] = ACTIONS(4886), - [anon_sym_COLON_DQUOTE] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4865), - [anon_sym_annotation] = ACTIONS(4884), - [anon_sym_end] = ACTIONS(4884), - [anon_sym_AT_LBRACK] = ACTIONS(4886), - [anon_sym_module] = ACTIONS(4884), - [anon_sym_abstract] = ACTIONS(4884), - [anon_sym_class] = ACTIONS(4884), - [anon_sym_struct] = ACTIONS(4884), - [anon_sym_enum] = ACTIONS(4884), - [anon_sym_lib] = ACTIONS(4884), - [anon_sym_fun] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4869), - [anon_sym_BANG] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [anon_sym_def] = ACTIONS(4884), - [anon_sym_include] = ACTIONS(4884), - [anon_sym_extend] = ACTIONS(4884), - [anon_sym_forall] = ACTIONS(4884), - [anon_sym_return] = ACTIONS(4884), - [anon_sym_next] = ACTIONS(4884), - [anon_sym_break] = ACTIONS(4884), - [anon_sym_with] = ACTIONS(4884), - [anon_sym_yield] = ACTIONS(4884), - [anon_sym_typeof] = ACTIONS(4884), - [anon_sym_sizeof] = ACTIONS(4884), - [anon_sym_instance_sizeof] = ACTIONS(4884), - [anon_sym_offsetof] = ACTIONS(4884), - [sym__constant_segment] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym___LINE__] = ACTIONS(4884), - [anon_sym___END_LINE__] = ACTIONS(4884), - [anon_sym___FILE__] = ACTIONS(4884), - [anon_sym___DIR__] = ACTIONS(4884), - [sym_special_variable] = ACTIONS(4886), - [sym_global_match_data_index] = ACTIONS(4886), - [sym_identifier_method_call] = ACTIONS(4886), - [sym_instance_var] = ACTIONS(4886), - [sym_class_var] = ACTIONS(4886), - [sym_self] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4871), - [sym_private] = ACTIONS(4884), - [sym_protected] = ACTIONS(4884), - [anon_sym_alias] = ACTIONS(4884), - [anon_sym_begin] = ACTIONS(4884), - [anon_sym_while] = ACTIONS(4884), - [anon_sym_until] = ACTIONS(4884), - [anon_sym_else] = ACTIONS(4884), - [anon_sym_require] = ACTIONS(4884), - [anon_sym_case] = ACTIONS(4884), - [anon_sym_select] = ACTIONS(4884), - [aux_sym_asm_token1] = ACTIONS(4886), - [sym__line_break] = ACTIONS(4886), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4886), - [sym__start_of_named_tuple] = ACTIONS(4886), - [sym_unary_plus] = ACTIONS(4886), - [sym_unary_minus] = ACTIONS(4886), - [sym_unary_wrapping_plus] = ACTIONS(4886), - [sym_unary_wrapping_minus] = ACTIONS(4886), - [sym__beginless_range_operator] = ACTIONS(4886), - [sym__regex_start] = ACTIONS(4886), - [sym__regular_if_keyword] = ACTIONS(4886), - [sym__regular_unless_keyword] = ACTIONS(4886), - [sym__regular_rescue_keyword] = ACTIONS(4886), - [sym__regular_ensure_keyword] = ACTIONS(4886), - [sym__string_literal_start] = ACTIONS(4886), - [sym__string_percent_literal_start] = ACTIONS(4886), - [sym__command_percent_literal_start] = ACTIONS(4886), - [sym__string_array_percent_literal_start] = ACTIONS(4886), - [sym__symbol_array_percent_literal_start] = ACTIONS(4886), - [sym__regex_percent_literal_start] = ACTIONS(4886), - [sym_heredoc_start] = ACTIONS(4886), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1999] = { - [sym_heredoc_body] = STATE(1999), - [aux_sym_union_type_repeat1] = STATE(1997), + [2022] = { + [sym_heredoc_body] = STATE(2022), + [aux_sym_union_type_repeat1] = STATE(2020), [sym_identifier] = ACTIONS(4888), [anon_sym_SEMI] = ACTIONS(4890), [anon_sym_LPAREN] = ACTIONS(4890), @@ -333757,9 +337002,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4890), [sym__heredoc_body_start] = ACTIONS(7), }, - [2000] = { - [sym_heredoc_body] = STATE(2000), - [aux_sym_union_type_repeat1] = STATE(1997), + [2023] = { + [sym_heredoc_body] = STATE(2023), + [aux_sym_union_type_repeat1] = STATE(2020), [sym_identifier] = ACTIONS(4892), [anon_sym_SEMI] = ACTIONS(4894), [anon_sym_LPAREN] = ACTIONS(4894), @@ -333852,9 +337097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4894), [sym__heredoc_body_start] = ACTIONS(7), }, - [2001] = { - [sym_heredoc_body] = STATE(2001), - [aux_sym_union_type_repeat1] = STATE(1997), + [2024] = { + [sym_heredoc_body] = STATE(2024), + [aux_sym_union_type_repeat1] = STATE(2020), [sym_identifier] = ACTIONS(4896), [anon_sym_SEMI] = ACTIONS(4898), [anon_sym_LPAREN] = ACTIONS(4898), @@ -333947,8 +337192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4898), [sym__heredoc_body_start] = ACTIONS(7), }, - [2002] = { - [sym_heredoc_body] = STATE(2002), + [2025] = { + [sym_heredoc_body] = STATE(2025), [sym_identifier] = ACTIONS(4900), [anon_sym_SEMI] = ACTIONS(4902), [anon_sym_LPAREN] = ACTIONS(4900), @@ -334042,8 +337287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4902), [sym__heredoc_body_start] = ACTIONS(7), }, - [2003] = { - [sym_heredoc_body] = STATE(2003), + [2026] = { + [sym_heredoc_body] = STATE(2026), [sym_identifier] = ACTIONS(4906), [anon_sym_SEMI] = ACTIONS(4908), [anon_sym_LPAREN] = ACTIONS(4908), @@ -334136,8 +337381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4908), [sym__heredoc_body_start] = ACTIONS(7), }, - [2004] = { - [sym_heredoc_body] = STATE(2004), + [2027] = { + [sym_heredoc_body] = STATE(2027), [sym_identifier] = ACTIONS(4910), [anon_sym_SEMI] = ACTIONS(4912), [anon_sym_LPAREN] = ACTIONS(4912), @@ -334230,8 +337475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4912), [sym__heredoc_body_start] = ACTIONS(7), }, - [2005] = { - [sym_heredoc_body] = STATE(2005), + [2028] = { + [sym_heredoc_body] = STATE(2028), [sym_identifier] = ACTIONS(4914), [anon_sym_SEMI] = ACTIONS(4916), [anon_sym_LPAREN] = ACTIONS(4916), @@ -334324,8 +337569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4916), [sym__heredoc_body_start] = ACTIONS(7), }, - [2006] = { - [sym_heredoc_body] = STATE(2006), + [2029] = { + [sym_heredoc_body] = STATE(2029), [sym_identifier] = ACTIONS(4918), [anon_sym_SEMI] = ACTIONS(4920), [anon_sym_LPAREN] = ACTIONS(4920), @@ -334418,8 +337663,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4920), [sym__heredoc_body_start] = ACTIONS(7), }, - [2007] = { - [sym_heredoc_body] = STATE(2007), + [2030] = { + [sym_heredoc_body] = STATE(2030), + [aux_sym_union_type_repeat1] = STATE(2020), [sym_identifier] = ACTIONS(4922), [anon_sym_SEMI] = ACTIONS(4924), [anon_sym_LPAREN] = ACTIONS(4924), @@ -334434,10 +337680,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4924), [anon_sym_COLON_DQUOTE] = ACTIONS(4924), [anon_sym_BQUOTE] = ACTIONS(4924), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4863), [anon_sym_DASH_GT] = ACTIONS(4924), - [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT] = ACTIONS(4865), [anon_sym_annotation] = ACTIONS(4922), [anon_sym_end] = ACTIONS(4922), [anon_sym_AT_LBRACK] = ACTIONS(4924), @@ -334448,8 +337693,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(4922), [anon_sym_lib] = ACTIONS(4922), [anon_sym_fun] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4924), - [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4869), [anon_sym_BANG] = ACTIONS(4924), [anon_sym_TILDE] = ACTIONS(4924), [anon_sym_def] = ACTIONS(4922), @@ -334477,7 +337722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4924), [sym_class_var] = ACTIONS(4924), [sym_self] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4871), [sym_private] = ACTIONS(4922), [sym_protected] = ACTIONS(4922), [anon_sym_alias] = ACTIONS(4922), @@ -334512,8 +337757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4924), [sym__heredoc_body_start] = ACTIONS(7), }, - [2008] = { - [sym_heredoc_body] = STATE(2008), + [2031] = { + [sym_heredoc_body] = STATE(2031), [sym_identifier] = ACTIONS(4926), [anon_sym_SEMI] = ACTIONS(4928), [anon_sym_LPAREN] = ACTIONS(4928), @@ -334606,8 +337851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4928), [sym__heredoc_body_start] = ACTIONS(7), }, - [2009] = { - [sym_heredoc_body] = STATE(2009), + [2032] = { + [sym_heredoc_body] = STATE(2032), [sym_identifier] = ACTIONS(4930), [anon_sym_SEMI] = ACTIONS(4932), [anon_sym_LPAREN] = ACTIONS(4932), @@ -334700,9 +337945,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4932), [sym__heredoc_body_start] = ACTIONS(7), }, - [2010] = { - [sym_heredoc_body] = STATE(2010), - [aux_sym_union_type_repeat1] = STATE(1997), + [2033] = { + [sym_heredoc_body] = STATE(2033), [sym_identifier] = ACTIONS(4934), [anon_sym_SEMI] = ACTIONS(4936), [anon_sym_LPAREN] = ACTIONS(4936), @@ -334717,9 +337961,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4936), [anon_sym_COLON_DQUOTE] = ACTIONS(4936), [anon_sym_BQUOTE] = ACTIONS(4936), - [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_DOT] = ACTIONS(4936), [anon_sym_annotation] = ACTIONS(4934), [anon_sym_end] = ACTIONS(4934), [anon_sym_AT_LBRACK] = ACTIONS(4936), @@ -334730,8 +337975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(4934), [anon_sym_lib] = ACTIONS(4934), [anon_sym_fun] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), [anon_sym_BANG] = ACTIONS(4936), [anon_sym_TILDE] = ACTIONS(4936), [anon_sym_def] = ACTIONS(4934), @@ -334759,7 +338004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4936), [sym_class_var] = ACTIONS(4936), [sym_self] = ACTIONS(4934), - [anon_sym_QMARK] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4936), [sym_private] = ACTIONS(4934), [sym_protected] = ACTIONS(4934), [anon_sym_alias] = ACTIONS(4934), @@ -334794,8 +338039,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4936), [sym__heredoc_body_start] = ACTIONS(7), }, - [2011] = { - [sym_heredoc_body] = STATE(2011), + [2034] = { + [sym_heredoc_body] = STATE(2034), [sym_identifier] = ACTIONS(4938), [anon_sym_SEMI] = ACTIONS(4940), [anon_sym_LPAREN] = ACTIONS(4940), @@ -334888,8 +338133,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4940), [sym__heredoc_body_start] = ACTIONS(7), }, - [2012] = { - [sym_heredoc_body] = STATE(2012), + [2035] = { + [sym_heredoc_body] = STATE(2035), [sym_identifier] = ACTIONS(4942), [anon_sym_SEMI] = ACTIONS(4944), [anon_sym_LPAREN] = ACTIONS(4944), @@ -334982,8 +338227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4944), [sym__heredoc_body_start] = ACTIONS(7), }, - [2013] = { - [sym_heredoc_body] = STATE(2013), + [2036] = { + [sym_heredoc_body] = STATE(2036), [sym_identifier] = ACTIONS(4946), [anon_sym_SEMI] = ACTIONS(4948), [anon_sym_LPAREN] = ACTIONS(4948), @@ -335076,8 +338321,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4948), [sym__heredoc_body_start] = ACTIONS(7), }, - [2014] = { - [sym_heredoc_body] = STATE(2014), + [2037] = { + [sym_heredoc_body] = STATE(2037), [sym_identifier] = ACTIONS(4950), [anon_sym_SEMI] = ACTIONS(4952), [anon_sym_LPAREN] = ACTIONS(4952), @@ -335170,8 +338415,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4952), [sym__heredoc_body_start] = ACTIONS(7), }, - [2015] = { - [sym_heredoc_body] = STATE(2015), + [2038] = { + [sym_heredoc_body] = STATE(2038), + [sym_identifier] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4902), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4900), + [sym_true] = ACTIONS(4900), + [sym_false] = ACTIONS(4900), + [aux_sym_integer_token2] = ACTIONS(4900), + [aux_sym_float_token2] = ACTIONS(4902), + [anon_sym_SQUOTE] = ACTIONS(4902), + [sym_operator_symbol] = ACTIONS(4902), + [sym_unquoted_symbol] = ACTIONS(4902), + [anon_sym_COLON_DQUOTE] = ACTIONS(4902), + [anon_sym_BQUOTE] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_DASH_GT] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4902), + [anon_sym_annotation] = ACTIONS(4900), + [anon_sym_end] = ACTIONS(4900), + [anon_sym_AT_LBRACK] = ACTIONS(4902), + [anon_sym_module] = ACTIONS(4900), + [anon_sym_abstract] = ACTIONS(4900), + [anon_sym_class] = ACTIONS(4900), + [anon_sym_struct] = ACTIONS(4900), + [anon_sym_enum] = ACTIONS(4900), + [anon_sym_lib] = ACTIONS(4900), + [anon_sym_fun] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4902), + [anon_sym_PIPE] = ACTIONS(4902), + [anon_sym_BANG] = ACTIONS(4902), + [anon_sym_TILDE] = ACTIONS(4902), + [anon_sym_def] = ACTIONS(4900), + [anon_sym_include] = ACTIONS(4900), + [anon_sym_extend] = ACTIONS(4900), + [anon_sym_forall] = ACTIONS(4900), + [anon_sym_return] = ACTIONS(4900), + [anon_sym_next] = ACTIONS(4900), + [anon_sym_break] = ACTIONS(4900), + [anon_sym_with] = ACTIONS(4900), + [anon_sym_yield] = ACTIONS(4900), + [anon_sym_typeof] = ACTIONS(4900), + [anon_sym_sizeof] = ACTIONS(4900), + [anon_sym_instance_sizeof] = ACTIONS(4900), + [anon_sym_offsetof] = ACTIONS(4900), + [sym__constant_segment] = ACTIONS(4902), + [anon_sym_COLON_COLON] = ACTIONS(4902), + [anon_sym___LINE__] = ACTIONS(4900), + [anon_sym___END_LINE__] = ACTIONS(4900), + [anon_sym___FILE__] = ACTIONS(4900), + [anon_sym___DIR__] = ACTIONS(4900), + [sym_special_variable] = ACTIONS(4902), + [sym_global_match_data_index] = ACTIONS(4902), + [sym_identifier_method_call] = ACTIONS(4902), + [sym_instance_var] = ACTIONS(4902), + [sym_class_var] = ACTIONS(4902), + [sym_self] = ACTIONS(4900), + [anon_sym_QMARK] = ACTIONS(4902), + [sym_private] = ACTIONS(4900), + [sym_protected] = ACTIONS(4900), + [anon_sym_alias] = ACTIONS(4900), + [anon_sym_begin] = ACTIONS(4900), + [anon_sym_while] = ACTIONS(4900), + [anon_sym_until] = ACTIONS(4900), + [anon_sym_else] = ACTIONS(4900), + [anon_sym_require] = ACTIONS(4900), + [anon_sym_case] = ACTIONS(4900), + [anon_sym_select] = ACTIONS(4900), + [aux_sym_asm_token1] = ACTIONS(4902), + [sym__line_break] = ACTIONS(4902), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4902), + [sym__start_of_named_tuple] = ACTIONS(4902), + [sym_unary_plus] = ACTIONS(4902), + [sym_unary_minus] = ACTIONS(4902), + [sym_unary_wrapping_plus] = ACTIONS(4902), + [sym_unary_wrapping_minus] = ACTIONS(4902), + [sym__beginless_range_operator] = ACTIONS(4902), + [sym__regex_start] = ACTIONS(4902), + [sym__regular_if_keyword] = ACTIONS(4902), + [sym__regular_unless_keyword] = ACTIONS(4902), + [sym__regular_rescue_keyword] = ACTIONS(4902), + [sym__regular_ensure_keyword] = ACTIONS(4902), + [sym__string_literal_start] = ACTIONS(4902), + [sym__string_percent_literal_start] = ACTIONS(4902), + [sym__command_percent_literal_start] = ACTIONS(4902), + [sym__string_array_percent_literal_start] = ACTIONS(4902), + [sym__symbol_array_percent_literal_start] = ACTIONS(4902), + [sym__regex_percent_literal_start] = ACTIONS(4902), + [sym_heredoc_start] = ACTIONS(4902), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2039] = { + [sym_heredoc_body] = STATE(2039), [sym_identifier] = ACTIONS(4954), [anon_sym_SEMI] = ACTIONS(4956), [anon_sym_LPAREN] = ACTIONS(4956), @@ -335264,8 +338603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4956), [sym__heredoc_body_start] = ACTIONS(7), }, - [2016] = { - [sym_heredoc_body] = STATE(2016), + [2040] = { + [sym_heredoc_body] = STATE(2040), [sym_identifier] = ACTIONS(4958), [anon_sym_SEMI] = ACTIONS(4960), [anon_sym_LPAREN] = ACTIONS(4960), @@ -335358,102 +338697,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4960), [sym__heredoc_body_start] = ACTIONS(7), }, - [2017] = { - [sym_heredoc_body] = STATE(2017), - [sym_identifier] = ACTIONS(4900), - [anon_sym_SEMI] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4900), - [sym_true] = ACTIONS(4900), - [sym_false] = ACTIONS(4900), - [aux_sym_integer_token2] = ACTIONS(4900), - [aux_sym_float_token2] = ACTIONS(4902), - [anon_sym_SQUOTE] = ACTIONS(4902), - [sym_operator_symbol] = ACTIONS(4902), - [sym_unquoted_symbol] = ACTIONS(4902), - [anon_sym_COLON_DQUOTE] = ACTIONS(4902), - [anon_sym_BQUOTE] = ACTIONS(4902), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_COMMA] = ACTIONS(4902), - [anon_sym_DASH_GT] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4902), - [anon_sym_annotation] = ACTIONS(4900), - [anon_sym_end] = ACTIONS(4900), - [anon_sym_AT_LBRACK] = ACTIONS(4902), - [anon_sym_module] = ACTIONS(4900), - [anon_sym_abstract] = ACTIONS(4900), - [anon_sym_class] = ACTIONS(4900), - [anon_sym_struct] = ACTIONS(4900), - [anon_sym_enum] = ACTIONS(4900), - [anon_sym_lib] = ACTIONS(4900), - [anon_sym_fun] = ACTIONS(4900), - [anon_sym_STAR] = ACTIONS(4902), - [anon_sym_PIPE] = ACTIONS(4902), - [anon_sym_BANG] = ACTIONS(4902), - [anon_sym_TILDE] = ACTIONS(4902), - [anon_sym_def] = ACTIONS(4900), - [anon_sym_include] = ACTIONS(4900), - [anon_sym_extend] = ACTIONS(4900), - [anon_sym_forall] = ACTIONS(4900), - [anon_sym_return] = ACTIONS(4900), - [anon_sym_next] = ACTIONS(4900), - [anon_sym_break] = ACTIONS(4900), - [anon_sym_with] = ACTIONS(4900), - [anon_sym_yield] = ACTIONS(4900), - [anon_sym_typeof] = ACTIONS(4900), - [anon_sym_sizeof] = ACTIONS(4900), - [anon_sym_instance_sizeof] = ACTIONS(4900), - [anon_sym_offsetof] = ACTIONS(4900), - [sym__constant_segment] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4902), - [anon_sym___LINE__] = ACTIONS(4900), - [anon_sym___END_LINE__] = ACTIONS(4900), - [anon_sym___FILE__] = ACTIONS(4900), - [anon_sym___DIR__] = ACTIONS(4900), - [sym_special_variable] = ACTIONS(4902), - [sym_global_match_data_index] = ACTIONS(4902), - [sym_identifier_method_call] = ACTIONS(4902), - [sym_instance_var] = ACTIONS(4902), - [sym_class_var] = ACTIONS(4902), - [sym_self] = ACTIONS(4900), - [anon_sym_QMARK] = ACTIONS(4902), - [sym_private] = ACTIONS(4900), - [sym_protected] = ACTIONS(4900), - [anon_sym_alias] = ACTIONS(4900), - [anon_sym_begin] = ACTIONS(4900), - [anon_sym_while] = ACTIONS(4900), - [anon_sym_until] = ACTIONS(4900), - [anon_sym_else] = ACTIONS(4900), - [anon_sym_require] = ACTIONS(4900), - [anon_sym_case] = ACTIONS(4900), - [anon_sym_select] = ACTIONS(4900), - [aux_sym_asm_token1] = ACTIONS(4902), - [sym__line_break] = ACTIONS(4902), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4902), - [sym__start_of_named_tuple] = ACTIONS(4902), - [sym_unary_plus] = ACTIONS(4902), - [sym_unary_minus] = ACTIONS(4902), - [sym_unary_wrapping_plus] = ACTIONS(4902), - [sym_unary_wrapping_minus] = ACTIONS(4902), - [sym__beginless_range_operator] = ACTIONS(4902), - [sym__regex_start] = ACTIONS(4902), - [sym__regular_if_keyword] = ACTIONS(4902), - [sym__regular_unless_keyword] = ACTIONS(4902), - [sym__regular_rescue_keyword] = ACTIONS(4902), - [sym__regular_ensure_keyword] = ACTIONS(4902), - [sym__string_literal_start] = ACTIONS(4902), - [sym__string_percent_literal_start] = ACTIONS(4902), - [sym__command_percent_literal_start] = ACTIONS(4902), - [sym__string_array_percent_literal_start] = ACTIONS(4902), - [sym__symbol_array_percent_literal_start] = ACTIONS(4902), - [sym__regex_percent_literal_start] = ACTIONS(4902), - [sym_heredoc_start] = ACTIONS(4902), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2018] = { - [sym_heredoc_body] = STATE(2018), + [2041] = { + [sym_heredoc_body] = STATE(2041), [sym_identifier] = ACTIONS(4962), [anon_sym_SEMI] = ACTIONS(4964), [anon_sym_LPAREN] = ACTIONS(4964), @@ -335546,9 +338791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4964), [sym__heredoc_body_start] = ACTIONS(7), }, - [2019] = { - [sym_heredoc_body] = STATE(2019), - [aux_sym_union_type_repeat1] = STATE(1997), + [2042] = { + [sym_heredoc_body] = STATE(2042), [sym_identifier] = ACTIONS(4966), [anon_sym_SEMI] = ACTIONS(4968), [anon_sym_LPAREN] = ACTIONS(4968), @@ -335563,9 +338807,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4968), [anon_sym_COLON_DQUOTE] = ACTIONS(4968), [anon_sym_BQUOTE] = ACTIONS(4968), - [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_COMMA] = ACTIONS(4968), [anon_sym_DASH_GT] = ACTIONS(4968), - [anon_sym_DOT] = ACTIONS(4865), + [anon_sym_DOT] = ACTIONS(4968), [anon_sym_annotation] = ACTIONS(4966), [anon_sym_end] = ACTIONS(4966), [anon_sym_AT_LBRACK] = ACTIONS(4968), @@ -335576,8 +338821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(4966), [anon_sym_lib] = ACTIONS(4966), [anon_sym_fun] = ACTIONS(4966), - [anon_sym_STAR] = ACTIONS(4867), - [anon_sym_PIPE] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), [anon_sym_BANG] = ACTIONS(4968), [anon_sym_TILDE] = ACTIONS(4968), [anon_sym_def] = ACTIONS(4966), @@ -335605,7 +338850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4968), [sym_class_var] = ACTIONS(4968), [sym_self] = ACTIONS(4966), - [anon_sym_QMARK] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4968), [sym_private] = ACTIONS(4966), [sym_protected] = ACTIONS(4966), [anon_sym_alias] = ACTIONS(4966), @@ -335640,8 +338885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4968), [sym__heredoc_body_start] = ACTIONS(7), }, - [2020] = { - [sym_heredoc_body] = STATE(2020), + [2043] = { + [sym_heredoc_body] = STATE(2043), + [aux_sym_union_type_repeat1] = STATE(2020), [sym_identifier] = ACTIONS(4970), [anon_sym_SEMI] = ACTIONS(4972), [anon_sym_LPAREN] = ACTIONS(4972), @@ -335656,10 +338902,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4972), [anon_sym_COLON_DQUOTE] = ACTIONS(4972), [anon_sym_BQUOTE] = ACTIONS(4972), - [anon_sym_LBRACK] = ACTIONS(4972), - [anon_sym_COMMA] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4863), [anon_sym_DASH_GT] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(4865), [anon_sym_annotation] = ACTIONS(4970), [anon_sym_end] = ACTIONS(4970), [anon_sym_AT_LBRACK] = ACTIONS(4972), @@ -335670,8 +338915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(4970), [anon_sym_lib] = ACTIONS(4970), [anon_sym_fun] = ACTIONS(4970), - [anon_sym_STAR] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4867), + [anon_sym_PIPE] = ACTIONS(4869), [anon_sym_BANG] = ACTIONS(4972), [anon_sym_TILDE] = ACTIONS(4972), [anon_sym_def] = ACTIONS(4970), @@ -335699,7 +338944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4972), [sym_class_var] = ACTIONS(4972), [sym_self] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4972), + [anon_sym_QMARK] = ACTIONS(4871), [sym_private] = ACTIONS(4970), [sym_protected] = ACTIONS(4970), [anon_sym_alias] = ACTIONS(4970), @@ -335734,8 +338979,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4972), [sym__heredoc_body_start] = ACTIONS(7), }, - [2021] = { - [sym_heredoc_body] = STATE(2021), + [2044] = { + [sym_heredoc_body] = STATE(2044), [sym_identifier] = ACTIONS(4974), [anon_sym_SEMI] = ACTIONS(4976), [anon_sym_LPAREN] = ACTIONS(4976), @@ -335828,168 +339073,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4976), [sym__heredoc_body_start] = ACTIONS(7), }, - [2022] = { - [sym_heredoc_body] = STATE(2022), - [ts_builtin_sym_end] = ACTIONS(1655), - [sym_identifier] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1696), - [sym_true] = ACTIONS(1696), - [sym_false] = ACTIONS(1696), - [aux_sym_integer_token2] = ACTIONS(1696), - [aux_sym_float_token2] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [sym_operator_symbol] = ACTIONS(1655), - [sym_unquoted_symbol] = ACTIONS(1655), - [anon_sym_COLON_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1655), - [anon_sym_annotation] = ACTIONS(1696), - [anon_sym_end] = ACTIONS(1696), - [anon_sym_AT_LBRACK] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1696), - [anon_sym_abstract] = ACTIONS(1696), - [anon_sym_class] = ACTIONS(1696), - [anon_sym_struct] = ACTIONS(1696), - [anon_sym_enum] = ACTIONS(1696), - [anon_sym_lib] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_def] = ACTIONS(1696), - [anon_sym_include] = ACTIONS(1696), - [anon_sym_extend] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_next] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_with] = ACTIONS(1696), - [anon_sym_yield] = ACTIONS(1696), - [anon_sym_typeof] = ACTIONS(1696), - [anon_sym_sizeof] = ACTIONS(1696), - [anon_sym_instance_sizeof] = ACTIONS(1696), - [anon_sym_offsetof] = ACTIONS(1696), - [sym__constant_segment] = ACTIONS(1655), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym___LINE__] = ACTIONS(1696), - [anon_sym___END_LINE__] = ACTIONS(1696), - [anon_sym___FILE__] = ACTIONS(1696), - [anon_sym___DIR__] = ACTIONS(1696), - [sym_special_variable] = ACTIONS(1655), - [sym_global_match_data_index] = ACTIONS(1655), - [sym_identifier_method_call] = ACTIONS(1655), - [sym_instance_var] = ACTIONS(1655), - [sym_class_var] = ACTIONS(1655), - [sym_self] = ACTIONS(1696), - [sym_private] = ACTIONS(1696), - [sym_protected] = ACTIONS(1696), - [anon_sym_alias] = ACTIONS(1696), - [anon_sym_begin] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_until] = ACTIONS(1696), - [anon_sym_elsif] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1696), - [anon_sym_require] = ACTIONS(1696), - [anon_sym_when] = ACTIONS(1696), - [anon_sym_case] = ACTIONS(1696), - [anon_sym_select] = ACTIONS(1696), - [anon_sym_in] = ACTIONS(1696), - [aux_sym_asm_token1] = ACTIONS(1655), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1655), - [sym__start_of_named_tuple] = ACTIONS(1655), - [sym_unary_plus] = ACTIONS(1655), - [sym_unary_minus] = ACTIONS(1655), - [sym_unary_wrapping_plus] = ACTIONS(1655), - [sym_unary_wrapping_minus] = ACTIONS(1655), - [sym__beginless_range_operator] = ACTIONS(1655), - [sym__regex_start] = ACTIONS(1655), - [sym__regular_if_keyword] = ACTIONS(1655), - [sym__regular_unless_keyword] = ACTIONS(1655), - [sym__string_literal_start] = ACTIONS(1655), - [sym__string_percent_literal_start] = ACTIONS(1655), - [sym__command_percent_literal_start] = ACTIONS(1655), - [sym__string_array_percent_literal_start] = ACTIONS(1655), - [sym__symbol_array_percent_literal_start] = ACTIONS(1655), - [sym__regex_percent_literal_start] = ACTIONS(1655), - [sym_heredoc_start] = ACTIONS(1655), + [2045] = { + [sym_heredoc_body] = STATE(2045), + [aux_sym_constant_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4845), + [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_COMMA] = ACTIONS(4847), + [anon_sym_DASH_GT] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_annotation] = ACTIONS(4845), + [anon_sym_end] = ACTIONS(4845), + [anon_sym_AT_LBRACK] = ACTIONS(4847), + [anon_sym_module] = ACTIONS(4845), + [anon_sym_abstract] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4847), + [anon_sym_struct] = ACTIONS(4845), + [anon_sym_enum] = ACTIONS(4845), + [anon_sym_lib] = ACTIONS(4845), + [anon_sym_fun] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4847), + [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_TILDE] = ACTIONS(4847), + [anon_sym_def] = 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(4978), + [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_global_match_data_index] = ACTIONS(4847), + [sym_identifier_method_call] = ACTIONS(4847), + [sym_instance_var] = ACTIONS(4847), + [sym_class_var] = ACTIONS(4847), + [sym_self] = ACTIONS(4845), + [anon_sym_LPAREN2] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4847), + [sym_private] = ACTIONS(4845), + [sym_protected] = ACTIONS(4845), + [anon_sym_alias] = ACTIONS(4845), + [anon_sym_begin] = ACTIONS(4845), + [anon_sym_while] = ACTIONS(4845), + [anon_sym_until] = ACTIONS(4845), + [anon_sym_require] = ACTIONS(4845), + [anon_sym_case] = ACTIONS(4845), + [anon_sym_select] = ACTIONS(4845), + [aux_sym_asm_token1] = ACTIONS(4847), + [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__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), [sym__heredoc_body_start] = ACTIONS(7), }, - [2023] = { - [sym_heredoc_body] = STATE(2023), - [sym_forall] = STATE(2076), - [sym_identifier] = ACTIONS(4978), + [2046] = { + [sym_heredoc_body] = STATE(2046), + [ts_builtin_sym_end] = ACTIONS(4980), + [sym_identifier] = ACTIONS(4982), [anon_sym_SEMI] = ACTIONS(4980), [anon_sym_LPAREN] = ACTIONS(4980), + [anon_sym_RPAREN] = ACTIONS(4980), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4978), - [sym_true] = ACTIONS(4978), - [sym_false] = ACTIONS(4978), - [aux_sym_integer_token2] = ACTIONS(4978), + [sym_nil] = ACTIONS(4982), + [sym_true] = ACTIONS(4982), + [sym_false] = ACTIONS(4982), + [aux_sym_integer_token2] = ACTIONS(4982), [aux_sym_float_token2] = ACTIONS(4980), [anon_sym_SQUOTE] = ACTIONS(4980), + [anon_sym_RBRACE] = 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_annotation] = ACTIONS(4982), + [anon_sym_end] = ACTIONS(4982), [anon_sym_AT_LBRACK] = ACTIONS(4980), - [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_lib] = ACTIONS(4978), - [anon_sym_fun] = ACTIONS(4978), - [aux_sym_top_level_fun_def_token1] = 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_lib] = ACTIONS(4982), + [anon_sym_fun] = ACTIONS(4982), [anon_sym_STAR] = ACTIONS(4980), [anon_sym_BANG] = ACTIONS(4980), [anon_sym_TILDE] = ACTIONS(4980), - [anon_sym_def] = ACTIONS(4978), - [anon_sym_include] = ACTIONS(4978), - [anon_sym_extend] = ACTIONS(4978), - [anon_sym_forall] = ACTIONS(4984), - [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), + [anon_sym_def] = 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(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), + [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(4980), [sym_global_match_data_index] = ACTIONS(4980), [sym_identifier_method_call] = ACTIONS(4980), [sym_instance_var] = ACTIONS(4980), [sym_class_var] = ACTIONS(4980), - [sym_self] = ACTIONS(4978), - [sym_private] = ACTIONS(4978), - [sym_protected] = 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_self] = ACTIONS(4982), + [sym_private] = ACTIONS(4982), + [sym_protected] = ACTIONS(4982), + [anon_sym_alias] = ACTIONS(4982), + [anon_sym_begin] = ACTIONS(4982), + [anon_sym_while] = ACTIONS(4982), + [anon_sym_until] = ACTIONS(4982), + [anon_sym_elsif] = ACTIONS(4982), + [anon_sym_else] = ACTIONS(4982), + [anon_sym_require] = ACTIONS(4982), + [anon_sym_when] = ACTIONS(4982), + [anon_sym_case] = ACTIONS(4982), + [anon_sym_select] = ACTIONS(4982), + [anon_sym_in] = ACTIONS(4982), [aux_sym_asm_token1] = ACTIONS(4980), - [sym__line_break] = ACTIONS(4980), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(4980), [sym__start_of_named_tuple] = ACTIONS(4980), @@ -336001,8 +339248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -336012,377 +339257,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4980), [sym__heredoc_body_start] = ACTIONS(7), }, - [2024] = { - [sym_heredoc_body] = STATE(2024), - [sym_forall] = STATE(2082), - [sym_identifier] = ACTIONS(4986), - [anon_sym_SEMI] = ACTIONS(4988), + [2047] = { + [sym_heredoc_body] = STATE(2047), + [aux_sym_constant_repeat1] = STATE(2058), + [sym_identifier] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4845), + [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_COMMA] = ACTIONS(4847), + [anon_sym_DASH_GT] = ACTIONS(4847), + [anon_sym_DOT] = ACTIONS(4847), + [anon_sym_annotation] = ACTIONS(4845), + [anon_sym_end] = ACTIONS(4845), + [anon_sym_AT_LBRACK] = ACTIONS(4847), + [anon_sym_module] = ACTIONS(4845), + [anon_sym_abstract] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4847), + [anon_sym_struct] = ACTIONS(4845), + [anon_sym_enum] = ACTIONS(4845), + [anon_sym_lib] = ACTIONS(4845), + [anon_sym_fun] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4847), + [anon_sym_PIPE] = ACTIONS(4847), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_TILDE] = ACTIONS(4847), + [anon_sym_def] = 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(4978), + [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_global_match_data_index] = ACTIONS(4847), + [sym_identifier_method_call] = ACTIONS(4847), + [sym_instance_var] = ACTIONS(4847), + [sym_class_var] = ACTIONS(4847), + [sym_self] = ACTIONS(4845), + [anon_sym_LPAREN2] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4847), + [sym_private] = ACTIONS(4845), + [sym_protected] = ACTIONS(4845), + [anon_sym_alias] = ACTIONS(4845), + [anon_sym_begin] = ACTIONS(4845), + [anon_sym_while] = ACTIONS(4845), + [anon_sym_until] = ACTIONS(4845), + [anon_sym_require] = ACTIONS(4845), + [anon_sym_case] = ACTIONS(4845), + [anon_sym_select] = ACTIONS(4845), + [aux_sym_asm_token1] = ACTIONS(4847), + [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__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), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2048] = { + [sym_heredoc_body] = STATE(2048), + [sym_forall] = STATE(2104), + [sym_identifier] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), [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_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_lib] = ACTIONS(4986), - [anon_sym_fun] = ACTIONS(4986), + [sym_nil] = ACTIONS(4984), + [sym_true] = ACTIONS(4984), + [sym_false] = ACTIONS(4984), + [aux_sym_integer_token2] = ACTIONS(4984), + [aux_sym_float_token2] = ACTIONS(4986), + [anon_sym_SQUOTE] = ACTIONS(4986), + [sym_operator_symbol] = ACTIONS(4986), + [sym_unquoted_symbol] = ACTIONS(4986), + [anon_sym_COLON_DQUOTE] = ACTIONS(4986), + [anon_sym_BQUOTE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DASH_GT] = ACTIONS(4986), + [anon_sym_annotation] = ACTIONS(4984), + [anon_sym_end] = ACTIONS(4984), + [anon_sym_AT_LBRACK] = ACTIONS(4986), + [anon_sym_module] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_class] = ACTIONS(4984), + [anon_sym_struct] = ACTIONS(4984), + [anon_sym_enum] = ACTIONS(4984), + [anon_sym_lib] = ACTIONS(4984), + [anon_sym_fun] = ACTIONS(4984), [aux_sym_top_level_fun_def_token1] = ACTIONS(4990), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_BANG] = ACTIONS(4988), - [anon_sym_TILDE] = ACTIONS(4988), - [anon_sym_def] = ACTIONS(4986), - [anon_sym_include] = ACTIONS(4986), - [anon_sym_extend] = ACTIONS(4986), - [anon_sym_forall] = ACTIONS(4984), - [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_global_match_data_index] = ACTIONS(4988), - [sym_identifier_method_call] = ACTIONS(4988), - [sym_instance_var] = ACTIONS(4988), - [sym_class_var] = ACTIONS(4988), - [sym_self] = ACTIONS(4986), - [sym_private] = ACTIONS(4986), - [sym_protected] = 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), - [aux_sym_asm_token1] = ACTIONS(4988), - [sym__line_break] = ACTIONS(4988), - [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), + [anon_sym_STAR] = ACTIONS(4986), + [anon_sym_BANG] = ACTIONS(4986), + [anon_sym_TILDE] = ACTIONS(4986), + [anon_sym_def] = ACTIONS(4984), + [anon_sym_include] = ACTIONS(4984), + [anon_sym_extend] = ACTIONS(4984), + [anon_sym_forall] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_next] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_with] = ACTIONS(4984), + [anon_sym_yield] = ACTIONS(4984), + [anon_sym_typeof] = ACTIONS(4984), + [anon_sym_sizeof] = ACTIONS(4984), + [anon_sym_instance_sizeof] = ACTIONS(4984), + [anon_sym_offsetof] = ACTIONS(4984), + [sym__constant_segment] = ACTIONS(4986), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym___LINE__] = ACTIONS(4984), + [anon_sym___END_LINE__] = ACTIONS(4984), + [anon_sym___FILE__] = ACTIONS(4984), + [anon_sym___DIR__] = ACTIONS(4984), + [sym_special_variable] = ACTIONS(4986), + [sym_global_match_data_index] = ACTIONS(4986), + [sym_identifier_method_call] = ACTIONS(4986), + [sym_instance_var] = ACTIONS(4986), + [sym_class_var] = ACTIONS(4986), + [sym_self] = ACTIONS(4984), + [sym_private] = ACTIONS(4984), + [sym_protected] = ACTIONS(4984), + [anon_sym_alias] = ACTIONS(4984), + [anon_sym_begin] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_until] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_require] = ACTIONS(4984), + [anon_sym_case] = ACTIONS(4984), + [anon_sym_select] = ACTIONS(4984), + [aux_sym_asm_token1] = ACTIONS(4986), + [sym__line_break] = ACTIONS(4986), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4986), + [sym__start_of_named_tuple] = ACTIONS(4986), + [sym_unary_plus] = ACTIONS(4986), + [sym_unary_minus] = ACTIONS(4986), + [sym_unary_wrapping_plus] = ACTIONS(4986), + [sym_unary_wrapping_minus] = ACTIONS(4986), + [sym__beginless_range_operator] = ACTIONS(4986), + [sym__regex_start] = ACTIONS(4986), + [sym__regular_if_keyword] = ACTIONS(4986), + [sym__regular_unless_keyword] = ACTIONS(4986), + [sym__regular_rescue_keyword] = ACTIONS(4986), + [sym__regular_ensure_keyword] = ACTIONS(4986), + [sym__string_literal_start] = ACTIONS(4986), + [sym__string_percent_literal_start] = ACTIONS(4986), + [sym__command_percent_literal_start] = ACTIONS(4986), + [sym__string_array_percent_literal_start] = ACTIONS(4986), + [sym__symbol_array_percent_literal_start] = ACTIONS(4986), + [sym__regex_percent_literal_start] = ACTIONS(4986), + [sym_heredoc_start] = ACTIONS(4986), [sym__heredoc_body_start] = ACTIONS(7), }, - [2025] = { - [sym_heredoc_body] = STATE(2025), - [sym_forall] = STATE(2061), - [sym_identifier] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4994), + [2049] = { + [sym_heredoc_body] = STATE(2049), + [sym_forall] = STATE(2085), + [sym_identifier] = ACTIONS(4994), + [anon_sym_SEMI] = ACTIONS(4996), [anon_sym_LPAREN] = ACTIONS(4996), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4992), - [sym_true] = ACTIONS(4992), - [sym_false] = ACTIONS(4992), - [aux_sym_integer_token2] = ACTIONS(4992), - [aux_sym_float_token2] = ACTIONS(4994), - [anon_sym_SQUOTE] = ACTIONS(4994), - [sym_operator_symbol] = ACTIONS(4994), - [sym_unquoted_symbol] = ACTIONS(4994), - [anon_sym_COLON_DQUOTE] = ACTIONS(4994), - [anon_sym_BQUOTE] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [anon_sym_annotation] = ACTIONS(4992), - [anon_sym_end] = ACTIONS(4992), - [anon_sym_AT_LBRACK] = ACTIONS(4994), - [anon_sym_module] = ACTIONS(4992), - [anon_sym_abstract] = ACTIONS(4992), - [anon_sym_class] = ACTIONS(4992), - [anon_sym_struct] = ACTIONS(4992), - [anon_sym_enum] = ACTIONS(4992), - [anon_sym_lib] = ACTIONS(4992), - [anon_sym_fun] = ACTIONS(4992), + [sym_nil] = ACTIONS(4994), + [sym_true] = ACTIONS(4994), + [sym_false] = ACTIONS(4994), + [aux_sym_integer_token2] = ACTIONS(4994), + [aux_sym_float_token2] = ACTIONS(4996), + [anon_sym_SQUOTE] = ACTIONS(4996), + [sym_operator_symbol] = ACTIONS(4996), + [sym_unquoted_symbol] = ACTIONS(4996), + [anon_sym_COLON_DQUOTE] = ACTIONS(4996), + [anon_sym_BQUOTE] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_DASH_GT] = ACTIONS(4996), + [anon_sym_annotation] = ACTIONS(4994), + [anon_sym_end] = ACTIONS(4994), + [anon_sym_AT_LBRACK] = ACTIONS(4996), + [anon_sym_module] = ACTIONS(4994), + [anon_sym_abstract] = ACTIONS(4994), + [anon_sym_class] = ACTIONS(4994), + [anon_sym_struct] = ACTIONS(4994), + [anon_sym_enum] = ACTIONS(4994), + [anon_sym_lib] = ACTIONS(4994), + [anon_sym_fun] = ACTIONS(4994), [aux_sym_top_level_fun_def_token1] = ACTIONS(4998), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_BANG] = ACTIONS(4994), - [anon_sym_TILDE] = ACTIONS(4994), - [anon_sym_def] = ACTIONS(4992), - [anon_sym_include] = ACTIONS(4992), - [anon_sym_extend] = ACTIONS(4992), - [anon_sym_forall] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(4992), - [anon_sym_next] = ACTIONS(4992), - [anon_sym_break] = ACTIONS(4992), - [anon_sym_with] = ACTIONS(4992), - [anon_sym_yield] = ACTIONS(4992), - [anon_sym_typeof] = ACTIONS(4992), - [anon_sym_sizeof] = ACTIONS(4992), - [anon_sym_instance_sizeof] = ACTIONS(4992), - [anon_sym_offsetof] = ACTIONS(4992), - [sym__constant_segment] = ACTIONS(4994), - [anon_sym_COLON_COLON] = ACTIONS(4994), - [anon_sym___LINE__] = ACTIONS(4992), - [anon_sym___END_LINE__] = ACTIONS(4992), - [anon_sym___FILE__] = ACTIONS(4992), - [anon_sym___DIR__] = ACTIONS(4992), - [sym_special_variable] = ACTIONS(4994), - [sym_global_match_data_index] = ACTIONS(4994), - [sym_identifier_method_call] = ACTIONS(4994), - [sym_instance_var] = ACTIONS(4994), - [sym_class_var] = ACTIONS(4994), - [sym_self] = ACTIONS(4992), - [sym_private] = ACTIONS(4992), - [sym_protected] = ACTIONS(4992), - [anon_sym_alias] = ACTIONS(4992), - [anon_sym_begin] = ACTIONS(4992), - [anon_sym_while] = ACTIONS(4992), - [anon_sym_until] = ACTIONS(4992), - [anon_sym_else] = ACTIONS(4992), - [anon_sym_require] = ACTIONS(4992), - [anon_sym_case] = ACTIONS(4992), - [anon_sym_select] = ACTIONS(4992), - [aux_sym_asm_token1] = ACTIONS(4994), - [sym__line_break] = ACTIONS(4994), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4994), - [sym__start_of_named_tuple] = ACTIONS(4994), - [sym_unary_plus] = ACTIONS(4994), - [sym_unary_minus] = ACTIONS(4994), - [sym_unary_wrapping_plus] = ACTIONS(4994), - [sym_unary_wrapping_minus] = ACTIONS(4994), - [sym__beginless_range_operator] = ACTIONS(4994), - [sym__regex_start] = ACTIONS(4994), - [sym__regular_if_keyword] = ACTIONS(4994), - [sym__regular_unless_keyword] = ACTIONS(4994), - [sym__regular_rescue_keyword] = ACTIONS(4994), - [sym__regular_ensure_keyword] = ACTIONS(4994), - [sym__string_literal_start] = ACTIONS(4994), - [sym__string_percent_literal_start] = ACTIONS(4994), - [sym__command_percent_literal_start] = ACTIONS(4994), - [sym__string_array_percent_literal_start] = ACTIONS(4994), - [sym__symbol_array_percent_literal_start] = ACTIONS(4994), - [sym__regex_percent_literal_start] = ACTIONS(4994), - [sym_heredoc_start] = ACTIONS(4994), + [anon_sym_STAR] = ACTIONS(4996), + [anon_sym_BANG] = ACTIONS(4996), + [anon_sym_TILDE] = ACTIONS(4996), + [anon_sym_def] = ACTIONS(4994), + [anon_sym_include] = ACTIONS(4994), + [anon_sym_extend] = ACTIONS(4994), + [anon_sym_forall] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4994), + [anon_sym_next] = ACTIONS(4994), + [anon_sym_break] = ACTIONS(4994), + [anon_sym_with] = ACTIONS(4994), + [anon_sym_yield] = ACTIONS(4994), + [anon_sym_typeof] = ACTIONS(4994), + [anon_sym_sizeof] = ACTIONS(4994), + [anon_sym_instance_sizeof] = ACTIONS(4994), + [anon_sym_offsetof] = ACTIONS(4994), + [sym__constant_segment] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(4996), + [anon_sym___LINE__] = ACTIONS(4994), + [anon_sym___END_LINE__] = ACTIONS(4994), + [anon_sym___FILE__] = ACTIONS(4994), + [anon_sym___DIR__] = ACTIONS(4994), + [sym_special_variable] = ACTIONS(4996), + [sym_global_match_data_index] = ACTIONS(4996), + [sym_identifier_method_call] = ACTIONS(4996), + [sym_instance_var] = ACTIONS(4996), + [sym_class_var] = ACTIONS(4996), + [sym_self] = ACTIONS(4994), + [sym_private] = ACTIONS(4994), + [sym_protected] = ACTIONS(4994), + [anon_sym_alias] = ACTIONS(4994), + [anon_sym_begin] = ACTIONS(4994), + [anon_sym_while] = ACTIONS(4994), + [anon_sym_until] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4994), + [anon_sym_require] = ACTIONS(4994), + [anon_sym_case] = ACTIONS(4994), + [anon_sym_select] = ACTIONS(4994), + [aux_sym_asm_token1] = ACTIONS(4996), + [sym__line_break] = ACTIONS(4996), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4996), + [sym__start_of_named_tuple] = ACTIONS(4996), + [sym_unary_plus] = ACTIONS(4996), + [sym_unary_minus] = ACTIONS(4996), + [sym_unary_wrapping_plus] = ACTIONS(4996), + [sym_unary_wrapping_minus] = ACTIONS(4996), + [sym__beginless_range_operator] = ACTIONS(4996), + [sym__regex_start] = ACTIONS(4996), + [sym__regular_if_keyword] = ACTIONS(4996), + [sym__regular_unless_keyword] = ACTIONS(4996), + [sym__regular_rescue_keyword] = ACTIONS(4996), + [sym__regular_ensure_keyword] = ACTIONS(4996), + [sym__string_literal_start] = ACTIONS(4996), + [sym__string_percent_literal_start] = ACTIONS(4996), + [sym__command_percent_literal_start] = ACTIONS(4996), + [sym__string_array_percent_literal_start] = ACTIONS(4996), + [sym__symbol_array_percent_literal_start] = ACTIONS(4996), + [sym__regex_percent_literal_start] = ACTIONS(4996), + [sym_heredoc_start] = ACTIONS(4996), [sym__heredoc_body_start] = ACTIONS(7), }, - [2026] = { - [sym_heredoc_body] = STATE(2026), - [ts_builtin_sym_end] = ACTIONS(5000), - [sym_identifier] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5000), - [anon_sym_LPAREN] = ACTIONS(5000), - [anon_sym_RPAREN] = ACTIONS(5000), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5002), - [sym_true] = ACTIONS(5002), - [sym_false] = ACTIONS(5002), - [aux_sym_integer_token2] = ACTIONS(5002), - [aux_sym_float_token2] = ACTIONS(5000), - [anon_sym_SQUOTE] = ACTIONS(5000), - [anon_sym_RBRACE] = ACTIONS(5000), - [sym_operator_symbol] = ACTIONS(5000), - [sym_unquoted_symbol] = ACTIONS(5000), - [anon_sym_COLON_DQUOTE] = ACTIONS(5000), - [anon_sym_BQUOTE] = ACTIONS(5000), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_DASH_GT] = ACTIONS(5000), - [anon_sym_annotation] = ACTIONS(5002), - [anon_sym_end] = ACTIONS(5002), - [anon_sym_AT_LBRACK] = ACTIONS(5000), - [anon_sym_module] = ACTIONS(5002), - [anon_sym_abstract] = ACTIONS(5002), - [anon_sym_class] = ACTIONS(5002), - [anon_sym_struct] = ACTIONS(5002), - [anon_sym_enum] = ACTIONS(5002), - [anon_sym_lib] = ACTIONS(5002), - [anon_sym_fun] = ACTIONS(5002), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5000), - [anon_sym_def] = ACTIONS(5002), - [anon_sym_include] = ACTIONS(5002), - [anon_sym_extend] = ACTIONS(5002), - [anon_sym_return] = ACTIONS(5002), - [anon_sym_next] = ACTIONS(5002), - [anon_sym_break] = ACTIONS(5002), - [anon_sym_with] = ACTIONS(5002), - [anon_sym_yield] = ACTIONS(5002), - [anon_sym_typeof] = ACTIONS(5002), - [anon_sym_sizeof] = ACTIONS(5002), - [anon_sym_instance_sizeof] = ACTIONS(5002), - [anon_sym_offsetof] = ACTIONS(5002), - [sym__constant_segment] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5000), - [anon_sym___LINE__] = ACTIONS(5002), - [anon_sym___END_LINE__] = ACTIONS(5002), - [anon_sym___FILE__] = ACTIONS(5002), - [anon_sym___DIR__] = ACTIONS(5002), - [sym_special_variable] = ACTIONS(5000), - [sym_global_match_data_index] = ACTIONS(5000), - [sym_identifier_method_call] = ACTIONS(5000), - [sym_instance_var] = ACTIONS(5000), - [sym_class_var] = ACTIONS(5000), - [sym_self] = ACTIONS(5002), - [sym_private] = ACTIONS(5002), - [sym_protected] = ACTIONS(5002), - [anon_sym_alias] = ACTIONS(5002), - [anon_sym_begin] = ACTIONS(5002), - [anon_sym_while] = ACTIONS(5002), - [anon_sym_until] = ACTIONS(5002), - [anon_sym_elsif] = ACTIONS(5002), - [anon_sym_else] = ACTIONS(5002), - [anon_sym_require] = ACTIONS(5002), - [anon_sym_when] = ACTIONS(5002), - [anon_sym_case] = ACTIONS(5002), - [anon_sym_select] = ACTIONS(5002), - [anon_sym_in] = ACTIONS(5002), - [aux_sym_asm_token1] = ACTIONS(5000), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5000), - [sym__start_of_named_tuple] = ACTIONS(5000), - [sym_unary_plus] = ACTIONS(5000), - [sym_unary_minus] = ACTIONS(5000), - [sym_unary_wrapping_plus] = ACTIONS(5000), - [sym_unary_wrapping_minus] = ACTIONS(5000), - [sym__beginless_range_operator] = ACTIONS(5000), - [sym__regex_start] = ACTIONS(5000), - [sym__regular_if_keyword] = ACTIONS(5000), - [sym__regular_unless_keyword] = ACTIONS(5000), - [sym__string_literal_start] = ACTIONS(5000), - [sym__string_percent_literal_start] = ACTIONS(5000), - [sym__command_percent_literal_start] = ACTIONS(5000), - [sym__string_array_percent_literal_start] = ACTIONS(5000), - [sym__symbol_array_percent_literal_start] = ACTIONS(5000), - [sym__regex_percent_literal_start] = ACTIONS(5000), - [sym_heredoc_start] = ACTIONS(5000), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2027] = { - [sym_heredoc_body] = STATE(2027), - [aux_sym_proc_type_repeat1] = STATE(10348), - [sym_identifier] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5004), - [sym_true] = ACTIONS(5004), - [sym_false] = ACTIONS(5004), - [aux_sym_integer_token2] = ACTIONS(5004), - [aux_sym_float_token2] = ACTIONS(5006), - [anon_sym_SQUOTE] = ACTIONS(5006), - [sym_operator_symbol] = ACTIONS(5006), - [sym_unquoted_symbol] = ACTIONS(5006), - [anon_sym_COLON_DQUOTE] = ACTIONS(5006), - [anon_sym_BQUOTE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5008), - [anon_sym_DASH_GT] = ACTIONS(5010), - [anon_sym_annotation] = ACTIONS(5004), - [anon_sym_end] = ACTIONS(5004), - [anon_sym_AT_LBRACK] = ACTIONS(5006), - [anon_sym_module] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_class] = ACTIONS(5004), - [anon_sym_struct] = ACTIONS(5004), - [anon_sym_enum] = ACTIONS(5004), - [anon_sym_lib] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_BANG] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_def] = ACTIONS(5004), - [anon_sym_include] = ACTIONS(5004), - [anon_sym_extend] = ACTIONS(5004), - [anon_sym_forall] = ACTIONS(5004), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_next] = ACTIONS(5004), - [anon_sym_break] = ACTIONS(5004), - [anon_sym_with] = ACTIONS(5004), - [anon_sym_yield] = ACTIONS(5004), - [anon_sym_typeof] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(5004), - [anon_sym_instance_sizeof] = ACTIONS(5004), - [anon_sym_offsetof] = ACTIONS(5004), - [sym__constant_segment] = ACTIONS(5006), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym___LINE__] = ACTIONS(5004), - [anon_sym___END_LINE__] = ACTIONS(5004), - [anon_sym___FILE__] = ACTIONS(5004), - [anon_sym___DIR__] = ACTIONS(5004), - [sym_special_variable] = ACTIONS(5006), - [sym_global_match_data_index] = ACTIONS(5006), - [sym_identifier_method_call] = ACTIONS(5006), - [sym_instance_var] = ACTIONS(5006), - [sym_class_var] = ACTIONS(5006), - [sym_self] = ACTIONS(5004), - [sym_private] = ACTIONS(5004), - [sym_protected] = ACTIONS(5004), - [anon_sym_alias] = ACTIONS(5004), - [anon_sym_begin] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_until] = ACTIONS(5004), - [anon_sym_else] = ACTIONS(5004), - [anon_sym_require] = ACTIONS(5004), - [anon_sym_case] = ACTIONS(5004), - [anon_sym_select] = ACTIONS(5004), - [aux_sym_asm_token1] = ACTIONS(5006), - [sym__line_break] = ACTIONS(5006), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5006), - [sym__start_of_named_tuple] = ACTIONS(5006), - [sym_unary_plus] = ACTIONS(5006), - [sym_unary_minus] = ACTIONS(5006), - [sym_unary_wrapping_plus] = ACTIONS(5006), - [sym_unary_wrapping_minus] = ACTIONS(5006), - [sym__beginless_range_operator] = ACTIONS(5006), - [sym__regex_start] = ACTIONS(5006), - [sym__regular_if_keyword] = ACTIONS(5006), - [sym__regular_unless_keyword] = ACTIONS(5006), - [sym__regular_rescue_keyword] = ACTIONS(5006), - [sym__regular_ensure_keyword] = ACTIONS(5006), - [sym__string_literal_start] = ACTIONS(5006), - [sym__string_percent_literal_start] = ACTIONS(5006), - [sym__command_percent_literal_start] = ACTIONS(5006), - [sym__string_array_percent_literal_start] = ACTIONS(5006), - [sym__symbol_array_percent_literal_start] = ACTIONS(5006), - [sym__regex_percent_literal_start] = ACTIONS(5006), - [sym_heredoc_start] = ACTIONS(5006), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2028] = { - [sym_heredoc_body] = STATE(2028), - [aux_sym_constant_repeat1] = STATE(2034), + [2050] = { + [sym_heredoc_body] = STATE(2050), + [aux_sym_constant_repeat1] = STATE(2045), [sym_identifier] = ACTIONS(4855), [anon_sym_SEMI] = ACTIONS(4857), [anon_sym_LPAREN] = ACTIONS(4855), @@ -336429,7 +339582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(4855), [anon_sym_offsetof] = ACTIONS(4855), [sym__constant_segment] = ACTIONS(4857), - [anon_sym_COLON_COLON] = ACTIONS(5013), + [anon_sym_COLON_COLON] = ACTIONS(4978), [anon_sym___LINE__] = ACTIONS(4855), [anon_sym___END_LINE__] = ACTIONS(4855), [anon_sym___FILE__] = ACTIONS(4855), @@ -336472,469 +339625,561 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4857), [sym__heredoc_body_start] = ACTIONS(7), }, - [2029] = { - [sym_heredoc_body] = STATE(2029), - [aux_sym_constant_repeat1] = STATE(2029), - [sym_identifier] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(4844), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4844), - [sym_true] = ACTIONS(4844), - [sym_false] = ACTIONS(4844), - [aux_sym_integer_token2] = ACTIONS(4844), - [aux_sym_float_token2] = ACTIONS(4846), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym_operator_symbol] = ACTIONS(4846), - [sym_unquoted_symbol] = ACTIONS(4846), - [anon_sym_COLON_DQUOTE] = ACTIONS(4846), - [anon_sym_BQUOTE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4846), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_end] = ACTIONS(4844), - [anon_sym_AT_LBRACK] = ACTIONS(4846), - [anon_sym_module] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_class] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4846), - [anon_sym_struct] = ACTIONS(4844), - [anon_sym_enum] = ACTIONS(4844), - [anon_sym_lib] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_def] = ACTIONS(4844), - [anon_sym_include] = ACTIONS(4844), - [anon_sym_extend] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_next] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [anon_sym_yield] = ACTIONS(4844), - [anon_sym_typeof] = ACTIONS(4844), - [anon_sym_sizeof] = ACTIONS(4844), - [anon_sym_instance_sizeof] = ACTIONS(4844), - [anon_sym_offsetof] = ACTIONS(4844), - [sym__constant_segment] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(5015), - [anon_sym___LINE__] = ACTIONS(4844), - [anon_sym___END_LINE__] = ACTIONS(4844), - [anon_sym___FILE__] = ACTIONS(4844), - [anon_sym___DIR__] = ACTIONS(4844), - [sym_special_variable] = ACTIONS(4846), - [sym_global_match_data_index] = ACTIONS(4846), - [sym_identifier_method_call] = ACTIONS(4846), - [sym_instance_var] = ACTIONS(4846), - [sym_class_var] = ACTIONS(4846), - [sym_self] = ACTIONS(4844), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_QMARK] = ACTIONS(4846), - [sym_private] = ACTIONS(4844), - [sym_protected] = ACTIONS(4844), - [anon_sym_alias] = ACTIONS(4844), - [anon_sym_begin] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_until] = ACTIONS(4844), - [anon_sym_require] = ACTIONS(4844), - [anon_sym_case] = ACTIONS(4844), - [anon_sym_select] = ACTIONS(4844), - [aux_sym_asm_token1] = ACTIONS(4846), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4846), - [sym__start_of_named_tuple] = ACTIONS(4846), - [sym_unary_plus] = ACTIONS(4846), - [sym_unary_minus] = ACTIONS(4846), - [sym_unary_wrapping_plus] = ACTIONS(4846), - [sym_unary_wrapping_minus] = ACTIONS(4846), - [sym__beginless_range_operator] = ACTIONS(4846), - [sym__regex_start] = ACTIONS(4846), - [sym__regular_if_keyword] = ACTIONS(4846), - [sym__regular_unless_keyword] = ACTIONS(4846), - [sym__string_literal_start] = ACTIONS(4846), - [sym__string_percent_literal_start] = ACTIONS(4846), - [sym__command_percent_literal_start] = ACTIONS(4846), - [sym__string_array_percent_literal_start] = ACTIONS(4846), - [sym__symbol_array_percent_literal_start] = ACTIONS(4846), - [sym__regex_percent_literal_start] = ACTIONS(4846), - [sym_heredoc_start] = ACTIONS(4846), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2030] = { - [sym_heredoc_body] = STATE(2030), - [aux_sym_constant_repeat1] = STATE(2029), - [sym_identifier] = ACTIONS(4851), - [anon_sym_SEMI] = ACTIONS(4853), - [anon_sym_LPAREN] = ACTIONS(4851), + [2051] = { + [sym_heredoc_body] = STATE(2051), + [ts_builtin_sym_end] = ACTIONS(1655), + [sym_identifier] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), [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_COMMA] = ACTIONS(4853), - [anon_sym_DASH_GT] = ACTIONS(4853), - [anon_sym_DOT] = ACTIONS(4853), - [anon_sym_annotation] = ACTIONS(4851), - [anon_sym_end] = ACTIONS(4851), - [anon_sym_AT_LBRACK] = ACTIONS(4853), - [anon_sym_module] = ACTIONS(4851), - [anon_sym_abstract] = ACTIONS(4851), - [anon_sym_class] = ACTIONS(4851), - [anon_sym_LT] = ACTIONS(4853), - [anon_sym_struct] = ACTIONS(4851), - [anon_sym_enum] = ACTIONS(4851), - [anon_sym_lib] = ACTIONS(4851), - [anon_sym_fun] = ACTIONS(4851), - [anon_sym_STAR] = ACTIONS(4853), - [anon_sym_PIPE] = ACTIONS(4853), - [anon_sym_BANG] = ACTIONS(4853), - [anon_sym_TILDE] = ACTIONS(4853), - [anon_sym_def] = 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(5013), - [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_global_match_data_index] = ACTIONS(4853), - [sym_identifier_method_call] = ACTIONS(4853), - [sym_instance_var] = ACTIONS(4853), - [sym_class_var] = ACTIONS(4853), - [sym_self] = ACTIONS(4851), - [anon_sym_LPAREN2] = ACTIONS(4853), - [anon_sym_QMARK] = ACTIONS(4853), - [sym_private] = ACTIONS(4851), - [sym_protected] = ACTIONS(4851), - [anon_sym_alias] = ACTIONS(4851), - [anon_sym_begin] = ACTIONS(4851), - [anon_sym_while] = ACTIONS(4851), - [anon_sym_until] = ACTIONS(4851), - [anon_sym_require] = ACTIONS(4851), - [anon_sym_case] = ACTIONS(4851), - [anon_sym_select] = ACTIONS(4851), - [aux_sym_asm_token1] = ACTIONS(4853), + [sym_nil] = ACTIONS(1696), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [aux_sym_integer_token2] = ACTIONS(1696), + [aux_sym_float_token2] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [sym_operator_symbol] = ACTIONS(1655), + [sym_unquoted_symbol] = ACTIONS(1655), + [anon_sym_COLON_DQUOTE] = ACTIONS(1655), + [anon_sym_BQUOTE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_annotation] = ACTIONS(1696), + [anon_sym_end] = ACTIONS(1696), + [anon_sym_AT_LBRACK] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1696), + [anon_sym_abstract] = ACTIONS(1696), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_lib] = ACTIONS(1696), + [anon_sym_fun] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_def] = ACTIONS(1696), + [anon_sym_include] = ACTIONS(1696), + [anon_sym_extend] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_next] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_with] = ACTIONS(1696), + [anon_sym_yield] = ACTIONS(1696), + [anon_sym_typeof] = ACTIONS(1696), + [anon_sym_sizeof] = ACTIONS(1696), + [anon_sym_instance_sizeof] = ACTIONS(1696), + [anon_sym_offsetof] = ACTIONS(1696), + [sym__constant_segment] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1655), + [anon_sym___LINE__] = ACTIONS(1696), + [anon_sym___END_LINE__] = ACTIONS(1696), + [anon_sym___FILE__] = ACTIONS(1696), + [anon_sym___DIR__] = ACTIONS(1696), + [sym_special_variable] = ACTIONS(1655), + [sym_global_match_data_index] = ACTIONS(1655), + [sym_identifier_method_call] = ACTIONS(1655), + [sym_instance_var] = ACTIONS(1655), + [sym_class_var] = ACTIONS(1655), + [sym_self] = ACTIONS(1696), + [sym_private] = ACTIONS(1696), + [sym_protected] = ACTIONS(1696), + [anon_sym_alias] = ACTIONS(1696), + [anon_sym_begin] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_until] = ACTIONS(1696), + [anon_sym_elsif] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1696), + [anon_sym_require] = ACTIONS(1696), + [anon_sym_when] = ACTIONS(1696), + [anon_sym_case] = ACTIONS(1696), + [anon_sym_select] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [aux_sym_asm_token1] = ACTIONS(1655), [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__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__start_of_hash_or_tuple] = ACTIONS(1655), + [sym__start_of_named_tuple] = ACTIONS(1655), + [sym_unary_plus] = ACTIONS(1655), + [sym_unary_minus] = ACTIONS(1655), + [sym_unary_wrapping_plus] = ACTIONS(1655), + [sym_unary_wrapping_minus] = ACTIONS(1655), + [sym__beginless_range_operator] = ACTIONS(1655), + [sym__regex_start] = ACTIONS(1655), + [sym__regular_if_keyword] = ACTIONS(1655), + [sym__regular_unless_keyword] = ACTIONS(1655), + [sym__string_literal_start] = ACTIONS(1655), + [sym__string_percent_literal_start] = ACTIONS(1655), + [sym__command_percent_literal_start] = ACTIONS(1655), + [sym__string_array_percent_literal_start] = ACTIONS(1655), + [sym__symbol_array_percent_literal_start] = ACTIONS(1655), + [sym__regex_percent_literal_start] = ACTIONS(1655), + [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2031] = { - [sym_heredoc_body] = STATE(2031), - [sym_forall] = STATE(2085), - [sym_identifier] = ACTIONS(5018), - [anon_sym_SEMI] = ACTIONS(5020), - [anon_sym_LPAREN] = ACTIONS(5020), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5018), - [sym_true] = ACTIONS(5018), - [sym_false] = ACTIONS(5018), - [aux_sym_integer_token2] = ACTIONS(5018), - [aux_sym_float_token2] = ACTIONS(5020), - [anon_sym_SQUOTE] = ACTIONS(5020), - [sym_operator_symbol] = ACTIONS(5020), - [sym_unquoted_symbol] = ACTIONS(5020), - [anon_sym_COLON_DQUOTE] = ACTIONS(5020), - [anon_sym_BQUOTE] = ACTIONS(5020), - [anon_sym_LBRACK] = ACTIONS(5020), - [anon_sym_DASH_GT] = ACTIONS(5020), - [anon_sym_annotation] = ACTIONS(5018), - [anon_sym_end] = ACTIONS(5018), - [anon_sym_AT_LBRACK] = ACTIONS(5020), - [anon_sym_module] = ACTIONS(5018), - [anon_sym_abstract] = ACTIONS(5018), - [anon_sym_class] = ACTIONS(5018), - [anon_sym_struct] = ACTIONS(5018), - [anon_sym_enum] = ACTIONS(5018), - [anon_sym_lib] = ACTIONS(5018), - [anon_sym_fun] = ACTIONS(5018), - [aux_sym_top_level_fun_def_token1] = ACTIONS(5022), - [anon_sym_STAR] = ACTIONS(5020), - [anon_sym_BANG] = ACTIONS(5020), - [anon_sym_TILDE] = ACTIONS(5020), - [anon_sym_def] = ACTIONS(5018), - [anon_sym_include] = ACTIONS(5018), - [anon_sym_extend] = ACTIONS(5018), - [anon_sym_forall] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(5018), - [anon_sym_next] = ACTIONS(5018), - [anon_sym_break] = ACTIONS(5018), - [anon_sym_with] = ACTIONS(5018), - [anon_sym_yield] = ACTIONS(5018), - [anon_sym_typeof] = ACTIONS(5018), - [anon_sym_sizeof] = ACTIONS(5018), - [anon_sym_instance_sizeof] = ACTIONS(5018), - [anon_sym_offsetof] = ACTIONS(5018), - [sym__constant_segment] = ACTIONS(5020), - [anon_sym_COLON_COLON] = ACTIONS(5020), - [anon_sym___LINE__] = ACTIONS(5018), - [anon_sym___END_LINE__] = ACTIONS(5018), - [anon_sym___FILE__] = ACTIONS(5018), - [anon_sym___DIR__] = ACTIONS(5018), - [sym_special_variable] = ACTIONS(5020), - [sym_global_match_data_index] = ACTIONS(5020), - [sym_identifier_method_call] = ACTIONS(5020), - [sym_instance_var] = ACTIONS(5020), - [sym_class_var] = ACTIONS(5020), - [sym_self] = ACTIONS(5018), - [sym_private] = ACTIONS(5018), - [sym_protected] = ACTIONS(5018), - [anon_sym_alias] = ACTIONS(5018), - [anon_sym_begin] = ACTIONS(5018), - [anon_sym_while] = ACTIONS(5018), - [anon_sym_until] = ACTIONS(5018), - [anon_sym_else] = ACTIONS(5018), - [anon_sym_require] = ACTIONS(5018), - [anon_sym_case] = ACTIONS(5018), - [anon_sym_select] = ACTIONS(5018), - [aux_sym_asm_token1] = ACTIONS(5020), - [sym__line_break] = ACTIONS(5020), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5020), - [sym__start_of_named_tuple] = ACTIONS(5020), - [sym_unary_plus] = ACTIONS(5020), - [sym_unary_minus] = ACTIONS(5020), - [sym_unary_wrapping_plus] = ACTIONS(5020), - [sym_unary_wrapping_minus] = ACTIONS(5020), - [sym__beginless_range_operator] = ACTIONS(5020), - [sym__regex_start] = ACTIONS(5020), - [sym__regular_if_keyword] = ACTIONS(5020), - [sym__regular_unless_keyword] = ACTIONS(5020), - [sym__regular_rescue_keyword] = ACTIONS(5020), - [sym__regular_ensure_keyword] = ACTIONS(5020), - [sym__string_literal_start] = ACTIONS(5020), - [sym__string_percent_literal_start] = ACTIONS(5020), - [sym__command_percent_literal_start] = ACTIONS(5020), - [sym__string_array_percent_literal_start] = ACTIONS(5020), - [sym__symbol_array_percent_literal_start] = ACTIONS(5020), - [sym__regex_percent_literal_start] = ACTIONS(5020), - [sym_heredoc_start] = ACTIONS(5020), + [2052] = { + [sym_heredoc_body] = STATE(2052), + [sym_forall] = STATE(2098), + [sym_identifier] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_LPAREN] = ACTIONS(5004), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5000), + [sym_true] = ACTIONS(5000), + [sym_false] = ACTIONS(5000), + [aux_sym_integer_token2] = ACTIONS(5000), + [aux_sym_float_token2] = ACTIONS(5002), + [anon_sym_SQUOTE] = ACTIONS(5002), + [sym_operator_symbol] = ACTIONS(5002), + [sym_unquoted_symbol] = ACTIONS(5002), + [anon_sym_COLON_DQUOTE] = ACTIONS(5002), + [anon_sym_BQUOTE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [anon_sym_annotation] = ACTIONS(5000), + [anon_sym_end] = ACTIONS(5000), + [anon_sym_AT_LBRACK] = ACTIONS(5002), + [anon_sym_module] = ACTIONS(5000), + [anon_sym_abstract] = ACTIONS(5000), + [anon_sym_class] = ACTIONS(5000), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_enum] = ACTIONS(5000), + [anon_sym_lib] = ACTIONS(5000), + [anon_sym_fun] = ACTIONS(5000), + [aux_sym_top_level_fun_def_token1] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5002), + [anon_sym_BANG] = ACTIONS(5002), + [anon_sym_TILDE] = ACTIONS(5002), + [anon_sym_def] = ACTIONS(5000), + [anon_sym_include] = ACTIONS(5000), + [anon_sym_extend] = ACTIONS(5000), + [anon_sym_forall] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(5000), + [anon_sym_next] = ACTIONS(5000), + [anon_sym_break] = ACTIONS(5000), + [anon_sym_with] = ACTIONS(5000), + [anon_sym_yield] = ACTIONS(5000), + [anon_sym_typeof] = ACTIONS(5000), + [anon_sym_sizeof] = ACTIONS(5000), + [anon_sym_instance_sizeof] = ACTIONS(5000), + [anon_sym_offsetof] = ACTIONS(5000), + [sym__constant_segment] = ACTIONS(5002), + [anon_sym_COLON_COLON] = ACTIONS(5002), + [anon_sym___LINE__] = ACTIONS(5000), + [anon_sym___END_LINE__] = ACTIONS(5000), + [anon_sym___FILE__] = ACTIONS(5000), + [anon_sym___DIR__] = ACTIONS(5000), + [sym_special_variable] = ACTIONS(5002), + [sym_global_match_data_index] = ACTIONS(5002), + [sym_identifier_method_call] = ACTIONS(5002), + [sym_instance_var] = ACTIONS(5002), + [sym_class_var] = ACTIONS(5002), + [sym_self] = ACTIONS(5000), + [sym_private] = ACTIONS(5000), + [sym_protected] = ACTIONS(5000), + [anon_sym_alias] = ACTIONS(5000), + [anon_sym_begin] = ACTIONS(5000), + [anon_sym_while] = ACTIONS(5000), + [anon_sym_until] = ACTIONS(5000), + [anon_sym_else] = ACTIONS(5000), + [anon_sym_require] = ACTIONS(5000), + [anon_sym_case] = ACTIONS(5000), + [anon_sym_select] = ACTIONS(5000), + [aux_sym_asm_token1] = ACTIONS(5002), + [sym__line_break] = ACTIONS(5002), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5002), + [sym__start_of_named_tuple] = ACTIONS(5002), + [sym_unary_plus] = ACTIONS(5002), + [sym_unary_minus] = ACTIONS(5002), + [sym_unary_wrapping_plus] = ACTIONS(5002), + [sym_unary_wrapping_minus] = ACTIONS(5002), + [sym__beginless_range_operator] = ACTIONS(5002), + [sym__regex_start] = ACTIONS(5002), + [sym__regular_if_keyword] = ACTIONS(5002), + [sym__regular_unless_keyword] = ACTIONS(5002), + [sym__regular_rescue_keyword] = ACTIONS(5002), + [sym__regular_ensure_keyword] = ACTIONS(5002), + [sym__string_literal_start] = ACTIONS(5002), + [sym__string_percent_literal_start] = ACTIONS(5002), + [sym__command_percent_literal_start] = ACTIONS(5002), + [sym__string_array_percent_literal_start] = ACTIONS(5002), + [sym__symbol_array_percent_literal_start] = ACTIONS(5002), + [sym__regex_percent_literal_start] = ACTIONS(5002), + [sym_heredoc_start] = ACTIONS(5002), [sym__heredoc_body_start] = ACTIONS(7), }, - [2032] = { - [sym_heredoc_body] = STATE(2032), - [sym_forall] = STATE(2081), - [sym_identifier] = ACTIONS(5024), - [anon_sym_SEMI] = ACTIONS(5026), - [anon_sym_LPAREN] = ACTIONS(5028), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5024), - [sym_true] = ACTIONS(5024), - [sym_false] = ACTIONS(5024), - [aux_sym_integer_token2] = ACTIONS(5024), - [aux_sym_float_token2] = ACTIONS(5026), - [anon_sym_SQUOTE] = ACTIONS(5026), - [sym_operator_symbol] = ACTIONS(5026), - [sym_unquoted_symbol] = ACTIONS(5026), - [anon_sym_COLON_DQUOTE] = ACTIONS(5026), - [anon_sym_BQUOTE] = ACTIONS(5026), - [anon_sym_LBRACK] = ACTIONS(5026), + [2053] = { + [sym_heredoc_body] = STATE(2053), + [sym_forall] = STATE(2090), + [sym_identifier] = ACTIONS(5008), + [anon_sym_SEMI] = ACTIONS(5010), + [anon_sym_LPAREN] = ACTIONS(5010), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5008), + [sym_true] = ACTIONS(5008), + [sym_false] = ACTIONS(5008), + [aux_sym_integer_token2] = ACTIONS(5008), + [aux_sym_float_token2] = ACTIONS(5010), + [anon_sym_SQUOTE] = ACTIONS(5010), + [sym_operator_symbol] = ACTIONS(5010), + [sym_unquoted_symbol] = ACTIONS(5010), + [anon_sym_COLON_DQUOTE] = ACTIONS(5010), + [anon_sym_BQUOTE] = ACTIONS(5010), + [anon_sym_LBRACK] = ACTIONS(5010), + [anon_sym_DASH_GT] = ACTIONS(5010), + [anon_sym_annotation] = ACTIONS(5008), + [anon_sym_end] = ACTIONS(5008), + [anon_sym_AT_LBRACK] = ACTIONS(5010), + [anon_sym_module] = ACTIONS(5008), + [anon_sym_abstract] = ACTIONS(5008), + [anon_sym_class] = ACTIONS(5008), + [anon_sym_struct] = ACTIONS(5008), + [anon_sym_enum] = ACTIONS(5008), + [anon_sym_lib] = ACTIONS(5008), + [anon_sym_fun] = ACTIONS(5008), + [aux_sym_top_level_fun_def_token1] = ACTIONS(5012), + [anon_sym_STAR] = ACTIONS(5010), + [anon_sym_BANG] = ACTIONS(5010), + [anon_sym_TILDE] = ACTIONS(5010), + [anon_sym_def] = ACTIONS(5008), + [anon_sym_include] = ACTIONS(5008), + [anon_sym_extend] = ACTIONS(5008), + [anon_sym_forall] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(5008), + [anon_sym_next] = ACTIONS(5008), + [anon_sym_break] = ACTIONS(5008), + [anon_sym_with] = ACTIONS(5008), + [anon_sym_yield] = ACTIONS(5008), + [anon_sym_typeof] = ACTIONS(5008), + [anon_sym_sizeof] = ACTIONS(5008), + [anon_sym_instance_sizeof] = ACTIONS(5008), + [anon_sym_offsetof] = ACTIONS(5008), + [sym__constant_segment] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5010), + [anon_sym___LINE__] = ACTIONS(5008), + [anon_sym___END_LINE__] = ACTIONS(5008), + [anon_sym___FILE__] = ACTIONS(5008), + [anon_sym___DIR__] = ACTIONS(5008), + [sym_special_variable] = ACTIONS(5010), + [sym_global_match_data_index] = ACTIONS(5010), + [sym_identifier_method_call] = ACTIONS(5010), + [sym_instance_var] = ACTIONS(5010), + [sym_class_var] = ACTIONS(5010), + [sym_self] = ACTIONS(5008), + [sym_private] = ACTIONS(5008), + [sym_protected] = ACTIONS(5008), + [anon_sym_alias] = ACTIONS(5008), + [anon_sym_begin] = ACTIONS(5008), + [anon_sym_while] = ACTIONS(5008), + [anon_sym_until] = ACTIONS(5008), + [anon_sym_else] = ACTIONS(5008), + [anon_sym_require] = ACTIONS(5008), + [anon_sym_case] = ACTIONS(5008), + [anon_sym_select] = ACTIONS(5008), + [aux_sym_asm_token1] = ACTIONS(5010), + [sym__line_break] = ACTIONS(5010), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5010), + [sym__start_of_named_tuple] = ACTIONS(5010), + [sym_unary_plus] = ACTIONS(5010), + [sym_unary_minus] = ACTIONS(5010), + [sym_unary_wrapping_plus] = ACTIONS(5010), + [sym_unary_wrapping_minus] = ACTIONS(5010), + [sym__beginless_range_operator] = ACTIONS(5010), + [sym__regex_start] = ACTIONS(5010), + [sym__regular_if_keyword] = ACTIONS(5010), + [sym__regular_unless_keyword] = ACTIONS(5010), + [sym__regular_rescue_keyword] = ACTIONS(5010), + [sym__regular_ensure_keyword] = ACTIONS(5010), + [sym__string_literal_start] = ACTIONS(5010), + [sym__string_percent_literal_start] = ACTIONS(5010), + [sym__command_percent_literal_start] = ACTIONS(5010), + [sym__string_array_percent_literal_start] = ACTIONS(5010), + [sym__symbol_array_percent_literal_start] = ACTIONS(5010), + [sym__regex_percent_literal_start] = ACTIONS(5010), + [sym_heredoc_start] = ACTIONS(5010), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2054] = { + [sym_heredoc_body] = STATE(2054), + [sym_forall] = STATE(2096), + [sym_identifier] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5016), + [anon_sym_LPAREN] = ACTIONS(5016), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5014), + [sym_true] = ACTIONS(5014), + [sym_false] = ACTIONS(5014), + [aux_sym_integer_token2] = ACTIONS(5014), + [aux_sym_float_token2] = ACTIONS(5016), + [anon_sym_SQUOTE] = ACTIONS(5016), + [sym_operator_symbol] = ACTIONS(5016), + [sym_unquoted_symbol] = ACTIONS(5016), + [anon_sym_COLON_DQUOTE] = ACTIONS(5016), + [anon_sym_BQUOTE] = ACTIONS(5016), + [anon_sym_LBRACK] = ACTIONS(5016), + [anon_sym_DASH_GT] = ACTIONS(5016), + [anon_sym_annotation] = ACTIONS(5014), + [anon_sym_end] = ACTIONS(5014), + [anon_sym_AT_LBRACK] = ACTIONS(5016), + [anon_sym_module] = ACTIONS(5014), + [anon_sym_abstract] = ACTIONS(5014), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5014), + [anon_sym_enum] = ACTIONS(5014), + [anon_sym_lib] = ACTIONS(5014), + [anon_sym_fun] = ACTIONS(5014), + [aux_sym_top_level_fun_def_token1] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_BANG] = ACTIONS(5016), + [anon_sym_TILDE] = ACTIONS(5016), + [anon_sym_def] = ACTIONS(5014), + [anon_sym_include] = ACTIONS(5014), + [anon_sym_extend] = ACTIONS(5014), + [anon_sym_forall] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(5014), + [anon_sym_next] = ACTIONS(5014), + [anon_sym_break] = ACTIONS(5014), + [anon_sym_with] = ACTIONS(5014), + [anon_sym_yield] = ACTIONS(5014), + [anon_sym_typeof] = ACTIONS(5014), + [anon_sym_sizeof] = ACTIONS(5014), + [anon_sym_instance_sizeof] = ACTIONS(5014), + [anon_sym_offsetof] = ACTIONS(5014), + [sym__constant_segment] = ACTIONS(5016), + [anon_sym_COLON_COLON] = ACTIONS(5016), + [anon_sym___LINE__] = ACTIONS(5014), + [anon_sym___END_LINE__] = ACTIONS(5014), + [anon_sym___FILE__] = ACTIONS(5014), + [anon_sym___DIR__] = ACTIONS(5014), + [sym_special_variable] = ACTIONS(5016), + [sym_global_match_data_index] = ACTIONS(5016), + [sym_identifier_method_call] = ACTIONS(5016), + [sym_instance_var] = ACTIONS(5016), + [sym_class_var] = ACTIONS(5016), + [sym_self] = ACTIONS(5014), + [sym_private] = ACTIONS(5014), + [sym_protected] = ACTIONS(5014), + [anon_sym_alias] = ACTIONS(5014), + [anon_sym_begin] = ACTIONS(5014), + [anon_sym_while] = ACTIONS(5014), + [anon_sym_until] = ACTIONS(5014), + [anon_sym_else] = ACTIONS(5014), + [anon_sym_require] = ACTIONS(5014), + [anon_sym_case] = ACTIONS(5014), + [anon_sym_select] = ACTIONS(5014), + [aux_sym_asm_token1] = ACTIONS(5016), + [sym__line_break] = ACTIONS(5016), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5016), + [sym__start_of_named_tuple] = ACTIONS(5016), + [sym_unary_plus] = ACTIONS(5016), + [sym_unary_minus] = ACTIONS(5016), + [sym_unary_wrapping_plus] = ACTIONS(5016), + [sym_unary_wrapping_minus] = ACTIONS(5016), + [sym__beginless_range_operator] = ACTIONS(5016), + [sym__regex_start] = ACTIONS(5016), + [sym__regular_if_keyword] = ACTIONS(5016), + [sym__regular_unless_keyword] = ACTIONS(5016), + [sym__regular_rescue_keyword] = ACTIONS(5016), + [sym__regular_ensure_keyword] = ACTIONS(5016), + [sym__string_literal_start] = ACTIONS(5016), + [sym__string_percent_literal_start] = ACTIONS(5016), + [sym__command_percent_literal_start] = ACTIONS(5016), + [sym__string_array_percent_literal_start] = ACTIONS(5016), + [sym__symbol_array_percent_literal_start] = ACTIONS(5016), + [sym__regex_percent_literal_start] = ACTIONS(5016), + [sym_heredoc_start] = ACTIONS(5016), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2055] = { + [sym_heredoc_body] = STATE(2055), + [aux_sym_proc_type_repeat1] = STATE(10619), + [sym_identifier] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5020), + [sym_true] = ACTIONS(5020), + [sym_false] = ACTIONS(5020), + [aux_sym_integer_token2] = ACTIONS(5020), + [aux_sym_float_token2] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [sym_operator_symbol] = ACTIONS(5022), + [sym_unquoted_symbol] = ACTIONS(5022), + [anon_sym_COLON_DQUOTE] = ACTIONS(5022), + [anon_sym_BQUOTE] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5024), [anon_sym_DASH_GT] = ACTIONS(5026), - [anon_sym_annotation] = ACTIONS(5024), - [anon_sym_end] = ACTIONS(5024), - [anon_sym_AT_LBRACK] = ACTIONS(5026), - [anon_sym_module] = ACTIONS(5024), - [anon_sym_abstract] = ACTIONS(5024), - [anon_sym_class] = ACTIONS(5024), - [anon_sym_struct] = ACTIONS(5024), - [anon_sym_enum] = ACTIONS(5024), - [anon_sym_lib] = ACTIONS(5024), - [anon_sym_fun] = ACTIONS(5024), - [aux_sym_top_level_fun_def_token1] = ACTIONS(5030), - [anon_sym_STAR] = ACTIONS(5026), - [anon_sym_BANG] = ACTIONS(5026), - [anon_sym_TILDE] = ACTIONS(5026), - [anon_sym_def] = ACTIONS(5024), - [anon_sym_include] = ACTIONS(5024), - [anon_sym_extend] = ACTIONS(5024), - [anon_sym_forall] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(5024), - [anon_sym_next] = ACTIONS(5024), - [anon_sym_break] = ACTIONS(5024), - [anon_sym_with] = ACTIONS(5024), - [anon_sym_yield] = ACTIONS(5024), - [anon_sym_typeof] = ACTIONS(5024), - [anon_sym_sizeof] = ACTIONS(5024), - [anon_sym_instance_sizeof] = ACTIONS(5024), - [anon_sym_offsetof] = ACTIONS(5024), - [sym__constant_segment] = ACTIONS(5026), - [anon_sym_COLON_COLON] = ACTIONS(5026), - [anon_sym___LINE__] = ACTIONS(5024), - [anon_sym___END_LINE__] = ACTIONS(5024), - [anon_sym___FILE__] = ACTIONS(5024), - [anon_sym___DIR__] = ACTIONS(5024), - [sym_special_variable] = ACTIONS(5026), - [sym_global_match_data_index] = ACTIONS(5026), - [sym_identifier_method_call] = ACTIONS(5026), - [sym_instance_var] = ACTIONS(5026), - [sym_class_var] = ACTIONS(5026), - [sym_self] = ACTIONS(5024), - [sym_private] = ACTIONS(5024), - [sym_protected] = ACTIONS(5024), - [anon_sym_alias] = ACTIONS(5024), - [anon_sym_begin] = ACTIONS(5024), - [anon_sym_while] = ACTIONS(5024), - [anon_sym_until] = ACTIONS(5024), - [anon_sym_else] = ACTIONS(5024), - [anon_sym_require] = ACTIONS(5024), - [anon_sym_case] = ACTIONS(5024), - [anon_sym_select] = ACTIONS(5024), - [aux_sym_asm_token1] = ACTIONS(5026), - [sym__line_break] = ACTIONS(5026), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5026), - [sym__start_of_named_tuple] = ACTIONS(5026), - [sym_unary_plus] = ACTIONS(5026), - [sym_unary_minus] = ACTIONS(5026), - [sym_unary_wrapping_plus] = ACTIONS(5026), - [sym_unary_wrapping_minus] = ACTIONS(5026), - [sym__beginless_range_operator] = ACTIONS(5026), - [sym__regex_start] = ACTIONS(5026), - [sym__regular_if_keyword] = ACTIONS(5026), - [sym__regular_unless_keyword] = ACTIONS(5026), - [sym__regular_rescue_keyword] = ACTIONS(5026), - [sym__regular_ensure_keyword] = ACTIONS(5026), - [sym__string_literal_start] = ACTIONS(5026), - [sym__string_percent_literal_start] = ACTIONS(5026), - [sym__command_percent_literal_start] = ACTIONS(5026), - [sym__string_array_percent_literal_start] = ACTIONS(5026), - [sym__symbol_array_percent_literal_start] = ACTIONS(5026), - [sym__regex_percent_literal_start] = ACTIONS(5026), - [sym_heredoc_start] = ACTIONS(5026), + [anon_sym_annotation] = ACTIONS(5020), + [anon_sym_end] = ACTIONS(5020), + [anon_sym_AT_LBRACK] = ACTIONS(5022), + [anon_sym_module] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_class] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_enum] = ACTIONS(5020), + [anon_sym_lib] = ACTIONS(5020), + [anon_sym_fun] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_def] = ACTIONS(5020), + [anon_sym_include] = ACTIONS(5020), + [anon_sym_extend] = ACTIONS(5020), + [anon_sym_forall] = ACTIONS(5020), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_next] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_with] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_typeof] = ACTIONS(5020), + [anon_sym_sizeof] = ACTIONS(5020), + [anon_sym_instance_sizeof] = ACTIONS(5020), + [anon_sym_offsetof] = ACTIONS(5020), + [sym__constant_segment] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym___LINE__] = ACTIONS(5020), + [anon_sym___END_LINE__] = ACTIONS(5020), + [anon_sym___FILE__] = ACTIONS(5020), + [anon_sym___DIR__] = ACTIONS(5020), + [sym_special_variable] = ACTIONS(5022), + [sym_global_match_data_index] = ACTIONS(5022), + [sym_identifier_method_call] = ACTIONS(5022), + [sym_instance_var] = ACTIONS(5022), + [sym_class_var] = ACTIONS(5022), + [sym_self] = ACTIONS(5020), + [sym_private] = ACTIONS(5020), + [sym_protected] = ACTIONS(5020), + [anon_sym_alias] = ACTIONS(5020), + [anon_sym_begin] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_until] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_require] = ACTIONS(5020), + [anon_sym_case] = ACTIONS(5020), + [anon_sym_select] = ACTIONS(5020), + [aux_sym_asm_token1] = ACTIONS(5022), + [sym__line_break] = ACTIONS(5022), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5022), + [sym__start_of_named_tuple] = ACTIONS(5022), + [sym_unary_plus] = ACTIONS(5022), + [sym_unary_minus] = ACTIONS(5022), + [sym_unary_wrapping_plus] = ACTIONS(5022), + [sym_unary_wrapping_minus] = ACTIONS(5022), + [sym__beginless_range_operator] = ACTIONS(5022), + [sym__regex_start] = ACTIONS(5022), + [sym__regular_if_keyword] = ACTIONS(5022), + [sym__regular_unless_keyword] = ACTIONS(5022), + [sym__regular_rescue_keyword] = ACTIONS(5022), + [sym__regular_ensure_keyword] = ACTIONS(5022), + [sym__string_literal_start] = ACTIONS(5022), + [sym__string_percent_literal_start] = ACTIONS(5022), + [sym__command_percent_literal_start] = ACTIONS(5022), + [sym__string_array_percent_literal_start] = ACTIONS(5022), + [sym__symbol_array_percent_literal_start] = ACTIONS(5022), + [sym__regex_percent_literal_start] = ACTIONS(5022), + [sym_heredoc_start] = ACTIONS(5022), [sym__heredoc_body_start] = ACTIONS(7), }, - [2033] = { - [sym_heredoc_body] = STATE(2033), - [ts_builtin_sym_end] = ACTIONS(5032), - [sym_identifier] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5032), - [anon_sym_RPAREN] = ACTIONS(5032), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5034), - [sym_true] = ACTIONS(5034), - [sym_false] = ACTIONS(5034), - [aux_sym_integer_token2] = ACTIONS(5034), - [aux_sym_float_token2] = ACTIONS(5032), - [anon_sym_SQUOTE] = ACTIONS(5032), - [anon_sym_RBRACE] = ACTIONS(5032), - [sym_operator_symbol] = ACTIONS(5032), - [sym_unquoted_symbol] = ACTIONS(5032), - [anon_sym_COLON_DQUOTE] = ACTIONS(5032), - [anon_sym_BQUOTE] = ACTIONS(5032), - [anon_sym_LBRACK] = ACTIONS(5032), - [anon_sym_DASH_GT] = ACTIONS(5032), - [anon_sym_annotation] = ACTIONS(5034), - [anon_sym_end] = ACTIONS(5034), - [anon_sym_AT_LBRACK] = ACTIONS(5032), - [anon_sym_module] = ACTIONS(5034), - [anon_sym_abstract] = ACTIONS(5034), - [anon_sym_class] = ACTIONS(5034), - [anon_sym_struct] = ACTIONS(5034), - [anon_sym_enum] = ACTIONS(5034), - [anon_sym_lib] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_STAR] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [anon_sym_def] = ACTIONS(5034), - [anon_sym_include] = ACTIONS(5034), - [anon_sym_extend] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_next] = ACTIONS(5034), - [anon_sym_break] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_typeof] = ACTIONS(5034), - [anon_sym_sizeof] = ACTIONS(5034), - [anon_sym_instance_sizeof] = ACTIONS(5034), - [anon_sym_offsetof] = ACTIONS(5034), - [sym__constant_segment] = ACTIONS(5032), - [anon_sym_COLON_COLON] = ACTIONS(5032), - [anon_sym___LINE__] = ACTIONS(5034), - [anon_sym___END_LINE__] = ACTIONS(5034), - [anon_sym___FILE__] = ACTIONS(5034), - [anon_sym___DIR__] = ACTIONS(5034), - [sym_special_variable] = ACTIONS(5032), - [sym_global_match_data_index] = ACTIONS(5032), - [sym_identifier_method_call] = ACTIONS(5032), - [sym_instance_var] = ACTIONS(5032), - [sym_class_var] = ACTIONS(5032), - [sym_self] = ACTIONS(5034), - [sym_private] = ACTIONS(5034), - [sym_protected] = ACTIONS(5034), - [anon_sym_alias] = ACTIONS(5034), - [anon_sym_begin] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_until] = ACTIONS(5034), - [anon_sym_elsif] = ACTIONS(5034), - [anon_sym_else] = ACTIONS(5034), - [anon_sym_require] = ACTIONS(5034), - [anon_sym_when] = ACTIONS(5034), - [anon_sym_case] = ACTIONS(5034), - [anon_sym_select] = ACTIONS(5034), - [anon_sym_in] = ACTIONS(5034), - [aux_sym_asm_token1] = ACTIONS(5032), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5032), - [sym__start_of_named_tuple] = ACTIONS(5032), - [sym_unary_plus] = ACTIONS(5032), - [sym_unary_minus] = ACTIONS(5032), - [sym_unary_wrapping_plus] = ACTIONS(5032), - [sym_unary_wrapping_minus] = ACTIONS(5032), - [sym__beginless_range_operator] = ACTIONS(5032), - [sym__regex_start] = ACTIONS(5032), - [sym__regular_if_keyword] = ACTIONS(5032), - [sym__regular_unless_keyword] = ACTIONS(5032), - [sym__string_literal_start] = ACTIONS(5032), - [sym__string_percent_literal_start] = ACTIONS(5032), - [sym__command_percent_literal_start] = ACTIONS(5032), - [sym__string_array_percent_literal_start] = ACTIONS(5032), - [sym__symbol_array_percent_literal_start] = ACTIONS(5032), - [sym__regex_percent_literal_start] = ACTIONS(5032), - [sym_heredoc_start] = ACTIONS(5032), + [2056] = { + [sym_heredoc_body] = STATE(2056), + [ts_builtin_sym_end] = ACTIONS(5029), + [sym_identifier] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5029), + [anon_sym_RPAREN] = ACTIONS(5029), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5031), + [sym_true] = ACTIONS(5031), + [sym_false] = ACTIONS(5031), + [aux_sym_integer_token2] = ACTIONS(5031), + [aux_sym_float_token2] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_RBRACE] = ACTIONS(5029), + [sym_operator_symbol] = ACTIONS(5029), + [sym_unquoted_symbol] = ACTIONS(5029), + [anon_sym_COLON_DQUOTE] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5029), + [anon_sym_DASH_GT] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_end] = ACTIONS(5031), + [anon_sym_AT_LBRACK] = ACTIONS(5029), + [anon_sym_module] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_class] = ACTIONS(5031), + [anon_sym_struct] = ACTIONS(5031), + [anon_sym_enum] = ACTIONS(5031), + [anon_sym_lib] = ACTIONS(5031), + [anon_sym_fun] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_TILDE] = ACTIONS(5029), + [anon_sym_def] = ACTIONS(5031), + [anon_sym_include] = ACTIONS(5031), + [anon_sym_extend] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_next] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_with] = ACTIONS(5031), + [anon_sym_yield] = ACTIONS(5031), + [anon_sym_typeof] = ACTIONS(5031), + [anon_sym_sizeof] = ACTIONS(5031), + [anon_sym_instance_sizeof] = ACTIONS(5031), + [anon_sym_offsetof] = ACTIONS(5031), + [sym__constant_segment] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5029), + [anon_sym___LINE__] = ACTIONS(5031), + [anon_sym___END_LINE__] = ACTIONS(5031), + [anon_sym___FILE__] = ACTIONS(5031), + [anon_sym___DIR__] = ACTIONS(5031), + [sym_special_variable] = ACTIONS(5029), + [sym_global_match_data_index] = ACTIONS(5029), + [sym_identifier_method_call] = ACTIONS(5029), + [sym_instance_var] = ACTIONS(5029), + [sym_class_var] = ACTIONS(5029), + [sym_self] = ACTIONS(5031), + [sym_private] = ACTIONS(5031), + [sym_protected] = ACTIONS(5031), + [anon_sym_alias] = ACTIONS(5031), + [anon_sym_begin] = ACTIONS(5031), + [anon_sym_while] = ACTIONS(5031), + [anon_sym_until] = ACTIONS(5031), + [anon_sym_elsif] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_require] = ACTIONS(5031), + [anon_sym_when] = ACTIONS(5031), + [anon_sym_case] = ACTIONS(5031), + [anon_sym_select] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5031), + [aux_sym_asm_token1] = ACTIONS(5029), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5029), + [sym__start_of_named_tuple] = ACTIONS(5029), + [sym_unary_plus] = ACTIONS(5029), + [sym_unary_minus] = ACTIONS(5029), + [sym_unary_wrapping_plus] = ACTIONS(5029), + [sym_unary_wrapping_minus] = ACTIONS(5029), + [sym__beginless_range_operator] = ACTIONS(5029), + [sym__regex_start] = ACTIONS(5029), + [sym__regular_if_keyword] = ACTIONS(5029), + [sym__regular_unless_keyword] = ACTIONS(5029), + [sym__string_literal_start] = ACTIONS(5029), + [sym__string_percent_literal_start] = ACTIONS(5029), + [sym__command_percent_literal_start] = ACTIONS(5029), + [sym__string_array_percent_literal_start] = ACTIONS(5029), + [sym__symbol_array_percent_literal_start] = ACTIONS(5029), + [sym__regex_percent_literal_start] = ACTIONS(5029), + [sym_heredoc_start] = ACTIONS(5029), [sym__heredoc_body_start] = ACTIONS(7), }, - [2034] = { - [sym_heredoc_body] = STATE(2034), - [aux_sym_constant_repeat1] = STATE(2029), + [2057] = { + [sym_heredoc_body] = STATE(2057), + [aux_sym_constant_repeat1] = STATE(2057), [sym_identifier] = ACTIONS(4838), [anon_sym_SEMI] = ACTIONS(4840), [anon_sym_LPAREN] = ACTIONS(4838), @@ -336981,7 +340226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(4838), [anon_sym_offsetof] = ACTIONS(4838), [sym__constant_segment] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(5013), + [anon_sym_COLON_COLON] = ACTIONS(5033), [anon_sym___LINE__] = ACTIONS(4838), [anon_sym___END_LINE__] = ACTIONS(4838), [anon_sym___FILE__] = ACTIONS(4838), @@ -337024,101 +340269,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4840), [sym__heredoc_body_start] = ACTIONS(7), }, - [2035] = { - [sym_heredoc_body] = STATE(2035), - [aux_sym_constant_repeat1] = STATE(2030), - [sym_identifier] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4840), - [anon_sym_LPAREN] = ACTIONS(4838), + [2058] = { + [sym_heredoc_body] = STATE(2058), + [aux_sym_constant_repeat1] = STATE(2057), + [sym_identifier] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4851), [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_COMMA] = ACTIONS(4840), - [anon_sym_DASH_GT] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4838), - [anon_sym_end] = ACTIONS(4838), - [anon_sym_AT_LBRACK] = ACTIONS(4840), - [anon_sym_module] = ACTIONS(4838), - [anon_sym_abstract] = ACTIONS(4838), - [anon_sym_class] = ACTIONS(4838), - [anon_sym_LT] = ACTIONS(4840), - [anon_sym_struct] = ACTIONS(4838), - [anon_sym_enum] = ACTIONS(4838), - [anon_sym_lib] = ACTIONS(4838), - [anon_sym_fun] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4840), - [anon_sym_PIPE] = ACTIONS(4840), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_TILDE] = ACTIONS(4840), - [anon_sym_def] = 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(5013), - [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_global_match_data_index] = ACTIONS(4840), - [sym_identifier_method_call] = ACTIONS(4840), - [sym_instance_var] = ACTIONS(4840), - [sym_class_var] = ACTIONS(4840), - [sym_self] = ACTIONS(4838), - [anon_sym_LPAREN2] = ACTIONS(4840), - [anon_sym_QMARK] = ACTIONS(4840), - [sym_private] = ACTIONS(4838), - [sym_protected] = ACTIONS(4838), - [anon_sym_alias] = ACTIONS(4838), - [anon_sym_begin] = ACTIONS(4838), - [anon_sym_while] = ACTIONS(4838), - [anon_sym_until] = ACTIONS(4838), - [anon_sym_require] = ACTIONS(4838), - [anon_sym_case] = ACTIONS(4838), - [anon_sym_select] = ACTIONS(4838), - [aux_sym_asm_token1] = ACTIONS(4840), + [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_COMMA] = ACTIONS(4853), + [anon_sym_DASH_GT] = ACTIONS(4853), + [anon_sym_DOT] = ACTIONS(4853), + [anon_sym_annotation] = ACTIONS(4851), + [anon_sym_end] = ACTIONS(4851), + [anon_sym_AT_LBRACK] = ACTIONS(4853), + [anon_sym_module] = ACTIONS(4851), + [anon_sym_abstract] = ACTIONS(4851), + [anon_sym_class] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4853), + [anon_sym_struct] = ACTIONS(4851), + [anon_sym_enum] = ACTIONS(4851), + [anon_sym_lib] = ACTIONS(4851), + [anon_sym_fun] = ACTIONS(4851), + [anon_sym_STAR] = ACTIONS(4853), + [anon_sym_PIPE] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(4853), + [anon_sym_TILDE] = ACTIONS(4853), + [anon_sym_def] = 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(4978), + [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_global_match_data_index] = ACTIONS(4853), + [sym_identifier_method_call] = ACTIONS(4853), + [sym_instance_var] = ACTIONS(4853), + [sym_class_var] = ACTIONS(4853), + [sym_self] = ACTIONS(4851), + [anon_sym_LPAREN2] = ACTIONS(4853), + [anon_sym_QMARK] = ACTIONS(4853), + [sym_private] = ACTIONS(4851), + [sym_protected] = ACTIONS(4851), + [anon_sym_alias] = ACTIONS(4851), + [anon_sym_begin] = ACTIONS(4851), + [anon_sym_while] = ACTIONS(4851), + [anon_sym_until] = ACTIONS(4851), + [anon_sym_require] = ACTIONS(4851), + [anon_sym_case] = ACTIONS(4851), + [anon_sym_select] = ACTIONS(4851), + [aux_sym_asm_token1] = ACTIONS(4853), [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__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), + [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__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), }, - [2036] = { - [sym_heredoc_body] = STATE(2036), - [sym_forall] = STATE(2074), + [2059] = { + [sym_heredoc_body] = STATE(2059), + [sym_forall] = STATE(2102), [sym_identifier] = ACTIONS(5036), [anon_sym_SEMI] = ACTIONS(5038), [anon_sym_LPAREN] = ACTIONS(5038), @@ -337152,7 +340397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_def] = ACTIONS(5036), [anon_sym_include] = ACTIONS(5036), [anon_sym_extend] = ACTIONS(5036), - [anon_sym_forall] = ACTIONS(4984), + [anon_sym_forall] = ACTIONS(4992), [anon_sym_return] = ACTIONS(5036), [anon_sym_next] = ACTIONS(5036), [anon_sym_break] = ACTIONS(5036), @@ -337208,9 +340453,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5038), [sym__heredoc_body_start] = ACTIONS(7), }, - [2037] = { - [sym_heredoc_body] = STATE(2037), - [sym_forall] = STATE(2060), + [2060] = { + [sym_heredoc_body] = STATE(2060), + [aux_sym_forall_repeat1] = STATE(2063), [sym_identifier] = ACTIONS(5042), [anon_sym_SEMI] = ACTIONS(5044), [anon_sym_LPAREN] = ACTIONS(5044), @@ -337226,6 +340471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(5044), [anon_sym_BQUOTE] = ACTIONS(5044), [anon_sym_LBRACK] = ACTIONS(5044), + [anon_sym_COMMA] = ACTIONS(5046), [anon_sym_DASH_GT] = ACTIONS(5044), [anon_sym_annotation] = ACTIONS(5042), [anon_sym_end] = ACTIONS(5042), @@ -337243,7 +340489,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_def] = ACTIONS(5042), [anon_sym_include] = ACTIONS(5042), [anon_sym_extend] = ACTIONS(5042), - [anon_sym_forall] = ACTIONS(4984), [anon_sym_return] = ACTIONS(5042), [anon_sym_next] = ACTIONS(5042), [anon_sym_break] = ACTIONS(5042), @@ -337299,100 +340544,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5044), [sym__heredoc_body_start] = ACTIONS(7), }, - [2038] = { - [sym_heredoc_body] = STATE(2038), - [aux_sym_forall_repeat1] = STATE(2040), - [sym_identifier] = ACTIONS(5046), - [anon_sym_SEMI] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(5048), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5046), - [sym_true] = ACTIONS(5046), - [sym_false] = ACTIONS(5046), - [aux_sym_integer_token2] = ACTIONS(5046), - [aux_sym_float_token2] = ACTIONS(5048), - [anon_sym_SQUOTE] = ACTIONS(5048), - [sym_operator_symbol] = ACTIONS(5048), - [sym_unquoted_symbol] = ACTIONS(5048), - [anon_sym_COLON_DQUOTE] = ACTIONS(5048), - [anon_sym_BQUOTE] = ACTIONS(5048), - [anon_sym_LBRACK] = ACTIONS(5048), - [anon_sym_COMMA] = ACTIONS(5050), - [anon_sym_DASH_GT] = ACTIONS(5048), - [anon_sym_annotation] = ACTIONS(5046), - [anon_sym_end] = ACTIONS(5046), - [anon_sym_AT_LBRACK] = ACTIONS(5048), - [anon_sym_module] = ACTIONS(5046), - [anon_sym_abstract] = ACTIONS(5046), - [anon_sym_class] = ACTIONS(5046), - [anon_sym_struct] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(5046), - [anon_sym_lib] = ACTIONS(5046), - [anon_sym_fun] = ACTIONS(5046), - [anon_sym_STAR] = ACTIONS(5048), - [anon_sym_BANG] = ACTIONS(5048), - [anon_sym_TILDE] = ACTIONS(5048), - [anon_sym_def] = ACTIONS(5046), - [anon_sym_include] = ACTIONS(5046), - [anon_sym_extend] = ACTIONS(5046), - [anon_sym_return] = ACTIONS(5046), - [anon_sym_next] = ACTIONS(5046), - [anon_sym_break] = ACTIONS(5046), - [anon_sym_with] = ACTIONS(5046), - [anon_sym_yield] = ACTIONS(5046), - [anon_sym_typeof] = ACTIONS(5046), - [anon_sym_sizeof] = ACTIONS(5046), - [anon_sym_instance_sizeof] = ACTIONS(5046), - [anon_sym_offsetof] = ACTIONS(5046), - [sym__constant_segment] = ACTIONS(5048), - [anon_sym_COLON_COLON] = ACTIONS(5048), - [anon_sym___LINE__] = ACTIONS(5046), - [anon_sym___END_LINE__] = ACTIONS(5046), - [anon_sym___FILE__] = ACTIONS(5046), - [anon_sym___DIR__] = ACTIONS(5046), - [sym_special_variable] = ACTIONS(5048), - [sym_global_match_data_index] = ACTIONS(5048), - [sym_identifier_method_call] = ACTIONS(5048), - [sym_instance_var] = ACTIONS(5048), - [sym_class_var] = ACTIONS(5048), - [sym_self] = ACTIONS(5046), - [sym_private] = ACTIONS(5046), - [sym_protected] = ACTIONS(5046), - [anon_sym_alias] = ACTIONS(5046), - [anon_sym_begin] = ACTIONS(5046), - [anon_sym_while] = ACTIONS(5046), - [anon_sym_until] = ACTIONS(5046), - [anon_sym_else] = ACTIONS(5046), - [anon_sym_require] = ACTIONS(5046), - [anon_sym_case] = ACTIONS(5046), - [anon_sym_select] = ACTIONS(5046), - [aux_sym_asm_token1] = ACTIONS(5048), - [sym__line_break] = ACTIONS(5048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5048), - [sym__start_of_named_tuple] = ACTIONS(5048), - [sym_unary_plus] = ACTIONS(5048), - [sym_unary_minus] = ACTIONS(5048), - [sym_unary_wrapping_plus] = ACTIONS(5048), - [sym_unary_wrapping_minus] = ACTIONS(5048), - [sym__beginless_range_operator] = ACTIONS(5048), - [sym__regex_start] = ACTIONS(5048), - [sym__regular_if_keyword] = ACTIONS(5048), - [sym__regular_unless_keyword] = ACTIONS(5048), - [sym__regular_rescue_keyword] = ACTIONS(5048), - [sym__regular_ensure_keyword] = ACTIONS(5048), - [sym__string_literal_start] = ACTIONS(5048), - [sym__string_percent_literal_start] = ACTIONS(5048), - [sym__command_percent_literal_start] = ACTIONS(5048), - [sym__string_array_percent_literal_start] = ACTIONS(5048), - [sym__symbol_array_percent_literal_start] = ACTIONS(5048), - [sym__regex_percent_literal_start] = ACTIONS(5048), - [sym_heredoc_start] = ACTIONS(5048), + [2061] = { + [sym_heredoc_body] = STATE(2061), + [sym_forall] = STATE(2094), + [sym_identifier] = ACTIONS(5048), + [anon_sym_SEMI] = ACTIONS(5050), + [anon_sym_LPAREN] = ACTIONS(5050), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5048), + [sym_true] = ACTIONS(5048), + [sym_false] = ACTIONS(5048), + [aux_sym_integer_token2] = ACTIONS(5048), + [aux_sym_float_token2] = ACTIONS(5050), + [anon_sym_SQUOTE] = ACTIONS(5050), + [sym_operator_symbol] = ACTIONS(5050), + [sym_unquoted_symbol] = ACTIONS(5050), + [anon_sym_COLON_DQUOTE] = ACTIONS(5050), + [anon_sym_BQUOTE] = ACTIONS(5050), + [anon_sym_LBRACK] = ACTIONS(5050), + [anon_sym_DASH_GT] = ACTIONS(5050), + [anon_sym_annotation] = ACTIONS(5048), + [anon_sym_end] = ACTIONS(5048), + [anon_sym_AT_LBRACK] = ACTIONS(5050), + [anon_sym_module] = ACTIONS(5048), + [anon_sym_abstract] = ACTIONS(5048), + [anon_sym_class] = ACTIONS(5048), + [anon_sym_struct] = ACTIONS(5048), + [anon_sym_enum] = ACTIONS(5048), + [anon_sym_lib] = ACTIONS(5048), + [anon_sym_fun] = ACTIONS(5048), + [anon_sym_STAR] = ACTIONS(5050), + [anon_sym_BANG] = ACTIONS(5050), + [anon_sym_TILDE] = ACTIONS(5050), + [anon_sym_def] = ACTIONS(5048), + [anon_sym_include] = ACTIONS(5048), + [anon_sym_extend] = ACTIONS(5048), + [anon_sym_forall] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(5048), + [anon_sym_next] = ACTIONS(5048), + [anon_sym_break] = ACTIONS(5048), + [anon_sym_with] = ACTIONS(5048), + [anon_sym_yield] = ACTIONS(5048), + [anon_sym_typeof] = ACTIONS(5048), + [anon_sym_sizeof] = ACTIONS(5048), + [anon_sym_instance_sizeof] = ACTIONS(5048), + [anon_sym_offsetof] = ACTIONS(5048), + [sym__constant_segment] = ACTIONS(5050), + [anon_sym_COLON_COLON] = ACTIONS(5050), + [anon_sym___LINE__] = ACTIONS(5048), + [anon_sym___END_LINE__] = ACTIONS(5048), + [anon_sym___FILE__] = ACTIONS(5048), + [anon_sym___DIR__] = ACTIONS(5048), + [sym_special_variable] = ACTIONS(5050), + [sym_global_match_data_index] = ACTIONS(5050), + [sym_identifier_method_call] = ACTIONS(5050), + [sym_instance_var] = ACTIONS(5050), + [sym_class_var] = ACTIONS(5050), + [sym_self] = ACTIONS(5048), + [sym_private] = ACTIONS(5048), + [sym_protected] = ACTIONS(5048), + [anon_sym_alias] = ACTIONS(5048), + [anon_sym_begin] = ACTIONS(5048), + [anon_sym_while] = ACTIONS(5048), + [anon_sym_until] = ACTIONS(5048), + [anon_sym_else] = ACTIONS(5048), + [anon_sym_require] = ACTIONS(5048), + [anon_sym_case] = ACTIONS(5048), + [anon_sym_select] = ACTIONS(5048), + [aux_sym_asm_token1] = ACTIONS(5050), + [sym__line_break] = ACTIONS(5050), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5050), + [sym__start_of_named_tuple] = ACTIONS(5050), + [sym_unary_plus] = ACTIONS(5050), + [sym_unary_minus] = ACTIONS(5050), + [sym_unary_wrapping_plus] = ACTIONS(5050), + [sym_unary_wrapping_minus] = ACTIONS(5050), + [sym__beginless_range_operator] = ACTIONS(5050), + [sym__regex_start] = ACTIONS(5050), + [sym__regular_if_keyword] = ACTIONS(5050), + [sym__regular_unless_keyword] = ACTIONS(5050), + [sym__regular_rescue_keyword] = ACTIONS(5050), + [sym__regular_ensure_keyword] = ACTIONS(5050), + [sym__string_literal_start] = ACTIONS(5050), + [sym__string_percent_literal_start] = ACTIONS(5050), + [sym__command_percent_literal_start] = ACTIONS(5050), + [sym__string_array_percent_literal_start] = ACTIONS(5050), + [sym__symbol_array_percent_literal_start] = ACTIONS(5050), + [sym__regex_percent_literal_start] = ACTIONS(5050), + [sym_heredoc_start] = ACTIONS(5050), [sym__heredoc_body_start] = ACTIONS(7), }, - [2039] = { - [sym_heredoc_body] = STATE(2039), - [sym_forall] = STATE(2078), + [2062] = { + [sym_heredoc_body] = STATE(2062), + [sym_forall] = STATE(2113), [sym_identifier] = ACTIONS(5052), [anon_sym_SEMI] = ACTIONS(5054), [anon_sym_LPAREN] = ACTIONS(5054), @@ -337425,7 +340670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_def] = ACTIONS(5052), [anon_sym_include] = ACTIONS(5052), [anon_sym_extend] = ACTIONS(5052), - [anon_sym_forall] = ACTIONS(4984), + [anon_sym_forall] = ACTIONS(4992), [anon_sym_return] = ACTIONS(5052), [anon_sym_next] = ACTIONS(5052), [anon_sym_break] = ACTIONS(5052), @@ -337481,9 +340726,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5054), [sym__heredoc_body_start] = ACTIONS(7), }, - [2040] = { - [sym_heredoc_body] = STATE(2040), - [aux_sym_forall_repeat1] = STATE(2042), + [2063] = { + [sym_heredoc_body] = STATE(2063), + [aux_sym_forall_repeat1] = STATE(2071), [sym_identifier] = ACTIONS(5056), [anon_sym_SEMI] = ACTIONS(5058), [anon_sym_LPAREN] = ACTIONS(5058), @@ -337499,7 +340744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(5058), [anon_sym_BQUOTE] = ACTIONS(5058), [anon_sym_LBRACK] = ACTIONS(5058), - [anon_sym_COMMA] = ACTIONS(5050), + [anon_sym_COMMA] = ACTIONS(5046), [anon_sym_DASH_GT] = ACTIONS(5058), [anon_sym_annotation] = ACTIONS(5056), [anon_sym_end] = ACTIONS(5056), @@ -337572,9 +340817,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5058), [sym__heredoc_body_start] = ACTIONS(7), }, - [2041] = { - [sym_heredoc_body] = STATE(2041), - [sym_forall] = STATE(2087), + [2064] = { + [sym_heredoc_body] = STATE(2064), + [sym_identifier] = ACTIONS(4620), + [anon_sym_SEMI] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4618), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4620), + [sym_true] = ACTIONS(4620), + [sym_false] = ACTIONS(4620), + [aux_sym_integer_token2] = ACTIONS(4620), + [aux_sym_float_token2] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4618), + [sym_operator_symbol] = ACTIONS(4618), + [sym_unquoted_symbol] = ACTIONS(4618), + [anon_sym_COLON_DQUOTE] = ACTIONS(4618), + [anon_sym_BQUOTE] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4618), + [anon_sym_DASH_GT] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4620), + [anon_sym_end] = ACTIONS(4620), + [anon_sym_AT_LBRACK] = ACTIONS(4618), + [anon_sym_module] = ACTIONS(4620), + [anon_sym_abstract] = ACTIONS(4620), + [anon_sym_class] = ACTIONS(4620), + [anon_sym_struct] = ACTIONS(4620), + [anon_sym_enum] = ACTIONS(4620), + [anon_sym_lib] = ACTIONS(4620), + [anon_sym_fun] = ACTIONS(4620), + [aux_sym_top_level_fun_def_token1] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_TILDE] = ACTIONS(4618), + [anon_sym_def] = ACTIONS(4620), + [anon_sym_include] = ACTIONS(4620), + [anon_sym_extend] = ACTIONS(4620), + [anon_sym_forall] = ACTIONS(4620), + [anon_sym_return] = ACTIONS(4620), + [anon_sym_next] = ACTIONS(4620), + [anon_sym_break] = ACTIONS(4620), + [anon_sym_with] = ACTIONS(4620), + [anon_sym_yield] = ACTIONS(4620), + [anon_sym_typeof] = ACTIONS(4620), + [anon_sym_sizeof] = ACTIONS(4620), + [anon_sym_instance_sizeof] = ACTIONS(4620), + [anon_sym_offsetof] = ACTIONS(4620), + [sym__constant_segment] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4618), + [anon_sym___LINE__] = ACTIONS(4620), + [anon_sym___END_LINE__] = ACTIONS(4620), + [anon_sym___FILE__] = ACTIONS(4620), + [anon_sym___DIR__] = ACTIONS(4620), + [sym_special_variable] = ACTIONS(4618), + [sym_global_match_data_index] = ACTIONS(4618), + [sym_identifier_method_call] = ACTIONS(4618), + [sym_instance_var] = ACTIONS(4618), + [sym_class_var] = ACTIONS(4618), + [sym_self] = ACTIONS(4620), + [sym_private] = ACTIONS(4620), + [sym_protected] = ACTIONS(4620), + [anon_sym_alias] = ACTIONS(4620), + [anon_sym_begin] = ACTIONS(4620), + [anon_sym_while] = ACTIONS(4620), + [anon_sym_until] = ACTIONS(4620), + [anon_sym_else] = ACTIONS(4620), + [anon_sym_require] = ACTIONS(4620), + [anon_sym_case] = ACTIONS(4620), + [anon_sym_select] = ACTIONS(4620), + [aux_sym_asm_token1] = ACTIONS(4618), + [sym__line_break] = ACTIONS(4618), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4618), + [sym__start_of_named_tuple] = ACTIONS(4618), + [sym_unary_plus] = ACTIONS(4618), + [sym_unary_minus] = ACTIONS(4618), + [sym_unary_wrapping_plus] = ACTIONS(4618), + [sym_unary_wrapping_minus] = ACTIONS(4618), + [sym__beginless_range_operator] = ACTIONS(4618), + [sym__regex_start] = ACTIONS(4618), + [sym__regular_if_keyword] = ACTIONS(4618), + [sym__regular_unless_keyword] = ACTIONS(4618), + [sym__regular_rescue_keyword] = ACTIONS(4618), + [sym__regular_ensure_keyword] = ACTIONS(4618), + [sym__string_literal_start] = ACTIONS(4618), + [sym__string_percent_literal_start] = ACTIONS(4618), + [sym__command_percent_literal_start] = ACTIONS(4618), + [sym__string_array_percent_literal_start] = ACTIONS(4618), + [sym__symbol_array_percent_literal_start] = ACTIONS(4618), + [sym__regex_percent_literal_start] = ACTIONS(4618), + [sym_heredoc_start] = ACTIONS(4618), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2065] = { + [sym_heredoc_body] = STATE(2065), + [sym_forall] = STATE(2089), [sym_identifier] = ACTIONS(5060), [anon_sym_SEMI] = ACTIONS(5062), [anon_sym_LPAREN] = ACTIONS(5062), @@ -337607,7 +340943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_def] = ACTIONS(5060), [anon_sym_include] = ACTIONS(5060), [anon_sym_extend] = ACTIONS(5060), - [anon_sym_forall] = ACTIONS(4984), + [anon_sym_forall] = ACTIONS(4992), [anon_sym_return] = ACTIONS(5060), [anon_sym_next] = ACTIONS(5060), [anon_sym_break] = ACTIONS(5060), @@ -337663,9 +340999,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5062), [sym__heredoc_body_start] = ACTIONS(7), }, - [2042] = { - [sym_heredoc_body] = STATE(2042), - [aux_sym_forall_repeat1] = STATE(2042), + [2066] = { + [sym_heredoc_body] = STATE(2066), + [sym_identifier] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [anon_sym_LPAREN] = ACTIONS(4838), + [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_COMMA] = ACTIONS(4840), + [anon_sym_DASH_GT] = ACTIONS(4840), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4838), + [anon_sym_end] = ACTIONS(4838), + [anon_sym_AT_LBRACK] = ACTIONS(4840), + [anon_sym_module] = ACTIONS(4838), + [anon_sym_abstract] = ACTIONS(4838), + [anon_sym_class] = ACTIONS(4838), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_struct] = ACTIONS(4838), + [anon_sym_enum] = ACTIONS(4838), + [anon_sym_lib] = ACTIONS(4838), + [anon_sym_fun] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_PIPE] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4840), + [sym_identifier_method_call] = ACTIONS(4840), + [sym_instance_var] = ACTIONS(4840), + [sym_class_var] = ACTIONS(4840), + [sym_self] = ACTIONS(4838), + [anon_sym_LPAREN2] = ACTIONS(4840), + [anon_sym_QMARK] = ACTIONS(4840), + [sym_private] = ACTIONS(4838), + [sym_protected] = ACTIONS(4838), + [anon_sym_alias] = ACTIONS(4838), + [anon_sym_begin] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_until] = ACTIONS(4838), + [anon_sym_require] = ACTIONS(4838), + [anon_sym_case] = ACTIONS(4838), + [anon_sym_select] = ACTIONS(4838), + [aux_sym_asm_token1] = ACTIONS(4840), + [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__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), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2067] = { + [sym_heredoc_body] = STATE(2067), + [sym_forall] = STATE(2091), [sym_identifier] = ACTIONS(5064), [anon_sym_SEMI] = ACTIONS(5066), [anon_sym_LPAREN] = ACTIONS(5066), @@ -337681,7 +341108,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_DQUOTE] = ACTIONS(5066), [anon_sym_BQUOTE] = ACTIONS(5066), [anon_sym_LBRACK] = ACTIONS(5066), - [anon_sym_COMMA] = ACTIONS(5068), [anon_sym_DASH_GT] = ACTIONS(5066), [anon_sym_annotation] = ACTIONS(5064), [anon_sym_end] = ACTIONS(5064), @@ -337699,6 +341125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_def] = ACTIONS(5064), [anon_sym_include] = ACTIONS(5064), [anon_sym_extend] = ACTIONS(5064), + [anon_sym_forall] = ACTIONS(4992), [anon_sym_return] = ACTIONS(5064), [anon_sym_next] = ACTIONS(5064), [anon_sym_break] = ACTIONS(5064), @@ -337754,372 +341181,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5066), [sym__heredoc_body_start] = ACTIONS(7), }, - [2043] = { - [sym_heredoc_body] = STATE(2043), - [sym_identifier] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(4844), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4844), - [sym_true] = ACTIONS(4844), - [sym_false] = ACTIONS(4844), - [aux_sym_integer_token2] = ACTIONS(4844), - [aux_sym_float_token2] = ACTIONS(4846), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym_operator_symbol] = ACTIONS(4846), - [sym_unquoted_symbol] = ACTIONS(4846), - [anon_sym_COLON_DQUOTE] = ACTIONS(4846), - [anon_sym_BQUOTE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4846), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_end] = ACTIONS(4844), - [anon_sym_AT_LBRACK] = ACTIONS(4846), - [anon_sym_module] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_class] = ACTIONS(4844), - [anon_sym_LT] = ACTIONS(4846), - [anon_sym_struct] = ACTIONS(4844), - [anon_sym_enum] = ACTIONS(4844), - [anon_sym_lib] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_def] = ACTIONS(4844), - [anon_sym_include] = ACTIONS(4844), - [anon_sym_extend] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_next] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [anon_sym_yield] = ACTIONS(4844), - [anon_sym_typeof] = ACTIONS(4844), - [anon_sym_sizeof] = ACTIONS(4844), - [anon_sym_instance_sizeof] = ACTIONS(4844), - [anon_sym_offsetof] = ACTIONS(4844), - [sym__constant_segment] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym___LINE__] = ACTIONS(4844), - [anon_sym___END_LINE__] = ACTIONS(4844), - [anon_sym___FILE__] = ACTIONS(4844), - [anon_sym___DIR__] = ACTIONS(4844), - [sym_special_variable] = ACTIONS(4846), - [sym_global_match_data_index] = ACTIONS(4846), - [sym_identifier_method_call] = ACTIONS(4846), - [sym_instance_var] = ACTIONS(4846), - [sym_class_var] = ACTIONS(4846), - [sym_self] = ACTIONS(4844), - [anon_sym_LPAREN2] = ACTIONS(4846), - [anon_sym_QMARK] = ACTIONS(4846), - [sym_private] = ACTIONS(4844), - [sym_protected] = ACTIONS(4844), - [anon_sym_alias] = ACTIONS(4844), - [anon_sym_begin] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_until] = ACTIONS(4844), - [anon_sym_require] = ACTIONS(4844), - [anon_sym_case] = ACTIONS(4844), - [anon_sym_select] = ACTIONS(4844), - [aux_sym_asm_token1] = ACTIONS(4846), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4846), - [sym__start_of_named_tuple] = ACTIONS(4846), - [sym_unary_plus] = ACTIONS(4846), - [sym_unary_minus] = ACTIONS(4846), - [sym_unary_wrapping_plus] = ACTIONS(4846), - [sym_unary_wrapping_minus] = ACTIONS(4846), - [sym__beginless_range_operator] = ACTIONS(4846), - [sym__regex_start] = ACTIONS(4846), - [sym__regular_if_keyword] = ACTIONS(4846), - [sym__regular_unless_keyword] = ACTIONS(4846), - [sym__string_literal_start] = ACTIONS(4846), - [sym__string_percent_literal_start] = ACTIONS(4846), - [sym__command_percent_literal_start] = ACTIONS(4846), - [sym__string_array_percent_literal_start] = ACTIONS(4846), - [sym__symbol_array_percent_literal_start] = ACTIONS(4846), - [sym__regex_percent_literal_start] = ACTIONS(4846), - [sym_heredoc_start] = ACTIONS(4846), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2044] = { - [sym_heredoc_body] = STATE(2044), - [sym_identifier] = ACTIONS(4624), - [anon_sym_SEMI] = ACTIONS(4622), - [anon_sym_LPAREN] = ACTIONS(4622), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4624), - [sym_true] = ACTIONS(4624), - [sym_false] = ACTIONS(4624), - [aux_sym_integer_token2] = ACTIONS(4624), - [aux_sym_float_token2] = ACTIONS(4622), - [anon_sym_SQUOTE] = ACTIONS(4622), - [sym_operator_symbol] = ACTIONS(4622), - [sym_unquoted_symbol] = ACTIONS(4622), - [anon_sym_COLON_DQUOTE] = ACTIONS(4622), - [anon_sym_BQUOTE] = ACTIONS(4622), - [anon_sym_LBRACK] = ACTIONS(4622), - [anon_sym_DASH_GT] = ACTIONS(4622), - [anon_sym_annotation] = ACTIONS(4624), - [anon_sym_end] = ACTIONS(4624), - [anon_sym_AT_LBRACK] = ACTIONS(4622), - [anon_sym_module] = ACTIONS(4624), - [anon_sym_abstract] = ACTIONS(4624), - [anon_sym_class] = ACTIONS(4624), - [anon_sym_struct] = ACTIONS(4624), - [anon_sym_enum] = ACTIONS(4624), - [anon_sym_lib] = ACTIONS(4624), - [anon_sym_fun] = ACTIONS(4624), - [aux_sym_top_level_fun_def_token1] = ACTIONS(4622), - [anon_sym_STAR] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(4622), - [anon_sym_TILDE] = ACTIONS(4622), - [anon_sym_def] = ACTIONS(4624), - [anon_sym_include] = ACTIONS(4624), - [anon_sym_extend] = ACTIONS(4624), - [anon_sym_forall] = ACTIONS(4624), - [anon_sym_return] = ACTIONS(4624), - [anon_sym_next] = ACTIONS(4624), - [anon_sym_break] = ACTIONS(4624), - [anon_sym_with] = ACTIONS(4624), - [anon_sym_yield] = ACTIONS(4624), - [anon_sym_typeof] = ACTIONS(4624), - [anon_sym_sizeof] = ACTIONS(4624), - [anon_sym_instance_sizeof] = ACTIONS(4624), - [anon_sym_offsetof] = ACTIONS(4624), - [sym__constant_segment] = ACTIONS(4622), - [anon_sym_COLON_COLON] = ACTIONS(4622), - [anon_sym___LINE__] = ACTIONS(4624), - [anon_sym___END_LINE__] = ACTIONS(4624), - [anon_sym___FILE__] = ACTIONS(4624), - [anon_sym___DIR__] = ACTIONS(4624), - [sym_special_variable] = ACTIONS(4622), - [sym_global_match_data_index] = ACTIONS(4622), - [sym_identifier_method_call] = ACTIONS(4622), - [sym_instance_var] = ACTIONS(4622), - [sym_class_var] = ACTIONS(4622), - [sym_self] = ACTIONS(4624), - [sym_private] = ACTIONS(4624), - [sym_protected] = ACTIONS(4624), - [anon_sym_alias] = ACTIONS(4624), - [anon_sym_begin] = ACTIONS(4624), - [anon_sym_while] = ACTIONS(4624), - [anon_sym_until] = ACTIONS(4624), - [anon_sym_else] = ACTIONS(4624), - [anon_sym_require] = ACTIONS(4624), - [anon_sym_case] = ACTIONS(4624), - [anon_sym_select] = ACTIONS(4624), - [aux_sym_asm_token1] = ACTIONS(4622), - [sym__line_break] = ACTIONS(4622), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4622), - [sym__start_of_named_tuple] = ACTIONS(4622), - [sym_unary_plus] = ACTIONS(4622), - [sym_unary_minus] = ACTIONS(4622), - [sym_unary_wrapping_plus] = ACTIONS(4622), - [sym_unary_wrapping_minus] = ACTIONS(4622), - [sym__beginless_range_operator] = ACTIONS(4622), - [sym__regex_start] = ACTIONS(4622), - [sym__regular_if_keyword] = ACTIONS(4622), - [sym__regular_unless_keyword] = ACTIONS(4622), - [sym__regular_rescue_keyword] = ACTIONS(4622), - [sym__regular_ensure_keyword] = ACTIONS(4622), - [sym__string_literal_start] = ACTIONS(4622), - [sym__string_percent_literal_start] = ACTIONS(4622), - [sym__command_percent_literal_start] = ACTIONS(4622), - [sym__string_array_percent_literal_start] = ACTIONS(4622), - [sym__symbol_array_percent_literal_start] = ACTIONS(4622), - [sym__regex_percent_literal_start] = ACTIONS(4622), - [sym_heredoc_start] = ACTIONS(4622), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2045] = { - [sym_heredoc_body] = STATE(2045), - [sym_forall] = STATE(2090), - [sym_identifier] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5073), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5071), - [sym_true] = ACTIONS(5071), - [sym_false] = ACTIONS(5071), - [aux_sym_integer_token2] = ACTIONS(5071), - [aux_sym_float_token2] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [sym_operator_symbol] = ACTIONS(5073), - [sym_unquoted_symbol] = ACTIONS(5073), - [anon_sym_COLON_DQUOTE] = ACTIONS(5073), - [anon_sym_BQUOTE] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_DASH_GT] = ACTIONS(5073), - [anon_sym_annotation] = ACTIONS(5071), - [anon_sym_end] = ACTIONS(5071), - [anon_sym_AT_LBRACK] = ACTIONS(5073), - [anon_sym_module] = ACTIONS(5071), - [anon_sym_abstract] = ACTIONS(5071), - [anon_sym_class] = ACTIONS(5071), - [anon_sym_struct] = ACTIONS(5071), - [anon_sym_enum] = ACTIONS(5071), - [anon_sym_lib] = ACTIONS(5071), - [anon_sym_fun] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_TILDE] = ACTIONS(5073), - [anon_sym_def] = ACTIONS(5071), - [anon_sym_include] = ACTIONS(5071), - [anon_sym_extend] = ACTIONS(5071), - [anon_sym_forall] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(5071), - [anon_sym_next] = ACTIONS(5071), - [anon_sym_break] = ACTIONS(5071), - [anon_sym_with] = ACTIONS(5071), - [anon_sym_yield] = ACTIONS(5071), - [anon_sym_typeof] = ACTIONS(5071), - [anon_sym_sizeof] = ACTIONS(5071), - [anon_sym_instance_sizeof] = ACTIONS(5071), - [anon_sym_offsetof] = ACTIONS(5071), - [sym__constant_segment] = ACTIONS(5073), - [anon_sym_COLON_COLON] = ACTIONS(5073), - [anon_sym___LINE__] = ACTIONS(5071), - [anon_sym___END_LINE__] = ACTIONS(5071), - [anon_sym___FILE__] = ACTIONS(5071), - [anon_sym___DIR__] = ACTIONS(5071), - [sym_special_variable] = ACTIONS(5073), - [sym_global_match_data_index] = ACTIONS(5073), - [sym_identifier_method_call] = ACTIONS(5073), - [sym_instance_var] = ACTIONS(5073), - [sym_class_var] = ACTIONS(5073), - [sym_self] = ACTIONS(5071), - [sym_private] = ACTIONS(5071), - [sym_protected] = ACTIONS(5071), - [anon_sym_alias] = ACTIONS(5071), - [anon_sym_begin] = ACTIONS(5071), - [anon_sym_while] = ACTIONS(5071), - [anon_sym_until] = ACTIONS(5071), - [anon_sym_else] = ACTIONS(5071), - [anon_sym_require] = ACTIONS(5071), - [anon_sym_case] = ACTIONS(5071), - [anon_sym_select] = ACTIONS(5071), - [aux_sym_asm_token1] = ACTIONS(5073), - [sym__line_break] = ACTIONS(5073), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5073), - [sym__start_of_named_tuple] = ACTIONS(5073), - [sym_unary_plus] = ACTIONS(5073), - [sym_unary_minus] = ACTIONS(5073), - [sym_unary_wrapping_plus] = ACTIONS(5073), - [sym_unary_wrapping_minus] = ACTIONS(5073), - [sym__beginless_range_operator] = ACTIONS(5073), - [sym__regex_start] = ACTIONS(5073), - [sym__regular_if_keyword] = ACTIONS(5073), - [sym__regular_unless_keyword] = ACTIONS(5073), - [sym__regular_rescue_keyword] = ACTIONS(5073), - [sym__regular_ensure_keyword] = ACTIONS(5073), - [sym__string_literal_start] = ACTIONS(5073), - [sym__string_percent_literal_start] = ACTIONS(5073), - [sym__command_percent_literal_start] = ACTIONS(5073), - [sym__string_array_percent_literal_start] = ACTIONS(5073), - [sym__symbol_array_percent_literal_start] = ACTIONS(5073), - [sym__regex_percent_literal_start] = ACTIONS(5073), - [sym_heredoc_start] = ACTIONS(5073), + [2068] = { + [sym_heredoc_body] = STATE(2068), + [sym_forall] = STATE(2083), + [sym_identifier] = ACTIONS(5068), + [anon_sym_SEMI] = ACTIONS(5070), + [anon_sym_LPAREN] = ACTIONS(5070), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5068), + [sym_true] = ACTIONS(5068), + [sym_false] = ACTIONS(5068), + [aux_sym_integer_token2] = ACTIONS(5068), + [aux_sym_float_token2] = ACTIONS(5070), + [anon_sym_SQUOTE] = ACTIONS(5070), + [sym_operator_symbol] = ACTIONS(5070), + [sym_unquoted_symbol] = ACTIONS(5070), + [anon_sym_COLON_DQUOTE] = ACTIONS(5070), + [anon_sym_BQUOTE] = ACTIONS(5070), + [anon_sym_LBRACK] = ACTIONS(5070), + [anon_sym_DASH_GT] = ACTIONS(5070), + [anon_sym_annotation] = ACTIONS(5068), + [anon_sym_end] = ACTIONS(5068), + [anon_sym_AT_LBRACK] = ACTIONS(5070), + [anon_sym_module] = ACTIONS(5068), + [anon_sym_abstract] = ACTIONS(5068), + [anon_sym_class] = ACTIONS(5068), + [anon_sym_struct] = ACTIONS(5068), + [anon_sym_enum] = ACTIONS(5068), + [anon_sym_lib] = ACTIONS(5068), + [anon_sym_fun] = ACTIONS(5068), + [anon_sym_STAR] = ACTIONS(5070), + [anon_sym_BANG] = ACTIONS(5070), + [anon_sym_TILDE] = ACTIONS(5070), + [anon_sym_def] = ACTIONS(5068), + [anon_sym_include] = ACTIONS(5068), + [anon_sym_extend] = ACTIONS(5068), + [anon_sym_forall] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(5068), + [anon_sym_next] = ACTIONS(5068), + [anon_sym_break] = ACTIONS(5068), + [anon_sym_with] = ACTIONS(5068), + [anon_sym_yield] = ACTIONS(5068), + [anon_sym_typeof] = ACTIONS(5068), + [anon_sym_sizeof] = ACTIONS(5068), + [anon_sym_instance_sizeof] = ACTIONS(5068), + [anon_sym_offsetof] = ACTIONS(5068), + [sym__constant_segment] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(5070), + [anon_sym___LINE__] = ACTIONS(5068), + [anon_sym___END_LINE__] = ACTIONS(5068), + [anon_sym___FILE__] = ACTIONS(5068), + [anon_sym___DIR__] = ACTIONS(5068), + [sym_special_variable] = ACTIONS(5070), + [sym_global_match_data_index] = ACTIONS(5070), + [sym_identifier_method_call] = ACTIONS(5070), + [sym_instance_var] = ACTIONS(5070), + [sym_class_var] = ACTIONS(5070), + [sym_self] = ACTIONS(5068), + [sym_private] = ACTIONS(5068), + [sym_protected] = ACTIONS(5068), + [anon_sym_alias] = ACTIONS(5068), + [anon_sym_begin] = ACTIONS(5068), + [anon_sym_while] = ACTIONS(5068), + [anon_sym_until] = ACTIONS(5068), + [anon_sym_else] = ACTIONS(5068), + [anon_sym_require] = ACTIONS(5068), + [anon_sym_case] = ACTIONS(5068), + [anon_sym_select] = ACTIONS(5068), + [aux_sym_asm_token1] = ACTIONS(5070), + [sym__line_break] = ACTIONS(5070), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5070), + [sym__start_of_named_tuple] = ACTIONS(5070), + [sym_unary_plus] = ACTIONS(5070), + [sym_unary_minus] = ACTIONS(5070), + [sym_unary_wrapping_plus] = ACTIONS(5070), + [sym_unary_wrapping_minus] = ACTIONS(5070), + [sym__beginless_range_operator] = ACTIONS(5070), + [sym__regex_start] = ACTIONS(5070), + [sym__regular_if_keyword] = ACTIONS(5070), + [sym__regular_unless_keyword] = ACTIONS(5070), + [sym__regular_rescue_keyword] = ACTIONS(5070), + [sym__regular_ensure_keyword] = ACTIONS(5070), + [sym__string_literal_start] = ACTIONS(5070), + [sym__string_percent_literal_start] = ACTIONS(5070), + [sym__command_percent_literal_start] = ACTIONS(5070), + [sym__string_array_percent_literal_start] = ACTIONS(5070), + [sym__symbol_array_percent_literal_start] = ACTIONS(5070), + [sym__regex_percent_literal_start] = ACTIONS(5070), + [sym_heredoc_start] = ACTIONS(5070), [sym__heredoc_body_start] = ACTIONS(7), }, - [2046] = { - [sym_heredoc_body] = STATE(2046), - [sym_forall] = STATE(2066), - [sym_identifier] = ACTIONS(5075), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5077), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5075), - [sym_true] = ACTIONS(5075), - [sym_false] = ACTIONS(5075), - [aux_sym_integer_token2] = ACTIONS(5075), - [aux_sym_float_token2] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [sym_operator_symbol] = ACTIONS(5077), - [sym_unquoted_symbol] = ACTIONS(5077), - [anon_sym_COLON_DQUOTE] = ACTIONS(5077), - [anon_sym_BQUOTE] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_DASH_GT] = ACTIONS(5077), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_end] = ACTIONS(5075), - [anon_sym_AT_LBRACK] = ACTIONS(5077), - [anon_sym_module] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_class] = ACTIONS(5075), - [anon_sym_struct] = ACTIONS(5075), - [anon_sym_enum] = ACTIONS(5075), - [anon_sym_lib] = ACTIONS(5075), - [anon_sym_fun] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_TILDE] = ACTIONS(5077), - [anon_sym_def] = ACTIONS(5075), - [anon_sym_include] = ACTIONS(5075), - [anon_sym_extend] = ACTIONS(5075), - [anon_sym_forall] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_next] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_with] = ACTIONS(5075), - [anon_sym_yield] = ACTIONS(5075), - [anon_sym_typeof] = ACTIONS(5075), - [anon_sym_sizeof] = ACTIONS(5075), - [anon_sym_instance_sizeof] = ACTIONS(5075), - [anon_sym_offsetof] = ACTIONS(5075), - [sym__constant_segment] = ACTIONS(5077), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym___LINE__] = ACTIONS(5075), - [anon_sym___END_LINE__] = ACTIONS(5075), - [anon_sym___FILE__] = ACTIONS(5075), - [anon_sym___DIR__] = ACTIONS(5075), - [sym_special_variable] = ACTIONS(5077), - [sym_global_match_data_index] = ACTIONS(5077), - [sym_identifier_method_call] = ACTIONS(5077), - [sym_instance_var] = ACTIONS(5077), - [sym_class_var] = ACTIONS(5077), - [sym_self] = ACTIONS(5075), - [sym_private] = ACTIONS(5075), - [sym_protected] = ACTIONS(5075), - [anon_sym_alias] = ACTIONS(5075), - [anon_sym_begin] = ACTIONS(5075), - [anon_sym_while] = ACTIONS(5075), - [anon_sym_until] = ACTIONS(5075), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_require] = ACTIONS(5075), - [anon_sym_case] = ACTIONS(5075), - [anon_sym_select] = ACTIONS(5075), - [aux_sym_asm_token1] = ACTIONS(5077), - [sym__line_break] = ACTIONS(5077), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5077), - [sym__start_of_named_tuple] = ACTIONS(5077), - [sym_unary_plus] = ACTIONS(5077), - [sym_unary_minus] = ACTIONS(5077), - [sym_unary_wrapping_plus] = ACTIONS(5077), - [sym_unary_wrapping_minus] = ACTIONS(5077), - [sym__beginless_range_operator] = ACTIONS(5077), - [sym__regex_start] = ACTIONS(5077), - [sym__regular_if_keyword] = ACTIONS(5077), - [sym__regular_unless_keyword] = ACTIONS(5077), - [sym__regular_rescue_keyword] = ACTIONS(5077), - [sym__regular_ensure_keyword] = ACTIONS(5077), - [sym__string_literal_start] = ACTIONS(5077), - [sym__string_percent_literal_start] = ACTIONS(5077), - [sym__command_percent_literal_start] = ACTIONS(5077), - [sym__string_array_percent_literal_start] = ACTIONS(5077), - [sym__symbol_array_percent_literal_start] = ACTIONS(5077), - [sym__regex_percent_literal_start] = ACTIONS(5077), - [sym_heredoc_start] = ACTIONS(5077), + [2069] = { + [sym_heredoc_body] = STATE(2069), + [sym_forall] = STATE(2103), + [sym_identifier] = ACTIONS(5072), + [anon_sym_SEMI] = ACTIONS(5074), + [anon_sym_LPAREN] = ACTIONS(5074), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5072), + [sym_true] = ACTIONS(5072), + [sym_false] = ACTIONS(5072), + [aux_sym_integer_token2] = ACTIONS(5072), + [aux_sym_float_token2] = ACTIONS(5074), + [anon_sym_SQUOTE] = ACTIONS(5074), + [sym_operator_symbol] = ACTIONS(5074), + [sym_unquoted_symbol] = ACTIONS(5074), + [anon_sym_COLON_DQUOTE] = ACTIONS(5074), + [anon_sym_BQUOTE] = ACTIONS(5074), + [anon_sym_LBRACK] = ACTIONS(5074), + [anon_sym_DASH_GT] = ACTIONS(5074), + [anon_sym_annotation] = ACTIONS(5072), + [anon_sym_end] = ACTIONS(5072), + [anon_sym_AT_LBRACK] = ACTIONS(5074), + [anon_sym_module] = ACTIONS(5072), + [anon_sym_abstract] = ACTIONS(5072), + [anon_sym_class] = ACTIONS(5072), + [anon_sym_struct] = ACTIONS(5072), + [anon_sym_enum] = ACTIONS(5072), + [anon_sym_lib] = ACTIONS(5072), + [anon_sym_fun] = ACTIONS(5072), + [anon_sym_STAR] = ACTIONS(5074), + [anon_sym_BANG] = ACTIONS(5074), + [anon_sym_TILDE] = ACTIONS(5074), + [anon_sym_def] = ACTIONS(5072), + [anon_sym_include] = ACTIONS(5072), + [anon_sym_extend] = ACTIONS(5072), + [anon_sym_forall] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(5072), + [anon_sym_next] = ACTIONS(5072), + [anon_sym_break] = ACTIONS(5072), + [anon_sym_with] = ACTIONS(5072), + [anon_sym_yield] = ACTIONS(5072), + [anon_sym_typeof] = ACTIONS(5072), + [anon_sym_sizeof] = ACTIONS(5072), + [anon_sym_instance_sizeof] = ACTIONS(5072), + [anon_sym_offsetof] = ACTIONS(5072), + [sym__constant_segment] = ACTIONS(5074), + [anon_sym_COLON_COLON] = ACTIONS(5074), + [anon_sym___LINE__] = ACTIONS(5072), + [anon_sym___END_LINE__] = ACTIONS(5072), + [anon_sym___FILE__] = ACTIONS(5072), + [anon_sym___DIR__] = ACTIONS(5072), + [sym_special_variable] = ACTIONS(5074), + [sym_global_match_data_index] = ACTIONS(5074), + [sym_identifier_method_call] = ACTIONS(5074), + [sym_instance_var] = ACTIONS(5074), + [sym_class_var] = ACTIONS(5074), + [sym_self] = ACTIONS(5072), + [sym_private] = ACTIONS(5072), + [sym_protected] = ACTIONS(5072), + [anon_sym_alias] = ACTIONS(5072), + [anon_sym_begin] = ACTIONS(5072), + [anon_sym_while] = ACTIONS(5072), + [anon_sym_until] = ACTIONS(5072), + [anon_sym_else] = ACTIONS(5072), + [anon_sym_require] = ACTIONS(5072), + [anon_sym_case] = ACTIONS(5072), + [anon_sym_select] = ACTIONS(5072), + [aux_sym_asm_token1] = ACTIONS(5074), + [sym__line_break] = ACTIONS(5074), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5074), + [sym__start_of_named_tuple] = ACTIONS(5074), + [sym_unary_plus] = ACTIONS(5074), + [sym_unary_minus] = ACTIONS(5074), + [sym_unary_wrapping_plus] = ACTIONS(5074), + [sym_unary_wrapping_minus] = ACTIONS(5074), + [sym__beginless_range_operator] = ACTIONS(5074), + [sym__regex_start] = ACTIONS(5074), + [sym__regular_if_keyword] = ACTIONS(5074), + [sym__regular_unless_keyword] = ACTIONS(5074), + [sym__regular_rescue_keyword] = ACTIONS(5074), + [sym__regular_ensure_keyword] = ACTIONS(5074), + [sym__string_literal_start] = ACTIONS(5074), + [sym__string_percent_literal_start] = ACTIONS(5074), + [sym__command_percent_literal_start] = ACTIONS(5074), + [sym__string_array_percent_literal_start] = ACTIONS(5074), + [sym__symbol_array_percent_literal_start] = ACTIONS(5074), + [sym__regex_percent_literal_start] = ACTIONS(5074), + [sym_heredoc_start] = ACTIONS(5074), [sym__heredoc_body_start] = ACTIONS(7), }, - [2047] = { - [sym_heredoc_body] = STATE(2047), + [2070] = { + [sym_heredoc_body] = STATE(2070), [sym_identifier] = ACTIONS(4859), [anon_sym_SEMI] = ACTIONS(4861), [anon_sym_LPAREN] = ACTIONS(4861), @@ -338209,100 +341454,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4861), [sym__heredoc_body_start] = ACTIONS(7), }, - [2048] = { - [sym_heredoc_body] = STATE(2048), - [sym_forall] = STATE(2083), - [sym_identifier] = ACTIONS(5079), - [anon_sym_SEMI] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5081), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5079), - [sym_true] = ACTIONS(5079), - [sym_false] = ACTIONS(5079), - [aux_sym_integer_token2] = ACTIONS(5079), - [aux_sym_float_token2] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [sym_operator_symbol] = ACTIONS(5081), - [sym_unquoted_symbol] = ACTIONS(5081), - [anon_sym_COLON_DQUOTE] = ACTIONS(5081), - [anon_sym_BQUOTE] = ACTIONS(5081), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_DASH_GT] = ACTIONS(5081), - [anon_sym_annotation] = ACTIONS(5079), - [anon_sym_end] = ACTIONS(5079), - [anon_sym_AT_LBRACK] = ACTIONS(5081), - [anon_sym_module] = ACTIONS(5079), - [anon_sym_abstract] = ACTIONS(5079), - [anon_sym_class] = ACTIONS(5079), - [anon_sym_struct] = ACTIONS(5079), - [anon_sym_enum] = ACTIONS(5079), - [anon_sym_lib] = ACTIONS(5079), - [anon_sym_fun] = ACTIONS(5079), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_TILDE] = ACTIONS(5081), - [anon_sym_def] = ACTIONS(5079), - [anon_sym_include] = ACTIONS(5079), - [anon_sym_extend] = ACTIONS(5079), - [anon_sym_forall] = ACTIONS(4984), - [anon_sym_return] = ACTIONS(5079), - [anon_sym_next] = ACTIONS(5079), - [anon_sym_break] = ACTIONS(5079), - [anon_sym_with] = ACTIONS(5079), - [anon_sym_yield] = ACTIONS(5079), - [anon_sym_typeof] = ACTIONS(5079), - [anon_sym_sizeof] = ACTIONS(5079), - [anon_sym_instance_sizeof] = ACTIONS(5079), - [anon_sym_offsetof] = ACTIONS(5079), - [sym__constant_segment] = ACTIONS(5081), - [anon_sym_COLON_COLON] = ACTIONS(5081), - [anon_sym___LINE__] = ACTIONS(5079), - [anon_sym___END_LINE__] = ACTIONS(5079), - [anon_sym___FILE__] = ACTIONS(5079), - [anon_sym___DIR__] = ACTIONS(5079), - [sym_special_variable] = ACTIONS(5081), - [sym_global_match_data_index] = ACTIONS(5081), - [sym_identifier_method_call] = ACTIONS(5081), - [sym_instance_var] = ACTIONS(5081), - [sym_class_var] = ACTIONS(5081), - [sym_self] = ACTIONS(5079), - [sym_private] = ACTIONS(5079), - [sym_protected] = ACTIONS(5079), - [anon_sym_alias] = ACTIONS(5079), - [anon_sym_begin] = ACTIONS(5079), - [anon_sym_while] = ACTIONS(5079), - [anon_sym_until] = ACTIONS(5079), - [anon_sym_else] = ACTIONS(5079), - [anon_sym_require] = ACTIONS(5079), - [anon_sym_case] = ACTIONS(5079), - [anon_sym_select] = ACTIONS(5079), - [aux_sym_asm_token1] = ACTIONS(5081), - [sym__line_break] = ACTIONS(5081), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5081), - [sym__start_of_named_tuple] = ACTIONS(5081), - [sym_unary_plus] = ACTIONS(5081), - [sym_unary_minus] = ACTIONS(5081), - [sym_unary_wrapping_plus] = ACTIONS(5081), - [sym_unary_wrapping_minus] = ACTIONS(5081), - [sym__beginless_range_operator] = ACTIONS(5081), - [sym__regex_start] = ACTIONS(5081), - [sym__regular_if_keyword] = ACTIONS(5081), - [sym__regular_unless_keyword] = ACTIONS(5081), - [sym__regular_rescue_keyword] = ACTIONS(5081), - [sym__regular_ensure_keyword] = ACTIONS(5081), - [sym__string_literal_start] = ACTIONS(5081), - [sym__string_percent_literal_start] = ACTIONS(5081), - [sym__command_percent_literal_start] = ACTIONS(5081), - [sym__string_array_percent_literal_start] = ACTIONS(5081), - [sym__symbol_array_percent_literal_start] = ACTIONS(5081), - [sym__regex_percent_literal_start] = ACTIONS(5081), - [sym_heredoc_start] = ACTIONS(5081), + [2071] = { + [sym_heredoc_body] = STATE(2071), + [aux_sym_forall_repeat1] = STATE(2071), + [sym_identifier] = ACTIONS(5076), + [anon_sym_SEMI] = ACTIONS(5078), + [anon_sym_LPAREN] = ACTIONS(5078), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5076), + [sym_true] = ACTIONS(5076), + [sym_false] = ACTIONS(5076), + [aux_sym_integer_token2] = ACTIONS(5076), + [aux_sym_float_token2] = ACTIONS(5078), + [anon_sym_SQUOTE] = ACTIONS(5078), + [sym_operator_symbol] = ACTIONS(5078), + [sym_unquoted_symbol] = ACTIONS(5078), + [anon_sym_COLON_DQUOTE] = ACTIONS(5078), + [anon_sym_BQUOTE] = ACTIONS(5078), + [anon_sym_LBRACK] = ACTIONS(5078), + [anon_sym_COMMA] = ACTIONS(5080), + [anon_sym_DASH_GT] = ACTIONS(5078), + [anon_sym_annotation] = ACTIONS(5076), + [anon_sym_end] = ACTIONS(5076), + [anon_sym_AT_LBRACK] = ACTIONS(5078), + [anon_sym_module] = ACTIONS(5076), + [anon_sym_abstract] = ACTIONS(5076), + [anon_sym_class] = ACTIONS(5076), + [anon_sym_struct] = ACTIONS(5076), + [anon_sym_enum] = ACTIONS(5076), + [anon_sym_lib] = ACTIONS(5076), + [anon_sym_fun] = ACTIONS(5076), + [anon_sym_STAR] = ACTIONS(5078), + [anon_sym_BANG] = ACTIONS(5078), + [anon_sym_TILDE] = ACTIONS(5078), + [anon_sym_def] = ACTIONS(5076), + [anon_sym_include] = ACTIONS(5076), + [anon_sym_extend] = ACTIONS(5076), + [anon_sym_return] = ACTIONS(5076), + [anon_sym_next] = ACTIONS(5076), + [anon_sym_break] = ACTIONS(5076), + [anon_sym_with] = ACTIONS(5076), + [anon_sym_yield] = ACTIONS(5076), + [anon_sym_typeof] = ACTIONS(5076), + [anon_sym_sizeof] = ACTIONS(5076), + [anon_sym_instance_sizeof] = ACTIONS(5076), + [anon_sym_offsetof] = ACTIONS(5076), + [sym__constant_segment] = ACTIONS(5078), + [anon_sym_COLON_COLON] = ACTIONS(5078), + [anon_sym___LINE__] = ACTIONS(5076), + [anon_sym___END_LINE__] = ACTIONS(5076), + [anon_sym___FILE__] = ACTIONS(5076), + [anon_sym___DIR__] = ACTIONS(5076), + [sym_special_variable] = ACTIONS(5078), + [sym_global_match_data_index] = ACTIONS(5078), + [sym_identifier_method_call] = ACTIONS(5078), + [sym_instance_var] = ACTIONS(5078), + [sym_class_var] = ACTIONS(5078), + [sym_self] = ACTIONS(5076), + [sym_private] = ACTIONS(5076), + [sym_protected] = ACTIONS(5076), + [anon_sym_alias] = ACTIONS(5076), + [anon_sym_begin] = ACTIONS(5076), + [anon_sym_while] = ACTIONS(5076), + [anon_sym_until] = ACTIONS(5076), + [anon_sym_else] = ACTIONS(5076), + [anon_sym_require] = ACTIONS(5076), + [anon_sym_case] = ACTIONS(5076), + [anon_sym_select] = ACTIONS(5076), + [aux_sym_asm_token1] = ACTIONS(5078), + [sym__line_break] = ACTIONS(5078), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5078), + [sym__start_of_named_tuple] = ACTIONS(5078), + [sym_unary_plus] = ACTIONS(5078), + [sym_unary_minus] = ACTIONS(5078), + [sym_unary_wrapping_plus] = ACTIONS(5078), + [sym_unary_wrapping_minus] = ACTIONS(5078), + [sym__beginless_range_operator] = ACTIONS(5078), + [sym__regex_start] = ACTIONS(5078), + [sym__regular_if_keyword] = ACTIONS(5078), + [sym__regular_unless_keyword] = ACTIONS(5078), + [sym__regular_rescue_keyword] = ACTIONS(5078), + [sym__regular_ensure_keyword] = ACTIONS(5078), + [sym__string_literal_start] = ACTIONS(5078), + [sym__string_percent_literal_start] = ACTIONS(5078), + [sym__command_percent_literal_start] = ACTIONS(5078), + [sym__string_array_percent_literal_start] = ACTIONS(5078), + [sym__symbol_array_percent_literal_start] = ACTIONS(5078), + [sym__regex_percent_literal_start] = ACTIONS(5078), + [sym_heredoc_start] = ACTIONS(5078), [sym__heredoc_body_start] = ACTIONS(7), }, - [2049] = { - [sym_heredoc_body] = STATE(2049), - [aux_sym_union_type_repeat1] = STATE(2049), + [2072] = { + [sym_heredoc_body] = STATE(2072), + [aux_sym_union_type_repeat1] = STATE(2082), [sym_identifier] = ACTIONS(4873), [anon_sym_SEMI] = ACTIONS(4875), [anon_sym_LPAREN] = ACTIONS(4875), @@ -338332,7 +341577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_lib] = ACTIONS(4873), [anon_sym_fun] = ACTIONS(4873), [anon_sym_STAR] = ACTIONS(4875), - [anon_sym_PIPE] = ACTIONS(5083), + [anon_sym_PIPE] = ACTIONS(4875), [anon_sym_BANG] = ACTIONS(4875), [anon_sym_TILDE] = ACTIONS(4875), [anon_sym_def] = ACTIONS(4873), @@ -338390,9 +341635,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4875), [sym__heredoc_body_start] = ACTIONS(7), }, - [2050] = { - [sym_heredoc_body] = STATE(2050), - [aux_sym_union_type_repeat1] = STATE(2059), + [2073] = { + [sym_heredoc_body] = STATE(2073), + [sym_identifier] = ACTIONS(5083), + [anon_sym_SEMI] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5085), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5083), + [sym_true] = ACTIONS(5083), + [sym_false] = ACTIONS(5083), + [aux_sym_integer_token2] = ACTIONS(5083), + [aux_sym_float_token2] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5085), + [sym_operator_symbol] = ACTIONS(5085), + [sym_unquoted_symbol] = ACTIONS(5085), + [anon_sym_COLON_DQUOTE] = ACTIONS(5085), + [anon_sym_BQUOTE] = ACTIONS(5085), + [anon_sym_LBRACK] = ACTIONS(5085), + [anon_sym_COMMA] = ACTIONS(5085), + [anon_sym_DASH_GT] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5083), + [anon_sym_end] = ACTIONS(5083), + [anon_sym_AT_LBRACK] = ACTIONS(5085), + [anon_sym_module] = ACTIONS(5083), + [anon_sym_abstract] = ACTIONS(5083), + [anon_sym_class] = ACTIONS(5083), + [anon_sym_struct] = ACTIONS(5083), + [anon_sym_enum] = ACTIONS(5083), + [anon_sym_lib] = ACTIONS(5083), + [anon_sym_fun] = ACTIONS(5083), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_TILDE] = ACTIONS(5085), + [anon_sym_def] = ACTIONS(5083), + [anon_sym_include] = ACTIONS(5083), + [anon_sym_extend] = ACTIONS(5083), + [anon_sym_return] = ACTIONS(5083), + [anon_sym_next] = ACTIONS(5083), + [anon_sym_break] = ACTIONS(5083), + [anon_sym_with] = ACTIONS(5083), + [anon_sym_yield] = ACTIONS(5083), + [anon_sym_typeof] = ACTIONS(5083), + [anon_sym_sizeof] = ACTIONS(5083), + [anon_sym_instance_sizeof] = ACTIONS(5083), + [anon_sym_offsetof] = ACTIONS(5083), + [sym__constant_segment] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5085), + [anon_sym___LINE__] = ACTIONS(5083), + [anon_sym___END_LINE__] = ACTIONS(5083), + [anon_sym___FILE__] = ACTIONS(5083), + [anon_sym___DIR__] = ACTIONS(5083), + [sym_special_variable] = ACTIONS(5085), + [sym_global_match_data_index] = ACTIONS(5085), + [sym_identifier_method_call] = ACTIONS(5085), + [sym_instance_var] = ACTIONS(5085), + [sym_class_var] = ACTIONS(5085), + [sym_self] = ACTIONS(5083), + [sym_private] = ACTIONS(5083), + [sym_protected] = ACTIONS(5083), + [anon_sym_alias] = ACTIONS(5083), + [anon_sym_begin] = ACTIONS(5083), + [anon_sym_while] = ACTIONS(5083), + [anon_sym_until] = ACTIONS(5083), + [anon_sym_else] = ACTIONS(5083), + [anon_sym_require] = ACTIONS(5083), + [anon_sym_case] = ACTIONS(5083), + [anon_sym_select] = ACTIONS(5083), + [aux_sym_asm_token1] = ACTIONS(5085), + [sym__line_break] = ACTIONS(5085), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5085), + [sym__start_of_named_tuple] = ACTIONS(5085), + [sym_unary_plus] = ACTIONS(5085), + [sym_unary_minus] = ACTIONS(5085), + [sym_unary_wrapping_plus] = ACTIONS(5085), + [sym_unary_wrapping_minus] = ACTIONS(5085), + [sym__beginless_range_operator] = ACTIONS(5085), + [sym__regex_start] = ACTIONS(5085), + [sym__regular_if_keyword] = ACTIONS(5085), + [sym__regular_unless_keyword] = ACTIONS(5085), + [sym__regular_rescue_keyword] = ACTIONS(5085), + [sym__regular_ensure_keyword] = ACTIONS(5085), + [sym__string_literal_start] = ACTIONS(5085), + [sym__string_percent_literal_start] = ACTIONS(5085), + [sym__command_percent_literal_start] = ACTIONS(5085), + [sym__string_array_percent_literal_start] = ACTIONS(5085), + [sym__symbol_array_percent_literal_start] = ACTIONS(5085), + [sym__regex_percent_literal_start] = ACTIONS(5085), + [sym_heredoc_start] = ACTIONS(5085), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2074] = { + [sym_heredoc_body] = STATE(2074), + [aux_sym_union_type_repeat1] = STATE(2082), [sym_identifier] = ACTIONS(4888), [anon_sym_SEMI] = ACTIONS(4890), [anon_sym_LPAREN] = ACTIONS(4890), @@ -338407,10 +341742,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4890), [anon_sym_COLON_DQUOTE] = ACTIONS(4890), [anon_sym_BQUOTE] = ACTIONS(4890), - [anon_sym_LBRACK] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5087), [anon_sym_COMMA] = ACTIONS(4890), [anon_sym_DASH_GT] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5089), [anon_sym_annotation] = ACTIONS(4888), [anon_sym_end] = ACTIONS(4888), [anon_sym_AT_LBRACK] = ACTIONS(4890), @@ -338421,8 +341756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(4888), [anon_sym_lib] = ACTIONS(4888), [anon_sym_fun] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5093), [anon_sym_BANG] = ACTIONS(4890), [anon_sym_TILDE] = ACTIONS(4890), [anon_sym_def] = ACTIONS(4888), @@ -338449,7 +341784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4890), [sym_class_var] = ACTIONS(4890), [sym_self] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_QMARK] = ACTIONS(5095), [sym_private] = ACTIONS(4888), [sym_protected] = ACTIONS(4888), [anon_sym_alias] = ACTIONS(4888), @@ -338480,9 +341815,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4890), [sym__heredoc_body_start] = ACTIONS(7), }, - [2051] = { - [sym_heredoc_body] = STATE(2051), - [aux_sym_union_type_repeat1] = STATE(2059), + [2075] = { + [sym_heredoc_body] = STATE(2075), + [aux_sym_union_type_repeat1] = STATE(2082), [sym_identifier] = ACTIONS(4859), [anon_sym_SEMI] = ACTIONS(4861), [anon_sym_LPAREN] = ACTIONS(4861), @@ -338497,10 +341832,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4861), [anon_sym_COLON_DQUOTE] = ACTIONS(4861), [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LBRACK] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(5087), [anon_sym_COMMA] = ACTIONS(4861), [anon_sym_DASH_GT] = ACTIONS(4861), - [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(5089), [anon_sym_annotation] = ACTIONS(4859), [anon_sym_end] = ACTIONS(4859), [anon_sym_AT_LBRACK] = ACTIONS(4861), @@ -338511,8 +341846,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(4859), [anon_sym_lib] = ACTIONS(4859), [anon_sym_fun] = ACTIONS(4859), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5093), [anon_sym_BANG] = ACTIONS(4861), [anon_sym_TILDE] = ACTIONS(4861), [anon_sym_def] = ACTIONS(4859), @@ -338539,7 +341874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4861), [sym_class_var] = ACTIONS(4861), [sym_self] = ACTIONS(4859), - [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_QMARK] = ACTIONS(5095), [sym_private] = ACTIONS(4859), [sym_protected] = ACTIONS(4859), [anon_sym_alias] = ACTIONS(4859), @@ -338570,8 +341905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4861), [sym__heredoc_body_start] = ACTIONS(7), }, - [2052] = { - [sym_heredoc_body] = STATE(2052), + [2076] = { + [sym_heredoc_body] = STATE(2076), [sym_identifier] = ACTIONS(4900), [anon_sym_SEMI] = ACTIONS(4902), [anon_sym_LPAREN] = ACTIONS(4900), @@ -338650,1628 +341985,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__beginless_range_operator] = ACTIONS(4902), [sym__regex_start] = ACTIONS(4902), [sym__regular_if_keyword] = ACTIONS(4902), - [sym__regular_unless_keyword] = ACTIONS(4902), - [sym__string_literal_start] = ACTIONS(4902), - [sym__string_percent_literal_start] = ACTIONS(4902), - [sym__command_percent_literal_start] = ACTIONS(4902), - [sym__string_array_percent_literal_start] = ACTIONS(4902), - [sym__symbol_array_percent_literal_start] = ACTIONS(4902), - [sym__regex_percent_literal_start] = ACTIONS(4902), - [sym_heredoc_start] = ACTIONS(4902), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2053] = { - [sym_heredoc_body] = STATE(2053), - [sym_identifier] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5004), - [sym_true] = ACTIONS(5004), - [sym_false] = ACTIONS(5004), - [aux_sym_integer_token2] = ACTIONS(5004), - [aux_sym_float_token2] = ACTIONS(5006), - [anon_sym_SQUOTE] = ACTIONS(5006), - [sym_operator_symbol] = ACTIONS(5006), - [sym_unquoted_symbol] = ACTIONS(5006), - [anon_sym_COLON_DQUOTE] = ACTIONS(5006), - [anon_sym_BQUOTE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [anon_sym_annotation] = ACTIONS(5004), - [anon_sym_end] = ACTIONS(5004), - [anon_sym_AT_LBRACK] = ACTIONS(5006), - [anon_sym_module] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_class] = ACTIONS(5004), - [anon_sym_struct] = ACTIONS(5004), - [anon_sym_enum] = ACTIONS(5004), - [anon_sym_lib] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_BANG] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_def] = ACTIONS(5004), - [anon_sym_include] = ACTIONS(5004), - [anon_sym_extend] = ACTIONS(5004), - [anon_sym_forall] = ACTIONS(5004), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_next] = ACTIONS(5004), - [anon_sym_break] = ACTIONS(5004), - [anon_sym_with] = ACTIONS(5004), - [anon_sym_yield] = ACTIONS(5004), - [anon_sym_typeof] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(5004), - [anon_sym_instance_sizeof] = ACTIONS(5004), - [anon_sym_offsetof] = ACTIONS(5004), - [sym__constant_segment] = ACTIONS(5006), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym___LINE__] = ACTIONS(5004), - [anon_sym___END_LINE__] = ACTIONS(5004), - [anon_sym___FILE__] = ACTIONS(5004), - [anon_sym___DIR__] = ACTIONS(5004), - [sym_special_variable] = ACTIONS(5006), - [sym_global_match_data_index] = ACTIONS(5006), - [sym_identifier_method_call] = ACTIONS(5006), - [sym_instance_var] = ACTIONS(5006), - [sym_class_var] = ACTIONS(5006), - [sym_self] = ACTIONS(5004), - [sym_private] = ACTIONS(5004), - [sym_protected] = ACTIONS(5004), - [anon_sym_alias] = ACTIONS(5004), - [anon_sym_begin] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_until] = ACTIONS(5004), - [anon_sym_else] = ACTIONS(5004), - [anon_sym_require] = ACTIONS(5004), - [anon_sym_case] = ACTIONS(5004), - [anon_sym_select] = ACTIONS(5004), - [aux_sym_asm_token1] = ACTIONS(5006), - [sym__line_break] = ACTIONS(5006), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5006), - [sym__start_of_named_tuple] = ACTIONS(5006), - [sym_unary_plus] = ACTIONS(5006), - [sym_unary_minus] = ACTIONS(5006), - [sym_unary_wrapping_plus] = ACTIONS(5006), - [sym_unary_wrapping_minus] = ACTIONS(5006), - [sym__beginless_range_operator] = ACTIONS(5006), - [sym__regex_start] = ACTIONS(5006), - [sym__regular_if_keyword] = ACTIONS(5006), - [sym__regular_unless_keyword] = ACTIONS(5006), - [sym__regular_rescue_keyword] = ACTIONS(5006), - [sym__regular_ensure_keyword] = ACTIONS(5006), - [sym__string_literal_start] = ACTIONS(5006), - [sym__string_percent_literal_start] = ACTIONS(5006), - [sym__command_percent_literal_start] = ACTIONS(5006), - [sym__string_array_percent_literal_start] = ACTIONS(5006), - [sym__symbol_array_percent_literal_start] = ACTIONS(5006), - [sym__regex_percent_literal_start] = ACTIONS(5006), - [sym_heredoc_start] = ACTIONS(5006), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2054] = { - [sym_heredoc_body] = STATE(2054), - [sym_identifier] = ACTIONS(5096), - [anon_sym_SEMI] = ACTIONS(5098), - [anon_sym_LPAREN] = ACTIONS(5098), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5096), - [sym_true] = ACTIONS(5096), - [sym_false] = ACTIONS(5096), - [aux_sym_integer_token2] = ACTIONS(5096), - [aux_sym_float_token2] = ACTIONS(5098), - [anon_sym_SQUOTE] = ACTIONS(5098), - [sym_operator_symbol] = ACTIONS(5098), - [sym_unquoted_symbol] = ACTIONS(5098), - [anon_sym_COLON_DQUOTE] = ACTIONS(5098), - [anon_sym_BQUOTE] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5098), - [anon_sym_COMMA] = ACTIONS(5098), - [anon_sym_DASH_GT] = ACTIONS(5098), - [anon_sym_annotation] = ACTIONS(5096), - [anon_sym_end] = ACTIONS(5096), - [anon_sym_AT_LBRACK] = ACTIONS(5098), - [anon_sym_module] = ACTIONS(5096), - [anon_sym_abstract] = ACTIONS(5096), - [anon_sym_class] = ACTIONS(5096), - [anon_sym_struct] = ACTIONS(5096), - [anon_sym_enum] = ACTIONS(5096), - [anon_sym_lib] = ACTIONS(5096), - [anon_sym_fun] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5098), - [anon_sym_BANG] = ACTIONS(5098), - [anon_sym_TILDE] = ACTIONS(5098), - [anon_sym_def] = ACTIONS(5096), - [anon_sym_include] = ACTIONS(5096), - [anon_sym_extend] = ACTIONS(5096), - [anon_sym_return] = ACTIONS(5096), - [anon_sym_next] = ACTIONS(5096), - [anon_sym_break] = ACTIONS(5096), - [anon_sym_with] = ACTIONS(5096), - [anon_sym_yield] = ACTIONS(5096), - [anon_sym_typeof] = ACTIONS(5096), - [anon_sym_sizeof] = ACTIONS(5096), - [anon_sym_instance_sizeof] = ACTIONS(5096), - [anon_sym_offsetof] = ACTIONS(5096), - [sym__constant_segment] = ACTIONS(5098), - [anon_sym_COLON_COLON] = ACTIONS(5098), - [anon_sym___LINE__] = ACTIONS(5096), - [anon_sym___END_LINE__] = ACTIONS(5096), - [anon_sym___FILE__] = ACTIONS(5096), - [anon_sym___DIR__] = ACTIONS(5096), - [sym_special_variable] = ACTIONS(5098), - [sym_global_match_data_index] = ACTIONS(5098), - [sym_identifier_method_call] = ACTIONS(5098), - [sym_instance_var] = ACTIONS(5098), - [sym_class_var] = ACTIONS(5098), - [sym_self] = ACTIONS(5096), - [sym_private] = ACTIONS(5096), - [sym_protected] = ACTIONS(5096), - [anon_sym_alias] = ACTIONS(5096), - [anon_sym_begin] = ACTIONS(5096), - [anon_sym_while] = ACTIONS(5096), - [anon_sym_until] = ACTIONS(5096), - [anon_sym_else] = ACTIONS(5096), - [anon_sym_require] = ACTIONS(5096), - [anon_sym_case] = ACTIONS(5096), - [anon_sym_select] = ACTIONS(5096), - [aux_sym_asm_token1] = ACTIONS(5098), - [sym__line_break] = ACTIONS(5098), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5098), - [sym__start_of_named_tuple] = ACTIONS(5098), - [sym_unary_plus] = ACTIONS(5098), - [sym_unary_minus] = ACTIONS(5098), - [sym_unary_wrapping_plus] = ACTIONS(5098), - [sym_unary_wrapping_minus] = ACTIONS(5098), - [sym__beginless_range_operator] = ACTIONS(5098), - [sym__regex_start] = ACTIONS(5098), - [sym__regular_if_keyword] = ACTIONS(5098), - [sym__regular_unless_keyword] = ACTIONS(5098), - [sym__regular_rescue_keyword] = ACTIONS(5098), - [sym__regular_ensure_keyword] = ACTIONS(5098), - [sym__string_literal_start] = ACTIONS(5098), - [sym__string_percent_literal_start] = ACTIONS(5098), - [sym__command_percent_literal_start] = ACTIONS(5098), - [sym__string_array_percent_literal_start] = ACTIONS(5098), - [sym__symbol_array_percent_literal_start] = ACTIONS(5098), - [sym__regex_percent_literal_start] = ACTIONS(5098), - [sym_heredoc_start] = ACTIONS(5098), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2055] = { - [sym_heredoc_body] = STATE(2055), - [aux_sym_union_type_repeat1] = STATE(2059), - [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_COMMA] = ACTIONS(4875), - [anon_sym_DASH_GT] = ACTIONS(4875), - [anon_sym_DOT] = ACTIONS(4875), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_end] = ACTIONS(4873), - [anon_sym_AT_LBRACK] = ACTIONS(4875), - [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_lib] = ACTIONS(4873), - [anon_sym_fun] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [anon_sym_PIPE] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4875), - [anon_sym_TILDE] = ACTIONS(4875), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4875), - [sym_identifier_method_call] = ACTIONS(4875), - [sym_instance_var] = ACTIONS(4875), - [sym_class_var] = ACTIONS(4875), - [sym_self] = ACTIONS(4873), - [anon_sym_QMARK] = ACTIONS(4875), - [sym_private] = ACTIONS(4873), - [sym_protected] = ACTIONS(4873), - [anon_sym_alias] = ACTIONS(4873), - [anon_sym_begin] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_until] = ACTIONS(4873), - [anon_sym_require] = ACTIONS(4873), - [anon_sym_case] = ACTIONS(4873), - [anon_sym_select] = ACTIONS(4873), - [aux_sym_asm_token1] = ACTIONS(4875), - [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__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__heredoc_body_start] = ACTIONS(7), - }, - [2056] = { - [sym_heredoc_body] = STATE(2056), - [aux_sym_union_type_repeat1] = STATE(2059), - [sym_identifier] = ACTIONS(4896), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LPAREN] = ACTIONS(4898), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4896), - [sym_true] = ACTIONS(4896), - [sym_false] = ACTIONS(4896), - [aux_sym_integer_token2] = ACTIONS(4896), - [aux_sym_float_token2] = ACTIONS(4898), - [anon_sym_SQUOTE] = ACTIONS(4898), - [sym_operator_symbol] = ACTIONS(4898), - [sym_unquoted_symbol] = ACTIONS(4898), - [anon_sym_COLON_DQUOTE] = ACTIONS(4898), - [anon_sym_BQUOTE] = ACTIONS(4898), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(4898), - [anon_sym_DASH_GT] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_annotation] = ACTIONS(4896), - [anon_sym_end] = ACTIONS(4896), - [anon_sym_AT_LBRACK] = ACTIONS(4898), - [anon_sym_module] = ACTIONS(4896), - [anon_sym_abstract] = ACTIONS(4896), - [anon_sym_class] = ACTIONS(4896), - [anon_sym_struct] = ACTIONS(4896), - [anon_sym_enum] = ACTIONS(4896), - [anon_sym_lib] = ACTIONS(4896), - [anon_sym_fun] = ACTIONS(4896), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(4898), - [anon_sym_TILDE] = ACTIONS(4898), - [anon_sym_def] = ACTIONS(4896), - [anon_sym_include] = ACTIONS(4896), - [anon_sym_extend] = ACTIONS(4896), - [anon_sym_return] = ACTIONS(4896), - [anon_sym_next] = ACTIONS(4896), - [anon_sym_break] = ACTIONS(4896), - [anon_sym_with] = ACTIONS(4896), - [anon_sym_yield] = ACTIONS(4896), - [anon_sym_typeof] = ACTIONS(4896), - [anon_sym_sizeof] = ACTIONS(4896), - [anon_sym_instance_sizeof] = ACTIONS(4896), - [anon_sym_offsetof] = ACTIONS(4896), - [sym__constant_segment] = ACTIONS(4898), - [anon_sym_COLON_COLON] = ACTIONS(4898), - [anon_sym___LINE__] = ACTIONS(4896), - [anon_sym___END_LINE__] = ACTIONS(4896), - [anon_sym___FILE__] = ACTIONS(4896), - [anon_sym___DIR__] = ACTIONS(4896), - [sym_special_variable] = ACTIONS(4898), - [sym_global_match_data_index] = ACTIONS(4898), - [sym_identifier_method_call] = ACTIONS(4898), - [sym_instance_var] = ACTIONS(4898), - [sym_class_var] = ACTIONS(4898), - [sym_self] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(5094), - [sym_private] = ACTIONS(4896), - [sym_protected] = ACTIONS(4896), - [anon_sym_alias] = ACTIONS(4896), - [anon_sym_begin] = ACTIONS(4896), - [anon_sym_while] = ACTIONS(4896), - [anon_sym_until] = ACTIONS(4896), - [anon_sym_require] = ACTIONS(4896), - [anon_sym_case] = ACTIONS(4896), - [anon_sym_select] = ACTIONS(4896), - [aux_sym_asm_token1] = ACTIONS(4898), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4898), - [sym__start_of_named_tuple] = ACTIONS(4898), - [sym_unary_plus] = ACTIONS(4898), - [sym_unary_minus] = ACTIONS(4898), - [sym_unary_wrapping_plus] = ACTIONS(4898), - [sym_unary_wrapping_minus] = ACTIONS(4898), - [sym__beginless_range_operator] = ACTIONS(4898), - [sym__regex_start] = ACTIONS(4898), - [sym__regular_if_keyword] = ACTIONS(4898), - [sym__regular_unless_keyword] = ACTIONS(4898), - [sym__string_literal_start] = ACTIONS(4898), - [sym__string_percent_literal_start] = ACTIONS(4898), - [sym__command_percent_literal_start] = ACTIONS(4898), - [sym__string_array_percent_literal_start] = ACTIONS(4898), - [sym__symbol_array_percent_literal_start] = ACTIONS(4898), - [sym__regex_percent_literal_start] = ACTIONS(4898), - [sym_heredoc_start] = ACTIONS(4898), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2057] = { - [sym_heredoc_body] = STATE(2057), - [aux_sym_union_type_repeat1] = STATE(2059), - [sym_identifier] = ACTIONS(4884), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4884), - [sym_true] = ACTIONS(4884), - [sym_false] = ACTIONS(4884), - [aux_sym_integer_token2] = ACTIONS(4884), - [aux_sym_float_token2] = ACTIONS(4886), - [anon_sym_SQUOTE] = ACTIONS(4886), - [sym_operator_symbol] = ACTIONS(4886), - [sym_unquoted_symbol] = ACTIONS(4886), - [anon_sym_COLON_DQUOTE] = ACTIONS(4886), - [anon_sym_BQUOTE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_annotation] = ACTIONS(4884), - [anon_sym_end] = ACTIONS(4884), - [anon_sym_AT_LBRACK] = ACTIONS(4886), - [anon_sym_module] = ACTIONS(4884), - [anon_sym_abstract] = ACTIONS(4884), - [anon_sym_class] = ACTIONS(4884), - [anon_sym_struct] = ACTIONS(4884), - [anon_sym_enum] = ACTIONS(4884), - [anon_sym_lib] = ACTIONS(4884), - [anon_sym_fun] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(4886), - [anon_sym_TILDE] = ACTIONS(4886), - [anon_sym_def] = ACTIONS(4884), - [anon_sym_include] = ACTIONS(4884), - [anon_sym_extend] = ACTIONS(4884), - [anon_sym_return] = ACTIONS(4884), - [anon_sym_next] = ACTIONS(4884), - [anon_sym_break] = ACTIONS(4884), - [anon_sym_with] = ACTIONS(4884), - [anon_sym_yield] = ACTIONS(4884), - [anon_sym_typeof] = ACTIONS(4884), - [anon_sym_sizeof] = ACTIONS(4884), - [anon_sym_instance_sizeof] = ACTIONS(4884), - [anon_sym_offsetof] = ACTIONS(4884), - [sym__constant_segment] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4886), - [anon_sym___LINE__] = ACTIONS(4884), - [anon_sym___END_LINE__] = ACTIONS(4884), - [anon_sym___FILE__] = ACTIONS(4884), - [anon_sym___DIR__] = ACTIONS(4884), - [sym_special_variable] = ACTIONS(4886), - [sym_global_match_data_index] = ACTIONS(4886), - [sym_identifier_method_call] = ACTIONS(4886), - [sym_instance_var] = ACTIONS(4886), - [sym_class_var] = ACTIONS(4886), - [sym_self] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(5094), - [sym_private] = ACTIONS(4884), - [sym_protected] = ACTIONS(4884), - [anon_sym_alias] = ACTIONS(4884), - [anon_sym_begin] = ACTIONS(4884), - [anon_sym_while] = ACTIONS(4884), - [anon_sym_until] = ACTIONS(4884), - [anon_sym_require] = ACTIONS(4884), - [anon_sym_case] = ACTIONS(4884), - [anon_sym_select] = ACTIONS(4884), - [aux_sym_asm_token1] = ACTIONS(4886), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4886), - [sym__start_of_named_tuple] = ACTIONS(4886), - [sym_unary_plus] = ACTIONS(4886), - [sym_unary_minus] = ACTIONS(4886), - [sym_unary_wrapping_plus] = ACTIONS(4886), - [sym_unary_wrapping_minus] = ACTIONS(4886), - [sym__beginless_range_operator] = ACTIONS(4886), - [sym__regex_start] = ACTIONS(4886), - [sym__regular_if_keyword] = ACTIONS(4886), - [sym__regular_unless_keyword] = ACTIONS(4886), - [sym__string_literal_start] = ACTIONS(4886), - [sym__string_percent_literal_start] = ACTIONS(4886), - [sym__command_percent_literal_start] = ACTIONS(4886), - [sym__string_array_percent_literal_start] = ACTIONS(4886), - [sym__symbol_array_percent_literal_start] = ACTIONS(4886), - [sym__regex_percent_literal_start] = ACTIONS(4886), - [sym_heredoc_start] = ACTIONS(4886), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2058] = { - [sym_heredoc_body] = STATE(2058), - [aux_sym_union_type_repeat1] = STATE(2059), - [sym_identifier] = ACTIONS(4892), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LPAREN] = ACTIONS(4894), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4892), - [sym_true] = ACTIONS(4892), - [sym_false] = ACTIONS(4892), - [aux_sym_integer_token2] = ACTIONS(4892), - [aux_sym_float_token2] = ACTIONS(4894), - [anon_sym_SQUOTE] = ACTIONS(4894), - [sym_operator_symbol] = ACTIONS(4894), - [sym_unquoted_symbol] = ACTIONS(4894), - [anon_sym_COLON_DQUOTE] = ACTIONS(4894), - [anon_sym_BQUOTE] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_annotation] = ACTIONS(4892), - [anon_sym_end] = ACTIONS(4892), - [anon_sym_AT_LBRACK] = ACTIONS(4894), - [anon_sym_module] = ACTIONS(4892), - [anon_sym_abstract] = ACTIONS(4892), - [anon_sym_class] = ACTIONS(4892), - [anon_sym_struct] = ACTIONS(4892), - [anon_sym_enum] = ACTIONS(4892), - [anon_sym_lib] = ACTIONS(4892), - [anon_sym_fun] = ACTIONS(4892), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_TILDE] = ACTIONS(4894), - [anon_sym_def] = ACTIONS(4892), - [anon_sym_include] = ACTIONS(4892), - [anon_sym_extend] = ACTIONS(4892), - [anon_sym_return] = ACTIONS(4892), - [anon_sym_next] = ACTIONS(4892), - [anon_sym_break] = ACTIONS(4892), - [anon_sym_with] = ACTIONS(4892), - [anon_sym_yield] = ACTIONS(4892), - [anon_sym_typeof] = ACTIONS(4892), - [anon_sym_sizeof] = ACTIONS(4892), - [anon_sym_instance_sizeof] = ACTIONS(4892), - [anon_sym_offsetof] = ACTIONS(4892), - [sym__constant_segment] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym___LINE__] = ACTIONS(4892), - [anon_sym___END_LINE__] = ACTIONS(4892), - [anon_sym___FILE__] = ACTIONS(4892), - [anon_sym___DIR__] = ACTIONS(4892), - [sym_special_variable] = ACTIONS(4894), - [sym_global_match_data_index] = ACTIONS(4894), - [sym_identifier_method_call] = ACTIONS(4894), - [sym_instance_var] = ACTIONS(4894), - [sym_class_var] = ACTIONS(4894), - [sym_self] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(5094), - [sym_private] = ACTIONS(4892), - [sym_protected] = ACTIONS(4892), - [anon_sym_alias] = ACTIONS(4892), - [anon_sym_begin] = ACTIONS(4892), - [anon_sym_while] = ACTIONS(4892), - [anon_sym_until] = ACTIONS(4892), - [anon_sym_require] = ACTIONS(4892), - [anon_sym_case] = ACTIONS(4892), - [anon_sym_select] = ACTIONS(4892), - [aux_sym_asm_token1] = ACTIONS(4894), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4894), - [sym__start_of_named_tuple] = ACTIONS(4894), - [sym_unary_plus] = ACTIONS(4894), - [sym_unary_minus] = ACTIONS(4894), - [sym_unary_wrapping_plus] = ACTIONS(4894), - [sym_unary_wrapping_minus] = ACTIONS(4894), - [sym__beginless_range_operator] = ACTIONS(4894), - [sym__regex_start] = ACTIONS(4894), - [sym__regular_if_keyword] = ACTIONS(4894), - [sym__regular_unless_keyword] = ACTIONS(4894), - [sym__string_literal_start] = ACTIONS(4894), - [sym__string_percent_literal_start] = ACTIONS(4894), - [sym__command_percent_literal_start] = ACTIONS(4894), - [sym__string_array_percent_literal_start] = ACTIONS(4894), - [sym__symbol_array_percent_literal_start] = ACTIONS(4894), - [sym__regex_percent_literal_start] = ACTIONS(4894), - [sym_heredoc_start] = ACTIONS(4894), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2059] = { - [sym_heredoc_body] = STATE(2059), - [aux_sym_union_type_repeat1] = STATE(2049), - [sym_identifier] = ACTIONS(4880), - [anon_sym_SEMI] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4880), - [sym_true] = ACTIONS(4880), - [sym_false] = ACTIONS(4880), - [aux_sym_integer_token2] = ACTIONS(4880), - [aux_sym_float_token2] = ACTIONS(4882), - [anon_sym_SQUOTE] = ACTIONS(4882), - [sym_operator_symbol] = ACTIONS(4882), - [sym_unquoted_symbol] = ACTIONS(4882), - [anon_sym_COLON_DQUOTE] = ACTIONS(4882), - [anon_sym_BQUOTE] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_COMMA] = ACTIONS(4882), - [anon_sym_DASH_GT] = ACTIONS(4882), - [anon_sym_DOT] = ACTIONS(4882), - [anon_sym_annotation] = ACTIONS(4880), - [anon_sym_end] = ACTIONS(4880), - [anon_sym_AT_LBRACK] = ACTIONS(4882), - [anon_sym_module] = ACTIONS(4880), - [anon_sym_abstract] = ACTIONS(4880), - [anon_sym_class] = ACTIONS(4880), - [anon_sym_struct] = ACTIONS(4880), - [anon_sym_enum] = ACTIONS(4880), - [anon_sym_lib] = ACTIONS(4880), - [anon_sym_fun] = ACTIONS(4880), - [anon_sym_STAR] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(4882), - [anon_sym_TILDE] = ACTIONS(4882), - [anon_sym_def] = ACTIONS(4880), - [anon_sym_include] = ACTIONS(4880), - [anon_sym_extend] = ACTIONS(4880), - [anon_sym_return] = ACTIONS(4880), - [anon_sym_next] = ACTIONS(4880), - [anon_sym_break] = ACTIONS(4880), - [anon_sym_with] = ACTIONS(4880), - [anon_sym_yield] = ACTIONS(4880), - [anon_sym_typeof] = ACTIONS(4880), - [anon_sym_sizeof] = ACTIONS(4880), - [anon_sym_instance_sizeof] = ACTIONS(4880), - [anon_sym_offsetof] = ACTIONS(4880), - [sym__constant_segment] = ACTIONS(4882), - [anon_sym_COLON_COLON] = ACTIONS(4882), - [anon_sym___LINE__] = ACTIONS(4880), - [anon_sym___END_LINE__] = ACTIONS(4880), - [anon_sym___FILE__] = ACTIONS(4880), - [anon_sym___DIR__] = ACTIONS(4880), - [sym_special_variable] = ACTIONS(4882), - [sym_global_match_data_index] = ACTIONS(4882), - [sym_identifier_method_call] = ACTIONS(4882), - [sym_instance_var] = ACTIONS(4882), - [sym_class_var] = ACTIONS(4882), - [sym_self] = ACTIONS(4880), - [anon_sym_QMARK] = ACTIONS(4882), - [sym_private] = ACTIONS(4880), - [sym_protected] = ACTIONS(4880), - [anon_sym_alias] = ACTIONS(4880), - [anon_sym_begin] = ACTIONS(4880), - [anon_sym_while] = ACTIONS(4880), - [anon_sym_until] = ACTIONS(4880), - [anon_sym_require] = ACTIONS(4880), - [anon_sym_case] = ACTIONS(4880), - [anon_sym_select] = ACTIONS(4880), - [aux_sym_asm_token1] = ACTIONS(4882), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4882), - [sym__start_of_named_tuple] = ACTIONS(4882), - [sym_unary_plus] = ACTIONS(4882), - [sym_unary_minus] = ACTIONS(4882), - [sym_unary_wrapping_plus] = ACTIONS(4882), - [sym_unary_wrapping_minus] = ACTIONS(4882), - [sym__beginless_range_operator] = ACTIONS(4882), - [sym__regex_start] = ACTIONS(4882), - [sym__regular_if_keyword] = ACTIONS(4882), - [sym__regular_unless_keyword] = ACTIONS(4882), - [sym__string_literal_start] = ACTIONS(4882), - [sym__string_percent_literal_start] = ACTIONS(4882), - [sym__command_percent_literal_start] = ACTIONS(4882), - [sym__string_array_percent_literal_start] = ACTIONS(4882), - [sym__symbol_array_percent_literal_start] = ACTIONS(4882), - [sym__regex_percent_literal_start] = ACTIONS(4882), - [sym_heredoc_start] = ACTIONS(4882), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2060] = { - [sym_heredoc_body] = STATE(2060), - [sym_identifier] = ACTIONS(5100), - [anon_sym_SEMI] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5100), - [sym_true] = ACTIONS(5100), - [sym_false] = ACTIONS(5100), - [aux_sym_integer_token2] = ACTIONS(5100), - [aux_sym_float_token2] = ACTIONS(5102), - [anon_sym_SQUOTE] = ACTIONS(5102), - [sym_operator_symbol] = ACTIONS(5102), - [sym_unquoted_symbol] = ACTIONS(5102), - [anon_sym_COLON_DQUOTE] = ACTIONS(5102), - [anon_sym_BQUOTE] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_DASH_GT] = ACTIONS(5102), - [anon_sym_annotation] = ACTIONS(5100), - [anon_sym_end] = ACTIONS(5100), - [anon_sym_AT_LBRACK] = ACTIONS(5102), - [anon_sym_module] = ACTIONS(5100), - [anon_sym_abstract] = ACTIONS(5100), - [anon_sym_class] = ACTIONS(5100), - [anon_sym_struct] = ACTIONS(5100), - [anon_sym_enum] = ACTIONS(5100), - [anon_sym_lib] = ACTIONS(5100), - [anon_sym_fun] = ACTIONS(5100), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_BANG] = ACTIONS(5102), - [anon_sym_TILDE] = ACTIONS(5102), - [anon_sym_def] = ACTIONS(5100), - [anon_sym_include] = ACTIONS(5100), - [anon_sym_extend] = ACTIONS(5100), - [anon_sym_return] = ACTIONS(5100), - [anon_sym_next] = ACTIONS(5100), - [anon_sym_break] = ACTIONS(5100), - [anon_sym_with] = ACTIONS(5100), - [anon_sym_yield] = ACTIONS(5100), - [anon_sym_typeof] = ACTIONS(5100), - [anon_sym_sizeof] = ACTIONS(5100), - [anon_sym_instance_sizeof] = ACTIONS(5100), - [anon_sym_offsetof] = ACTIONS(5100), - [sym__constant_segment] = ACTIONS(5102), - [anon_sym_COLON_COLON] = ACTIONS(5102), - [anon_sym___LINE__] = ACTIONS(5100), - [anon_sym___END_LINE__] = ACTIONS(5100), - [anon_sym___FILE__] = ACTIONS(5100), - [anon_sym___DIR__] = ACTIONS(5100), - [sym_special_variable] = ACTIONS(5102), - [sym_global_match_data_index] = ACTIONS(5102), - [sym_identifier_method_call] = ACTIONS(5102), - [sym_instance_var] = ACTIONS(5102), - [sym_class_var] = ACTIONS(5102), - [sym_self] = ACTIONS(5100), - [sym_private] = ACTIONS(5100), - [sym_protected] = ACTIONS(5100), - [anon_sym_alias] = ACTIONS(5100), - [anon_sym_begin] = ACTIONS(5100), - [anon_sym_while] = ACTIONS(5100), - [anon_sym_until] = ACTIONS(5100), - [anon_sym_else] = ACTIONS(5100), - [anon_sym_require] = ACTIONS(5100), - [anon_sym_case] = ACTIONS(5100), - [anon_sym_select] = ACTIONS(5100), - [aux_sym_asm_token1] = ACTIONS(5102), - [sym__line_break] = ACTIONS(5102), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5102), - [sym__start_of_named_tuple] = ACTIONS(5102), - [sym_unary_plus] = ACTIONS(5102), - [sym_unary_minus] = ACTIONS(5102), - [sym_unary_wrapping_plus] = ACTIONS(5102), - [sym_unary_wrapping_minus] = ACTIONS(5102), - [sym__beginless_range_operator] = ACTIONS(5102), - [sym__regex_start] = ACTIONS(5102), - [sym__regular_if_keyword] = ACTIONS(5102), - [sym__regular_unless_keyword] = ACTIONS(5102), - [sym__regular_rescue_keyword] = ACTIONS(5102), - [sym__regular_ensure_keyword] = ACTIONS(5102), - [sym__string_literal_start] = ACTIONS(5102), - [sym__string_percent_literal_start] = ACTIONS(5102), - [sym__command_percent_literal_start] = ACTIONS(5102), - [sym__string_array_percent_literal_start] = ACTIONS(5102), - [sym__symbol_array_percent_literal_start] = ACTIONS(5102), - [sym__regex_percent_literal_start] = ACTIONS(5102), - [sym_heredoc_start] = ACTIONS(5102), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2061] = { - [sym_heredoc_body] = STATE(2061), - [sym_identifier] = ACTIONS(5104), - [anon_sym_SEMI] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5104), - [sym_true] = ACTIONS(5104), - [sym_false] = ACTIONS(5104), - [aux_sym_integer_token2] = ACTIONS(5104), - [aux_sym_float_token2] = ACTIONS(5106), - [anon_sym_SQUOTE] = ACTIONS(5106), - [sym_operator_symbol] = ACTIONS(5106), - [sym_unquoted_symbol] = ACTIONS(5106), - [anon_sym_COLON_DQUOTE] = ACTIONS(5106), - [anon_sym_BQUOTE] = ACTIONS(5106), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_DASH_GT] = ACTIONS(5106), - [anon_sym_annotation] = ACTIONS(5104), - [anon_sym_end] = ACTIONS(5104), - [anon_sym_AT_LBRACK] = ACTIONS(5106), - [anon_sym_module] = ACTIONS(5104), - [anon_sym_abstract] = ACTIONS(5104), - [anon_sym_class] = ACTIONS(5104), - [anon_sym_struct] = ACTIONS(5104), - [anon_sym_enum] = ACTIONS(5104), - [anon_sym_lib] = ACTIONS(5104), - [anon_sym_fun] = ACTIONS(5104), - [anon_sym_STAR] = ACTIONS(5106), - [anon_sym_BANG] = ACTIONS(5106), - [anon_sym_TILDE] = ACTIONS(5106), - [anon_sym_def] = ACTIONS(5104), - [anon_sym_include] = ACTIONS(5104), - [anon_sym_extend] = ACTIONS(5104), - [anon_sym_return] = ACTIONS(5104), - [anon_sym_next] = ACTIONS(5104), - [anon_sym_break] = ACTIONS(5104), - [anon_sym_with] = ACTIONS(5104), - [anon_sym_yield] = ACTIONS(5104), - [anon_sym_typeof] = ACTIONS(5104), - [anon_sym_sizeof] = ACTIONS(5104), - [anon_sym_instance_sizeof] = ACTIONS(5104), - [anon_sym_offsetof] = ACTIONS(5104), - [sym__constant_segment] = ACTIONS(5106), - [anon_sym_COLON_COLON] = ACTIONS(5106), - [anon_sym___LINE__] = ACTIONS(5104), - [anon_sym___END_LINE__] = ACTIONS(5104), - [anon_sym___FILE__] = ACTIONS(5104), - [anon_sym___DIR__] = ACTIONS(5104), - [sym_special_variable] = ACTIONS(5106), - [sym_global_match_data_index] = ACTIONS(5106), - [sym_identifier_method_call] = ACTIONS(5106), - [sym_instance_var] = ACTIONS(5106), - [sym_class_var] = ACTIONS(5106), - [sym_self] = ACTIONS(5104), - [sym_private] = ACTIONS(5104), - [sym_protected] = ACTIONS(5104), - [anon_sym_alias] = ACTIONS(5104), - [anon_sym_begin] = ACTIONS(5104), - [anon_sym_while] = ACTIONS(5104), - [anon_sym_until] = ACTIONS(5104), - [anon_sym_else] = ACTIONS(5104), - [anon_sym_require] = ACTIONS(5104), - [anon_sym_case] = ACTIONS(5104), - [anon_sym_select] = ACTIONS(5104), - [aux_sym_asm_token1] = ACTIONS(5106), - [sym__line_break] = ACTIONS(5106), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5106), - [sym__start_of_named_tuple] = ACTIONS(5106), - [sym_unary_plus] = ACTIONS(5106), - [sym_unary_minus] = ACTIONS(5106), - [sym_unary_wrapping_plus] = ACTIONS(5106), - [sym_unary_wrapping_minus] = ACTIONS(5106), - [sym__beginless_range_operator] = ACTIONS(5106), - [sym__regex_start] = ACTIONS(5106), - [sym__regular_if_keyword] = ACTIONS(5106), - [sym__regular_unless_keyword] = ACTIONS(5106), - [sym__regular_rescue_keyword] = ACTIONS(5106), - [sym__regular_ensure_keyword] = ACTIONS(5106), - [sym__string_literal_start] = ACTIONS(5106), - [sym__string_percent_literal_start] = ACTIONS(5106), - [sym__command_percent_literal_start] = ACTIONS(5106), - [sym__string_array_percent_literal_start] = ACTIONS(5106), - [sym__symbol_array_percent_literal_start] = ACTIONS(5106), - [sym__regex_percent_literal_start] = ACTIONS(5106), - [sym_heredoc_start] = ACTIONS(5106), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2062] = { - [sym_heredoc_body] = STATE(2062), - [aux_sym_union_type_repeat1] = STATE(2059), - [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(5086), - [anon_sym_DASH_GT] = ACTIONS(4968), - [anon_sym_DOT] = ACTIONS(5088), - [anon_sym_annotation] = ACTIONS(4966), - [anon_sym_end] = ACTIONS(4966), - [anon_sym_AT_LBRACK] = ACTIONS(4968), - [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_lib] = ACTIONS(4966), - [anon_sym_fun] = ACTIONS(4966), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_TILDE] = ACTIONS(4968), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4968), - [sym_identifier_method_call] = ACTIONS(4968), - [sym_instance_var] = ACTIONS(4968), - [sym_class_var] = ACTIONS(4968), - [sym_self] = ACTIONS(4966), - [anon_sym_QMARK] = ACTIONS(5094), - [sym_private] = ACTIONS(4966), - [sym_protected] = ACTIONS(4966), - [anon_sym_alias] = ACTIONS(4966), - [anon_sym_begin] = ACTIONS(4966), - [anon_sym_while] = ACTIONS(4966), - [anon_sym_until] = ACTIONS(4966), - [anon_sym_require] = ACTIONS(4966), - [anon_sym_case] = ACTIONS(4966), - [anon_sym_select] = ACTIONS(4966), - [aux_sym_asm_token1] = ACTIONS(4968), - [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__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), - }, - [2063] = { - [sym_heredoc_body] = STATE(2063), - [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_COMMA] = ACTIONS(4972), - [anon_sym_DASH_GT] = ACTIONS(4972), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_annotation] = ACTIONS(4970), - [anon_sym_end] = ACTIONS(4970), - [anon_sym_AT_LBRACK] = ACTIONS(4972), - [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_lib] = ACTIONS(4970), - [anon_sym_fun] = ACTIONS(4970), - [anon_sym_STAR] = ACTIONS(4972), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_BANG] = ACTIONS(4972), - [anon_sym_TILDE] = ACTIONS(4972), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4972), - [sym_identifier_method_call] = ACTIONS(4972), - [sym_instance_var] = ACTIONS(4972), - [sym_class_var] = ACTIONS(4972), - [sym_self] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4972), - [sym_private] = ACTIONS(4970), - [sym_protected] = ACTIONS(4970), - [anon_sym_alias] = ACTIONS(4970), - [anon_sym_begin] = ACTIONS(4970), - [anon_sym_while] = ACTIONS(4970), - [anon_sym_until] = ACTIONS(4970), - [anon_sym_require] = ACTIONS(4970), - [anon_sym_case] = ACTIONS(4970), - [anon_sym_select] = ACTIONS(4970), - [aux_sym_asm_token1] = ACTIONS(4972), - [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__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), - }, - [2064] = { - [sym_heredoc_body] = STATE(2064), - [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_COMMA] = ACTIONS(4916), - [anon_sym_DASH_GT] = ACTIONS(4916), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_annotation] = ACTIONS(4914), - [anon_sym_end] = ACTIONS(4914), - [anon_sym_AT_LBRACK] = ACTIONS(4916), - [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_lib] = ACTIONS(4914), - [anon_sym_fun] = ACTIONS(4914), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_BANG] = ACTIONS(4916), - [anon_sym_TILDE] = ACTIONS(4916), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4916), - [sym_identifier_method_call] = ACTIONS(4916), - [sym_instance_var] = ACTIONS(4916), - [sym_class_var] = ACTIONS(4916), - [sym_self] = ACTIONS(4914), - [anon_sym_QMARK] = ACTIONS(4916), - [sym_private] = ACTIONS(4914), - [sym_protected] = ACTIONS(4914), - [anon_sym_alias] = ACTIONS(4914), - [anon_sym_begin] = ACTIONS(4914), - [anon_sym_while] = ACTIONS(4914), - [anon_sym_until] = ACTIONS(4914), - [anon_sym_require] = ACTIONS(4914), - [anon_sym_case] = ACTIONS(4914), - [anon_sym_select] = ACTIONS(4914), - [aux_sym_asm_token1] = ACTIONS(4916), - [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__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), - }, - [2065] = { - [sym_heredoc_body] = STATE(2065), - [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_COMMA] = ACTIONS(4932), - [anon_sym_DASH_GT] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_annotation] = ACTIONS(4930), - [anon_sym_end] = ACTIONS(4930), - [anon_sym_AT_LBRACK] = ACTIONS(4932), - [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_lib] = ACTIONS(4930), - [anon_sym_fun] = ACTIONS(4930), - [anon_sym_STAR] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4932), - [anon_sym_BANG] = ACTIONS(4932), - [anon_sym_TILDE] = ACTIONS(4932), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4932), - [sym_identifier_method_call] = ACTIONS(4932), - [sym_instance_var] = ACTIONS(4932), - [sym_class_var] = ACTIONS(4932), - [sym_self] = ACTIONS(4930), - [anon_sym_QMARK] = ACTIONS(4932), - [sym_private] = ACTIONS(4930), - [sym_protected] = ACTIONS(4930), - [anon_sym_alias] = ACTIONS(4930), - [anon_sym_begin] = ACTIONS(4930), - [anon_sym_while] = ACTIONS(4930), - [anon_sym_until] = ACTIONS(4930), - [anon_sym_require] = ACTIONS(4930), - [anon_sym_case] = ACTIONS(4930), - [anon_sym_select] = ACTIONS(4930), - [aux_sym_asm_token1] = ACTIONS(4932), - [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__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__regular_unless_keyword] = ACTIONS(4902), + [sym__string_literal_start] = ACTIONS(4902), + [sym__string_percent_literal_start] = ACTIONS(4902), + [sym__command_percent_literal_start] = ACTIONS(4902), + [sym__string_array_percent_literal_start] = ACTIONS(4902), + [sym__symbol_array_percent_literal_start] = ACTIONS(4902), + [sym__regex_percent_literal_start] = ACTIONS(4902), + [sym_heredoc_start] = ACTIONS(4902), [sym__heredoc_body_start] = ACTIONS(7), }, - [2066] = { - [sym_heredoc_body] = STATE(2066), - [sym_identifier] = ACTIONS(5108), - [anon_sym_SEMI] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), + [2077] = { + [sym_heredoc_body] = STATE(2077), + [aux_sym_union_type_repeat1] = STATE(2082), + [sym_identifier] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5108), - [sym_true] = ACTIONS(5108), - [sym_false] = ACTIONS(5108), - [aux_sym_integer_token2] = ACTIONS(5108), - [aux_sym_float_token2] = ACTIONS(5110), - [anon_sym_SQUOTE] = ACTIONS(5110), - [sym_operator_symbol] = ACTIONS(5110), - [sym_unquoted_symbol] = ACTIONS(5110), - [anon_sym_COLON_DQUOTE] = ACTIONS(5110), - [anon_sym_BQUOTE] = ACTIONS(5110), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_DASH_GT] = ACTIONS(5110), - [anon_sym_annotation] = ACTIONS(5108), - [anon_sym_end] = ACTIONS(5108), - [anon_sym_AT_LBRACK] = ACTIONS(5110), - [anon_sym_module] = ACTIONS(5108), - [anon_sym_abstract] = ACTIONS(5108), - [anon_sym_class] = ACTIONS(5108), - [anon_sym_struct] = ACTIONS(5108), - [anon_sym_enum] = ACTIONS(5108), - [anon_sym_lib] = ACTIONS(5108), - [anon_sym_fun] = ACTIONS(5108), - [anon_sym_STAR] = ACTIONS(5110), - [anon_sym_BANG] = ACTIONS(5110), - [anon_sym_TILDE] = ACTIONS(5110), - [anon_sym_def] = ACTIONS(5108), - [anon_sym_include] = ACTIONS(5108), - [anon_sym_extend] = ACTIONS(5108), - [anon_sym_return] = ACTIONS(5108), - [anon_sym_next] = ACTIONS(5108), - [anon_sym_break] = ACTIONS(5108), - [anon_sym_with] = ACTIONS(5108), - [anon_sym_yield] = ACTIONS(5108), - [anon_sym_typeof] = ACTIONS(5108), - [anon_sym_sizeof] = ACTIONS(5108), - [anon_sym_instance_sizeof] = ACTIONS(5108), - [anon_sym_offsetof] = ACTIONS(5108), - [sym__constant_segment] = ACTIONS(5110), - [anon_sym_COLON_COLON] = ACTIONS(5110), - [anon_sym___LINE__] = ACTIONS(5108), - [anon_sym___END_LINE__] = ACTIONS(5108), - [anon_sym___FILE__] = ACTIONS(5108), - [anon_sym___DIR__] = ACTIONS(5108), - [sym_special_variable] = ACTIONS(5110), - [sym_global_match_data_index] = ACTIONS(5110), - [sym_identifier_method_call] = ACTIONS(5110), - [sym_instance_var] = ACTIONS(5110), - [sym_class_var] = ACTIONS(5110), - [sym_self] = ACTIONS(5108), - [sym_private] = ACTIONS(5108), - [sym_protected] = ACTIONS(5108), - [anon_sym_alias] = ACTIONS(5108), - [anon_sym_begin] = ACTIONS(5108), - [anon_sym_while] = ACTIONS(5108), - [anon_sym_until] = ACTIONS(5108), - [anon_sym_else] = ACTIONS(5108), - [anon_sym_require] = ACTIONS(5108), - [anon_sym_case] = ACTIONS(5108), - [anon_sym_select] = ACTIONS(5108), - [aux_sym_asm_token1] = ACTIONS(5110), - [sym__line_break] = ACTIONS(5110), + [sym_nil] = ACTIONS(4896), + [sym_true] = ACTIONS(4896), + [sym_false] = ACTIONS(4896), + [aux_sym_integer_token2] = ACTIONS(4896), + [aux_sym_float_token2] = ACTIONS(4898), + [anon_sym_SQUOTE] = ACTIONS(4898), + [sym_operator_symbol] = ACTIONS(4898), + [sym_unquoted_symbol] = ACTIONS(4898), + [anon_sym_COLON_DQUOTE] = ACTIONS(4898), + [anon_sym_BQUOTE] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_DASH_GT] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(4896), + [anon_sym_end] = ACTIONS(4896), + [anon_sym_AT_LBRACK] = ACTIONS(4898), + [anon_sym_module] = ACTIONS(4896), + [anon_sym_abstract] = ACTIONS(4896), + [anon_sym_class] = ACTIONS(4896), + [anon_sym_struct] = ACTIONS(4896), + [anon_sym_enum] = ACTIONS(4896), + [anon_sym_lib] = ACTIONS(4896), + [anon_sym_fun] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(4898), + [anon_sym_TILDE] = ACTIONS(4898), + [anon_sym_def] = ACTIONS(4896), + [anon_sym_include] = ACTIONS(4896), + [anon_sym_extend] = ACTIONS(4896), + [anon_sym_return] = ACTIONS(4896), + [anon_sym_next] = ACTIONS(4896), + [anon_sym_break] = ACTIONS(4896), + [anon_sym_with] = ACTIONS(4896), + [anon_sym_yield] = ACTIONS(4896), + [anon_sym_typeof] = ACTIONS(4896), + [anon_sym_sizeof] = ACTIONS(4896), + [anon_sym_instance_sizeof] = ACTIONS(4896), + [anon_sym_offsetof] = ACTIONS(4896), + [sym__constant_segment] = ACTIONS(4898), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym___LINE__] = ACTIONS(4896), + [anon_sym___END_LINE__] = ACTIONS(4896), + [anon_sym___FILE__] = ACTIONS(4896), + [anon_sym___DIR__] = ACTIONS(4896), + [sym_special_variable] = ACTIONS(4898), + [sym_global_match_data_index] = ACTIONS(4898), + [sym_identifier_method_call] = ACTIONS(4898), + [sym_instance_var] = ACTIONS(4898), + [sym_class_var] = ACTIONS(4898), + [sym_self] = ACTIONS(4896), + [anon_sym_QMARK] = ACTIONS(5095), + [sym_private] = ACTIONS(4896), + [sym_protected] = ACTIONS(4896), + [anon_sym_alias] = ACTIONS(4896), + [anon_sym_begin] = ACTIONS(4896), + [anon_sym_while] = ACTIONS(4896), + [anon_sym_until] = ACTIONS(4896), + [anon_sym_require] = ACTIONS(4896), + [anon_sym_case] = ACTIONS(4896), + [anon_sym_select] = ACTIONS(4896), + [aux_sym_asm_token1] = ACTIONS(4898), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5110), - [sym__start_of_named_tuple] = ACTIONS(5110), - [sym_unary_plus] = ACTIONS(5110), - [sym_unary_minus] = ACTIONS(5110), - [sym_unary_wrapping_plus] = ACTIONS(5110), - [sym_unary_wrapping_minus] = ACTIONS(5110), - [sym__beginless_range_operator] = ACTIONS(5110), - [sym__regex_start] = ACTIONS(5110), - [sym__regular_if_keyword] = ACTIONS(5110), - [sym__regular_unless_keyword] = ACTIONS(5110), - [sym__regular_rescue_keyword] = ACTIONS(5110), - [sym__regular_ensure_keyword] = ACTIONS(5110), - [sym__string_literal_start] = ACTIONS(5110), - [sym__string_percent_literal_start] = ACTIONS(5110), - [sym__command_percent_literal_start] = ACTIONS(5110), - [sym__string_array_percent_literal_start] = ACTIONS(5110), - [sym__symbol_array_percent_literal_start] = ACTIONS(5110), - [sym__regex_percent_literal_start] = ACTIONS(5110), - [sym_heredoc_start] = ACTIONS(5110), + [sym__start_of_hash_or_tuple] = ACTIONS(4898), + [sym__start_of_named_tuple] = ACTIONS(4898), + [sym_unary_plus] = ACTIONS(4898), + [sym_unary_minus] = ACTIONS(4898), + [sym_unary_wrapping_plus] = ACTIONS(4898), + [sym_unary_wrapping_minus] = ACTIONS(4898), + [sym__beginless_range_operator] = ACTIONS(4898), + [sym__regex_start] = ACTIONS(4898), + [sym__regular_if_keyword] = ACTIONS(4898), + [sym__regular_unless_keyword] = ACTIONS(4898), + [sym__string_literal_start] = ACTIONS(4898), + [sym__string_percent_literal_start] = ACTIONS(4898), + [sym__command_percent_literal_start] = ACTIONS(4898), + [sym__string_array_percent_literal_start] = ACTIONS(4898), + [sym__symbol_array_percent_literal_start] = ACTIONS(4898), + [sym__regex_percent_literal_start] = ACTIONS(4898), + [sym_heredoc_start] = ACTIONS(4898), [sym__heredoc_body_start] = ACTIONS(7), }, - [2067] = { - [sym_heredoc_body] = STATE(2067), - [sym_identifier] = ACTIONS(4958), - [anon_sym_SEMI] = ACTIONS(4960), - [anon_sym_LPAREN] = ACTIONS(4960), + [2078] = { + [sym_heredoc_body] = STATE(2078), + [aux_sym_union_type_repeat1] = STATE(2082), + [sym_identifier] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), [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_COMMA] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4960), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_annotation] = ACTIONS(4958), - [anon_sym_end] = ACTIONS(4958), - [anon_sym_AT_LBRACK] = ACTIONS(4960), - [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_lib] = ACTIONS(4958), - [anon_sym_fun] = ACTIONS(4958), - [anon_sym_STAR] = ACTIONS(4960), - [anon_sym_PIPE] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4960), - [anon_sym_TILDE] = ACTIONS(4960), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4960), - [sym_identifier_method_call] = ACTIONS(4960), - [sym_instance_var] = ACTIONS(4960), - [sym_class_var] = ACTIONS(4960), - [sym_self] = ACTIONS(4958), - [anon_sym_QMARK] = ACTIONS(4960), - [sym_private] = ACTIONS(4958), - [sym_protected] = ACTIONS(4958), - [anon_sym_alias] = ACTIONS(4958), - [anon_sym_begin] = ACTIONS(4958), - [anon_sym_while] = ACTIONS(4958), - [anon_sym_until] = ACTIONS(4958), - [anon_sym_require] = ACTIONS(4958), - [anon_sym_case] = ACTIONS(4958), - [anon_sym_select] = ACTIONS(4958), - [aux_sym_asm_token1] = ACTIONS(4960), + [sym_nil] = ACTIONS(4892), + [sym_true] = ACTIONS(4892), + [sym_false] = ACTIONS(4892), + [aux_sym_integer_token2] = ACTIONS(4892), + [aux_sym_float_token2] = ACTIONS(4894), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym_operator_symbol] = ACTIONS(4894), + [sym_unquoted_symbol] = ACTIONS(4894), + [anon_sym_COLON_DQUOTE] = ACTIONS(4894), + [anon_sym_BQUOTE] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_DASH_GT] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_end] = ACTIONS(4892), + [anon_sym_AT_LBRACK] = ACTIONS(4894), + [anon_sym_module] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_class] = ACTIONS(4892), + [anon_sym_struct] = ACTIONS(4892), + [anon_sym_enum] = ACTIONS(4892), + [anon_sym_lib] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(4894), + [anon_sym_TILDE] = ACTIONS(4894), + [anon_sym_def] = ACTIONS(4892), + [anon_sym_include] = ACTIONS(4892), + [anon_sym_extend] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_next] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_with] = ACTIONS(4892), + [anon_sym_yield] = ACTIONS(4892), + [anon_sym_typeof] = ACTIONS(4892), + [anon_sym_sizeof] = ACTIONS(4892), + [anon_sym_instance_sizeof] = ACTIONS(4892), + [anon_sym_offsetof] = ACTIONS(4892), + [sym__constant_segment] = ACTIONS(4894), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym___LINE__] = ACTIONS(4892), + [anon_sym___END_LINE__] = ACTIONS(4892), + [anon_sym___FILE__] = ACTIONS(4892), + [anon_sym___DIR__] = ACTIONS(4892), + [sym_special_variable] = ACTIONS(4894), + [sym_global_match_data_index] = ACTIONS(4894), + [sym_identifier_method_call] = ACTIONS(4894), + [sym_instance_var] = ACTIONS(4894), + [sym_class_var] = ACTIONS(4894), + [sym_self] = ACTIONS(4892), + [anon_sym_QMARK] = ACTIONS(5095), + [sym_private] = ACTIONS(4892), + [sym_protected] = ACTIONS(4892), + [anon_sym_alias] = ACTIONS(4892), + [anon_sym_begin] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_until] = ACTIONS(4892), + [anon_sym_require] = ACTIONS(4892), + [anon_sym_case] = ACTIONS(4892), + [anon_sym_select] = ACTIONS(4892), + [aux_sym_asm_token1] = ACTIONS(4894), [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__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__start_of_hash_or_tuple] = ACTIONS(4894), + [sym__start_of_named_tuple] = ACTIONS(4894), + [sym_unary_plus] = ACTIONS(4894), + [sym_unary_minus] = ACTIONS(4894), + [sym_unary_wrapping_plus] = ACTIONS(4894), + [sym_unary_wrapping_minus] = ACTIONS(4894), + [sym__beginless_range_operator] = ACTIONS(4894), + [sym__regex_start] = ACTIONS(4894), + [sym__regular_if_keyword] = ACTIONS(4894), + [sym__regular_unless_keyword] = ACTIONS(4894), + [sym__string_literal_start] = ACTIONS(4894), + [sym__string_percent_literal_start] = ACTIONS(4894), + [sym__command_percent_literal_start] = ACTIONS(4894), + [sym__string_array_percent_literal_start] = ACTIONS(4894), + [sym__symbol_array_percent_literal_start] = ACTIONS(4894), + [sym__regex_percent_literal_start] = ACTIONS(4894), + [sym_heredoc_start] = ACTIONS(4894), [sym__heredoc_body_start] = ACTIONS(7), }, - [2068] = { - [sym_heredoc_body] = STATE(2068), - [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_COMMA] = ACTIONS(4976), - [anon_sym_DASH_GT] = ACTIONS(4976), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_annotation] = ACTIONS(4974), - [anon_sym_end] = ACTIONS(4974), - [anon_sym_AT_LBRACK] = ACTIONS(4976), - [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_lib] = ACTIONS(4974), - [anon_sym_fun] = ACTIONS(4974), - [anon_sym_STAR] = ACTIONS(4976), - [anon_sym_PIPE] = ACTIONS(4976), - [anon_sym_BANG] = ACTIONS(4976), - [anon_sym_TILDE] = ACTIONS(4976), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4976), - [sym_identifier_method_call] = ACTIONS(4976), - [sym_instance_var] = ACTIONS(4976), - [sym_class_var] = ACTIONS(4976), - [sym_self] = ACTIONS(4974), - [anon_sym_QMARK] = ACTIONS(4976), - [sym_private] = ACTIONS(4974), - [sym_protected] = ACTIONS(4974), - [anon_sym_alias] = ACTIONS(4974), - [anon_sym_begin] = ACTIONS(4974), - [anon_sym_while] = ACTIONS(4974), - [anon_sym_until] = ACTIONS(4974), - [anon_sym_require] = ACTIONS(4974), - [anon_sym_case] = ACTIONS(4974), - [anon_sym_select] = ACTIONS(4974), - [aux_sym_asm_token1] = ACTIONS(4976), - [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__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), + [2079] = { + [sym_heredoc_body] = STATE(2079), + [aux_sym_union_type_repeat1] = STATE(2082), + [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(5087), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_DASH_GT] = ACTIONS(4879), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(4877), + [anon_sym_end] = ACTIONS(4877), + [anon_sym_AT_LBRACK] = ACTIONS(4879), + [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_lib] = ACTIONS(4877), + [anon_sym_fun] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_TILDE] = ACTIONS(4879), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4879), + [sym_identifier_method_call] = ACTIONS(4879), + [sym_instance_var] = ACTIONS(4879), + [sym_class_var] = ACTIONS(4879), + [sym_self] = ACTIONS(4877), + [anon_sym_QMARK] = ACTIONS(5095), + [sym_private] = ACTIONS(4877), + [sym_protected] = ACTIONS(4877), + [anon_sym_alias] = ACTIONS(4877), + [anon_sym_begin] = ACTIONS(4877), + [anon_sym_while] = ACTIONS(4877), + [anon_sym_until] = ACTIONS(4877), + [anon_sym_require] = ACTIONS(4877), + [anon_sym_case] = ACTIONS(4877), + [anon_sym_select] = ACTIONS(4877), + [aux_sym_asm_token1] = ACTIONS(4879), + [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__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__heredoc_body_start] = ACTIONS(7), }, - [2069] = { - [sym_heredoc_body] = STATE(2069), - [sym_identifier] = ACTIONS(4910), - [anon_sym_SEMI] = ACTIONS(4912), - [anon_sym_LPAREN] = ACTIONS(4912), + [2080] = { + [sym_heredoc_body] = STATE(2080), + [aux_sym_union_type_repeat1] = STATE(2080), + [sym_identifier] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), [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_COMMA] = ACTIONS(4912), - [anon_sym_DASH_GT] = ACTIONS(4912), - [anon_sym_DOT] = ACTIONS(4912), - [anon_sym_annotation] = ACTIONS(4910), - [anon_sym_end] = ACTIONS(4910), - [anon_sym_AT_LBRACK] = ACTIONS(4912), - [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_lib] = ACTIONS(4910), - [anon_sym_fun] = ACTIONS(4910), - [anon_sym_STAR] = ACTIONS(4912), - [anon_sym_PIPE] = ACTIONS(4912), - [anon_sym_BANG] = ACTIONS(4912), - [anon_sym_TILDE] = ACTIONS(4912), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4912), - [sym_identifier_method_call] = ACTIONS(4912), - [sym_instance_var] = ACTIONS(4912), - [sym_class_var] = ACTIONS(4912), - [sym_self] = ACTIONS(4910), - [anon_sym_QMARK] = ACTIONS(4912), - [sym_private] = ACTIONS(4910), - [sym_protected] = ACTIONS(4910), - [anon_sym_alias] = ACTIONS(4910), - [anon_sym_begin] = ACTIONS(4910), - [anon_sym_while] = ACTIONS(4910), - [anon_sym_until] = ACTIONS(4910), - [anon_sym_require] = ACTIONS(4910), - [anon_sym_case] = ACTIONS(4910), - [anon_sym_select] = ACTIONS(4910), - [aux_sym_asm_token1] = ACTIONS(4912), + [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_COMMA] = ACTIONS(4875), + [anon_sym_DASH_GT] = ACTIONS(4875), + [anon_sym_DOT] = ACTIONS(4875), + [anon_sym_annotation] = ACTIONS(4873), + [anon_sym_end] = ACTIONS(4873), + [anon_sym_AT_LBRACK] = ACTIONS(4875), + [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_lib] = ACTIONS(4873), + [anon_sym_fun] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4875), + [anon_sym_PIPE] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(4875), + [anon_sym_TILDE] = ACTIONS(4875), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4875), + [sym_identifier_method_call] = ACTIONS(4875), + [sym_instance_var] = ACTIONS(4875), + [sym_class_var] = ACTIONS(4875), + [sym_self] = ACTIONS(4873), + [anon_sym_QMARK] = ACTIONS(4875), + [sym_private] = ACTIONS(4873), + [sym_protected] = ACTIONS(4873), + [anon_sym_alias] = ACTIONS(4873), + [anon_sym_begin] = ACTIONS(4873), + [anon_sym_while] = ACTIONS(4873), + [anon_sym_until] = ACTIONS(4873), + [anon_sym_require] = ACTIONS(4873), + [anon_sym_case] = ACTIONS(4873), + [anon_sym_select] = ACTIONS(4873), + [aux_sym_asm_token1] = ACTIONS(4875), [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__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__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__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__heredoc_body_start] = ACTIONS(7), }, - [2070] = { - [sym_heredoc_body] = STATE(2070), - [sym_identifier] = ACTIONS(4962), - [anon_sym_SEMI] = ACTIONS(4964), - [anon_sym_LPAREN] = ACTIONS(4964), + [2081] = { + [sym_heredoc_body] = STATE(2081), + [sym_identifier] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5020), + [sym_true] = ACTIONS(5020), + [sym_false] = ACTIONS(5020), + [aux_sym_integer_token2] = ACTIONS(5020), + [aux_sym_float_token2] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [sym_operator_symbol] = ACTIONS(5022), + [sym_unquoted_symbol] = ACTIONS(5022), + [anon_sym_COLON_DQUOTE] = ACTIONS(5022), + [anon_sym_BQUOTE] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_DASH_GT] = ACTIONS(5022), + [anon_sym_annotation] = ACTIONS(5020), + [anon_sym_end] = ACTIONS(5020), + [anon_sym_AT_LBRACK] = ACTIONS(5022), + [anon_sym_module] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_class] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_enum] = ACTIONS(5020), + [anon_sym_lib] = ACTIONS(5020), + [anon_sym_fun] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_def] = ACTIONS(5020), + [anon_sym_include] = ACTIONS(5020), + [anon_sym_extend] = ACTIONS(5020), + [anon_sym_forall] = ACTIONS(5020), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_next] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_with] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_typeof] = ACTIONS(5020), + [anon_sym_sizeof] = ACTIONS(5020), + [anon_sym_instance_sizeof] = ACTIONS(5020), + [anon_sym_offsetof] = ACTIONS(5020), + [sym__constant_segment] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym___LINE__] = ACTIONS(5020), + [anon_sym___END_LINE__] = ACTIONS(5020), + [anon_sym___FILE__] = ACTIONS(5020), + [anon_sym___DIR__] = ACTIONS(5020), + [sym_special_variable] = ACTIONS(5022), + [sym_global_match_data_index] = ACTIONS(5022), + [sym_identifier_method_call] = ACTIONS(5022), + [sym_instance_var] = ACTIONS(5022), + [sym_class_var] = ACTIONS(5022), + [sym_self] = ACTIONS(5020), + [sym_private] = ACTIONS(5020), + [sym_protected] = ACTIONS(5020), + [anon_sym_alias] = ACTIONS(5020), + [anon_sym_begin] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_until] = ACTIONS(5020), + [anon_sym_else] = ACTIONS(5020), + [anon_sym_require] = ACTIONS(5020), + [anon_sym_case] = ACTIONS(5020), + [anon_sym_select] = ACTIONS(5020), + [aux_sym_asm_token1] = ACTIONS(5022), + [sym__line_break] = ACTIONS(5022), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5022), + [sym__start_of_named_tuple] = ACTIONS(5022), + [sym_unary_plus] = ACTIONS(5022), + [sym_unary_minus] = ACTIONS(5022), + [sym_unary_wrapping_plus] = ACTIONS(5022), + [sym_unary_wrapping_minus] = ACTIONS(5022), + [sym__beginless_range_operator] = ACTIONS(5022), + [sym__regex_start] = ACTIONS(5022), + [sym__regular_if_keyword] = ACTIONS(5022), + [sym__regular_unless_keyword] = ACTIONS(5022), + [sym__regular_rescue_keyword] = ACTIONS(5022), + [sym__regular_ensure_keyword] = ACTIONS(5022), + [sym__string_literal_start] = ACTIONS(5022), + [sym__string_percent_literal_start] = ACTIONS(5022), + [sym__command_percent_literal_start] = ACTIONS(5022), + [sym__string_array_percent_literal_start] = ACTIONS(5022), + [sym__symbol_array_percent_literal_start] = ACTIONS(5022), + [sym__regex_percent_literal_start] = ACTIONS(5022), + [sym_heredoc_start] = ACTIONS(5022), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2082] = { + [sym_heredoc_body] = STATE(2082), + [aux_sym_union_type_repeat1] = STATE(2080), + [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_COMMA] = ACTIONS(4883), + [anon_sym_DASH_GT] = ACTIONS(4883), + [anon_sym_DOT] = ACTIONS(4883), + [anon_sym_annotation] = ACTIONS(4881), + [anon_sym_end] = ACTIONS(4881), + [anon_sym_AT_LBRACK] = ACTIONS(4883), + [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_lib] = ACTIONS(4881), + [anon_sym_fun] = ACTIONS(4881), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(4883), + [anon_sym_TILDE] = ACTIONS(4883), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4883), + [sym_identifier_method_call] = ACTIONS(4883), + [sym_instance_var] = ACTIONS(4883), + [sym_class_var] = ACTIONS(4883), + [sym_self] = ACTIONS(4881), + [anon_sym_QMARK] = ACTIONS(4883), + [sym_private] = ACTIONS(4881), + [sym_protected] = ACTIONS(4881), + [anon_sym_alias] = ACTIONS(4881), + [anon_sym_begin] = ACTIONS(4881), + [anon_sym_while] = ACTIONS(4881), + [anon_sym_until] = ACTIONS(4881), + [anon_sym_require] = ACTIONS(4881), + [anon_sym_case] = ACTIONS(4881), + [anon_sym_select] = ACTIONS(4881), + [aux_sym_asm_token1] = ACTIONS(4883), + [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__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__heredoc_body_start] = ACTIONS(7), + }, + [2083] = { + [sym_heredoc_body] = STATE(2083), + [sym_identifier] = ACTIONS(5100), + [anon_sym_SEMI] = ACTIONS(5102), + [anon_sym_LPAREN] = ACTIONS(5102), [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_COMMA] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4964), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_annotation] = ACTIONS(4962), - [anon_sym_end] = ACTIONS(4962), - [anon_sym_AT_LBRACK] = ACTIONS(4964), - [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_lib] = ACTIONS(4962), - [anon_sym_fun] = ACTIONS(4962), - [anon_sym_STAR] = ACTIONS(4964), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_BANG] = ACTIONS(4964), - [anon_sym_TILDE] = ACTIONS(4964), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4964), - [sym_identifier_method_call] = ACTIONS(4964), - [sym_instance_var] = ACTIONS(4964), - [sym_class_var] = ACTIONS(4964), - [sym_self] = ACTIONS(4962), - [anon_sym_QMARK] = ACTIONS(4964), - [sym_private] = ACTIONS(4962), - [sym_protected] = ACTIONS(4962), - [anon_sym_alias] = ACTIONS(4962), - [anon_sym_begin] = ACTIONS(4962), - [anon_sym_while] = ACTIONS(4962), - [anon_sym_until] = ACTIONS(4962), - [anon_sym_require] = ACTIONS(4962), - [anon_sym_case] = ACTIONS(4962), - [anon_sym_select] = ACTIONS(4962), - [aux_sym_asm_token1] = ACTIONS(4964), + [sym_nil] = ACTIONS(5100), + [sym_true] = ACTIONS(5100), + [sym_false] = ACTIONS(5100), + [aux_sym_integer_token2] = ACTIONS(5100), + [aux_sym_float_token2] = ACTIONS(5102), + [anon_sym_SQUOTE] = ACTIONS(5102), + [sym_operator_symbol] = ACTIONS(5102), + [sym_unquoted_symbol] = ACTIONS(5102), + [anon_sym_COLON_DQUOTE] = ACTIONS(5102), + [anon_sym_BQUOTE] = ACTIONS(5102), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5102), + [anon_sym_annotation] = ACTIONS(5100), + [anon_sym_end] = ACTIONS(5100), + [anon_sym_AT_LBRACK] = ACTIONS(5102), + [anon_sym_module] = ACTIONS(5100), + [anon_sym_abstract] = ACTIONS(5100), + [anon_sym_class] = ACTIONS(5100), + [anon_sym_struct] = ACTIONS(5100), + [anon_sym_enum] = ACTIONS(5100), + [anon_sym_lib] = ACTIONS(5100), + [anon_sym_fun] = ACTIONS(5100), + [anon_sym_STAR] = ACTIONS(5102), + [anon_sym_BANG] = ACTIONS(5102), + [anon_sym_TILDE] = ACTIONS(5102), + [anon_sym_def] = ACTIONS(5100), + [anon_sym_include] = ACTIONS(5100), + [anon_sym_extend] = ACTIONS(5100), + [anon_sym_return] = ACTIONS(5100), + [anon_sym_next] = ACTIONS(5100), + [anon_sym_break] = ACTIONS(5100), + [anon_sym_with] = ACTIONS(5100), + [anon_sym_yield] = ACTIONS(5100), + [anon_sym_typeof] = ACTIONS(5100), + [anon_sym_sizeof] = ACTIONS(5100), + [anon_sym_instance_sizeof] = ACTIONS(5100), + [anon_sym_offsetof] = ACTIONS(5100), + [sym__constant_segment] = ACTIONS(5102), + [anon_sym_COLON_COLON] = ACTIONS(5102), + [anon_sym___LINE__] = ACTIONS(5100), + [anon_sym___END_LINE__] = ACTIONS(5100), + [anon_sym___FILE__] = ACTIONS(5100), + [anon_sym___DIR__] = ACTIONS(5100), + [sym_special_variable] = ACTIONS(5102), + [sym_global_match_data_index] = ACTIONS(5102), + [sym_identifier_method_call] = ACTIONS(5102), + [sym_instance_var] = ACTIONS(5102), + [sym_class_var] = ACTIONS(5102), + [sym_self] = ACTIONS(5100), + [sym_private] = ACTIONS(5100), + [sym_protected] = ACTIONS(5100), + [anon_sym_alias] = ACTIONS(5100), + [anon_sym_begin] = ACTIONS(5100), + [anon_sym_while] = ACTIONS(5100), + [anon_sym_until] = ACTIONS(5100), + [anon_sym_else] = ACTIONS(5100), + [anon_sym_require] = ACTIONS(5100), + [anon_sym_case] = ACTIONS(5100), + [anon_sym_select] = ACTIONS(5100), + [aux_sym_asm_token1] = ACTIONS(5102), + [sym__line_break] = ACTIONS(5102), [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__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__start_of_hash_or_tuple] = ACTIONS(5102), + [sym__start_of_named_tuple] = ACTIONS(5102), + [sym_unary_plus] = ACTIONS(5102), + [sym_unary_minus] = ACTIONS(5102), + [sym_unary_wrapping_plus] = ACTIONS(5102), + [sym_unary_wrapping_minus] = ACTIONS(5102), + [sym__beginless_range_operator] = ACTIONS(5102), + [sym__regex_start] = ACTIONS(5102), + [sym__regular_if_keyword] = ACTIONS(5102), + [sym__regular_unless_keyword] = ACTIONS(5102), + [sym__regular_rescue_keyword] = ACTIONS(5102), + [sym__regular_ensure_keyword] = ACTIONS(5102), + [sym__string_literal_start] = ACTIONS(5102), + [sym__string_percent_literal_start] = ACTIONS(5102), + [sym__command_percent_literal_start] = ACTIONS(5102), + [sym__string_array_percent_literal_start] = ACTIONS(5102), + [sym__symbol_array_percent_literal_start] = ACTIONS(5102), + [sym__regex_percent_literal_start] = ACTIONS(5102), + [sym_heredoc_start] = ACTIONS(5102), [sym__heredoc_body_start] = ACTIONS(7), }, - [2071] = { - [sym_heredoc_body] = STATE(2071), - [aux_sym_union_type_repeat1] = STATE(2059), + [2084] = { + [sym_heredoc_body] = STATE(2084), [sym_identifier] = ACTIONS(4934), [anon_sym_SEMI] = ACTIONS(4936), [anon_sym_LPAREN] = ACTIONS(4936), @@ -340286,9 +342640,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4936), [anon_sym_COLON_DQUOTE] = ACTIONS(4936), [anon_sym_BQUOTE] = ACTIONS(4936), - [anon_sym_LBRACK] = ACTIONS(5086), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_COMMA] = ACTIONS(4936), [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_DOT] = ACTIONS(5088), + [anon_sym_DOT] = ACTIONS(4936), [anon_sym_annotation] = ACTIONS(4934), [anon_sym_end] = ACTIONS(4934), [anon_sym_AT_LBRACK] = ACTIONS(4936), @@ -340299,8 +342654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(4934), [anon_sym_lib] = ACTIONS(4934), [anon_sym_fun] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_PIPE] = ACTIONS(4936), [anon_sym_BANG] = ACTIONS(4936), [anon_sym_TILDE] = ACTIONS(4936), [anon_sym_def] = ACTIONS(4934), @@ -340327,7 +342682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4936), [sym_class_var] = ACTIONS(4936), [sym_self] = ACTIONS(4934), - [anon_sym_QMARK] = ACTIONS(5094), + [anon_sym_QMARK] = ACTIONS(4936), [sym_private] = ACTIONS(4934), [sym_protected] = ACTIONS(4934), [anon_sym_alias] = ACTIONS(4934), @@ -340358,186 +342713,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4936), [sym__heredoc_body_start] = ACTIONS(7), }, - [2072] = { - [sym_heredoc_body] = STATE(2072), - [sym_identifier] = ACTIONS(4922), - [anon_sym_SEMI] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4924), + [2085] = { + [sym_heredoc_body] = STATE(2085), + [sym_identifier] = ACTIONS(5104), + [anon_sym_SEMI] = ACTIONS(5106), + [anon_sym_LPAREN] = ACTIONS(5106), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5104), + [sym_true] = ACTIONS(5104), + [sym_false] = ACTIONS(5104), + [aux_sym_integer_token2] = ACTIONS(5104), + [aux_sym_float_token2] = ACTIONS(5106), + [anon_sym_SQUOTE] = ACTIONS(5106), + [sym_operator_symbol] = ACTIONS(5106), + [sym_unquoted_symbol] = ACTIONS(5106), + [anon_sym_COLON_DQUOTE] = ACTIONS(5106), + [anon_sym_BQUOTE] = ACTIONS(5106), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_DASH_GT] = ACTIONS(5106), + [anon_sym_annotation] = ACTIONS(5104), + [anon_sym_end] = ACTIONS(5104), + [anon_sym_AT_LBRACK] = ACTIONS(5106), + [anon_sym_module] = ACTIONS(5104), + [anon_sym_abstract] = ACTIONS(5104), + [anon_sym_class] = ACTIONS(5104), + [anon_sym_struct] = ACTIONS(5104), + [anon_sym_enum] = ACTIONS(5104), + [anon_sym_lib] = ACTIONS(5104), + [anon_sym_fun] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5106), + [anon_sym_BANG] = ACTIONS(5106), + [anon_sym_TILDE] = ACTIONS(5106), + [anon_sym_def] = ACTIONS(5104), + [anon_sym_include] = ACTIONS(5104), + [anon_sym_extend] = ACTIONS(5104), + [anon_sym_return] = ACTIONS(5104), + [anon_sym_next] = ACTIONS(5104), + [anon_sym_break] = ACTIONS(5104), + [anon_sym_with] = ACTIONS(5104), + [anon_sym_yield] = ACTIONS(5104), + [anon_sym_typeof] = ACTIONS(5104), + [anon_sym_sizeof] = ACTIONS(5104), + [anon_sym_instance_sizeof] = ACTIONS(5104), + [anon_sym_offsetof] = ACTIONS(5104), + [sym__constant_segment] = ACTIONS(5106), + [anon_sym_COLON_COLON] = ACTIONS(5106), + [anon_sym___LINE__] = ACTIONS(5104), + [anon_sym___END_LINE__] = ACTIONS(5104), + [anon_sym___FILE__] = ACTIONS(5104), + [anon_sym___DIR__] = ACTIONS(5104), + [sym_special_variable] = ACTIONS(5106), + [sym_global_match_data_index] = ACTIONS(5106), + [sym_identifier_method_call] = ACTIONS(5106), + [sym_instance_var] = ACTIONS(5106), + [sym_class_var] = ACTIONS(5106), + [sym_self] = ACTIONS(5104), + [sym_private] = ACTIONS(5104), + [sym_protected] = ACTIONS(5104), + [anon_sym_alias] = ACTIONS(5104), + [anon_sym_begin] = ACTIONS(5104), + [anon_sym_while] = ACTIONS(5104), + [anon_sym_until] = ACTIONS(5104), + [anon_sym_else] = ACTIONS(5104), + [anon_sym_require] = ACTIONS(5104), + [anon_sym_case] = ACTIONS(5104), + [anon_sym_select] = ACTIONS(5104), + [aux_sym_asm_token1] = ACTIONS(5106), + [sym__line_break] = ACTIONS(5106), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5106), + [sym__start_of_named_tuple] = ACTIONS(5106), + [sym_unary_plus] = ACTIONS(5106), + [sym_unary_minus] = ACTIONS(5106), + [sym_unary_wrapping_plus] = ACTIONS(5106), + [sym_unary_wrapping_minus] = ACTIONS(5106), + [sym__beginless_range_operator] = ACTIONS(5106), + [sym__regex_start] = ACTIONS(5106), + [sym__regular_if_keyword] = ACTIONS(5106), + [sym__regular_unless_keyword] = ACTIONS(5106), + [sym__regular_rescue_keyword] = ACTIONS(5106), + [sym__regular_ensure_keyword] = ACTIONS(5106), + [sym__string_literal_start] = ACTIONS(5106), + [sym__string_percent_literal_start] = ACTIONS(5106), + [sym__command_percent_literal_start] = ACTIONS(5106), + [sym__string_array_percent_literal_start] = ACTIONS(5106), + [sym__symbol_array_percent_literal_start] = ACTIONS(5106), + [sym__regex_percent_literal_start] = ACTIONS(5106), + [sym_heredoc_start] = ACTIONS(5106), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2086] = { + [sym_heredoc_body] = STATE(2086), + [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_COMMA] = ACTIONS(4948), + [anon_sym_DASH_GT] = ACTIONS(4948), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_annotation] = ACTIONS(4946), + [anon_sym_end] = ACTIONS(4946), + [anon_sym_AT_LBRACK] = ACTIONS(4948), + [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_lib] = ACTIONS(4946), + [anon_sym_fun] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_PIPE] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4948), + [sym_identifier_method_call] = ACTIONS(4948), + [sym_instance_var] = ACTIONS(4948), + [sym_class_var] = ACTIONS(4948), + [sym_self] = ACTIONS(4946), + [anon_sym_QMARK] = ACTIONS(4948), + [sym_private] = ACTIONS(4946), + [sym_protected] = ACTIONS(4946), + [anon_sym_alias] = ACTIONS(4946), + [anon_sym_begin] = ACTIONS(4946), + [anon_sym_while] = ACTIONS(4946), + [anon_sym_until] = ACTIONS(4946), + [anon_sym_require] = ACTIONS(4946), + [anon_sym_case] = ACTIONS(4946), + [anon_sym_select] = ACTIONS(4946), + [aux_sym_asm_token1] = ACTIONS(4948), + [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__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), + }, + [2087] = { + [sym_heredoc_body] = STATE(2087), + [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_COMMA] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_annotation] = ACTIONS(4950), + [anon_sym_end] = ACTIONS(4950), + [anon_sym_AT_LBRACK] = ACTIONS(4952), + [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_lib] = ACTIONS(4950), + [anon_sym_fun] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_PIPE] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4952), + [sym_identifier_method_call] = ACTIONS(4952), + [sym_instance_var] = ACTIONS(4952), + [sym_class_var] = ACTIONS(4952), + [sym_self] = ACTIONS(4950), + [anon_sym_QMARK] = ACTIONS(4952), + [sym_private] = ACTIONS(4950), + [sym_protected] = ACTIONS(4950), + [anon_sym_alias] = ACTIONS(4950), + [anon_sym_begin] = ACTIONS(4950), + [anon_sym_while] = ACTIONS(4950), + [anon_sym_until] = ACTIONS(4950), + [anon_sym_require] = ACTIONS(4950), + [anon_sym_case] = ACTIONS(4950), + [anon_sym_select] = ACTIONS(4950), + [aux_sym_asm_token1] = ACTIONS(4952), + [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__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), + }, + [2088] = { + [sym_heredoc_body] = STATE(2088), + [sym_identifier] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), [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_COMMA] = ACTIONS(4924), - [anon_sym_DASH_GT] = ACTIONS(4924), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4922), - [anon_sym_end] = ACTIONS(4922), - [anon_sym_AT_LBRACK] = ACTIONS(4924), - [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_lib] = ACTIONS(4922), - [anon_sym_fun] = ACTIONS(4922), - [anon_sym_STAR] = ACTIONS(4924), - [anon_sym_PIPE] = ACTIONS(4924), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_TILDE] = ACTIONS(4924), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4924), - [sym_identifier_method_call] = ACTIONS(4924), - [sym_instance_var] = ACTIONS(4924), - [sym_class_var] = ACTIONS(4924), - [sym_self] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4924), - [sym_private] = ACTIONS(4922), - [sym_protected] = ACTIONS(4922), - [anon_sym_alias] = ACTIONS(4922), - [anon_sym_begin] = ACTIONS(4922), - [anon_sym_while] = ACTIONS(4922), - [anon_sym_until] = ACTIONS(4922), - [anon_sym_require] = ACTIONS(4922), - [anon_sym_case] = ACTIONS(4922), - [anon_sym_select] = ACTIONS(4922), - [aux_sym_asm_token1] = ACTIONS(4924), + [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_COMMA] = ACTIONS(4912), + [anon_sym_DASH_GT] = ACTIONS(4912), + [anon_sym_DOT] = ACTIONS(4912), + [anon_sym_annotation] = ACTIONS(4910), + [anon_sym_end] = ACTIONS(4910), + [anon_sym_AT_LBRACK] = ACTIONS(4912), + [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_lib] = ACTIONS(4910), + [anon_sym_fun] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_PIPE] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4912), + [sym_identifier_method_call] = ACTIONS(4912), + [sym_instance_var] = ACTIONS(4912), + [sym_class_var] = ACTIONS(4912), + [sym_self] = ACTIONS(4910), + [anon_sym_QMARK] = ACTIONS(4912), + [sym_private] = ACTIONS(4910), + [sym_protected] = ACTIONS(4910), + [anon_sym_alias] = ACTIONS(4910), + [anon_sym_begin] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_until] = ACTIONS(4910), + [anon_sym_require] = ACTIONS(4910), + [anon_sym_case] = ACTIONS(4910), + [anon_sym_select] = ACTIONS(4910), + [aux_sym_asm_token1] = ACTIONS(4912), [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__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__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__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), }, - [2073] = { - [sym_heredoc_body] = STATE(2073), - [sym_identifier] = ACTIONS(4954), - [anon_sym_SEMI] = ACTIONS(4956), - [anon_sym_LPAREN] = ACTIONS(4956), + [2089] = { + [sym_heredoc_body] = STATE(2089), + [sym_identifier] = ACTIONS(5108), + [anon_sym_SEMI] = ACTIONS(5110), + [anon_sym_LPAREN] = ACTIONS(5110), [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_COMMA] = ACTIONS(4956), - [anon_sym_DASH_GT] = ACTIONS(4956), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_annotation] = ACTIONS(4954), - [anon_sym_end] = ACTIONS(4954), - [anon_sym_AT_LBRACK] = ACTIONS(4956), - [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_lib] = ACTIONS(4954), - [anon_sym_fun] = ACTIONS(4954), - [anon_sym_STAR] = ACTIONS(4956), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4956), - [anon_sym_TILDE] = ACTIONS(4956), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4956), - [sym_identifier_method_call] = ACTIONS(4956), - [sym_instance_var] = ACTIONS(4956), - [sym_class_var] = ACTIONS(4956), - [sym_self] = ACTIONS(4954), - [anon_sym_QMARK] = ACTIONS(4956), - [sym_private] = ACTIONS(4954), - [sym_protected] = ACTIONS(4954), - [anon_sym_alias] = ACTIONS(4954), - [anon_sym_begin] = ACTIONS(4954), - [anon_sym_while] = ACTIONS(4954), - [anon_sym_until] = ACTIONS(4954), - [anon_sym_require] = ACTIONS(4954), - [anon_sym_case] = ACTIONS(4954), - [anon_sym_select] = ACTIONS(4954), - [aux_sym_asm_token1] = ACTIONS(4956), + [sym_nil] = ACTIONS(5108), + [sym_true] = ACTIONS(5108), + [sym_false] = ACTIONS(5108), + [aux_sym_integer_token2] = ACTIONS(5108), + [aux_sym_float_token2] = ACTIONS(5110), + [anon_sym_SQUOTE] = ACTIONS(5110), + [sym_operator_symbol] = ACTIONS(5110), + [sym_unquoted_symbol] = ACTIONS(5110), + [anon_sym_COLON_DQUOTE] = ACTIONS(5110), + [anon_sym_BQUOTE] = ACTIONS(5110), + [anon_sym_LBRACK] = ACTIONS(5110), + [anon_sym_DASH_GT] = ACTIONS(5110), + [anon_sym_annotation] = ACTIONS(5108), + [anon_sym_end] = ACTIONS(5108), + [anon_sym_AT_LBRACK] = ACTIONS(5110), + [anon_sym_module] = ACTIONS(5108), + [anon_sym_abstract] = ACTIONS(5108), + [anon_sym_class] = ACTIONS(5108), + [anon_sym_struct] = ACTIONS(5108), + [anon_sym_enum] = ACTIONS(5108), + [anon_sym_lib] = ACTIONS(5108), + [anon_sym_fun] = ACTIONS(5108), + [anon_sym_STAR] = ACTIONS(5110), + [anon_sym_BANG] = ACTIONS(5110), + [anon_sym_TILDE] = ACTIONS(5110), + [anon_sym_def] = ACTIONS(5108), + [anon_sym_include] = ACTIONS(5108), + [anon_sym_extend] = ACTIONS(5108), + [anon_sym_return] = ACTIONS(5108), + [anon_sym_next] = ACTIONS(5108), + [anon_sym_break] = ACTIONS(5108), + [anon_sym_with] = ACTIONS(5108), + [anon_sym_yield] = ACTIONS(5108), + [anon_sym_typeof] = ACTIONS(5108), + [anon_sym_sizeof] = ACTIONS(5108), + [anon_sym_instance_sizeof] = ACTIONS(5108), + [anon_sym_offsetof] = ACTIONS(5108), + [sym__constant_segment] = ACTIONS(5110), + [anon_sym_COLON_COLON] = ACTIONS(5110), + [anon_sym___LINE__] = ACTIONS(5108), + [anon_sym___END_LINE__] = ACTIONS(5108), + [anon_sym___FILE__] = ACTIONS(5108), + [anon_sym___DIR__] = ACTIONS(5108), + [sym_special_variable] = ACTIONS(5110), + [sym_global_match_data_index] = ACTIONS(5110), + [sym_identifier_method_call] = ACTIONS(5110), + [sym_instance_var] = ACTIONS(5110), + [sym_class_var] = ACTIONS(5110), + [sym_self] = ACTIONS(5108), + [sym_private] = ACTIONS(5108), + [sym_protected] = ACTIONS(5108), + [anon_sym_alias] = ACTIONS(5108), + [anon_sym_begin] = ACTIONS(5108), + [anon_sym_while] = ACTIONS(5108), + [anon_sym_until] = ACTIONS(5108), + [anon_sym_else] = ACTIONS(5108), + [anon_sym_require] = ACTIONS(5108), + [anon_sym_case] = ACTIONS(5108), + [anon_sym_select] = ACTIONS(5108), + [aux_sym_asm_token1] = ACTIONS(5110), + [sym__line_break] = ACTIONS(5110), [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__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__start_of_hash_or_tuple] = ACTIONS(5110), + [sym__start_of_named_tuple] = ACTIONS(5110), + [sym_unary_plus] = ACTIONS(5110), + [sym_unary_minus] = ACTIONS(5110), + [sym_unary_wrapping_plus] = ACTIONS(5110), + [sym_unary_wrapping_minus] = ACTIONS(5110), + [sym__beginless_range_operator] = ACTIONS(5110), + [sym__regex_start] = ACTIONS(5110), + [sym__regular_if_keyword] = ACTIONS(5110), + [sym__regular_unless_keyword] = ACTIONS(5110), + [sym__regular_rescue_keyword] = ACTIONS(5110), + [sym__regular_ensure_keyword] = ACTIONS(5110), + [sym__string_literal_start] = ACTIONS(5110), + [sym__string_percent_literal_start] = ACTIONS(5110), + [sym__command_percent_literal_start] = ACTIONS(5110), + [sym__string_array_percent_literal_start] = ACTIONS(5110), + [sym__symbol_array_percent_literal_start] = ACTIONS(5110), + [sym__regex_percent_literal_start] = ACTIONS(5110), + [sym_heredoc_start] = ACTIONS(5110), [sym__heredoc_body_start] = ACTIONS(7), }, - [2074] = { - [sym_heredoc_body] = STATE(2074), + [2090] = { + [sym_heredoc_body] = STATE(2090), [sym_identifier] = ACTIONS(5112), [anon_sym_SEMI] = ACTIONS(5114), [anon_sym_LPAREN] = ACTIONS(5114), @@ -340625,97 +343247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5114), [sym__heredoc_body_start] = ACTIONS(7), }, - [2075] = { - [sym_heredoc_body] = STATE(2075), - [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_COMMA] = ACTIONS(4928), - [anon_sym_DASH_GT] = ACTIONS(4928), - [anon_sym_DOT] = ACTIONS(4928), - [anon_sym_annotation] = ACTIONS(4926), - [anon_sym_end] = ACTIONS(4926), - [anon_sym_AT_LBRACK] = ACTIONS(4928), - [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_lib] = ACTIONS(4926), - [anon_sym_fun] = ACTIONS(4926), - [anon_sym_STAR] = ACTIONS(4928), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_TILDE] = ACTIONS(4928), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4928), - [sym_identifier_method_call] = ACTIONS(4928), - [sym_instance_var] = ACTIONS(4928), - [sym_class_var] = ACTIONS(4928), - [sym_self] = ACTIONS(4926), - [anon_sym_QMARK] = ACTIONS(4928), - [sym_private] = ACTIONS(4926), - [sym_protected] = ACTIONS(4926), - [anon_sym_alias] = ACTIONS(4926), - [anon_sym_begin] = ACTIONS(4926), - [anon_sym_while] = ACTIONS(4926), - [anon_sym_until] = ACTIONS(4926), - [anon_sym_require] = ACTIONS(4926), - [anon_sym_case] = ACTIONS(4926), - [anon_sym_select] = ACTIONS(4926), - [aux_sym_asm_token1] = ACTIONS(4928), - [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__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), - }, - [2076] = { - [sym_heredoc_body] = STATE(2076), + [2091] = { + [sym_heredoc_body] = STATE(2091), [sym_identifier] = ACTIONS(5116), [anon_sym_SEMI] = ACTIONS(5118), [anon_sym_LPAREN] = ACTIONS(5118), @@ -340803,97 +343336,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5118), [sym__heredoc_body_start] = ACTIONS(7), }, - [2077] = { - [sym_heredoc_body] = STATE(2077), - [sym_identifier] = ACTIONS(4946), - [anon_sym_SEMI] = ACTIONS(4948), - [anon_sym_LPAREN] = ACTIONS(4948), + [2092] = { + [sym_heredoc_body] = STATE(2092), + [sym_identifier] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), [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_COMMA] = ACTIONS(4948), - [anon_sym_DASH_GT] = ACTIONS(4948), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_annotation] = ACTIONS(4946), - [anon_sym_end] = ACTIONS(4946), - [anon_sym_AT_LBRACK] = ACTIONS(4948), - [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_lib] = ACTIONS(4946), - [anon_sym_fun] = ACTIONS(4946), - [anon_sym_STAR] = ACTIONS(4948), - [anon_sym_PIPE] = ACTIONS(4948), - [anon_sym_BANG] = ACTIONS(4948), - [anon_sym_TILDE] = ACTIONS(4948), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4948), - [sym_identifier_method_call] = ACTIONS(4948), - [sym_instance_var] = ACTIONS(4948), - [sym_class_var] = ACTIONS(4948), - [sym_self] = ACTIONS(4946), - [anon_sym_QMARK] = ACTIONS(4948), - [sym_private] = ACTIONS(4946), - [sym_protected] = ACTIONS(4946), - [anon_sym_alias] = ACTIONS(4946), - [anon_sym_begin] = ACTIONS(4946), - [anon_sym_while] = ACTIONS(4946), - [anon_sym_until] = ACTIONS(4946), - [anon_sym_require] = ACTIONS(4946), - [anon_sym_case] = ACTIONS(4946), - [anon_sym_select] = ACTIONS(4946), - [aux_sym_asm_token1] = ACTIONS(4948), + [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_COMMA] = ACTIONS(4940), + [anon_sym_DASH_GT] = ACTIONS(4940), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_annotation] = ACTIONS(4938), + [anon_sym_end] = ACTIONS(4938), + [anon_sym_AT_LBRACK] = ACTIONS(4940), + [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_lib] = ACTIONS(4938), + [anon_sym_fun] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_PIPE] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4940), + [sym_identifier_method_call] = ACTIONS(4940), + [sym_instance_var] = ACTIONS(4940), + [sym_class_var] = ACTIONS(4940), + [sym_self] = ACTIONS(4938), + [anon_sym_QMARK] = ACTIONS(4940), + [sym_private] = ACTIONS(4938), + [sym_protected] = ACTIONS(4938), + [anon_sym_alias] = ACTIONS(4938), + [anon_sym_begin] = ACTIONS(4938), + [anon_sym_while] = ACTIONS(4938), + [anon_sym_until] = ACTIONS(4938), + [anon_sym_require] = ACTIONS(4938), + [anon_sym_case] = ACTIONS(4938), + [anon_sym_select] = ACTIONS(4938), + [aux_sym_asm_token1] = ACTIONS(4940), [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__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__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__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), }, - [2078] = { - [sym_heredoc_body] = STATE(2078), + [2093] = { + [sym_heredoc_body] = STATE(2093), + [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_COMMA] = ACTIONS(4944), + [anon_sym_DASH_GT] = ACTIONS(4944), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_annotation] = ACTIONS(4942), + [anon_sym_end] = ACTIONS(4942), + [anon_sym_AT_LBRACK] = ACTIONS(4944), + [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_lib] = ACTIONS(4942), + [anon_sym_fun] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_PIPE] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4944), + [sym_identifier_method_call] = ACTIONS(4944), + [sym_instance_var] = ACTIONS(4944), + [sym_class_var] = ACTIONS(4944), + [sym_self] = ACTIONS(4942), + [anon_sym_QMARK] = ACTIONS(4944), + [sym_private] = ACTIONS(4942), + [sym_protected] = ACTIONS(4942), + [anon_sym_alias] = ACTIONS(4942), + [anon_sym_begin] = ACTIONS(4942), + [anon_sym_while] = ACTIONS(4942), + [anon_sym_until] = ACTIONS(4942), + [anon_sym_require] = ACTIONS(4942), + [anon_sym_case] = ACTIONS(4942), + [anon_sym_select] = ACTIONS(4942), + [aux_sym_asm_token1] = ACTIONS(4944), + [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__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), + }, + [2094] = { + [sym_heredoc_body] = STATE(2094), [sym_identifier] = ACTIONS(5120), [anon_sym_SEMI] = ACTIONS(5122), [anon_sym_LPAREN] = ACTIONS(5122), @@ -340981,186 +343603,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5122), [sym__heredoc_body_start] = ACTIONS(7), }, - [2079] = { - [sym_heredoc_body] = STATE(2079), - [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_COMMA] = ACTIONS(4940), - [anon_sym_DASH_GT] = ACTIONS(4940), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_annotation] = ACTIONS(4938), - [anon_sym_end] = ACTIONS(4938), - [anon_sym_AT_LBRACK] = ACTIONS(4940), - [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_lib] = ACTIONS(4938), - [anon_sym_fun] = ACTIONS(4938), - [anon_sym_STAR] = ACTIONS(4940), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_TILDE] = ACTIONS(4940), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4940), - [sym_identifier_method_call] = ACTIONS(4940), - [sym_instance_var] = ACTIONS(4940), - [sym_class_var] = ACTIONS(4940), - [sym_self] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4940), - [sym_private] = ACTIONS(4938), - [sym_protected] = ACTIONS(4938), - [anon_sym_alias] = ACTIONS(4938), - [anon_sym_begin] = ACTIONS(4938), - [anon_sym_while] = ACTIONS(4938), - [anon_sym_until] = ACTIONS(4938), - [anon_sym_require] = ACTIONS(4938), - [anon_sym_case] = ACTIONS(4938), - [anon_sym_select] = ACTIONS(4938), - [aux_sym_asm_token1] = ACTIONS(4940), - [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__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), - }, - [2080] = { - [sym_heredoc_body] = STATE(2080), - [sym_identifier] = ACTIONS(4918), - [anon_sym_SEMI] = ACTIONS(4920), - [anon_sym_LPAREN] = ACTIONS(4920), + [2095] = { + [sym_heredoc_body] = STATE(2095), + [sym_identifier] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), [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_COMMA] = ACTIONS(4920), - [anon_sym_DASH_GT] = ACTIONS(4920), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_annotation] = ACTIONS(4918), - [anon_sym_end] = ACTIONS(4918), - [anon_sym_AT_LBRACK] = ACTIONS(4920), - [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_lib] = ACTIONS(4918), - [anon_sym_fun] = ACTIONS(4918), - [anon_sym_STAR] = ACTIONS(4920), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_BANG] = ACTIONS(4920), - [anon_sym_TILDE] = ACTIONS(4920), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4920), - [sym_identifier_method_call] = ACTIONS(4920), - [sym_instance_var] = ACTIONS(4920), - [sym_class_var] = ACTIONS(4920), - [sym_self] = ACTIONS(4918), - [anon_sym_QMARK] = ACTIONS(4920), - [sym_private] = ACTIONS(4918), - [sym_protected] = ACTIONS(4918), - [anon_sym_alias] = ACTIONS(4918), - [anon_sym_begin] = ACTIONS(4918), - [anon_sym_while] = ACTIONS(4918), - [anon_sym_until] = ACTIONS(4918), - [anon_sym_require] = ACTIONS(4918), - [anon_sym_case] = ACTIONS(4918), - [anon_sym_select] = ACTIONS(4918), - [aux_sym_asm_token1] = ACTIONS(4920), + [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_COMMA] = ACTIONS(4928), + [anon_sym_DASH_GT] = ACTIONS(4928), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_annotation] = ACTIONS(4926), + [anon_sym_end] = ACTIONS(4926), + [anon_sym_AT_LBRACK] = ACTIONS(4928), + [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_lib] = ACTIONS(4926), + [anon_sym_fun] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4928), + [sym_identifier_method_call] = ACTIONS(4928), + [sym_instance_var] = ACTIONS(4928), + [sym_class_var] = ACTIONS(4928), + [sym_self] = ACTIONS(4926), + [anon_sym_QMARK] = ACTIONS(4928), + [sym_private] = ACTIONS(4926), + [sym_protected] = ACTIONS(4926), + [anon_sym_alias] = ACTIONS(4926), + [anon_sym_begin] = ACTIONS(4926), + [anon_sym_while] = ACTIONS(4926), + [anon_sym_until] = ACTIONS(4926), + [anon_sym_require] = ACTIONS(4926), + [anon_sym_case] = ACTIONS(4926), + [anon_sym_select] = ACTIONS(4926), + [aux_sym_asm_token1] = ACTIONS(4928), [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__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__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__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), }, - [2081] = { - [sym_heredoc_body] = STATE(2081), + [2096] = { + [sym_heredoc_body] = STATE(2096), [sym_identifier] = ACTIONS(5124), [anon_sym_SEMI] = ACTIONS(5126), [anon_sym_LPAREN] = ACTIONS(5126), @@ -341227,29 +343760,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_asm_token1] = ACTIONS(5126), [sym__line_break] = ACTIONS(5126), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5126), - [sym__start_of_named_tuple] = ACTIONS(5126), - [sym_unary_plus] = ACTIONS(5126), - [sym_unary_minus] = ACTIONS(5126), - [sym_unary_wrapping_plus] = ACTIONS(5126), - [sym_unary_wrapping_minus] = ACTIONS(5126), - [sym__beginless_range_operator] = ACTIONS(5126), - [sym__regex_start] = ACTIONS(5126), - [sym__regular_if_keyword] = ACTIONS(5126), - [sym__regular_unless_keyword] = ACTIONS(5126), - [sym__regular_rescue_keyword] = ACTIONS(5126), - [sym__regular_ensure_keyword] = ACTIONS(5126), - [sym__string_literal_start] = ACTIONS(5126), - [sym__string_percent_literal_start] = ACTIONS(5126), - [sym__command_percent_literal_start] = ACTIONS(5126), - [sym__string_array_percent_literal_start] = ACTIONS(5126), - [sym__symbol_array_percent_literal_start] = ACTIONS(5126), - [sym__regex_percent_literal_start] = ACTIONS(5126), - [sym_heredoc_start] = ACTIONS(5126), + [sym__start_of_hash_or_tuple] = ACTIONS(5126), + [sym__start_of_named_tuple] = ACTIONS(5126), + [sym_unary_plus] = ACTIONS(5126), + [sym_unary_minus] = ACTIONS(5126), + [sym_unary_wrapping_plus] = ACTIONS(5126), + [sym_unary_wrapping_minus] = ACTIONS(5126), + [sym__beginless_range_operator] = ACTIONS(5126), + [sym__regex_start] = ACTIONS(5126), + [sym__regular_if_keyword] = ACTIONS(5126), + [sym__regular_unless_keyword] = ACTIONS(5126), + [sym__regular_rescue_keyword] = ACTIONS(5126), + [sym__regular_ensure_keyword] = ACTIONS(5126), + [sym__string_literal_start] = ACTIONS(5126), + [sym__string_percent_literal_start] = ACTIONS(5126), + [sym__command_percent_literal_start] = ACTIONS(5126), + [sym__string_array_percent_literal_start] = ACTIONS(5126), + [sym__symbol_array_percent_literal_start] = ACTIONS(5126), + [sym__regex_percent_literal_start] = ACTIONS(5126), + [sym_heredoc_start] = ACTIONS(5126), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2097] = { + [sym_heredoc_body] = STATE(2097), + [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_COMMA] = ACTIONS(4932), + [anon_sym_DASH_GT] = ACTIONS(4932), + [anon_sym_DOT] = ACTIONS(4932), + [anon_sym_annotation] = ACTIONS(4930), + [anon_sym_end] = ACTIONS(4930), + [anon_sym_AT_LBRACK] = ACTIONS(4932), + [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_lib] = ACTIONS(4930), + [anon_sym_fun] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_PIPE] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4932), + [sym_identifier_method_call] = ACTIONS(4932), + [sym_instance_var] = ACTIONS(4932), + [sym_class_var] = ACTIONS(4932), + [sym_self] = ACTIONS(4930), + [anon_sym_QMARK] = ACTIONS(4932), + [sym_private] = ACTIONS(4930), + [sym_protected] = ACTIONS(4930), + [anon_sym_alias] = ACTIONS(4930), + [anon_sym_begin] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_until] = ACTIONS(4930), + [anon_sym_require] = ACTIONS(4930), + [anon_sym_case] = ACTIONS(4930), + [anon_sym_select] = ACTIONS(4930), + [aux_sym_asm_token1] = ACTIONS(4932), + [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__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), }, - [2082] = { - [sym_heredoc_body] = STATE(2082), + [2098] = { + [sym_heredoc_body] = STATE(2098), [sym_identifier] = ACTIONS(5128), [anon_sym_SEMI] = ACTIONS(5130), [anon_sym_LPAREN] = ACTIONS(5130), @@ -341337,97 +343959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5130), [sym__heredoc_body_start] = ACTIONS(7), }, - [2083] = { - [sym_heredoc_body] = STATE(2083), - [sym_identifier] = ACTIONS(5132), - [anon_sym_SEMI] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5132), - [sym_true] = ACTIONS(5132), - [sym_false] = ACTIONS(5132), - [aux_sym_integer_token2] = ACTIONS(5132), - [aux_sym_float_token2] = ACTIONS(5134), - [anon_sym_SQUOTE] = ACTIONS(5134), - [sym_operator_symbol] = ACTIONS(5134), - [sym_unquoted_symbol] = ACTIONS(5134), - [anon_sym_COLON_DQUOTE] = ACTIONS(5134), - [anon_sym_BQUOTE] = ACTIONS(5134), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_DASH_GT] = ACTIONS(5134), - [anon_sym_annotation] = ACTIONS(5132), - [anon_sym_end] = ACTIONS(5132), - [anon_sym_AT_LBRACK] = ACTIONS(5134), - [anon_sym_module] = ACTIONS(5132), - [anon_sym_abstract] = ACTIONS(5132), - [anon_sym_class] = ACTIONS(5132), - [anon_sym_struct] = ACTIONS(5132), - [anon_sym_enum] = ACTIONS(5132), - [anon_sym_lib] = ACTIONS(5132), - [anon_sym_fun] = ACTIONS(5132), - [anon_sym_STAR] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(5134), - [anon_sym_TILDE] = ACTIONS(5134), - [anon_sym_def] = ACTIONS(5132), - [anon_sym_include] = ACTIONS(5132), - [anon_sym_extend] = ACTIONS(5132), - [anon_sym_return] = ACTIONS(5132), - [anon_sym_next] = ACTIONS(5132), - [anon_sym_break] = ACTIONS(5132), - [anon_sym_with] = ACTIONS(5132), - [anon_sym_yield] = ACTIONS(5132), - [anon_sym_typeof] = ACTIONS(5132), - [anon_sym_sizeof] = ACTIONS(5132), - [anon_sym_instance_sizeof] = ACTIONS(5132), - [anon_sym_offsetof] = ACTIONS(5132), - [sym__constant_segment] = ACTIONS(5134), - [anon_sym_COLON_COLON] = ACTIONS(5134), - [anon_sym___LINE__] = ACTIONS(5132), - [anon_sym___END_LINE__] = ACTIONS(5132), - [anon_sym___FILE__] = ACTIONS(5132), - [anon_sym___DIR__] = ACTIONS(5132), - [sym_special_variable] = ACTIONS(5134), - [sym_global_match_data_index] = ACTIONS(5134), - [sym_identifier_method_call] = ACTIONS(5134), - [sym_instance_var] = ACTIONS(5134), - [sym_class_var] = ACTIONS(5134), - [sym_self] = ACTIONS(5132), - [sym_private] = ACTIONS(5132), - [sym_protected] = ACTIONS(5132), - [anon_sym_alias] = ACTIONS(5132), - [anon_sym_begin] = ACTIONS(5132), - [anon_sym_while] = ACTIONS(5132), - [anon_sym_until] = ACTIONS(5132), - [anon_sym_else] = ACTIONS(5132), - [anon_sym_require] = ACTIONS(5132), - [anon_sym_case] = ACTIONS(5132), - [anon_sym_select] = ACTIONS(5132), - [aux_sym_asm_token1] = ACTIONS(5134), - [sym__line_break] = ACTIONS(5134), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5134), - [sym__start_of_named_tuple] = ACTIONS(5134), - [sym_unary_plus] = ACTIONS(5134), - [sym_unary_minus] = ACTIONS(5134), - [sym_unary_wrapping_plus] = ACTIONS(5134), - [sym_unary_wrapping_minus] = ACTIONS(5134), - [sym__beginless_range_operator] = ACTIONS(5134), - [sym__regex_start] = ACTIONS(5134), - [sym__regular_if_keyword] = ACTIONS(5134), - [sym__regular_unless_keyword] = ACTIONS(5134), - [sym__regular_rescue_keyword] = ACTIONS(5134), - [sym__regular_ensure_keyword] = ACTIONS(5134), - [sym__string_literal_start] = ACTIONS(5134), - [sym__string_percent_literal_start] = ACTIONS(5134), - [sym__command_percent_literal_start] = ACTIONS(5134), - [sym__string_array_percent_literal_start] = ACTIONS(5134), - [sym__symbol_array_percent_literal_start] = ACTIONS(5134), - [sym__regex_percent_literal_start] = ACTIONS(5134), - [sym_heredoc_start] = ACTIONS(5134), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2084] = { - [sym_heredoc_body] = STATE(2084), + [2099] = { + [sym_heredoc_body] = STATE(2099), [sym_identifier] = ACTIONS(4900), [anon_sym_SEMI] = ACTIONS(4902), [anon_sym_LPAREN] = ACTIONS(4902), @@ -341515,8 +344048,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4902), [sym__heredoc_body_start] = ACTIONS(7), }, - [2085] = { - [sym_heredoc_body] = STATE(2085), + [2100] = { + [sym_heredoc_body] = STATE(2100), + [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_COMMA] = ACTIONS(4976), + [anon_sym_DASH_GT] = ACTIONS(4976), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4974), + [anon_sym_end] = ACTIONS(4974), + [anon_sym_AT_LBRACK] = ACTIONS(4976), + [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_lib] = ACTIONS(4974), + [anon_sym_fun] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_PIPE] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4976), + [sym_identifier_method_call] = ACTIONS(4976), + [sym_instance_var] = ACTIONS(4976), + [sym_class_var] = ACTIONS(4976), + [sym_self] = ACTIONS(4974), + [anon_sym_QMARK] = ACTIONS(4976), + [sym_private] = ACTIONS(4974), + [sym_protected] = ACTIONS(4974), + [anon_sym_alias] = ACTIONS(4974), + [anon_sym_begin] = ACTIONS(4974), + [anon_sym_while] = ACTIONS(4974), + [anon_sym_until] = ACTIONS(4974), + [anon_sym_require] = ACTIONS(4974), + [anon_sym_case] = ACTIONS(4974), + [anon_sym_select] = ACTIONS(4974), + [aux_sym_asm_token1] = ACTIONS(4976), + [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__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), + }, + [2101] = { + [sym_heredoc_body] = STATE(2101), + [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_COMMA] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4908), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_annotation] = ACTIONS(4906), + [anon_sym_end] = ACTIONS(4906), + [anon_sym_AT_LBRACK] = ACTIONS(4908), + [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_lib] = ACTIONS(4906), + [anon_sym_fun] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_PIPE] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4908), + [sym_identifier_method_call] = ACTIONS(4908), + [sym_instance_var] = ACTIONS(4908), + [sym_class_var] = ACTIONS(4908), + [sym_self] = ACTIONS(4906), + [anon_sym_QMARK] = ACTIONS(4908), + [sym_private] = ACTIONS(4906), + [sym_protected] = ACTIONS(4906), + [anon_sym_alias] = ACTIONS(4906), + [anon_sym_begin] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_until] = ACTIONS(4906), + [anon_sym_require] = ACTIONS(4906), + [anon_sym_case] = ACTIONS(4906), + [anon_sym_select] = ACTIONS(4906), + [aux_sym_asm_token1] = ACTIONS(4908), + [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__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), + }, + [2102] = { + [sym_heredoc_body] = STATE(2102), + [sym_identifier] = ACTIONS(5132), + [anon_sym_SEMI] = ACTIONS(5134), + [anon_sym_LPAREN] = ACTIONS(5134), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5132), + [sym_true] = ACTIONS(5132), + [sym_false] = ACTIONS(5132), + [aux_sym_integer_token2] = ACTIONS(5132), + [aux_sym_float_token2] = ACTIONS(5134), + [anon_sym_SQUOTE] = ACTIONS(5134), + [sym_operator_symbol] = ACTIONS(5134), + [sym_unquoted_symbol] = ACTIONS(5134), + [anon_sym_COLON_DQUOTE] = ACTIONS(5134), + [anon_sym_BQUOTE] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5134), + [anon_sym_DASH_GT] = ACTIONS(5134), + [anon_sym_annotation] = ACTIONS(5132), + [anon_sym_end] = ACTIONS(5132), + [anon_sym_AT_LBRACK] = ACTIONS(5134), + [anon_sym_module] = ACTIONS(5132), + [anon_sym_abstract] = ACTIONS(5132), + [anon_sym_class] = ACTIONS(5132), + [anon_sym_struct] = ACTIONS(5132), + [anon_sym_enum] = ACTIONS(5132), + [anon_sym_lib] = ACTIONS(5132), + [anon_sym_fun] = ACTIONS(5132), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_BANG] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5134), + [anon_sym_def] = ACTIONS(5132), + [anon_sym_include] = ACTIONS(5132), + [anon_sym_extend] = ACTIONS(5132), + [anon_sym_return] = ACTIONS(5132), + [anon_sym_next] = ACTIONS(5132), + [anon_sym_break] = ACTIONS(5132), + [anon_sym_with] = ACTIONS(5132), + [anon_sym_yield] = ACTIONS(5132), + [anon_sym_typeof] = ACTIONS(5132), + [anon_sym_sizeof] = ACTIONS(5132), + [anon_sym_instance_sizeof] = ACTIONS(5132), + [anon_sym_offsetof] = ACTIONS(5132), + [sym__constant_segment] = ACTIONS(5134), + [anon_sym_COLON_COLON] = ACTIONS(5134), + [anon_sym___LINE__] = ACTIONS(5132), + [anon_sym___END_LINE__] = ACTIONS(5132), + [anon_sym___FILE__] = ACTIONS(5132), + [anon_sym___DIR__] = ACTIONS(5132), + [sym_special_variable] = ACTIONS(5134), + [sym_global_match_data_index] = ACTIONS(5134), + [sym_identifier_method_call] = ACTIONS(5134), + [sym_instance_var] = ACTIONS(5134), + [sym_class_var] = ACTIONS(5134), + [sym_self] = ACTIONS(5132), + [sym_private] = ACTIONS(5132), + [sym_protected] = ACTIONS(5132), + [anon_sym_alias] = ACTIONS(5132), + [anon_sym_begin] = ACTIONS(5132), + [anon_sym_while] = ACTIONS(5132), + [anon_sym_until] = ACTIONS(5132), + [anon_sym_else] = ACTIONS(5132), + [anon_sym_require] = ACTIONS(5132), + [anon_sym_case] = ACTIONS(5132), + [anon_sym_select] = ACTIONS(5132), + [aux_sym_asm_token1] = ACTIONS(5134), + [sym__line_break] = ACTIONS(5134), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5134), + [sym__start_of_named_tuple] = ACTIONS(5134), + [sym_unary_plus] = ACTIONS(5134), + [sym_unary_minus] = ACTIONS(5134), + [sym_unary_wrapping_plus] = ACTIONS(5134), + [sym_unary_wrapping_minus] = ACTIONS(5134), + [sym__beginless_range_operator] = ACTIONS(5134), + [sym__regex_start] = ACTIONS(5134), + [sym__regular_if_keyword] = ACTIONS(5134), + [sym__regular_unless_keyword] = ACTIONS(5134), + [sym__regular_rescue_keyword] = ACTIONS(5134), + [sym__regular_ensure_keyword] = ACTIONS(5134), + [sym__string_literal_start] = ACTIONS(5134), + [sym__string_percent_literal_start] = ACTIONS(5134), + [sym__command_percent_literal_start] = ACTIONS(5134), + [sym__string_array_percent_literal_start] = ACTIONS(5134), + [sym__symbol_array_percent_literal_start] = ACTIONS(5134), + [sym__regex_percent_literal_start] = ACTIONS(5134), + [sym_heredoc_start] = ACTIONS(5134), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2103] = { + [sym_heredoc_body] = STATE(2103), [sym_identifier] = ACTIONS(5136), [anon_sym_SEMI] = ACTIONS(5138), [anon_sym_LPAREN] = ACTIONS(5138), @@ -341604,97 +344404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5138), [sym__heredoc_body_start] = ACTIONS(7), }, - [2086] = { - [sym_heredoc_body] = STATE(2086), - [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_COMMA] = ACTIONS(4944), - [anon_sym_DASH_GT] = ACTIONS(4944), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4942), - [anon_sym_end] = ACTIONS(4942), - [anon_sym_AT_LBRACK] = ACTIONS(4944), - [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_lib] = ACTIONS(4942), - [anon_sym_fun] = ACTIONS(4942), - [anon_sym_STAR] = ACTIONS(4944), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_TILDE] = ACTIONS(4944), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4944), - [sym_identifier_method_call] = ACTIONS(4944), - [sym_instance_var] = ACTIONS(4944), - [sym_class_var] = ACTIONS(4944), - [sym_self] = ACTIONS(4942), - [anon_sym_QMARK] = ACTIONS(4944), - [sym_private] = ACTIONS(4942), - [sym_protected] = ACTIONS(4942), - [anon_sym_alias] = ACTIONS(4942), - [anon_sym_begin] = ACTIONS(4942), - [anon_sym_while] = ACTIONS(4942), - [anon_sym_until] = ACTIONS(4942), - [anon_sym_require] = ACTIONS(4942), - [anon_sym_case] = ACTIONS(4942), - [anon_sym_select] = ACTIONS(4942), - [aux_sym_asm_token1] = ACTIONS(4944), - [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__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), - }, - [2087] = { - [sym_heredoc_body] = STATE(2087), + [2104] = { + [sym_heredoc_body] = STATE(2104), [sym_identifier] = ACTIONS(5140), [anon_sym_SEMI] = ACTIONS(5142), [anon_sym_LPAREN] = ACTIONS(5142), @@ -341761,207 +344472,741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_asm_token1] = ACTIONS(5142), [sym__line_break] = ACTIONS(5142), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5142), - [sym__start_of_named_tuple] = ACTIONS(5142), - [sym_unary_plus] = ACTIONS(5142), - [sym_unary_minus] = ACTIONS(5142), - [sym_unary_wrapping_plus] = ACTIONS(5142), - [sym_unary_wrapping_minus] = ACTIONS(5142), - [sym__beginless_range_operator] = ACTIONS(5142), - [sym__regex_start] = ACTIONS(5142), - [sym__regular_if_keyword] = ACTIONS(5142), - [sym__regular_unless_keyword] = ACTIONS(5142), - [sym__regular_rescue_keyword] = ACTIONS(5142), - [sym__regular_ensure_keyword] = ACTIONS(5142), - [sym__string_literal_start] = ACTIONS(5142), - [sym__string_percent_literal_start] = ACTIONS(5142), - [sym__command_percent_literal_start] = ACTIONS(5142), - [sym__string_array_percent_literal_start] = ACTIONS(5142), - [sym__symbol_array_percent_literal_start] = ACTIONS(5142), - [sym__regex_percent_literal_start] = ACTIONS(5142), - [sym_heredoc_start] = ACTIONS(5142), + [sym__start_of_hash_or_tuple] = ACTIONS(5142), + [sym__start_of_named_tuple] = ACTIONS(5142), + [sym_unary_plus] = ACTIONS(5142), + [sym_unary_minus] = ACTIONS(5142), + [sym_unary_wrapping_plus] = ACTIONS(5142), + [sym_unary_wrapping_minus] = ACTIONS(5142), + [sym__beginless_range_operator] = ACTIONS(5142), + [sym__regex_start] = ACTIONS(5142), + [sym__regular_if_keyword] = ACTIONS(5142), + [sym__regular_unless_keyword] = ACTIONS(5142), + [sym__regular_rescue_keyword] = ACTIONS(5142), + [sym__regular_ensure_keyword] = ACTIONS(5142), + [sym__string_literal_start] = ACTIONS(5142), + [sym__string_percent_literal_start] = ACTIONS(5142), + [sym__command_percent_literal_start] = ACTIONS(5142), + [sym__string_array_percent_literal_start] = ACTIONS(5142), + [sym__symbol_array_percent_literal_start] = ACTIONS(5142), + [sym__regex_percent_literal_start] = ACTIONS(5142), + [sym_heredoc_start] = ACTIONS(5142), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2105] = { + [sym_heredoc_body] = STATE(2105), + [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_COMMA] = ACTIONS(4956), + [anon_sym_DASH_GT] = ACTIONS(4956), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_annotation] = ACTIONS(4954), + [anon_sym_end] = ACTIONS(4954), + [anon_sym_AT_LBRACK] = ACTIONS(4956), + [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_lib] = ACTIONS(4954), + [anon_sym_fun] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_PIPE] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4956), + [sym_identifier_method_call] = ACTIONS(4956), + [sym_instance_var] = ACTIONS(4956), + [sym_class_var] = ACTIONS(4956), + [sym_self] = ACTIONS(4954), + [anon_sym_QMARK] = ACTIONS(4956), + [sym_private] = ACTIONS(4954), + [sym_protected] = ACTIONS(4954), + [anon_sym_alias] = ACTIONS(4954), + [anon_sym_begin] = ACTIONS(4954), + [anon_sym_while] = ACTIONS(4954), + [anon_sym_until] = ACTIONS(4954), + [anon_sym_require] = ACTIONS(4954), + [anon_sym_case] = ACTIONS(4954), + [anon_sym_select] = ACTIONS(4954), + [aux_sym_asm_token1] = ACTIONS(4956), + [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__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), + }, + [2106] = { + [sym_heredoc_body] = STATE(2106), + [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_COMMA] = ACTIONS(4960), + [anon_sym_DASH_GT] = ACTIONS(4960), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_annotation] = ACTIONS(4958), + [anon_sym_end] = ACTIONS(4958), + [anon_sym_AT_LBRACK] = ACTIONS(4960), + [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_lib] = ACTIONS(4958), + [anon_sym_fun] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_PIPE] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4960), + [sym_identifier_method_call] = ACTIONS(4960), + [sym_instance_var] = ACTIONS(4960), + [sym_class_var] = ACTIONS(4960), + [sym_self] = ACTIONS(4958), + [anon_sym_QMARK] = ACTIONS(4960), + [sym_private] = ACTIONS(4958), + [sym_protected] = ACTIONS(4958), + [anon_sym_alias] = ACTIONS(4958), + [anon_sym_begin] = ACTIONS(4958), + [anon_sym_while] = ACTIONS(4958), + [anon_sym_until] = ACTIONS(4958), + [anon_sym_require] = ACTIONS(4958), + [anon_sym_case] = ACTIONS(4958), + [anon_sym_select] = ACTIONS(4958), + [aux_sym_asm_token1] = ACTIONS(4960), + [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__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), + }, + [2107] = { + [sym_heredoc_body] = STATE(2107), + [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_COMMA] = ACTIONS(4964), + [anon_sym_DASH_GT] = ACTIONS(4964), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_annotation] = ACTIONS(4962), + [anon_sym_end] = ACTIONS(4962), + [anon_sym_AT_LBRACK] = ACTIONS(4964), + [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_lib] = ACTIONS(4962), + [anon_sym_fun] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_PIPE] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4964), + [sym_identifier_method_call] = ACTIONS(4964), + [sym_instance_var] = ACTIONS(4964), + [sym_class_var] = ACTIONS(4964), + [sym_self] = ACTIONS(4962), + [anon_sym_QMARK] = ACTIONS(4964), + [sym_private] = ACTIONS(4962), + [sym_protected] = ACTIONS(4962), + [anon_sym_alias] = ACTIONS(4962), + [anon_sym_begin] = ACTIONS(4962), + [anon_sym_while] = ACTIONS(4962), + [anon_sym_until] = ACTIONS(4962), + [anon_sym_require] = ACTIONS(4962), + [anon_sym_case] = ACTIONS(4962), + [anon_sym_select] = ACTIONS(4962), + [aux_sym_asm_token1] = ACTIONS(4964), + [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__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), + }, + [2108] = { + [sym_heredoc_body] = STATE(2108), + [aux_sym_union_type_repeat1] = STATE(2082), + [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(5087), + [anon_sym_DASH_GT] = ACTIONS(4972), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(4970), + [anon_sym_end] = ACTIONS(4970), + [anon_sym_AT_LBRACK] = ACTIONS(4972), + [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_lib] = ACTIONS(4970), + [anon_sym_fun] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4972), + [sym_identifier_method_call] = ACTIONS(4972), + [sym_instance_var] = ACTIONS(4972), + [sym_class_var] = ACTIONS(4972), + [sym_self] = ACTIONS(4970), + [anon_sym_QMARK] = ACTIONS(5095), + [sym_private] = ACTIONS(4970), + [sym_protected] = ACTIONS(4970), + [anon_sym_alias] = ACTIONS(4970), + [anon_sym_begin] = ACTIONS(4970), + [anon_sym_while] = ACTIONS(4970), + [anon_sym_until] = ACTIONS(4970), + [anon_sym_require] = ACTIONS(4970), + [anon_sym_case] = ACTIONS(4970), + [anon_sym_select] = ACTIONS(4970), + [aux_sym_asm_token1] = ACTIONS(4972), + [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__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), + }, + [2109] = { + [sym_heredoc_body] = STATE(2109), + [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_COMMA] = ACTIONS(4916), + [anon_sym_DASH_GT] = ACTIONS(4916), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_annotation] = ACTIONS(4914), + [anon_sym_end] = ACTIONS(4914), + [anon_sym_AT_LBRACK] = ACTIONS(4916), + [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_lib] = ACTIONS(4914), + [anon_sym_fun] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_PIPE] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4916), + [sym_identifier_method_call] = ACTIONS(4916), + [sym_instance_var] = ACTIONS(4916), + [sym_class_var] = ACTIONS(4916), + [sym_self] = ACTIONS(4914), + [anon_sym_QMARK] = ACTIONS(4916), + [sym_private] = ACTIONS(4914), + [sym_protected] = ACTIONS(4914), + [anon_sym_alias] = ACTIONS(4914), + [anon_sym_begin] = ACTIONS(4914), + [anon_sym_while] = ACTIONS(4914), + [anon_sym_until] = ACTIONS(4914), + [anon_sym_require] = ACTIONS(4914), + [anon_sym_case] = ACTIONS(4914), + [anon_sym_select] = ACTIONS(4914), + [aux_sym_asm_token1] = ACTIONS(4916), + [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__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), + }, + [2110] = { + [sym_heredoc_body] = STATE(2110), + [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_COMMA] = ACTIONS(4968), + [anon_sym_DASH_GT] = ACTIONS(4968), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4966), + [anon_sym_end] = ACTIONS(4966), + [anon_sym_AT_LBRACK] = ACTIONS(4968), + [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_lib] = ACTIONS(4966), + [anon_sym_fun] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_PIPE] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4968), + [sym_identifier_method_call] = ACTIONS(4968), + [sym_instance_var] = ACTIONS(4968), + [sym_class_var] = ACTIONS(4968), + [sym_self] = ACTIONS(4966), + [anon_sym_QMARK] = ACTIONS(4968), + [sym_private] = ACTIONS(4966), + [sym_protected] = ACTIONS(4966), + [anon_sym_alias] = ACTIONS(4966), + [anon_sym_begin] = ACTIONS(4966), + [anon_sym_while] = ACTIONS(4966), + [anon_sym_until] = ACTIONS(4966), + [anon_sym_require] = ACTIONS(4966), + [anon_sym_case] = ACTIONS(4966), + [anon_sym_select] = ACTIONS(4966), + [aux_sym_asm_token1] = ACTIONS(4968), + [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__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), }, - [2088] = { - [sym_heredoc_body] = STATE(2088), - [sym_identifier] = ACTIONS(4906), - [anon_sym_SEMI] = ACTIONS(4908), - [anon_sym_LPAREN] = ACTIONS(4908), + [2111] = { + [sym_heredoc_body] = STATE(2111), + [sym_identifier] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), [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_COMMA] = ACTIONS(4908), - [anon_sym_DASH_GT] = ACTIONS(4908), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_annotation] = ACTIONS(4906), - [anon_sym_end] = ACTIONS(4906), - [anon_sym_AT_LBRACK] = ACTIONS(4908), - [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_lib] = ACTIONS(4906), - [anon_sym_fun] = ACTIONS(4906), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_TILDE] = ACTIONS(4908), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4908), - [sym_identifier_method_call] = ACTIONS(4908), - [sym_instance_var] = ACTIONS(4908), - [sym_class_var] = ACTIONS(4908), - [sym_self] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [sym_private] = ACTIONS(4906), - [sym_protected] = ACTIONS(4906), - [anon_sym_alias] = ACTIONS(4906), - [anon_sym_begin] = ACTIONS(4906), - [anon_sym_while] = ACTIONS(4906), - [anon_sym_until] = ACTIONS(4906), - [anon_sym_require] = ACTIONS(4906), - [anon_sym_case] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [aux_sym_asm_token1] = ACTIONS(4908), + [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_COMMA] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_annotation] = ACTIONS(4918), + [anon_sym_end] = ACTIONS(4918), + [anon_sym_AT_LBRACK] = ACTIONS(4920), + [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_lib] = ACTIONS(4918), + [anon_sym_fun] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4920), + [sym_identifier_method_call] = ACTIONS(4920), + [sym_instance_var] = ACTIONS(4920), + [sym_class_var] = ACTIONS(4920), + [sym_self] = ACTIONS(4918), + [anon_sym_QMARK] = ACTIONS(4920), + [sym_private] = ACTIONS(4918), + [sym_protected] = ACTIONS(4918), + [anon_sym_alias] = ACTIONS(4918), + [anon_sym_begin] = ACTIONS(4918), + [anon_sym_while] = ACTIONS(4918), + [anon_sym_until] = ACTIONS(4918), + [anon_sym_require] = ACTIONS(4918), + [anon_sym_case] = ACTIONS(4918), + [anon_sym_select] = ACTIONS(4918), + [aux_sym_asm_token1] = ACTIONS(4920), [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__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__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__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), }, - [2089] = { - [sym_heredoc_body] = STATE(2089), - [sym_identifier] = ACTIONS(4950), - [anon_sym_SEMI] = ACTIONS(4952), - [anon_sym_LPAREN] = ACTIONS(4952), + [2112] = { + [sym_heredoc_body] = STATE(2112), + [aux_sym_union_type_repeat1] = STATE(2082), + [sym_identifier] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), [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_COMMA] = ACTIONS(4952), - [anon_sym_DASH_GT] = ACTIONS(4952), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_annotation] = ACTIONS(4950), - [anon_sym_end] = ACTIONS(4950), - [anon_sym_AT_LBRACK] = ACTIONS(4952), - [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_lib] = ACTIONS(4950), - [anon_sym_fun] = ACTIONS(4950), - [anon_sym_STAR] = ACTIONS(4952), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4952), - [anon_sym_TILDE] = ACTIONS(4952), - [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4952), - [sym_identifier_method_call] = ACTIONS(4952), - [sym_instance_var] = ACTIONS(4952), - [sym_class_var] = ACTIONS(4952), - [sym_self] = ACTIONS(4950), - [anon_sym_QMARK] = ACTIONS(4952), - [sym_private] = ACTIONS(4950), - [sym_protected] = ACTIONS(4950), - [anon_sym_alias] = ACTIONS(4950), - [anon_sym_begin] = ACTIONS(4950), - [anon_sym_while] = ACTIONS(4950), - [anon_sym_until] = ACTIONS(4950), - [anon_sym_require] = ACTIONS(4950), - [anon_sym_case] = ACTIONS(4950), - [anon_sym_select] = ACTIONS(4950), - [aux_sym_asm_token1] = ACTIONS(4952), + [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(5087), + [anon_sym_DASH_GT] = ACTIONS(4924), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(4922), + [anon_sym_end] = ACTIONS(4922), + [anon_sym_AT_LBRACK] = ACTIONS(4924), + [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_lib] = ACTIONS(4922), + [anon_sym_fun] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4924), + [sym_identifier_method_call] = ACTIONS(4924), + [sym_instance_var] = ACTIONS(4924), + [sym_class_var] = ACTIONS(4924), + [sym_self] = ACTIONS(4922), + [anon_sym_QMARK] = ACTIONS(5095), + [sym_private] = ACTIONS(4922), + [sym_protected] = ACTIONS(4922), + [anon_sym_alias] = ACTIONS(4922), + [anon_sym_begin] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_until] = ACTIONS(4922), + [anon_sym_require] = ACTIONS(4922), + [anon_sym_case] = ACTIONS(4922), + [anon_sym_select] = ACTIONS(4922), + [aux_sym_asm_token1] = ACTIONS(4924), [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__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__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__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), }, - [2090] = { - [sym_heredoc_body] = STATE(2090), + [2113] = { + [sym_heredoc_body] = STATE(2113), [sym_identifier] = ACTIONS(5144), [anon_sym_SEMI] = ACTIONS(5146), [anon_sym_LPAREN] = ACTIONS(5146), @@ -342049,8 +345294,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5146), [sym__heredoc_body_start] = ACTIONS(7), }, - [2091] = { - [sym_heredoc_body] = STATE(2091), + [2114] = { + [sym_heredoc_body] = STATE(2114), + [sym_identifier] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [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(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(4982), + [anon_sym_end] = ACTIONS(4982), + [anon_sym_AT_LBRACK] = ACTIONS(4980), + [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_lib] = ACTIONS(4982), + [anon_sym_fun] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_def] = 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(4980), + [anon_sym_COLON_COLON] = ACTIONS(4980), + [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(4980), + [sym_global_match_data_index] = ACTIONS(4980), + [sym_identifier_method_call] = ACTIONS(4980), + [sym_instance_var] = ACTIONS(4980), + [sym_class_var] = ACTIONS(4980), + [sym_self] = ACTIONS(4982), + [sym_private] = ACTIONS(4982), + [sym_protected] = 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), + [aux_sym_asm_token1] = ACTIONS(4980), + [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), + }, + [2115] = { + [sym_heredoc_body] = STATE(2115), + [sym_identifier] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [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(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(4982), + [anon_sym_end] = ACTIONS(4982), + [anon_sym_AT_LBRACK] = ACTIONS(4980), + [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_lib] = ACTIONS(4982), + [anon_sym_fun] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_def] = 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(4980), + [anon_sym_COLON_COLON] = ACTIONS(4980), + [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(4980), + [sym_global_match_data_index] = ACTIONS(4980), + [sym_identifier_method_call] = ACTIONS(4980), + [sym_instance_var] = ACTIONS(4980), + [sym_class_var] = ACTIONS(4980), + [sym_self] = ACTIONS(4982), + [sym_private] = ACTIONS(4982), + [sym_protected] = 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), + [aux_sym_asm_token1] = ACTIONS(4980), + [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), + }, + [2116] = { + [sym_heredoc_body] = STATE(2116), + [sym_identifier] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5029), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5031), + [sym_true] = ACTIONS(5031), + [sym_false] = ACTIONS(5031), + [aux_sym_integer_token2] = ACTIONS(5031), + [aux_sym_float_token2] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [sym_operator_symbol] = ACTIONS(5029), + [sym_unquoted_symbol] = ACTIONS(5029), + [anon_sym_COLON_DQUOTE] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5029), + [anon_sym_DASH_GT] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_end] = ACTIONS(5031), + [anon_sym_AT_LBRACK] = ACTIONS(5029), + [anon_sym_module] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_class] = ACTIONS(5031), + [anon_sym_struct] = ACTIONS(5031), + [anon_sym_enum] = ACTIONS(5031), + [anon_sym_lib] = ACTIONS(5031), + [anon_sym_fun] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_TILDE] = ACTIONS(5029), + [anon_sym_def] = ACTIONS(5031), + [anon_sym_include] = ACTIONS(5031), + [anon_sym_extend] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_next] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_with] = ACTIONS(5031), + [anon_sym_yield] = ACTIONS(5031), + [anon_sym_typeof] = ACTIONS(5031), + [anon_sym_sizeof] = ACTIONS(5031), + [anon_sym_instance_sizeof] = ACTIONS(5031), + [anon_sym_offsetof] = ACTIONS(5031), + [sym__constant_segment] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5029), + [anon_sym___LINE__] = ACTIONS(5031), + [anon_sym___END_LINE__] = ACTIONS(5031), + [anon_sym___FILE__] = ACTIONS(5031), + [anon_sym___DIR__] = ACTIONS(5031), + [sym_special_variable] = ACTIONS(5029), + [sym_global_match_data_index] = ACTIONS(5029), + [sym_identifier_method_call] = ACTIONS(5029), + [sym_instance_var] = ACTIONS(5029), + [sym_class_var] = ACTIONS(5029), + [sym_self] = ACTIONS(5031), + [sym_private] = ACTIONS(5031), + [sym_protected] = ACTIONS(5031), + [anon_sym_alias] = ACTIONS(5031), + [anon_sym_begin] = ACTIONS(5031), + [anon_sym_while] = ACTIONS(5031), + [anon_sym_until] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5031), + [anon_sym_require] = ACTIONS(5031), + [anon_sym_case] = ACTIONS(5031), + [anon_sym_select] = ACTIONS(5031), + [aux_sym_asm_token1] = ACTIONS(5029), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5029), + [sym__start_of_named_tuple] = ACTIONS(5029), + [sym_unary_plus] = ACTIONS(5029), + [sym_unary_minus] = ACTIONS(5029), + [sym_unary_wrapping_plus] = ACTIONS(5029), + [sym_unary_wrapping_minus] = ACTIONS(5029), + [sym__beginless_range_operator] = ACTIONS(5029), + [sym__regex_start] = ACTIONS(5029), + [sym__regular_if_keyword] = ACTIONS(5029), + [sym__regular_unless_keyword] = ACTIONS(5029), + [sym__regular_rescue_keyword] = ACTIONS(5029), + [sym__regular_ensure_keyword] = ACTIONS(5029), + [sym__string_literal_start] = ACTIONS(5029), + [sym__string_percent_literal_start] = ACTIONS(5029), + [sym__command_percent_literal_start] = ACTIONS(5029), + [sym__string_array_percent_literal_start] = ACTIONS(5029), + [sym__symbol_array_percent_literal_start] = ACTIONS(5029), + [sym__regex_percent_literal_start] = ACTIONS(5029), + [sym_heredoc_start] = ACTIONS(5029), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2117] = { + [sym_heredoc_body] = STATE(2117), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -342137,447 +345646,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2092] = { - [sym_heredoc_body] = STATE(2092), - [sym_identifier] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5000), - [anon_sym_LPAREN] = ACTIONS(5000), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5002), - [sym_true] = ACTIONS(5002), - [sym_false] = ACTIONS(5002), - [aux_sym_integer_token2] = ACTIONS(5002), - [aux_sym_float_token2] = ACTIONS(5000), - [anon_sym_SQUOTE] = ACTIONS(5000), - [sym_operator_symbol] = ACTIONS(5000), - [sym_unquoted_symbol] = ACTIONS(5000), - [anon_sym_COLON_DQUOTE] = ACTIONS(5000), - [anon_sym_BQUOTE] = ACTIONS(5000), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_DASH_GT] = ACTIONS(5000), - [anon_sym_annotation] = ACTIONS(5002), - [anon_sym_end] = ACTIONS(5002), - [anon_sym_AT_LBRACK] = ACTIONS(5000), - [anon_sym_module] = ACTIONS(5002), - [anon_sym_abstract] = ACTIONS(5002), - [anon_sym_class] = ACTIONS(5002), - [anon_sym_struct] = ACTIONS(5002), - [anon_sym_enum] = ACTIONS(5002), - [anon_sym_lib] = ACTIONS(5002), - [anon_sym_fun] = ACTIONS(5002), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5000), - [anon_sym_def] = ACTIONS(5002), - [anon_sym_include] = ACTIONS(5002), - [anon_sym_extend] = ACTIONS(5002), - [anon_sym_return] = ACTIONS(5002), - [anon_sym_next] = ACTIONS(5002), - [anon_sym_break] = ACTIONS(5002), - [anon_sym_with] = ACTIONS(5002), - [anon_sym_yield] = ACTIONS(5002), - [anon_sym_typeof] = ACTIONS(5002), - [anon_sym_sizeof] = ACTIONS(5002), - [anon_sym_instance_sizeof] = ACTIONS(5002), - [anon_sym_offsetof] = ACTIONS(5002), - [sym__constant_segment] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5000), - [anon_sym___LINE__] = ACTIONS(5002), - [anon_sym___END_LINE__] = ACTIONS(5002), - [anon_sym___FILE__] = ACTIONS(5002), - [anon_sym___DIR__] = ACTIONS(5002), - [sym_special_variable] = ACTIONS(5000), - [sym_global_match_data_index] = ACTIONS(5000), - [sym_identifier_method_call] = ACTIONS(5000), - [sym_instance_var] = ACTIONS(5000), - [sym_class_var] = ACTIONS(5000), - [sym_self] = ACTIONS(5002), - [sym_private] = ACTIONS(5002), - [sym_protected] = ACTIONS(5002), - [anon_sym_alias] = ACTIONS(5002), - [anon_sym_begin] = ACTIONS(5002), - [anon_sym_while] = ACTIONS(5002), - [anon_sym_until] = ACTIONS(5002), - [anon_sym_else] = ACTIONS(5002), - [anon_sym_require] = ACTIONS(5002), - [anon_sym_case] = ACTIONS(5002), - [anon_sym_select] = ACTIONS(5002), - [aux_sym_asm_token1] = ACTIONS(5000), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5000), - [sym__start_of_named_tuple] = ACTIONS(5000), - [sym_unary_plus] = ACTIONS(5000), - [sym_unary_minus] = ACTIONS(5000), - [sym_unary_wrapping_plus] = ACTIONS(5000), - [sym_unary_wrapping_minus] = ACTIONS(5000), - [sym__beginless_range_operator] = ACTIONS(5000), - [sym__regex_start] = ACTIONS(5000), - [sym__regular_if_keyword] = ACTIONS(5000), - [sym__regular_unless_keyword] = ACTIONS(5000), - [sym__regular_rescue_keyword] = ACTIONS(5000), - [sym__regular_ensure_keyword] = ACTIONS(5000), - [sym__string_literal_start] = ACTIONS(5000), - [sym__string_percent_literal_start] = ACTIONS(5000), - [sym__command_percent_literal_start] = ACTIONS(5000), - [sym__string_array_percent_literal_start] = ACTIONS(5000), - [sym__symbol_array_percent_literal_start] = ACTIONS(5000), - [sym__regex_percent_literal_start] = ACTIONS(5000), - [sym_heredoc_start] = ACTIONS(5000), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2093] = { - [sym_heredoc_body] = STATE(2093), - [sym_identifier] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5032), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5034), - [sym_true] = ACTIONS(5034), - [sym_false] = ACTIONS(5034), - [aux_sym_integer_token2] = ACTIONS(5034), - [aux_sym_float_token2] = ACTIONS(5032), - [anon_sym_SQUOTE] = ACTIONS(5032), - [sym_operator_symbol] = ACTIONS(5032), - [sym_unquoted_symbol] = ACTIONS(5032), - [anon_sym_COLON_DQUOTE] = ACTIONS(5032), - [anon_sym_BQUOTE] = ACTIONS(5032), - [anon_sym_LBRACK] = ACTIONS(5032), - [anon_sym_DASH_GT] = ACTIONS(5032), - [anon_sym_annotation] = ACTIONS(5034), - [anon_sym_end] = ACTIONS(5034), - [anon_sym_AT_LBRACK] = ACTIONS(5032), - [anon_sym_module] = ACTIONS(5034), - [anon_sym_abstract] = ACTIONS(5034), - [anon_sym_class] = ACTIONS(5034), - [anon_sym_struct] = ACTIONS(5034), - [anon_sym_enum] = ACTIONS(5034), - [anon_sym_lib] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_STAR] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [anon_sym_def] = ACTIONS(5034), - [anon_sym_include] = ACTIONS(5034), - [anon_sym_extend] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_next] = ACTIONS(5034), - [anon_sym_break] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_typeof] = ACTIONS(5034), - [anon_sym_sizeof] = ACTIONS(5034), - [anon_sym_instance_sizeof] = ACTIONS(5034), - [anon_sym_offsetof] = ACTIONS(5034), - [sym__constant_segment] = ACTIONS(5032), - [anon_sym_COLON_COLON] = ACTIONS(5032), - [anon_sym___LINE__] = ACTIONS(5034), - [anon_sym___END_LINE__] = ACTIONS(5034), - [anon_sym___FILE__] = ACTIONS(5034), - [anon_sym___DIR__] = ACTIONS(5034), - [sym_special_variable] = ACTIONS(5032), - [sym_global_match_data_index] = ACTIONS(5032), - [sym_identifier_method_call] = ACTIONS(5032), - [sym_instance_var] = ACTIONS(5032), - [sym_class_var] = ACTIONS(5032), - [sym_self] = ACTIONS(5034), - [sym_private] = ACTIONS(5034), - [sym_protected] = ACTIONS(5034), - [anon_sym_alias] = ACTIONS(5034), - [anon_sym_begin] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_until] = ACTIONS(5034), - [anon_sym_else] = ACTIONS(5034), - [anon_sym_require] = ACTIONS(5034), - [anon_sym_case] = ACTIONS(5034), - [anon_sym_select] = ACTIONS(5034), - [aux_sym_asm_token1] = ACTIONS(5032), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5032), - [sym__start_of_named_tuple] = ACTIONS(5032), - [sym_unary_plus] = ACTIONS(5032), - [sym_unary_minus] = ACTIONS(5032), - [sym_unary_wrapping_plus] = ACTIONS(5032), - [sym_unary_wrapping_minus] = ACTIONS(5032), - [sym__beginless_range_operator] = ACTIONS(5032), - [sym__regex_start] = ACTIONS(5032), - [sym__regular_if_keyword] = ACTIONS(5032), - [sym__regular_unless_keyword] = ACTIONS(5032), - [sym__regular_rescue_keyword] = ACTIONS(5032), - [sym__regular_ensure_keyword] = ACTIONS(5032), - [sym__string_literal_start] = ACTIONS(5032), - [sym__string_percent_literal_start] = ACTIONS(5032), - [sym__command_percent_literal_start] = ACTIONS(5032), - [sym__string_array_percent_literal_start] = ACTIONS(5032), - [sym__symbol_array_percent_literal_start] = ACTIONS(5032), - [sym__regex_percent_literal_start] = ACTIONS(5032), - [sym_heredoc_start] = ACTIONS(5032), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2094] = { - [sym_heredoc_body] = STATE(2094), - [sym_identifier] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5032), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5034), - [sym_true] = ACTIONS(5034), - [sym_false] = ACTIONS(5034), - [aux_sym_integer_token2] = ACTIONS(5034), - [aux_sym_float_token2] = ACTIONS(5032), - [anon_sym_SQUOTE] = ACTIONS(5032), - [sym_operator_symbol] = ACTIONS(5032), - [sym_unquoted_symbol] = ACTIONS(5032), - [anon_sym_COLON_DQUOTE] = ACTIONS(5032), - [anon_sym_BQUOTE] = ACTIONS(5032), - [anon_sym_LBRACK] = ACTIONS(5032), - [anon_sym_DASH_GT] = ACTIONS(5032), - [anon_sym_annotation] = ACTIONS(5034), - [anon_sym_end] = ACTIONS(5034), - [anon_sym_AT_LBRACK] = ACTIONS(5032), - [anon_sym_module] = ACTIONS(5034), - [anon_sym_abstract] = ACTIONS(5034), - [anon_sym_class] = ACTIONS(5034), - [anon_sym_struct] = ACTIONS(5034), - [anon_sym_enum] = ACTIONS(5034), - [anon_sym_lib] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_STAR] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [anon_sym_def] = ACTIONS(5034), - [anon_sym_include] = ACTIONS(5034), - [anon_sym_extend] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_next] = ACTIONS(5034), - [anon_sym_break] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_typeof] = ACTIONS(5034), - [anon_sym_sizeof] = ACTIONS(5034), - [anon_sym_instance_sizeof] = ACTIONS(5034), - [anon_sym_offsetof] = ACTIONS(5034), - [sym__constant_segment] = ACTIONS(5032), - [anon_sym_COLON_COLON] = ACTIONS(5032), - [anon_sym___LINE__] = ACTIONS(5034), - [anon_sym___END_LINE__] = ACTIONS(5034), - [anon_sym___FILE__] = ACTIONS(5034), - [anon_sym___DIR__] = ACTIONS(5034), - [sym_special_variable] = ACTIONS(5032), - [sym_global_match_data_index] = ACTIONS(5032), - [sym_identifier_method_call] = ACTIONS(5032), - [sym_instance_var] = ACTIONS(5032), - [sym_class_var] = ACTIONS(5032), - [sym_self] = ACTIONS(5034), - [sym_private] = ACTIONS(5034), - [sym_protected] = ACTIONS(5034), - [anon_sym_alias] = ACTIONS(5034), - [anon_sym_begin] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_until] = ACTIONS(5034), - [anon_sym_else] = ACTIONS(5034), - [anon_sym_require] = ACTIONS(5034), - [anon_sym_case] = ACTIONS(5034), - [anon_sym_select] = ACTIONS(5034), - [aux_sym_asm_token1] = ACTIONS(5032), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5032), - [sym__start_of_named_tuple] = ACTIONS(5032), - [sym_unary_plus] = ACTIONS(5032), - [sym_unary_minus] = ACTIONS(5032), - [sym_unary_wrapping_plus] = ACTIONS(5032), - [sym_unary_wrapping_minus] = ACTIONS(5032), - [sym__beginless_range_operator] = ACTIONS(5032), - [sym__regex_start] = ACTIONS(5032), - [sym__regular_if_keyword] = ACTIONS(5032), - [sym__regular_unless_keyword] = ACTIONS(5032), - [sym__regular_rescue_keyword] = ACTIONS(5032), - [sym__regular_ensure_keyword] = ACTIONS(5032), - [sym__string_literal_start] = ACTIONS(5032), - [sym__string_percent_literal_start] = ACTIONS(5032), - [sym__command_percent_literal_start] = ACTIONS(5032), - [sym__string_array_percent_literal_start] = ACTIONS(5032), - [sym__symbol_array_percent_literal_start] = ACTIONS(5032), - [sym__regex_percent_literal_start] = ACTIONS(5032), - [sym_heredoc_start] = ACTIONS(5032), + [2118] = { + [sym_heredoc_body] = STATE(2118), + [aux_sym_constant_repeat1] = STATE(2121), + [sym_identifier] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4847), + [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_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_lib] = ACTIONS(4845), + [anon_sym_fun] = ACTIONS(4845), + [aux_sym_top_level_fun_def_token1] = ACTIONS(4847), + [anon_sym_STAR] = ACTIONS(4847), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_TILDE] = ACTIONS(4847), + [anon_sym_def] = 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(5148), + [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_global_match_data_index] = ACTIONS(4847), + [sym_identifier_method_call] = ACTIONS(4847), + [sym_instance_var] = ACTIONS(4847), + [sym_class_var] = ACTIONS(4847), + [sym_self] = ACTIONS(4845), + [sym_private] = ACTIONS(4845), + [sym_protected] = ACTIONS(4845), + [anon_sym_alias] = ACTIONS(4845), + [anon_sym_begin] = ACTIONS(4845), + [anon_sym_while] = ACTIONS(4845), + [anon_sym_until] = ACTIONS(4845), + [anon_sym_require] = ACTIONS(4845), + [anon_sym_case] = ACTIONS(4845), + [anon_sym_select] = ACTIONS(4845), + [aux_sym_asm_token1] = ACTIONS(4847), + [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__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), [sym__heredoc_body_start] = ACTIONS(7), }, - [2095] = { - [sym_heredoc_body] = STATE(2095), - [aux_sym_proc_type_repeat1] = STATE(10224), - [sym_identifier] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5004), - [sym_true] = ACTIONS(5004), - [sym_false] = ACTIONS(5004), - [aux_sym_integer_token2] = ACTIONS(5004), - [aux_sym_float_token2] = ACTIONS(5006), - [anon_sym_SQUOTE] = ACTIONS(5006), - [sym_operator_symbol] = ACTIONS(5006), - [sym_unquoted_symbol] = ACTIONS(5006), - [anon_sym_COLON_DQUOTE] = ACTIONS(5006), - [anon_sym_BQUOTE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5008), - [anon_sym_DASH_GT] = ACTIONS(5148), - [anon_sym_annotation] = ACTIONS(5004), - [anon_sym_end] = ACTIONS(5004), - [anon_sym_AT_LBRACK] = ACTIONS(5006), - [anon_sym_module] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_class] = ACTIONS(5004), - [anon_sym_struct] = ACTIONS(5004), - [anon_sym_enum] = ACTIONS(5004), - [anon_sym_lib] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_BANG] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_def] = ACTIONS(5004), - [anon_sym_include] = ACTIONS(5004), - [anon_sym_extend] = ACTIONS(5004), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_next] = ACTIONS(5004), - [anon_sym_break] = ACTIONS(5004), - [anon_sym_with] = ACTIONS(5004), - [anon_sym_yield] = ACTIONS(5004), - [anon_sym_typeof] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(5004), - [anon_sym_instance_sizeof] = ACTIONS(5004), - [anon_sym_offsetof] = ACTIONS(5004), - [sym__constant_segment] = ACTIONS(5006), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym___LINE__] = ACTIONS(5004), - [anon_sym___END_LINE__] = ACTIONS(5004), - [anon_sym___FILE__] = ACTIONS(5004), - [anon_sym___DIR__] = ACTIONS(5004), - [sym_special_variable] = ACTIONS(5006), - [sym_global_match_data_index] = ACTIONS(5006), - [sym_identifier_method_call] = ACTIONS(5006), - [sym_instance_var] = ACTIONS(5006), - [sym_class_var] = ACTIONS(5006), - [sym_self] = ACTIONS(5004), - [sym_private] = ACTIONS(5004), - [sym_protected] = ACTIONS(5004), - [anon_sym_alias] = ACTIONS(5004), - [anon_sym_begin] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_until] = ACTIONS(5004), - [anon_sym_require] = ACTIONS(5004), - [anon_sym_case] = ACTIONS(5004), - [anon_sym_select] = ACTIONS(5004), - [aux_sym_asm_token1] = ACTIONS(5006), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5006), - [sym__start_of_named_tuple] = ACTIONS(5006), - [sym_unary_plus] = ACTIONS(5006), - [sym_unary_minus] = ACTIONS(5006), - [sym_unary_wrapping_plus] = ACTIONS(5006), - [sym_unary_wrapping_minus] = ACTIONS(5006), - [sym__beginless_range_operator] = ACTIONS(5006), - [sym__regex_start] = ACTIONS(5006), - [sym__regular_if_keyword] = ACTIONS(5006), - [sym__regular_unless_keyword] = ACTIONS(5006), - [sym__string_literal_start] = ACTIONS(5006), - [sym__string_percent_literal_start] = ACTIONS(5006), - [sym__command_percent_literal_start] = ACTIONS(5006), - [sym__string_array_percent_literal_start] = ACTIONS(5006), - [sym__symbol_array_percent_literal_start] = ACTIONS(5006), - [sym__regex_percent_literal_start] = ACTIONS(5006), - [sym_heredoc_start] = ACTIONS(5006), + [2119] = { + [sym_heredoc_body] = STATE(2119), + [aux_sym_proc_type_repeat1] = STATE(10081), + [sym_identifier] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5020), + [sym_true] = ACTIONS(5020), + [sym_false] = ACTIONS(5020), + [aux_sym_integer_token2] = ACTIONS(5020), + [aux_sym_float_token2] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [sym_operator_symbol] = ACTIONS(5022), + [sym_unquoted_symbol] = ACTIONS(5022), + [anon_sym_COLON_DQUOTE] = ACTIONS(5022), + [anon_sym_BQUOTE] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5150), + [anon_sym_annotation] = ACTIONS(5020), + [anon_sym_end] = ACTIONS(5020), + [anon_sym_AT_LBRACK] = ACTIONS(5022), + [anon_sym_module] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_class] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_enum] = ACTIONS(5020), + [anon_sym_lib] = ACTIONS(5020), + [anon_sym_fun] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_def] = ACTIONS(5020), + [anon_sym_include] = ACTIONS(5020), + [anon_sym_extend] = ACTIONS(5020), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_next] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_with] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_typeof] = ACTIONS(5020), + [anon_sym_sizeof] = ACTIONS(5020), + [anon_sym_instance_sizeof] = ACTIONS(5020), + [anon_sym_offsetof] = ACTIONS(5020), + [sym__constant_segment] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym___LINE__] = ACTIONS(5020), + [anon_sym___END_LINE__] = ACTIONS(5020), + [anon_sym___FILE__] = ACTIONS(5020), + [anon_sym___DIR__] = ACTIONS(5020), + [sym_special_variable] = ACTIONS(5022), + [sym_global_match_data_index] = ACTIONS(5022), + [sym_identifier_method_call] = ACTIONS(5022), + [sym_instance_var] = ACTIONS(5022), + [sym_class_var] = ACTIONS(5022), + [sym_self] = ACTIONS(5020), + [sym_private] = ACTIONS(5020), + [sym_protected] = ACTIONS(5020), + [anon_sym_alias] = ACTIONS(5020), + [anon_sym_begin] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_until] = ACTIONS(5020), + [anon_sym_require] = ACTIONS(5020), + [anon_sym_case] = ACTIONS(5020), + [anon_sym_select] = ACTIONS(5020), + [aux_sym_asm_token1] = ACTIONS(5022), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5022), + [sym__start_of_named_tuple] = ACTIONS(5022), + [sym_unary_plus] = ACTIONS(5022), + [sym_unary_minus] = ACTIONS(5022), + [sym_unary_wrapping_plus] = ACTIONS(5022), + [sym_unary_wrapping_minus] = ACTIONS(5022), + [sym__beginless_range_operator] = ACTIONS(5022), + [sym__regex_start] = ACTIONS(5022), + [sym__regular_if_keyword] = ACTIONS(5022), + [sym__regular_unless_keyword] = ACTIONS(5022), + [sym__string_literal_start] = ACTIONS(5022), + [sym__string_percent_literal_start] = ACTIONS(5022), + [sym__command_percent_literal_start] = ACTIONS(5022), + [sym__string_array_percent_literal_start] = ACTIONS(5022), + [sym__symbol_array_percent_literal_start] = ACTIONS(5022), + [sym__regex_percent_literal_start] = ACTIONS(5022), + [sym_heredoc_start] = ACTIONS(5022), [sym__heredoc_body_start] = ACTIONS(7), }, - [2096] = { - [sym_heredoc_body] = STATE(2096), - [aux_sym_constant_repeat1] = STATE(2099), - [sym_identifier] = ACTIONS(4855), - [anon_sym_SEMI] = ACTIONS(4857), - [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_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_lib] = ACTIONS(4855), - [anon_sym_fun] = ACTIONS(4855), - [aux_sym_top_level_fun_def_token1] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4857), - [anon_sym_BANG] = ACTIONS(4857), - [anon_sym_TILDE] = ACTIONS(4857), - [anon_sym_def] = 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(5151), - [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_global_match_data_index] = ACTIONS(4857), - [sym_identifier_method_call] = ACTIONS(4857), - [sym_instance_var] = ACTIONS(4857), - [sym_class_var] = ACTIONS(4857), - [sym_self] = ACTIONS(4855), - [sym_private] = ACTIONS(4855), - [sym_protected] = ACTIONS(4855), - [anon_sym_alias] = ACTIONS(4855), - [anon_sym_begin] = ACTIONS(4855), - [anon_sym_while] = ACTIONS(4855), - [anon_sym_until] = ACTIONS(4855), - [anon_sym_require] = ACTIONS(4855), - [anon_sym_case] = ACTIONS(4855), - [anon_sym_select] = ACTIONS(4855), - [aux_sym_asm_token1] = ACTIONS(4857), - [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__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), + [2120] = { + [sym_heredoc_body] = STATE(2120), + [aux_sym_constant_repeat1] = STATE(2123), + [sym_identifier] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4847), + [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_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_lib] = ACTIONS(4845), + [anon_sym_fun] = ACTIONS(4845), + [aux_sym_top_level_fun_def_token1] = ACTIONS(4847), + [anon_sym_STAR] = ACTIONS(4847), + [anon_sym_BANG] = ACTIONS(4847), + [anon_sym_TILDE] = ACTIONS(4847), + [anon_sym_def] = 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(5148), + [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_global_match_data_index] = ACTIONS(4847), + [sym_identifier_method_call] = ACTIONS(4847), + [sym_instance_var] = ACTIONS(4847), + [sym_class_var] = ACTIONS(4847), + [sym_self] = ACTIONS(4845), + [sym_private] = ACTIONS(4845), + [sym_protected] = ACTIONS(4845), + [anon_sym_alias] = ACTIONS(4845), + [anon_sym_begin] = ACTIONS(4845), + [anon_sym_while] = ACTIONS(4845), + [anon_sym_until] = ACTIONS(4845), + [anon_sym_require] = ACTIONS(4845), + [anon_sym_case] = ACTIONS(4845), + [anon_sym_select] = ACTIONS(4845), + [aux_sym_asm_token1] = ACTIONS(4847), + [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__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), [sym__heredoc_body_start] = ACTIONS(7), }, - [2097] = { - [sym_heredoc_body] = STATE(2097), - [aux_sym_constant_repeat1] = STATE(2100), + [2121] = { + [sym_heredoc_body] = STATE(2121), + [aux_sym_constant_repeat1] = STATE(2121), [sym_identifier] = ACTIONS(4838), [anon_sym_SEMI] = ACTIONS(4840), [anon_sym_LPAREN] = ACTIONS(4840), @@ -342621,7 +345953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(4838), [anon_sym_offsetof] = ACTIONS(4838), [sym__constant_segment] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_COLON_COLON] = ACTIONS(5153), [anon_sym___LINE__] = ACTIONS(4838), [anon_sym___END_LINE__] = ACTIONS(4838), [anon_sym___FILE__] = ACTIONS(4838), @@ -342662,183 +345994,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4840), [sym__heredoc_body_start] = ACTIONS(7), }, - [2098] = { - [sym_heredoc_body] = STATE(2098), - [aux_sym_constant_repeat1] = STATE(2098), - [sym_identifier] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(4846), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4844), - [sym_true] = ACTIONS(4844), - [sym_false] = ACTIONS(4844), - [aux_sym_integer_token2] = ACTIONS(4844), - [aux_sym_float_token2] = ACTIONS(4846), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym_operator_symbol] = ACTIONS(4846), - [sym_unquoted_symbol] = ACTIONS(4846), - [anon_sym_COLON_DQUOTE] = ACTIONS(4846), - [anon_sym_BQUOTE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_end] = ACTIONS(4844), - [anon_sym_AT_LBRACK] = ACTIONS(4846), - [anon_sym_module] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_class] = ACTIONS(4844), - [anon_sym_struct] = ACTIONS(4844), - [anon_sym_enum] = ACTIONS(4844), - [anon_sym_lib] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [aux_sym_top_level_fun_def_token1] = ACTIONS(4846), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_def] = ACTIONS(4844), - [anon_sym_include] = ACTIONS(4844), - [anon_sym_extend] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_next] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [anon_sym_yield] = ACTIONS(4844), - [anon_sym_typeof] = ACTIONS(4844), - [anon_sym_sizeof] = ACTIONS(4844), - [anon_sym_instance_sizeof] = ACTIONS(4844), - [anon_sym_offsetof] = ACTIONS(4844), - [sym__constant_segment] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(5153), - [anon_sym___LINE__] = ACTIONS(4844), - [anon_sym___END_LINE__] = ACTIONS(4844), - [anon_sym___FILE__] = ACTIONS(4844), - [anon_sym___DIR__] = ACTIONS(4844), - [sym_special_variable] = ACTIONS(4846), - [sym_global_match_data_index] = ACTIONS(4846), - [sym_identifier_method_call] = ACTIONS(4846), - [sym_instance_var] = ACTIONS(4846), - [sym_class_var] = ACTIONS(4846), - [sym_self] = ACTIONS(4844), - [sym_private] = ACTIONS(4844), - [sym_protected] = ACTIONS(4844), - [anon_sym_alias] = ACTIONS(4844), - [anon_sym_begin] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_until] = ACTIONS(4844), - [anon_sym_require] = ACTIONS(4844), - [anon_sym_case] = ACTIONS(4844), - [anon_sym_select] = ACTIONS(4844), - [aux_sym_asm_token1] = ACTIONS(4846), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4846), - [sym__start_of_named_tuple] = ACTIONS(4846), - [sym_unary_plus] = ACTIONS(4846), - [sym_unary_minus] = ACTIONS(4846), - [sym_unary_wrapping_plus] = ACTIONS(4846), - [sym_unary_wrapping_minus] = ACTIONS(4846), - [sym__beginless_range_operator] = ACTIONS(4846), - [sym__regex_start] = ACTIONS(4846), - [sym__regular_if_keyword] = ACTIONS(4846), - [sym__regular_unless_keyword] = ACTIONS(4846), - [sym__string_literal_start] = ACTIONS(4846), - [sym__string_percent_literal_start] = ACTIONS(4846), - [sym__command_percent_literal_start] = ACTIONS(4846), - [sym__string_array_percent_literal_start] = ACTIONS(4846), - [sym__symbol_array_percent_literal_start] = ACTIONS(4846), - [sym__regex_percent_literal_start] = ACTIONS(4846), - [sym_heredoc_start] = ACTIONS(4846), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2099] = { - [sym_heredoc_body] = STATE(2099), - [aux_sym_constant_repeat1] = STATE(2098), - [sym_identifier] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4840), - [anon_sym_LPAREN] = ACTIONS(4840), + [2122] = { + [sym_heredoc_body] = STATE(2122), + [aux_sym_constant_repeat1] = STATE(2118), + [sym_identifier] = ACTIONS(4855), + [anon_sym_SEMI] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4857), [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_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_lib] = ACTIONS(4838), - [anon_sym_fun] = ACTIONS(4838), - [aux_sym_top_level_fun_def_token1] = ACTIONS(4840), - [anon_sym_STAR] = ACTIONS(4840), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_TILDE] = ACTIONS(4840), - [anon_sym_def] = 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(5151), - [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_global_match_data_index] = ACTIONS(4840), - [sym_identifier_method_call] = ACTIONS(4840), - [sym_instance_var] = ACTIONS(4840), - [sym_class_var] = ACTIONS(4840), - [sym_self] = ACTIONS(4838), - [sym_private] = ACTIONS(4838), - [sym_protected] = ACTIONS(4838), - [anon_sym_alias] = ACTIONS(4838), - [anon_sym_begin] = ACTIONS(4838), - [anon_sym_while] = ACTIONS(4838), - [anon_sym_until] = ACTIONS(4838), - [anon_sym_require] = ACTIONS(4838), - [anon_sym_case] = ACTIONS(4838), - [anon_sym_select] = ACTIONS(4838), - [aux_sym_asm_token1] = ACTIONS(4840), + [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_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_lib] = ACTIONS(4855), + [anon_sym_fun] = ACTIONS(4855), + [aux_sym_top_level_fun_def_token1] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_TILDE] = ACTIONS(4857), + [anon_sym_def] = 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(5148), + [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_global_match_data_index] = ACTIONS(4857), + [sym_identifier_method_call] = ACTIONS(4857), + [sym_instance_var] = ACTIONS(4857), + [sym_class_var] = ACTIONS(4857), + [sym_self] = ACTIONS(4855), + [sym_private] = ACTIONS(4855), + [sym_protected] = ACTIONS(4855), + [anon_sym_alias] = ACTIONS(4855), + [anon_sym_begin] = ACTIONS(4855), + [anon_sym_while] = ACTIONS(4855), + [anon_sym_until] = ACTIONS(4855), + [anon_sym_require] = ACTIONS(4855), + [anon_sym_case] = ACTIONS(4855), + [anon_sym_select] = ACTIONS(4855), + [aux_sym_asm_token1] = ACTIONS(4857), [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__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), + [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__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), }, - [2100] = { - [sym_heredoc_body] = STATE(2100), - [aux_sym_constant_repeat1] = STATE(2098), + [2123] = { + [sym_heredoc_body] = STATE(2123), + [aux_sym_constant_repeat1] = STATE(2121), [sym_identifier] = ACTIONS(4851), [anon_sym_SEMI] = ACTIONS(4853), [anon_sym_LPAREN] = ACTIONS(4853), @@ -342882,7 +346127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instance_sizeof] = ACTIONS(4851), [anon_sym_offsetof] = ACTIONS(4851), [sym__constant_segment] = ACTIONS(4853), - [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_COLON_COLON] = ACTIONS(5148), [anon_sym___LINE__] = ACTIONS(4851), [anon_sym___END_LINE__] = ACTIONS(4851), [anon_sym___FILE__] = ACTIONS(4851), @@ -342923,8 +346168,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4853), [sym__heredoc_body_start] = ACTIONS(7), }, - [2101] = { - [sym_heredoc_body] = STATE(2101), + [2124] = { + [sym_heredoc_body] = STATE(2124), + [sym_identifier] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [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(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(4982), + [anon_sym_end] = ACTIONS(4982), + [anon_sym_AT_LBRACK] = ACTIONS(4980), + [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_lib] = ACTIONS(4982), + [anon_sym_fun] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_def] = 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(4980), + [anon_sym_COLON_COLON] = ACTIONS(4980), + [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(4980), + [sym_global_match_data_index] = ACTIONS(4980), + [sym_identifier_method_call] = ACTIONS(4980), + [sym_instance_var] = ACTIONS(4980), + [sym_class_var] = ACTIONS(4980), + [sym_self] = ACTIONS(4982), + [sym_private] = ACTIONS(4982), + [sym_protected] = ACTIONS(4982), + [anon_sym_alias] = ACTIONS(4982), + [anon_sym_begin] = ACTIONS(4982), + [anon_sym_while] = ACTIONS(4982), + [anon_sym_until] = ACTIONS(4982), + [anon_sym_require] = ACTIONS(4982), + [anon_sym_case] = ACTIONS(4982), + [anon_sym_select] = ACTIONS(4982), + [aux_sym_asm_token1] = ACTIONS(4980), + [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_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), + }, + [2125] = { + [sym_heredoc_body] = STATE(2125), [sym_identifier] = ACTIONS(5156), [anon_sym_SEMI] = ACTIONS(5158), [anon_sym_LPAREN] = ACTIONS(5158), @@ -343009,266 +346340,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5158), [sym__heredoc_body_start] = ACTIONS(7), }, - [2102] = { - [sym_heredoc_body] = STATE(2102), - [sym_identifier] = ACTIONS(5160), - [anon_sym_SEMI] = ACTIONS(5162), - [anon_sym_LPAREN] = ACTIONS(5162), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5160), - [sym_true] = ACTIONS(5160), - [sym_false] = ACTIONS(5160), - [aux_sym_integer_token2] = ACTIONS(5160), - [aux_sym_float_token2] = ACTIONS(5162), - [anon_sym_SQUOTE] = ACTIONS(5162), - [sym_operator_symbol] = ACTIONS(5162), - [sym_unquoted_symbol] = ACTIONS(5162), - [anon_sym_COLON_DQUOTE] = ACTIONS(5162), - [anon_sym_BQUOTE] = ACTIONS(5162), - [anon_sym_LBRACK] = ACTIONS(5162), - [anon_sym_DASH_GT] = ACTIONS(5162), - [anon_sym_annotation] = ACTIONS(5160), - [anon_sym_end] = ACTIONS(5160), - [anon_sym_AT_LBRACK] = ACTIONS(5162), - [anon_sym_module] = ACTIONS(5160), - [anon_sym_abstract] = ACTIONS(5160), - [anon_sym_class] = ACTIONS(5160), - [anon_sym_struct] = ACTIONS(5160), - [anon_sym_enum] = ACTIONS(5160), - [anon_sym_lib] = ACTIONS(5160), - [anon_sym_fun] = ACTIONS(5160), - [aux_sym_top_level_fun_def_token1] = ACTIONS(5162), - [anon_sym_STAR] = ACTIONS(5162), - [anon_sym_BANG] = ACTIONS(5162), - [anon_sym_TILDE] = ACTIONS(5162), - [anon_sym_def] = ACTIONS(5160), - [anon_sym_include] = ACTIONS(5160), - [anon_sym_extend] = ACTIONS(5160), - [anon_sym_return] = ACTIONS(5160), - [anon_sym_next] = ACTIONS(5160), - [anon_sym_break] = ACTIONS(5160), - [anon_sym_with] = ACTIONS(5160), - [anon_sym_yield] = ACTIONS(5160), - [anon_sym_typeof] = ACTIONS(5160), - [anon_sym_sizeof] = ACTIONS(5160), - [anon_sym_instance_sizeof] = ACTIONS(5160), - [anon_sym_offsetof] = ACTIONS(5160), - [sym__constant_segment] = ACTIONS(5162), - [anon_sym_COLON_COLON] = ACTIONS(5162), - [anon_sym___LINE__] = ACTIONS(5160), - [anon_sym___END_LINE__] = ACTIONS(5160), - [anon_sym___FILE__] = ACTIONS(5160), - [anon_sym___DIR__] = ACTIONS(5160), - [sym_special_variable] = ACTIONS(5162), - [sym_global_match_data_index] = ACTIONS(5162), - [sym_identifier_method_call] = ACTIONS(5162), - [sym_instance_var] = ACTIONS(5162), - [sym_class_var] = ACTIONS(5162), - [sym_self] = ACTIONS(5160), - [sym_private] = ACTIONS(5160), - [sym_protected] = ACTIONS(5160), - [anon_sym_alias] = ACTIONS(5160), - [anon_sym_begin] = ACTIONS(5160), - [anon_sym_while] = ACTIONS(5160), - [anon_sym_until] = ACTIONS(5160), - [anon_sym_require] = ACTIONS(5160), - [anon_sym_case] = ACTIONS(5160), - [anon_sym_select] = ACTIONS(5160), - [aux_sym_asm_token1] = ACTIONS(5162), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5162), - [sym__start_of_named_tuple] = ACTIONS(5162), - [sym_unary_plus] = ACTIONS(5162), - [sym_unary_minus] = ACTIONS(5162), - [sym_unary_wrapping_plus] = ACTIONS(5162), - [sym_unary_wrapping_minus] = ACTIONS(5162), - [sym__beginless_range_operator] = ACTIONS(5162), - [sym__regex_start] = ACTIONS(5162), - [sym__regular_if_keyword] = ACTIONS(5162), - [sym__regular_unless_keyword] = ACTIONS(5162), - [sym__string_literal_start] = ACTIONS(5162), - [sym__string_percent_literal_start] = ACTIONS(5162), - [sym__command_percent_literal_start] = ACTIONS(5162), - [sym__string_array_percent_literal_start] = ACTIONS(5162), - [sym__symbol_array_percent_literal_start] = ACTIONS(5162), - [sym__regex_percent_literal_start] = ACTIONS(5162), - [sym_heredoc_start] = ACTIONS(5162), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2103] = { - [sym_heredoc_body] = STATE(2103), - [sym_identifier] = ACTIONS(5002), - [anon_sym_SEMI] = ACTIONS(5000), - [anon_sym_LPAREN] = ACTIONS(5000), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5002), - [sym_true] = ACTIONS(5002), - [sym_false] = ACTIONS(5002), - [aux_sym_integer_token2] = ACTIONS(5002), - [aux_sym_float_token2] = ACTIONS(5000), - [anon_sym_SQUOTE] = ACTIONS(5000), - [sym_operator_symbol] = ACTIONS(5000), - [sym_unquoted_symbol] = ACTIONS(5000), - [anon_sym_COLON_DQUOTE] = ACTIONS(5000), - [anon_sym_BQUOTE] = ACTIONS(5000), - [anon_sym_LBRACK] = ACTIONS(5000), - [anon_sym_DASH_GT] = ACTIONS(5000), - [anon_sym_annotation] = ACTIONS(5002), - [anon_sym_end] = ACTIONS(5002), - [anon_sym_AT_LBRACK] = ACTIONS(5000), - [anon_sym_module] = ACTIONS(5002), - [anon_sym_abstract] = ACTIONS(5002), - [anon_sym_class] = ACTIONS(5002), - [anon_sym_struct] = ACTIONS(5002), - [anon_sym_enum] = ACTIONS(5002), - [anon_sym_lib] = ACTIONS(5002), - [anon_sym_fun] = ACTIONS(5002), - [anon_sym_STAR] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_TILDE] = ACTIONS(5000), - [anon_sym_def] = ACTIONS(5002), - [anon_sym_include] = ACTIONS(5002), - [anon_sym_extend] = ACTIONS(5002), - [anon_sym_return] = ACTIONS(5002), - [anon_sym_next] = ACTIONS(5002), - [anon_sym_break] = ACTIONS(5002), - [anon_sym_with] = ACTIONS(5002), - [anon_sym_yield] = ACTIONS(5002), - [anon_sym_typeof] = ACTIONS(5002), - [anon_sym_sizeof] = ACTIONS(5002), - [anon_sym_instance_sizeof] = ACTIONS(5002), - [anon_sym_offsetof] = ACTIONS(5002), - [sym__constant_segment] = ACTIONS(5000), - [anon_sym_COLON_COLON] = ACTIONS(5000), - [anon_sym___LINE__] = ACTIONS(5002), - [anon_sym___END_LINE__] = ACTIONS(5002), - [anon_sym___FILE__] = ACTIONS(5002), - [anon_sym___DIR__] = ACTIONS(5002), - [sym_special_variable] = ACTIONS(5000), - [sym_global_match_data_index] = ACTIONS(5000), - [sym_identifier_method_call] = ACTIONS(5000), - [sym_instance_var] = ACTIONS(5000), - [sym_class_var] = ACTIONS(5000), - [sym_self] = ACTIONS(5002), - [sym_private] = ACTIONS(5002), - [sym_protected] = ACTIONS(5002), - [anon_sym_alias] = ACTIONS(5002), - [anon_sym_begin] = ACTIONS(5002), - [anon_sym_while] = ACTIONS(5002), - [anon_sym_until] = ACTIONS(5002), - [anon_sym_require] = ACTIONS(5002), - [anon_sym_case] = ACTIONS(5002), - [anon_sym_select] = ACTIONS(5002), - [aux_sym_asm_token1] = ACTIONS(5000), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5000), - [sym__start_of_named_tuple] = ACTIONS(5000), - [sym_unary_plus] = ACTIONS(5000), - [sym_unary_minus] = ACTIONS(5000), - [sym_unary_wrapping_plus] = ACTIONS(5000), - [sym_unary_wrapping_minus] = ACTIONS(5000), - [sym__beginless_range_operator] = ACTIONS(5000), - [sym__regex_start] = ACTIONS(5000), - [sym__regular_if_keyword] = ACTIONS(5000), - [sym__regular_unless_keyword] = ACTIONS(5000), - [sym__regular_ensure_keyword] = ACTIONS(5000), - [sym__string_literal_start] = ACTIONS(5000), - [sym__string_percent_literal_start] = ACTIONS(5000), - [sym__command_percent_literal_start] = ACTIONS(5000), - [sym__string_array_percent_literal_start] = ACTIONS(5000), - [sym__symbol_array_percent_literal_start] = ACTIONS(5000), - [sym__regex_percent_literal_start] = ACTIONS(5000), - [sym_heredoc_start] = ACTIONS(5000), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2104] = { - [sym_heredoc_body] = STATE(2104), - [sym_identifier] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1696), - [sym_true] = ACTIONS(1696), - [sym_false] = ACTIONS(1696), - [aux_sym_integer_token2] = ACTIONS(1696), - [aux_sym_float_token2] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [sym_operator_symbol] = ACTIONS(1655), - [sym_unquoted_symbol] = ACTIONS(1655), - [anon_sym_COLON_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_DASH_GT] = ACTIONS(1655), - [anon_sym_annotation] = ACTIONS(1696), - [anon_sym_end] = ACTIONS(1696), - [anon_sym_AT_LBRACK] = ACTIONS(1655), - [anon_sym_module] = ACTIONS(1696), - [anon_sym_abstract] = ACTIONS(1696), - [anon_sym_class] = ACTIONS(1696), - [anon_sym_struct] = ACTIONS(1696), - [anon_sym_enum] = ACTIONS(1696), - [anon_sym_lib] = ACTIONS(1696), - [anon_sym_fun] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_def] = ACTIONS(1696), - [anon_sym_include] = ACTIONS(1696), - [anon_sym_extend] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_next] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_with] = ACTIONS(1696), - [anon_sym_yield] = ACTIONS(1696), - [anon_sym_typeof] = ACTIONS(1696), - [anon_sym_sizeof] = ACTIONS(1696), - [anon_sym_instance_sizeof] = ACTIONS(1696), - [anon_sym_offsetof] = ACTIONS(1696), - [sym__constant_segment] = ACTIONS(1655), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym___LINE__] = ACTIONS(1696), - [anon_sym___END_LINE__] = ACTIONS(1696), - [anon_sym___FILE__] = ACTIONS(1696), - [anon_sym___DIR__] = ACTIONS(1696), - [sym_special_variable] = ACTIONS(1655), - [sym_global_match_data_index] = ACTIONS(1655), - [sym_identifier_method_call] = ACTIONS(1655), - [sym_instance_var] = ACTIONS(1655), - [sym_class_var] = ACTIONS(1655), - [sym_self] = ACTIONS(1696), - [sym_private] = ACTIONS(1696), - [sym_protected] = ACTIONS(1696), - [anon_sym_alias] = ACTIONS(1696), - [anon_sym_begin] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_until] = ACTIONS(1696), - [anon_sym_require] = ACTIONS(1696), - [anon_sym_case] = ACTIONS(1696), - [anon_sym_select] = ACTIONS(1696), - [aux_sym_asm_token1] = ACTIONS(1655), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1655), - [sym__start_of_named_tuple] = ACTIONS(1655), - [sym_unary_plus] = ACTIONS(1655), - [sym_unary_minus] = ACTIONS(1655), - [sym_unary_wrapping_plus] = ACTIONS(1655), - [sym_unary_wrapping_minus] = ACTIONS(1655), - [sym__beginless_range_operator] = ACTIONS(1655), - [sym__regex_start] = ACTIONS(1655), - [sym__regular_if_keyword] = ACTIONS(1655), - [sym__regular_unless_keyword] = ACTIONS(1655), - [sym__regular_ensure_keyword] = ACTIONS(1655), - [sym__string_literal_start] = ACTIONS(1655), - [sym__string_percent_literal_start] = ACTIONS(1655), - [sym__command_percent_literal_start] = ACTIONS(1655), - [sym__string_array_percent_literal_start] = ACTIONS(1655), - [sym__symbol_array_percent_literal_start] = ACTIONS(1655), - [sym__regex_percent_literal_start] = ACTIONS(1655), - [sym_heredoc_start] = ACTIONS(1655), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2105] = { - [sym_heredoc_body] = STATE(2105), + [2126] = { + [sym_heredoc_body] = STATE(2126), [sym_identifier] = ACTIONS(4859), [anon_sym_SEMI] = ACTIONS(4861), [anon_sym_LPAREN] = ACTIONS(4861), @@ -343353,180 +346426,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4861), [sym__heredoc_body_start] = ACTIONS(7), }, - [2106] = { - [sym_heredoc_body] = STATE(2106), - [sym_identifier] = ACTIONS(5034), - [anon_sym_SEMI] = ACTIONS(5032), - [anon_sym_LPAREN] = ACTIONS(5032), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5034), - [sym_true] = ACTIONS(5034), - [sym_false] = ACTIONS(5034), - [aux_sym_integer_token2] = ACTIONS(5034), - [aux_sym_float_token2] = ACTIONS(5032), - [anon_sym_SQUOTE] = ACTIONS(5032), - [sym_operator_symbol] = ACTIONS(5032), - [sym_unquoted_symbol] = ACTIONS(5032), - [anon_sym_COLON_DQUOTE] = ACTIONS(5032), - [anon_sym_BQUOTE] = ACTIONS(5032), - [anon_sym_LBRACK] = ACTIONS(5032), - [anon_sym_DASH_GT] = ACTIONS(5032), - [anon_sym_annotation] = ACTIONS(5034), - [anon_sym_end] = ACTIONS(5034), - [anon_sym_AT_LBRACK] = ACTIONS(5032), - [anon_sym_module] = ACTIONS(5034), - [anon_sym_abstract] = ACTIONS(5034), - [anon_sym_class] = ACTIONS(5034), - [anon_sym_struct] = ACTIONS(5034), - [anon_sym_enum] = ACTIONS(5034), - [anon_sym_lib] = ACTIONS(5034), - [anon_sym_fun] = ACTIONS(5034), - [anon_sym_STAR] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_TILDE] = ACTIONS(5032), - [anon_sym_def] = ACTIONS(5034), - [anon_sym_include] = ACTIONS(5034), - [anon_sym_extend] = ACTIONS(5034), - [anon_sym_return] = ACTIONS(5034), - [anon_sym_next] = ACTIONS(5034), - [anon_sym_break] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), - [anon_sym_yield] = ACTIONS(5034), - [anon_sym_typeof] = ACTIONS(5034), - [anon_sym_sizeof] = ACTIONS(5034), - [anon_sym_instance_sizeof] = ACTIONS(5034), - [anon_sym_offsetof] = ACTIONS(5034), - [sym__constant_segment] = ACTIONS(5032), - [anon_sym_COLON_COLON] = ACTIONS(5032), - [anon_sym___LINE__] = ACTIONS(5034), - [anon_sym___END_LINE__] = ACTIONS(5034), - [anon_sym___FILE__] = ACTIONS(5034), - [anon_sym___DIR__] = ACTIONS(5034), - [sym_special_variable] = ACTIONS(5032), - [sym_global_match_data_index] = ACTIONS(5032), - [sym_identifier_method_call] = ACTIONS(5032), - [sym_instance_var] = ACTIONS(5032), - [sym_class_var] = ACTIONS(5032), - [sym_self] = ACTIONS(5034), - [sym_private] = ACTIONS(5034), - [sym_protected] = ACTIONS(5034), - [anon_sym_alias] = ACTIONS(5034), - [anon_sym_begin] = ACTIONS(5034), - [anon_sym_while] = ACTIONS(5034), - [anon_sym_until] = ACTIONS(5034), - [anon_sym_require] = ACTIONS(5034), - [anon_sym_case] = ACTIONS(5034), - [anon_sym_select] = ACTIONS(5034), - [aux_sym_asm_token1] = ACTIONS(5032), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5032), - [sym__start_of_named_tuple] = ACTIONS(5032), - [sym_unary_plus] = ACTIONS(5032), - [sym_unary_minus] = ACTIONS(5032), - [sym_unary_wrapping_plus] = ACTIONS(5032), - [sym_unary_wrapping_minus] = ACTIONS(5032), - [sym__beginless_range_operator] = ACTIONS(5032), - [sym__regex_start] = ACTIONS(5032), - [sym__regular_if_keyword] = ACTIONS(5032), - [sym__regular_unless_keyword] = ACTIONS(5032), - [sym__regular_ensure_keyword] = ACTIONS(5032), - [sym__string_literal_start] = ACTIONS(5032), - [sym__string_percent_literal_start] = ACTIONS(5032), - [sym__command_percent_literal_start] = ACTIONS(5032), - [sym__string_array_percent_literal_start] = ACTIONS(5032), - [sym__symbol_array_percent_literal_start] = ACTIONS(5032), - [sym__regex_percent_literal_start] = ACTIONS(5032), - [sym_heredoc_start] = ACTIONS(5032), + [2127] = { + [sym_heredoc_body] = STATE(2127), + [sym_identifier] = ACTIONS(4838), + [anon_sym_SEMI] = ACTIONS(4840), + [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_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_lib] = ACTIONS(4838), + [anon_sym_fun] = ACTIONS(4838), + [aux_sym_top_level_fun_def_token1] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_TILDE] = ACTIONS(4840), + [anon_sym_def] = 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_global_match_data_index] = ACTIONS(4840), + [sym_identifier_method_call] = ACTIONS(4840), + [sym_instance_var] = ACTIONS(4840), + [sym_class_var] = ACTIONS(4840), + [sym_self] = ACTIONS(4838), + [sym_private] = ACTIONS(4838), + [sym_protected] = ACTIONS(4838), + [anon_sym_alias] = ACTIONS(4838), + [anon_sym_begin] = ACTIONS(4838), + [anon_sym_while] = ACTIONS(4838), + [anon_sym_until] = ACTIONS(4838), + [anon_sym_require] = ACTIONS(4838), + [anon_sym_case] = ACTIONS(4838), + [anon_sym_select] = ACTIONS(4838), + [aux_sym_asm_token1] = ACTIONS(4840), + [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__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), [sym__heredoc_body_start] = ACTIONS(7), }, - [2107] = { - [sym_heredoc_body] = STATE(2107), - [sym_identifier] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(4846), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4844), - [sym_true] = ACTIONS(4844), - [sym_false] = ACTIONS(4844), - [aux_sym_integer_token2] = ACTIONS(4844), - [aux_sym_float_token2] = ACTIONS(4846), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym_operator_symbol] = ACTIONS(4846), - [sym_unquoted_symbol] = ACTIONS(4846), - [anon_sym_COLON_DQUOTE] = ACTIONS(4846), - [anon_sym_BQUOTE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_end] = ACTIONS(4844), - [anon_sym_AT_LBRACK] = ACTIONS(4846), - [anon_sym_module] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_class] = ACTIONS(4844), - [anon_sym_struct] = ACTIONS(4844), - [anon_sym_enum] = ACTIONS(4844), - [anon_sym_lib] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [aux_sym_top_level_fun_def_token1] = ACTIONS(4846), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [anon_sym_def] = ACTIONS(4844), - [anon_sym_include] = ACTIONS(4844), - [anon_sym_extend] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_next] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_with] = ACTIONS(4844), - [anon_sym_yield] = ACTIONS(4844), - [anon_sym_typeof] = ACTIONS(4844), - [anon_sym_sizeof] = ACTIONS(4844), - [anon_sym_instance_sizeof] = ACTIONS(4844), - [anon_sym_offsetof] = ACTIONS(4844), - [sym__constant_segment] = ACTIONS(4846), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym___LINE__] = ACTIONS(4844), - [anon_sym___END_LINE__] = ACTIONS(4844), - [anon_sym___FILE__] = ACTIONS(4844), - [anon_sym___DIR__] = ACTIONS(4844), - [sym_special_variable] = ACTIONS(4846), - [sym_global_match_data_index] = ACTIONS(4846), - [sym_identifier_method_call] = ACTIONS(4846), - [sym_instance_var] = ACTIONS(4846), - [sym_class_var] = ACTIONS(4846), - [sym_self] = ACTIONS(4844), - [sym_private] = ACTIONS(4844), - [sym_protected] = ACTIONS(4844), - [anon_sym_alias] = ACTIONS(4844), - [anon_sym_begin] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_until] = ACTIONS(4844), - [anon_sym_require] = ACTIONS(4844), - [anon_sym_case] = ACTIONS(4844), - [anon_sym_select] = ACTIONS(4844), - [aux_sym_asm_token1] = ACTIONS(4846), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4846), - [sym__start_of_named_tuple] = ACTIONS(4846), - [sym_unary_plus] = ACTIONS(4846), - [sym_unary_minus] = ACTIONS(4846), - [sym_unary_wrapping_plus] = ACTIONS(4846), - [sym_unary_wrapping_minus] = ACTIONS(4846), - [sym__beginless_range_operator] = ACTIONS(4846), - [sym__regex_start] = ACTIONS(4846), - [sym__regular_if_keyword] = ACTIONS(4846), - [sym__regular_unless_keyword] = ACTIONS(4846), - [sym__string_literal_start] = ACTIONS(4846), - [sym__string_percent_literal_start] = ACTIONS(4846), - [sym__command_percent_literal_start] = ACTIONS(4846), - [sym__string_array_percent_literal_start] = ACTIONS(4846), - [sym__symbol_array_percent_literal_start] = ACTIONS(4846), - [sym__regex_percent_literal_start] = ACTIONS(4846), - [sym_heredoc_start] = ACTIONS(4846), + [2128] = { + [sym_heredoc_body] = STATE(2128), + [sym_identifier] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5162), + [anon_sym_LPAREN] = ACTIONS(5162), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5160), + [sym_true] = ACTIONS(5160), + [sym_false] = ACTIONS(5160), + [aux_sym_integer_token2] = ACTIONS(5160), + [aux_sym_float_token2] = ACTIONS(5162), + [anon_sym_SQUOTE] = ACTIONS(5162), + [sym_operator_symbol] = ACTIONS(5162), + [sym_unquoted_symbol] = ACTIONS(5162), + [anon_sym_COLON_DQUOTE] = ACTIONS(5162), + [anon_sym_BQUOTE] = ACTIONS(5162), + [anon_sym_LBRACK] = ACTIONS(5162), + [anon_sym_DASH_GT] = ACTIONS(5162), + [anon_sym_annotation] = ACTIONS(5160), + [anon_sym_end] = ACTIONS(5160), + [anon_sym_AT_LBRACK] = ACTIONS(5162), + [anon_sym_module] = ACTIONS(5160), + [anon_sym_abstract] = ACTIONS(5160), + [anon_sym_class] = ACTIONS(5160), + [anon_sym_LT] = ACTIONS(5162), + [anon_sym_struct] = ACTIONS(5160), + [anon_sym_enum] = ACTIONS(5160), + [anon_sym_lib] = ACTIONS(5160), + [anon_sym_fun] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_BANG] = ACTIONS(5162), + [anon_sym_TILDE] = ACTIONS(5162), + [anon_sym_def] = ACTIONS(5160), + [anon_sym_include] = ACTIONS(5160), + [anon_sym_extend] = ACTIONS(5160), + [anon_sym_return] = ACTIONS(5160), + [anon_sym_next] = ACTIONS(5160), + [anon_sym_break] = ACTIONS(5160), + [anon_sym_with] = ACTIONS(5160), + [anon_sym_yield] = ACTIONS(5160), + [anon_sym_typeof] = ACTIONS(5160), + [anon_sym_sizeof] = ACTIONS(5160), + [anon_sym_instance_sizeof] = ACTIONS(5160), + [anon_sym_offsetof] = ACTIONS(5160), + [sym__constant_segment] = ACTIONS(5162), + [anon_sym_COLON_COLON] = ACTIONS(5162), + [anon_sym___LINE__] = ACTIONS(5160), + [anon_sym___END_LINE__] = ACTIONS(5160), + [anon_sym___FILE__] = ACTIONS(5160), + [anon_sym___DIR__] = ACTIONS(5160), + [sym_special_variable] = ACTIONS(5162), + [sym_global_match_data_index] = ACTIONS(5162), + [sym_identifier_method_call] = ACTIONS(5162), + [sym_instance_var] = ACTIONS(5162), + [sym_class_var] = ACTIONS(5162), + [sym_self] = ACTIONS(5160), + [sym_private] = ACTIONS(5160), + [sym_protected] = ACTIONS(5160), + [anon_sym_alias] = ACTIONS(5160), + [anon_sym_begin] = ACTIONS(5160), + [anon_sym_while] = ACTIONS(5160), + [anon_sym_until] = ACTIONS(5160), + [anon_sym_require] = ACTIONS(5160), + [anon_sym_case] = ACTIONS(5160), + [anon_sym_select] = ACTIONS(5160), + [aux_sym_asm_token1] = ACTIONS(5162), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5162), + [sym__start_of_named_tuple] = ACTIONS(5162), + [sym_unary_plus] = ACTIONS(5162), + [sym_unary_minus] = ACTIONS(5162), + [sym_unary_wrapping_plus] = ACTIONS(5162), + [sym_unary_wrapping_minus] = ACTIONS(5162), + [sym__beginless_range_operator] = ACTIONS(5162), + [sym__regex_start] = ACTIONS(5162), + [sym__regular_if_keyword] = ACTIONS(5162), + [sym__regular_unless_keyword] = ACTIONS(5162), + [sym__string_literal_start] = ACTIONS(5162), + [sym__string_percent_literal_start] = ACTIONS(5162), + [sym__command_percent_literal_start] = ACTIONS(5162), + [sym__string_array_percent_literal_start] = ACTIONS(5162), + [sym__symbol_array_percent_literal_start] = ACTIONS(5162), + [sym__regex_percent_literal_start] = ACTIONS(5162), + [sym_heredoc_start] = ACTIONS(5162), [sym__heredoc_body_start] = ACTIONS(7), }, - [2108] = { - [sym_heredoc_body] = STATE(2108), + [2129] = { + [sym_heredoc_body] = STATE(2129), [sym_identifier] = ACTIONS(5164), [anon_sym_SEMI] = ACTIONS(5166), [anon_sym_LPAREN] = ACTIONS(5166), @@ -343549,11 +346622,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(5164), [anon_sym_abstract] = ACTIONS(5164), [anon_sym_class] = ACTIONS(5164), - [anon_sym_LT] = ACTIONS(5166), [anon_sym_struct] = ACTIONS(5164), [anon_sym_enum] = ACTIONS(5164), [anon_sym_lib] = ACTIONS(5164), [anon_sym_fun] = ACTIONS(5164), + [aux_sym_top_level_fun_def_token1] = ACTIONS(5166), [anon_sym_STAR] = ACTIONS(5166), [anon_sym_BANG] = ACTIONS(5166), [anon_sym_TILDE] = ACTIONS(5166), @@ -343611,8 +346684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5166), [sym__heredoc_body_start] = ACTIONS(7), }, - [2109] = { - [sym_heredoc_body] = STATE(2109), + [2130] = { + [sym_heredoc_body] = STATE(2130), [sym_identifier] = ACTIONS(5168), [anon_sym_SEMI] = ACTIONS(5170), [anon_sym_LPAREN] = ACTIONS(5170), @@ -343697,12 +346770,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(5170), [sym__heredoc_body_start] = ACTIONS(7), }, - [2110] = { - [sym_heredoc_body] = STATE(2110), + [2131] = { + [sym_heredoc_body] = STATE(2131), + [sym_identifier] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5029), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5031), + [sym_true] = ACTIONS(5031), + [sym_false] = ACTIONS(5031), + [aux_sym_integer_token2] = ACTIONS(5031), + [aux_sym_float_token2] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [sym_operator_symbol] = ACTIONS(5029), + [sym_unquoted_symbol] = ACTIONS(5029), + [anon_sym_COLON_DQUOTE] = ACTIONS(5029), + [anon_sym_BQUOTE] = ACTIONS(5029), + [anon_sym_LBRACK] = ACTIONS(5029), + [anon_sym_DASH_GT] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5031), + [anon_sym_end] = ACTIONS(5031), + [anon_sym_AT_LBRACK] = ACTIONS(5029), + [anon_sym_module] = ACTIONS(5031), + [anon_sym_abstract] = ACTIONS(5031), + [anon_sym_class] = ACTIONS(5031), + [anon_sym_struct] = ACTIONS(5031), + [anon_sym_enum] = ACTIONS(5031), + [anon_sym_lib] = ACTIONS(5031), + [anon_sym_fun] = ACTIONS(5031), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_TILDE] = ACTIONS(5029), + [anon_sym_def] = ACTIONS(5031), + [anon_sym_include] = ACTIONS(5031), + [anon_sym_extend] = ACTIONS(5031), + [anon_sym_return] = ACTIONS(5031), + [anon_sym_next] = ACTIONS(5031), + [anon_sym_break] = ACTIONS(5031), + [anon_sym_with] = ACTIONS(5031), + [anon_sym_yield] = ACTIONS(5031), + [anon_sym_typeof] = ACTIONS(5031), + [anon_sym_sizeof] = ACTIONS(5031), + [anon_sym_instance_sizeof] = ACTIONS(5031), + [anon_sym_offsetof] = ACTIONS(5031), + [sym__constant_segment] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5029), + [anon_sym___LINE__] = ACTIONS(5031), + [anon_sym___END_LINE__] = ACTIONS(5031), + [anon_sym___FILE__] = ACTIONS(5031), + [anon_sym___DIR__] = ACTIONS(5031), + [sym_special_variable] = ACTIONS(5029), + [sym_global_match_data_index] = ACTIONS(5029), + [sym_identifier_method_call] = ACTIONS(5029), + [sym_instance_var] = ACTIONS(5029), + [sym_class_var] = ACTIONS(5029), + [sym_self] = ACTIONS(5031), + [sym_private] = ACTIONS(5031), + [sym_protected] = ACTIONS(5031), + [anon_sym_alias] = ACTIONS(5031), + [anon_sym_begin] = ACTIONS(5031), + [anon_sym_while] = ACTIONS(5031), + [anon_sym_until] = ACTIONS(5031), + [anon_sym_require] = ACTIONS(5031), + [anon_sym_case] = ACTIONS(5031), + [anon_sym_select] = ACTIONS(5031), + [aux_sym_asm_token1] = ACTIONS(5029), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5029), + [sym__start_of_named_tuple] = ACTIONS(5029), + [sym_unary_plus] = ACTIONS(5029), + [sym_unary_minus] = ACTIONS(5029), + [sym_unary_wrapping_plus] = ACTIONS(5029), + [sym_unary_wrapping_minus] = ACTIONS(5029), + [sym__beginless_range_operator] = ACTIONS(5029), + [sym__regex_start] = ACTIONS(5029), + [sym__regular_if_keyword] = ACTIONS(5029), + [sym__regular_unless_keyword] = ACTIONS(5029), + [sym__regular_ensure_keyword] = ACTIONS(5029), + [sym__string_literal_start] = ACTIONS(5029), + [sym__string_percent_literal_start] = ACTIONS(5029), + [sym__command_percent_literal_start] = ACTIONS(5029), + [sym__string_array_percent_literal_start] = ACTIONS(5029), + [sym__symbol_array_percent_literal_start] = ACTIONS(5029), + [sym__regex_percent_literal_start] = ACTIONS(5029), + [sym_heredoc_start] = ACTIONS(5029), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2132] = { + [sym_heredoc_body] = STATE(2132), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(5172), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1696), [sym_true] = ACTIONS(1696), @@ -343717,6 +346875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1655), [anon_sym_DASH_GT] = ACTIONS(1655), [anon_sym_annotation] = ACTIONS(1696), + [anon_sym_end] = ACTIONS(1696), [anon_sym_AT_LBRACK] = ACTIONS(1655), [anon_sym_module] = ACTIONS(1696), [anon_sym_abstract] = ACTIONS(1696), @@ -343773,6 +346932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__regex_start] = ACTIONS(1655), [sym__regular_if_keyword] = ACTIONS(1655), [sym__regular_unless_keyword] = ACTIONS(1655), + [sym__regular_ensure_keyword] = ACTIONS(1655), [sym__string_literal_start] = ACTIONS(1655), [sym__string_percent_literal_start] = ACTIONS(1655), [sym__command_percent_literal_start] = ACTIONS(1655), @@ -343782,12 +346942,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2111] = { - [sym_heredoc_body] = STATE(2111), + [2133] = { + [sym_heredoc_body] = STATE(2133), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5172), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(1696), [sym_true] = ACTIONS(1696), @@ -343867,93 +347027,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2112] = { - [sym_heredoc_body] = STATE(2112), - [sym_identifier] = ACTIONS(5004), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(5004), - [sym_true] = ACTIONS(5004), - [sym_false] = ACTIONS(5004), - [aux_sym_integer_token2] = ACTIONS(5004), - [aux_sym_float_token2] = ACTIONS(5006), - [anon_sym_SQUOTE] = ACTIONS(5006), - [sym_operator_symbol] = ACTIONS(5006), - [sym_unquoted_symbol] = ACTIONS(5006), - [anon_sym_COLON_DQUOTE] = ACTIONS(5006), - [anon_sym_BQUOTE] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [anon_sym_annotation] = ACTIONS(5004), - [anon_sym_end] = ACTIONS(5004), - [anon_sym_AT_LBRACK] = ACTIONS(5006), - [anon_sym_module] = ACTIONS(5004), - [anon_sym_abstract] = ACTIONS(5004), - [anon_sym_class] = ACTIONS(5004), - [anon_sym_struct] = ACTIONS(5004), - [anon_sym_enum] = ACTIONS(5004), - [anon_sym_lib] = ACTIONS(5004), - [anon_sym_fun] = ACTIONS(5004), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_BANG] = ACTIONS(5006), - [anon_sym_TILDE] = ACTIONS(5006), - [anon_sym_def] = ACTIONS(5004), - [anon_sym_include] = ACTIONS(5004), - [anon_sym_extend] = ACTIONS(5004), - [anon_sym_return] = ACTIONS(5004), - [anon_sym_next] = ACTIONS(5004), - [anon_sym_break] = ACTIONS(5004), - [anon_sym_with] = ACTIONS(5004), - [anon_sym_yield] = ACTIONS(5004), - [anon_sym_typeof] = ACTIONS(5004), - [anon_sym_sizeof] = ACTIONS(5004), - [anon_sym_instance_sizeof] = ACTIONS(5004), - [anon_sym_offsetof] = ACTIONS(5004), - [sym__constant_segment] = ACTIONS(5006), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym___LINE__] = ACTIONS(5004), - [anon_sym___END_LINE__] = ACTIONS(5004), - [anon_sym___FILE__] = ACTIONS(5004), - [anon_sym___DIR__] = ACTIONS(5004), - [sym_special_variable] = ACTIONS(5006), - [sym_global_match_data_index] = ACTIONS(5006), - [sym_identifier_method_call] = ACTIONS(5006), - [sym_instance_var] = ACTIONS(5006), - [sym_class_var] = ACTIONS(5006), - [sym_self] = ACTIONS(5004), - [sym_private] = ACTIONS(5004), - [sym_protected] = ACTIONS(5004), - [anon_sym_alias] = ACTIONS(5004), - [anon_sym_begin] = ACTIONS(5004), - [anon_sym_while] = ACTIONS(5004), - [anon_sym_until] = ACTIONS(5004), - [anon_sym_require] = ACTIONS(5004), - [anon_sym_case] = ACTIONS(5004), - [anon_sym_select] = ACTIONS(5004), - [aux_sym_asm_token1] = ACTIONS(5006), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(5006), - [sym__start_of_named_tuple] = ACTIONS(5006), - [sym_unary_plus] = ACTIONS(5006), - [sym_unary_minus] = ACTIONS(5006), - [sym_unary_wrapping_plus] = ACTIONS(5006), - [sym_unary_wrapping_minus] = ACTIONS(5006), - [sym__beginless_range_operator] = ACTIONS(5006), - [sym__regex_start] = ACTIONS(5006), - [sym__regular_if_keyword] = ACTIONS(5006), - [sym__regular_unless_keyword] = ACTIONS(5006), - [sym__string_literal_start] = ACTIONS(5006), - [sym__string_percent_literal_start] = ACTIONS(5006), - [sym__command_percent_literal_start] = ACTIONS(5006), - [sym__string_array_percent_literal_start] = ACTIONS(5006), - [sym__symbol_array_percent_literal_start] = ACTIONS(5006), - [sym__regex_percent_literal_start] = ACTIONS(5006), - [sym_heredoc_start] = ACTIONS(5006), + [2134] = { + [sym_heredoc_body] = STATE(2134), + [sym_identifier] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(5174), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1696), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [aux_sym_integer_token2] = ACTIONS(1696), + [aux_sym_float_token2] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [sym_operator_symbol] = ACTIONS(1655), + [sym_unquoted_symbol] = ACTIONS(1655), + [anon_sym_COLON_DQUOTE] = ACTIONS(1655), + [anon_sym_BQUOTE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_annotation] = ACTIONS(1696), + [anon_sym_AT_LBRACK] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1696), + [anon_sym_abstract] = ACTIONS(1696), + [anon_sym_class] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_lib] = ACTIONS(1696), + [anon_sym_fun] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_def] = ACTIONS(1696), + [anon_sym_include] = ACTIONS(1696), + [anon_sym_extend] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_next] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_with] = ACTIONS(1696), + [anon_sym_yield] = ACTIONS(1696), + [anon_sym_typeof] = ACTIONS(1696), + [anon_sym_sizeof] = ACTIONS(1696), + [anon_sym_instance_sizeof] = ACTIONS(1696), + [anon_sym_offsetof] = ACTIONS(1696), + [sym__constant_segment] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1655), + [anon_sym___LINE__] = ACTIONS(1696), + [anon_sym___END_LINE__] = ACTIONS(1696), + [anon_sym___FILE__] = ACTIONS(1696), + [anon_sym___DIR__] = ACTIONS(1696), + [sym_special_variable] = ACTIONS(1655), + [sym_global_match_data_index] = ACTIONS(1655), + [sym_identifier_method_call] = ACTIONS(1655), + [sym_instance_var] = ACTIONS(1655), + [sym_class_var] = ACTIONS(1655), + [sym_self] = ACTIONS(1696), + [sym_private] = ACTIONS(1696), + [sym_protected] = ACTIONS(1696), + [anon_sym_alias] = ACTIONS(1696), + [anon_sym_begin] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_until] = ACTIONS(1696), + [anon_sym_require] = ACTIONS(1696), + [anon_sym_case] = ACTIONS(1696), + [anon_sym_select] = ACTIONS(1696), + [aux_sym_asm_token1] = ACTIONS(1655), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1655), + [sym__start_of_named_tuple] = ACTIONS(1655), + [sym_unary_plus] = ACTIONS(1655), + [sym_unary_minus] = ACTIONS(1655), + [sym_unary_wrapping_plus] = ACTIONS(1655), + [sym_unary_wrapping_minus] = ACTIONS(1655), + [sym__beginless_range_operator] = ACTIONS(1655), + [sym__regex_start] = ACTIONS(1655), + [sym__regular_if_keyword] = ACTIONS(1655), + [sym__regular_unless_keyword] = ACTIONS(1655), + [sym__string_literal_start] = ACTIONS(1655), + [sym__string_percent_literal_start] = ACTIONS(1655), + [sym__command_percent_literal_start] = ACTIONS(1655), + [sym__string_array_percent_literal_start] = ACTIONS(1655), + [sym__symbol_array_percent_literal_start] = ACTIONS(1655), + [sym__regex_percent_literal_start] = ACTIONS(1655), + [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2113] = { - [sym_heredoc_body] = STATE(2113), + [2135] = { + [sym_heredoc_body] = STATE(2135), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344037,8 +347197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2114] = { - [sym_heredoc_body] = STATE(2114), + [2136] = { + [sym_heredoc_body] = STATE(2136), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344122,8 +347282,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2115] = { - [sym_heredoc_body] = STATE(2115), + [2137] = { + [sym_heredoc_body] = STATE(2137), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344207,8 +347367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2116] = { - [sym_heredoc_body] = STATE(2116), + [2138] = { + [sym_heredoc_body] = STATE(2138), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344292,8 +347452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2117] = { - [sym_heredoc_body] = STATE(2117), + [2139] = { + [sym_heredoc_body] = STATE(2139), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344377,8 +347537,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2118] = { - [sym_heredoc_body] = STATE(2118), + [2140] = { + [sym_heredoc_body] = STATE(2140), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344462,8 +347622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2119] = { - [sym_heredoc_body] = STATE(2119), + [2141] = { + [sym_heredoc_body] = STATE(2141), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344547,8 +347707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2120] = { - [sym_heredoc_body] = STATE(2120), + [2142] = { + [sym_heredoc_body] = STATE(2142), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344632,8 +347792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2121] = { - [sym_heredoc_body] = STATE(2121), + [2143] = { + [sym_heredoc_body] = STATE(2143), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344717,8 +347877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2122] = { - [sym_heredoc_body] = STATE(2122), + [2144] = { + [sym_heredoc_body] = STATE(2144), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344802,8 +347962,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2123] = { - [sym_heredoc_body] = STATE(2123), + [2145] = { + [sym_heredoc_body] = STATE(2145), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344887,8 +348047,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2124] = { - [sym_heredoc_body] = STATE(2124), + [2146] = { + [sym_heredoc_body] = STATE(2146), + [sym_identifier] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5022), + [anon_sym_LPAREN] = ACTIONS(5022), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5020), + [sym_true] = ACTIONS(5020), + [sym_false] = ACTIONS(5020), + [aux_sym_integer_token2] = ACTIONS(5020), + [aux_sym_float_token2] = ACTIONS(5022), + [anon_sym_SQUOTE] = ACTIONS(5022), + [sym_operator_symbol] = ACTIONS(5022), + [sym_unquoted_symbol] = ACTIONS(5022), + [anon_sym_COLON_DQUOTE] = ACTIONS(5022), + [anon_sym_BQUOTE] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_DASH_GT] = ACTIONS(5022), + [anon_sym_annotation] = ACTIONS(5020), + [anon_sym_end] = ACTIONS(5020), + [anon_sym_AT_LBRACK] = ACTIONS(5022), + [anon_sym_module] = ACTIONS(5020), + [anon_sym_abstract] = ACTIONS(5020), + [anon_sym_class] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_enum] = ACTIONS(5020), + [anon_sym_lib] = ACTIONS(5020), + [anon_sym_fun] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_BANG] = ACTIONS(5022), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_def] = ACTIONS(5020), + [anon_sym_include] = ACTIONS(5020), + [anon_sym_extend] = ACTIONS(5020), + [anon_sym_return] = ACTIONS(5020), + [anon_sym_next] = ACTIONS(5020), + [anon_sym_break] = ACTIONS(5020), + [anon_sym_with] = ACTIONS(5020), + [anon_sym_yield] = ACTIONS(5020), + [anon_sym_typeof] = ACTIONS(5020), + [anon_sym_sizeof] = ACTIONS(5020), + [anon_sym_instance_sizeof] = ACTIONS(5020), + [anon_sym_offsetof] = ACTIONS(5020), + [sym__constant_segment] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5022), + [anon_sym___LINE__] = ACTIONS(5020), + [anon_sym___END_LINE__] = ACTIONS(5020), + [anon_sym___FILE__] = ACTIONS(5020), + [anon_sym___DIR__] = ACTIONS(5020), + [sym_special_variable] = ACTIONS(5022), + [sym_global_match_data_index] = ACTIONS(5022), + [sym_identifier_method_call] = ACTIONS(5022), + [sym_instance_var] = ACTIONS(5022), + [sym_class_var] = ACTIONS(5022), + [sym_self] = ACTIONS(5020), + [sym_private] = ACTIONS(5020), + [sym_protected] = ACTIONS(5020), + [anon_sym_alias] = ACTIONS(5020), + [anon_sym_begin] = ACTIONS(5020), + [anon_sym_while] = ACTIONS(5020), + [anon_sym_until] = ACTIONS(5020), + [anon_sym_require] = ACTIONS(5020), + [anon_sym_case] = ACTIONS(5020), + [anon_sym_select] = ACTIONS(5020), + [aux_sym_asm_token1] = ACTIONS(5022), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5022), + [sym__start_of_named_tuple] = ACTIONS(5022), + [sym_unary_plus] = ACTIONS(5022), + [sym_unary_minus] = ACTIONS(5022), + [sym_unary_wrapping_plus] = ACTIONS(5022), + [sym_unary_wrapping_minus] = ACTIONS(5022), + [sym__beginless_range_operator] = ACTIONS(5022), + [sym__regex_start] = ACTIONS(5022), + [sym__regular_if_keyword] = ACTIONS(5022), + [sym__regular_unless_keyword] = ACTIONS(5022), + [sym__string_literal_start] = ACTIONS(5022), + [sym__string_percent_literal_start] = ACTIONS(5022), + [sym__command_percent_literal_start] = ACTIONS(5022), + [sym__string_array_percent_literal_start] = ACTIONS(5022), + [sym__symbol_array_percent_literal_start] = ACTIONS(5022), + [sym__regex_percent_literal_start] = ACTIONS(5022), + [sym_heredoc_start] = ACTIONS(5022), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2147] = { + [sym_heredoc_body] = STATE(2147), [sym_identifier] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1655), [anon_sym_LPAREN] = ACTIONS(1655), @@ -344972,107 +348217,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(1655), [sym__heredoc_body_start] = ACTIONS(7), }, - [2125] = { - [sym_heredoc_body] = STATE(2125), - [sym_typeof] = STATE(2342), - [sym_constant] = STATE(2318), - [sym__type] = STATE(2347), - [sym_class_type] = STATE(2342), - [sym_union_type] = STATE(2342), - [sym__parenthesized_type] = STATE(2342), - [sym_no_args_proc_type] = STATE(2342), - [sym_parenthesized_proc_type] = STATE(2342), - [sym_tuple_type] = STATE(2342), - [sym_named_tuple_type] = STATE(2342), - [sym_generic_instance_type] = STATE(2342), - [sym_nilable_type] = STATE(2342), - [sym_pointer_type] = STATE(2342), - [sym_static_array_type] = STATE(2342), - [ts_builtin_sym_end] = ACTIONS(4656), - [anon_sym_SEMI] = ACTIONS(4656), + [2148] = { + [sym_heredoc_body] = STATE(2148), + [sym_typeof] = STATE(2357), + [sym_constant] = STATE(2331), + [sym__type] = STATE(2349), + [sym_class_type] = STATE(2357), + [sym_union_type] = STATE(2357), + [sym__parenthesized_type] = STATE(2357), + [sym_no_args_proc_type] = STATE(2357), + [sym_parenthesized_proc_type] = STATE(2357), + [sym_tuple_type] = STATE(2357), + [sym_named_tuple_type] = STATE(2357), + [sym_generic_instance_type] = STATE(2357), + [sym_nilable_type] = STATE(2357), + [sym_pointer_type] = STATE(2357), + [sym_static_array_type] = STATE(2357), + [ts_builtin_sym_end] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4678), [anon_sym_LPAREN] = ACTIONS(5200), - [anon_sym_RPAREN] = ACTIONS(4656), + [anon_sym_RPAREN] = ACTIONS(4678), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4656), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), [anon_sym_DASH_GT] = ACTIONS(5202), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_end] = ACTIONS(4656), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5204), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [sym_self] = ACTIONS(5208), - [sym_underscore_type] = ACTIONS(5208), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), - [anon_sym_elsif] = ACTIONS(4656), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_when] = ACTIONS(4656), - [anon_sym_in] = ACTIONS(4656), - [sym__line_break] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5205), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [sym_self] = ACTIONS(5209), + [sym_underscore_type] = ACTIONS(5209), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_do] = ACTIONS(4678), + [anon_sym_elsif] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5210), - [sym__start_of_named_tuple_type] = ACTIONS(5212), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modifier_if_keyword] = ACTIONS(4656), - [sym__modifier_unless_keyword] = ACTIONS(4656), - [sym__modifier_rescue_keyword] = ACTIONS(4656), - [sym__modifier_ensure_keyword] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), + [sym__start_of_brace_block] = ACTIONS(4678), + [sym__start_of_tuple_type] = ACTIONS(5211), + [sym__start_of_named_tuple_type] = ACTIONS(5213), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modifier_if_keyword] = ACTIONS(4678), + [sym__modifier_unless_keyword] = ACTIONS(4678), + [sym__modifier_rescue_keyword] = ACTIONS(4678), + [sym__modifier_ensure_keyword] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2126] = { - [sym_heredoc_body] = STATE(2126), - [sym_typeof] = STATE(2342), - [sym_constant] = STATE(2318), - [sym__type] = STATE(2325), - [sym_class_type] = STATE(2342), - [sym_union_type] = STATE(2342), - [sym__parenthesized_type] = STATE(2342), - [sym_no_args_proc_type] = STATE(2342), - [sym_parenthesized_proc_type] = STATE(2342), - [sym_tuple_type] = STATE(2342), - [sym_named_tuple_type] = STATE(2342), - [sym_generic_instance_type] = STATE(2342), - [sym_nilable_type] = STATE(2342), - [sym_pointer_type] = STATE(2342), - [sym_static_array_type] = STATE(2342), + [2149] = { + [sym_heredoc_body] = STATE(2149), + [sym_typeof] = STATE(2357), + [sym_constant] = STATE(2331), + [sym__type] = STATE(2345), + [sym_class_type] = STATE(2357), + [sym_union_type] = STATE(2357), + [sym__parenthesized_type] = STATE(2357), + [sym_no_args_proc_type] = STATE(2357), + [sym_parenthesized_proc_type] = STATE(2357), + [sym_tuple_type] = STATE(2357), + [sym_named_tuple_type] = STATE(2357), + [sym_generic_instance_type] = STATE(2357), + [sym_nilable_type] = STATE(2357), + [sym_pointer_type] = STATE(2357), + [sym_static_array_type] = STATE(2357), [ts_builtin_sym_end] = ACTIONS(4628), [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5200), [anon_sym_RPAREN] = ACTIONS(4628), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4628), @@ -345080,7 +348325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5216), + [anon_sym_DASH_GT] = ACTIONS(5215), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -345101,11 +348346,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5204), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [sym_self] = ACTIONS(5208), - [sym_underscore_type] = ACTIONS(5208), + [anon_sym_typeof] = ACTIONS(5205), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [sym_self] = ACTIONS(5209), + [sym_underscore_type] = ACTIONS(5209), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), @@ -345117,8 +348362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_break] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5210), - [sym__start_of_named_tuple_type] = ACTIONS(5212), + [sym__start_of_tuple_type] = ACTIONS(5211), + [sym__start_of_named_tuple_type] = ACTIONS(5213), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -345136,107 +348381,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2127] = { - [sym_heredoc_body] = STATE(2127), - [sym_typeof] = STATE(2342), - [sym_constant] = STATE(2318), - [sym__type] = STATE(2336), - [sym_class_type] = STATE(2342), - [sym_union_type] = STATE(2342), - [sym__parenthesized_type] = STATE(2342), - [sym_no_args_proc_type] = STATE(2342), - [sym_parenthesized_proc_type] = STATE(2342), - [sym_tuple_type] = STATE(2342), - [sym_named_tuple_type] = STATE(2342), - [sym_generic_instance_type] = STATE(2342), - [sym_nilable_type] = STATE(2342), - [sym_pointer_type] = STATE(2342), - [sym_static_array_type] = STATE(2342), - [ts_builtin_sym_end] = ACTIONS(4678), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5200), - [anon_sym_RPAREN] = ACTIONS(4678), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4678), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5202), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_end] = ACTIONS(4678), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5204), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [sym_self] = ACTIONS(5208), - [sym_underscore_type] = ACTIONS(5208), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_do] = ACTIONS(4678), - [anon_sym_elsif] = ACTIONS(4678), - [anon_sym_else] = ACTIONS(4678), - [anon_sym_when] = ACTIONS(4678), - [anon_sym_in] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5210), - [sym__start_of_named_tuple_type] = ACTIONS(5212), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modifier_if_keyword] = ACTIONS(4678), - [sym__modifier_unless_keyword] = ACTIONS(4678), - [sym__modifier_rescue_keyword] = ACTIONS(4678), - [sym__modifier_ensure_keyword] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2128] = { - [sym_heredoc_body] = STATE(2128), - [sym_typeof] = STATE(2342), - [sym_constant] = STATE(2318), - [sym__type] = STATE(2316), - [sym_class_type] = STATE(2342), - [sym_union_type] = STATE(2342), - [sym__parenthesized_type] = STATE(2342), - [sym_no_args_proc_type] = STATE(2342), - [sym_parenthesized_proc_type] = STATE(2342), - [sym_tuple_type] = STATE(2342), - [sym_named_tuple_type] = STATE(2342), - [sym_generic_instance_type] = STATE(2342), - [sym_nilable_type] = STATE(2342), - [sym_pointer_type] = STATE(2342), - [sym_static_array_type] = STATE(2342), + [2150] = { + [sym_heredoc_body] = STATE(2150), + [sym_typeof] = STATE(2357), + [sym_constant] = STATE(2331), + [sym__type] = STATE(2354), + [sym_class_type] = STATE(2357), + [sym_union_type] = STATE(2357), + [sym__parenthesized_type] = STATE(2357), + [sym_no_args_proc_type] = STATE(2357), + [sym_parenthesized_proc_type] = STATE(2357), + [sym_tuple_type] = STATE(2357), + [sym_named_tuple_type] = STATE(2357), + [sym_generic_instance_type] = STATE(2357), + [sym_nilable_type] = STATE(2357), + [sym_pointer_type] = STATE(2357), + [sym_static_array_type] = STATE(2357), [ts_builtin_sym_end] = ACTIONS(4678), [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5218), [anon_sym_RPAREN] = ACTIONS(4678), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4678), @@ -345244,7 +348407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5219), + [anon_sym_DASH_GT] = ACTIONS(5220), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4678), [anon_sym_LT] = ACTIONS(4676), @@ -345265,11 +348428,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5204), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [sym_self] = ACTIONS(5208), - [sym_underscore_type] = ACTIONS(5208), + [anon_sym_typeof] = ACTIONS(5205), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [sym_self] = ACTIONS(5209), + [sym_underscore_type] = ACTIONS(5209), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), @@ -345281,8 +348444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5210), - [sym__start_of_named_tuple_type] = ACTIONS(5212), + [sym__start_of_tuple_type] = ACTIONS(5211), + [sym__start_of_named_tuple_type] = ACTIONS(5213), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -345300,25 +348463,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2129] = { - [sym_heredoc_body] = STATE(2129), - [sym_typeof] = STATE(2342), - [sym_constant] = STATE(2318), - [sym__type] = STATE(2312), - [sym_class_type] = STATE(2342), - [sym_union_type] = STATE(2342), - [sym__parenthesized_type] = STATE(2342), - [sym_no_args_proc_type] = STATE(2342), - [sym_parenthesized_proc_type] = STATE(2342), - [sym_tuple_type] = STATE(2342), - [sym_named_tuple_type] = STATE(2342), - [sym_generic_instance_type] = STATE(2342), - [sym_nilable_type] = STATE(2342), - [sym_pointer_type] = STATE(2342), - [sym_static_array_type] = STATE(2342), + [2151] = { + [sym_heredoc_body] = STATE(2151), + [sym_typeof] = STATE(2357), + [sym_constant] = STATE(2331), + [sym__type] = STATE(2332), + [sym_class_type] = STATE(2357), + [sym_union_type] = STATE(2357), + [sym__parenthesized_type] = STATE(2357), + [sym_no_args_proc_type] = STATE(2357), + [sym_parenthesized_proc_type] = STATE(2357), + [sym_tuple_type] = STATE(2357), + [sym_named_tuple_type] = STATE(2357), + [sym_generic_instance_type] = STATE(2357), + [sym_nilable_type] = STATE(2357), + [sym_pointer_type] = STATE(2357), + [sym_static_array_type] = STATE(2357), [ts_builtin_sym_end] = ACTIONS(4656), [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5200), [anon_sym_RPAREN] = ACTIONS(4656), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4656), @@ -345347,11 +348510,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5204), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [sym_self] = ACTIONS(5208), - [sym_underscore_type] = ACTIONS(5208), + [anon_sym_typeof] = ACTIONS(5205), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [sym_self] = ACTIONS(5209), + [sym_underscore_type] = ACTIONS(5209), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), @@ -345363,8 +348526,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_break] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5210), - [sym__start_of_named_tuple_type] = ACTIONS(5212), + [sym__start_of_tuple_type] = ACTIONS(5211), + [sym__start_of_named_tuple_type] = ACTIONS(5213), [sym__start_of_index_operator] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), @@ -345382,25 +348545,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2130] = { - [sym_heredoc_body] = STATE(2130), - [sym_typeof] = STATE(2342), - [sym_constant] = STATE(2318), - [sym__type] = STATE(2343), - [sym_class_type] = STATE(2342), - [sym_union_type] = STATE(2342), - [sym__parenthesized_type] = STATE(2342), - [sym_no_args_proc_type] = STATE(2342), - [sym_parenthesized_proc_type] = STATE(2342), - [sym_tuple_type] = STATE(2342), - [sym_named_tuple_type] = STATE(2342), - [sym_generic_instance_type] = STATE(2342), - [sym_nilable_type] = STATE(2342), - [sym_pointer_type] = STATE(2342), - [sym_static_array_type] = STATE(2342), + [2152] = { + [sym_heredoc_body] = STATE(2152), + [sym_typeof] = STATE(2357), + [sym_constant] = STATE(2331), + [sym__type] = STATE(2361), + [sym_class_type] = STATE(2357), + [sym_union_type] = STATE(2357), + [sym__parenthesized_type] = STATE(2357), + [sym_no_args_proc_type] = STATE(2357), + [sym_parenthesized_proc_type] = STATE(2357), + [sym_tuple_type] = STATE(2357), + [sym_named_tuple_type] = STATE(2357), + [sym_generic_instance_type] = STATE(2357), + [sym_nilable_type] = STATE(2357), + [sym_pointer_type] = STATE(2357), + [sym_static_array_type] = STATE(2357), [ts_builtin_sym_end] = ACTIONS(4628), [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5218), [anon_sym_RPAREN] = ACTIONS(4628), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4628), @@ -345408,7 +348571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5202), + [anon_sym_DASH_GT] = ACTIONS(5220), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -345429,11 +348592,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5204), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [sym_self] = ACTIONS(5208), - [sym_underscore_type] = ACTIONS(5208), + [anon_sym_typeof] = ACTIONS(5205), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [sym_self] = ACTIONS(5209), + [sym_underscore_type] = ACTIONS(5209), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), @@ -345445,8 +348608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_break] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5210), - [sym__start_of_named_tuple_type] = ACTIONS(5212), + [sym__start_of_tuple_type] = ACTIONS(5211), + [sym__start_of_named_tuple_type] = ACTIONS(5213), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -345464,105 +348627,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2131] = { - [sym_heredoc_body] = STATE(2131), - [sym_typeof] = STATE(2395), - [sym_constant] = STATE(2374), - [sym__type] = STATE(2391), - [sym_class_type] = STATE(2395), - [sym_union_type] = STATE(2395), - [sym__parenthesized_type] = STATE(2395), - [sym_no_args_proc_type] = STATE(2395), - [sym_parenthesized_proc_type] = STATE(2395), - [sym_tuple_type] = STATE(2395), - [sym_named_tuple_type] = STATE(2395), - [sym_generic_instance_type] = STATE(2395), - [sym_nilable_type] = STATE(2395), - [sym_pointer_type] = STATE(2395), - [sym_static_array_type] = STATE(2395), - [ts_builtin_sym_end] = ACTIONS(4628), - [anon_sym_SEMI] = ACTIONS(4628), + [2153] = { + [sym_heredoc_body] = STATE(2153), + [sym_typeof] = STATE(2357), + [sym_constant] = STATE(2331), + [sym__type] = STATE(2379), + [sym_class_type] = STATE(2357), + [sym_union_type] = STATE(2357), + [sym__parenthesized_type] = STATE(2357), + [sym_no_args_proc_type] = STATE(2357), + [sym_parenthesized_proc_type] = STATE(2357), + [sym_tuple_type] = STATE(2357), + [sym_named_tuple_type] = STATE(2357), + [sym_generic_instance_type] = STATE(2357), + [sym_nilable_type] = STATE(2357), + [sym_pointer_type] = STATE(2357), + [sym_static_array_type] = STATE(2357), + [ts_builtin_sym_end] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_RPAREN] = ACTIONS(4656), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5205), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [sym_self] = ACTIONS(5209), + [sym_underscore_type] = ACTIONS(5209), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), + [anon_sym_elsif] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_when] = ACTIONS(4656), + [anon_sym_in] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4656), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5211), + [sym__start_of_named_tuple_type] = ACTIONS(5213), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modifier_if_keyword] = ACTIONS(4656), + [sym__modifier_unless_keyword] = ACTIONS(4656), + [sym__modifier_rescue_keyword] = ACTIONS(4656), + [sym__modifier_ensure_keyword] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2154] = { + [sym_heredoc_body] = STATE(2154), + [sym_typeof] = STATE(2425), + [sym_constant] = STATE(2386), + [sym__type] = STATE(2402), + [sym_class_type] = STATE(2425), + [sym_union_type] = STATE(2425), + [sym__parenthesized_type] = STATE(2425), + [sym_no_args_proc_type] = STATE(2425), + [sym_parenthesized_proc_type] = STATE(2425), + [sym_tuple_type] = STATE(2425), + [sym_named_tuple_type] = STATE(2425), + [sym_generic_instance_type] = STATE(2425), + [sym_nilable_type] = STATE(2425), + [sym_pointer_type] = STATE(2425), + [sym_static_array_type] = STATE(2425), + [ts_builtin_sym_end] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4678), [anon_sym_LPAREN] = ACTIONS(5225), - [anon_sym_RPAREN] = ACTIONS(4628), + [anon_sym_RPAREN] = ACTIONS(4678), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4628), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), [anon_sym_DASH_GT] = ACTIONS(5227), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_end] = ACTIONS(4628), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), [anon_sym_typeof] = ACTIONS(5230), [sym__constant_segment] = ACTIONS(83), [anon_sym_COLON_COLON] = ACTIONS(5232), [sym_self] = ACTIONS(5234), [sym_underscore_type] = ACTIONS(5234), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_elsif] = ACTIONS(4628), - [anon_sym_else] = ACTIONS(4628), - [anon_sym_when] = ACTIONS(4628), - [anon_sym_in] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_elsif] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), [sym__start_of_tuple_type] = ACTIONS(5236), [sym__start_of_named_tuple_type] = ACTIONS(5238), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modifier_if_keyword] = ACTIONS(4628), - [sym__modifier_unless_keyword] = ACTIONS(4628), - [sym__modifier_rescue_keyword] = ACTIONS(4628), - [sym__modifier_ensure_keyword] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modifier_if_keyword] = ACTIONS(4678), + [sym__modifier_unless_keyword] = ACTIONS(4678), + [sym__modifier_rescue_keyword] = ACTIONS(4678), + [sym__modifier_ensure_keyword] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2132] = { - [sym_heredoc_body] = STATE(2132), - [sym_typeof] = STATE(2395), - [sym_constant] = STATE(2374), - [sym__type] = STATE(2442), - [sym_class_type] = STATE(2395), - [sym_union_type] = STATE(2395), - [sym__parenthesized_type] = STATE(2395), - [sym_no_args_proc_type] = STATE(2395), - [sym_parenthesized_proc_type] = STATE(2395), - [sym_tuple_type] = STATE(2395), - [sym_named_tuple_type] = STATE(2395), - [sym_generic_instance_type] = STATE(2395), - [sym_nilable_type] = STATE(2395), - [sym_pointer_type] = STATE(2395), - [sym_static_array_type] = STATE(2395), + [2155] = { + [sym_heredoc_body] = STATE(2155), + [sym_typeof] = STATE(2425), + [sym_constant] = STATE(2386), + [sym__type] = STATE(2403), + [sym_class_type] = STATE(2425), + [sym_union_type] = STATE(2425), + [sym__parenthesized_type] = STATE(2425), + [sym_no_args_proc_type] = STATE(2425), + [sym_parenthesized_proc_type] = STATE(2425), + [sym_tuple_type] = STATE(2425), + [sym_named_tuple_type] = STATE(2425), + [sym_generic_instance_type] = STATE(2425), + [sym_nilable_type] = STATE(2425), + [sym_pointer_type] = STATE(2425), + [sym_static_array_type] = STATE(2425), [ts_builtin_sym_end] = ACTIONS(4656), [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5225), [anon_sym_RPAREN] = ACTIONS(4656), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4656), @@ -345570,7 +348815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5240), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_end] = ACTIONS(4656), [anon_sym_LT] = ACTIONS(4654), @@ -345624,32 +348869,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2133] = { - [sym_heredoc_body] = STATE(2133), - [sym_typeof] = STATE(2342), - [sym_constant] = STATE(2318), - [sym__type] = STATE(2331), - [sym_class_type] = STATE(2342), - [sym_union_type] = STATE(2342), - [sym__parenthesized_type] = STATE(2342), - [sym_no_args_proc_type] = STATE(2342), - [sym_parenthesized_proc_type] = STATE(2342), - [sym_tuple_type] = STATE(2342), - [sym_named_tuple_type] = STATE(2342), - [sym_generic_instance_type] = STATE(2342), - [sym_nilable_type] = STATE(2342), - [sym_pointer_type] = STATE(2342), - [sym_static_array_type] = STATE(2342), + [2156] = { + [sym_heredoc_body] = STATE(2156), + [sym_typeof] = STATE(2425), + [sym_constant] = STATE(2386), + [sym__type] = STATE(2416), + [sym_class_type] = STATE(2425), + [sym_union_type] = STATE(2425), + [sym__parenthesized_type] = STATE(2425), + [sym_no_args_proc_type] = STATE(2425), + [sym_parenthesized_proc_type] = STATE(2425), + [sym_tuple_type] = STATE(2425), + [sym_named_tuple_type] = STATE(2425), + [sym_generic_instance_type] = STATE(2425), + [sym_nilable_type] = STATE(2425), + [sym_pointer_type] = STATE(2425), + [sym_static_array_type] = STATE(2425), + [ts_builtin_sym_end] = ACTIONS(4628), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_RPAREN] = ACTIONS(4628), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5243), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_end] = ACTIONS(4628), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5230), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(5232), + [sym_self] = ACTIONS(5234), + [sym_underscore_type] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_elsif] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), + [anon_sym_when] = ACTIONS(4628), + [anon_sym_in] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5236), + [sym__start_of_named_tuple_type] = ACTIONS(5238), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modifier_if_keyword] = ACTIONS(4628), + [sym__modifier_unless_keyword] = ACTIONS(4628), + [sym__modifier_rescue_keyword] = ACTIONS(4628), + [sym__modifier_ensure_keyword] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2157] = { + [sym_heredoc_body] = STATE(2157), + [sym_typeof] = STATE(2357), + [sym_constant] = STATE(2331), + [sym__type] = STATE(2367), + [sym_class_type] = STATE(2357), + [sym_union_type] = STATE(2357), + [sym__parenthesized_type] = STATE(2357), + [sym_no_args_proc_type] = STATE(2357), + [sym_parenthesized_proc_type] = STATE(2357), + [sym_tuple_type] = STATE(2357), + [sym_named_tuple_type] = STATE(2357), + [sym_generic_instance_type] = STATE(2357), + [sym_nilable_type] = STATE(2357), + [sym_pointer_type] = STATE(2357), + [sym_static_array_type] = STATE(2357), [ts_builtin_sym_end] = ACTIONS(4700), [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5218), [anon_sym_RPAREN] = ACTIONS(4700), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4700), [anon_sym_COMMA] = ACTIONS(4700), [anon_sym_DOT_DOT] = ACTIONS(4698), [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5202), + [anon_sym_DASH_GT] = ACTIONS(5220), [anon_sym_DOT] = ACTIONS(4698), [anon_sym_end] = ACTIONS(4700), [anon_sym_LT] = ACTIONS(4698), @@ -345669,11 +348994,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4700), [anon_sym_AMP_STAR] = ACTIONS(4698), [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5204), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [sym_self] = ACTIONS(5208), - [sym_underscore_type] = ACTIONS(5208), + [anon_sym_typeof] = ACTIONS(5205), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [sym_self] = ACTIONS(5209), + [sym_underscore_type] = ACTIONS(5209), [anon_sym_QMARK] = ACTIONS(4700), [anon_sym_AMP_AMP] = ACTIONS(4700), [anon_sym_PIPE_PIPE] = ACTIONS(4700), @@ -345685,8 +349010,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_break] = ACTIONS(4700), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4700), - [sym__start_of_tuple_type] = ACTIONS(5210), - [sym__start_of_named_tuple_type] = ACTIONS(5212), + [sym__start_of_tuple_type] = ACTIONS(5211), + [sym__start_of_named_tuple_type] = ACTIONS(5213), [sym__start_of_index_operator] = ACTIONS(4700), [sym_binary_plus] = ACTIONS(4700), [sym_binary_minus] = ACTIONS(4700), @@ -345704,25 +349029,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2134] = { - [sym_heredoc_body] = STATE(2134), - [sym_typeof] = STATE(2395), - [sym_constant] = STATE(2374), - [sym__type] = STATE(2385), - [sym_class_type] = STATE(2395), - [sym_union_type] = STATE(2395), - [sym__parenthesized_type] = STATE(2395), - [sym_no_args_proc_type] = STATE(2395), - [sym_parenthesized_proc_type] = STATE(2395), - [sym_tuple_type] = STATE(2395), - [sym_named_tuple_type] = STATE(2395), - [sym_generic_instance_type] = STATE(2395), - [sym_nilable_type] = STATE(2395), - [sym_pointer_type] = STATE(2395), - [sym_static_array_type] = STATE(2395), + [2158] = { + [sym_heredoc_body] = STATE(2158), + [sym_typeof] = STATE(2425), + [sym_constant] = STATE(2386), + [sym__type] = STATE(2470), + [sym_class_type] = STATE(2425), + [sym_union_type] = STATE(2425), + [sym__parenthesized_type] = STATE(2425), + [sym_no_args_proc_type] = STATE(2425), + [sym_parenthesized_proc_type] = STATE(2425), + [sym_tuple_type] = STATE(2425), + [sym_named_tuple_type] = STATE(2425), + [sym_generic_instance_type] = STATE(2425), + [sym_nilable_type] = STATE(2425), + [sym_pointer_type] = STATE(2425), + [sym_static_array_type] = STATE(2425), [ts_builtin_sym_end] = ACTIONS(4656), [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_LPAREN] = ACTIONS(5246), [anon_sym_RPAREN] = ACTIONS(4656), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4656), @@ -345730,7 +349055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5244), + [anon_sym_DASH_GT] = ACTIONS(5248), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_end] = ACTIONS(4656), [anon_sym_LT] = ACTIONS(4654), @@ -345784,25 +349109,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2135] = { - [sym_heredoc_body] = STATE(2135), - [sym_typeof] = STATE(2395), - [sym_constant] = STATE(2374), - [sym__type] = STATE(2373), - [sym_class_type] = STATE(2395), - [sym_union_type] = STATE(2395), - [sym__parenthesized_type] = STATE(2395), - [sym_no_args_proc_type] = STATE(2395), - [sym_parenthesized_proc_type] = STATE(2395), - [sym_tuple_type] = STATE(2395), - [sym_named_tuple_type] = STATE(2395), - [sym_generic_instance_type] = STATE(2395), - [sym_nilable_type] = STATE(2395), - [sym_pointer_type] = STATE(2395), - [sym_static_array_type] = STATE(2395), + [2159] = { + [sym_heredoc_body] = STATE(2159), + [sym_typeof] = STATE(2425), + [sym_constant] = STATE(2386), + [sym__type] = STATE(2444), + [sym_class_type] = STATE(2425), + [sym_union_type] = STATE(2425), + [sym__parenthesized_type] = STATE(2425), + [sym_no_args_proc_type] = STATE(2425), + [sym_parenthesized_proc_type] = STATE(2425), + [sym_tuple_type] = STATE(2425), + [sym_named_tuple_type] = STATE(2425), + [sym_generic_instance_type] = STATE(2425), + [sym_nilable_type] = STATE(2425), + [sym_pointer_type] = STATE(2425), + [sym_static_array_type] = STATE(2425), [ts_builtin_sym_end] = ACTIONS(4678), [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5225), + [anon_sym_LPAREN] = ACTIONS(5246), [anon_sym_RPAREN] = ACTIONS(4678), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4678), @@ -345810,7 +349135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5247), + [anon_sym_DASH_GT] = ACTIONS(5248), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4678), [anon_sym_LT] = ACTIONS(4676), @@ -345864,105 +349189,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2136] = { - [sym_heredoc_body] = STATE(2136), - [sym_typeof] = STATE(2342), - [sym_constant] = STATE(2318), - [sym__type] = STATE(2337), - [sym_class_type] = STATE(2342), - [sym_union_type] = STATE(2342), - [sym__parenthesized_type] = STATE(2342), - [sym_no_args_proc_type] = STATE(2342), - [sym_parenthesized_proc_type] = STATE(2342), - [sym_tuple_type] = STATE(2342), - [sym_named_tuple_type] = STATE(2342), - [sym_generic_instance_type] = STATE(2342), - [sym_nilable_type] = STATE(2342), - [sym_pointer_type] = STATE(2342), - [sym_static_array_type] = STATE(2342), - [ts_builtin_sym_end] = ACTIONS(4722), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(5200), - [anon_sym_RPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4722), - [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5202), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_end] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ_GT] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_TILDE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_AMP_STAR] = ACTIONS(4720), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5204), - [sym__constant_segment] = ACTIONS(2310), - [anon_sym_COLON_COLON] = ACTIONS(5206), - [sym_self] = ACTIONS(5208), - [sym_underscore_type] = ACTIONS(5208), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_do] = ACTIONS(4722), - [anon_sym_elsif] = ACTIONS(4722), - [anon_sym_else] = ACTIONS(4722), - [anon_sym_when] = ACTIONS(4722), - [anon_sym_in] = ACTIONS(4722), - [sym__line_break] = ACTIONS(4722), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4722), - [sym__start_of_tuple_type] = ACTIONS(5210), - [sym__start_of_named_tuple_type] = ACTIONS(5212), - [sym__start_of_index_operator] = ACTIONS(4722), - [sym_binary_plus] = ACTIONS(4722), - [sym_binary_minus] = ACTIONS(4722), - [sym_binary_wrapping_plus] = ACTIONS(4722), - [sym_binary_wrapping_minus] = ACTIONS(4722), - [sym__binary_star] = ACTIONS(4722), - [sym__binary_double_star] = ACTIONS(4722), - [sym_binary_ampersand] = ACTIONS(4722), - [sym__binary_slash] = ACTIONS(4722), - [sym__binary_double_slash] = ACTIONS(4722), - [sym__modifier_if_keyword] = ACTIONS(4722), - [sym__modifier_unless_keyword] = ACTIONS(4722), - [sym__modifier_rescue_keyword] = ACTIONS(4722), - [sym__modifier_ensure_keyword] = ACTIONS(4722), - [sym__modulo_operator] = ACTIONS(4722), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2137] = { - [sym_heredoc_body] = STATE(2137), - [sym_typeof] = STATE(2395), - [sym_constant] = STATE(2374), - [sym__type] = STATE(2397), - [sym_class_type] = STATE(2395), - [sym_union_type] = STATE(2395), - [sym__parenthesized_type] = STATE(2395), - [sym_no_args_proc_type] = STATE(2395), - [sym_parenthesized_proc_type] = STATE(2395), - [sym_tuple_type] = STATE(2395), - [sym_named_tuple_type] = STATE(2395), - [sym_generic_instance_type] = STATE(2395), - [sym_nilable_type] = STATE(2395), - [sym_pointer_type] = STATE(2395), - [sym_static_array_type] = STATE(2395), + [2160] = { + [sym_heredoc_body] = STATE(2160), + [sym_typeof] = STATE(2425), + [sym_constant] = STATE(2386), + [sym__type] = STATE(2478), + [sym_class_type] = STATE(2425), + [sym_union_type] = STATE(2425), + [sym__parenthesized_type] = STATE(2425), + [sym_no_args_proc_type] = STATE(2425), + [sym_parenthesized_proc_type] = STATE(2425), + [sym_tuple_type] = STATE(2425), + [sym_named_tuple_type] = STATE(2425), + [sym_generic_instance_type] = STATE(2425), + [sym_nilable_type] = STATE(2425), + [sym_pointer_type] = STATE(2425), + [sym_static_array_type] = STATE(2425), [ts_builtin_sym_end] = ACTIONS(4628), [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5246), [anon_sym_RPAREN] = ACTIONS(4628), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4628), @@ -345970,7 +349215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5248), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -346024,336 +349269,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2138] = { - [sym_heredoc_body] = STATE(2138), - [sym_typeof] = STATE(2395), - [sym_constant] = STATE(2374), - [sym__type] = STATE(2443), - [sym_class_type] = STATE(2395), - [sym_union_type] = STATE(2395), - [sym__parenthesized_type] = STATE(2395), - [sym_no_args_proc_type] = STATE(2395), - [sym_parenthesized_proc_type] = STATE(2395), - [sym_tuple_type] = STATE(2395), - [sym_named_tuple_type] = STATE(2395), - [sym_generic_instance_type] = STATE(2395), - [sym_nilable_type] = STATE(2395), - [sym_pointer_type] = STATE(2395), - [sym_static_array_type] = STATE(2395), - [ts_builtin_sym_end] = ACTIONS(4678), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5240), - [anon_sym_RPAREN] = ACTIONS(4678), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4678), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5242), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_end] = ACTIONS(4678), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5230), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(5232), - [sym_self] = ACTIONS(5234), - [sym_underscore_type] = ACTIONS(5234), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_elsif] = ACTIONS(4678), - [anon_sym_else] = ACTIONS(4678), - [anon_sym_when] = ACTIONS(4678), - [anon_sym_in] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5236), - [sym__start_of_named_tuple_type] = ACTIONS(5238), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modifier_if_keyword] = ACTIONS(4678), - [sym__modifier_unless_keyword] = ACTIONS(4678), - [sym__modifier_rescue_keyword] = ACTIONS(4678), - [sym__modifier_ensure_keyword] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2139] = { - [sym_heredoc_body] = STATE(2139), - [sym_typeof] = STATE(2660), - [sym_constant] = STATE(2529), - [sym__type] = STATE(2584), - [sym_class_type] = STATE(2660), - [sym_union_type] = STATE(2660), - [sym__parenthesized_type] = STATE(2660), - [sym_no_args_proc_type] = STATE(2660), - [sym_parenthesized_proc_type] = STATE(2660), - [sym_tuple_type] = STATE(2660), - [sym_named_tuple_type] = STATE(2660), - [sym_generic_instance_type] = STATE(2660), - [sym_nilable_type] = STATE(2660), - [sym_pointer_type] = STATE(2660), - [sym_static_array_type] = STATE(2660), - [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5250), + [2161] = { + [sym_heredoc_body] = STATE(2161), + [sym_typeof] = STATE(2357), + [sym_constant] = STATE(2331), + [sym__type] = STATE(2374), + [sym_class_type] = STATE(2357), + [sym_union_type] = STATE(2357), + [sym__parenthesized_type] = STATE(2357), + [sym_no_args_proc_type] = STATE(2357), + [sym_parenthesized_proc_type] = STATE(2357), + [sym_tuple_type] = STATE(2357), + [sym_named_tuple_type] = STATE(2357), + [sym_generic_instance_type] = STATE(2357), + [sym_nilable_type] = STATE(2357), + [sym_pointer_type] = STATE(2357), + [sym_static_array_type] = STATE(2357), + [ts_builtin_sym_end] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_RPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5252), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_end] = ACTIONS(4628), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5254), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(5256), - [sym_self] = ACTIONS(5258), - [sym_underscore_type] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_do] = ACTIONS(4628), - [anon_sym_else] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_end] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ_GT] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_BANG_TILDE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_AMP_STAR] = ACTIONS(4720), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_typeof] = ACTIONS(5205), + [sym__constant_segment] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(5207), + [sym_self] = ACTIONS(5209), + [sym_underscore_type] = ACTIONS(5209), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_do] = ACTIONS(4722), + [anon_sym_elsif] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [sym__line_break] = ACTIONS(4722), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5260), - [sym__start_of_named_tuple_type] = ACTIONS(5262), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modifier_if_keyword] = ACTIONS(4628), - [sym__modifier_unless_keyword] = ACTIONS(4628), - [sym__regular_rescue_keyword] = ACTIONS(4628), - [sym__modifier_rescue_keyword] = ACTIONS(4628), - [sym__regular_ensure_keyword] = ACTIONS(4628), - [sym__modifier_ensure_keyword] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), + [sym__start_of_brace_block] = ACTIONS(4722), + [sym__start_of_tuple_type] = ACTIONS(5211), + [sym__start_of_named_tuple_type] = ACTIONS(5213), + [sym__start_of_index_operator] = ACTIONS(4722), + [sym_binary_plus] = ACTIONS(4722), + [sym_binary_minus] = ACTIONS(4722), + [sym_binary_wrapping_plus] = ACTIONS(4722), + [sym_binary_wrapping_minus] = ACTIONS(4722), + [sym__binary_star] = ACTIONS(4722), + [sym__binary_double_star] = ACTIONS(4722), + [sym_binary_ampersand] = ACTIONS(4722), + [sym__binary_slash] = ACTIONS(4722), + [sym__binary_double_slash] = ACTIONS(4722), + [sym__modifier_if_keyword] = ACTIONS(4722), + [sym__modifier_unless_keyword] = ACTIONS(4722), + [sym__modifier_rescue_keyword] = ACTIONS(4722), + [sym__modifier_ensure_keyword] = ACTIONS(4722), + [sym__modulo_operator] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, - [2140] = { - [sym_heredoc_body] = STATE(2140), - [sym_typeof] = STATE(2660), - [sym_constant] = STATE(2529), - [sym__type] = STATE(2509), - [sym_class_type] = STATE(2660), - [sym_union_type] = STATE(2660), - [sym__parenthesized_type] = STATE(2660), - [sym_no_args_proc_type] = STATE(2660), - [sym_parenthesized_proc_type] = STATE(2660), - [sym_tuple_type] = STATE(2660), - [sym_named_tuple_type] = STATE(2660), - [sym_generic_instance_type] = STATE(2660), - [sym_nilable_type] = STATE(2660), - [sym_pointer_type] = STATE(2660), - [sym_static_array_type] = STATE(2660), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5264), + [2162] = { + [sym_heredoc_body] = STATE(2162), + [sym_identifier] = ACTIONS(4620), + [anon_sym_SEMI] = ACTIONS(4618), + [anon_sym_LPAREN] = ACTIONS(4620), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5266), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_end] = ACTIONS(4678), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5254), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(5256), - [sym_self] = ACTIONS(5258), - [sym_underscore_type] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_do] = ACTIONS(4678), - [anon_sym_else] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), + [sym_nil] = ACTIONS(4620), + [sym_true] = ACTIONS(4620), + [sym_false] = ACTIONS(4620), + [aux_sym_integer_token2] = ACTIONS(4620), + [aux_sym_float_token2] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4618), + [sym_operator_symbol] = ACTIONS(4618), + [sym_unquoted_symbol] = ACTIONS(4618), + [anon_sym_COLON_DQUOTE] = ACTIONS(4618), + [anon_sym_BQUOTE] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4618), + [anon_sym_COMMA] = ACTIONS(4618), + [anon_sym_DASH_GT] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_TILDE] = ACTIONS(4618), + [anon_sym_with] = ACTIONS(4620), + [anon_sym_yield] = ACTIONS(4620), + [anon_sym_typeof] = ACTIONS(4620), + [anon_sym_sizeof] = ACTIONS(4620), + [anon_sym_instance_sizeof] = ACTIONS(4620), + [anon_sym_offsetof] = ACTIONS(4620), + [sym__constant_segment] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4618), + [anon_sym___LINE__] = ACTIONS(4620), + [anon_sym___END_LINE__] = ACTIONS(4620), + [anon_sym___FILE__] = ACTIONS(4620), + [anon_sym___DIR__] = ACTIONS(4620), + [sym_special_variable] = ACTIONS(4618), + [sym_global_match_data_index] = ACTIONS(4618), + [sym_identifier_method_call] = ACTIONS(4618), + [sym_instance_var] = ACTIONS(4618), + [sym_class_var] = ACTIONS(4618), + [sym_self] = ACTIONS(4620), + [anon_sym_LPAREN2] = ACTIONS(4618), + [sym_private] = ACTIONS(4620), + [sym_protected] = ACTIONS(4620), + [anon_sym_do] = ACTIONS(4620), + [anon_sym_begin] = ACTIONS(4620), + [anon_sym_while] = ACTIONS(4620), + [anon_sym_until] = ACTIONS(4620), + [anon_sym_then] = ACTIONS(4620), + [anon_sym_case] = ACTIONS(4620), + [anon_sym_select] = ACTIONS(4620), + [aux_sym_asm_token1] = ACTIONS(4618), + [sym__line_break] = ACTIONS(4618), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5260), - [sym__start_of_named_tuple_type] = ACTIONS(5262), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modifier_if_keyword] = ACTIONS(4678), - [sym__modifier_unless_keyword] = ACTIONS(4678), - [sym__regular_rescue_keyword] = ACTIONS(4678), - [sym__modifier_rescue_keyword] = ACTIONS(4678), - [sym__regular_ensure_keyword] = ACTIONS(4678), - [sym__modifier_ensure_keyword] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2141] = { - [sym_heredoc_body] = STATE(2141), - [sym_typeof] = STATE(2660), - [sym_constant] = STATE(2529), - [sym__type] = STATE(2497), - [sym_class_type] = STATE(2660), - [sym_union_type] = STATE(2660), - [sym__parenthesized_type] = STATE(2660), - [sym_no_args_proc_type] = STATE(2660), - [sym_parenthesized_proc_type] = STATE(2660), - [sym_tuple_type] = STATE(2660), - [sym_named_tuple_type] = STATE(2660), - [sym_generic_instance_type] = STATE(2660), - [sym_nilable_type] = STATE(2660), - [sym_pointer_type] = STATE(2660), - [sym_static_array_type] = STATE(2660), - [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5264), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5269), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_end] = ACTIONS(4628), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5254), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(5256), - [sym_self] = ACTIONS(5258), - [sym_underscore_type] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_do] = ACTIONS(4628), - [anon_sym_else] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), + [sym__start_of_brace_block] = ACTIONS(4618), + [sym__start_of_hash_or_tuple] = ACTIONS(4618), + [sym__start_of_named_tuple] = ACTIONS(4618), + [sym__start_of_index_operator] = ACTIONS(4618), + [sym_unary_plus] = ACTIONS(4618), + [sym_unary_minus] = ACTIONS(4618), + [sym_unary_wrapping_plus] = ACTIONS(4618), + [sym_unary_wrapping_minus] = ACTIONS(4618), + [sym__unary_star] = ACTIONS(4618), + [sym__unary_double_star] = ACTIONS(4618), + [sym__block_ampersand] = ACTIONS(4618), + [sym__beginless_range_operator] = ACTIONS(4618), + [sym__regex_start] = ACTIONS(4618), + [sym__regular_if_keyword] = ACTIONS(4618), + [sym__regular_unless_keyword] = ACTIONS(4618), + [sym__string_literal_start] = ACTIONS(4618), + [sym__string_percent_literal_start] = ACTIONS(4618), + [sym__command_percent_literal_start] = ACTIONS(4618), + [sym__string_array_percent_literal_start] = ACTIONS(4618), + [sym__symbol_array_percent_literal_start] = ACTIONS(4618), + [sym__regex_percent_literal_start] = ACTIONS(4618), + [sym_heredoc_start] = ACTIONS(4618), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4618), + }, + [2163] = { + [sym_heredoc_body] = STATE(2163), + [sym_identifier] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_RPAREN] = ACTIONS(4618), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4620), + [sym_true] = ACTIONS(4620), + [sym_false] = ACTIONS(4620), + [aux_sym_integer_token2] = ACTIONS(4620), + [aux_sym_float_token2] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4618), + [anon_sym_RBRACE] = ACTIONS(4618), + [sym_operator_symbol] = ACTIONS(4618), + [sym_unquoted_symbol] = ACTIONS(4618), + [anon_sym_COLON_DQUOTE] = ACTIONS(4618), + [anon_sym_BQUOTE] = ACTIONS(4618), + [anon_sym_LBRACK] = ACTIONS(4618), + [anon_sym_COMMA] = ACTIONS(4618), + [anon_sym_DASH_GT] = ACTIONS(4618), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_TILDE] = ACTIONS(4618), + [anon_sym_with] = ACTIONS(4620), + [anon_sym_yield] = ACTIONS(4620), + [anon_sym_typeof] = ACTIONS(4620), + [anon_sym_sizeof] = ACTIONS(4620), + [anon_sym_instance_sizeof] = ACTIONS(4620), + [anon_sym_offsetof] = ACTIONS(4620), + [sym__constant_segment] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4618), + [anon_sym___LINE__] = ACTIONS(4620), + [anon_sym___END_LINE__] = ACTIONS(4620), + [anon_sym___FILE__] = ACTIONS(4620), + [anon_sym___DIR__] = ACTIONS(4620), + [sym_special_variable] = ACTIONS(4618), + [sym_global_match_data_index] = ACTIONS(4618), + [sym_identifier_method_call] = ACTIONS(4618), + [sym_instance_var] = ACTIONS(4618), + [sym_class_var] = ACTIONS(4618), + [sym_self] = ACTIONS(4620), + [anon_sym_LPAREN2] = ACTIONS(4618), + [sym_private] = ACTIONS(4620), + [sym_protected] = ACTIONS(4620), + [anon_sym_do] = ACTIONS(4620), + [anon_sym_begin] = ACTIONS(4620), + [anon_sym_while] = ACTIONS(4620), + [anon_sym_until] = ACTIONS(4620), + [anon_sym_case] = ACTIONS(4620), + [anon_sym_select] = ACTIONS(4620), + [aux_sym_asm_token1] = ACTIONS(4618), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5260), - [sym__start_of_named_tuple_type] = ACTIONS(5262), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modifier_if_keyword] = ACTIONS(4628), - [sym__modifier_unless_keyword] = ACTIONS(4628), - [sym__regular_rescue_keyword] = ACTIONS(4628), - [sym__modifier_rescue_keyword] = ACTIONS(4628), - [sym__regular_ensure_keyword] = ACTIONS(4628), - [sym__modifier_ensure_keyword] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), + [sym__start_of_brace_block] = ACTIONS(4618), + [sym__start_of_hash_or_tuple] = ACTIONS(4618), + [sym__start_of_named_tuple] = ACTIONS(4618), + [sym__start_of_index_operator] = ACTIONS(4618), + [sym_unary_plus] = ACTIONS(4618), + [sym_unary_minus] = ACTIONS(4618), + [sym_unary_wrapping_plus] = ACTIONS(4618), + [sym_unary_wrapping_minus] = ACTIONS(4618), + [sym__unary_star] = ACTIONS(4618), + [sym__unary_double_star] = ACTIONS(4618), + [sym__block_ampersand] = ACTIONS(4618), + [sym__beginless_range_operator] = ACTIONS(4618), + [sym__regex_start] = ACTIONS(4618), + [sym__regular_if_keyword] = ACTIONS(4618), + [sym__regular_unless_keyword] = ACTIONS(4618), + [sym__string_literal_start] = ACTIONS(4618), + [sym__string_percent_literal_start] = ACTIONS(4618), + [sym__command_percent_literal_start] = ACTIONS(4618), + [sym__string_array_percent_literal_start] = ACTIONS(4618), + [sym__symbol_array_percent_literal_start] = ACTIONS(4618), + [sym__regex_percent_literal_start] = ACTIONS(4618), + [sym_heredoc_start] = ACTIONS(4618), [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4618), }, - [2142] = { - [sym_heredoc_body] = STATE(2142), - [sym_typeof] = STATE(2660), - [sym_constant] = STATE(2529), - [sym__type] = STATE(2725), - [sym_class_type] = STATE(2660), - [sym_union_type] = STATE(2660), - [sym__parenthesized_type] = STATE(2660), - [sym_no_args_proc_type] = STATE(2660), - [sym_parenthesized_proc_type] = STATE(2660), - [sym_tuple_type] = STATE(2660), - [sym_named_tuple_type] = STATE(2660), - [sym_generic_instance_type] = STATE(2660), - [sym_nilable_type] = STATE(2660), - [sym_pointer_type] = STATE(2660), - [sym_static_array_type] = STATE(2660), + [2164] = { + [sym_heredoc_body] = STATE(2164), + [sym_typeof] = STATE(2758), + [sym_constant] = STATE(2575), + [sym__type] = STATE(2557), + [sym_class_type] = STATE(2758), + [sym_union_type] = STATE(2758), + [sym__parenthesized_type] = STATE(2758), + [sym_no_args_proc_type] = STATE(2758), + [sym_parenthesized_proc_type] = STATE(2758), + [sym_tuple_type] = STATE(2758), + [sym_named_tuple_type] = STATE(2758), + [sym_generic_instance_type] = STATE(2758), + [sym_nilable_type] = STATE(2758), + [sym_pointer_type] = STATE(2758), + [sym_static_array_type] = STATE(2758), [anon_sym_SEMI] = ACTIONS(4678), [anon_sym_LPAREN] = ACTIONS(5250), [sym_comment] = ACTIONS(5), @@ -346382,11 +349550,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5254), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(5256), - [sym_self] = ACTIONS(5258), - [sym_underscore_type] = ACTIONS(5258), + [anon_sym_typeof] = ACTIONS(5255), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(5257), + [sym_self] = ACTIONS(5259), + [sym_underscore_type] = ACTIONS(5259), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), @@ -346395,8 +349563,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5260), - [sym__start_of_named_tuple_type] = ACTIONS(5262), + [sym__start_of_tuple_type] = ACTIONS(5261), + [sym__start_of_named_tuple_type] = ACTIONS(5263), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -346416,22 +349584,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2143] = { - [sym_heredoc_body] = STATE(2143), - [sym_typeof] = STATE(2660), - [sym_constant] = STATE(2529), - [sym__type] = STATE(2724), - [sym_class_type] = STATE(2660), - [sym_union_type] = STATE(2660), - [sym__parenthesized_type] = STATE(2660), - [sym_no_args_proc_type] = STATE(2660), - [sym_parenthesized_proc_type] = STATE(2660), - [sym_tuple_type] = STATE(2660), - [sym_named_tuple_type] = STATE(2660), - [sym_generic_instance_type] = STATE(2660), - [sym_nilable_type] = STATE(2660), - [sym_pointer_type] = STATE(2660), - [sym_static_array_type] = STATE(2660), + [2165] = { + [sym_heredoc_body] = STATE(2165), + [sym_typeof] = STATE(2758), + [sym_constant] = STATE(2575), + [sym__type] = STATE(2584), + [sym_class_type] = STATE(2758), + [sym_union_type] = STATE(2758), + [sym__parenthesized_type] = STATE(2758), + [sym_no_args_proc_type] = STATE(2758), + [sym_parenthesized_proc_type] = STATE(2758), + [sym_tuple_type] = STATE(2758), + [sym_named_tuple_type] = STATE(2758), + [sym_generic_instance_type] = STATE(2758), + [sym_nilable_type] = STATE(2758), + [sym_pointer_type] = STATE(2758), + [sym_static_array_type] = STATE(2758), [anon_sym_SEMI] = ACTIONS(4656), [anon_sym_LPAREN] = ACTIONS(5250), [sym_comment] = ACTIONS(5), @@ -346439,7 +349607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5252), + [anon_sym_DASH_GT] = ACTIONS(5265), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_end] = ACTIONS(4656), [anon_sym_LT] = ACTIONS(4654), @@ -346460,11 +349628,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5254), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(5256), - [sym_self] = ACTIONS(5258), - [sym_underscore_type] = ACTIONS(5258), + [anon_sym_typeof] = ACTIONS(5255), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(5257), + [sym_self] = ACTIONS(5259), + [sym_underscore_type] = ACTIONS(5259), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), @@ -346473,8 +349641,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_break] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5260), - [sym__start_of_named_tuple_type] = ACTIONS(5262), + [sym__start_of_tuple_type] = ACTIONS(5261), + [sym__start_of_named_tuple_type] = ACTIONS(5263), [sym__start_of_index_operator] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), @@ -346494,110 +349662,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2144] = { - [sym_heredoc_body] = STATE(2144), - [sym_identifier] = ACTIONS(4624), - [anon_sym_SEMI] = ACTIONS(4622), - [anon_sym_LPAREN] = ACTIONS(4624), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4624), - [sym_true] = ACTIONS(4624), - [sym_false] = ACTIONS(4624), - [aux_sym_integer_token2] = ACTIONS(4624), - [aux_sym_float_token2] = ACTIONS(4622), - [anon_sym_SQUOTE] = ACTIONS(4622), - [sym_operator_symbol] = ACTIONS(4622), - [sym_unquoted_symbol] = ACTIONS(4622), - [anon_sym_COLON_DQUOTE] = ACTIONS(4622), - [anon_sym_BQUOTE] = ACTIONS(4622), - [anon_sym_LBRACK] = ACTIONS(4622), - [anon_sym_COMMA] = ACTIONS(4622), - [anon_sym_DASH_GT] = ACTIONS(4622), - [anon_sym_DOT] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(4622), - [anon_sym_TILDE] = ACTIONS(4622), - [anon_sym_with] = ACTIONS(4624), - [anon_sym_yield] = ACTIONS(4624), - [anon_sym_typeof] = ACTIONS(4624), - [anon_sym_sizeof] = ACTIONS(4624), - [anon_sym_instance_sizeof] = ACTIONS(4624), - [anon_sym_offsetof] = ACTIONS(4624), - [sym__constant_segment] = ACTIONS(4622), - [anon_sym_COLON_COLON] = ACTIONS(4622), - [anon_sym___LINE__] = ACTIONS(4624), - [anon_sym___END_LINE__] = ACTIONS(4624), - [anon_sym___FILE__] = ACTIONS(4624), - [anon_sym___DIR__] = ACTIONS(4624), - [sym_special_variable] = ACTIONS(4622), - [sym_global_match_data_index] = ACTIONS(4622), - [sym_identifier_method_call] = ACTIONS(4622), - [sym_instance_var] = ACTIONS(4622), - [sym_class_var] = ACTIONS(4622), - [sym_self] = ACTIONS(4624), - [anon_sym_LPAREN2] = ACTIONS(4622), - [sym_private] = ACTIONS(4624), - [sym_protected] = ACTIONS(4624), - [anon_sym_do] = ACTIONS(4624), - [anon_sym_begin] = ACTIONS(4624), - [anon_sym_while] = ACTIONS(4624), - [anon_sym_until] = ACTIONS(4624), - [anon_sym_then] = ACTIONS(4624), - [anon_sym_case] = ACTIONS(4624), - [anon_sym_select] = ACTIONS(4624), - [aux_sym_asm_token1] = ACTIONS(4622), - [sym__line_break] = ACTIONS(4622), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4622), - [sym__start_of_hash_or_tuple] = ACTIONS(4622), - [sym__start_of_named_tuple] = ACTIONS(4622), - [sym__start_of_index_operator] = ACTIONS(4622), - [sym_unary_plus] = ACTIONS(4622), - [sym_unary_minus] = ACTIONS(4622), - [sym_unary_wrapping_plus] = ACTIONS(4622), - [sym_unary_wrapping_minus] = ACTIONS(4622), - [sym__unary_star] = ACTIONS(4622), - [sym__unary_double_star] = ACTIONS(4622), - [sym__block_ampersand] = ACTIONS(4622), - [sym__beginless_range_operator] = ACTIONS(4622), - [sym__regex_start] = ACTIONS(4622), - [sym__regular_if_keyword] = ACTIONS(4622), - [sym__regular_unless_keyword] = ACTIONS(4622), - [sym__string_literal_start] = ACTIONS(4622), - [sym__string_percent_literal_start] = ACTIONS(4622), - [sym__command_percent_literal_start] = ACTIONS(4622), - [sym__string_array_percent_literal_start] = ACTIONS(4622), - [sym__symbol_array_percent_literal_start] = ACTIONS(4622), - [sym__regex_percent_literal_start] = ACTIONS(4622), - [sym_heredoc_start] = ACTIONS(4622), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4622), - }, - [2145] = { - [sym_heredoc_body] = STATE(2145), - [sym_typeof] = STATE(2395), - [sym_constant] = STATE(2374), - [sym__type] = STATE(2408), - [sym_class_type] = STATE(2395), - [sym_union_type] = STATE(2395), - [sym__parenthesized_type] = STATE(2395), - [sym_no_args_proc_type] = STATE(2395), - [sym_parenthesized_proc_type] = STATE(2395), - [sym_tuple_type] = STATE(2395), - [sym_named_tuple_type] = STATE(2395), - [sym_generic_instance_type] = STATE(2395), - [sym_nilable_type] = STATE(2395), - [sym_pointer_type] = STATE(2395), - [sym_static_array_type] = STATE(2395), + [2166] = { + [sym_heredoc_body] = STATE(2166), + [sym_typeof] = STATE(2425), + [sym_constant] = STATE(2386), + [sym__type] = STATE(2432), + [sym_class_type] = STATE(2425), + [sym_union_type] = STATE(2425), + [sym__parenthesized_type] = STATE(2425), + [sym_no_args_proc_type] = STATE(2425), + [sym_parenthesized_proc_type] = STATE(2425), + [sym_tuple_type] = STATE(2425), + [sym_named_tuple_type] = STATE(2425), + [sym_generic_instance_type] = STATE(2425), + [sym_nilable_type] = STATE(2425), + [sym_pointer_type] = STATE(2425), + [sym_static_array_type] = STATE(2425), [ts_builtin_sym_end] = ACTIONS(4700), [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5246), [anon_sym_RPAREN] = ACTIONS(4700), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4700), [anon_sym_COMMA] = ACTIONS(4700), [anon_sym_DOT_DOT] = ACTIONS(4698), [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5248), [anon_sym_DOT] = ACTIONS(4698), [anon_sym_end] = ACTIONS(4700), [anon_sym_LT] = ACTIONS(4698), @@ -346650,32 +349740,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2146] = { - [sym_heredoc_body] = STATE(2146), - [sym_typeof] = STATE(2395), - [sym_constant] = STATE(2374), - [sym__type] = STATE(2404), - [sym_class_type] = STATE(2395), - [sym_union_type] = STATE(2395), - [sym__parenthesized_type] = STATE(2395), - [sym_no_args_proc_type] = STATE(2395), - [sym_parenthesized_proc_type] = STATE(2395), - [sym_tuple_type] = STATE(2395), - [sym_named_tuple_type] = STATE(2395), - [sym_generic_instance_type] = STATE(2395), - [sym_nilable_type] = STATE(2395), - [sym_pointer_type] = STATE(2395), - [sym_static_array_type] = STATE(2395), + [2167] = { + [sym_heredoc_body] = STATE(2167), + [sym_typeof] = STATE(2758), + [sym_constant] = STATE(2575), + [sym__type] = STATE(2724), + [sym_class_type] = STATE(2758), + [sym_union_type] = STATE(2758), + [sym__parenthesized_type] = STATE(2758), + [sym_no_args_proc_type] = STATE(2758), + [sym_parenthesized_proc_type] = STATE(2758), + [sym_tuple_type] = STATE(2758), + [sym_named_tuple_type] = STATE(2758), + [sym_generic_instance_type] = STATE(2758), + [sym_nilable_type] = STATE(2758), + [sym_pointer_type] = STATE(2758), + [sym_static_array_type] = STATE(2758), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(5268), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5270), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5255), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(5257), + [sym_self] = ACTIONS(5259), + [sym_underscore_type] = ACTIONS(5259), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4656), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5261), + [sym__start_of_named_tuple_type] = ACTIONS(5263), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modifier_if_keyword] = ACTIONS(4656), + [sym__modifier_unless_keyword] = ACTIONS(4656), + [sym__regular_rescue_keyword] = ACTIONS(4656), + [sym__modifier_rescue_keyword] = ACTIONS(4656), + [sym__regular_ensure_keyword] = ACTIONS(4656), + [sym__modifier_ensure_keyword] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2168] = { + [sym_heredoc_body] = STATE(2168), + [sym_typeof] = STATE(2758), + [sym_constant] = STATE(2575), + [sym__type] = STATE(2597), + [sym_class_type] = STATE(2758), + [sym_union_type] = STATE(2758), + [sym__parenthesized_type] = STATE(2758), + [sym_no_args_proc_type] = STATE(2758), + [sym_parenthesized_proc_type] = STATE(2758), + [sym_tuple_type] = STATE(2758), + [sym_named_tuple_type] = STATE(2758), + [sym_generic_instance_type] = STATE(2758), + [sym_nilable_type] = STATE(2758), + [sym_pointer_type] = STATE(2758), + [sym_static_array_type] = STATE(2758), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5268), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5270), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5255), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(5257), + [sym_self] = ACTIONS(5259), + [sym_underscore_type] = ACTIONS(5259), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_do] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4678), + [sym__start_of_tuple_type] = ACTIONS(5261), + [sym__start_of_named_tuple_type] = ACTIONS(5263), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modifier_if_keyword] = ACTIONS(4678), + [sym__modifier_unless_keyword] = ACTIONS(4678), + [sym__regular_rescue_keyword] = ACTIONS(4678), + [sym__modifier_rescue_keyword] = ACTIONS(4678), + [sym__regular_ensure_keyword] = ACTIONS(4678), + [sym__modifier_ensure_keyword] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2169] = { + [sym_heredoc_body] = STATE(2169), + [sym_typeof] = STATE(2758), + [sym_constant] = STATE(2575), + [sym__type] = STATE(2639), + [sym_class_type] = STATE(2758), + [sym_union_type] = STATE(2758), + [sym__parenthesized_type] = STATE(2758), + [sym_no_args_proc_type] = STATE(2758), + [sym_parenthesized_proc_type] = STATE(2758), + [sym_tuple_type] = STATE(2758), + [sym_named_tuple_type] = STATE(2758), + [sym_generic_instance_type] = STATE(2758), + [sym_nilable_type] = STATE(2758), + [sym_pointer_type] = STATE(2758), + [sym_static_array_type] = STATE(2758), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5268), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5270), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_end] = ACTIONS(4628), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5255), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(5257), + [sym_self] = ACTIONS(5259), + [sym_underscore_type] = ACTIONS(5259), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_do] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4628), + [sym__start_of_tuple_type] = ACTIONS(5261), + [sym__start_of_named_tuple_type] = ACTIONS(5263), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modifier_if_keyword] = ACTIONS(4628), + [sym__modifier_unless_keyword] = ACTIONS(4628), + [sym__regular_rescue_keyword] = ACTIONS(4628), + [sym__modifier_rescue_keyword] = ACTIONS(4628), + [sym__regular_ensure_keyword] = ACTIONS(4628), + [sym__modifier_ensure_keyword] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2170] = { + [sym_heredoc_body] = STATE(2170), + [sym_typeof] = STATE(2425), + [sym_constant] = STATE(2386), + [sym__type] = STATE(2436), + [sym_class_type] = STATE(2425), + [sym_union_type] = STATE(2425), + [sym__parenthesized_type] = STATE(2425), + [sym_no_args_proc_type] = STATE(2425), + [sym_parenthesized_proc_type] = STATE(2425), + [sym_tuple_type] = STATE(2425), + [sym_named_tuple_type] = STATE(2425), + [sym_generic_instance_type] = STATE(2425), + [sym_nilable_type] = STATE(2425), + [sym_pointer_type] = STATE(2425), + [sym_static_array_type] = STATE(2425), [ts_builtin_sym_end] = ACTIONS(4722), [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(5240), + [anon_sym_LPAREN] = ACTIONS(5246), [anon_sym_RPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4722), [anon_sym_COMMA] = ACTIONS(4722), [anon_sym_DOT_DOT] = ACTIONS(4720), [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5242), + [anon_sym_DASH_GT] = ACTIONS(5248), [anon_sym_DOT] = ACTIONS(4720), [anon_sym_end] = ACTIONS(4722), [anon_sym_LT] = ACTIONS(4720), @@ -346728,188 +350052,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, - [2147] = { - [sym_heredoc_body] = STATE(2147), - [sym_typeof] = STATE(2660), - [sym_constant] = STATE(2529), - [sym__type] = STATE(2508), - [sym_class_type] = STATE(2660), - [sym_union_type] = STATE(2660), - [sym__parenthesized_type] = STATE(2660), - [sym_no_args_proc_type] = STATE(2660), - [sym_parenthesized_proc_type] = STATE(2660), - [sym_tuple_type] = STATE(2660), - [sym_named_tuple_type] = STATE(2660), - [sym_generic_instance_type] = STATE(2660), - [sym_nilable_type] = STATE(2660), - [sym_pointer_type] = STATE(2660), - [sym_static_array_type] = STATE(2660), - [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5264), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5272), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_end] = ACTIONS(4656), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5254), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(5256), - [sym_self] = ACTIONS(5258), - [sym_underscore_type] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), - [anon_sym_else] = ACTIONS(4656), - [sym__line_break] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5260), - [sym__start_of_named_tuple_type] = ACTIONS(5262), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modifier_if_keyword] = ACTIONS(4656), - [sym__modifier_unless_keyword] = ACTIONS(4656), - [sym__regular_rescue_keyword] = ACTIONS(4656), - [sym__modifier_rescue_keyword] = ACTIONS(4656), - [sym__regular_ensure_keyword] = ACTIONS(4656), - [sym__modifier_ensure_keyword] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2148] = { - [sym_heredoc_body] = STATE(2148), - [sym_typeof] = STATE(2831), - [sym_constant] = STATE(2603), - [sym__type] = STATE(2689), - [sym_class_type] = STATE(2831), - [sym_union_type] = STATE(2831), - [sym__parenthesized_type] = STATE(2831), - [sym_no_args_proc_type] = STATE(2831), - [sym_parenthesized_proc_type] = STATE(2831), - [sym_tuple_type] = STATE(2831), - [sym_named_tuple_type] = STATE(2831), - [sym_generic_instance_type] = STATE(2831), - [sym_nilable_type] = STATE(2831), - [sym_pointer_type] = STATE(2831), - [sym_static_array_type] = STATE(2831), - [anon_sym_LPAREN] = ACTIONS(5275), - [anon_sym_RPAREN] = ACTIONS(4656), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4656), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_RBRACK] = ACTIONS(4656), - [anon_sym_EQ_GT] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5277), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_end] = ACTIONS(4656), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5280), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(5282), - [sym_self] = ACTIONS(5284), - [sym_underscore_type] = ACTIONS(5284), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_COLON2] = ACTIONS(4654), - [anon_sym_do] = ACTIONS(4656), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_when] = ACTIONS(4656), - [anon_sym_in] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5286), - [sym__start_of_named_tuple_type] = ACTIONS(5288), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2149] = { - [sym_heredoc_body] = STATE(2149), - [sym_typeof] = STATE(2831), - [sym_constant] = STATE(2603), - [sym__type] = STATE(2770), - [sym_class_type] = STATE(2831), - [sym_union_type] = STATE(2831), - [sym__parenthesized_type] = STATE(2831), - [sym_no_args_proc_type] = STATE(2831), - [sym_parenthesized_proc_type] = STATE(2831), - [sym_tuple_type] = STATE(2831), - [sym_named_tuple_type] = STATE(2831), - [sym_generic_instance_type] = STATE(2831), - [sym_nilable_type] = STATE(2831), - [sym_pointer_type] = STATE(2831), - [sym_static_array_type] = STATE(2831), - [anon_sym_LPAREN] = ACTIONS(5290), - [anon_sym_RPAREN] = ACTIONS(4628), + [2171] = { + [sym_heredoc_body] = STATE(2171), + [sym_typeof] = STATE(2758), + [sym_constant] = STATE(2575), + [sym__type] = STATE(2558), + [sym_class_type] = STATE(2758), + [sym_union_type] = STATE(2758), + [sym__parenthesized_type] = STATE(2758), + [sym_no_args_proc_type] = STATE(2758), + [sym_parenthesized_proc_type] = STATE(2758), + [sym_tuple_type] = STATE(2758), + [sym_named_tuple_type] = STATE(2758), + [sym_generic_instance_type] = STATE(2758), + [sym_nilable_type] = STATE(2758), + [sym_pointer_type] = STATE(2758), + [sym_static_array_type] = STATE(2758), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5250), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4628), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_RBRACK] = ACTIONS(4628), - [anon_sym_EQ_GT] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_DASH_GT] = ACTIONS(5272), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -346930,23 +350096,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5280), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(5282), - [sym_self] = ACTIONS(5284), - [sym_underscore_type] = ACTIONS(5284), + [anon_sym_typeof] = ACTIONS(5255), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(5257), + [sym_self] = ACTIONS(5259), + [sym_underscore_type] = ACTIONS(5259), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_COLON2] = ACTIONS(4626), [anon_sym_do] = ACTIONS(4628), [anon_sym_else] = ACTIONS(4628), - [anon_sym_when] = ACTIONS(4628), - [anon_sym_in] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5286), - [sym__start_of_named_tuple_type] = ACTIONS(5288), + [sym__start_of_tuple_type] = ACTIONS(5261), + [sym__start_of_named_tuple_type] = ACTIONS(5263), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -346957,25 +350121,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_ampersand] = ACTIONS(4628), [sym__binary_slash] = ACTIONS(4628), [sym__binary_double_slash] = ACTIONS(4628), + [sym__modifier_if_keyword] = ACTIONS(4628), + [sym__modifier_unless_keyword] = ACTIONS(4628), + [sym__regular_rescue_keyword] = ACTIONS(4628), + [sym__modifier_rescue_keyword] = ACTIONS(4628), + [sym__regular_ensure_keyword] = ACTIONS(4628), + [sym__modifier_ensure_keyword] = ACTIONS(4628), [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2150] = { - [sym_heredoc_body] = STATE(2150), - [sym_typeof] = STATE(2831), - [sym_constant] = STATE(2603), - [sym__type] = STATE(2690), - [sym_class_type] = STATE(2831), - [sym_union_type] = STATE(2831), - [sym__parenthesized_type] = STATE(2831), - [sym_no_args_proc_type] = STATE(2831), - [sym_parenthesized_proc_type] = STATE(2831), - [sym_tuple_type] = STATE(2831), - [sym_named_tuple_type] = STATE(2831), - [sym_generic_instance_type] = STATE(2831), - [sym_nilable_type] = STATE(2831), - [sym_pointer_type] = STATE(2831), - [sym_static_array_type] = STATE(2831), + [2172] = { + [sym_heredoc_body] = STATE(2172), + [sym_typeof] = STATE(2789), + [sym_constant] = STATE(2701), + [sym__type] = STATE(2899), + [sym_class_type] = STATE(2789), + [sym_union_type] = STATE(2789), + [sym__parenthesized_type] = STATE(2789), + [sym_no_args_proc_type] = STATE(2789), + [sym_parenthesized_proc_type] = STATE(2789), + [sym_tuple_type] = STATE(2789), + [sym_named_tuple_type] = STATE(2789), + [sym_generic_instance_type] = STATE(2789), + [sym_nilable_type] = STATE(2789), + [sym_pointer_type] = STATE(2789), + [sym_static_array_type] = STATE(2789), [anon_sym_LPAREN] = ACTIONS(5275), [anon_sym_RPAREN] = ACTIONS(4678), [sym_comment] = ACTIONS(5), @@ -346986,7 +350156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5294), + [anon_sym_DASH_GT] = ACTIONS(5277), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4678), [anon_sym_LT] = ACTIONS(4676), @@ -347007,11 +350177,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5280), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(5282), - [sym_self] = ACTIONS(5284), - [sym_underscore_type] = ACTIONS(5284), + [anon_sym_typeof] = ACTIONS(5279), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(5281), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), @@ -347022,8 +350192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5286), - [sym__start_of_named_tuple_type] = ACTIONS(5288), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -347037,100 +350207,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2151] = { - [sym_heredoc_body] = STATE(2151), - [sym_typeof] = STATE(2831), - [sym_constant] = STATE(2603), - [sym__type] = STATE(2794), - [sym_class_type] = STATE(2831), - [sym_union_type] = STATE(2831), - [sym__parenthesized_type] = STATE(2831), - [sym_no_args_proc_type] = STATE(2831), - [sym_parenthesized_proc_type] = STATE(2831), - [sym_tuple_type] = STATE(2831), - [sym_named_tuple_type] = STATE(2831), - [sym_generic_instance_type] = STATE(2831), - [sym_nilable_type] = STATE(2831), - [sym_pointer_type] = STATE(2831), - [sym_static_array_type] = STATE(2831), - [anon_sym_LPAREN] = ACTIONS(5290), - [anon_sym_RPAREN] = ACTIONS(4678), + [2173] = { + [sym_heredoc_body] = STATE(2173), + [sym_typeof] = STATE(2789), + [sym_constant] = STATE(2701), + [sym__type] = STATE(2775), + [sym_class_type] = STATE(2789), + [sym_union_type] = STATE(2789), + [sym__parenthesized_type] = STATE(2789), + [sym_no_args_proc_type] = STATE(2789), + [sym_parenthesized_proc_type] = STATE(2789), + [sym_tuple_type] = STATE(2789), + [sym_named_tuple_type] = STATE(2789), + [sym_generic_instance_type] = STATE(2789), + [sym_nilable_type] = STATE(2789), + [sym_pointer_type] = STATE(2789), + [sym_static_array_type] = STATE(2789), + [anon_sym_LPAREN] = ACTIONS(5289), + [anon_sym_RPAREN] = ACTIONS(4656), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4678), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_RBRACK] = ACTIONS(4678), - [anon_sym_EQ_GT] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5292), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_end] = ACTIONS(4678), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5280), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(5282), - [sym_self] = ACTIONS(5284), - [sym_underscore_type] = ACTIONS(5284), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_COLON2] = ACTIONS(4676), - [anon_sym_do] = ACTIONS(4678), - [anon_sym_else] = ACTIONS(4678), - [anon_sym_when] = ACTIONS(4678), - [anon_sym_in] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_RBRACK] = ACTIONS(4656), + [anon_sym_EQ_GT] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5291), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5279), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(5281), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_COLON2] = ACTIONS(4654), + [anon_sym_do] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_when] = ACTIONS(4656), + [anon_sym_in] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5286), - [sym__start_of_named_tuple_type] = ACTIONS(5288), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2152] = { - [sym_heredoc_body] = STATE(2152), - [sym_typeof] = STATE(2831), - [sym_constant] = STATE(2603), - [sym__type] = STATE(2793), - [sym_class_type] = STATE(2831), - [sym_union_type] = STATE(2831), - [sym__parenthesized_type] = STATE(2831), - [sym_no_args_proc_type] = STATE(2831), - [sym_parenthesized_proc_type] = STATE(2831), - [sym_tuple_type] = STATE(2831), - [sym_named_tuple_type] = STATE(2831), - [sym_generic_instance_type] = STATE(2831), - [sym_nilable_type] = STATE(2831), - [sym_pointer_type] = STATE(2831), - [sym_static_array_type] = STATE(2831), - [anon_sym_LPAREN] = ACTIONS(5290), + [2174] = { + [sym_heredoc_body] = STATE(2174), + [sym_typeof] = STATE(2789), + [sym_constant] = STATE(2701), + [sym__type] = STATE(2879), + [sym_class_type] = STATE(2789), + [sym_union_type] = STATE(2789), + [sym__parenthesized_type] = STATE(2789), + [sym_no_args_proc_type] = STATE(2789), + [sym_parenthesized_proc_type] = STATE(2789), + [sym_tuple_type] = STATE(2789), + [sym_named_tuple_type] = STATE(2789), + [sym_generic_instance_type] = STATE(2789), + [sym_nilable_type] = STATE(2789), + [sym_pointer_type] = STATE(2789), + [sym_static_array_type] = STATE(2789), + [anon_sym_LPAREN] = ACTIONS(5275), [anon_sym_RPAREN] = ACTIONS(4656), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4656), @@ -347140,7 +350310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_DASH_GT] = ACTIONS(5277), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_end] = ACTIONS(4656), [anon_sym_LT] = ACTIONS(4654), @@ -347161,11 +350331,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5280), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(5282), - [sym_self] = ACTIONS(5284), - [sym_underscore_type] = ACTIONS(5284), + [anon_sym_typeof] = ACTIONS(5279), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(5281), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), @@ -347176,8 +350346,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5286), - [sym__start_of_named_tuple_type] = ACTIONS(5288), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), [sym__start_of_index_operator] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), @@ -347191,22 +350361,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2153] = { - [sym_heredoc_body] = STATE(2153), - [sym_typeof] = STATE(2831), - [sym_constant] = STATE(2603), - [sym__type] = STATE(2608), - [sym_class_type] = STATE(2831), - [sym_union_type] = STATE(2831), - [sym__parenthesized_type] = STATE(2831), - [sym_no_args_proc_type] = STATE(2831), - [sym_parenthesized_proc_type] = STATE(2831), - [sym_tuple_type] = STATE(2831), - [sym_named_tuple_type] = STATE(2831), - [sym_generic_instance_type] = STATE(2831), - [sym_nilable_type] = STATE(2831), - [sym_pointer_type] = STATE(2831), - [sym_static_array_type] = STATE(2831), + [2175] = { + [sym_heredoc_body] = STATE(2175), + [sym_typeof] = STATE(2789), + [sym_constant] = STATE(2701), + [sym__type] = STATE(2635), + [sym_class_type] = STATE(2789), + [sym_union_type] = STATE(2789), + [sym__parenthesized_type] = STATE(2789), + [sym_no_args_proc_type] = STATE(2789), + [sym_parenthesized_proc_type] = STATE(2789), + [sym_tuple_type] = STATE(2789), + [sym_named_tuple_type] = STATE(2789), + [sym_generic_instance_type] = STATE(2789), + [sym_nilable_type] = STATE(2789), + [sym_pointer_type] = STATE(2789), + [sym_static_array_type] = STATE(2789), + [anon_sym_LPAREN] = ACTIONS(5289), + [anon_sym_RPAREN] = ACTIONS(4678), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_RBRACK] = ACTIONS(4678), + [anon_sym_EQ_GT] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5294), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5279), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(5281), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_COLON2] = ACTIONS(4676), + [anon_sym_do] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4678), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2176] = { + [sym_heredoc_body] = STATE(2176), + [sym_typeof] = STATE(2789), + [sym_constant] = STATE(2701), + [sym__type] = STATE(2842), + [sym_class_type] = STATE(2789), + [sym_union_type] = STATE(2789), + [sym__parenthesized_type] = STATE(2789), + [sym_no_args_proc_type] = STATE(2789), + [sym_parenthesized_proc_type] = STATE(2789), + [sym_tuple_type] = STATE(2789), + [sym_named_tuple_type] = STATE(2789), + [sym_generic_instance_type] = STATE(2789), + [sym_nilable_type] = STATE(2789), + [sym_pointer_type] = STATE(2789), + [sym_static_array_type] = STATE(2789), [anon_sym_LPAREN] = ACTIONS(5275), [anon_sym_RPAREN] = ACTIONS(4628), [sym_comment] = ACTIONS(5), @@ -347217,7 +350464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5297), + [anon_sym_DASH_GT] = ACTIONS(5277), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -347238,11 +350485,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5280), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(5282), - [sym_self] = ACTIONS(5284), - [sym_underscore_type] = ACTIONS(5284), + [anon_sym_typeof] = ACTIONS(5279), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(5281), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), @@ -347253,8 +350500,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5286), - [sym__start_of_named_tuple_type] = ACTIONS(5288), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -347268,259 +350515,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2154] = { - [sym_heredoc_body] = STATE(2154), - [sym_identifier] = ACTIONS(4624), - [anon_sym_LPAREN] = ACTIONS(4624), - [anon_sym_RPAREN] = ACTIONS(4622), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4624), - [sym_true] = ACTIONS(4624), - [sym_false] = ACTIONS(4624), - [aux_sym_integer_token2] = ACTIONS(4624), - [aux_sym_float_token2] = ACTIONS(4622), - [anon_sym_SQUOTE] = ACTIONS(4622), - [anon_sym_RBRACE] = ACTIONS(4622), - [sym_operator_symbol] = ACTIONS(4622), - [sym_unquoted_symbol] = ACTIONS(4622), - [anon_sym_COLON_DQUOTE] = ACTIONS(4622), - [anon_sym_BQUOTE] = ACTIONS(4622), - [anon_sym_LBRACK] = ACTIONS(4622), - [anon_sym_COMMA] = ACTIONS(4622), - [anon_sym_DASH_GT] = ACTIONS(4622), - [anon_sym_DOT] = ACTIONS(4622), - [anon_sym_BANG] = ACTIONS(4622), - [anon_sym_TILDE] = ACTIONS(4622), - [anon_sym_with] = ACTIONS(4624), - [anon_sym_yield] = ACTIONS(4624), - [anon_sym_typeof] = ACTIONS(4624), - [anon_sym_sizeof] = ACTIONS(4624), - [anon_sym_instance_sizeof] = ACTIONS(4624), - [anon_sym_offsetof] = ACTIONS(4624), - [sym__constant_segment] = ACTIONS(4622), - [anon_sym_COLON_COLON] = ACTIONS(4622), - [anon_sym___LINE__] = ACTIONS(4624), - [anon_sym___END_LINE__] = ACTIONS(4624), - [anon_sym___FILE__] = ACTIONS(4624), - [anon_sym___DIR__] = ACTIONS(4624), - [sym_special_variable] = ACTIONS(4622), - [sym_global_match_data_index] = ACTIONS(4622), - [sym_identifier_method_call] = ACTIONS(4622), - [sym_instance_var] = ACTIONS(4622), - [sym_class_var] = ACTIONS(4622), - [sym_self] = ACTIONS(4624), - [anon_sym_LPAREN2] = ACTIONS(4622), - [sym_private] = ACTIONS(4624), - [sym_protected] = ACTIONS(4624), - [anon_sym_do] = ACTIONS(4624), - [anon_sym_begin] = ACTIONS(4624), - [anon_sym_while] = ACTIONS(4624), - [anon_sym_until] = ACTIONS(4624), - [anon_sym_case] = ACTIONS(4624), - [anon_sym_select] = ACTIONS(4624), - [aux_sym_asm_token1] = ACTIONS(4622), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4622), - [sym__start_of_hash_or_tuple] = ACTIONS(4622), - [sym__start_of_named_tuple] = ACTIONS(4622), - [sym__start_of_index_operator] = ACTIONS(4622), - [sym_unary_plus] = ACTIONS(4622), - [sym_unary_minus] = ACTIONS(4622), - [sym_unary_wrapping_plus] = ACTIONS(4622), - [sym_unary_wrapping_minus] = ACTIONS(4622), - [sym__unary_star] = ACTIONS(4622), - [sym__unary_double_star] = ACTIONS(4622), - [sym__block_ampersand] = ACTIONS(4622), - [sym__beginless_range_operator] = ACTIONS(4622), - [sym__regex_start] = ACTIONS(4622), - [sym__regular_if_keyword] = ACTIONS(4622), - [sym__regular_unless_keyword] = ACTIONS(4622), - [sym__string_literal_start] = ACTIONS(4622), - [sym__string_percent_literal_start] = ACTIONS(4622), - [sym__command_percent_literal_start] = ACTIONS(4622), - [sym__string_array_percent_literal_start] = ACTIONS(4622), - [sym__symbol_array_percent_literal_start] = ACTIONS(4622), - [sym__regex_percent_literal_start] = ACTIONS(4622), - [sym_heredoc_start] = ACTIONS(4622), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4622), - }, - [2155] = { - [sym_heredoc_body] = STATE(2155), - [sym_typeof] = STATE(2660), - [sym_constant] = STATE(2529), - [sym__type] = STATE(2672), - [sym_class_type] = STATE(2660), - [sym_union_type] = STATE(2660), - [sym__parenthesized_type] = STATE(2660), - [sym_no_args_proc_type] = STATE(2660), - [sym_parenthesized_proc_type] = STATE(2660), - [sym_tuple_type] = STATE(2660), - [sym_named_tuple_type] = STATE(2660), - [sym_generic_instance_type] = STATE(2660), - [sym_nilable_type] = STATE(2660), - [sym_pointer_type] = STATE(2660), - [sym_static_array_type] = STATE(2660), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(5250), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5252), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_end] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ_GT] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_TILDE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_AMP_STAR] = ACTIONS(4720), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5254), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(5256), - [sym_self] = ACTIONS(5258), - [sym_underscore_type] = ACTIONS(5258), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_do] = ACTIONS(4722), - [anon_sym_else] = ACTIONS(4722), - [sym__line_break] = ACTIONS(4722), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4722), - [sym__start_of_tuple_type] = ACTIONS(5260), - [sym__start_of_named_tuple_type] = ACTIONS(5262), - [sym__start_of_index_operator] = ACTIONS(4722), - [sym_binary_plus] = ACTIONS(4722), - [sym_binary_minus] = ACTIONS(4722), - [sym_binary_wrapping_plus] = ACTIONS(4722), - [sym_binary_wrapping_minus] = ACTIONS(4722), - [sym__binary_star] = ACTIONS(4722), - [sym__binary_double_star] = ACTIONS(4722), - [sym_binary_ampersand] = ACTIONS(4722), - [sym__binary_slash] = ACTIONS(4722), - [sym__binary_double_slash] = ACTIONS(4722), - [sym__modifier_if_keyword] = ACTIONS(4722), - [sym__modifier_unless_keyword] = ACTIONS(4722), - [sym__regular_rescue_keyword] = ACTIONS(4722), - [sym__modifier_rescue_keyword] = ACTIONS(4722), - [sym__regular_ensure_keyword] = ACTIONS(4722), - [sym__modifier_ensure_keyword] = ACTIONS(4722), - [sym__modulo_operator] = ACTIONS(4722), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2156] = { - [sym_heredoc_body] = STATE(2156), - [sym_typeof] = STATE(2981), - [sym_constant] = STATE(2839), - [sym__type] = STATE(2790), - [sym_class_type] = STATE(2981), - [sym_union_type] = STATE(2981), - [sym__parenthesized_type] = STATE(2981), - [sym_no_args_proc_type] = STATE(2981), - [sym_parenthesized_proc_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_named_tuple_type] = STATE(2981), - [sym_generic_instance_type] = STATE(2981), - [sym_nilable_type] = STATE(2981), - [sym_pointer_type] = STATE(2981), - [sym_static_array_type] = STATE(2981), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5300), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5302), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_end] = ACTIONS(4678), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5305), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(5307), - [sym_self] = ACTIONS(5309), - [sym_underscore_type] = ACTIONS(5309), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_do] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5311), - [sym__start_of_named_tuple_type] = ACTIONS(5313), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modifier_if_keyword] = ACTIONS(4678), - [sym__modifier_unless_keyword] = ACTIONS(4678), - [sym__modifier_rescue_keyword] = ACTIONS(4678), - [sym__regular_ensure_keyword] = ACTIONS(4678), - [sym__modifier_ensure_keyword] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2157] = { - [sym_heredoc_body] = STATE(2157), - [sym_typeof] = STATE(2850), - [sym_constant] = STATE(2810), - [sym__type] = STATE(2781), - [sym_class_type] = STATE(2850), - [sym_union_type] = STATE(2850), - [sym__parenthesized_type] = STATE(2850), - [sym_no_args_proc_type] = STATE(2850), - [sym_parenthesized_proc_type] = STATE(2850), - [sym_tuple_type] = STATE(2850), - [sym_named_tuple_type] = STATE(2850), - [sym_generic_instance_type] = STATE(2850), - [sym_nilable_type] = STATE(2850), - [sym_pointer_type] = STATE(2850), - [sym_static_array_type] = STATE(2850), - [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5315), + [2177] = { + [sym_heredoc_body] = STATE(2177), + [sym_typeof] = STATE(2789), + [sym_constant] = STATE(2701), + [sym__type] = STATE(2653), + [sym_class_type] = STATE(2789), + [sym_union_type] = STATE(2789), + [sym__parenthesized_type] = STATE(2789), + [sym_no_args_proc_type] = STATE(2789), + [sym_parenthesized_proc_type] = STATE(2789), + [sym_tuple_type] = STATE(2789), + [sym_named_tuple_type] = STATE(2789), + [sym_generic_instance_type] = STATE(2789), + [sym_nilable_type] = STATE(2789), + [sym_pointer_type] = STATE(2789), + [sym_static_array_type] = STATE(2789), + [anon_sym_LPAREN] = ACTIONS(5289), + [anon_sym_RPAREN] = ACTIONS(4628), [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4628), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_RBRACK] = ACTIONS(4628), + [anon_sym_EQ_GT] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5317), + [anon_sym_DASH_GT] = ACTIONS(5297), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -347541,19 +350562,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5320), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(5322), - [sym_self] = ACTIONS(5324), - [sym_underscore_type] = ACTIONS(5324), + [anon_sym_typeof] = ACTIONS(5279), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(5281), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_COLON2] = ACTIONS(4626), + [anon_sym_do] = ACTIONS(4628), [anon_sym_else] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), + [anon_sym_when] = ACTIONS(4628), + [anon_sym_in] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5326), - [sym__start_of_named_tuple_type] = ACTIONS(5328), + [sym__start_of_brace_block] = ACTIONS(4628), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -347564,38 +350589,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_ampersand] = ACTIONS(4628), [sym__binary_slash] = ACTIONS(4628), [sym__binary_double_slash] = ACTIONS(4628), - [sym__modifier_if_keyword] = ACTIONS(4628), - [sym__modifier_unless_keyword] = ACTIONS(4628), - [sym__regular_rescue_keyword] = ACTIONS(4628), - [sym__modifier_rescue_keyword] = ACTIONS(4628), - [sym__regular_ensure_keyword] = ACTIONS(4628), - [sym__modifier_ensure_keyword] = ACTIONS(4628), [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2158] = { - [sym_heredoc_body] = STATE(2158), - [sym_typeof] = STATE(2660), - [sym_constant] = STATE(2529), - [sym__type] = STATE(2678), - [sym_class_type] = STATE(2660), - [sym_union_type] = STATE(2660), - [sym__parenthesized_type] = STATE(2660), - [sym_no_args_proc_type] = STATE(2660), - [sym_parenthesized_proc_type] = STATE(2660), - [sym_tuple_type] = STATE(2660), - [sym_named_tuple_type] = STATE(2660), - [sym_generic_instance_type] = STATE(2660), - [sym_nilable_type] = STATE(2660), - [sym_pointer_type] = STATE(2660), - [sym_static_array_type] = STATE(2660), + [2178] = { + [sym_heredoc_body] = STATE(2178), + [sym_typeof] = STATE(2758), + [sym_constant] = STATE(2575), + [sym__type] = STATE(2658), + [sym_class_type] = STATE(2758), + [sym_union_type] = STATE(2758), + [sym__parenthesized_type] = STATE(2758), + [sym_no_args_proc_type] = STATE(2758), + [sym_parenthesized_proc_type] = STATE(2758), + [sym_tuple_type] = STATE(2758), + [sym_named_tuple_type] = STATE(2758), + [sym_generic_instance_type] = STATE(2758), + [sym_nilable_type] = STATE(2758), + [sym_pointer_type] = STATE(2758), + [sym_static_array_type] = STATE(2758), [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(5250), + [anon_sym_LPAREN] = ACTIONS(5268), [sym_comment] = ACTIONS(5), [anon_sym_COMMA] = ACTIONS(4700), [anon_sym_DOT_DOT] = ACTIONS(4698), [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5252), + [anon_sym_DASH_GT] = ACTIONS(5270), [anon_sym_DOT] = ACTIONS(4698), [anon_sym_end] = ACTIONS(4700), [anon_sym_LT] = ACTIONS(4698), @@ -347615,11 +350634,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4700), [anon_sym_AMP_STAR] = ACTIONS(4698), [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5254), - [sym__constant_segment] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(5256), - [sym_self] = ACTIONS(5258), - [sym_underscore_type] = ACTIONS(5258), + [anon_sym_typeof] = ACTIONS(5255), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(5257), + [sym_self] = ACTIONS(5259), + [sym_underscore_type] = ACTIONS(5259), [anon_sym_QMARK] = ACTIONS(4700), [anon_sym_AMP_AMP] = ACTIONS(4700), [anon_sym_PIPE_PIPE] = ACTIONS(4700), @@ -347628,8 +350647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_break] = ACTIONS(4700), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4700), - [sym__start_of_tuple_type] = ACTIONS(5260), - [sym__start_of_named_tuple_type] = ACTIONS(5262), + [sym__start_of_tuple_type] = ACTIONS(5261), + [sym__start_of_named_tuple_type] = ACTIONS(5263), [sym__start_of_index_operator] = ACTIONS(4700), [sym_binary_plus] = ACTIONS(4700), [sym_binary_minus] = ACTIONS(4700), @@ -347649,30 +350668,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2159] = { - [sym_heredoc_body] = STATE(2159), - [sym_typeof] = STATE(2981), - [sym_constant] = STATE(2839), - [sym__type] = STATE(2991), - [sym_class_type] = STATE(2981), - [sym_union_type] = STATE(2981), - [sym__parenthesized_type] = STATE(2981), - [sym_no_args_proc_type] = STATE(2981), - [sym_parenthesized_proc_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_named_tuple_type] = STATE(2981), - [sym_generic_instance_type] = STATE(2981), - [sym_nilable_type] = STATE(2981), - [sym_pointer_type] = STATE(2981), - [sym_static_array_type] = STATE(2981), + [2179] = { + [sym_heredoc_body] = STATE(2179), + [sym_typeof] = STATE(2923), + [sym_constant] = STATE(2799), + [sym__type] = STATE(2836), + [sym_class_type] = STATE(2923), + [sym_union_type] = STATE(2923), + [sym__parenthesized_type] = STATE(2923), + [sym_no_args_proc_type] = STATE(2923), + [sym_parenthesized_proc_type] = STATE(2923), + [sym_tuple_type] = STATE(2923), + [sym_named_tuple_type] = STATE(2923), + [sym_generic_instance_type] = STATE(2923), + [sym_nilable_type] = STATE(2923), + [sym_pointer_type] = STATE(2923), + [sym_static_array_type] = STATE(2923), [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5300), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5332), + [anon_sym_DASH_GT] = ACTIONS(5302), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -347694,7 +350713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), [anon_sym_typeof] = ACTIONS(5305), - [sym__constant_segment] = ACTIONS(3121), + [sym__constant_segment] = ACTIONS(3165), [anon_sym_COLON_COLON] = ACTIONS(5307), [sym_self] = ACTIONS(5309), [sym_underscore_type] = ACTIONS(5309), @@ -347725,30 +350744,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2160] = { - [sym_heredoc_body] = STATE(2160), - [sym_typeof] = STATE(2850), - [sym_constant] = STATE(2810), - [sym__type] = STATE(2974), - [sym_class_type] = STATE(2850), - [sym_union_type] = STATE(2850), - [sym__parenthesized_type] = STATE(2850), - [sym_no_args_proc_type] = STATE(2850), - [sym_parenthesized_proc_type] = STATE(2850), - [sym_tuple_type] = STATE(2850), - [sym_named_tuple_type] = STATE(2850), - [sym_generic_instance_type] = STATE(2850), - [sym_nilable_type] = STATE(2850), - [sym_pointer_type] = STATE(2850), - [sym_static_array_type] = STATE(2850), + [2180] = { + [sym_heredoc_body] = STATE(2180), + [sym_typeof] = STATE(3148), + [sym_constant] = STATE(2891), + [sym__type] = STATE(3127), + [sym_class_type] = STATE(3148), + [sym_union_type] = STATE(3148), + [sym__parenthesized_type] = STATE(3148), + [sym_no_args_proc_type] = STATE(3148), + [sym_parenthesized_proc_type] = STATE(3148), + [sym_tuple_type] = STATE(3148), + [sym_named_tuple_type] = STATE(3148), + [sym_generic_instance_type] = STATE(3148), + [sym_nilable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym_static_array_type] = STATE(3148), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(5315), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5317), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5319), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(5321), + [sym_self] = ACTIONS(5323), + [sym_underscore_type] = ACTIONS(5323), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4656), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5325), + [sym__start_of_named_tuple_type] = ACTIONS(5327), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modifier_if_keyword] = ACTIONS(4656), + [sym__modifier_unless_keyword] = ACTIONS(4656), + [sym__regular_rescue_keyword] = ACTIONS(4656), + [sym__modifier_rescue_keyword] = ACTIONS(4656), + [sym__regular_ensure_keyword] = ACTIONS(4656), + [sym__modifier_ensure_keyword] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2181] = { + [sym_heredoc_body] = STATE(2181), + [sym_typeof] = STATE(3148), + [sym_constant] = STATE(2891), + [sym__type] = STATE(2997), + [sym_class_type] = STATE(3148), + [sym_union_type] = STATE(3148), + [sym__parenthesized_type] = STATE(3148), + [sym_no_args_proc_type] = STATE(3148), + [sym_parenthesized_proc_type] = STATE(3148), + [sym_tuple_type] = STATE(3148), + [sym_named_tuple_type] = STATE(3148), + [sym_generic_instance_type] = STATE(3148), + [sym_nilable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym_static_array_type] = STATE(3148), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5315), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5317), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5319), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(5321), + [sym_self] = ACTIONS(5323), + [sym_underscore_type] = ACTIONS(5323), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5325), + [sym__start_of_named_tuple_type] = ACTIONS(5327), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modifier_if_keyword] = ACTIONS(4678), + [sym__modifier_unless_keyword] = ACTIONS(4678), + [sym__regular_rescue_keyword] = ACTIONS(4678), + [sym__modifier_rescue_keyword] = ACTIONS(4678), + [sym__regular_ensure_keyword] = ACTIONS(4678), + [sym__modifier_ensure_keyword] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2182] = { + [sym_heredoc_body] = STATE(2182), + [sym_typeof] = STATE(3148), + [sym_constant] = STATE(2891), + [sym__type] = STATE(2999), + [sym_class_type] = STATE(3148), + [sym_union_type] = STATE(3148), + [sym__parenthesized_type] = STATE(3148), + [sym_no_args_proc_type] = STATE(3148), + [sym_parenthesized_proc_type] = STATE(3148), + [sym_tuple_type] = STATE(3148), + [sym_named_tuple_type] = STATE(3148), + [sym_generic_instance_type] = STATE(3148), + [sym_nilable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym_static_array_type] = STATE(3148), [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5315), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5336), + [anon_sym_DASH_GT] = ACTIONS(5317), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -347769,19 +350940,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5320), + [anon_sym_typeof] = ACTIONS(5319), [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(5322), - [sym_self] = ACTIONS(5324), - [sym_underscore_type] = ACTIONS(5324), + [anon_sym_COLON_COLON] = ACTIONS(5321), + [sym_self] = ACTIONS(5323), + [sym_underscore_type] = ACTIONS(5323), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), [anon_sym_else] = ACTIONS(4628), [sym__line_break] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5326), - [sym__start_of_named_tuple_type] = ACTIONS(5328), + [sym__start_of_tuple_type] = ACTIONS(5325), + [sym__start_of_named_tuple_type] = ACTIONS(5327), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -347801,30 +350972,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2161] = { - [sym_heredoc_body] = STATE(2161), - [sym_typeof] = STATE(2981), - [sym_constant] = STATE(2839), - [sym__type] = STATE(3066), - [sym_class_type] = STATE(2981), - [sym_union_type] = STATE(2981), - [sym__parenthesized_type] = STATE(2981), - [sym_no_args_proc_type] = STATE(2981), - [sym_parenthesized_proc_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_named_tuple_type] = STATE(2981), - [sym_generic_instance_type] = STATE(2981), - [sym_nilable_type] = STATE(2981), - [sym_pointer_type] = STATE(2981), - [sym_static_array_type] = STATE(2981), + [2183] = { + [sym_heredoc_body] = STATE(2183), + [sym_typeof] = STATE(2923), + [sym_constant] = STATE(2799), + [sym__type] = STATE(2802), + [sym_class_type] = STATE(2923), + [sym_union_type] = STATE(2923), + [sym__parenthesized_type] = STATE(2923), + [sym_no_args_proc_type] = STATE(2923), + [sym_parenthesized_proc_type] = STATE(2923), + [sym_tuple_type] = STATE(2923), + [sym_named_tuple_type] = STATE(2923), + [sym_generic_instance_type] = STATE(2923), + [sym_nilable_type] = STATE(2923), + [sym_pointer_type] = STATE(2923), + [sym_static_array_type] = STATE(2923), [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5300), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5332), + [anon_sym_DASH_GT] = ACTIONS(5329), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_end] = ACTIONS(4656), [anon_sym_LT] = ACTIONS(4654), @@ -347846,7 +351017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), [anon_sym_typeof] = ACTIONS(5305), - [sym__constant_segment] = ACTIONS(3121), + [sym__constant_segment] = ACTIONS(3165), [anon_sym_COLON_COLON] = ACTIONS(5307), [sym_self] = ACTIONS(5309), [sym_underscore_type] = ACTIONS(5309), @@ -347876,31 +351047,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modifier_ensure_keyword] = ACTIONS(4656), [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), - }, - [2162] = { - [sym_heredoc_body] = STATE(2162), - [sym_typeof] = STATE(2850), - [sym_constant] = STATE(2810), - [sym__type] = STATE(3045), - [sym_class_type] = STATE(2850), - [sym_union_type] = STATE(2850), - [sym__parenthesized_type] = STATE(2850), - [sym_no_args_proc_type] = STATE(2850), - [sym_parenthesized_proc_type] = STATE(2850), - [sym_tuple_type] = STATE(2850), - [sym_named_tuple_type] = STATE(2850), - [sym_generic_instance_type] = STATE(2850), - [sym_nilable_type] = STATE(2850), - [sym_pointer_type] = STATE(2850), - [sym_static_array_type] = STATE(2850), + }, + [2184] = { + [sym_heredoc_body] = STATE(2184), + [sym_typeof] = STATE(2923), + [sym_constant] = STATE(2799), + [sym__type] = STATE(3132), + [sym_class_type] = STATE(2923), + [sym_union_type] = STATE(2923), + [sym__parenthesized_type] = STATE(2923), + [sym_no_args_proc_type] = STATE(2923), + [sym_parenthesized_proc_type] = STATE(2923), + [sym_tuple_type] = STATE(2923), + [sym_named_tuple_type] = STATE(2923), + [sym_generic_instance_type] = STATE(2923), + [sym_nilable_type] = STATE(2923), + [sym_pointer_type] = STATE(2923), + [sym_static_array_type] = STATE(2923), [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5332), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5336), + [anon_sym_DASH_GT] = ACTIONS(5334), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_end] = ACTIONS(4656), [anon_sym_LT] = ACTIONS(4654), @@ -347921,19 +351092,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5320), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(5322), - [sym_self] = ACTIONS(5324), - [sym_underscore_type] = ACTIONS(5324), + [anon_sym_typeof] = ACTIONS(5305), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(5307), + [sym_self] = ACTIONS(5309), + [sym_underscore_type] = ACTIONS(5309), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_else] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), [sym__line_break] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5326), - [sym__start_of_named_tuple_type] = ACTIONS(5328), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5311), + [sym__start_of_named_tuple_type] = ACTIONS(5313), [sym__start_of_index_operator] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), @@ -347946,37 +351118,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(4656), [sym__modifier_if_keyword] = ACTIONS(4656), [sym__modifier_unless_keyword] = ACTIONS(4656), - [sym__regular_rescue_keyword] = ACTIONS(4656), [sym__modifier_rescue_keyword] = ACTIONS(4656), [sym__regular_ensure_keyword] = ACTIONS(4656), [sym__modifier_ensure_keyword] = ACTIONS(4656), [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2163] = { - [sym_heredoc_body] = STATE(2163), - [sym_typeof] = STATE(2981), - [sym_constant] = STATE(2839), - [sym__type] = STATE(3067), - [sym_class_type] = STATE(2981), - [sym_union_type] = STATE(2981), - [sym__parenthesized_type] = STATE(2981), - [sym_no_args_proc_type] = STATE(2981), - [sym_parenthesized_proc_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_named_tuple_type] = STATE(2981), - [sym_generic_instance_type] = STATE(2981), - [sym_nilable_type] = STATE(2981), - [sym_pointer_type] = STATE(2981), - [sym_static_array_type] = STATE(2981), + [2185] = { + [sym_heredoc_body] = STATE(2185), + [sym_typeof] = STATE(2923), + [sym_constant] = STATE(2799), + [sym__type] = STATE(3028), + [sym_class_type] = STATE(2923), + [sym_union_type] = STATE(2923), + [sym__parenthesized_type] = STATE(2923), + [sym_no_args_proc_type] = STATE(2923), + [sym_parenthesized_proc_type] = STATE(2923), + [sym_tuple_type] = STATE(2923), + [sym_named_tuple_type] = STATE(2923), + [sym_generic_instance_type] = STATE(2923), + [sym_nilable_type] = STATE(2923), + [sym_pointer_type] = STATE(2923), + [sym_static_array_type] = STATE(2923), [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5330), + [anon_sym_LPAREN] = ACTIONS(5332), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5332), + [anon_sym_DASH_GT] = ACTIONS(5334), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4678), [anon_sym_LT] = ACTIONS(4676), @@ -347998,7 +351169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), [anon_sym_typeof] = ACTIONS(5305), - [sym__constant_segment] = ACTIONS(3121), + [sym__constant_segment] = ACTIONS(3165), [anon_sym_COLON_COLON] = ACTIONS(5307), [sym_self] = ACTIONS(5309), [sym_underscore_type] = ACTIONS(5309), @@ -348029,106 +351200,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2164] = { - [sym_heredoc_body] = STATE(2164), - [sym_typeof] = STATE(2981), - [sym_constant] = STATE(2839), - [sym__type] = STATE(2789), - [sym_class_type] = STATE(2981), - [sym_union_type] = STATE(2981), - [sym__parenthesized_type] = STATE(2981), - [sym_no_args_proc_type] = STATE(2981), - [sym_parenthesized_proc_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_named_tuple_type] = STATE(2981), - [sym_generic_instance_type] = STATE(2981), - [sym_nilable_type] = STATE(2981), - [sym_pointer_type] = STATE(2981), - [sym_static_array_type] = STATE(2981), - [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5300), + [2186] = { + [sym_heredoc_body] = STATE(2186), + [sym_typeof] = STATE(2923), + [sym_constant] = STATE(2799), + [sym__type] = STATE(3029), + [sym_class_type] = STATE(2923), + [sym_union_type] = STATE(2923), + [sym__parenthesized_type] = STATE(2923), + [sym_no_args_proc_type] = STATE(2923), + [sym_parenthesized_proc_type] = STATE(2923), + [sym_tuple_type] = STATE(2923), + [sym_named_tuple_type] = STATE(2923), + [sym_generic_instance_type] = STATE(2923), + [sym_nilable_type] = STATE(2923), + [sym_pointer_type] = STATE(2923), + [sym_static_array_type] = STATE(2923), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5332), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5338), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_end] = ACTIONS(4656), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_end] = ACTIONS(4628), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), [anon_sym_typeof] = ACTIONS(5305), - [sym__constant_segment] = ACTIONS(3121), + [sym__constant_segment] = ACTIONS(3165), [anon_sym_COLON_COLON] = ACTIONS(5307), [sym_self] = ACTIONS(5309), [sym_underscore_type] = ACTIONS(5309), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), - [sym__line_break] = ACTIONS(4656), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_do] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_brace_block] = ACTIONS(4628), [sym__start_of_tuple_type] = ACTIONS(5311), [sym__start_of_named_tuple_type] = ACTIONS(5313), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modifier_if_keyword] = ACTIONS(4656), - [sym__modifier_unless_keyword] = ACTIONS(4656), - [sym__modifier_rescue_keyword] = ACTIONS(4656), - [sym__regular_ensure_keyword] = ACTIONS(4656), - [sym__modifier_ensure_keyword] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modifier_if_keyword] = ACTIONS(4628), + [sym__modifier_unless_keyword] = ACTIONS(4628), + [sym__modifier_rescue_keyword] = ACTIONS(4628), + [sym__regular_ensure_keyword] = ACTIONS(4628), + [sym__modifier_ensure_keyword] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2165] = { - [sym_heredoc_body] = STATE(2165), - [sym_typeof] = STATE(2850), - [sym_constant] = STATE(2810), - [sym__type] = STATE(2764), - [sym_class_type] = STATE(2850), - [sym_union_type] = STATE(2850), - [sym__parenthesized_type] = STATE(2850), - [sym_no_args_proc_type] = STATE(2850), - [sym_parenthesized_proc_type] = STATE(2850), - [sym_tuple_type] = STATE(2850), - [sym_named_tuple_type] = STATE(2850), - [sym_generic_instance_type] = STATE(2850), - [sym_nilable_type] = STATE(2850), - [sym_pointer_type] = STATE(2850), - [sym_static_array_type] = STATE(2850), + [2187] = { + [sym_heredoc_body] = STATE(2187), + [sym_typeof] = STATE(3148), + [sym_constant] = STATE(2891), + [sym__type] = STATE(2795), + [sym_class_type] = STATE(3148), + [sym_union_type] = STATE(3148), + [sym__parenthesized_type] = STATE(3148), + [sym_no_args_proc_type] = STATE(3148), + [sym_parenthesized_proc_type] = STATE(3148), + [sym_tuple_type] = STATE(3148), + [sym_named_tuple_type] = STATE(3148), + [sym_generic_instance_type] = STATE(3148), + [sym_nilable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym_static_array_type] = STATE(3148), [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5315), + [anon_sym_LPAREN] = ACTIONS(5336), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5341), + [anon_sym_DASH_GT] = ACTIONS(5338), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_end] = ACTIONS(4656), [anon_sym_LT] = ACTIONS(4654), @@ -348149,19 +351320,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5320), + [anon_sym_typeof] = ACTIONS(5319), [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(5322), - [sym_self] = ACTIONS(5324), - [sym_underscore_type] = ACTIONS(5324), + [anon_sym_COLON_COLON] = ACTIONS(5321), + [sym_self] = ACTIONS(5323), + [sym_underscore_type] = ACTIONS(5323), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), [anon_sym_else] = ACTIONS(4656), [sym__line_break] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5326), - [sym__start_of_named_tuple_type] = ACTIONS(5328), + [sym__start_of_tuple_type] = ACTIONS(5325), + [sym__start_of_named_tuple_type] = ACTIONS(5327), [sym__start_of_index_operator] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), @@ -348181,30 +351352,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2166] = { - [sym_heredoc_body] = STATE(2166), - [sym_typeof] = STATE(2850), - [sym_constant] = STATE(2810), - [sym__type] = STATE(2766), - [sym_class_type] = STATE(2850), - [sym_union_type] = STATE(2850), - [sym__parenthesized_type] = STATE(2850), - [sym_no_args_proc_type] = STATE(2850), - [sym_parenthesized_proc_type] = STATE(2850), - [sym_tuple_type] = STATE(2850), - [sym_named_tuple_type] = STATE(2850), - [sym_generic_instance_type] = STATE(2850), - [sym_nilable_type] = STATE(2850), - [sym_pointer_type] = STATE(2850), - [sym_static_array_type] = STATE(2850), + [2188] = { + [sym_heredoc_body] = STATE(2188), + [sym_typeof] = STATE(2923), + [sym_constant] = STATE(2799), + [sym__type] = STATE(2835), + [sym_class_type] = STATE(2923), + [sym_union_type] = STATE(2923), + [sym__parenthesized_type] = STATE(2923), + [sym_no_args_proc_type] = STATE(2923), + [sym_parenthesized_proc_type] = STATE(2923), + [sym_tuple_type] = STATE(2923), + [sym_named_tuple_type] = STATE(2923), + [sym_generic_instance_type] = STATE(2923), + [sym_nilable_type] = STATE(2923), + [sym_pointer_type] = STATE(2923), + [sym_static_array_type] = STATE(2923), [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5315), + [anon_sym_LPAREN] = ACTIONS(5300), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5344), + [anon_sym_DASH_GT] = ACTIONS(5341), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4678), [anon_sym_LT] = ACTIONS(4676), @@ -348225,19 +351396,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5320), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(5322), - [sym_self] = ACTIONS(5324), - [sym_underscore_type] = ACTIONS(5324), + [anon_sym_typeof] = ACTIONS(5305), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(5307), + [sym_self] = ACTIONS(5309), + [sym_underscore_type] = ACTIONS(5309), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_else] = ACTIONS(4678), + [anon_sym_do] = ACTIONS(4678), [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5326), - [sym__start_of_named_tuple_type] = ACTIONS(5328), + [sym__start_of_brace_block] = ACTIONS(4678), + [sym__start_of_tuple_type] = ACTIONS(5311), + [sym__start_of_named_tuple_type] = ACTIONS(5313), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -348250,37 +351422,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(4678), [sym__modifier_if_keyword] = ACTIONS(4678), [sym__modifier_unless_keyword] = ACTIONS(4678), - [sym__regular_rescue_keyword] = ACTIONS(4678), [sym__modifier_rescue_keyword] = ACTIONS(4678), [sym__regular_ensure_keyword] = ACTIONS(4678), [sym__modifier_ensure_keyword] = ACTIONS(4678), [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2167] = { - [sym_heredoc_body] = STATE(2167), - [sym_typeof] = STATE(2850), - [sym_constant] = STATE(2810), - [sym__type] = STATE(3047), - [sym_class_type] = STATE(2850), - [sym_union_type] = STATE(2850), - [sym__parenthesized_type] = STATE(2850), - [sym_no_args_proc_type] = STATE(2850), - [sym_parenthesized_proc_type] = STATE(2850), - [sym_tuple_type] = STATE(2850), - [sym_named_tuple_type] = STATE(2850), - [sym_generic_instance_type] = STATE(2850), - [sym_nilable_type] = STATE(2850), - [sym_pointer_type] = STATE(2850), - [sym_static_array_type] = STATE(2850), + [2189] = { + [sym_heredoc_body] = STATE(2189), + [sym_typeof] = STATE(3148), + [sym_constant] = STATE(2891), + [sym__type] = STATE(2869), + [sym_class_type] = STATE(3148), + [sym_union_type] = STATE(3148), + [sym__parenthesized_type] = STATE(3148), + [sym_no_args_proc_type] = STATE(3148), + [sym_parenthesized_proc_type] = STATE(3148), + [sym_tuple_type] = STATE(3148), + [sym_named_tuple_type] = STATE(3148), + [sym_generic_instance_type] = STATE(3148), + [sym_nilable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym_static_array_type] = STATE(3148), [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5334), + [anon_sym_LPAREN] = ACTIONS(5336), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5336), + [anon_sym_DASH_GT] = ACTIONS(5344), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4678), [anon_sym_LT] = ACTIONS(4676), @@ -348301,19 +351472,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5320), + [anon_sym_typeof] = ACTIONS(5319), [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(5322), - [sym_self] = ACTIONS(5324), - [sym_underscore_type] = ACTIONS(5324), + [anon_sym_COLON_COLON] = ACTIONS(5321), + [sym_self] = ACTIONS(5323), + [sym_underscore_type] = ACTIONS(5323), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), [anon_sym_else] = ACTIONS(4678), [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5326), - [sym__start_of_named_tuple_type] = ACTIONS(5328), + [sym__start_of_tuple_type] = ACTIONS(5325), + [sym__start_of_named_tuple_type] = ACTIONS(5327), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -348333,24 +351504,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2168] = { - [sym_heredoc_body] = STATE(2168), - [sym_typeof] = STATE(2981), - [sym_constant] = STATE(2839), - [sym__type] = STATE(2799), - [sym_class_type] = STATE(2981), - [sym_union_type] = STATE(2981), - [sym__parenthesized_type] = STATE(2981), - [sym_no_args_proc_type] = STATE(2981), - [sym_parenthesized_proc_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_named_tuple_type] = STATE(2981), - [sym_generic_instance_type] = STATE(2981), - [sym_nilable_type] = STATE(2981), - [sym_pointer_type] = STATE(2981), - [sym_static_array_type] = STATE(2981), + [2190] = { + [sym_heredoc_body] = STATE(2190), + [sym_typeof] = STATE(3148), + [sym_constant] = STATE(2891), + [sym__type] = STATE(2870), + [sym_class_type] = STATE(3148), + [sym_union_type] = STATE(3148), + [sym__parenthesized_type] = STATE(3148), + [sym_no_args_proc_type] = STATE(3148), + [sym_parenthesized_proc_type] = STATE(3148), + [sym_tuple_type] = STATE(3148), + [sym_named_tuple_type] = STATE(3148), + [sym_generic_instance_type] = STATE(3148), + [sym_nilable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym_static_array_type] = STATE(3148), [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5336), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), @@ -348377,20 +351548,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5305), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(5307), - [sym_self] = ACTIONS(5309), - [sym_underscore_type] = ACTIONS(5309), + [anon_sym_typeof] = ACTIONS(5319), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(5321), + [sym_self] = ACTIONS(5323), + [sym_underscore_type] = ACTIONS(5323), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_do] = ACTIONS(4628), + [anon_sym_else] = ACTIONS(4628), [sym__line_break] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5311), - [sym__start_of_named_tuple_type] = ACTIONS(5313), + [sym__start_of_tuple_type] = ACTIONS(5325), + [sym__start_of_named_tuple_type] = ACTIONS(5327), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -348403,104 +351573,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(4628), [sym__modifier_if_keyword] = ACTIONS(4628), [sym__modifier_unless_keyword] = ACTIONS(4628), + [sym__regular_rescue_keyword] = ACTIONS(4628), [sym__modifier_rescue_keyword] = ACTIONS(4628), [sym__regular_ensure_keyword] = ACTIONS(4628), [sym__modifier_ensure_keyword] = ACTIONS(4628), [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2169] = { - [sym_heredoc_body] = STATE(2169), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), + [2191] = { + [sym_heredoc_body] = STATE(2191), + [sym_typeof] = STATE(2758), + [sym_constant] = STATE(2575), + [sym__type] = STATE(2664), + [sym_class_type] = STATE(2758), + [sym_union_type] = STATE(2758), + [sym__parenthesized_type] = STATE(2758), + [sym_no_args_proc_type] = STATE(2758), + [sym_parenthesized_proc_type] = STATE(2758), + [sym_tuple_type] = STATE(2758), + [sym_named_tuple_type] = STATE(2758), + [sym_generic_instance_type] = STATE(2758), + [sym_nilable_type] = STATE(2758), + [sym_pointer_type] = STATE(2758), + [sym_static_array_type] = STATE(2758), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5268), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(291), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_AMP_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_AMP_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), - [anon_sym_PERCENT_EQ] = ACTIONS(297), - [anon_sym_PIPE_EQ] = ACTIONS(297), - [anon_sym_AMP_EQ] = ACTIONS(297), - [anon_sym_CARET_EQ] = ACTIONS(297), - [anon_sym_STAR_STAR_EQ] = ACTIONS(297), - [anon_sym_LT_LT_EQ] = ACTIONS(297), - [anon_sym_GT_GT_EQ] = ACTIONS(297), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(297), - [anon_sym_AMP_AMP_EQ] = ACTIONS(297), - [anon_sym_COLON2] = ACTIONS(5350), - [anon_sym_do] = ACTIONS(173), - [anon_sym_elsif] = ACTIONS(173), - [anon_sym_else] = ACTIONS(173), - [anon_sym_when] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [sym__line_break] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(5270), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_end] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ_GT] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_BANG_TILDE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_AMP_STAR] = ACTIONS(4720), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_typeof] = ACTIONS(5255), + [sym__constant_segment] = ACTIONS(2899), + [anon_sym_COLON_COLON] = ACTIONS(5257), + [sym_self] = ACTIONS(5259), + [sym_underscore_type] = ACTIONS(5259), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_do] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [sym__line_break] = ACTIONS(4722), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(173), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), + [sym__start_of_brace_block] = ACTIONS(4722), + [sym__start_of_tuple_type] = ACTIONS(5261), + [sym__start_of_named_tuple_type] = ACTIONS(5263), + [sym__start_of_index_operator] = ACTIONS(4722), + [sym_binary_plus] = ACTIONS(4722), + [sym_binary_minus] = ACTIONS(4722), + [sym_binary_wrapping_plus] = ACTIONS(4722), + [sym_binary_wrapping_minus] = ACTIONS(4722), + [sym__binary_star] = ACTIONS(4722), + [sym__binary_double_star] = ACTIONS(4722), + [sym_binary_ampersand] = ACTIONS(4722), + [sym__binary_slash] = ACTIONS(4722), + [sym__binary_double_slash] = ACTIONS(4722), + [sym__modifier_if_keyword] = ACTIONS(4722), + [sym__modifier_unless_keyword] = ACTIONS(4722), + [sym__regular_rescue_keyword] = ACTIONS(4722), + [sym__modifier_rescue_keyword] = ACTIONS(4722), + [sym__regular_ensure_keyword] = ACTIONS(4722), + [sym__modifier_ensure_keyword] = ACTIONS(4722), + [sym__modulo_operator] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, - [2170] = { - [sym_heredoc_body] = STATE(2170), - [sym_typeof] = STATE(2831), - [sym_constant] = STATE(2603), - [sym__type] = STATE(2821), - [sym_class_type] = STATE(2831), - [sym_union_type] = STATE(2831), - [sym__parenthesized_type] = STATE(2831), - [sym_no_args_proc_type] = STATE(2831), - [sym_parenthesized_proc_type] = STATE(2831), - [sym_tuple_type] = STATE(2831), - [sym_named_tuple_type] = STATE(2831), - [sym_generic_instance_type] = STATE(2831), - [sym_nilable_type] = STATE(2831), - [sym_pointer_type] = STATE(2831), - [sym_static_array_type] = STATE(2831), - [anon_sym_LPAREN] = ACTIONS(5290), + [2192] = { + [sym_heredoc_body] = STATE(2192), + [sym_typeof] = STATE(2789), + [sym_constant] = STATE(2701), + [sym__type] = STATE(2811), + [sym_class_type] = STATE(2789), + [sym_union_type] = STATE(2789), + [sym__parenthesized_type] = STATE(2789), + [sym_no_args_proc_type] = STATE(2789), + [sym_parenthesized_proc_type] = STATE(2789), + [sym_tuple_type] = STATE(2789), + [sym_named_tuple_type] = STATE(2789), + [sym_generic_instance_type] = STATE(2789), + [sym_nilable_type] = STATE(2789), + [sym_pointer_type] = STATE(2789), + [sym_static_array_type] = STATE(2789), + [anon_sym_LPAREN] = ACTIONS(5275), [anon_sym_RPAREN] = ACTIONS(4700), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4700), @@ -348509,7 +351681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(4700), [anon_sym_DOT_DOT] = ACTIONS(4698), [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5292), + [anon_sym_DASH_GT] = ACTIONS(5277), [anon_sym_DOT] = ACTIONS(4698), [anon_sym_end] = ACTIONS(4700), [anon_sym_LT] = ACTIONS(4698), @@ -348529,11 +351701,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4700), [anon_sym_AMP_STAR] = ACTIONS(4698), [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5280), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(5282), - [sym_self] = ACTIONS(5284), - [sym_underscore_type] = ACTIONS(5284), + [anon_sym_typeof] = ACTIONS(5279), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(5281), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), [anon_sym_QMARK] = ACTIONS(4700), [anon_sym_AMP_AMP] = ACTIONS(4700), [anon_sym_PIPE_PIPE] = ACTIONS(4700), @@ -348544,8 +351716,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(4700), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4700), - [sym__start_of_tuple_type] = ACTIONS(5286), - [sym__start_of_named_tuple_type] = ACTIONS(5288), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), [sym__start_of_index_operator] = ACTIONS(4700), [sym_binary_plus] = ACTIONS(4700), [sym_binary_minus] = ACTIONS(4700), @@ -348559,248 +351731,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2171] = { - [sym_heredoc_body] = STATE(2171), - [sym_typeof] = STATE(3244), - [sym_constant] = STATE(3119), - [sym__type] = STATE(3131), - [sym_class_type] = STATE(3244), - [sym_union_type] = STATE(3244), - [sym__parenthesized_type] = STATE(3244), - [sym_no_args_proc_type] = STATE(3244), - [sym_parenthesized_proc_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_named_tuple_type] = STATE(3244), - [sym_generic_instance_type] = STATE(3244), - [sym_nilable_type] = STATE(3244), - [sym_pointer_type] = STATE(3244), - [sym_static_array_type] = STATE(3244), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_RPAREN] = ACTIONS(4628), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4628), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_RBRACK] = ACTIONS(4628), - [anon_sym_EQ_GT] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5354), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_end] = ACTIONS(4628), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5356), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(5358), - [sym_self] = ACTIONS(5360), - [sym_underscore_type] = ACTIONS(5360), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_COLON2] = ACTIONS(4626), - [anon_sym_else] = ACTIONS(4628), - [anon_sym_when] = ACTIONS(4628), - [anon_sym_in] = ACTIONS(4628), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5362), - [sym__start_of_named_tuple_type] = ACTIONS(5364), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2172] = { - [sym_heredoc_body] = STATE(2172), - [sym_typeof] = STATE(3244), - [sym_constant] = STATE(3119), - [sym__type] = STATE(2953), - [sym_class_type] = STATE(3244), - [sym_union_type] = STATE(3244), - [sym__parenthesized_type] = STATE(3244), - [sym_no_args_proc_type] = STATE(3244), - [sym_parenthesized_proc_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_named_tuple_type] = STATE(3244), - [sym_generic_instance_type] = STATE(3244), - [sym_nilable_type] = STATE(3244), - [sym_pointer_type] = STATE(3244), - [sym_static_array_type] = STATE(3244), - [anon_sym_LPAREN] = ACTIONS(5366), - [anon_sym_RPAREN] = ACTIONS(4678), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4678), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_RBRACK] = ACTIONS(4678), - [anon_sym_EQ_GT] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5368), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_end] = ACTIONS(4678), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5356), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(5358), - [sym_self] = ACTIONS(5360), - [sym_underscore_type] = ACTIONS(5360), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_COLON2] = ACTIONS(4676), - [anon_sym_else] = ACTIONS(4678), - [anon_sym_when] = ACTIONS(4678), - [anon_sym_in] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5362), - [sym__start_of_named_tuple_type] = ACTIONS(5364), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2173] = { - [sym_heredoc_body] = STATE(2173), - [sym_typeof] = STATE(3244), - [sym_constant] = STATE(3119), - [sym__type] = STATE(3239), - [sym_class_type] = STATE(3244), - [sym_union_type] = STATE(3244), - [sym__parenthesized_type] = STATE(3244), - [sym_no_args_proc_type] = STATE(3244), - [sym_parenthesized_proc_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_named_tuple_type] = STATE(3244), - [sym_generic_instance_type] = STATE(3244), - [sym_nilable_type] = STATE(3244), - [sym_pointer_type] = STATE(3244), - [sym_static_array_type] = STATE(3244), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_RPAREN] = ACTIONS(4656), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4656), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_RBRACK] = ACTIONS(4656), - [anon_sym_EQ_GT] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5354), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_end] = ACTIONS(4656), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5356), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(5358), - [sym_self] = ACTIONS(5360), - [sym_underscore_type] = ACTIONS(5360), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_COLON2] = ACTIONS(4654), - [anon_sym_else] = ACTIONS(4656), - [anon_sym_when] = ACTIONS(4656), - [anon_sym_in] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5362), - [sym__start_of_named_tuple_type] = ACTIONS(5364), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2174] = { - [sym_heredoc_body] = STATE(2174), - [sym_typeof] = STATE(3244), - [sym_constant] = STATE(3119), - [sym__type] = STATE(2952), - [sym_class_type] = STATE(3244), - [sym_union_type] = STATE(3244), - [sym__parenthesized_type] = STATE(3244), - [sym_no_args_proc_type] = STATE(3244), - [sym_parenthesized_proc_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_named_tuple_type] = STATE(3244), - [sym_generic_instance_type] = STATE(3244), - [sym_nilable_type] = STATE(3244), - [sym_pointer_type] = STATE(3244), - [sym_static_array_type] = STATE(3244), - [anon_sym_LPAREN] = ACTIONS(5366), + [2193] = { + [sym_heredoc_body] = STATE(2193), + [sym_typeof] = STATE(3174), + [sym_constant] = STATE(3004), + [sym__type] = STATE(3031), + [sym_class_type] = STATE(3174), + [sym_union_type] = STATE(3174), + [sym__parenthesized_type] = STATE(3174), + [sym_no_args_proc_type] = STATE(3174), + [sym_parenthesized_proc_type] = STATE(3174), + [sym_tuple_type] = STATE(3174), + [sym_named_tuple_type] = STATE(3174), + [sym_generic_instance_type] = STATE(3174), + [sym_nilable_type] = STATE(3174), + [sym_pointer_type] = STATE(3174), + [sym_static_array_type] = STATE(3174), + [anon_sym_LPAREN] = ACTIONS(5350), [anon_sym_RPAREN] = ACTIONS(4656), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4656), @@ -348810,7 +351757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5371), + [anon_sym_DASH_GT] = ACTIONS(5352), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_end] = ACTIONS(4656), [anon_sym_LT] = ACTIONS(4654), @@ -348831,11 +351778,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5356), + [anon_sym_typeof] = ACTIONS(5355), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(5358), - [sym_self] = ACTIONS(5360), - [sym_underscore_type] = ACTIONS(5360), + [anon_sym_COLON_COLON] = ACTIONS(5357), + [sym_self] = ACTIONS(5359), + [sym_underscore_type] = ACTIONS(5359), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), @@ -348844,8 +351791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(4656), [anon_sym_in] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5362), - [sym__start_of_named_tuple_type] = ACTIONS(5364), + [sym__start_of_tuple_type] = ACTIONS(5361), + [sym__start_of_named_tuple_type] = ACTIONS(5363), [sym__start_of_index_operator] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), @@ -348859,98 +351806,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2175] = { - [sym_heredoc_body] = STATE(2175), - [sym_typeof] = STATE(2831), - [sym_constant] = STATE(2603), - [sym__type] = STATE(2803), - [sym_class_type] = STATE(2831), - [sym_union_type] = STATE(2831), - [sym__parenthesized_type] = STATE(2831), - [sym_no_args_proc_type] = STATE(2831), - [sym_parenthesized_proc_type] = STATE(2831), - [sym_tuple_type] = STATE(2831), - [sym_named_tuple_type] = STATE(2831), - [sym_generic_instance_type] = STATE(2831), - [sym_nilable_type] = STATE(2831), - [sym_pointer_type] = STATE(2831), - [sym_static_array_type] = STATE(2831), - [anon_sym_LPAREN] = ACTIONS(5290), - [anon_sym_RPAREN] = ACTIONS(4722), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4722), - [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_RBRACK] = ACTIONS(4722), - [anon_sym_EQ_GT] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5292), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_end] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ_GT] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_TILDE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_AMP_STAR] = ACTIONS(4720), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5280), - [sym__constant_segment] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(5282), - [sym_self] = ACTIONS(5284), - [sym_underscore_type] = ACTIONS(5284), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_COLON2] = ACTIONS(4720), - [anon_sym_do] = ACTIONS(4722), - [anon_sym_else] = ACTIONS(4722), - [anon_sym_when] = ACTIONS(4722), - [anon_sym_in] = ACTIONS(4722), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4722), - [sym__start_of_tuple_type] = ACTIONS(5286), - [sym__start_of_named_tuple_type] = ACTIONS(5288), - [sym__start_of_index_operator] = ACTIONS(4722), - [sym_binary_plus] = ACTIONS(4722), - [sym_binary_minus] = ACTIONS(4722), - [sym_binary_wrapping_plus] = ACTIONS(4722), - [sym_binary_wrapping_minus] = ACTIONS(4722), - [sym__binary_star] = ACTIONS(4722), - [sym__binary_double_star] = ACTIONS(4722), - [sym_binary_ampersand] = ACTIONS(4722), - [sym__binary_slash] = ACTIONS(4722), - [sym__binary_double_slash] = ACTIONS(4722), - [sym__modulo_operator] = ACTIONS(4722), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2176] = { - [sym_heredoc_body] = STATE(2176), - [sym_typeof] = STATE(3244), - [sym_constant] = STATE(3119), - [sym__type] = STATE(3240), - [sym_class_type] = STATE(3244), - [sym_union_type] = STATE(3244), - [sym__parenthesized_type] = STATE(3244), - [sym_no_args_proc_type] = STATE(3244), - [sym_parenthesized_proc_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_named_tuple_type] = STATE(3244), - [sym_generic_instance_type] = STATE(3244), - [sym_nilable_type] = STATE(3244), - [sym_pointer_type] = STATE(3244), - [sym_static_array_type] = STATE(3244), - [anon_sym_LPAREN] = ACTIONS(5352), + [2194] = { + [sym_heredoc_body] = STATE(2194), + [sym_typeof] = STATE(3174), + [sym_constant] = STATE(3004), + [sym__type] = STATE(3049), + [sym_class_type] = STATE(3174), + [sym_union_type] = STATE(3174), + [sym__parenthesized_type] = STATE(3174), + [sym_no_args_proc_type] = STATE(3174), + [sym_parenthesized_proc_type] = STATE(3174), + [sym_tuple_type] = STATE(3174), + [sym_named_tuple_type] = STATE(3174), + [sym_generic_instance_type] = STATE(3174), + [sym_nilable_type] = STATE(3174), + [sym_pointer_type] = STATE(3174), + [sym_static_array_type] = STATE(3174), + [anon_sym_LPAREN] = ACTIONS(5350), [anon_sym_RPAREN] = ACTIONS(4678), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4678), @@ -348960,7 +351832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5354), + [anon_sym_DASH_GT] = ACTIONS(5365), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4678), [anon_sym_LT] = ACTIONS(4676), @@ -348981,11 +351853,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5356), + [anon_sym_typeof] = ACTIONS(5355), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(5358), - [sym_self] = ACTIONS(5360), - [sym_underscore_type] = ACTIONS(5360), + [anon_sym_COLON_COLON] = ACTIONS(5357), + [sym_self] = ACTIONS(5359), + [sym_underscore_type] = ACTIONS(5359), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), @@ -348994,8 +351866,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(4678), [anon_sym_in] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5362), - [sym__start_of_named_tuple_type] = ACTIONS(5364), + [sym__start_of_tuple_type] = ACTIONS(5361), + [sym__start_of_named_tuple_type] = ACTIONS(5363), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -349009,23 +351881,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2177] = { - [sym_heredoc_body] = STATE(2177), - [sym_typeof] = STATE(3244), - [sym_constant] = STATE(3119), - [sym__type] = STATE(3124), - [sym_class_type] = STATE(3244), - [sym_union_type] = STATE(3244), - [sym__parenthesized_type] = STATE(3244), - [sym_no_args_proc_type] = STATE(3244), - [sym_parenthesized_proc_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_named_tuple_type] = STATE(3244), - [sym_generic_instance_type] = STATE(3244), - [sym_nilable_type] = STATE(3244), - [sym_pointer_type] = STATE(3244), - [sym_static_array_type] = STATE(3244), - [anon_sym_LPAREN] = ACTIONS(5366), + [2195] = { + [sym_heredoc_body] = STATE(2195), + [sym_typeof] = STATE(3174), + [sym_constant] = STATE(3004), + [sym__type] = STATE(3055), + [sym_class_type] = STATE(3174), + [sym_union_type] = STATE(3174), + [sym__parenthesized_type] = STATE(3174), + [sym_no_args_proc_type] = STATE(3174), + [sym_parenthesized_proc_type] = STATE(3174), + [sym_tuple_type] = STATE(3174), + [sym_named_tuple_type] = STATE(3174), + [sym_generic_instance_type] = STATE(3174), + [sym_nilable_type] = STATE(3174), + [sym_pointer_type] = STATE(3174), + [sym_static_array_type] = STATE(3174), + [anon_sym_LPAREN] = ACTIONS(5350), [anon_sym_RPAREN] = ACTIONS(4628), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(4628), @@ -349035,7 +351907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5374), + [anon_sym_DASH_GT] = ACTIONS(5368), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_end] = ACTIONS(4628), [anon_sym_LT] = ACTIONS(4626), @@ -349056,11 +351928,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5356), + [anon_sym_typeof] = ACTIONS(5355), [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(5358), - [sym_self] = ACTIONS(5360), - [sym_underscore_type] = ACTIONS(5360), + [anon_sym_COLON_COLON] = ACTIONS(5357), + [sym_self] = ACTIONS(5359), + [sym_underscore_type] = ACTIONS(5359), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), @@ -349069,8 +351941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(4628), [anon_sym_in] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5362), - [sym__start_of_named_tuple_type] = ACTIONS(5364), + [sym__start_of_tuple_type] = ACTIONS(5361), + [sym__start_of_named_tuple_type] = ACTIONS(5363), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -349084,230 +351956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2178] = { - [sym_heredoc_body] = STATE(2178), - [sym_typeof] = STATE(2981), - [sym_constant] = STATE(2839), - [sym__type] = STATE(3009), - [sym_class_type] = STATE(2981), - [sym_union_type] = STATE(2981), - [sym__parenthesized_type] = STATE(2981), - [sym_no_args_proc_type] = STATE(2981), - [sym_parenthesized_proc_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_named_tuple_type] = STATE(2981), - [sym_generic_instance_type] = STATE(2981), - [sym_nilable_type] = STATE(2981), - [sym_pointer_type] = STATE(2981), - [sym_static_array_type] = STATE(2981), - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(5330), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5332), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_end] = ACTIONS(4700), - [anon_sym_LT] = ACTIONS(4698), - [anon_sym_EQ] = ACTIONS(4698), - [anon_sym_PIPE] = ACTIONS(4698), - [anon_sym_CARET] = ACTIONS(4700), - [anon_sym_GT_GT] = ACTIONS(4700), - [anon_sym_LT_LT] = ACTIONS(4700), - [anon_sym_EQ_EQ] = ACTIONS(4698), - [anon_sym_BANG_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ] = ACTIONS(4698), - [anon_sym_GT] = ACTIONS(4698), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ_GT] = ACTIONS(4700), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), - [anon_sym_BANG_TILDE] = ACTIONS(4700), - [anon_sym_EQ_TILDE] = ACTIONS(4700), - [anon_sym_AMP_STAR] = ACTIONS(4698), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5305), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(5307), - [sym_self] = ACTIONS(5309), - [sym_underscore_type] = ACTIONS(5309), - [anon_sym_QMARK] = ACTIONS(4700), - [anon_sym_AMP_AMP] = ACTIONS(4700), - [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_do] = ACTIONS(4700), - [sym__line_break] = ACTIONS(4700), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4700), - [sym__start_of_tuple_type] = ACTIONS(5311), - [sym__start_of_named_tuple_type] = ACTIONS(5313), - [sym__start_of_index_operator] = ACTIONS(4700), - [sym_binary_plus] = ACTIONS(4700), - [sym_binary_minus] = ACTIONS(4700), - [sym_binary_wrapping_plus] = ACTIONS(4700), - [sym_binary_wrapping_minus] = ACTIONS(4700), - [sym__binary_star] = ACTIONS(4700), - [sym__binary_double_star] = ACTIONS(4700), - [sym_binary_ampersand] = ACTIONS(4700), - [sym__binary_slash] = ACTIONS(4700), - [sym__binary_double_slash] = ACTIONS(4700), - [sym__modifier_if_keyword] = ACTIONS(4700), - [sym__modifier_unless_keyword] = ACTIONS(4700), - [sym__modifier_rescue_keyword] = ACTIONS(4700), - [sym__regular_ensure_keyword] = ACTIONS(4700), - [sym__modifier_ensure_keyword] = ACTIONS(4700), - [sym__modulo_operator] = ACTIONS(4700), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2179] = { - [sym_heredoc_body] = STATE(2179), - [sym_typeof] = STATE(3439), - [sym_constant] = STATE(3220), - [sym__type] = STATE(3395), - [sym_class_type] = STATE(3439), - [sym_union_type] = STATE(3439), - [sym__parenthesized_type] = STATE(3439), - [sym_no_args_proc_type] = STATE(3439), - [sym_parenthesized_proc_type] = STATE(3439), - [sym_tuple_type] = STATE(3439), - [sym_named_tuple_type] = STATE(3439), - [sym_generic_instance_type] = STATE(3439), - [sym_nilable_type] = STATE(3439), - [sym_pointer_type] = STATE(3439), - [sym_static_array_type] = STATE(3439), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5377), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5379), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_end] = ACTIONS(4678), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5381), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(5383), - [sym_self] = ACTIONS(5385), - [sym_underscore_type] = ACTIONS(5385), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5387), - [sym__start_of_named_tuple_type] = ACTIONS(5389), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modifier_if_keyword] = ACTIONS(4678), - [sym__modifier_unless_keyword] = ACTIONS(4678), - [sym__modifier_rescue_keyword] = ACTIONS(4678), - [sym__regular_ensure_keyword] = ACTIONS(4678), - [sym__modifier_ensure_keyword] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2180] = { - [sym_heredoc_body] = STATE(2180), - [ts_builtin_sym_end] = ACTIONS(5391), - [anon_sym_SEMI] = ACTIONS(5391), - [anon_sym_RPAREN] = ACTIONS(5391), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_COMMA] = ACTIONS(5391), - [anon_sym_DOT_DOT] = ACTIONS(5393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5391), - [anon_sym_DOT] = ACTIONS(5393), - [anon_sym_end] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_PIPE] = ACTIONS(5393), - [anon_sym_CARET] = ACTIONS(5393), - [anon_sym_GT_GT] = ACTIONS(5393), - [anon_sym_LT_LT] = ACTIONS(5393), - [anon_sym_EQ_EQ] = ACTIONS(5393), - [anon_sym_BANG_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ] = ACTIONS(5393), - [anon_sym_GT] = ACTIONS(5393), - [anon_sym_GT_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ_GT] = ACTIONS(5391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5391), - [anon_sym_BANG_TILDE] = ACTIONS(5391), - [anon_sym_EQ_TILDE] = ACTIONS(5391), - [anon_sym_AMP_STAR] = ACTIONS(5393), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5391), - [anon_sym_QMARK] = ACTIONS(5391), - [anon_sym_AMP_AMP] = ACTIONS(5393), - [anon_sym_PIPE_PIPE] = ACTIONS(5393), - [anon_sym_PLUS_EQ] = ACTIONS(5391), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5391), - [anon_sym_DASH_EQ] = ACTIONS(5391), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5391), - [anon_sym_STAR_EQ] = ACTIONS(5391), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5391), - [anon_sym_SLASH_EQ] = ACTIONS(5391), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5391), - [anon_sym_PERCENT_EQ] = ACTIONS(5391), - [anon_sym_PIPE_EQ] = ACTIONS(5391), - [anon_sym_AMP_EQ] = ACTIONS(5391), - [anon_sym_CARET_EQ] = ACTIONS(5391), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5391), - [anon_sym_LT_LT_EQ] = ACTIONS(5391), - [anon_sym_GT_GT_EQ] = ACTIONS(5391), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), - [anon_sym_do] = ACTIONS(5391), - [anon_sym_elsif] = ACTIONS(5391), - [anon_sym_else] = ACTIONS(5391), - [anon_sym_when] = ACTIONS(5391), - [anon_sym_in] = ACTIONS(5391), - [sym__line_break] = ACTIONS(5391), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5391), - [sym__start_of_index_operator] = ACTIONS(5391), - [sym_binary_plus] = ACTIONS(5391), - [sym_binary_minus] = ACTIONS(5391), - [sym_binary_wrapping_plus] = ACTIONS(5391), - [sym_binary_wrapping_minus] = ACTIONS(5391), - [sym__binary_star] = ACTIONS(5391), - [sym__binary_double_star] = ACTIONS(5391), - [sym_binary_ampersand] = ACTIONS(5391), - [sym__binary_slash] = ACTIONS(5391), - [sym__binary_double_slash] = ACTIONS(5391), - [sym__modifier_if_keyword] = ACTIONS(5391), - [sym__modifier_unless_keyword] = ACTIONS(5391), - [sym__modifier_rescue_keyword] = ACTIONS(5391), - [sym__modifier_ensure_keyword] = ACTIONS(5391), - [sym__modulo_operator] = ACTIONS(5391), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2181] = { - [sym_heredoc_body] = STATE(2181), + [2196] = { + [sym_heredoc_body] = STATE(2196), [ts_builtin_sym_end] = ACTIONS(173), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_RPAREN] = ACTIONS(173), @@ -349355,6 +352005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(297), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(297), [anon_sym_AMP_AMP_EQ] = ACTIONS(297), + [anon_sym_COLON2] = ACTIONS(5371), [anon_sym_do] = ACTIONS(173), [anon_sym_elsif] = ACTIONS(173), [anon_sym_else] = ACTIONS(173), @@ -349378,401 +352029,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modifier_rescue_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2182] = { - [sym_heredoc_body] = STATE(2182), - [sym_typeof] = STATE(3439), - [sym_constant] = STATE(3220), - [sym__type] = STATE(3393), - [sym_class_type] = STATE(3439), - [sym_union_type] = STATE(3439), - [sym__parenthesized_type] = STATE(3439), - [sym_no_args_proc_type] = STATE(3439), - [sym_parenthesized_proc_type] = STATE(3439), - [sym_tuple_type] = STATE(3439), - [sym_named_tuple_type] = STATE(3439), - [sym_generic_instance_type] = STATE(3439), - [sym_nilable_type] = STATE(3439), - [sym_pointer_type] = STATE(3439), - [sym_static_array_type] = STATE(3439), - [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5377), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5379), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_end] = ACTIONS(4656), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5381), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(5383), - [sym_self] = ACTIONS(5385), - [sym_underscore_type] = ACTIONS(5385), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [sym__line_break] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5387), - [sym__start_of_named_tuple_type] = ACTIONS(5389), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modifier_if_keyword] = ACTIONS(4656), - [sym__modifier_unless_keyword] = ACTIONS(4656), - [sym__modifier_rescue_keyword] = ACTIONS(4656), - [sym__regular_ensure_keyword] = ACTIONS(4656), - [sym__modifier_ensure_keyword] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2183] = { - [sym_heredoc_body] = STATE(2183), - [sym_typeof] = STATE(3439), - [sym_constant] = STATE(3220), - [sym__type] = STATE(3236), - [sym_class_type] = STATE(3439), - [sym_union_type] = STATE(3439), - [sym__parenthesized_type] = STATE(3439), - [sym_no_args_proc_type] = STATE(3439), - [sym_parenthesized_proc_type] = STATE(3439), - [sym_tuple_type] = STATE(3439), - [sym_named_tuple_type] = STATE(3439), - [sym_generic_instance_type] = STATE(3439), - [sym_nilable_type] = STATE(3439), - [sym_pointer_type] = STATE(3439), - [sym_static_array_type] = STATE(3439), - [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5395), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5397), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_end] = ACTIONS(4628), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5381), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(5383), - [sym_self] = ACTIONS(5385), - [sym_underscore_type] = ACTIONS(5385), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5387), - [sym__start_of_named_tuple_type] = ACTIONS(5389), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modifier_if_keyword] = ACTIONS(4628), - [sym__modifier_unless_keyword] = ACTIONS(4628), - [sym__modifier_rescue_keyword] = ACTIONS(4628), - [sym__regular_ensure_keyword] = ACTIONS(4628), - [sym__modifier_ensure_keyword] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2184] = { - [sym_heredoc_body] = STATE(2184), - [sym_typeof] = STATE(3439), - [sym_constant] = STATE(3220), - [sym__type] = STATE(3229), - [sym_class_type] = STATE(3439), - [sym_union_type] = STATE(3439), - [sym__parenthesized_type] = STATE(3439), - [sym_no_args_proc_type] = STATE(3439), - [sym_parenthesized_proc_type] = STATE(3439), - [sym_tuple_type] = STATE(3439), - [sym_named_tuple_type] = STATE(3439), - [sym_generic_instance_type] = STATE(3439), - [sym_nilable_type] = STATE(3439), - [sym_pointer_type] = STATE(3439), - [sym_static_array_type] = STATE(3439), - [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5395), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5400), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_end] = ACTIONS(4656), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5381), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(5383), - [sym_self] = ACTIONS(5385), - [sym_underscore_type] = ACTIONS(5385), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [sym__line_break] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5387), - [sym__start_of_named_tuple_type] = ACTIONS(5389), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modifier_if_keyword] = ACTIONS(4656), - [sym__modifier_unless_keyword] = ACTIONS(4656), - [sym__modifier_rescue_keyword] = ACTIONS(4656), - [sym__regular_ensure_keyword] = ACTIONS(4656), - [sym__modifier_ensure_keyword] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2185] = { - [sym_heredoc_body] = STATE(2185), - [ts_builtin_sym_end] = ACTIONS(5403), - [anon_sym_SEMI] = ACTIONS(5403), - [anon_sym_RPAREN] = ACTIONS(5403), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5403), - [anon_sym_COMMA] = ACTIONS(5403), - [anon_sym_DOT_DOT] = ACTIONS(5405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(5405), - [anon_sym_end] = ACTIONS(5403), - [anon_sym_LT] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_PIPE] = ACTIONS(5405), - [anon_sym_CARET] = ACTIONS(5405), - [anon_sym_GT_GT] = ACTIONS(5405), - [anon_sym_LT_LT] = ACTIONS(5405), - [anon_sym_EQ_EQ] = ACTIONS(5405), - [anon_sym_BANG_EQ] = ACTIONS(5403), - [anon_sym_LT_EQ] = ACTIONS(5405), - [anon_sym_GT] = ACTIONS(5405), - [anon_sym_GT_EQ] = ACTIONS(5403), - [anon_sym_LT_EQ_GT] = ACTIONS(5403), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5403), - [anon_sym_BANG_TILDE] = ACTIONS(5403), - [anon_sym_EQ_TILDE] = ACTIONS(5403), - [anon_sym_AMP_STAR] = ACTIONS(5405), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5403), - [anon_sym_QMARK] = ACTIONS(5403), - [anon_sym_AMP_AMP] = ACTIONS(5405), - [anon_sym_PIPE_PIPE] = ACTIONS(5405), - [anon_sym_PLUS_EQ] = ACTIONS(5403), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5403), - [anon_sym_DASH_EQ] = ACTIONS(5403), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5403), - [anon_sym_STAR_EQ] = ACTIONS(5403), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5403), - [anon_sym_SLASH_EQ] = ACTIONS(5403), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5403), - [anon_sym_PERCENT_EQ] = ACTIONS(5403), - [anon_sym_PIPE_EQ] = ACTIONS(5403), - [anon_sym_AMP_EQ] = ACTIONS(5403), - [anon_sym_CARET_EQ] = ACTIONS(5403), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5403), - [anon_sym_LT_LT_EQ] = ACTIONS(5403), - [anon_sym_GT_GT_EQ] = ACTIONS(5403), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5403), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5403), - [anon_sym_do] = ACTIONS(5403), - [anon_sym_elsif] = ACTIONS(5403), - [anon_sym_else] = ACTIONS(5403), - [anon_sym_when] = ACTIONS(5403), - [anon_sym_in] = ACTIONS(5403), - [sym__line_break] = ACTIONS(5403), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5403), - [sym__start_of_index_operator] = ACTIONS(5403), - [sym_binary_plus] = ACTIONS(5403), - [sym_binary_minus] = ACTIONS(5403), - [sym_binary_wrapping_plus] = ACTIONS(5403), - [sym_binary_wrapping_minus] = ACTIONS(5403), - [sym__binary_star] = ACTIONS(5403), - [sym__binary_double_star] = ACTIONS(5403), - [sym_binary_ampersand] = ACTIONS(5403), - [sym__binary_slash] = ACTIONS(5403), - [sym__binary_double_slash] = ACTIONS(5403), - [sym__modifier_if_keyword] = ACTIONS(5403), - [sym__modifier_unless_keyword] = ACTIONS(5403), - [sym__modifier_rescue_keyword] = ACTIONS(5403), - [sym__modifier_ensure_keyword] = ACTIONS(5403), - [sym__modulo_operator] = ACTIONS(5403), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2186] = { - [sym_heredoc_body] = STATE(2186), - [sym_typeof] = STATE(2981), - [sym_constant] = STATE(2839), - [sym__type] = STATE(3007), - [sym_class_type] = STATE(2981), - [sym_union_type] = STATE(2981), - [sym__parenthesized_type] = STATE(2981), - [sym_no_args_proc_type] = STATE(2981), - [sym_parenthesized_proc_type] = STATE(2981), - [sym_tuple_type] = STATE(2981), - [sym_named_tuple_type] = STATE(2981), - [sym_generic_instance_type] = STATE(2981), - [sym_nilable_type] = STATE(2981), - [sym_pointer_type] = STATE(2981), - [sym_static_array_type] = STATE(2981), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(5330), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5332), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_end] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ_GT] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_TILDE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_AMP_STAR] = ACTIONS(4720), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5305), - [sym__constant_segment] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(5307), - [sym_self] = ACTIONS(5309), - [sym_underscore_type] = ACTIONS(5309), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_do] = ACTIONS(4722), - [sym__line_break] = ACTIONS(4722), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4722), - [sym__start_of_tuple_type] = ACTIONS(5311), - [sym__start_of_named_tuple_type] = ACTIONS(5313), - [sym__start_of_index_operator] = ACTIONS(4722), - [sym_binary_plus] = ACTIONS(4722), - [sym_binary_minus] = ACTIONS(4722), - [sym_binary_wrapping_plus] = ACTIONS(4722), - [sym_binary_wrapping_minus] = ACTIONS(4722), - [sym__binary_star] = ACTIONS(4722), - [sym__binary_double_star] = ACTIONS(4722), - [sym_binary_ampersand] = ACTIONS(4722), - [sym__binary_slash] = ACTIONS(4722), - [sym__binary_double_slash] = ACTIONS(4722), - [sym__modifier_if_keyword] = ACTIONS(4722), - [sym__modifier_unless_keyword] = ACTIONS(4722), - [sym__modifier_rescue_keyword] = ACTIONS(4722), - [sym__regular_ensure_keyword] = ACTIONS(4722), - [sym__modifier_ensure_keyword] = ACTIONS(4722), - [sym__modulo_operator] = ACTIONS(4722), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2187] = { - [sym_heredoc_body] = STATE(2187), - [sym_typeof] = STATE(2850), - [sym_constant] = STATE(2810), - [sym__type] = STATE(2862), - [sym_class_type] = STATE(2850), - [sym_union_type] = STATE(2850), - [sym__parenthesized_type] = STATE(2850), - [sym_no_args_proc_type] = STATE(2850), - [sym_parenthesized_proc_type] = STATE(2850), - [sym_tuple_type] = STATE(2850), - [sym_named_tuple_type] = STATE(2850), - [sym_generic_instance_type] = STATE(2850), - [sym_nilable_type] = STATE(2850), - [sym_pointer_type] = STATE(2850), - [sym_static_array_type] = STATE(2850), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(5334), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2197] = { + [sym_heredoc_body] = STATE(2197), + [sym_typeof] = STATE(2789), + [sym_constant] = STATE(2701), + [sym__type] = STATE(2822), + [sym_class_type] = STATE(2789), + [sym_union_type] = STATE(2789), + [sym__parenthesized_type] = STATE(2789), + [sym_no_args_proc_type] = STATE(2789), + [sym_parenthesized_proc_type] = STATE(2789), + [sym_tuple_type] = STATE(2789), + [sym_named_tuple_type] = STATE(2789), + [sym_generic_instance_type] = STATE(2789), + [sym_nilable_type] = STATE(2789), + [sym_pointer_type] = STATE(2789), + [sym_static_array_type] = STATE(2789), + [anon_sym_LPAREN] = ACTIONS(5275), + [anon_sym_RPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4722), [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_RBRACK] = ACTIONS(4722), + [anon_sym_EQ_GT] = ACTIONS(4722), [anon_sym_DOT_DOT] = ACTIONS(4720), [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5336), + [anon_sym_DASH_GT] = ACTIONS(5277), [anon_sym_DOT] = ACTIONS(4720), [anon_sym_end] = ACTIONS(4722), [anon_sym_LT] = ACTIONS(4720), @@ -349792,19 +352076,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4722), [anon_sym_AMP_STAR] = ACTIONS(4720), [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5320), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(5322), - [sym_self] = ACTIONS(5324), - [sym_underscore_type] = ACTIONS(5324), + [anon_sym_typeof] = ACTIONS(5279), + [sym__constant_segment] = ACTIONS(3015), + [anon_sym_COLON_COLON] = ACTIONS(5281), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), [anon_sym_QMARK] = ACTIONS(4722), [anon_sym_AMP_AMP] = ACTIONS(4722), [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_COLON2] = ACTIONS(4720), + [anon_sym_do] = ACTIONS(4722), [anon_sym_else] = ACTIONS(4722), - [sym__line_break] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5326), - [sym__start_of_named_tuple_type] = ACTIONS(5328), + [sym__start_of_brace_block] = ACTIONS(4722), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), [sym__start_of_index_operator] = ACTIONS(4722), [sym_binary_plus] = ACTIONS(4722), [sym_binary_minus] = ACTIONS(4722), @@ -349815,113 +352103,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_ampersand] = ACTIONS(4722), [sym__binary_slash] = ACTIONS(4722), [sym__binary_double_slash] = ACTIONS(4722), - [sym__modifier_if_keyword] = ACTIONS(4722), - [sym__modifier_unless_keyword] = ACTIONS(4722), - [sym__regular_rescue_keyword] = ACTIONS(4722), - [sym__modifier_rescue_keyword] = ACTIONS(4722), - [sym__regular_ensure_keyword] = ACTIONS(4722), - [sym__modifier_ensure_keyword] = ACTIONS(4722), [sym__modulo_operator] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, - [2188] = { - [sym_heredoc_body] = STATE(2188), - [sym_typeof] = STATE(2850), - [sym_constant] = STATE(2810), - [sym__type] = STATE(2866), - [sym_class_type] = STATE(2850), - [sym_union_type] = STATE(2850), - [sym__parenthesized_type] = STATE(2850), - [sym_no_args_proc_type] = STATE(2850), - [sym_parenthesized_proc_type] = STATE(2850), - [sym_tuple_type] = STATE(2850), - [sym_named_tuple_type] = STATE(2850), - [sym_generic_instance_type] = STATE(2850), - [sym_nilable_type] = STATE(2850), - [sym_pointer_type] = STATE(2850), - [sym_static_array_type] = STATE(2850), - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(5334), + [2198] = { + [sym_heredoc_body] = STATE(2198), + [sym_typeof] = STATE(3174), + [sym_constant] = STATE(3004), + [sym__type] = STATE(3248), + [sym_class_type] = STATE(3174), + [sym_union_type] = STATE(3174), + [sym__parenthesized_type] = STATE(3174), + [sym_no_args_proc_type] = STATE(3174), + [sym_parenthesized_proc_type] = STATE(3174), + [sym_tuple_type] = STATE(3174), + [sym_named_tuple_type] = STATE(3174), + [sym_generic_instance_type] = STATE(3174), + [sym_nilable_type] = STATE(3174), + [sym_pointer_type] = STATE(3174), + [sym_static_array_type] = STATE(3174), + [anon_sym_LPAREN] = ACTIONS(5373), + [anon_sym_RPAREN] = ACTIONS(4628), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5336), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_end] = ACTIONS(4700), - [anon_sym_LT] = ACTIONS(4698), - [anon_sym_EQ] = ACTIONS(4698), - [anon_sym_PIPE] = ACTIONS(4698), - [anon_sym_CARET] = ACTIONS(4700), - [anon_sym_GT_GT] = ACTIONS(4700), - [anon_sym_LT_LT] = ACTIONS(4700), - [anon_sym_EQ_EQ] = ACTIONS(4698), - [anon_sym_BANG_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ] = ACTIONS(4698), - [anon_sym_GT] = ACTIONS(4698), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ_GT] = ACTIONS(4700), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), - [anon_sym_BANG_TILDE] = ACTIONS(4700), - [anon_sym_EQ_TILDE] = ACTIONS(4700), - [anon_sym_AMP_STAR] = ACTIONS(4698), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5320), - [sym__constant_segment] = ACTIONS(1347), - [anon_sym_COLON_COLON] = ACTIONS(5322), - [sym_self] = ACTIONS(5324), - [sym_underscore_type] = ACTIONS(5324), - [anon_sym_QMARK] = ACTIONS(4700), - [anon_sym_AMP_AMP] = ACTIONS(4700), - [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_else] = ACTIONS(4700), - [sym__line_break] = ACTIONS(4700), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_RBRACK] = ACTIONS(4628), + [anon_sym_EQ_GT] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5375), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_end] = ACTIONS(4628), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5355), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(5357), + [sym_self] = ACTIONS(5359), + [sym_underscore_type] = ACTIONS(5359), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_COLON2] = ACTIONS(4626), + [anon_sym_else] = ACTIONS(4628), + [anon_sym_when] = ACTIONS(4628), + [anon_sym_in] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5326), - [sym__start_of_named_tuple_type] = ACTIONS(5328), - [sym__start_of_index_operator] = ACTIONS(4700), - [sym_binary_plus] = ACTIONS(4700), - [sym_binary_minus] = ACTIONS(4700), - [sym_binary_wrapping_plus] = ACTIONS(4700), - [sym_binary_wrapping_minus] = ACTIONS(4700), - [sym__binary_star] = ACTIONS(4700), - [sym__binary_double_star] = ACTIONS(4700), - [sym_binary_ampersand] = ACTIONS(4700), - [sym__binary_slash] = ACTIONS(4700), - [sym__binary_double_slash] = ACTIONS(4700), - [sym__modifier_if_keyword] = ACTIONS(4700), - [sym__modifier_unless_keyword] = ACTIONS(4700), - [sym__regular_rescue_keyword] = ACTIONS(4700), - [sym__modifier_rescue_keyword] = ACTIONS(4700), - [sym__regular_ensure_keyword] = ACTIONS(4700), - [sym__modifier_ensure_keyword] = ACTIONS(4700), - [sym__modulo_operator] = ACTIONS(4700), + [sym__start_of_tuple_type] = ACTIONS(5361), + [sym__start_of_named_tuple_type] = ACTIONS(5363), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2189] = { - [sym_heredoc_body] = STATE(2189), - [sym_typeof] = STATE(3439), - [sym_constant] = STATE(3220), - [sym__type] = STATE(3231), - [sym_class_type] = STATE(3439), - [sym_union_type] = STATE(3439), - [sym__parenthesized_type] = STATE(3439), - [sym_no_args_proc_type] = STATE(3439), - [sym_parenthesized_proc_type] = STATE(3439), - [sym_tuple_type] = STATE(3439), - [sym_named_tuple_type] = STATE(3439), - [sym_generic_instance_type] = STATE(3439), - [sym_nilable_type] = STATE(3439), - [sym_pointer_type] = STATE(3439), - [sym_static_array_type] = STATE(3439), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5395), + [2199] = { + [sym_heredoc_body] = STATE(2199), + [sym_typeof] = STATE(3174), + [sym_constant] = STATE(3004), + [sym__type] = STATE(3271), + [sym_class_type] = STATE(3174), + [sym_union_type] = STATE(3174), + [sym__parenthesized_type] = STATE(3174), + [sym_no_args_proc_type] = STATE(3174), + [sym_parenthesized_proc_type] = STATE(3174), + [sym_tuple_type] = STATE(3174), + [sym_named_tuple_type] = STATE(3174), + [sym_generic_instance_type] = STATE(3174), + [sym_nilable_type] = STATE(3174), + [sym_pointer_type] = STATE(3174), + [sym_static_array_type] = STATE(3174), + [anon_sym_LPAREN] = ACTIONS(5373), + [anon_sym_RPAREN] = ACTIONS(4656), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_RBRACK] = ACTIONS(4656), + [anon_sym_EQ_GT] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5375), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5355), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(5357), + [sym_self] = ACTIONS(5359), + [sym_underscore_type] = ACTIONS(5359), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_COLON2] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_when] = ACTIONS(4656), + [anon_sym_in] = ACTIONS(4656), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5361), + [sym__start_of_named_tuple_type] = ACTIONS(5363), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2200] = { + [sym_heredoc_body] = STATE(2200), + [sym_typeof] = STATE(3174), + [sym_constant] = STATE(3004), + [sym__type] = STATE(3243), + [sym_class_type] = STATE(3174), + [sym_union_type] = STATE(3174), + [sym__parenthesized_type] = STATE(3174), + [sym_no_args_proc_type] = STATE(3174), + [sym_parenthesized_proc_type] = STATE(3174), + [sym_tuple_type] = STATE(3174), + [sym_named_tuple_type] = STATE(3174), + [sym_generic_instance_type] = STATE(3174), + [sym_nilable_type] = STATE(3174), + [sym_pointer_type] = STATE(3174), + [sym_static_array_type] = STATE(3174), + [anon_sym_LPAREN] = ACTIONS(5373), + [anon_sym_RPAREN] = ACTIONS(4678), [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4678), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_RBRACK] = ACTIONS(4678), + [anon_sym_EQ_GT] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5407), + [anon_sym_DASH_GT] = ACTIONS(5375), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_end] = ACTIONS(4678), [anon_sym_LT] = ACTIONS(4676), @@ -349942,18 +352303,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5381), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(5383), - [sym_self] = ACTIONS(5385), - [sym_underscore_type] = ACTIONS(5385), + [anon_sym_typeof] = ACTIONS(5355), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(5357), + [sym_self] = ACTIONS(5359), + [sym_underscore_type] = ACTIONS(5359), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), + [anon_sym_COLON2] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4678), + [anon_sym_when] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5387), - [sym__start_of_named_tuple_type] = ACTIONS(5389), + [sym__start_of_tuple_type] = ACTIONS(5361), + [sym__start_of_named_tuple_type] = ACTIONS(5363), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -349964,30 +352328,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_ampersand] = ACTIONS(4678), [sym__binary_slash] = ACTIONS(4678), [sym__binary_double_slash] = ACTIONS(4678), - [sym__modifier_if_keyword] = ACTIONS(4678), - [sym__modifier_unless_keyword] = ACTIONS(4678), - [sym__modifier_rescue_keyword] = ACTIONS(4678), - [sym__regular_ensure_keyword] = ACTIONS(4678), - [sym__modifier_ensure_keyword] = ACTIONS(4678), [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2190] = { - [sym_heredoc_body] = STATE(2190), - [sym_typeof] = STATE(3439), - [sym_constant] = STATE(3220), - [sym__type] = STATE(3509), - [sym_class_type] = STATE(3439), - [sym_union_type] = STATE(3439), - [sym__parenthesized_type] = STATE(3439), - [sym_no_args_proc_type] = STATE(3439), - [sym_parenthesized_proc_type] = STATE(3439), - [sym_tuple_type] = STATE(3439), - [sym_named_tuple_type] = STATE(3439), - [sym_generic_instance_type] = STATE(3439), - [sym_nilable_type] = STATE(3439), - [sym_pointer_type] = STATE(3439), - [sym_static_array_type] = STATE(3439), + [2201] = { + [sym_heredoc_body] = STATE(2201), + [sym_typeof] = STATE(3446), + [sym_constant] = STATE(3222), + [sym__type] = STATE(3522), + [sym_class_type] = STATE(3446), + [sym_union_type] = STATE(3446), + [sym__parenthesized_type] = STATE(3446), + [sym_no_args_proc_type] = STATE(3446), + [sym_parenthesized_proc_type] = STATE(3446), + [sym_tuple_type] = STATE(3446), + [sym_named_tuple_type] = STATE(3446), + [sym_generic_instance_type] = STATE(3446), + [sym_nilable_type] = STATE(3446), + [sym_pointer_type] = STATE(3446), + [sym_static_array_type] = STATE(3446), [anon_sym_SEMI] = ACTIONS(4628), [anon_sym_LPAREN] = ACTIONS(5377), [sym_comment] = ACTIONS(5), @@ -350017,7 +352376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), [anon_sym_typeof] = ACTIONS(5381), - [sym__constant_segment] = ACTIONS(2530), + [sym__constant_segment] = ACTIONS(2582), [anon_sym_COLON_COLON] = ACTIONS(5383), [sym_self] = ACTIONS(5385), [sym_underscore_type] = ACTIONS(5385), @@ -350046,105 +352405,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2191] = { - [sym_heredoc_body] = STATE(2191), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_AMP_DASH_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_AMP_STAR_EQ] = ACTIONS(235), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(235), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_AMP_EQ] = ACTIONS(235), - [anon_sym_COLON2] = ACTIONS(5410), - [anon_sym_elsif] = ACTIONS(173), - [anon_sym_else] = ACTIONS(173), - [anon_sym_when] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [sym__line_break] = ACTIONS(173), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2192] = { - [sym_heredoc_body] = STATE(2192), - [sym_typeof] = STATE(3244), - [sym_constant] = STATE(3119), - [sym__type] = STATE(3268), - [sym_class_type] = STATE(3244), - [sym_union_type] = STATE(3244), - [sym__parenthesized_type] = STATE(3244), - [sym_no_args_proc_type] = STATE(3244), - [sym_parenthesized_proc_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_named_tuple_type] = STATE(3244), - [sym_generic_instance_type] = STATE(3244), - [sym_nilable_type] = STATE(3244), - [sym_pointer_type] = STATE(3244), - [sym_static_array_type] = STATE(3244), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_RPAREN] = ACTIONS(4722), + [2202] = { + [sym_heredoc_body] = STATE(2202), + [sym_typeof] = STATE(3148), + [sym_constant] = STATE(2891), + [sym__type] = STATE(2921), + [sym_class_type] = STATE(3148), + [sym_union_type] = STATE(3148), + [sym__parenthesized_type] = STATE(3148), + [sym_no_args_proc_type] = STATE(3148), + [sym_parenthesized_proc_type] = STATE(3148), + [sym_tuple_type] = STATE(3148), + [sym_named_tuple_type] = STATE(3148), + [sym_generic_instance_type] = STATE(3148), + [sym_nilable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym_static_array_type] = STATE(3148), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5315), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4722), [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_RBRACK] = ACTIONS(4722), - [anon_sym_EQ_GT] = ACTIONS(4722), [anon_sym_DOT_DOT] = ACTIONS(4720), [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5354), + [anon_sym_DASH_GT] = ACTIONS(5317), [anon_sym_DOT] = ACTIONS(4720), [anon_sym_end] = ACTIONS(4722), [anon_sym_LT] = ACTIONS(4720), @@ -350164,21 +352447,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4722), [anon_sym_AMP_STAR] = ACTIONS(4720), [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5356), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(5358), - [sym_self] = ACTIONS(5360), - [sym_underscore_type] = ACTIONS(5360), + [anon_sym_typeof] = ACTIONS(5319), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(5321), + [sym_self] = ACTIONS(5323), + [sym_underscore_type] = ACTIONS(5323), [anon_sym_QMARK] = ACTIONS(4722), [anon_sym_AMP_AMP] = ACTIONS(4722), [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_COLON2] = ACTIONS(4720), [anon_sym_else] = ACTIONS(4722), - [anon_sym_when] = ACTIONS(4722), - [anon_sym_in] = ACTIONS(4722), + [sym__line_break] = ACTIONS(4722), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5362), - [sym__start_of_named_tuple_type] = ACTIONS(5364), + [sym__start_of_tuple_type] = ACTIONS(5325), + [sym__start_of_named_tuple_type] = ACTIONS(5327), [sym__start_of_index_operator] = ACTIONS(4722), [sym_binary_plus] = ACTIONS(4722), [sym_binary_minus] = ACTIONS(4722), @@ -350189,35 +352470,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_ampersand] = ACTIONS(4722), [sym__binary_slash] = ACTIONS(4722), [sym__binary_double_slash] = ACTIONS(4722), + [sym__modifier_if_keyword] = ACTIONS(4722), + [sym__modifier_unless_keyword] = ACTIONS(4722), + [sym__regular_rescue_keyword] = ACTIONS(4722), + [sym__modifier_rescue_keyword] = ACTIONS(4722), + [sym__regular_ensure_keyword] = ACTIONS(4722), + [sym__modifier_ensure_keyword] = ACTIONS(4722), [sym__modulo_operator] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, - [2193] = { - [sym_heredoc_body] = STATE(2193), - [sym_typeof] = STATE(3244), - [sym_constant] = STATE(3119), - [sym__type] = STATE(3155), - [sym_class_type] = STATE(3244), - [sym_union_type] = STATE(3244), - [sym__parenthesized_type] = STATE(3244), - [sym_no_args_proc_type] = STATE(3244), - [sym_parenthesized_proc_type] = STATE(3244), - [sym_tuple_type] = STATE(3244), - [sym_named_tuple_type] = STATE(3244), - [sym_generic_instance_type] = STATE(3244), - [sym_nilable_type] = STATE(3244), - [sym_pointer_type] = STATE(3244), - [sym_static_array_type] = STATE(3244), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_RPAREN] = ACTIONS(4700), + [2203] = { + [sym_heredoc_body] = STATE(2203), + [sym_typeof] = STATE(3148), + [sym_constant] = STATE(2891), + [sym__type] = STATE(2968), + [sym_class_type] = STATE(3148), + [sym_union_type] = STATE(3148), + [sym__parenthesized_type] = STATE(3148), + [sym_no_args_proc_type] = STATE(3148), + [sym_parenthesized_proc_type] = STATE(3148), + [sym_tuple_type] = STATE(3148), + [sym_named_tuple_type] = STATE(3148), + [sym_generic_instance_type] = STATE(3148), + [sym_nilable_type] = STATE(3148), + [sym_pointer_type] = STATE(3148), + [sym_static_array_type] = STATE(3148), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(5315), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4700), [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_RBRACK] = ACTIONS(4700), - [anon_sym_EQ_GT] = ACTIONS(4700), [anon_sym_DOT_DOT] = ACTIONS(4698), [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5354), + [anon_sym_DASH_GT] = ACTIONS(5317), [anon_sym_DOT] = ACTIONS(4698), [anon_sym_end] = ACTIONS(4700), [anon_sym_LT] = ACTIONS(4698), @@ -350237,21 +352521,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4700), [anon_sym_AMP_STAR] = ACTIONS(4698), [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5356), - [sym__constant_segment] = ACTIONS(3191), - [anon_sym_COLON_COLON] = ACTIONS(5358), - [sym_self] = ACTIONS(5360), - [sym_underscore_type] = ACTIONS(5360), + [anon_sym_typeof] = ACTIONS(5319), + [sym__constant_segment] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(5321), + [sym_self] = ACTIONS(5323), + [sym_underscore_type] = ACTIONS(5323), [anon_sym_QMARK] = ACTIONS(4700), [anon_sym_AMP_AMP] = ACTIONS(4700), [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_COLON2] = ACTIONS(4698), [anon_sym_else] = ACTIONS(4700), - [anon_sym_when] = ACTIONS(4700), - [anon_sym_in] = ACTIONS(4700), + [sym__line_break] = ACTIONS(4700), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5362), - [sym__start_of_named_tuple_type] = ACTIONS(5364), + [sym__start_of_tuple_type] = ACTIONS(5325), + [sym__start_of_named_tuple_type] = ACTIONS(5327), [sym__start_of_index_operator] = ACTIONS(4700), [sym_binary_plus] = ACTIONS(4700), [sym_binary_minus] = ACTIONS(4700), @@ -350262,84 +352544,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_ampersand] = ACTIONS(4700), [sym__binary_slash] = ACTIONS(4700), [sym__binary_double_slash] = ACTIONS(4700), + [sym__modifier_if_keyword] = ACTIONS(4700), + [sym__modifier_unless_keyword] = ACTIONS(4700), + [sym__regular_rescue_keyword] = ACTIONS(4700), + [sym__modifier_rescue_keyword] = ACTIONS(4700), + [sym__regular_ensure_keyword] = ACTIONS(4700), + [sym__modifier_ensure_keyword] = ACTIONS(4700), [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2194] = { - [sym_heredoc_body] = STATE(2194), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), + [2204] = { + [sym_heredoc_body] = STATE(2204), + [sym_typeof] = STATE(2923), + [sym_constant] = STATE(2799), + [sym__type] = STATE(2957), + [sym_class_type] = STATE(2923), + [sym_union_type] = STATE(2923), + [sym__parenthesized_type] = STATE(2923), + [sym_no_args_proc_type] = STATE(2923), + [sym_parenthesized_proc_type] = STATE(2923), + [sym_tuple_type] = STATE(2923), + [sym_named_tuple_type] = STATE(2923), + [sym_generic_instance_type] = STATE(2923), + [sym_nilable_type] = STATE(2923), + [sym_pointer_type] = STATE(2923), + [sym_static_array_type] = STATE(2923), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(5332), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(307), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_AMP_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_AMP_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_STAR_STAR_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP_AMP_EQ] = ACTIONS(311), - [anon_sym_COLON2] = ACTIONS(5412), - [anon_sym_elsif] = ACTIONS(173), - [anon_sym_else] = ACTIONS(173), - [anon_sym_when] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [sym__line_break] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_DASH_GT] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_end] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_GT_GT] = ACTIONS(4700), + [anon_sym_LT_LT] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ_GT] = ACTIONS(4700), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_TILDE] = ACTIONS(4700), + [anon_sym_EQ_TILDE] = ACTIONS(4700), + [anon_sym_AMP_STAR] = ACTIONS(4698), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), + [anon_sym_typeof] = ACTIONS(5305), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(5307), + [sym_self] = ACTIONS(5309), + [sym_underscore_type] = ACTIONS(5309), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_do] = ACTIONS(4700), + [sym__line_break] = ACTIONS(4700), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), + [sym__start_of_brace_block] = ACTIONS(4700), + [sym__start_of_tuple_type] = ACTIONS(5311), + [sym__start_of_named_tuple_type] = ACTIONS(5313), + [sym__start_of_index_operator] = ACTIONS(4700), + [sym_binary_plus] = ACTIONS(4700), + [sym_binary_minus] = ACTIONS(4700), + [sym_binary_wrapping_plus] = ACTIONS(4700), + [sym_binary_wrapping_minus] = ACTIONS(4700), + [sym__binary_star] = ACTIONS(4700), + [sym__binary_double_star] = ACTIONS(4700), + [sym_binary_ampersand] = ACTIONS(4700), + [sym__binary_slash] = ACTIONS(4700), + [sym__binary_double_slash] = ACTIONS(4700), + [sym__modifier_if_keyword] = ACTIONS(4700), + [sym__modifier_unless_keyword] = ACTIONS(4700), + [sym__modifier_rescue_keyword] = ACTIONS(4700), + [sym__regular_ensure_keyword] = ACTIONS(4700), + [sym__modifier_ensure_keyword] = ACTIONS(4700), + [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2195] = { - [sym_heredoc_body] = STATE(2195), + [2205] = { + [sym_heredoc_body] = STATE(2205), + [sym_typeof] = STATE(2923), + [sym_constant] = STATE(2799), + [sym__type] = STATE(2959), + [sym_class_type] = STATE(2923), + [sym_union_type] = STATE(2923), + [sym__parenthesized_type] = STATE(2923), + [sym_no_args_proc_type] = STATE(2923), + [sym_parenthesized_proc_type] = STATE(2923), + [sym_tuple_type] = STATE(2923), + [sym_named_tuple_type] = STATE(2923), + [sym_generic_instance_type] = STATE(2923), + [sym_nilable_type] = STATE(2923), + [sym_pointer_type] = STATE(2923), + [sym_static_array_type] = STATE(2923), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5332), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(5334), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_end] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ_GT] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_BANG_TILDE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_AMP_STAR] = ACTIONS(4720), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_typeof] = ACTIONS(5305), + [sym__constant_segment] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(5307), + [sym_self] = ACTIONS(5309), + [sym_underscore_type] = ACTIONS(5309), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_do] = ACTIONS(4722), + [sym__line_break] = ACTIONS(4722), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4722), + [sym__start_of_tuple_type] = ACTIONS(5311), + [sym__start_of_named_tuple_type] = ACTIONS(5313), + [sym__start_of_index_operator] = ACTIONS(4722), + [sym_binary_plus] = ACTIONS(4722), + [sym_binary_minus] = ACTIONS(4722), + [sym_binary_wrapping_plus] = ACTIONS(4722), + [sym_binary_wrapping_minus] = ACTIONS(4722), + [sym__binary_star] = ACTIONS(4722), + [sym__binary_double_star] = ACTIONS(4722), + [sym_binary_ampersand] = ACTIONS(4722), + [sym__binary_slash] = ACTIONS(4722), + [sym__binary_double_slash] = ACTIONS(4722), + [sym__modifier_if_keyword] = ACTIONS(4722), + [sym__modifier_unless_keyword] = ACTIONS(4722), + [sym__modifier_rescue_keyword] = ACTIONS(4722), + [sym__regular_ensure_keyword] = ACTIONS(4722), + [sym__modifier_ensure_keyword] = ACTIONS(4722), + [sym__modulo_operator] = ACTIONS(4722), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2206] = { + [sym_heredoc_body] = STATE(2206), + [sym_typeof] = STATE(3446), + [sym_constant] = STATE(3222), + [sym__type] = STATE(3519), + [sym_class_type] = STATE(3446), + [sym_union_type] = STATE(3446), + [sym__parenthesized_type] = STATE(3446), + [sym_no_args_proc_type] = STATE(3446), + [sym_parenthesized_proc_type] = STATE(3446), + [sym_tuple_type] = STATE(3446), + [sym_named_tuple_type] = STATE(3446), + [sym_generic_instance_type] = STATE(3446), + [sym_nilable_type] = STATE(3446), + [sym_pointer_type] = STATE(3446), + [sym_static_array_type] = STATE(3446), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(5377), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5379), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(5383), + [sym_self] = ACTIONS(5385), + [sym_underscore_type] = ACTIONS(5385), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4656), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5387), + [sym__start_of_named_tuple_type] = ACTIONS(5389), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modifier_if_keyword] = ACTIONS(4656), + [sym__modifier_unless_keyword] = ACTIONS(4656), + [sym__modifier_rescue_keyword] = ACTIONS(4656), + [sym__regular_ensure_keyword] = ACTIONS(4656), + [sym__modifier_ensure_keyword] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2207] = { + [sym_heredoc_body] = STATE(2207), [ts_builtin_sym_end] = ACTIONS(5391), [anon_sym_SEMI] = ACTIONS(5391), [anon_sym_RPAREN] = ACTIONS(5391), @@ -350387,12 +352824,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5391), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), + [anon_sym_do] = ACTIONS(5391), [anon_sym_elsif] = ACTIONS(5391), [anon_sym_else] = ACTIONS(5391), [anon_sym_when] = ACTIONS(5391), [anon_sym_in] = ACTIONS(5391), [sym__line_break] = ACTIONS(5391), [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5391), [sym__start_of_index_operator] = ACTIONS(5391), [sym_binary_plus] = ACTIONS(5391), [sym_binary_minus] = ACTIONS(5391), @@ -350410,152 +352849,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(5391), [sym__heredoc_body_start] = ACTIONS(7), }, - [2196] = { - [sym_heredoc_body] = STATE(2196), - [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_RPAREN] = ACTIONS(173), + [2208] = { + [sym_heredoc_body] = STATE(2208), + [sym_typeof] = STATE(3446), + [sym_constant] = STATE(3222), + [sym__type] = STATE(3197), + [sym_class_type] = STATE(3446), + [sym_union_type] = STATE(3446), + [sym__parenthesized_type] = STATE(3446), + [sym_no_args_proc_type] = STATE(3446), + [sym_parenthesized_proc_type] = STATE(3446), + [sym_tuple_type] = STATE(3446), + [sym_named_tuple_type] = STATE(3446), + [sym_generic_instance_type] = STATE(3446), + [sym_nilable_type] = STATE(3446), + [sym_pointer_type] = STATE(3446), + [sym_static_array_type] = STATE(3446), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5395), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(235), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(235), - [anon_sym_DASH_EQ] = ACTIONS(235), - [anon_sym_AMP_DASH_EQ] = ACTIONS(235), - [anon_sym_STAR_EQ] = ACTIONS(235), - [anon_sym_AMP_STAR_EQ] = ACTIONS(235), - [anon_sym_SLASH_EQ] = ACTIONS(235), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(235), - [anon_sym_PERCENT_EQ] = ACTIONS(235), - [anon_sym_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_EQ] = ACTIONS(235), - [anon_sym_CARET_EQ] = ACTIONS(235), - [anon_sym_STAR_STAR_EQ] = ACTIONS(235), - [anon_sym_LT_LT_EQ] = ACTIONS(235), - [anon_sym_GT_GT_EQ] = ACTIONS(235), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(235), - [anon_sym_AMP_AMP_EQ] = ACTIONS(235), - [anon_sym_elsif] = ACTIONS(173), - [anon_sym_else] = ACTIONS(173), - [anon_sym_when] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), - [sym__line_break] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5397), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(5383), + [sym_self] = ACTIONS(5385), + [sym_underscore_type] = ACTIONS(5385), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), + [sym__start_of_tuple_type] = ACTIONS(5387), + [sym__start_of_named_tuple_type] = ACTIONS(5389), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modifier_if_keyword] = ACTIONS(4678), + [sym__modifier_unless_keyword] = ACTIONS(4678), + [sym__modifier_rescue_keyword] = ACTIONS(4678), + [sym__regular_ensure_keyword] = ACTIONS(4678), + [sym__modifier_ensure_keyword] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2197] = { - [sym_heredoc_body] = STATE(2197), - [sym_typeof] = STATE(3439), - [sym_constant] = STATE(3220), - [sym__type] = STATE(3463), - [sym_class_type] = STATE(3439), - [sym_union_type] = STATE(3439), - [sym__parenthesized_type] = STATE(3439), - [sym_no_args_proc_type] = STATE(3439), - [sym_parenthesized_proc_type] = STATE(3439), - [sym_tuple_type] = STATE(3439), - [sym_named_tuple_type] = STATE(3439), - [sym_generic_instance_type] = STATE(3439), - [sym_nilable_type] = STATE(3439), - [sym_pointer_type] = STATE(3439), - [sym_static_array_type] = STATE(3439), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(5377), + [2209] = { + [sym_heredoc_body] = STATE(2209), + [sym_typeof] = STATE(3446), + [sym_constant] = STATE(3222), + [sym__type] = STATE(3178), + [sym_class_type] = STATE(3446), + [sym_union_type] = STATE(3446), + [sym__parenthesized_type] = STATE(3446), + [sym_no_args_proc_type] = STATE(3446), + [sym_parenthesized_proc_type] = STATE(3446), + [sym_tuple_type] = STATE(3446), + [sym_named_tuple_type] = STATE(3446), + [sym_generic_instance_type] = STATE(3446), + [sym_nilable_type] = STATE(3446), + [sym_pointer_type] = STATE(3446), + [sym_static_array_type] = STATE(3446), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(5395), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5379), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_end] = ACTIONS(4722), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ_GT] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_TILDE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_AMP_STAR] = ACTIONS(4720), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5400), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), [anon_sym_typeof] = ACTIONS(5381), - [sym__constant_segment] = ACTIONS(2530), + [sym__constant_segment] = ACTIONS(2582), [anon_sym_COLON_COLON] = ACTIONS(5383), [sym_self] = ACTIONS(5385), [sym_underscore_type] = ACTIONS(5385), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [sym__line_break] = ACTIONS(4722), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), [sym__start_of_tuple_type] = ACTIONS(5387), [sym__start_of_named_tuple_type] = ACTIONS(5389), - [sym__start_of_index_operator] = ACTIONS(4722), - [sym_binary_plus] = ACTIONS(4722), - [sym_binary_minus] = ACTIONS(4722), - [sym_binary_wrapping_plus] = ACTIONS(4722), - [sym_binary_wrapping_minus] = ACTIONS(4722), - [sym__binary_star] = ACTIONS(4722), - [sym__binary_double_star] = ACTIONS(4722), - [sym_binary_ampersand] = ACTIONS(4722), - [sym__binary_slash] = ACTIONS(4722), - [sym__binary_double_slash] = ACTIONS(4722), - [sym__modifier_if_keyword] = ACTIONS(4722), - [sym__modifier_unless_keyword] = ACTIONS(4722), - [sym__modifier_rescue_keyword] = ACTIONS(4722), - [sym__regular_ensure_keyword] = ACTIONS(4722), - [sym__modifier_ensure_keyword] = ACTIONS(4722), - [sym__modulo_operator] = ACTIONS(4722), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modifier_if_keyword] = ACTIONS(4656), + [sym__modifier_unless_keyword] = ACTIONS(4656), + [sym__modifier_rescue_keyword] = ACTIONS(4656), + [sym__regular_ensure_keyword] = ACTIONS(4656), + [sym__modifier_ensure_keyword] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2198] = { - [sym_heredoc_body] = STATE(2198), + [2210] = { + [sym_heredoc_body] = STATE(2210), [ts_builtin_sym_end] = ACTIONS(5403), [anon_sym_SEMI] = ACTIONS(5403), [anon_sym_RPAREN] = ACTIONS(5403), @@ -350603,12 +353046,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5403), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5403), [anon_sym_AMP_AMP_EQ] = ACTIONS(5403), + [anon_sym_do] = ACTIONS(5403), [anon_sym_elsif] = ACTIONS(5403), [anon_sym_else] = ACTIONS(5403), [anon_sym_when] = ACTIONS(5403), [anon_sym_in] = ACTIONS(5403), [sym__line_break] = ACTIONS(5403), [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5403), [sym__start_of_index_operator] = ACTIONS(5403), [sym_binary_plus] = ACTIONS(5403), [sym_binary_minus] = ACTIONS(5403), @@ -350626,29 +353071,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(5403), [sym__heredoc_body_start] = ACTIONS(7), }, - [2199] = { - [sym_heredoc_body] = STATE(2199), - [sym_typeof] = STATE(3439), - [sym_constant] = STATE(3220), - [sym__type] = STATE(3472), - [sym_class_type] = STATE(3439), - [sym_union_type] = STATE(3439), - [sym__parenthesized_type] = STATE(3439), - [sym_no_args_proc_type] = STATE(3439), - [sym_parenthesized_proc_type] = STATE(3439), - [sym_tuple_type] = STATE(3439), - [sym_named_tuple_type] = STATE(3439), - [sym_generic_instance_type] = STATE(3439), - [sym_nilable_type] = STATE(3439), - [sym_pointer_type] = STATE(3439), - [sym_static_array_type] = STATE(3439), - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(5377), + [2211] = { + [sym_heredoc_body] = STATE(2211), + [sym_typeof] = STATE(3446), + [sym_constant] = STATE(3222), + [sym__type] = STATE(3212), + [sym_class_type] = STATE(3446), + [sym_union_type] = STATE(3446), + [sym__parenthesized_type] = STATE(3446), + [sym_no_args_proc_type] = STATE(3446), + [sym_parenthesized_proc_type] = STATE(3446), + [sym_tuple_type] = STATE(3446), + [sym_named_tuple_type] = STATE(3446), + [sym_generic_instance_type] = STATE(3446), + [sym_nilable_type] = STATE(3446), + [sym_pointer_type] = STATE(3446), + [sym_static_array_type] = STATE(3446), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5395), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5407), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_end] = ACTIONS(4628), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(5383), + [sym_self] = ACTIONS(5385), + [sym_underscore_type] = ACTIONS(5385), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5387), + [sym__start_of_named_tuple_type] = ACTIONS(5389), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modifier_if_keyword] = ACTIONS(4628), + [sym__modifier_unless_keyword] = ACTIONS(4628), + [sym__modifier_rescue_keyword] = ACTIONS(4628), + [sym__regular_ensure_keyword] = ACTIONS(4628), + [sym__modifier_ensure_keyword] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2212] = { + [sym_heredoc_body] = STATE(2212), + [ts_builtin_sym_end] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_RPAREN] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(297), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(297), + [anon_sym_DASH_EQ] = ACTIONS(297), + [anon_sym_AMP_DASH_EQ] = ACTIONS(297), + [anon_sym_STAR_EQ] = ACTIONS(297), + [anon_sym_AMP_STAR_EQ] = ACTIONS(297), + [anon_sym_SLASH_EQ] = ACTIONS(297), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(297), + [anon_sym_PERCENT_EQ] = ACTIONS(297), + [anon_sym_PIPE_EQ] = ACTIONS(297), + [anon_sym_AMP_EQ] = ACTIONS(297), + [anon_sym_CARET_EQ] = ACTIONS(297), + [anon_sym_STAR_STAR_EQ] = ACTIONS(297), + [anon_sym_LT_LT_EQ] = ACTIONS(297), + [anon_sym_GT_GT_EQ] = ACTIONS(297), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(297), + [anon_sym_AMP_AMP_EQ] = ACTIONS(297), + [anon_sym_do] = ACTIONS(173), + [anon_sym_elsif] = ACTIONS(173), + [anon_sym_else] = ACTIONS(173), + [anon_sym_when] = ACTIONS(173), + [anon_sym_in] = ACTIONS(173), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(173), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2213] = { + [sym_heredoc_body] = STATE(2213), + [sym_typeof] = STATE(3446), + [sym_constant] = STATE(3222), + [sym__type] = STATE(3513), + [sym_class_type] = STATE(3446), + [sym_union_type] = STATE(3446), + [sym__parenthesized_type] = STATE(3446), + [sym_no_args_proc_type] = STATE(3446), + [sym_parenthesized_proc_type] = STATE(3446), + [sym_tuple_type] = STATE(3446), + [sym_named_tuple_type] = STATE(3446), + [sym_generic_instance_type] = STATE(3446), + [sym_nilable_type] = STATE(3446), + [sym_pointer_type] = STATE(3446), + [sym_static_array_type] = STATE(3446), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5377), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5379), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(5383), + [sym_self] = ACTIONS(5385), + [sym_underscore_type] = ACTIONS(5385), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5387), + [sym__start_of_named_tuple_type] = ACTIONS(5389), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modifier_if_keyword] = ACTIONS(4678), + [sym__modifier_unless_keyword] = ACTIONS(4678), + [sym__modifier_rescue_keyword] = ACTIONS(4678), + [sym__regular_ensure_keyword] = ACTIONS(4678), + [sym__modifier_ensure_keyword] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2214] = { + [sym_heredoc_body] = STATE(2214), + [sym_typeof] = STATE(3174), + [sym_constant] = STATE(3004), + [sym__type] = STATE(3307), + [sym_class_type] = STATE(3174), + [sym_union_type] = STATE(3174), + [sym__parenthesized_type] = STATE(3174), + [sym_no_args_proc_type] = STATE(3174), + [sym_parenthesized_proc_type] = STATE(3174), + [sym_tuple_type] = STATE(3174), + [sym_named_tuple_type] = STATE(3174), + [sym_generic_instance_type] = STATE(3174), + [sym_nilable_type] = STATE(3174), + [sym_pointer_type] = STATE(3174), + [sym_static_array_type] = STATE(3174), + [anon_sym_LPAREN] = ACTIONS(5373), + [anon_sym_RPAREN] = ACTIONS(4722), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_RBRACK] = ACTIONS(4722), + [anon_sym_EQ_GT] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(5375), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_end] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ_GT] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_BANG_TILDE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_AMP_STAR] = ACTIONS(4720), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_typeof] = ACTIONS(5355), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(5357), + [sym_self] = ACTIONS(5359), + [sym_underscore_type] = ACTIONS(5359), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_COLON2] = ACTIONS(4720), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5361), + [sym__start_of_named_tuple_type] = ACTIONS(5363), + [sym__start_of_index_operator] = ACTIONS(4722), + [sym_binary_plus] = ACTIONS(4722), + [sym_binary_minus] = ACTIONS(4722), + [sym_binary_wrapping_plus] = ACTIONS(4722), + [sym_binary_wrapping_minus] = ACTIONS(4722), + [sym__binary_star] = ACTIONS(4722), + [sym__binary_double_star] = ACTIONS(4722), + [sym_binary_ampersand] = ACTIONS(4722), + [sym__binary_slash] = ACTIONS(4722), + [sym__binary_double_slash] = ACTIONS(4722), + [sym__modulo_operator] = ACTIONS(4722), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2215] = { + [sym_heredoc_body] = STATE(2215), + [sym_typeof] = STATE(3174), + [sym_constant] = STATE(3004), + [sym__type] = STATE(3200), + [sym_class_type] = STATE(3174), + [sym_union_type] = STATE(3174), + [sym__parenthesized_type] = STATE(3174), + [sym_no_args_proc_type] = STATE(3174), + [sym_parenthesized_proc_type] = STATE(3174), + [sym_tuple_type] = STATE(3174), + [sym_named_tuple_type] = STATE(3174), + [sym_generic_instance_type] = STATE(3174), + [sym_nilable_type] = STATE(3174), + [sym_pointer_type] = STATE(3174), + [sym_static_array_type] = STATE(3174), + [anon_sym_LPAREN] = ACTIONS(5373), + [anon_sym_RPAREN] = ACTIONS(4700), [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4700), [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RBRACK] = ACTIONS(4700), + [anon_sym_EQ_GT] = ACTIONS(4700), [anon_sym_DOT_DOT] = ACTIONS(4698), [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5379), + [anon_sym_DASH_GT] = ACTIONS(5375), [anon_sym_DOT] = ACTIONS(4698), [anon_sym_end] = ACTIONS(4700), [anon_sym_LT] = ACTIONS(4698), @@ -350668,18 +353411,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4700), [anon_sym_AMP_STAR] = ACTIONS(4698), [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5381), - [sym__constant_segment] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(5383), - [sym_self] = ACTIONS(5385), - [sym_underscore_type] = ACTIONS(5385), + [anon_sym_typeof] = ACTIONS(5355), + [sym__constant_segment] = ACTIONS(3191), + [anon_sym_COLON_COLON] = ACTIONS(5357), + [sym_self] = ACTIONS(5359), + [sym_underscore_type] = ACTIONS(5359), [anon_sym_QMARK] = ACTIONS(4700), [anon_sym_AMP_AMP] = ACTIONS(4700), [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [sym__line_break] = ACTIONS(4700), + [anon_sym_COLON2] = ACTIONS(4698), + [anon_sym_else] = ACTIONS(4700), + [anon_sym_when] = ACTIONS(4700), + [anon_sym_in] = ACTIONS(4700), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5387), - [sym__start_of_named_tuple_type] = ACTIONS(5389), + [sym__start_of_tuple_type] = ACTIONS(5361), + [sym__start_of_named_tuple_type] = ACTIONS(5363), [sym__start_of_index_operator] = ACTIONS(4700), [sym_binary_plus] = ACTIONS(4700), [sym_binary_minus] = ACTIONS(4700), @@ -350690,21 +353436,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_ampersand] = ACTIONS(4700), [sym__binary_slash] = ACTIONS(4700), [sym__binary_double_slash] = ACTIONS(4700), - [sym__modifier_if_keyword] = ACTIONS(4700), - [sym__modifier_unless_keyword] = ACTIONS(4700), - [sym__modifier_rescue_keyword] = ACTIONS(4700), - [sym__regular_ensure_keyword] = ACTIONS(4700), - [sym__modifier_ensure_keyword] = ACTIONS(4700), [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2200] = { - [sym_heredoc_body] = STATE(2200), + [2216] = { + [sym_heredoc_body] = STATE(2216), [ts_builtin_sym_end] = ACTIONS(173), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_RPAREN] = ACTIONS(173), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(307), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), @@ -350746,7 +353488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(311), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), [anon_sym_AMP_AMP_EQ] = ACTIONS(311), - [anon_sym_COLON2] = ACTIONS(5412), + [anon_sym_COLON2] = ACTIONS(5410), [anon_sym_elsif] = ACTIONS(173), [anon_sym_else] = ACTIONS(173), [anon_sym_when] = ACTIONS(173), @@ -350770,20 +353512,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2201] = { - [sym_heredoc_body] = STATE(2201), + [2217] = { + [sym_heredoc_body] = STATE(2217), [ts_builtin_sym_end] = ACTIONS(173), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_RPAREN] = ACTIONS(173), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(173), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(309), + [anon_sym_EQ] = ACTIONS(199), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -350802,23 +353544,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(173), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(311), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(311), - [anon_sym_DASH_EQ] = ACTIONS(311), - [anon_sym_AMP_DASH_EQ] = ACTIONS(311), - [anon_sym_STAR_EQ] = ACTIONS(311), - [anon_sym_AMP_STAR_EQ] = ACTIONS(311), - [anon_sym_SLASH_EQ] = ACTIONS(311), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), - [anon_sym_PERCENT_EQ] = ACTIONS(311), - [anon_sym_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP_EQ] = ACTIONS(311), - [anon_sym_CARET_EQ] = ACTIONS(311), - [anon_sym_STAR_STAR_EQ] = ACTIONS(311), - [anon_sym_LT_LT_EQ] = ACTIONS(311), - [anon_sym_GT_GT_EQ] = ACTIONS(311), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), - [anon_sym_AMP_AMP_EQ] = ACTIONS(311), + [anon_sym_PLUS_EQ] = ACTIONS(235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(235), + [anon_sym_DASH_EQ] = ACTIONS(235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(235), + [anon_sym_STAR_EQ] = ACTIONS(235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(235), + [anon_sym_SLASH_EQ] = ACTIONS(235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(235), + [anon_sym_PERCENT_EQ] = ACTIONS(235), + [anon_sym_PIPE_EQ] = ACTIONS(235), + [anon_sym_AMP_EQ] = ACTIONS(235), + [anon_sym_CARET_EQ] = ACTIONS(235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(235), + [anon_sym_LT_LT_EQ] = ACTIONS(235), + [anon_sym_GT_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(235), + [anon_sym_COLON2] = ACTIONS(5412), [anon_sym_elsif] = ACTIONS(173), [anon_sym_else] = ACTIONS(173), [anon_sym_when] = ACTIONS(173), @@ -350842,155 +353585,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2202] = { - [sym_heredoc_body] = STATE(2202), - [sym_typeof] = STATE(4363), - [sym_constant] = STATE(3848), - [sym__type] = STATE(3950), - [sym_class_type] = STATE(4363), - [sym_union_type] = STATE(4363), - [sym__parenthesized_type] = STATE(4363), - [sym_no_args_proc_type] = STATE(4363), - [sym_parenthesized_proc_type] = STATE(4363), - [sym_tuple_type] = STATE(4363), - [sym_named_tuple_type] = STATE(4363), - [sym_generic_instance_type] = STATE(4363), - [sym_nilable_type] = STATE(4363), - [sym_pointer_type] = STATE(4363), - [sym_static_array_type] = STATE(4363), - [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5414), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5416), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5419), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(5421), - [sym_self] = ACTIONS(5423), - [sym_underscore_type] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), - [anon_sym_then] = ACTIONS(4656), - [sym__line_break] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5425), - [sym__start_of_named_tuple_type] = ACTIONS(5427), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2203] = { - [sym_heredoc_body] = STATE(2203), - [sym_typeof] = STATE(4363), - [sym_constant] = STATE(3848), - [sym__type] = STATE(3951), - [sym_class_type] = STATE(4363), - [sym_union_type] = STATE(4363), - [sym__parenthesized_type] = STATE(4363), - [sym_no_args_proc_type] = STATE(4363), - [sym_parenthesized_proc_type] = STATE(4363), - [sym_tuple_type] = STATE(4363), - [sym_named_tuple_type] = STATE(4363), - [sym_generic_instance_type] = STATE(4363), - [sym_nilable_type] = STATE(4363), - [sym_pointer_type] = STATE(4363), - [sym_static_array_type] = STATE(4363), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5414), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5429), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5419), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(5421), - [sym_self] = ACTIONS(5423), - [sym_underscore_type] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_do] = ACTIONS(4678), - [anon_sym_then] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5425), - [sym__start_of_named_tuple_type] = ACTIONS(5427), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2204] = { - [sym_heredoc_body] = STATE(2204), + [2218] = { + [sym_heredoc_body] = STATE(2218), [ts_builtin_sym_end] = ACTIONS(173), [anon_sym_SEMI] = ACTIONS(173), [anon_sym_RPAREN] = ACTIONS(173), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(307), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), @@ -351055,17 +353657,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2205] = { - [sym_heredoc_body] = STATE(2205), + [2219] = { + [sym_heredoc_body] = STATE(2219), + [sym_typeof] = STATE(3446), + [sym_constant] = STATE(3222), + [sym__type] = STATE(3482), + [sym_class_type] = STATE(3446), + [sym_union_type] = STATE(3446), + [sym__parenthesized_type] = STATE(3446), + [sym_no_args_proc_type] = STATE(3446), + [sym_parenthesized_proc_type] = STATE(3446), + [sym_tuple_type] = STATE(3446), + [sym_named_tuple_type] = STATE(3446), + [sym_generic_instance_type] = STATE(3446), + [sym_nilable_type] = STATE(3446), + [sym_pointer_type] = STATE(3446), + [sym_static_array_type] = STATE(3446), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(5377), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_DASH_GT] = ACTIONS(5379), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_end] = ACTIONS(4700), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_GT_GT] = ACTIONS(4700), + [anon_sym_LT_LT] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ_GT] = ACTIONS(4700), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_TILDE] = ACTIONS(4700), + [anon_sym_EQ_TILDE] = ACTIONS(4700), + [anon_sym_AMP_STAR] = ACTIONS(4698), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(5383), + [sym_self] = ACTIONS(5385), + [sym_underscore_type] = ACTIONS(5385), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [sym__line_break] = ACTIONS(4700), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5387), + [sym__start_of_named_tuple_type] = ACTIONS(5389), + [sym__start_of_index_operator] = ACTIONS(4700), + [sym_binary_plus] = ACTIONS(4700), + [sym_binary_minus] = ACTIONS(4700), + [sym_binary_wrapping_plus] = ACTIONS(4700), + [sym_binary_wrapping_minus] = ACTIONS(4700), + [sym__binary_star] = ACTIONS(4700), + [sym__binary_double_star] = ACTIONS(4700), + [sym_binary_ampersand] = ACTIONS(4700), + [sym__binary_slash] = ACTIONS(4700), + [sym__binary_double_slash] = ACTIONS(4700), + [sym__modifier_if_keyword] = ACTIONS(4700), + [sym__modifier_unless_keyword] = ACTIONS(4700), + [sym__modifier_rescue_keyword] = ACTIONS(4700), + [sym__regular_ensure_keyword] = ACTIONS(4700), + [sym__modifier_ensure_keyword] = ACTIONS(4700), + [sym__modulo_operator] = ACTIONS(4700), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2220] = { + [sym_heredoc_body] = STATE(2220), + [ts_builtin_sym_end] = ACTIONS(5403), + [anon_sym_SEMI] = ACTIONS(5403), + [anon_sym_RPAREN] = ACTIONS(5403), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5403), + [anon_sym_COMMA] = ACTIONS(5403), + [anon_sym_DOT_DOT] = ACTIONS(5405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), + [anon_sym_DOT] = ACTIONS(5405), + [anon_sym_end] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5405), + [anon_sym_EQ] = ACTIONS(5405), + [anon_sym_PIPE] = ACTIONS(5405), + [anon_sym_CARET] = ACTIONS(5405), + [anon_sym_GT_GT] = ACTIONS(5405), + [anon_sym_LT_LT] = ACTIONS(5405), + [anon_sym_EQ_EQ] = ACTIONS(5405), + [anon_sym_BANG_EQ] = ACTIONS(5403), + [anon_sym_LT_EQ] = ACTIONS(5405), + [anon_sym_GT] = ACTIONS(5405), + [anon_sym_GT_EQ] = ACTIONS(5403), + [anon_sym_LT_EQ_GT] = ACTIONS(5403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5403), + [anon_sym_BANG_TILDE] = ACTIONS(5403), + [anon_sym_EQ_TILDE] = ACTIONS(5403), + [anon_sym_AMP_STAR] = ACTIONS(5405), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5403), + [anon_sym_QMARK] = ACTIONS(5403), + [anon_sym_AMP_AMP] = ACTIONS(5405), + [anon_sym_PIPE_PIPE] = ACTIONS(5405), + [anon_sym_PLUS_EQ] = ACTIONS(5403), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5403), + [anon_sym_DASH_EQ] = ACTIONS(5403), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5403), + [anon_sym_STAR_EQ] = ACTIONS(5403), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5403), + [anon_sym_SLASH_EQ] = ACTIONS(5403), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5403), + [anon_sym_PERCENT_EQ] = ACTIONS(5403), + [anon_sym_PIPE_EQ] = ACTIONS(5403), + [anon_sym_AMP_EQ] = ACTIONS(5403), + [anon_sym_CARET_EQ] = ACTIONS(5403), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5403), + [anon_sym_LT_LT_EQ] = ACTIONS(5403), + [anon_sym_GT_GT_EQ] = ACTIONS(5403), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5403), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5403), + [anon_sym_elsif] = ACTIONS(5403), + [anon_sym_else] = ACTIONS(5403), + [anon_sym_when] = ACTIONS(5403), + [anon_sym_in] = ACTIONS(5403), + [sym__line_break] = ACTIONS(5403), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(5403), + [sym_binary_plus] = ACTIONS(5403), + [sym_binary_minus] = ACTIONS(5403), + [sym_binary_wrapping_plus] = ACTIONS(5403), + [sym_binary_wrapping_minus] = ACTIONS(5403), + [sym__binary_star] = ACTIONS(5403), + [sym__binary_double_star] = ACTIONS(5403), + [sym_binary_ampersand] = ACTIONS(5403), + [sym__binary_slash] = ACTIONS(5403), + [sym__binary_double_slash] = ACTIONS(5403), + [sym__modifier_if_keyword] = ACTIONS(5403), + [sym__modifier_unless_keyword] = ACTIONS(5403), + [sym__modifier_rescue_keyword] = ACTIONS(5403), + [sym__modifier_ensure_keyword] = ACTIONS(5403), + [sym__modulo_operator] = ACTIONS(5403), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2221] = { + [sym_heredoc_body] = STATE(2221), + [ts_builtin_sym_end] = ACTIONS(173), [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_RPAREN] = ACTIONS(173), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(173), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(309), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -351084,29 +353832,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(173), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_AMP_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_AMP_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_STAR_STAR_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(439), - [anon_sym_AMP_AMP_EQ] = ACTIONS(439), - [anon_sym_COLON2] = ACTIONS(5432), - [anon_sym_do] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_AMP_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_AMP_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), + [anon_sym_AMP_AMP_EQ] = ACTIONS(311), + [anon_sym_COLON2] = ACTIONS(5410), + [anon_sym_elsif] = ACTIONS(173), [anon_sym_else] = ACTIONS(173), + [anon_sym_when] = ACTIONS(173), + [anon_sym_in] = ACTIONS(173), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(173), [sym__start_of_index_operator] = ACTIONS(173), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), @@ -351119,308 +353868,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(173), [sym__modifier_if_keyword] = ACTIONS(173), [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__regular_rescue_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2206] = { - [sym_heredoc_body] = STATE(2206), - [sym_typeof] = STATE(4363), - [sym_constant] = STATE(3848), - [sym__type] = STATE(3851), - [sym_class_type] = STATE(4363), - [sym_union_type] = STATE(4363), - [sym__parenthesized_type] = STATE(4363), - [sym_no_args_proc_type] = STATE(4363), - [sym_parenthesized_proc_type] = STATE(4363), - [sym_tuple_type] = STATE(4363), - [sym_named_tuple_type] = STATE(4363), - [sym_generic_instance_type] = STATE(4363), - [sym_nilable_type] = STATE(4363), - [sym_pointer_type] = STATE(4363), - [sym_static_array_type] = STATE(4363), - [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5414), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5434), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5419), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(5421), - [sym_self] = ACTIONS(5423), - [sym_underscore_type] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_do] = ACTIONS(4628), - [anon_sym_then] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5425), - [sym__start_of_named_tuple_type] = ACTIONS(5427), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2207] = { - [sym_heredoc_body] = STATE(2207), - [sym_typeof] = STATE(4363), - [sym_constant] = STATE(3848), - [sym__type] = STATE(4490), - [sym_class_type] = STATE(4363), - [sym_union_type] = STATE(4363), - [sym__parenthesized_type] = STATE(4363), - [sym_no_args_proc_type] = STATE(4363), - [sym_parenthesized_proc_type] = STATE(4363), - [sym_tuple_type] = STATE(4363), - [sym_named_tuple_type] = STATE(4363), - [sym_generic_instance_type] = STATE(4363), - [sym_nilable_type] = STATE(4363), - [sym_pointer_type] = STATE(4363), - [sym_static_array_type] = STATE(4363), - [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5437), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5439), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5419), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(5421), - [sym_self] = ACTIONS(5423), - [sym_underscore_type] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_do] = ACTIONS(4628), - [anon_sym_then] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5425), - [sym__start_of_named_tuple_type] = ACTIONS(5427), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2208] = { - [sym_heredoc_body] = STATE(2208), - [sym_typeof] = STATE(4363), - [sym_constant] = STATE(3848), - [sym__type] = STATE(4383), - [sym_class_type] = STATE(4363), - [sym_union_type] = STATE(4363), - [sym__parenthesized_type] = STATE(4363), - [sym_no_args_proc_type] = STATE(4363), - [sym_parenthesized_proc_type] = STATE(4363), - [sym_tuple_type] = STATE(4363), - [sym_named_tuple_type] = STATE(4363), - [sym_generic_instance_type] = STATE(4363), - [sym_nilable_type] = STATE(4363), - [sym_pointer_type] = STATE(4363), - [sym_static_array_type] = STATE(4363), - [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5437), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5439), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5419), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(5421), - [sym_self] = ACTIONS(5423), - [sym_underscore_type] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), - [anon_sym_then] = ACTIONS(4656), - [sym__line_break] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5425), - [sym__start_of_named_tuple_type] = ACTIONS(5427), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2209] = { - [sym_heredoc_body] = STATE(2209), - [sym_typeof] = STATE(4363), - [sym_constant] = STATE(3848), - [sym__type] = STATE(4400), - [sym_class_type] = STATE(4363), - [sym_union_type] = STATE(4363), - [sym__parenthesized_type] = STATE(4363), - [sym_no_args_proc_type] = STATE(4363), - [sym_parenthesized_proc_type] = STATE(4363), - [sym_tuple_type] = STATE(4363), - [sym_named_tuple_type] = STATE(4363), - [sym_generic_instance_type] = STATE(4363), - [sym_nilable_type] = STATE(4363), - [sym_pointer_type] = STATE(4363), - [sym_static_array_type] = STATE(4363), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5437), + [2222] = { + [sym_heredoc_body] = STATE(2222), + [sym_typeof] = STATE(3446), + [sym_constant] = STATE(3222), + [sym__type] = STATE(3365), + [sym_class_type] = STATE(3446), + [sym_union_type] = STATE(3446), + [sym__parenthesized_type] = STATE(3446), + [sym_no_args_proc_type] = STATE(3446), + [sym_parenthesized_proc_type] = STATE(3446), + [sym_tuple_type] = STATE(3446), + [sym_named_tuple_type] = STATE(3446), + [sym_generic_instance_type] = STATE(3446), + [sym_nilable_type] = STATE(3446), + [sym_pointer_type] = STATE(3446), + [sym_static_array_type] = STATE(3446), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5377), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5439), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5419), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(5421), - [sym_self] = ACTIONS(5423), - [sym_underscore_type] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_do] = ACTIONS(4678), - [anon_sym_then] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(5379), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_end] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ_GT] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_BANG_TILDE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_AMP_STAR] = ACTIONS(4720), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(5383), + [sym_self] = ACTIONS(5385), + [sym_underscore_type] = ACTIONS(5385), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [sym__line_break] = ACTIONS(4722), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5425), - [sym__start_of_named_tuple_type] = ACTIONS(5427), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), + [sym__start_of_tuple_type] = ACTIONS(5387), + [sym__start_of_named_tuple_type] = ACTIONS(5389), + [sym__start_of_index_operator] = ACTIONS(4722), + [sym_binary_plus] = ACTIONS(4722), + [sym_binary_minus] = ACTIONS(4722), + [sym_binary_wrapping_plus] = ACTIONS(4722), + [sym_binary_wrapping_minus] = ACTIONS(4722), + [sym__binary_star] = ACTIONS(4722), + [sym__binary_double_star] = ACTIONS(4722), + [sym_binary_ampersand] = ACTIONS(4722), + [sym__binary_slash] = ACTIONS(4722), + [sym__binary_double_slash] = ACTIONS(4722), + [sym__modifier_if_keyword] = ACTIONS(4722), + [sym__modifier_unless_keyword] = ACTIONS(4722), + [sym__modifier_rescue_keyword] = ACTIONS(4722), + [sym__regular_ensure_keyword] = ACTIONS(4722), + [sym__modifier_ensure_keyword] = ACTIONS(4722), + [sym__modulo_operator] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, - [2210] = { - [sym_heredoc_body] = STATE(2210), + [2223] = { + [sym_heredoc_body] = STATE(2223), + [ts_builtin_sym_end] = ACTIONS(173), [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_RPAREN] = ACTIONS(173), [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(173), [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(173), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(199), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -351439,28 +353977,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(173), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(439), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(439), - [anon_sym_DASH_EQ] = ACTIONS(439), - [anon_sym_AMP_DASH_EQ] = ACTIONS(439), - [anon_sym_STAR_EQ] = ACTIONS(439), - [anon_sym_AMP_STAR_EQ] = ACTIONS(439), - [anon_sym_SLASH_EQ] = ACTIONS(439), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(439), - [anon_sym_PERCENT_EQ] = ACTIONS(439), - [anon_sym_PIPE_EQ] = ACTIONS(439), - [anon_sym_AMP_EQ] = ACTIONS(439), - [anon_sym_CARET_EQ] = ACTIONS(439), - [anon_sym_STAR_STAR_EQ] = ACTIONS(439), - [anon_sym_LT_LT_EQ] = ACTIONS(439), - [anon_sym_GT_GT_EQ] = ACTIONS(439), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(439), - [anon_sym_AMP_AMP_EQ] = ACTIONS(439), - [anon_sym_do] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(235), + [anon_sym_DASH_EQ] = ACTIONS(235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(235), + [anon_sym_STAR_EQ] = ACTIONS(235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(235), + [anon_sym_SLASH_EQ] = ACTIONS(235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(235), + [anon_sym_PERCENT_EQ] = ACTIONS(235), + [anon_sym_PIPE_EQ] = ACTIONS(235), + [anon_sym_AMP_EQ] = ACTIONS(235), + [anon_sym_CARET_EQ] = ACTIONS(235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(235), + [anon_sym_LT_LT_EQ] = ACTIONS(235), + [anon_sym_GT_GT_EQ] = ACTIONS(235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(235), + [anon_sym_elsif] = ACTIONS(173), [anon_sym_else] = ACTIONS(173), + [anon_sym_when] = ACTIONS(173), + [anon_sym_in] = ACTIONS(173), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(173), [sym__start_of_index_operator] = ACTIONS(173), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), @@ -351473,177 +354012,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(173), [sym__modifier_if_keyword] = ACTIONS(173), [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__regular_rescue_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2211] = { - [sym_heredoc_body] = STATE(2211), - [anon_sym_SEMI] = ACTIONS(5403), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5403), - [anon_sym_DOT_DOT] = ACTIONS(5405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), - [anon_sym_DOT] = ACTIONS(5405), - [anon_sym_end] = ACTIONS(5403), - [anon_sym_LT] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(5405), - [anon_sym_PIPE] = ACTIONS(5405), - [anon_sym_CARET] = ACTIONS(5405), - [anon_sym_GT_GT] = ACTIONS(5405), - [anon_sym_LT_LT] = ACTIONS(5405), - [anon_sym_EQ_EQ] = ACTIONS(5405), - [anon_sym_BANG_EQ] = ACTIONS(5403), - [anon_sym_LT_EQ] = ACTIONS(5405), - [anon_sym_GT] = ACTIONS(5405), - [anon_sym_GT_EQ] = ACTIONS(5403), - [anon_sym_LT_EQ_GT] = ACTIONS(5403), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5403), - [anon_sym_BANG_TILDE] = ACTIONS(5403), - [anon_sym_EQ_TILDE] = ACTIONS(5403), - [anon_sym_AMP_STAR] = ACTIONS(5405), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5403), - [anon_sym_QMARK] = ACTIONS(5403), - [anon_sym_AMP_AMP] = ACTIONS(5405), - [anon_sym_PIPE_PIPE] = ACTIONS(5405), - [anon_sym_PLUS_EQ] = ACTIONS(5403), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5403), - [anon_sym_DASH_EQ] = ACTIONS(5403), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5403), - [anon_sym_STAR_EQ] = ACTIONS(5403), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5403), - [anon_sym_SLASH_EQ] = ACTIONS(5403), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5403), - [anon_sym_PERCENT_EQ] = ACTIONS(5403), - [anon_sym_PIPE_EQ] = ACTIONS(5403), - [anon_sym_AMP_EQ] = ACTIONS(5403), - [anon_sym_CARET_EQ] = ACTIONS(5403), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5403), - [anon_sym_LT_LT_EQ] = ACTIONS(5403), - [anon_sym_GT_GT_EQ] = ACTIONS(5403), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5403), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5403), - [anon_sym_do] = ACTIONS(5403), - [anon_sym_else] = ACTIONS(5403), - [sym__line_break] = ACTIONS(5403), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5403), - [sym__start_of_index_operator] = ACTIONS(5403), - [sym_binary_plus] = ACTIONS(5403), - [sym_binary_minus] = ACTIONS(5403), - [sym_binary_wrapping_plus] = ACTIONS(5403), - [sym_binary_wrapping_minus] = ACTIONS(5403), - [sym__binary_star] = ACTIONS(5403), - [sym__binary_double_star] = ACTIONS(5403), - [sym_binary_ampersand] = ACTIONS(5403), - [sym__binary_slash] = ACTIONS(5403), - [sym__binary_double_slash] = ACTIONS(5403), - [sym__modifier_if_keyword] = ACTIONS(5403), - [sym__modifier_unless_keyword] = ACTIONS(5403), - [sym__regular_rescue_keyword] = ACTIONS(5403), - [sym__modifier_rescue_keyword] = ACTIONS(5403), - [sym__regular_ensure_keyword] = ACTIONS(5403), - [sym__modifier_ensure_keyword] = ACTIONS(5403), - [sym__modulo_operator] = ACTIONS(5403), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2212] = { - [sym_heredoc_body] = STATE(2212), - [sym_typeof] = STATE(4577), - [sym_constant] = STATE(4535), - [sym__type] = STATE(4648), - [sym_class_type] = STATE(4577), - [sym_union_type] = STATE(4577), - [sym__parenthesized_type] = STATE(4577), - [sym_no_args_proc_type] = STATE(4577), - [sym_parenthesized_proc_type] = STATE(4577), - [sym_tuple_type] = STATE(4577), - [sym_named_tuple_type] = STATE(4577), - [sym_generic_instance_type] = STATE(4577), - [sym_nilable_type] = STATE(4577), - [sym_pointer_type] = STATE(4577), - [sym_static_array_type] = STATE(4577), - [anon_sym_LPAREN] = ACTIONS(5441), + [2224] = { + [sym_heredoc_body] = STATE(2224), + [ts_builtin_sym_end] = ACTIONS(5391), + [anon_sym_SEMI] = ACTIONS(5391), + [anon_sym_RPAREN] = ACTIONS(5391), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_RBRACK] = ACTIONS(4626), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5443), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5445), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [sym_self] = ACTIONS(5449), - [sym_underscore_type] = ACTIONS(5449), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_RBRACK_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_do] = ACTIONS(4628), + [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_COMMA] = ACTIONS(5391), + [anon_sym_DOT_DOT] = ACTIONS(5393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5391), + [anon_sym_DOT] = ACTIONS(5393), + [anon_sym_end] = ACTIONS(5391), + [anon_sym_LT] = ACTIONS(5393), + [anon_sym_EQ] = ACTIONS(5393), + [anon_sym_PIPE] = ACTIONS(5393), + [anon_sym_CARET] = ACTIONS(5393), + [anon_sym_GT_GT] = ACTIONS(5393), + [anon_sym_LT_LT] = ACTIONS(5393), + [anon_sym_EQ_EQ] = ACTIONS(5393), + [anon_sym_BANG_EQ] = ACTIONS(5391), + [anon_sym_LT_EQ] = ACTIONS(5393), + [anon_sym_GT] = ACTIONS(5393), + [anon_sym_GT_EQ] = ACTIONS(5391), + [anon_sym_LT_EQ_GT] = ACTIONS(5391), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5391), + [anon_sym_BANG_TILDE] = ACTIONS(5391), + [anon_sym_EQ_TILDE] = ACTIONS(5391), + [anon_sym_AMP_STAR] = ACTIONS(5393), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5391), + [anon_sym_QMARK] = ACTIONS(5391), + [anon_sym_AMP_AMP] = ACTIONS(5393), + [anon_sym_PIPE_PIPE] = ACTIONS(5393), + [anon_sym_PLUS_EQ] = ACTIONS(5391), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5391), + [anon_sym_DASH_EQ] = ACTIONS(5391), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5391), + [anon_sym_STAR_EQ] = ACTIONS(5391), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5391), + [anon_sym_SLASH_EQ] = ACTIONS(5391), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5391), + [anon_sym_PERCENT_EQ] = ACTIONS(5391), + [anon_sym_PIPE_EQ] = ACTIONS(5391), + [anon_sym_AMP_EQ] = ACTIONS(5391), + [anon_sym_CARET_EQ] = ACTIONS(5391), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5391), + [anon_sym_LT_LT_EQ] = ACTIONS(5391), + [anon_sym_GT_GT_EQ] = ACTIONS(5391), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), + [anon_sym_elsif] = ACTIONS(5391), + [anon_sym_else] = ACTIONS(5391), + [anon_sym_when] = ACTIONS(5391), + [anon_sym_in] = ACTIONS(5391), + [sym__line_break] = ACTIONS(5391), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5451), - [sym__start_of_named_tuple_type] = ACTIONS(5453), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), + [sym__start_of_index_operator] = ACTIONS(5391), + [sym_binary_plus] = ACTIONS(5391), + [sym_binary_minus] = ACTIONS(5391), + [sym_binary_wrapping_plus] = ACTIONS(5391), + [sym_binary_wrapping_minus] = ACTIONS(5391), + [sym__binary_star] = ACTIONS(5391), + [sym__binary_double_star] = ACTIONS(5391), + [sym_binary_ampersand] = ACTIONS(5391), + [sym__binary_slash] = ACTIONS(5391), + [sym__binary_double_slash] = ACTIONS(5391), + [sym__modifier_if_keyword] = ACTIONS(5391), + [sym__modifier_unless_keyword] = ACTIONS(5391), + [sym__modifier_rescue_keyword] = ACTIONS(5391), + [sym__modifier_ensure_keyword] = ACTIONS(5391), + [sym__modulo_operator] = ACTIONS(5391), [sym__heredoc_body_start] = ACTIONS(7), }, - [2213] = { - [sym_heredoc_body] = STATE(2213), - [sym_typeof] = STATE(4577), - [sym_constant] = STATE(4535), - [sym__type] = STATE(4621), - [sym_class_type] = STATE(4577), - [sym_union_type] = STATE(4577), - [sym__parenthesized_type] = STATE(4577), - [sym_no_args_proc_type] = STATE(4577), - [sym_parenthesized_proc_type] = STATE(4577), - [sym_tuple_type] = STATE(4577), - [sym_named_tuple_type] = STATE(4577), - [sym_generic_instance_type] = STATE(4577), - [sym_nilable_type] = STATE(4577), - [sym_pointer_type] = STATE(4577), - [sym_static_array_type] = STATE(4577), - [anon_sym_LPAREN] = ACTIONS(5441), + [2225] = { + [sym_heredoc_body] = STATE(2225), + [sym_typeof] = STATE(4569), + [sym_constant] = STATE(4129), + [sym__type] = STATE(4525), + [sym_class_type] = STATE(4569), + [sym_union_type] = STATE(4569), + [sym__parenthesized_type] = STATE(4569), + [sym_no_args_proc_type] = STATE(4569), + [sym_parenthesized_proc_type] = STATE(4569), + [sym_tuple_type] = STATE(4569), + [sym_named_tuple_type] = STATE(4569), + [sym_generic_instance_type] = STATE(4569), + [sym_nilable_type] = STATE(4569), + [sym_pointer_type] = STATE(4569), + [sym_static_array_type] = STATE(4569), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5414), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_RBRACK] = ACTIONS(4676), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5443), + [anon_sym_DASH_GT] = ACTIONS(5416), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_LT] = ACTIONS(4676), [anon_sym_EQ] = ACTIONS(4676), @@ -351663,20 +354132,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5445), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [sym_self] = ACTIONS(5449), - [sym_underscore_type] = ACTIONS(5449), + [anon_sym_typeof] = ACTIONS(5418), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(5420), + [sym_self] = ACTIONS(5422), + [sym_underscore_type] = ACTIONS(5422), [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_RBRACK_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), [anon_sym_do] = ACTIONS(4678), + [anon_sym_then] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5451), - [sym__start_of_named_tuple_type] = ACTIONS(5453), + [sym__start_of_tuple_type] = ACTIONS(5424), + [sym__start_of_named_tuple_type] = ACTIONS(5426), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -351690,30 +354160,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2214] = { - [sym_heredoc_body] = STATE(2214), - [sym_typeof] = STATE(4577), - [sym_constant] = STATE(4535), - [sym__type] = STATE(4274), - [sym_class_type] = STATE(4577), - [sym_union_type] = STATE(4577), - [sym__parenthesized_type] = STATE(4577), - [sym_no_args_proc_type] = STATE(4577), - [sym_parenthesized_proc_type] = STATE(4577), - [sym_tuple_type] = STATE(4577), - [sym_named_tuple_type] = STATE(4577), - [sym_generic_instance_type] = STATE(4577), - [sym_nilable_type] = STATE(4577), - [sym_pointer_type] = STATE(4577), - [sym_static_array_type] = STATE(4577), - [anon_sym_LPAREN] = ACTIONS(5455), + [2226] = { + [sym_heredoc_body] = STATE(2226), + [sym_typeof] = STATE(4569), + [sym_constant] = STATE(4129), + [sym__type] = STATE(4527), + [sym_class_type] = STATE(4569), + [sym_union_type] = STATE(4569), + [sym__parenthesized_type] = STATE(4569), + [sym_no_args_proc_type] = STATE(4569), + [sym_parenthesized_proc_type] = STATE(4569), + [sym_tuple_type] = STATE(4569), + [sym_named_tuple_type] = STATE(4569), + [sym_generic_instance_type] = STATE(4569), + [sym_nilable_type] = STATE(4569), + [sym_pointer_type] = STATE(4569), + [sym_static_array_type] = STATE(4569), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5414), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_RBRACK] = ACTIONS(4626), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5457), + [anon_sym_DASH_GT] = ACTIONS(5416), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_LT] = ACTIONS(4626), [anon_sym_EQ] = ACTIONS(4626), @@ -351733,20 +354203,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5445), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [sym_self] = ACTIONS(5449), - [sym_underscore_type] = ACTIONS(5449), + [anon_sym_typeof] = ACTIONS(5418), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(5420), + [sym_self] = ACTIONS(5422), + [sym_underscore_type] = ACTIONS(5422), [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_RBRACK_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), [anon_sym_do] = ACTIONS(4628), + [anon_sym_then] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5451), - [sym__start_of_named_tuple_type] = ACTIONS(5453), + [sym__start_of_tuple_type] = ACTIONS(5424), + [sym__start_of_named_tuple_type] = ACTIONS(5426), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -351760,100 +354231,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2215] = { - [sym_heredoc_body] = STATE(2215), - [sym_typeof] = STATE(4577), - [sym_constant] = STATE(4535), - [sym__type] = STATE(4370), - [sym_class_type] = STATE(4577), - [sym_union_type] = STATE(4577), - [sym__parenthesized_type] = STATE(4577), - [sym_no_args_proc_type] = STATE(4577), - [sym_parenthesized_proc_type] = STATE(4577), - [sym_tuple_type] = STATE(4577), - [sym_named_tuple_type] = STATE(4577), - [sym_generic_instance_type] = STATE(4577), - [sym_nilable_type] = STATE(4577), - [sym_pointer_type] = STATE(4577), - [sym_static_array_type] = STATE(4577), - [anon_sym_LPAREN] = ACTIONS(5455), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_RBRACK] = ACTIONS(4654), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5460), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5445), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [sym_self] = ACTIONS(5449), - [sym_underscore_type] = ACTIONS(5449), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_RBRACK_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5451), - [sym__start_of_named_tuple_type] = ACTIONS(5453), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2216] = { - [sym_heredoc_body] = STATE(2216), - [sym_typeof] = STATE(4577), - [sym_constant] = STATE(4535), - [sym__type] = STATE(4619), - [sym_class_type] = STATE(4577), - [sym_union_type] = STATE(4577), - [sym__parenthesized_type] = STATE(4577), - [sym_no_args_proc_type] = STATE(4577), - [sym_parenthesized_proc_type] = STATE(4577), - [sym_tuple_type] = STATE(4577), - [sym_named_tuple_type] = STATE(4577), - [sym_generic_instance_type] = STATE(4577), - [sym_nilable_type] = STATE(4577), - [sym_pointer_type] = STATE(4577), - [sym_static_array_type] = STATE(4577), - [anon_sym_LPAREN] = ACTIONS(5441), + [2227] = { + [sym_heredoc_body] = STATE(2227), + [sym_typeof] = STATE(4569), + [sym_constant] = STATE(4129), + [sym__type] = STATE(4135), + [sym_class_type] = STATE(4569), + [sym_union_type] = STATE(4569), + [sym__parenthesized_type] = STATE(4569), + [sym_no_args_proc_type] = STATE(4569), + [sym_parenthesized_proc_type] = STATE(4569), + [sym_tuple_type] = STATE(4569), + [sym_named_tuple_type] = STATE(4569), + [sym_generic_instance_type] = STATE(4569), + [sym_nilable_type] = STATE(4569), + [sym_pointer_type] = STATE(4569), + [sym_static_array_type] = STATE(4569), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(5428), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_RBRACK] = ACTIONS(4654), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5443), + [anon_sym_DASH_GT] = ACTIONS(5430), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_LT] = ACTIONS(4654), [anon_sym_EQ] = ACTIONS(4654), @@ -351873,197 +354274,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5445), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [sym_self] = ACTIONS(5449), - [sym_underscore_type] = ACTIONS(5449), + [anon_sym_typeof] = ACTIONS(5418), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(5420), + [sym_self] = ACTIONS(5422), + [sym_underscore_type] = ACTIONS(5422), [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_RBRACK_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5451), - [sym__start_of_named_tuple_type] = ACTIONS(5453), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2217] = { - [sym_heredoc_body] = STATE(2217), - [sym_typeof] = STATE(4577), - [sym_constant] = STATE(4535), - [sym__type] = STATE(4373), - [sym_class_type] = STATE(4577), - [sym_union_type] = STATE(4577), - [sym__parenthesized_type] = STATE(4577), - [sym_no_args_proc_type] = STATE(4577), - [sym_parenthesized_proc_type] = STATE(4577), - [sym_tuple_type] = STATE(4577), - [sym_named_tuple_type] = STATE(4577), - [sym_generic_instance_type] = STATE(4577), - [sym_nilable_type] = STATE(4577), - [sym_pointer_type] = STATE(4577), - [sym_static_array_type] = STATE(4577), - [anon_sym_LPAREN] = ACTIONS(5455), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_RBRACK] = ACTIONS(4676), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5463), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5445), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [sym_self] = ACTIONS(5449), - [sym_underscore_type] = ACTIONS(5449), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_RBRACK_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_do] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5451), - [sym__start_of_named_tuple_type] = ACTIONS(5453), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2218] = { - [sym_heredoc_body] = STATE(2218), - [anon_sym_SEMI] = ACTIONS(5391), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5391), - [anon_sym_DOT_DOT] = ACTIONS(5393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5391), - [anon_sym_DOT] = ACTIONS(5393), - [anon_sym_end] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_PIPE] = ACTIONS(5393), - [anon_sym_CARET] = ACTIONS(5393), - [anon_sym_GT_GT] = ACTIONS(5393), - [anon_sym_LT_LT] = ACTIONS(5393), - [anon_sym_EQ_EQ] = ACTIONS(5393), - [anon_sym_BANG_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ] = ACTIONS(5393), - [anon_sym_GT] = ACTIONS(5393), - [anon_sym_GT_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ_GT] = ACTIONS(5391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5391), - [anon_sym_BANG_TILDE] = ACTIONS(5391), - [anon_sym_EQ_TILDE] = ACTIONS(5391), - [anon_sym_AMP_STAR] = ACTIONS(5393), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5391), - [anon_sym_QMARK] = ACTIONS(5391), - [anon_sym_AMP_AMP] = ACTIONS(5393), - [anon_sym_PIPE_PIPE] = ACTIONS(5393), - [anon_sym_PLUS_EQ] = ACTIONS(5391), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5391), - [anon_sym_DASH_EQ] = ACTIONS(5391), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5391), - [anon_sym_STAR_EQ] = ACTIONS(5391), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5391), - [anon_sym_SLASH_EQ] = ACTIONS(5391), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5391), - [anon_sym_PERCENT_EQ] = ACTIONS(5391), - [anon_sym_PIPE_EQ] = ACTIONS(5391), - [anon_sym_AMP_EQ] = ACTIONS(5391), - [anon_sym_CARET_EQ] = ACTIONS(5391), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5391), - [anon_sym_LT_LT_EQ] = ACTIONS(5391), - [anon_sym_GT_GT_EQ] = ACTIONS(5391), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), - [anon_sym_do] = ACTIONS(5391), - [anon_sym_else] = ACTIONS(5391), - [sym__line_break] = ACTIONS(5391), + [anon_sym_do] = ACTIONS(4656), + [anon_sym_then] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5391), - [sym__start_of_index_operator] = ACTIONS(5391), - [sym_binary_plus] = ACTIONS(5391), - [sym_binary_minus] = ACTIONS(5391), - [sym_binary_wrapping_plus] = ACTIONS(5391), - [sym_binary_wrapping_minus] = ACTIONS(5391), - [sym__binary_star] = ACTIONS(5391), - [sym__binary_double_star] = ACTIONS(5391), - [sym_binary_ampersand] = ACTIONS(5391), - [sym__binary_slash] = ACTIONS(5391), - [sym__binary_double_slash] = ACTIONS(5391), - [sym__modifier_if_keyword] = ACTIONS(5391), - [sym__modifier_unless_keyword] = ACTIONS(5391), - [sym__regular_rescue_keyword] = ACTIONS(5391), - [sym__modifier_rescue_keyword] = ACTIONS(5391), - [sym__regular_ensure_keyword] = ACTIONS(5391), - [sym__modifier_ensure_keyword] = ACTIONS(5391), - [sym__modulo_operator] = ACTIONS(5391), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5424), + [sym__start_of_named_tuple_type] = ACTIONS(5426), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2219] = { - [sym_heredoc_body] = STATE(2219), - [sym_typeof] = STATE(4895), - [sym_constant] = STATE(4679), - [sym__type] = STATE(4969), - [sym_class_type] = STATE(4895), - [sym_union_type] = STATE(4895), - [sym__parenthesized_type] = STATE(4895), - [sym_no_args_proc_type] = STATE(4895), - [sym_parenthesized_proc_type] = STATE(4895), - [sym_tuple_type] = STATE(4895), - [sym_named_tuple_type] = STATE(4895), - [sym_generic_instance_type] = STATE(4895), - [sym_nilable_type] = STATE(4895), - [sym_pointer_type] = STATE(4895), - [sym_static_array_type] = STATE(4895), + [2228] = { + [sym_heredoc_body] = STATE(2228), + [ts_builtin_sym_end] = ACTIONS(173), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_RPAREN] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_AMP_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_AMP_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_STAR_STAR_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(311), + [anon_sym_AMP_AMP_EQ] = ACTIONS(311), + [anon_sym_elsif] = ACTIONS(173), + [anon_sym_else] = ACTIONS(173), + [anon_sym_when] = ACTIONS(173), + [anon_sym_in] = ACTIONS(173), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2229] = { + [sym_heredoc_body] = STATE(2229), + [sym_typeof] = STATE(4569), + [sym_constant] = STATE(4129), + [sym__type] = STATE(4571), + [sym_class_type] = STATE(4569), + [sym_union_type] = STATE(4569), + [sym__parenthesized_type] = STATE(4569), + [sym_no_args_proc_type] = STATE(4569), + [sym_parenthesized_proc_type] = STATE(4569), + [sym_tuple_type] = STATE(4569), + [sym_named_tuple_type] = STATE(4569), + [sym_generic_instance_type] = STATE(4569), + [sym_nilable_type] = STATE(4569), + [sym_pointer_type] = STATE(4569), + [sym_static_array_type] = STATE(4569), [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_LPAREN] = ACTIONS(5414), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5468), + [anon_sym_DASH_GT] = ACTIONS(5416), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_LT] = ACTIONS(4654), [anon_sym_EQ] = ACTIONS(4654), @@ -352083,19 +354416,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5470), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(5472), - [sym_self] = ACTIONS(5474), - [sym_underscore_type] = ACTIONS(5474), + [anon_sym_typeof] = ACTIONS(5418), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(5420), + [sym_self] = ACTIONS(5422), + [sym_underscore_type] = ACTIONS(5422), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), [anon_sym_then] = ACTIONS(4656), [sym__line_break] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5476), - [sym__start_of_named_tuple_type] = ACTIONS(5478), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5424), + [sym__start_of_named_tuple_type] = ACTIONS(5426), [sym__start_of_index_operator] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), @@ -352109,30 +354444,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2220] = { - [sym_heredoc_body] = STATE(2220), - [sym_typeof] = STATE(4895), - [sym_constant] = STATE(4679), - [sym__type] = STATE(4683), - [sym_class_type] = STATE(4895), - [sym_union_type] = STATE(4895), - [sym__parenthesized_type] = STATE(4895), - [sym_no_args_proc_type] = STATE(4895), - [sym_parenthesized_proc_type] = STATE(4895), - [sym_tuple_type] = STATE(4895), - [sym_named_tuple_type] = STATE(4895), - [sym_generic_instance_type] = STATE(4895), - [sym_nilable_type] = STATE(4895), - [sym_pointer_type] = STATE(4895), - [sym_static_array_type] = STATE(4895), + [2230] = { + [sym_heredoc_body] = STATE(2230), + [anon_sym_SEMI] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_AMP_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_AMP_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_STAR_STAR_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(377), + [anon_sym_AMP_AMP_EQ] = ACTIONS(377), + [anon_sym_COLON2] = ACTIONS(5433), + [anon_sym_do] = ACTIONS(173), + [anon_sym_else] = ACTIONS(173), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(173), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__regular_rescue_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2231] = { + [sym_heredoc_body] = STATE(2231), + [sym_typeof] = STATE(4569), + [sym_constant] = STATE(4129), + [sym__type] = STATE(4219), + [sym_class_type] = STATE(4569), + [sym_union_type] = STATE(4569), + [sym__parenthesized_type] = STATE(4569), + [sym_no_args_proc_type] = STATE(4569), + [sym_parenthesized_proc_type] = STATE(4569), + [sym_tuple_type] = STATE(4569), + [sym_named_tuple_type] = STATE(4569), + [sym_generic_instance_type] = STATE(4569), + [sym_nilable_type] = STATE(4569), + [sym_pointer_type] = STATE(4569), + [sym_static_array_type] = STATE(4569), [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5480), + [anon_sym_LPAREN] = ACTIONS(5428), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5482), + [anon_sym_DASH_GT] = ACTIONS(5435), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_LT] = ACTIONS(4676), [anon_sym_EQ] = ACTIONS(4676), @@ -352152,19 +354558,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5470), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(5472), - [sym_self] = ACTIONS(5474), - [sym_underscore_type] = ACTIONS(5474), + [anon_sym_typeof] = ACTIONS(5418), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(5420), + [sym_self] = ACTIONS(5422), + [sym_underscore_type] = ACTIONS(5422), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_do] = ACTIONS(4678), [anon_sym_then] = ACTIONS(4678), [sym__line_break] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5476), - [sym__start_of_named_tuple_type] = ACTIONS(5478), + [sym__start_of_brace_block] = ACTIONS(4678), + [sym__start_of_tuple_type] = ACTIONS(5424), + [sym__start_of_named_tuple_type] = ACTIONS(5426), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -352178,29 +354586,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2221] = { - [sym_heredoc_body] = STATE(2221), - [sym_typeof] = STATE(4988), - [sym_constant] = STATE(4549), - [sym__type] = STATE(4601), - [sym_class_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym__parenthesized_type] = STATE(4988), - [sym_no_args_proc_type] = STATE(4988), - [sym_parenthesized_proc_type] = STATE(4988), - [sym_tuple_type] = STATE(4988), - [sym_named_tuple_type] = STATE(4988), - [sym_generic_instance_type] = STATE(4988), - [sym_nilable_type] = STATE(4988), - [sym_pointer_type] = STATE(4988), - [sym_static_array_type] = STATE(4988), - [anon_sym_LPAREN] = ACTIONS(5485), + [2232] = { + [sym_heredoc_body] = STATE(2232), + [sym_typeof] = STATE(4569), + [sym_constant] = STATE(4129), + [sym__type] = STATE(4220), + [sym_class_type] = STATE(4569), + [sym_union_type] = STATE(4569), + [sym__parenthesized_type] = STATE(4569), + [sym_no_args_proc_type] = STATE(4569), + [sym_parenthesized_proc_type] = STATE(4569), + [sym_tuple_type] = STATE(4569), + [sym_named_tuple_type] = STATE(4569), + [sym_generic_instance_type] = STATE(4569), + [sym_nilable_type] = STATE(4569), + [sym_pointer_type] = STATE(4569), + [sym_static_array_type] = STATE(4569), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5428), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5438), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5418), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(5420), + [sym_self] = ACTIONS(5422), + [sym_underscore_type] = ACTIONS(5422), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_do] = ACTIONS(4628), + [anon_sym_then] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4628), + [sym__start_of_tuple_type] = ACTIONS(5424), + [sym__start_of_named_tuple_type] = ACTIONS(5426), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2233] = { + [sym_heredoc_body] = STATE(2233), + [sym_typeof] = STATE(4612), + [sym_constant] = STATE(4459), + [sym__type] = STATE(4515), + [sym_class_type] = STATE(4612), + [sym_union_type] = STATE(4612), + [sym__parenthesized_type] = STATE(4612), + [sym_no_args_proc_type] = STATE(4612), + [sym_parenthesized_proc_type] = STATE(4612), + [sym_tuple_type] = STATE(4612), + [sym_named_tuple_type] = STATE(4612), + [sym_generic_instance_type] = STATE(4612), + [sym_nilable_type] = STATE(4612), + [sym_pointer_type] = STATE(4612), + [sym_static_array_type] = STATE(4612), + [anon_sym_LPAREN] = ACTIONS(5441), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_RBRACK] = ACTIONS(4676), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5487), + [anon_sym_DASH_GT] = ACTIONS(5443), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_LT] = ACTIONS(4676), [anon_sym_EQ] = ACTIONS(4676), @@ -352220,21 +354700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5490), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(5492), - [sym_self] = ACTIONS(5494), - [sym_underscore_type] = ACTIONS(5494), + [anon_sym_typeof] = ACTIONS(5446), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [sym_self] = ACTIONS(5450), + [sym_underscore_type] = ACTIONS(5450), [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_RBRACK_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), [anon_sym_do] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5496), - [sym__start_of_named_tuple_type] = ACTIONS(5498), + [sym__start_of_tuple_type] = ACTIONS(5452), + [sym__start_of_named_tuple_type] = ACTIONS(5454), [sym__start_of_index_operator] = ACTIONS(4678), - [sym__end_of_with_expression] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), [sym_binary_wrapping_plus] = ACTIONS(4678), @@ -352247,29 +354727,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2222] = { - [sym_heredoc_body] = STATE(2222), - [sym_typeof] = STATE(4988), - [sym_constant] = STATE(4549), - [sym__type] = STATE(4860), - [sym_class_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym__parenthesized_type] = STATE(4988), - [sym_no_args_proc_type] = STATE(4988), - [sym_parenthesized_proc_type] = STATE(4988), - [sym_tuple_type] = STATE(4988), - [sym_named_tuple_type] = STATE(4988), - [sym_generic_instance_type] = STATE(4988), - [sym_nilable_type] = STATE(4988), - [sym_pointer_type] = STATE(4988), - [sym_static_array_type] = STATE(4988), - [anon_sym_LPAREN] = ACTIONS(5500), + [2234] = { + [sym_heredoc_body] = STATE(2234), + [sym_typeof] = STATE(4612), + [sym_constant] = STATE(4459), + [sym__type] = STATE(4791), + [sym_class_type] = STATE(4612), + [sym_union_type] = STATE(4612), + [sym__parenthesized_type] = STATE(4612), + [sym_no_args_proc_type] = STATE(4612), + [sym_parenthesized_proc_type] = STATE(4612), + [sym_tuple_type] = STATE(4612), + [sym_named_tuple_type] = STATE(4612), + [sym_generic_instance_type] = STATE(4612), + [sym_nilable_type] = STATE(4612), + [sym_pointer_type] = STATE(4612), + [sym_static_array_type] = STATE(4612), + [anon_sym_LPAREN] = ACTIONS(5456), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_RBRACK] = ACTIONS(4676), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5502), + [anon_sym_DASH_GT] = ACTIONS(5458), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_LT] = ACTIONS(4676), [anon_sym_EQ] = ACTIONS(4676), @@ -352289,21 +354770,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5490), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(5492), - [sym_self] = ACTIONS(5494), - [sym_underscore_type] = ACTIONS(5494), + [anon_sym_typeof] = ACTIONS(5446), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [sym_self] = ACTIONS(5450), + [sym_underscore_type] = ACTIONS(5450), [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_RBRACK_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), [anon_sym_do] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4678), - [sym__start_of_tuple_type] = ACTIONS(5496), - [sym__start_of_named_tuple_type] = ACTIONS(5498), + [sym__start_of_tuple_type] = ACTIONS(5452), + [sym__start_of_named_tuple_type] = ACTIONS(5454), [sym__start_of_index_operator] = ACTIONS(4678), - [sym__end_of_with_expression] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), [sym_binary_wrapping_plus] = ACTIONS(4678), @@ -352316,305 +354797,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2223] = { - [sym_heredoc_body] = STATE(2223), - [sym_typeof] = STATE(4363), - [sym_constant] = STATE(3848), - [sym__type] = STATE(4449), - [sym_class_type] = STATE(4363), - [sym_union_type] = STATE(4363), - [sym__parenthesized_type] = STATE(4363), - [sym_no_args_proc_type] = STATE(4363), - [sym_parenthesized_proc_type] = STATE(4363), - [sym_tuple_type] = STATE(4363), - [sym_named_tuple_type] = STATE(4363), - [sym_generic_instance_type] = STATE(4363), - [sym_nilable_type] = STATE(4363), - [sym_pointer_type] = STATE(4363), - [sym_static_array_type] = STATE(4363), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(5437), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5439), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ_GT] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_TILDE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_AMP_STAR] = ACTIONS(4720), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5419), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(5421), - [sym_self] = ACTIONS(5423), - [sym_underscore_type] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_do] = ACTIONS(4722), - [anon_sym_then] = ACTIONS(4722), - [sym__line_break] = ACTIONS(4722), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4722), - [sym__start_of_tuple_type] = ACTIONS(5425), - [sym__start_of_named_tuple_type] = ACTIONS(5427), - [sym__start_of_index_operator] = ACTIONS(4722), - [sym_binary_plus] = ACTIONS(4722), - [sym_binary_minus] = ACTIONS(4722), - [sym_binary_wrapping_plus] = ACTIONS(4722), - [sym_binary_wrapping_minus] = ACTIONS(4722), - [sym__binary_star] = ACTIONS(4722), - [sym__binary_double_star] = ACTIONS(4722), - [sym_binary_ampersand] = ACTIONS(4722), - [sym__binary_slash] = ACTIONS(4722), - [sym__binary_double_slash] = ACTIONS(4722), - [sym__modulo_operator] = ACTIONS(4722), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2224] = { - [sym_heredoc_body] = STATE(2224), - [sym_typeof] = STATE(4363), - [sym_constant] = STATE(3848), - [sym__type] = STATE(4375), - [sym_class_type] = STATE(4363), - [sym_union_type] = STATE(4363), - [sym__parenthesized_type] = STATE(4363), - [sym_no_args_proc_type] = STATE(4363), - [sym_parenthesized_proc_type] = STATE(4363), - [sym_tuple_type] = STATE(4363), - [sym_named_tuple_type] = STATE(4363), - [sym_generic_instance_type] = STATE(4363), - [sym_nilable_type] = STATE(4363), - [sym_pointer_type] = STATE(4363), - [sym_static_array_type] = STATE(4363), - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(5437), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5439), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_LT] = ACTIONS(4698), - [anon_sym_EQ] = ACTIONS(4698), - [anon_sym_PIPE] = ACTIONS(4698), - [anon_sym_CARET] = ACTIONS(4700), - [anon_sym_GT_GT] = ACTIONS(4700), - [anon_sym_LT_LT] = ACTIONS(4700), - [anon_sym_EQ_EQ] = ACTIONS(4698), - [anon_sym_BANG_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ] = ACTIONS(4698), - [anon_sym_GT] = ACTIONS(4698), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ_GT] = ACTIONS(4700), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), - [anon_sym_BANG_TILDE] = ACTIONS(4700), - [anon_sym_EQ_TILDE] = ACTIONS(4700), - [anon_sym_AMP_STAR] = ACTIONS(4698), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5419), - [sym__constant_segment] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(5421), - [sym_self] = ACTIONS(5423), - [sym_underscore_type] = ACTIONS(5423), - [anon_sym_QMARK] = ACTIONS(4700), - [anon_sym_AMP_AMP] = ACTIONS(4700), - [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_do] = ACTIONS(4700), - [anon_sym_then] = ACTIONS(4700), - [sym__line_break] = ACTIONS(4700), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4700), - [sym__start_of_tuple_type] = ACTIONS(5425), - [sym__start_of_named_tuple_type] = ACTIONS(5427), - [sym__start_of_index_operator] = ACTIONS(4700), - [sym_binary_plus] = ACTIONS(4700), - [sym_binary_minus] = ACTIONS(4700), - [sym_binary_wrapping_plus] = ACTIONS(4700), - [sym_binary_wrapping_minus] = ACTIONS(4700), - [sym__binary_star] = ACTIONS(4700), - [sym__binary_double_star] = ACTIONS(4700), - [sym_binary_ampersand] = ACTIONS(4700), - [sym__binary_slash] = ACTIONS(4700), - [sym__binary_double_slash] = ACTIONS(4700), - [sym__modulo_operator] = ACTIONS(4700), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2225] = { - [sym_heredoc_body] = STATE(2225), - [anon_sym_SEMI] = ACTIONS(173), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(703), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(709), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(709), - [anon_sym_DASH_EQ] = ACTIONS(709), - [anon_sym_AMP_DASH_EQ] = ACTIONS(709), - [anon_sym_STAR_EQ] = ACTIONS(709), - [anon_sym_AMP_STAR_EQ] = ACTIONS(709), - [anon_sym_SLASH_EQ] = ACTIONS(709), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(709), - [anon_sym_PERCENT_EQ] = ACTIONS(709), - [anon_sym_PIPE_EQ] = ACTIONS(709), - [anon_sym_AMP_EQ] = ACTIONS(709), - [anon_sym_CARET_EQ] = ACTIONS(709), - [anon_sym_STAR_STAR_EQ] = ACTIONS(709), - [anon_sym_LT_LT_EQ] = ACTIONS(709), - [anon_sym_GT_GT_EQ] = ACTIONS(709), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(709), - [anon_sym_AMP_AMP_EQ] = ACTIONS(709), - [anon_sym_COLON2] = ACTIONS(5504), - [anon_sym_do] = ACTIONS(173), - [sym__line_break] = ACTIONS(173), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(173), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2226] = { - [sym_heredoc_body] = STATE(2226), - [sym_typeof] = STATE(4895), - [sym_constant] = STATE(4679), - [sym__type] = STATE(4983), - [sym_class_type] = STATE(4895), - [sym_union_type] = STATE(4895), - [sym__parenthesized_type] = STATE(4895), - [sym_no_args_proc_type] = STATE(4895), - [sym_parenthesized_proc_type] = STATE(4895), - [sym_tuple_type] = STATE(4895), - [sym_named_tuple_type] = STATE(4895), - [sym_generic_instance_type] = STATE(4895), - [sym_nilable_type] = STATE(4895), - [sym_pointer_type] = STATE(4895), - [sym_static_array_type] = STATE(4895), - [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5466), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5468), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5470), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(5472), - [sym_self] = ACTIONS(5474), - [sym_underscore_type] = ACTIONS(5474), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_then] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5476), - [sym__start_of_named_tuple_type] = ACTIONS(5478), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2227] = { - [sym_heredoc_body] = STATE(2227), - [sym_typeof] = STATE(4988), - [sym_constant] = STATE(4549), - [sym__type] = STATE(4600), - [sym_class_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym__parenthesized_type] = STATE(4988), - [sym_no_args_proc_type] = STATE(4988), - [sym_parenthesized_proc_type] = STATE(4988), - [sym_tuple_type] = STATE(4988), - [sym_named_tuple_type] = STATE(4988), - [sym_generic_instance_type] = STATE(4988), - [sym_nilable_type] = STATE(4988), - [sym_pointer_type] = STATE(4988), - [sym_static_array_type] = STATE(4988), - [anon_sym_LPAREN] = ACTIONS(5485), + [2235] = { + [sym_heredoc_body] = STATE(2235), + [sym_typeof] = STATE(4612), + [sym_constant] = STATE(4459), + [sym__type] = STATE(4705), + [sym_class_type] = STATE(4612), + [sym_union_type] = STATE(4612), + [sym__parenthesized_type] = STATE(4612), + [sym_no_args_proc_type] = STATE(4612), + [sym_parenthesized_proc_type] = STATE(4612), + [sym_tuple_type] = STATE(4612), + [sym_named_tuple_type] = STATE(4612), + [sym_generic_instance_type] = STATE(4612), + [sym_nilable_type] = STATE(4612), + [sym_pointer_type] = STATE(4612), + [sym_static_array_type] = STATE(4612), + [anon_sym_LPAREN] = ACTIONS(5456), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_RBRACK] = ACTIONS(4654), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5506), + [anon_sym_DASH_GT] = ACTIONS(5458), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_LT] = ACTIONS(4654), [anon_sym_EQ] = ACTIONS(4654), @@ -352634,21 +354840,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5490), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(5492), - [sym_self] = ACTIONS(5494), - [sym_underscore_type] = ACTIONS(5494), + [anon_sym_typeof] = ACTIONS(5446), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [sym_self] = ACTIONS(5450), + [sym_underscore_type] = ACTIONS(5450), [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_RBRACK_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), [anon_sym_do] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5496), - [sym__start_of_named_tuple_type] = ACTIONS(5498), + [sym__start_of_tuple_type] = ACTIONS(5452), + [sym__start_of_named_tuple_type] = ACTIONS(5454), [sym__start_of_index_operator] = ACTIONS(4656), - [sym__end_of_with_expression] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), [sym_binary_wrapping_plus] = ACTIONS(4656), @@ -352661,77 +354867,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2228] = { - [sym_heredoc_body] = STATE(2228), - [sym_typeof] = STATE(4895), - [sym_constant] = STATE(4679), - [sym__type] = STATE(4987), - [sym_class_type] = STATE(4895), - [sym_union_type] = STATE(4895), - [sym__parenthesized_type] = STATE(4895), - [sym_no_args_proc_type] = STATE(4895), - [sym_parenthesized_proc_type] = STATE(4895), - [sym_tuple_type] = STATE(4895), - [sym_named_tuple_type] = STATE(4895), - [sym_generic_instance_type] = STATE(4895), - [sym_nilable_type] = STATE(4895), - [sym_pointer_type] = STATE(4895), - [sym_static_array_type] = STATE(4895), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_LPAREN] = ACTIONS(5466), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5468), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5470), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(5472), - [sym_self] = ACTIONS(5474), - [sym_underscore_type] = ACTIONS(5474), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [anon_sym_then] = ACTIONS(4678), - [sym__line_break] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5476), - [sym__start_of_named_tuple_type] = ACTIONS(5478), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2229] = { - [sym_heredoc_body] = STATE(2229), + [2236] = { + [sym_heredoc_body] = STATE(2236), [anon_sym_SEMI] = ACTIONS(173), [sym_comment] = ACTIONS(5), [anon_sym_COMMA] = ACTIONS(173), @@ -352776,10 +354913,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(377), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(377), [anon_sym_AMP_AMP_EQ] = ACTIONS(377), - [anon_sym_COLON2] = ACTIONS(5509), + [anon_sym_do] = ACTIONS(173), [anon_sym_else] = ACTIONS(173), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(173), [sym__start_of_index_operator] = ACTIONS(173), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), @@ -352799,29 +354937,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2230] = { - [sym_heredoc_body] = STATE(2230), - [sym_typeof] = STATE(4988), - [sym_constant] = STATE(4549), - [sym__type] = STATE(4553), - [sym_class_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym__parenthesized_type] = STATE(4988), - [sym_no_args_proc_type] = STATE(4988), - [sym_parenthesized_proc_type] = STATE(4988), - [sym_tuple_type] = STATE(4988), - [sym_named_tuple_type] = STATE(4988), - [sym_generic_instance_type] = STATE(4988), - [sym_nilable_type] = STATE(4988), - [sym_pointer_type] = STATE(4988), - [sym_static_array_type] = STATE(4988), - [anon_sym_LPAREN] = ACTIONS(5485), + [2237] = { + [sym_heredoc_body] = STATE(2237), + [sym_typeof] = STATE(4612), + [sym_constant] = STATE(4459), + [sym__type] = STATE(4793), + [sym_class_type] = STATE(4612), + [sym_union_type] = STATE(4612), + [sym__parenthesized_type] = STATE(4612), + [sym_no_args_proc_type] = STATE(4612), + [sym_parenthesized_proc_type] = STATE(4612), + [sym_tuple_type] = STATE(4612), + [sym_named_tuple_type] = STATE(4612), + [sym_generic_instance_type] = STATE(4612), + [sym_nilable_type] = STATE(4612), + [sym_pointer_type] = STATE(4612), + [sym_static_array_type] = STATE(4612), + [anon_sym_LPAREN] = ACTIONS(5456), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_RBRACK] = ACTIONS(4626), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5511), + [anon_sym_DASH_GT] = ACTIONS(5458), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_LT] = ACTIONS(4626), [anon_sym_EQ] = ACTIONS(4626), @@ -352841,21 +354980,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5490), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(5492), - [sym_self] = ACTIONS(5494), - [sym_underscore_type] = ACTIONS(5494), + [anon_sym_typeof] = ACTIONS(5446), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [sym_self] = ACTIONS(5450), + [sym_underscore_type] = ACTIONS(5450), [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_RBRACK_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), [anon_sym_do] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5496), - [sym__start_of_named_tuple_type] = ACTIONS(5498), + [sym__start_of_tuple_type] = ACTIONS(5452), + [sym__start_of_named_tuple_type] = ACTIONS(5454), [sym__start_of_index_operator] = ACTIONS(4628), - [sym__end_of_with_expression] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), [sym_binary_wrapping_plus] = ACTIONS(4628), @@ -352868,14 +355007,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2231] = { - [sym_heredoc_body] = STATE(2231), - [anon_sym_RPAREN] = ACTIONS(5403), + [2238] = { + [sym_heredoc_body] = STATE(2238), + [anon_sym_SEMI] = ACTIONS(5391), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5391), + [anon_sym_DOT_DOT] = ACTIONS(5393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5391), + [anon_sym_DOT] = ACTIONS(5393), + [anon_sym_end] = ACTIONS(5391), + [anon_sym_LT] = ACTIONS(5393), + [anon_sym_EQ] = ACTIONS(5393), + [anon_sym_PIPE] = ACTIONS(5393), + [anon_sym_CARET] = ACTIONS(5393), + [anon_sym_GT_GT] = ACTIONS(5393), + [anon_sym_LT_LT] = ACTIONS(5393), + [anon_sym_EQ_EQ] = ACTIONS(5393), + [anon_sym_BANG_EQ] = ACTIONS(5391), + [anon_sym_LT_EQ] = ACTIONS(5393), + [anon_sym_GT] = ACTIONS(5393), + [anon_sym_GT_EQ] = ACTIONS(5391), + [anon_sym_LT_EQ_GT] = ACTIONS(5391), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5391), + [anon_sym_BANG_TILDE] = ACTIONS(5391), + [anon_sym_EQ_TILDE] = ACTIONS(5391), + [anon_sym_AMP_STAR] = ACTIONS(5393), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5391), + [anon_sym_QMARK] = ACTIONS(5391), + [anon_sym_AMP_AMP] = ACTIONS(5393), + [anon_sym_PIPE_PIPE] = ACTIONS(5393), + [anon_sym_PLUS_EQ] = ACTIONS(5391), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5391), + [anon_sym_DASH_EQ] = ACTIONS(5391), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5391), + [anon_sym_STAR_EQ] = ACTIONS(5391), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5391), + [anon_sym_SLASH_EQ] = ACTIONS(5391), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5391), + [anon_sym_PERCENT_EQ] = ACTIONS(5391), + [anon_sym_PIPE_EQ] = ACTIONS(5391), + [anon_sym_AMP_EQ] = ACTIONS(5391), + [anon_sym_CARET_EQ] = ACTIONS(5391), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5391), + [anon_sym_LT_LT_EQ] = ACTIONS(5391), + [anon_sym_GT_GT_EQ] = ACTIONS(5391), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), + [anon_sym_do] = ACTIONS(5391), + [anon_sym_else] = ACTIONS(5391), + [sym__line_break] = ACTIONS(5391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5391), + [sym__start_of_index_operator] = ACTIONS(5391), + [sym_binary_plus] = ACTIONS(5391), + [sym_binary_minus] = ACTIONS(5391), + [sym_binary_wrapping_plus] = ACTIONS(5391), + [sym_binary_wrapping_minus] = ACTIONS(5391), + [sym__binary_star] = ACTIONS(5391), + [sym__binary_double_star] = ACTIONS(5391), + [sym_binary_ampersand] = ACTIONS(5391), + [sym__binary_slash] = ACTIONS(5391), + [sym__binary_double_slash] = ACTIONS(5391), + [sym__modifier_if_keyword] = ACTIONS(5391), + [sym__modifier_unless_keyword] = ACTIONS(5391), + [sym__regular_rescue_keyword] = ACTIONS(5391), + [sym__modifier_rescue_keyword] = ACTIONS(5391), + [sym__regular_ensure_keyword] = ACTIONS(5391), + [sym__modifier_ensure_keyword] = ACTIONS(5391), + [sym__modulo_operator] = ACTIONS(5391), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2239] = { + [sym_heredoc_body] = STATE(2239), + [sym_typeof] = STATE(4612), + [sym_constant] = STATE(4459), + [sym__type] = STATE(4516), + [sym_class_type] = STATE(4612), + [sym_union_type] = STATE(4612), + [sym__parenthesized_type] = STATE(4612), + [sym_no_args_proc_type] = STATE(4612), + [sym_parenthesized_proc_type] = STATE(4612), + [sym_tuple_type] = STATE(4612), + [sym_named_tuple_type] = STATE(4612), + [sym_generic_instance_type] = STATE(4612), + [sym_nilable_type] = STATE(4612), + [sym_pointer_type] = STATE(4612), + [sym_static_array_type] = STATE(4612), + [anon_sym_LPAREN] = ACTIONS(5441), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_RBRACK] = ACTIONS(4626), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5460), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5446), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [sym_self] = ACTIONS(5450), + [sym_underscore_type] = ACTIONS(5450), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_RBRACK_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_do] = ACTIONS(4628), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4628), + [sym__start_of_tuple_type] = ACTIONS(5452), + [sym__start_of_named_tuple_type] = ACTIONS(5454), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2240] = { + [sym_heredoc_body] = STATE(2240), + [anon_sym_SEMI] = ACTIONS(5403), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5403), [anon_sym_COMMA] = ACTIONS(5403), - [anon_sym_RBRACK] = ACTIONS(5403), - [anon_sym_EQ_GT] = ACTIONS(5403), [anon_sym_DOT_DOT] = ACTIONS(5405), [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), [anon_sym_DOT] = ACTIONS(5405), @@ -352917,11 +355193,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5403), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5403), [anon_sym_AMP_AMP_EQ] = ACTIONS(5403), - [anon_sym_COLON2] = ACTIONS(5403), [anon_sym_do] = ACTIONS(5403), [anon_sym_else] = ACTIONS(5403), - [anon_sym_when] = ACTIONS(5403), - [anon_sym_in] = ACTIONS(5403), + [sym__line_break] = ACTIONS(5403), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(5403), [sym__start_of_index_operator] = ACTIONS(5403), @@ -352934,102 +355208,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_ampersand] = ACTIONS(5403), [sym__binary_slash] = ACTIONS(5403), [sym__binary_double_slash] = ACTIONS(5403), + [sym__modifier_if_keyword] = ACTIONS(5403), + [sym__modifier_unless_keyword] = ACTIONS(5403), + [sym__regular_rescue_keyword] = ACTIONS(5403), + [sym__modifier_rescue_keyword] = ACTIONS(5403), + [sym__regular_ensure_keyword] = ACTIONS(5403), + [sym__modifier_ensure_keyword] = ACTIONS(5403), [sym__modulo_operator] = ACTIONS(5403), [sym__heredoc_body_start] = ACTIONS(7), }, - [2232] = { - [sym_heredoc_body] = STATE(2232), - [anon_sym_RPAREN] = ACTIONS(173), + [2241] = { + [sym_heredoc_body] = STATE(2241), + [sym_typeof] = STATE(4612), + [sym_constant] = STATE(4459), + [sym__type] = STATE(4463), + [sym_class_type] = STATE(4612), + [sym_union_type] = STATE(4612), + [sym__parenthesized_type] = STATE(4612), + [sym_no_args_proc_type] = STATE(4612), + [sym_parenthesized_proc_type] = STATE(4612), + [sym_tuple_type] = STATE(4612), + [sym_named_tuple_type] = STATE(4612), + [sym_generic_instance_type] = STATE(4612), + [sym_nilable_type] = STATE(4612), + [sym_pointer_type] = STATE(4612), + [sym_static_array_type] = STATE(4612), + [anon_sym_LPAREN] = ACTIONS(5441), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [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(5514), - [anon_sym_do] = ACTIONS(173), - [anon_sym_else] = ACTIONS(173), - [anon_sym_when] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5463), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5446), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [sym_self] = ACTIONS(5450), + [sym_underscore_type] = ACTIONS(5450), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_RBRACK_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(173), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5452), + [sym__start_of_named_tuple_type] = ACTIONS(5454), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2233] = { - [sym_heredoc_body] = STATE(2233), - [sym_typeof] = STATE(4895), - [sym_constant] = STATE(4679), - [sym__type] = STATE(4690), - [sym_class_type] = STATE(4895), - [sym_union_type] = STATE(4895), - [sym__parenthesized_type] = STATE(4895), - [sym_no_args_proc_type] = STATE(4895), - [sym_parenthesized_proc_type] = STATE(4895), - [sym_tuple_type] = STATE(4895), - [sym_named_tuple_type] = STATE(4895), - [sym_generic_instance_type] = STATE(4895), - [sym_nilable_type] = STATE(4895), - [sym_pointer_type] = STATE(4895), - [sym_static_array_type] = STATE(4895), - [anon_sym_SEMI] = ACTIONS(4628), - [anon_sym_LPAREN] = ACTIONS(5480), + [2242] = { + [sym_heredoc_body] = STATE(2242), + [sym_typeof] = STATE(4940), + [sym_constant] = STATE(4776), + [sym__type] = STATE(4620), + [sym_class_type] = STATE(4940), + [sym_union_type] = STATE(4940), + [sym__parenthesized_type] = STATE(4940), + [sym_no_args_proc_type] = STATE(4940), + [sym_parenthesized_proc_type] = STATE(4940), + [sym_tuple_type] = STATE(4940), + [sym_named_tuple_type] = STATE(4940), + [sym_generic_instance_type] = STATE(4940), + [sym_nilable_type] = STATE(4940), + [sym_pointer_type] = STATE(4940), + [sym_static_array_type] = STATE(4940), + [anon_sym_LPAREN] = ACTIONS(5466), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5468), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5471), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [sym_self] = ACTIONS(5475), + [sym_underscore_type] = ACTIONS(5475), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5477), + [sym__start_of_named_tuple_type] = ACTIONS(5479), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym__end_of_with_expression] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2243] = { + [sym_heredoc_body] = STATE(2243), + [sym_typeof] = STATE(4940), + [sym_constant] = STATE(4776), + [sym__type] = STATE(4977), + [sym_class_type] = STATE(4940), + [sym_union_type] = STATE(4940), + [sym__parenthesized_type] = STATE(4940), + [sym_no_args_proc_type] = STATE(4940), + [sym_parenthesized_proc_type] = STATE(4940), + [sym_tuple_type] = STATE(4940), + [sym_named_tuple_type] = STATE(4940), + [sym_generic_instance_type] = STATE(4940), + [sym_nilable_type] = STATE(4940), + [sym_pointer_type] = STATE(4940), + [sym_static_array_type] = STATE(4940), + [anon_sym_LPAREN] = ACTIONS(5481), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5516), + [anon_sym_DASH_GT] = ACTIONS(5483), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_LT] = ACTIONS(4626), [anon_sym_EQ] = ACTIONS(4626), @@ -353049,20 +355398,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5470), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(5472), - [sym_self] = ACTIONS(5474), - [sym_underscore_type] = ACTIONS(5474), + [anon_sym_typeof] = ACTIONS(5471), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [sym_self] = ACTIONS(5475), + [sym_underscore_type] = ACTIONS(5475), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_then] = ACTIONS(4628), - [sym__line_break] = ACTIONS(4628), + [anon_sym_do] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5476), - [sym__start_of_named_tuple_type] = ACTIONS(5478), + [sym__start_of_brace_block] = ACTIONS(4628), + [sym__start_of_tuple_type] = ACTIONS(5477), + [sym__start_of_named_tuple_type] = ACTIONS(5479), [sym__start_of_index_operator] = ACTIONS(4628), + [sym__end_of_with_expression] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), [sym_binary_wrapping_plus] = ACTIONS(4628), @@ -353075,98 +355425,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2234] = { - [sym_heredoc_body] = STATE(2234), - [anon_sym_RPAREN] = ACTIONS(5391), + [2244] = { + [sym_heredoc_body] = STATE(2244), + [sym_typeof] = STATE(4940), + [sym_constant] = STATE(4776), + [sym__type] = STATE(4645), + [sym_class_type] = STATE(4940), + [sym_union_type] = STATE(4940), + [sym__parenthesized_type] = STATE(4940), + [sym_no_args_proc_type] = STATE(4940), + [sym_parenthesized_proc_type] = STATE(4940), + [sym_tuple_type] = STATE(4940), + [sym_named_tuple_type] = STATE(4940), + [sym_generic_instance_type] = STATE(4940), + [sym_nilable_type] = STATE(4940), + [sym_pointer_type] = STATE(4940), + [sym_static_array_type] = STATE(4940), + [anon_sym_LPAREN] = ACTIONS(5466), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_COMMA] = ACTIONS(5391), - [anon_sym_RBRACK] = ACTIONS(5391), - [anon_sym_EQ_GT] = ACTIONS(5391), - [anon_sym_DOT_DOT] = ACTIONS(5393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5391), - [anon_sym_DOT] = ACTIONS(5393), - [anon_sym_end] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_PIPE] = ACTIONS(5393), - [anon_sym_CARET] = ACTIONS(5393), - [anon_sym_GT_GT] = ACTIONS(5393), - [anon_sym_LT_LT] = ACTIONS(5393), - [anon_sym_EQ_EQ] = ACTIONS(5393), - [anon_sym_BANG_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ] = ACTIONS(5393), - [anon_sym_GT] = ACTIONS(5393), - [anon_sym_GT_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ_GT] = ACTIONS(5391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5391), - [anon_sym_BANG_TILDE] = ACTIONS(5391), - [anon_sym_EQ_TILDE] = ACTIONS(5391), - [anon_sym_AMP_STAR] = ACTIONS(5393), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5391), - [anon_sym_QMARK] = ACTIONS(5391), - [anon_sym_AMP_AMP] = ACTIONS(5393), - [anon_sym_PIPE_PIPE] = ACTIONS(5393), - [anon_sym_PLUS_EQ] = ACTIONS(5391), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5391), - [anon_sym_DASH_EQ] = ACTIONS(5391), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5391), - [anon_sym_STAR_EQ] = ACTIONS(5391), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5391), - [anon_sym_SLASH_EQ] = ACTIONS(5391), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5391), - [anon_sym_PERCENT_EQ] = ACTIONS(5391), - [anon_sym_PIPE_EQ] = ACTIONS(5391), - [anon_sym_AMP_EQ] = ACTIONS(5391), - [anon_sym_CARET_EQ] = ACTIONS(5391), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5391), - [anon_sym_LT_LT_EQ] = ACTIONS(5391), - [anon_sym_GT_GT_EQ] = ACTIONS(5391), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), - [anon_sym_COLON2] = ACTIONS(5391), - [anon_sym_do] = ACTIONS(5391), - [anon_sym_else] = ACTIONS(5391), - [anon_sym_when] = ACTIONS(5391), - [anon_sym_in] = ACTIONS(5391), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5485), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5471), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [sym_self] = ACTIONS(5475), + [sym_underscore_type] = ACTIONS(5475), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_do] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4678), + [sym__start_of_tuple_type] = ACTIONS(5477), + [sym__start_of_named_tuple_type] = ACTIONS(5479), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym__end_of_with_expression] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2245] = { + [sym_heredoc_body] = STATE(2245), + [anon_sym_SEMI] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(307), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_AMP_DASH_EQ] = ACTIONS(451), + [anon_sym_STAR_EQ] = ACTIONS(451), + [anon_sym_AMP_STAR_EQ] = ACTIONS(451), + [anon_sym_SLASH_EQ] = ACTIONS(451), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), + [anon_sym_PERCENT_EQ] = ACTIONS(451), + [anon_sym_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_EQ] = ACTIONS(451), + [anon_sym_CARET_EQ] = ACTIONS(451), + [anon_sym_STAR_STAR_EQ] = ACTIONS(451), + [anon_sym_LT_LT_EQ] = ACTIONS(451), + [anon_sym_GT_GT_EQ] = ACTIONS(451), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_AMP_EQ] = ACTIONS(451), + [anon_sym_COLON2] = ACTIONS(5488), + [anon_sym_else] = ACTIONS(173), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__regular_rescue_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2246] = { + [sym_heredoc_body] = STATE(2246), + [anon_sym_RPAREN] = ACTIONS(5403), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5403), + [anon_sym_COMMA] = ACTIONS(5403), + [anon_sym_RBRACK] = ACTIONS(5403), + [anon_sym_EQ_GT] = ACTIONS(5403), + [anon_sym_DOT_DOT] = ACTIONS(5405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5403), + [anon_sym_DOT] = ACTIONS(5405), + [anon_sym_end] = ACTIONS(5403), + [anon_sym_LT] = ACTIONS(5405), + [anon_sym_EQ] = ACTIONS(5405), + [anon_sym_PIPE] = ACTIONS(5405), + [anon_sym_CARET] = ACTIONS(5405), + [anon_sym_GT_GT] = ACTIONS(5405), + [anon_sym_LT_LT] = ACTIONS(5405), + [anon_sym_EQ_EQ] = ACTIONS(5405), + [anon_sym_BANG_EQ] = ACTIONS(5403), + [anon_sym_LT_EQ] = ACTIONS(5405), + [anon_sym_GT] = ACTIONS(5405), + [anon_sym_GT_EQ] = ACTIONS(5403), + [anon_sym_LT_EQ_GT] = ACTIONS(5403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5403), + [anon_sym_BANG_TILDE] = ACTIONS(5403), + [anon_sym_EQ_TILDE] = ACTIONS(5403), + [anon_sym_AMP_STAR] = ACTIONS(5405), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5403), + [anon_sym_QMARK] = ACTIONS(5403), + [anon_sym_AMP_AMP] = ACTIONS(5405), + [anon_sym_PIPE_PIPE] = ACTIONS(5405), + [anon_sym_PLUS_EQ] = ACTIONS(5403), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5403), + [anon_sym_DASH_EQ] = ACTIONS(5403), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5403), + [anon_sym_STAR_EQ] = ACTIONS(5403), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5403), + [anon_sym_SLASH_EQ] = ACTIONS(5403), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5403), + [anon_sym_PERCENT_EQ] = ACTIONS(5403), + [anon_sym_PIPE_EQ] = ACTIONS(5403), + [anon_sym_AMP_EQ] = ACTIONS(5403), + [anon_sym_CARET_EQ] = ACTIONS(5403), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5403), + [anon_sym_LT_LT_EQ] = ACTIONS(5403), + [anon_sym_GT_GT_EQ] = ACTIONS(5403), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5403), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5403), + [anon_sym_COLON2] = ACTIONS(5403), + [anon_sym_do] = ACTIONS(5403), + [anon_sym_else] = ACTIONS(5403), + [anon_sym_when] = ACTIONS(5403), + [anon_sym_in] = ACTIONS(5403), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5391), - [sym__start_of_index_operator] = ACTIONS(5391), - [sym_binary_plus] = ACTIONS(5391), - [sym_binary_minus] = ACTIONS(5391), - [sym_binary_wrapping_plus] = ACTIONS(5391), - [sym_binary_wrapping_minus] = ACTIONS(5391), - [sym__binary_star] = ACTIONS(5391), - [sym__binary_double_star] = ACTIONS(5391), - [sym_binary_ampersand] = ACTIONS(5391), - [sym__binary_slash] = ACTIONS(5391), - [sym__binary_double_slash] = ACTIONS(5391), - [sym__modulo_operator] = ACTIONS(5391), + [sym__start_of_brace_block] = ACTIONS(5403), + [sym__start_of_index_operator] = ACTIONS(5403), + [sym_binary_plus] = ACTIONS(5403), + [sym_binary_minus] = ACTIONS(5403), + [sym_binary_wrapping_plus] = ACTIONS(5403), + [sym_binary_wrapping_minus] = ACTIONS(5403), + [sym__binary_star] = ACTIONS(5403), + [sym__binary_double_star] = ACTIONS(5403), + [sym_binary_ampersand] = ACTIONS(5403), + [sym__binary_slash] = ACTIONS(5403), + [sym__binary_double_slash] = ACTIONS(5403), + [sym__modulo_operator] = ACTIONS(5403), [sym__heredoc_body_start] = ACTIONS(7), }, - [2235] = { - [sym_heredoc_body] = STATE(2235), - [sym_typeof] = STATE(4988), - [sym_constant] = STATE(4549), - [sym__type] = STATE(4989), - [sym_class_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym__parenthesized_type] = STATE(4988), - [sym_no_args_proc_type] = STATE(4988), - [sym_parenthesized_proc_type] = STATE(4988), - [sym_tuple_type] = STATE(4988), - [sym_named_tuple_type] = STATE(4988), - [sym_generic_instance_type] = STATE(4988), - [sym_nilable_type] = STATE(4988), - [sym_pointer_type] = STATE(4988), - [sym_static_array_type] = STATE(4988), - [anon_sym_LPAREN] = ACTIONS(5500), + [2247] = { + [sym_heredoc_body] = STATE(2247), + [sym_typeof] = STATE(4940), + [sym_constant] = STATE(4776), + [sym__type] = STATE(4648), + [sym_class_type] = STATE(4940), + [sym_union_type] = STATE(4940), + [sym__parenthesized_type] = STATE(4940), + [sym_no_args_proc_type] = STATE(4940), + [sym_parenthesized_proc_type] = STATE(4940), + [sym_tuple_type] = STATE(4940), + [sym_named_tuple_type] = STATE(4940), + [sym_generic_instance_type] = STATE(4940), + [sym_nilable_type] = STATE(4940), + [sym_pointer_type] = STATE(4940), + [sym_static_array_type] = STATE(4940), + [anon_sym_LPAREN] = ACTIONS(5466), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5502), + [anon_sym_DASH_GT] = ACTIONS(5490), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_LT] = ACTIONS(4626), [anon_sym_EQ] = ACTIONS(4626), @@ -353186,19 +355674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5490), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(5492), - [sym_self] = ACTIONS(5494), - [sym_underscore_type] = ACTIONS(5494), + [anon_sym_typeof] = ACTIONS(5471), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [sym_self] = ACTIONS(5475), + [sym_underscore_type] = ACTIONS(5475), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), [anon_sym_do] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4628), - [sym__start_of_tuple_type] = ACTIONS(5496), - [sym__start_of_named_tuple_type] = ACTIONS(5498), + [sym__start_of_tuple_type] = ACTIONS(5477), + [sym__start_of_named_tuple_type] = ACTIONS(5479), [sym__start_of_index_operator] = ACTIONS(4628), [sym__end_of_with_expression] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), @@ -353213,30 +355701,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2236] = { - [sym_heredoc_body] = STATE(2236), - [sym_typeof] = STATE(4895), - [sym_constant] = STATE(4679), - [sym__type] = STATE(4661), - [sym_class_type] = STATE(4895), - [sym_union_type] = STATE(4895), - [sym__parenthesized_type] = STATE(4895), - [sym_no_args_proc_type] = STATE(4895), - [sym_parenthesized_proc_type] = STATE(4895), - [sym_tuple_type] = STATE(4895), - [sym_named_tuple_type] = STATE(4895), - [sym_generic_instance_type] = STATE(4895), - [sym_nilable_type] = STATE(4895), - [sym_pointer_type] = STATE(4895), - [sym_static_array_type] = STATE(4895), - [anon_sym_SEMI] = ACTIONS(4656), - [anon_sym_LPAREN] = ACTIONS(5480), + [2248] = { + [sym_heredoc_body] = STATE(2248), + [sym_typeof] = STATE(4940), + [sym_constant] = STATE(4776), + [sym__type] = STATE(4983), + [sym_class_type] = STATE(4940), + [sym_union_type] = STATE(4940), + [sym__parenthesized_type] = STATE(4940), + [sym_no_args_proc_type] = STATE(4940), + [sym_parenthesized_proc_type] = STATE(4940), + [sym_tuple_type] = STATE(4940), + [sym_named_tuple_type] = STATE(4940), + [sym_generic_instance_type] = STATE(4940), + [sym_nilable_type] = STATE(4940), + [sym_pointer_type] = STATE(4940), + [sym_static_array_type] = STATE(4940), + [anon_sym_LPAREN] = ACTIONS(5481), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5519), + [anon_sym_DASH_GT] = ACTIONS(5483), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_LT] = ACTIONS(4654), [anon_sym_EQ] = ACTIONS(4654), @@ -353256,20 +355743,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5470), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(5472), - [sym_self] = ACTIONS(5474), - [sym_underscore_type] = ACTIONS(5474), + [anon_sym_typeof] = ACTIONS(5471), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [sym_self] = ACTIONS(5475), + [sym_underscore_type] = ACTIONS(5475), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_then] = ACTIONS(4656), - [sym__line_break] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5476), - [sym__start_of_named_tuple_type] = ACTIONS(5478), + [sym__start_of_brace_block] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5477), + [sym__start_of_named_tuple_type] = ACTIONS(5479), [sym__start_of_index_operator] = ACTIONS(4656), + [sym__end_of_with_expression] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), [sym_binary_wrapping_plus] = ACTIONS(4656), @@ -353282,29 +355770,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2237] = { - [sym_heredoc_body] = STATE(2237), - [sym_typeof] = STATE(4988), - [sym_constant] = STATE(4549), - [sym__type] = STATE(4855), - [sym_class_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym__parenthesized_type] = STATE(4988), - [sym_no_args_proc_type] = STATE(4988), - [sym_parenthesized_proc_type] = STATE(4988), - [sym_tuple_type] = STATE(4988), - [sym_named_tuple_type] = STATE(4988), - [sym_generic_instance_type] = STATE(4988), - [sym_nilable_type] = STATE(4988), - [sym_pointer_type] = STATE(4988), - [sym_static_array_type] = STATE(4988), - [anon_sym_LPAREN] = ACTIONS(5500), + [2249] = { + [sym_heredoc_body] = STATE(2249), + [sym_typeof] = STATE(5025), + [sym_constant] = STATE(4768), + [sym__type] = STATE(4980), + [sym_class_type] = STATE(5025), + [sym_union_type] = STATE(5025), + [sym__parenthesized_type] = STATE(5025), + [sym_no_args_proc_type] = STATE(5025), + [sym_parenthesized_proc_type] = STATE(5025), + [sym_tuple_type] = STATE(5025), + [sym_named_tuple_type] = STATE(5025), + [sym_generic_instance_type] = STATE(5025), + [sym_nilable_type] = STATE(5025), + [sym_pointer_type] = STATE(5025), + [sym_static_array_type] = STATE(5025), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(5493), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5502), + [anon_sym_DASH_GT] = ACTIONS(5495), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_LT] = ACTIONS(4654), [anon_sym_EQ] = ACTIONS(4654), @@ -353324,21 +355813,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5490), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(5492), - [sym_self] = ACTIONS(5494), - [sym_underscore_type] = ACTIONS(5494), + [anon_sym_typeof] = ACTIONS(5497), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(5499), + [sym_self] = ACTIONS(5501), + [sym_underscore_type] = ACTIONS(5501), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), - [anon_sym_do] = ACTIONS(4656), + [anon_sym_then] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4656), - [sym__start_of_tuple_type] = ACTIONS(5496), - [sym__start_of_named_tuple_type] = ACTIONS(5498), + [sym__start_of_tuple_type] = ACTIONS(5503), + [sym__start_of_named_tuple_type] = ACTIONS(5505), [sym__start_of_index_operator] = ACTIONS(4656), - [sym__end_of_with_expression] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), [sym_binary_wrapping_plus] = ACTIONS(4656), @@ -353351,17 +355839,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2238] = { - [sym_heredoc_body] = STATE(2238), + [2250] = { + [sym_heredoc_body] = STATE(2250), [anon_sym_SEMI] = ACTIONS(173), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(173), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(703), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -353380,27 +355868,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(173), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_AMP_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_AMP_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_STAR_STAR_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP_EQ] = ACTIONS(451), - [anon_sym_COLON2] = ACTIONS(5522), - [anon_sym_else] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(709), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(709), + [anon_sym_DASH_EQ] = ACTIONS(709), + [anon_sym_AMP_DASH_EQ] = ACTIONS(709), + [anon_sym_STAR_EQ] = ACTIONS(709), + [anon_sym_AMP_STAR_EQ] = ACTIONS(709), + [anon_sym_SLASH_EQ] = ACTIONS(709), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(709), + [anon_sym_PERCENT_EQ] = ACTIONS(709), + [anon_sym_PIPE_EQ] = ACTIONS(709), + [anon_sym_AMP_EQ] = ACTIONS(709), + [anon_sym_CARET_EQ] = ACTIONS(709), + [anon_sym_STAR_STAR_EQ] = ACTIONS(709), + [anon_sym_LT_LT_EQ] = ACTIONS(709), + [anon_sym_GT_GT_EQ] = ACTIONS(709), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(709), + [anon_sym_AMP_AMP_EQ] = ACTIONS(709), + [anon_sym_COLON2] = ACTIONS(5507), + [anon_sym_do] = ACTIONS(173), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(173), [sym__start_of_index_operator] = ACTIONS(173), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), @@ -353413,23 +355902,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(173), [sym__modifier_if_keyword] = ACTIONS(173), [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__regular_rescue_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2239] = { - [sym_heredoc_body] = STATE(2239), + [2251] = { + [sym_heredoc_body] = STATE(2251), + [anon_sym_RPAREN] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(173), + [anon_sym_EQ_GT] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [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(5509), + [anon_sym_do] = ACTIONS(173), + [anon_sym_else] = ACTIONS(173), + [anon_sym_when] = ACTIONS(173), + [anon_sym_in] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(173), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2252] = { + [sym_heredoc_body] = STATE(2252), + [sym_typeof] = STATE(5025), + [sym_constant] = STATE(4768), + [sym__type] = STATE(4971), + [sym_class_type] = STATE(5025), + [sym_union_type] = STATE(5025), + [sym__parenthesized_type] = STATE(5025), + [sym_no_args_proc_type] = STATE(5025), + [sym_parenthesized_proc_type] = STATE(5025), + [sym_tuple_type] = STATE(5025), + [sym_named_tuple_type] = STATE(5025), + [sym_generic_instance_type] = STATE(5025), + [sym_nilable_type] = STATE(5025), + [sym_pointer_type] = STATE(5025), + [sym_static_array_type] = STATE(5025), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5493), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5495), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5497), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(5499), + [sym_self] = ACTIONS(5501), + [sym_underscore_type] = ACTIONS(5501), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_then] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5503), + [sym__start_of_named_tuple_type] = ACTIONS(5505), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2253] = { + [sym_heredoc_body] = STATE(2253), + [sym_typeof] = STATE(5025), + [sym_constant] = STATE(4768), + [sym__type] = STATE(4972), + [sym_class_type] = STATE(5025), + [sym_union_type] = STATE(5025), + [sym__parenthesized_type] = STATE(5025), + [sym_no_args_proc_type] = STATE(5025), + [sym_parenthesized_proc_type] = STATE(5025), + [sym_tuple_type] = STATE(5025), + [sym_named_tuple_type] = STATE(5025), + [sym_generic_instance_type] = STATE(5025), + [sym_nilable_type] = STATE(5025), + [sym_pointer_type] = STATE(5025), + [sym_static_array_type] = STATE(5025), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5493), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5495), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5497), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(5499), + [sym_self] = ACTIONS(5501), + [sym_underscore_type] = ACTIONS(5501), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_then] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5503), + [sym__start_of_named_tuple_type] = ACTIONS(5505), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2254] = { + [sym_heredoc_body] = STATE(2254), [anon_sym_SEMI] = ACTIONS(173), [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(173), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(431), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -353448,24 +356144,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(173), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_AMP_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_AMP_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_STAR_STAR_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP_EQ] = ACTIONS(451), - [anon_sym_COLON2] = ACTIONS(5522), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(437), + [anon_sym_DASH_EQ] = ACTIONS(437), + [anon_sym_AMP_DASH_EQ] = ACTIONS(437), + [anon_sym_STAR_EQ] = ACTIONS(437), + [anon_sym_AMP_STAR_EQ] = ACTIONS(437), + [anon_sym_SLASH_EQ] = ACTIONS(437), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(437), + [anon_sym_PERCENT_EQ] = ACTIONS(437), + [anon_sym_PIPE_EQ] = ACTIONS(437), + [anon_sym_AMP_EQ] = ACTIONS(437), + [anon_sym_CARET_EQ] = ACTIONS(437), + [anon_sym_STAR_STAR_EQ] = ACTIONS(437), + [anon_sym_LT_LT_EQ] = ACTIONS(437), + [anon_sym_GT_GT_EQ] = ACTIONS(437), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(437), + [anon_sym_AMP_AMP_EQ] = ACTIONS(437), + [anon_sym_COLON2] = ACTIONS(5511), [anon_sym_else] = ACTIONS(173), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), @@ -353488,30 +356184,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2240] = { - [sym_heredoc_body] = STATE(2240), - [sym_typeof] = STATE(5124), - [sym_constant] = STATE(4891), - [sym__type] = STATE(4919), - [sym_class_type] = STATE(5124), - [sym_union_type] = STATE(5124), - [sym__parenthesized_type] = STATE(5124), - [sym_no_args_proc_type] = STATE(5124), - [sym_parenthesized_proc_type] = STATE(5124), - [sym_tuple_type] = STATE(5124), - [sym_named_tuple_type] = STATE(5124), - [sym_generic_instance_type] = STATE(5124), - [sym_nilable_type] = STATE(5124), - [sym_pointer_type] = STATE(5124), - [sym_static_array_type] = STATE(5124), - [anon_sym_LPAREN] = ACTIONS(5524), + [2255] = { + [sym_heredoc_body] = STATE(2255), + [sym_typeof] = STATE(4569), + [sym_constant] = STATE(4129), + [sym__type] = STATE(4332), + [sym_class_type] = STATE(4569), + [sym_union_type] = STATE(4569), + [sym__parenthesized_type] = STATE(4569), + [sym_no_args_proc_type] = STATE(4569), + [sym_parenthesized_proc_type] = STATE(4569), + [sym_tuple_type] = STATE(4569), + [sym_named_tuple_type] = STATE(4569), + [sym_generic_instance_type] = STATE(4569), + [sym_nilable_type] = STATE(4569), + [sym_pointer_type] = STATE(4569), + [sym_static_array_type] = STATE(4569), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_LPAREN] = ACTIONS(5414), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_DASH_GT] = ACTIONS(5416), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_GT_GT] = ACTIONS(4700), + [anon_sym_LT_LT] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ_GT] = ACTIONS(4700), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_TILDE] = ACTIONS(4700), + [anon_sym_EQ_TILDE] = ACTIONS(4700), + [anon_sym_AMP_STAR] = ACTIONS(4698), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), + [anon_sym_typeof] = ACTIONS(5418), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(5420), + [sym_self] = ACTIONS(5422), + [sym_underscore_type] = ACTIONS(5422), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_do] = ACTIONS(4700), + [anon_sym_then] = ACTIONS(4700), + [sym__line_break] = ACTIONS(4700), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4700), + [sym__start_of_tuple_type] = ACTIONS(5424), + [sym__start_of_named_tuple_type] = ACTIONS(5426), + [sym__start_of_index_operator] = ACTIONS(4700), + [sym_binary_plus] = ACTIONS(4700), + [sym_binary_minus] = ACTIONS(4700), + [sym_binary_wrapping_plus] = ACTIONS(4700), + [sym_binary_wrapping_minus] = ACTIONS(4700), + [sym__binary_star] = ACTIONS(4700), + [sym__binary_double_star] = ACTIONS(4700), + [sym_binary_ampersand] = ACTIONS(4700), + [sym__binary_slash] = ACTIONS(4700), + [sym__binary_double_slash] = ACTIONS(4700), + [sym__modulo_operator] = ACTIONS(4700), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2256] = { + [sym_heredoc_body] = STATE(2256), + [sym_typeof] = STATE(4569), + [sym_constant] = STATE(4129), + [sym__type] = STATE(4338), + [sym_class_type] = STATE(4569), + [sym_union_type] = STATE(4569), + [sym__parenthesized_type] = STATE(4569), + [sym_no_args_proc_type] = STATE(4569), + [sym_parenthesized_proc_type] = STATE(4569), + [sym_tuple_type] = STATE(4569), + [sym_named_tuple_type] = STATE(4569), + [sym_generic_instance_type] = STATE(4569), + [sym_nilable_type] = STATE(4569), + [sym_pointer_type] = STATE(4569), + [sym_static_array_type] = STATE(4569), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5414), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(5416), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ_GT] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_BANG_TILDE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_AMP_STAR] = ACTIONS(4720), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_typeof] = ACTIONS(5418), + [sym__constant_segment] = ACTIONS(3251), + [anon_sym_COLON_COLON] = ACTIONS(5420), + [sym_self] = ACTIONS(5422), + [sym_underscore_type] = ACTIONS(5422), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_do] = ACTIONS(4722), + [anon_sym_then] = ACTIONS(4722), + [sym__line_break] = ACTIONS(4722), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4722), + [sym__start_of_tuple_type] = ACTIONS(5424), + [sym__start_of_named_tuple_type] = ACTIONS(5426), + [sym__start_of_index_operator] = ACTIONS(4722), + [sym_binary_plus] = ACTIONS(4722), + [sym_binary_minus] = ACTIONS(4722), + [sym_binary_wrapping_plus] = ACTIONS(4722), + [sym_binary_wrapping_minus] = ACTIONS(4722), + [sym__binary_star] = ACTIONS(4722), + [sym__binary_double_star] = ACTIONS(4722), + [sym_binary_ampersand] = ACTIONS(4722), + [sym__binary_slash] = ACTIONS(4722), + [sym__binary_double_slash] = ACTIONS(4722), + [sym__modulo_operator] = ACTIONS(4722), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2257] = { + [sym_heredoc_body] = STATE(2257), + [sym_typeof] = STATE(4940), + [sym_constant] = STATE(4776), + [sym__type] = STATE(4976), + [sym_class_type] = STATE(4940), + [sym_union_type] = STATE(4940), + [sym__parenthesized_type] = STATE(4940), + [sym_no_args_proc_type] = STATE(4940), + [sym_parenthesized_proc_type] = STATE(4940), + [sym_tuple_type] = STATE(4940), + [sym_named_tuple_type] = STATE(4940), + [sym_generic_instance_type] = STATE(4940), + [sym_nilable_type] = STATE(4940), + [sym_pointer_type] = STATE(4940), + [sym_static_array_type] = STATE(4940), + [anon_sym_LPAREN] = ACTIONS(5481), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5483), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5471), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [sym_self] = ACTIONS(5475), + [sym_underscore_type] = ACTIONS(5475), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_do] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4678), + [sym__start_of_tuple_type] = ACTIONS(5477), + [sym__start_of_named_tuple_type] = ACTIONS(5479), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym__end_of_with_expression] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2258] = { + [sym_heredoc_body] = STATE(2258), + [sym_typeof] = STATE(5025), + [sym_constant] = STATE(4768), + [sym__type] = STATE(4753), + [sym_class_type] = STATE(5025), + [sym_union_type] = STATE(5025), + [sym__parenthesized_type] = STATE(5025), + [sym_no_args_proc_type] = STATE(5025), + [sym_parenthesized_proc_type] = STATE(5025), + [sym_tuple_type] = STATE(5025), + [sym_named_tuple_type] = STATE(5025), + [sym_generic_instance_type] = STATE(5025), + [sym_nilable_type] = STATE(5025), + [sym_pointer_type] = STATE(5025), + [sym_static_array_type] = STATE(5025), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5513), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5515), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5497), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(5499), + [sym_self] = ACTIONS(5501), + [sym_underscore_type] = ACTIONS(5501), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_then] = ACTIONS(4678), + [sym__line_break] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5503), + [sym__start_of_named_tuple_type] = ACTIONS(5505), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2259] = { + [sym_heredoc_body] = STATE(2259), + [sym_typeof] = STATE(5025), + [sym_constant] = STATE(4768), + [sym__type] = STATE(4761), + [sym_class_type] = STATE(5025), + [sym_union_type] = STATE(5025), + [sym__parenthesized_type] = STATE(5025), + [sym_no_args_proc_type] = STATE(5025), + [sym_parenthesized_proc_type] = STATE(5025), + [sym_tuple_type] = STATE(5025), + [sym_named_tuple_type] = STATE(5025), + [sym_generic_instance_type] = STATE(5025), + [sym_nilable_type] = STATE(5025), + [sym_pointer_type] = STATE(5025), + [sym_static_array_type] = STATE(5025), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(5513), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_RBRACK] = ACTIONS(4626), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5526), + [anon_sym_DASH_GT] = ACTIONS(5518), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_LT] = ACTIONS(4626), [anon_sym_EQ] = ACTIONS(4626), @@ -353531,18 +356503,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5529), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(5531), - [sym_self] = ACTIONS(5533), - [sym_underscore_type] = ACTIONS(5533), + [anon_sym_typeof] = ACTIONS(5497), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(5499), + [sym_self] = ACTIONS(5501), + [sym_underscore_type] = ACTIONS(5501), [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_RBRACK_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_then] = ACTIONS(4628), + [sym__line_break] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5535), - [sym__start_of_named_tuple_type] = ACTIONS(5537), + [sym__start_of_tuple_type] = ACTIONS(5503), + [sym__start_of_named_tuple_type] = ACTIONS(5505), [sym__start_of_index_operator] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), [sym_binary_minus] = ACTIONS(4628), @@ -353556,8 +356529,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2241] = { - [sym_heredoc_body] = STATE(2241), + [2260] = { + [sym_heredoc_body] = STATE(2260), + [sym_typeof] = STATE(5025), + [sym_constant] = STATE(4768), + [sym__type] = STATE(4818), + [sym_class_type] = STATE(5025), + [sym_union_type] = STATE(5025), + [sym__parenthesized_type] = STATE(5025), + [sym_no_args_proc_type] = STATE(5025), + [sym_parenthesized_proc_type] = STATE(5025), + [sym_tuple_type] = STATE(5025), + [sym_named_tuple_type] = STATE(5025), + [sym_generic_instance_type] = STATE(5025), + [sym_nilable_type] = STATE(5025), + [sym_pointer_type] = STATE(5025), + [sym_static_array_type] = STATE(5025), + [anon_sym_SEMI] = ACTIONS(4656), + [anon_sym_LPAREN] = ACTIONS(5513), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5521), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5497), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(5499), + [sym_self] = ACTIONS(5501), + [sym_underscore_type] = ACTIONS(5501), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_then] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4656), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5503), + [sym__start_of_named_tuple_type] = ACTIONS(5505), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2261] = { + [sym_heredoc_body] = STATE(2261), + [anon_sym_RPAREN] = ACTIONS(5391), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_COMMA] = ACTIONS(5391), + [anon_sym_RBRACK] = ACTIONS(5391), + [anon_sym_EQ_GT] = ACTIONS(5391), + [anon_sym_DOT_DOT] = ACTIONS(5393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5391), + [anon_sym_DOT] = ACTIONS(5393), + [anon_sym_end] = ACTIONS(5391), + [anon_sym_LT] = ACTIONS(5393), + [anon_sym_EQ] = ACTIONS(5393), + [anon_sym_PIPE] = ACTIONS(5393), + [anon_sym_CARET] = ACTIONS(5393), + [anon_sym_GT_GT] = ACTIONS(5393), + [anon_sym_LT_LT] = ACTIONS(5393), + [anon_sym_EQ_EQ] = ACTIONS(5393), + [anon_sym_BANG_EQ] = ACTIONS(5391), + [anon_sym_LT_EQ] = ACTIONS(5393), + [anon_sym_GT] = ACTIONS(5393), + [anon_sym_GT_EQ] = ACTIONS(5391), + [anon_sym_LT_EQ_GT] = ACTIONS(5391), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5391), + [anon_sym_BANG_TILDE] = ACTIONS(5391), + [anon_sym_EQ_TILDE] = ACTIONS(5391), + [anon_sym_AMP_STAR] = ACTIONS(5393), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5391), + [anon_sym_QMARK] = ACTIONS(5391), + [anon_sym_AMP_AMP] = ACTIONS(5393), + [anon_sym_PIPE_PIPE] = ACTIONS(5393), + [anon_sym_PLUS_EQ] = ACTIONS(5391), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5391), + [anon_sym_DASH_EQ] = ACTIONS(5391), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5391), + [anon_sym_STAR_EQ] = ACTIONS(5391), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5391), + [anon_sym_SLASH_EQ] = ACTIONS(5391), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5391), + [anon_sym_PERCENT_EQ] = ACTIONS(5391), + [anon_sym_PIPE_EQ] = ACTIONS(5391), + [anon_sym_AMP_EQ] = ACTIONS(5391), + [anon_sym_CARET_EQ] = ACTIONS(5391), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5391), + [anon_sym_LT_LT_EQ] = ACTIONS(5391), + [anon_sym_GT_GT_EQ] = ACTIONS(5391), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), + [anon_sym_COLON2] = ACTIONS(5391), + [anon_sym_do] = ACTIONS(5391), + [anon_sym_else] = ACTIONS(5391), + [anon_sym_when] = ACTIONS(5391), + [anon_sym_in] = ACTIONS(5391), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5391), + [sym__start_of_index_operator] = ACTIONS(5391), + [sym_binary_plus] = ACTIONS(5391), + [sym_binary_minus] = ACTIONS(5391), + [sym_binary_wrapping_plus] = ACTIONS(5391), + [sym_binary_wrapping_minus] = ACTIONS(5391), + [sym__binary_star] = ACTIONS(5391), + [sym__binary_double_star] = ACTIONS(5391), + [sym_binary_ampersand] = ACTIONS(5391), + [sym__binary_slash] = ACTIONS(5391), + [sym__binary_double_slash] = ACTIONS(5391), + [sym__modulo_operator] = ACTIONS(5391), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2262] = { + [sym_heredoc_body] = STATE(2262), + [anon_sym_SEMI] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(709), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(709), + [anon_sym_DASH_EQ] = ACTIONS(709), + [anon_sym_AMP_DASH_EQ] = ACTIONS(709), + [anon_sym_STAR_EQ] = ACTIONS(709), + [anon_sym_AMP_STAR_EQ] = ACTIONS(709), + [anon_sym_SLASH_EQ] = ACTIONS(709), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(709), + [anon_sym_PERCENT_EQ] = ACTIONS(709), + [anon_sym_PIPE_EQ] = ACTIONS(709), + [anon_sym_AMP_EQ] = ACTIONS(709), + [anon_sym_CARET_EQ] = ACTIONS(709), + [anon_sym_STAR_STAR_EQ] = ACTIONS(709), + [anon_sym_LT_LT_EQ] = ACTIONS(709), + [anon_sym_GT_GT_EQ] = ACTIONS(709), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(709), + [anon_sym_AMP_AMP_EQ] = ACTIONS(709), + [anon_sym_do] = ACTIONS(173), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(173), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2263] = { + [sym_heredoc_body] = STATE(2263), [anon_sym_SEMI] = ACTIONS(5403), [sym_comment] = ACTIONS(5), [anon_sym_COMMA] = ACTIONS(5403), @@ -353602,9 +356781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5403), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5403), [anon_sym_AMP_AMP_EQ] = ACTIONS(5403), - [anon_sym_else] = ACTIONS(5403), + [anon_sym_do] = ACTIONS(5403), [sym__line_break] = ACTIONS(5403), [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5403), [sym__start_of_index_operator] = ACTIONS(5403), [sym_binary_plus] = ACTIONS(5403), [sym_binary_minus] = ACTIONS(5403), @@ -353617,105 +356797,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(5403), [sym__modifier_if_keyword] = ACTIONS(5403), [sym__modifier_unless_keyword] = ACTIONS(5403), - [sym__regular_rescue_keyword] = ACTIONS(5403), [sym__modifier_rescue_keyword] = ACTIONS(5403), [sym__regular_ensure_keyword] = ACTIONS(5403), [sym__modifier_ensure_keyword] = ACTIONS(5403), [sym__modulo_operator] = ACTIONS(5403), [sym__heredoc_body_start] = ACTIONS(7), }, - [2242] = { - [sym_heredoc_body] = STATE(2242), - [sym_typeof] = STATE(5124), - [sym_constant] = STATE(4891), - [sym__type] = STATE(5136), - [sym_class_type] = STATE(5124), - [sym_union_type] = STATE(5124), - [sym__parenthesized_type] = STATE(5124), - [sym_no_args_proc_type] = STATE(5124), - [sym_parenthesized_proc_type] = STATE(5124), - [sym_tuple_type] = STATE(5124), - [sym_named_tuple_type] = STATE(5124), - [sym_generic_instance_type] = STATE(5124), - [sym_nilable_type] = STATE(5124), - [sym_pointer_type] = STATE(5124), - [sym_static_array_type] = STATE(5124), - [anon_sym_LPAREN] = ACTIONS(5539), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_RBRACK] = ACTIONS(4626), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5541), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5529), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(5531), - [sym_self] = ACTIONS(5533), - [sym_underscore_type] = ACTIONS(5533), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_RBRACK_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5535), - [sym__start_of_named_tuple_type] = ACTIONS(5537), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2243] = { - [sym_heredoc_body] = STATE(2243), - [sym_typeof] = STATE(5124), - [sym_constant] = STATE(4891), - [sym__type] = STATE(5074), - [sym_class_type] = STATE(5124), - [sym_union_type] = STATE(5124), - [sym__parenthesized_type] = STATE(5124), - [sym_no_args_proc_type] = STATE(5124), - [sym_parenthesized_proc_type] = STATE(5124), - [sym_tuple_type] = STATE(5124), - [sym_named_tuple_type] = STATE(5124), - [sym_generic_instance_type] = STATE(5124), - [sym_nilable_type] = STATE(5124), - [sym_pointer_type] = STATE(5124), - [sym_static_array_type] = STATE(5124), - [anon_sym_LPAREN] = ACTIONS(5539), + [2264] = { + [sym_heredoc_body] = STATE(2264), + [sym_typeof] = STATE(5087), + [sym_constant] = STATE(4959), + [sym__type] = STATE(5115), + [sym_class_type] = STATE(5087), + [sym_union_type] = STATE(5087), + [sym__parenthesized_type] = STATE(5087), + [sym_no_args_proc_type] = STATE(5087), + [sym_parenthesized_proc_type] = STATE(5087), + [sym_tuple_type] = STATE(5087), + [sym_named_tuple_type] = STATE(5087), + [sym_generic_instance_type] = STATE(5087), + [sym_nilable_type] = STATE(5087), + [sym_pointer_type] = STATE(5087), + [sym_static_array_type] = STATE(5087), + [anon_sym_LPAREN] = ACTIONS(5524), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), [anon_sym_RBRACK] = ACTIONS(4676), [anon_sym_DOT_DOT] = ACTIONS(4676), [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5541), + [anon_sym_DASH_GT] = ACTIONS(5526), [anon_sym_DOT] = ACTIONS(4676), [anon_sym_LT] = ACTIONS(4676), [anon_sym_EQ] = ACTIONS(4676), @@ -353735,18 +356846,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5529), + [anon_sym_typeof] = ACTIONS(5528), [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(5531), - [sym_self] = ACTIONS(5533), - [sym_underscore_type] = ACTIONS(5533), + [anon_sym_COLON_COLON] = ACTIONS(5530), + [sym_self] = ACTIONS(5532), + [sym_underscore_type] = ACTIONS(5532), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_RBRACK_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5535), - [sym__start_of_named_tuple_type] = ACTIONS(5537), + [sym__start_of_tuple_type] = ACTIONS(5534), + [sym__start_of_named_tuple_type] = ACTIONS(5536), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -353760,91 +356871,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2244] = { - [sym_heredoc_body] = STATE(2244), - [anon_sym_SEMI] = ACTIONS(5391), + [2265] = { + [sym_heredoc_body] = STATE(2265), + [sym_typeof] = STATE(5087), + [sym_constant] = STATE(4959), + [sym__type] = STATE(4961), + [sym_class_type] = STATE(5087), + [sym_union_type] = STATE(5087), + [sym__parenthesized_type] = STATE(5087), + [sym_no_args_proc_type] = STATE(5087), + [sym_parenthesized_proc_type] = STATE(5087), + [sym_tuple_type] = STATE(5087), + [sym_named_tuple_type] = STATE(5087), + [sym_generic_instance_type] = STATE(5087), + [sym_nilable_type] = STATE(5087), + [sym_pointer_type] = STATE(5087), + [sym_static_array_type] = STATE(5087), + [anon_sym_LPAREN] = ACTIONS(5538), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5391), - [anon_sym_DOT_DOT] = ACTIONS(5393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5391), - [anon_sym_DOT] = ACTIONS(5393), - [anon_sym_end] = ACTIONS(5391), - [anon_sym_LT] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(5393), - [anon_sym_PIPE] = ACTIONS(5393), - [anon_sym_CARET] = ACTIONS(5393), - [anon_sym_GT_GT] = ACTIONS(5393), - [anon_sym_LT_LT] = ACTIONS(5393), - [anon_sym_EQ_EQ] = ACTIONS(5393), - [anon_sym_BANG_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ] = ACTIONS(5393), - [anon_sym_GT] = ACTIONS(5393), - [anon_sym_GT_EQ] = ACTIONS(5391), - [anon_sym_LT_EQ_GT] = ACTIONS(5391), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5391), - [anon_sym_BANG_TILDE] = ACTIONS(5391), - [anon_sym_EQ_TILDE] = ACTIONS(5391), - [anon_sym_AMP_STAR] = ACTIONS(5393), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5391), - [anon_sym_QMARK] = ACTIONS(5391), - [anon_sym_AMP_AMP] = ACTIONS(5393), - [anon_sym_PIPE_PIPE] = ACTIONS(5393), - [anon_sym_PLUS_EQ] = ACTIONS(5391), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5391), - [anon_sym_DASH_EQ] = ACTIONS(5391), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5391), - [anon_sym_STAR_EQ] = ACTIONS(5391), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5391), - [anon_sym_SLASH_EQ] = ACTIONS(5391), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5391), - [anon_sym_PERCENT_EQ] = ACTIONS(5391), - [anon_sym_PIPE_EQ] = ACTIONS(5391), - [anon_sym_AMP_EQ] = ACTIONS(5391), - [anon_sym_CARET_EQ] = ACTIONS(5391), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5391), - [anon_sym_LT_LT_EQ] = ACTIONS(5391), - [anon_sym_GT_GT_EQ] = ACTIONS(5391), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), - [anon_sym_else] = ACTIONS(5391), - [sym__line_break] = ACTIONS(5391), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5540), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5528), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(5530), + [sym_self] = ACTIONS(5532), + [sym_underscore_type] = ACTIONS(5532), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_RBRACK_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(5391), - [sym_binary_plus] = ACTIONS(5391), - [sym_binary_minus] = ACTIONS(5391), - [sym_binary_wrapping_plus] = ACTIONS(5391), - [sym_binary_wrapping_minus] = ACTIONS(5391), - [sym__binary_star] = ACTIONS(5391), - [sym__binary_double_star] = ACTIONS(5391), - [sym_binary_ampersand] = ACTIONS(5391), - [sym__binary_slash] = ACTIONS(5391), - [sym__binary_double_slash] = ACTIONS(5391), - [sym__modifier_if_keyword] = ACTIONS(5391), - [sym__modifier_unless_keyword] = ACTIONS(5391), - [sym__regular_rescue_keyword] = ACTIONS(5391), - [sym__modifier_rescue_keyword] = ACTIONS(5391), - [sym__regular_ensure_keyword] = ACTIONS(5391), - [sym__modifier_ensure_keyword] = ACTIONS(5391), - [sym__modulo_operator] = ACTIONS(5391), + [sym__start_of_tuple_type] = ACTIONS(5534), + [sym__start_of_named_tuple_type] = ACTIONS(5536), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2245] = { - [sym_heredoc_body] = STATE(2245), - [sym_typeof] = STATE(5124), - [sym_constant] = STATE(4891), - [sym__type] = STATE(4916), - [sym_class_type] = STATE(5124), - [sym_union_type] = STATE(5124), - [sym__parenthesized_type] = STATE(5124), - [sym_no_args_proc_type] = STATE(5124), - [sym_parenthesized_proc_type] = STATE(5124), - [sym_tuple_type] = STATE(5124), - [sym_named_tuple_type] = STATE(5124), - [sym_generic_instance_type] = STATE(5124), - [sym_nilable_type] = STATE(5124), - [sym_pointer_type] = STATE(5124), - [sym_static_array_type] = STATE(5124), - [anon_sym_LPAREN] = ACTIONS(5524), + [2266] = { + [sym_heredoc_body] = STATE(2266), + [sym_typeof] = STATE(5087), + [sym_constant] = STATE(4959), + [sym__type] = STATE(4967), + [sym_class_type] = STATE(5087), + [sym_union_type] = STATE(5087), + [sym__parenthesized_type] = STATE(5087), + [sym_no_args_proc_type] = STATE(5087), + [sym_parenthesized_proc_type] = STATE(5087), + [sym_tuple_type] = STATE(5087), + [sym_named_tuple_type] = STATE(5087), + [sym_generic_instance_type] = STATE(5087), + [sym_nilable_type] = STATE(5087), + [sym_pointer_type] = STATE(5087), + [sym_static_array_type] = STATE(5087), + [anon_sym_LPAREN] = ACTIONS(5538), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4678), [anon_sym_COMMA] = ACTIONS(4678), @@ -353871,18 +356982,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4678), [anon_sym_AMP_STAR] = ACTIONS(4676), [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5529), + [anon_sym_typeof] = ACTIONS(5528), [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(5531), - [sym_self] = ACTIONS(5533), - [sym_underscore_type] = ACTIONS(5533), + [anon_sym_COLON_COLON] = ACTIONS(5530), + [sym_self] = ACTIONS(5532), + [sym_underscore_type] = ACTIONS(5532), [anon_sym_QMARK] = ACTIONS(4678), [anon_sym_RBRACK_QMARK] = ACTIONS(4678), [anon_sym_AMP_AMP] = ACTIONS(4678), [anon_sym_PIPE_PIPE] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5535), - [sym__start_of_named_tuple_type] = ACTIONS(5537), + [sym__start_of_tuple_type] = ACTIONS(5534), + [sym__start_of_named_tuple_type] = ACTIONS(5536), [sym__start_of_index_operator] = ACTIONS(4678), [sym_binary_plus] = ACTIONS(4678), [sym_binary_minus] = ACTIONS(4678), @@ -353896,85 +357007,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2246] = { - [sym_heredoc_body] = STATE(2246), - [anon_sym_SEMI] = ACTIONS(173), + [2267] = { + [sym_heredoc_body] = STATE(2267), + [sym_typeof] = STATE(5087), + [sym_constant] = STATE(4959), + [sym__type] = STATE(4968), + [sym_class_type] = STATE(5087), + [sym_union_type] = STATE(5087), + [sym__parenthesized_type] = STATE(5087), + [sym_no_args_proc_type] = STATE(5087), + [sym_parenthesized_proc_type] = STATE(5087), + [sym_tuple_type] = STATE(5087), + [sym_named_tuple_type] = STATE(5087), + [sym_generic_instance_type] = STATE(5087), + [sym_nilable_type] = STATE(5087), + [sym_pointer_type] = STATE(5087), + [sym_static_array_type] = STATE(5087), + [anon_sym_LPAREN] = ACTIONS(5538), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(341), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(377), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(377), - [anon_sym_DASH_EQ] = ACTIONS(377), - [anon_sym_AMP_DASH_EQ] = ACTIONS(377), - [anon_sym_STAR_EQ] = ACTIONS(377), - [anon_sym_AMP_STAR_EQ] = ACTIONS(377), - [anon_sym_SLASH_EQ] = ACTIONS(377), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(377), - [anon_sym_PERCENT_EQ] = ACTIONS(377), - [anon_sym_PIPE_EQ] = ACTIONS(377), - [anon_sym_AMP_EQ] = ACTIONS(377), - [anon_sym_CARET_EQ] = ACTIONS(377), - [anon_sym_STAR_STAR_EQ] = ACTIONS(377), - [anon_sym_LT_LT_EQ] = ACTIONS(377), - [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(377), - [anon_sym_AMP_AMP_EQ] = ACTIONS(377), - [anon_sym_else] = ACTIONS(173), - [sym__line_break] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_RBRACK] = ACTIONS(4626), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5546), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5528), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(5530), + [sym_self] = ACTIONS(5532), + [sym_underscore_type] = ACTIONS(5532), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_RBRACK_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__regular_rescue_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), + [sym__start_of_tuple_type] = ACTIONS(5534), + [sym__start_of_named_tuple_type] = ACTIONS(5536), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2268] = { + [sym_heredoc_body] = STATE(2268), + [sym_typeof] = STATE(5087), + [sym_constant] = STATE(4959), + [sym__type] = STATE(5116), + [sym_class_type] = STATE(5087), + [sym_union_type] = STATE(5087), + [sym__parenthesized_type] = STATE(5087), + [sym_no_args_proc_type] = STATE(5087), + [sym_parenthesized_proc_type] = STATE(5087), + [sym_tuple_type] = STATE(5087), + [sym_named_tuple_type] = STATE(5087), + [sym_generic_instance_type] = STATE(5087), + [sym_nilable_type] = STATE(5087), + [sym_pointer_type] = STATE(5087), + [sym_static_array_type] = STATE(5087), + [anon_sym_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_RBRACK] = ACTIONS(4626), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5526), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5528), + [sym__constant_segment] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(5530), + [sym_self] = ACTIONS(5532), + [sym_underscore_type] = ACTIONS(5532), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_RBRACK_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5534), + [sym__start_of_named_tuple_type] = ACTIONS(5536), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2247] = { - [sym_heredoc_body] = STATE(2247), + [2269] = { + [sym_heredoc_body] = STATE(2269), [anon_sym_SEMI] = ACTIONS(173), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(307), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(173), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(703), + [anon_sym_EQ] = ACTIONS(449), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -353993,27 +357172,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(173), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(709), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(709), - [anon_sym_DASH_EQ] = ACTIONS(709), - [anon_sym_AMP_DASH_EQ] = ACTIONS(709), - [anon_sym_STAR_EQ] = ACTIONS(709), - [anon_sym_AMP_STAR_EQ] = ACTIONS(709), - [anon_sym_SLASH_EQ] = ACTIONS(709), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(709), - [anon_sym_PERCENT_EQ] = ACTIONS(709), - [anon_sym_PIPE_EQ] = ACTIONS(709), - [anon_sym_AMP_EQ] = ACTIONS(709), - [anon_sym_CARET_EQ] = ACTIONS(709), - [anon_sym_STAR_STAR_EQ] = ACTIONS(709), - [anon_sym_LT_LT_EQ] = ACTIONS(709), - [anon_sym_GT_GT_EQ] = ACTIONS(709), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(709), - [anon_sym_AMP_AMP_EQ] = ACTIONS(709), - [anon_sym_do] = ACTIONS(173), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_AMP_DASH_EQ] = ACTIONS(451), + [anon_sym_STAR_EQ] = ACTIONS(451), + [anon_sym_AMP_STAR_EQ] = ACTIONS(451), + [anon_sym_SLASH_EQ] = ACTIONS(451), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), + [anon_sym_PERCENT_EQ] = ACTIONS(451), + [anon_sym_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_EQ] = ACTIONS(451), + [anon_sym_CARET_EQ] = ACTIONS(451), + [anon_sym_STAR_STAR_EQ] = ACTIONS(451), + [anon_sym_LT_LT_EQ] = ACTIONS(451), + [anon_sym_GT_GT_EQ] = ACTIONS(451), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_AMP_EQ] = ACTIONS(451), + [anon_sym_else] = ACTIONS(173), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(173), [sym__start_of_index_operator] = ACTIONS(173), [sym_binary_plus] = ACTIONS(173), [sym_binary_minus] = ACTIONS(173), @@ -354026,23 +357204,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(173), [sym__modifier_if_keyword] = ACTIONS(173), [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__regular_rescue_keyword] = ACTIONS(173), [sym__modifier_rescue_keyword] = ACTIONS(173), [sym__regular_ensure_keyword] = ACTIONS(173), [sym__modifier_ensure_keyword] = ACTIONS(173), [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2248] = { - [sym_heredoc_body] = STATE(2248), + [2270] = { + [sym_heredoc_body] = STATE(2270), [anon_sym_SEMI] = ACTIONS(173), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(173), [anon_sym_DOT_DOT] = ACTIONS(195), [anon_sym_DOT_DOT_DOT] = ACTIONS(173), [anon_sym_DOT] = ACTIONS(195), [anon_sym_end] = ACTIONS(173), [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(431), [anon_sym_PIPE] = ACTIONS(195), [anon_sym_CARET] = ACTIONS(195), [anon_sym_GT_GT] = ACTIONS(195), @@ -354061,23 +357240,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(173), [anon_sym_AMP_AMP] = ACTIONS(195), [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_AMP_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_AMP_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_STAR_STAR_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP_EQ] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(437), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(437), + [anon_sym_DASH_EQ] = ACTIONS(437), + [anon_sym_AMP_DASH_EQ] = ACTIONS(437), + [anon_sym_STAR_EQ] = ACTIONS(437), + [anon_sym_AMP_STAR_EQ] = ACTIONS(437), + [anon_sym_SLASH_EQ] = ACTIONS(437), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(437), + [anon_sym_PERCENT_EQ] = ACTIONS(437), + [anon_sym_PIPE_EQ] = ACTIONS(437), + [anon_sym_AMP_EQ] = ACTIONS(437), + [anon_sym_CARET_EQ] = ACTIONS(437), + [anon_sym_STAR_STAR_EQ] = ACTIONS(437), + [anon_sym_LT_LT_EQ] = ACTIONS(437), + [anon_sym_GT_GT_EQ] = ACTIONS(437), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(437), + [anon_sym_AMP_AMP_EQ] = ACTIONS(437), [anon_sym_else] = ACTIONS(173), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), @@ -354100,22 +357279,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2249] = { - [sym_heredoc_body] = STATE(2249), - [sym_typeof] = STATE(5124), - [sym_constant] = STATE(4891), - [sym__type] = STATE(4915), - [sym_class_type] = STATE(5124), - [sym_union_type] = STATE(5124), - [sym__parenthesized_type] = STATE(5124), - [sym_no_args_proc_type] = STATE(5124), - [sym_parenthesized_proc_type] = STATE(5124), - [sym_tuple_type] = STATE(5124), - [sym_named_tuple_type] = STATE(5124), - [sym_generic_instance_type] = STATE(5124), - [sym_nilable_type] = STATE(5124), - [sym_pointer_type] = STATE(5124), - [sym_static_array_type] = STATE(5124), + [2271] = { + [sym_heredoc_body] = STATE(2271), + [sym_typeof] = STATE(5087), + [sym_constant] = STATE(4959), + [sym__type] = STATE(5129), + [sym_class_type] = STATE(5087), + [sym_union_type] = STATE(5087), + [sym__parenthesized_type] = STATE(5087), + [sym_no_args_proc_type] = STATE(5087), + [sym_parenthesized_proc_type] = STATE(5087), + [sym_tuple_type] = STATE(5087), + [sym_named_tuple_type] = STATE(5087), + [sym_generic_instance_type] = STATE(5087), + [sym_nilable_type] = STATE(5087), + [sym_pointer_type] = STATE(5087), + [sym_static_array_type] = STATE(5087), [anon_sym_LPAREN] = ACTIONS(5524), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), @@ -354123,7 +357302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(4654), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5546), + [anon_sym_DASH_GT] = ACTIONS(5526), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_LT] = ACTIONS(4654), [anon_sym_EQ] = ACTIONS(4654), @@ -354143,18 +357322,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5529), + [anon_sym_typeof] = ACTIONS(5528), [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(5531), - [sym_self] = ACTIONS(5533), - [sym_underscore_type] = ACTIONS(5533), + [anon_sym_COLON_COLON] = ACTIONS(5530), + [sym_self] = ACTIONS(5532), + [sym_underscore_type] = ACTIONS(5532), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_RBRACK_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5535), - [sym__start_of_named_tuple_type] = ACTIONS(5537), + [sym__start_of_tuple_type] = ACTIONS(5534), + [sym__start_of_named_tuple_type] = ACTIONS(5536), [sym__start_of_index_operator] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), [sym_binary_minus] = ACTIONS(4656), @@ -354168,8 +357347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2250] = { - [sym_heredoc_body] = STATE(2250), + [2272] = { + [sym_heredoc_body] = STATE(2272), [anon_sym_RPAREN] = ACTIONS(173), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(173), @@ -354236,76 +357415,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2251] = { - [sym_heredoc_body] = STATE(2251), - [sym_typeof] = STATE(4577), - [sym_constant] = STATE(4535), - [sym__type] = STATE(4595), - [sym_class_type] = STATE(4577), - [sym_union_type] = STATE(4577), - [sym__parenthesized_type] = STATE(4577), - [sym_no_args_proc_type] = STATE(4577), - [sym_parenthesized_proc_type] = STATE(4577), - [sym_tuple_type] = STATE(4577), - [sym_named_tuple_type] = STATE(4577), - [sym_generic_instance_type] = STATE(4577), - [sym_nilable_type] = STATE(4577), - [sym_pointer_type] = STATE(4577), - [sym_static_array_type] = STATE(4577), - [anon_sym_LPAREN] = ACTIONS(5441), + [2273] = { + [sym_heredoc_body] = STATE(2273), + [anon_sym_SEMI] = ACTIONS(5391), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_RBRACK] = ACTIONS(4698), - [anon_sym_DOT_DOT] = ACTIONS(4698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5443), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_LT] = ACTIONS(4698), - [anon_sym_EQ] = ACTIONS(4698), - [anon_sym_PIPE] = ACTIONS(4698), - [anon_sym_CARET] = ACTIONS(4700), - [anon_sym_GT_GT] = ACTIONS(4700), - [anon_sym_LT_LT] = ACTIONS(4700), - [anon_sym_EQ_EQ] = ACTIONS(4698), - [anon_sym_BANG_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ] = ACTIONS(4698), - [anon_sym_GT] = ACTIONS(4698), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ_GT] = ACTIONS(4700), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), - [anon_sym_BANG_TILDE] = ACTIONS(4700), - [anon_sym_EQ_TILDE] = ACTIONS(4700), - [anon_sym_AMP_STAR] = ACTIONS(4698), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5445), - [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [sym_self] = ACTIONS(5449), - [sym_underscore_type] = ACTIONS(5449), - [anon_sym_QMARK] = ACTIONS(4700), - [anon_sym_RBRACK_QMARK] = ACTIONS(4700), - [anon_sym_AMP_AMP] = ACTIONS(4700), - [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_do] = ACTIONS(4700), + [anon_sym_COMMA] = ACTIONS(5391), + [anon_sym_DOT_DOT] = ACTIONS(5393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5391), + [anon_sym_DOT] = ACTIONS(5393), + [anon_sym_end] = ACTIONS(5391), + [anon_sym_LT] = ACTIONS(5393), + [anon_sym_EQ] = ACTIONS(5393), + [anon_sym_PIPE] = ACTIONS(5393), + [anon_sym_CARET] = ACTIONS(5393), + [anon_sym_GT_GT] = ACTIONS(5393), + [anon_sym_LT_LT] = ACTIONS(5393), + [anon_sym_EQ_EQ] = ACTIONS(5393), + [anon_sym_BANG_EQ] = ACTIONS(5391), + [anon_sym_LT_EQ] = ACTIONS(5393), + [anon_sym_GT] = ACTIONS(5393), + [anon_sym_GT_EQ] = ACTIONS(5391), + [anon_sym_LT_EQ_GT] = ACTIONS(5391), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5391), + [anon_sym_BANG_TILDE] = ACTIONS(5391), + [anon_sym_EQ_TILDE] = ACTIONS(5391), + [anon_sym_AMP_STAR] = ACTIONS(5393), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5391), + [anon_sym_QMARK] = ACTIONS(5391), + [anon_sym_AMP_AMP] = ACTIONS(5393), + [anon_sym_PIPE_PIPE] = ACTIONS(5393), + [anon_sym_PLUS_EQ] = ACTIONS(5391), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5391), + [anon_sym_DASH_EQ] = ACTIONS(5391), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5391), + [anon_sym_STAR_EQ] = ACTIONS(5391), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5391), + [anon_sym_SLASH_EQ] = ACTIONS(5391), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5391), + [anon_sym_PERCENT_EQ] = ACTIONS(5391), + [anon_sym_PIPE_EQ] = ACTIONS(5391), + [anon_sym_AMP_EQ] = ACTIONS(5391), + [anon_sym_CARET_EQ] = ACTIONS(5391), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5391), + [anon_sym_LT_LT_EQ] = ACTIONS(5391), + [anon_sym_GT_GT_EQ] = ACTIONS(5391), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5391), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5391), + [anon_sym_else] = ACTIONS(5391), + [sym__line_break] = ACTIONS(5391), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4700), - [sym__start_of_tuple_type] = ACTIONS(5451), - [sym__start_of_named_tuple_type] = ACTIONS(5453), - [sym__start_of_index_operator] = ACTIONS(4700), - [sym_binary_plus] = ACTIONS(4700), - [sym_binary_minus] = ACTIONS(4700), - [sym_binary_wrapping_plus] = ACTIONS(4700), - [sym_binary_wrapping_minus] = ACTIONS(4700), - [sym__binary_star] = ACTIONS(4700), - [sym__binary_double_star] = ACTIONS(4700), - [sym_binary_ampersand] = ACTIONS(4700), - [sym__binary_slash] = ACTIONS(4700), - [sym__binary_double_slash] = ACTIONS(4700), - [sym__modulo_operator] = ACTIONS(4700), + [sym__start_of_index_operator] = ACTIONS(5391), + [sym_binary_plus] = ACTIONS(5391), + [sym_binary_minus] = ACTIONS(5391), + [sym_binary_wrapping_plus] = ACTIONS(5391), + [sym_binary_wrapping_minus] = ACTIONS(5391), + [sym__binary_star] = ACTIONS(5391), + [sym__binary_double_star] = ACTIONS(5391), + [sym_binary_ampersand] = ACTIONS(5391), + [sym__binary_slash] = ACTIONS(5391), + [sym__binary_double_slash] = ACTIONS(5391), + [sym__modifier_if_keyword] = ACTIONS(5391), + [sym__modifier_unless_keyword] = ACTIONS(5391), + [sym__regular_rescue_keyword] = ACTIONS(5391), + [sym__modifier_rescue_keyword] = ACTIONS(5391), + [sym__regular_ensure_keyword] = ACTIONS(5391), + [sym__modifier_ensure_keyword] = ACTIONS(5391), + [sym__modulo_operator] = ACTIONS(5391), [sym__heredoc_body_start] = ACTIONS(7), }, - [2252] = { - [sym_heredoc_body] = STATE(2252), + [2274] = { + [sym_heredoc_body] = STATE(2274), [anon_sym_SEMI] = ACTIONS(5391), [sym_comment] = ACTIONS(5), [anon_sym_COMMA] = ACTIONS(5391), @@ -354372,8 +357551,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(5391), [sym__heredoc_body_start] = ACTIONS(7), }, - [2253] = { - [sym_heredoc_body] = STATE(2253), + [2275] = { + [sym_heredoc_body] = STATE(2275), + [anon_sym_SEMI] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_AMP_DASH_EQ] = ACTIONS(451), + [anon_sym_STAR_EQ] = ACTIONS(451), + [anon_sym_AMP_STAR_EQ] = ACTIONS(451), + [anon_sym_SLASH_EQ] = ACTIONS(451), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), + [anon_sym_PERCENT_EQ] = ACTIONS(451), + [anon_sym_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_EQ] = ACTIONS(451), + [anon_sym_CARET_EQ] = ACTIONS(451), + [anon_sym_STAR_STAR_EQ] = ACTIONS(451), + [anon_sym_LT_LT_EQ] = ACTIONS(451), + [anon_sym_GT_GT_EQ] = ACTIONS(451), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_AMP_EQ] = ACTIONS(451), + [anon_sym_COLON2] = ACTIONS(5488), + [anon_sym_else] = ACTIONS(173), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__regular_rescue_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2276] = { + [sym_heredoc_body] = STATE(2276), [anon_sym_SEMI] = ACTIONS(5403), [sym_comment] = ACTIONS(5), [anon_sym_COMMA] = ACTIONS(5403), @@ -354418,10 +357665,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_EQ] = ACTIONS(5403), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5403), [anon_sym_AMP_AMP_EQ] = ACTIONS(5403), - [anon_sym_do] = ACTIONS(5403), + [anon_sym_else] = ACTIONS(5403), [sym__line_break] = ACTIONS(5403), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5403), [sym__start_of_index_operator] = ACTIONS(5403), [sym_binary_plus] = ACTIONS(5403), [sym_binary_minus] = ACTIONS(5403), @@ -354434,103 +357680,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__binary_double_slash] = ACTIONS(5403), [sym__modifier_if_keyword] = ACTIONS(5403), [sym__modifier_unless_keyword] = ACTIONS(5403), + [sym__regular_rescue_keyword] = ACTIONS(5403), [sym__modifier_rescue_keyword] = ACTIONS(5403), [sym__regular_ensure_keyword] = ACTIONS(5403), [sym__modifier_ensure_keyword] = ACTIONS(5403), [sym__modulo_operator] = ACTIONS(5403), [sym__heredoc_body_start] = ACTIONS(7), }, - [2254] = { - [sym_heredoc_body] = STATE(2254), - [sym_typeof] = STATE(5124), - [sym_constant] = STATE(4891), - [sym__type] = STATE(5073), - [sym_class_type] = STATE(5124), - [sym_union_type] = STATE(5124), - [sym__parenthesized_type] = STATE(5124), - [sym_no_args_proc_type] = STATE(5124), - [sym_parenthesized_proc_type] = STATE(5124), - [sym_tuple_type] = STATE(5124), - [sym_named_tuple_type] = STATE(5124), - [sym_generic_instance_type] = STATE(5124), - [sym_nilable_type] = STATE(5124), - [sym_pointer_type] = STATE(5124), - [sym_static_array_type] = STATE(5124), - [anon_sym_LPAREN] = ACTIONS(5539), + [2277] = { + [sym_heredoc_body] = STATE(2277), + [sym_typeof] = STATE(4612), + [sym_constant] = STATE(4459), + [sym__type] = STATE(4631), + [sym_class_type] = STATE(4612), + [sym_union_type] = STATE(4612), + [sym__parenthesized_type] = STATE(4612), + [sym_no_args_proc_type] = STATE(4612), + [sym_parenthesized_proc_type] = STATE(4612), + [sym_tuple_type] = STATE(4612), + [sym_named_tuple_type] = STATE(4612), + [sym_generic_instance_type] = STATE(4612), + [sym_nilable_type] = STATE(4612), + [sym_pointer_type] = STATE(4612), + [sym_static_array_type] = STATE(4612), + [anon_sym_LPAREN] = ACTIONS(5456), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_RBRACK] = ACTIONS(4654), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5541), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5529), - [sym__constant_segment] = ACTIONS(3311), - [anon_sym_COLON_COLON] = ACTIONS(5531), - [sym_self] = ACTIONS(5533), - [sym_underscore_type] = ACTIONS(5533), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_RBRACK_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RBRACK] = ACTIONS(4698), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_DASH_GT] = ACTIONS(5458), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_GT_GT] = ACTIONS(4700), + [anon_sym_LT_LT] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ_GT] = ACTIONS(4700), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_TILDE] = ACTIONS(4700), + [anon_sym_EQ_TILDE] = ACTIONS(4700), + [anon_sym_AMP_STAR] = ACTIONS(4698), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), + [anon_sym_typeof] = ACTIONS(5446), + [sym__constant_segment] = ACTIONS(3263), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [sym_self] = ACTIONS(5450), + [sym_underscore_type] = ACTIONS(5450), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_RBRACK_QMARK] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_do] = ACTIONS(4700), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5535), - [sym__start_of_named_tuple_type] = ACTIONS(5537), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), + [sym__start_of_brace_block] = ACTIONS(4700), + [sym__start_of_tuple_type] = ACTIONS(5452), + [sym__start_of_named_tuple_type] = ACTIONS(5454), + [sym__start_of_index_operator] = ACTIONS(4700), + [sym_binary_plus] = ACTIONS(4700), + [sym_binary_minus] = ACTIONS(4700), + [sym_binary_wrapping_plus] = ACTIONS(4700), + [sym_binary_wrapping_minus] = ACTIONS(4700), + [sym__binary_star] = ACTIONS(4700), + [sym__binary_double_star] = ACTIONS(4700), + [sym_binary_ampersand] = ACTIONS(4700), + [sym__binary_slash] = ACTIONS(4700), + [sym__binary_double_slash] = ACTIONS(4700), + [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2255] = { - [sym_heredoc_body] = STATE(2255), - [sym_typeof] = STATE(4577), - [sym_constant] = STATE(4535), - [sym__type] = STATE(4589), - [sym_class_type] = STATE(4577), - [sym_union_type] = STATE(4577), - [sym__parenthesized_type] = STATE(4577), - [sym_no_args_proc_type] = STATE(4577), - [sym_parenthesized_proc_type] = STATE(4577), - [sym_tuple_type] = STATE(4577), - [sym_named_tuple_type] = STATE(4577), - [sym_generic_instance_type] = STATE(4577), - [sym_nilable_type] = STATE(4577), - [sym_pointer_type] = STATE(4577), - [sym_static_array_type] = STATE(4577), - [anon_sym_LPAREN] = ACTIONS(5441), + [2278] = { + [sym_heredoc_body] = STATE(2278), + [sym_typeof] = STATE(4612), + [sym_constant] = STATE(4459), + [sym__type] = STATE(4639), + [sym_class_type] = STATE(4612), + [sym_union_type] = STATE(4612), + [sym__parenthesized_type] = STATE(4612), + [sym_no_args_proc_type] = STATE(4612), + [sym_parenthesized_proc_type] = STATE(4612), + [sym_tuple_type] = STATE(4612), + [sym_named_tuple_type] = STATE(4612), + [sym_generic_instance_type] = STATE(4612), + [sym_nilable_type] = STATE(4612), + [sym_pointer_type] = STATE(4612), + [sym_static_array_type] = STATE(4612), + [anon_sym_LPAREN] = ACTIONS(5456), [sym_comment] = ACTIONS(5), [anon_sym_COMMA] = ACTIONS(4722), [anon_sym_RBRACK] = ACTIONS(4720), [anon_sym_DOT_DOT] = ACTIONS(4720), [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5443), + [anon_sym_DASH_GT] = ACTIONS(5458), [anon_sym_DOT] = ACTIONS(4720), [anon_sym_LT] = ACTIONS(4720), [anon_sym_EQ] = ACTIONS(4720), @@ -354549,11 +357796,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4722), [anon_sym_AMP_STAR] = ACTIONS(4720), [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5445), + [anon_sym_typeof] = ACTIONS(5446), [sym__constant_segment] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(5447), - [sym_self] = ACTIONS(5449), - [sym_underscore_type] = ACTIONS(5449), + [anon_sym_COLON_COLON] = ACTIONS(5448), + [sym_self] = ACTIONS(5450), + [sym_underscore_type] = ACTIONS(5450), [anon_sym_QMARK] = ACTIONS(4722), [anon_sym_RBRACK_QMARK] = ACTIONS(4722), [anon_sym_AMP_AMP] = ACTIONS(4722), @@ -354561,8 +357808,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(4722), [sym__line_continuation] = ACTIONS(5), [sym__start_of_brace_block] = ACTIONS(4722), - [sym__start_of_tuple_type] = ACTIONS(5451), - [sym__start_of_named_tuple_type] = ACTIONS(5453), + [sym__start_of_tuple_type] = ACTIONS(5452), + [sym__start_of_named_tuple_type] = ACTIONS(5454), [sym__start_of_index_operator] = ACTIONS(4722), [sym_binary_plus] = ACTIONS(4722), [sym_binary_minus] = ACTIONS(4722), @@ -354576,8 +357823,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, - [2256] = { - [sym_heredoc_body] = STATE(2256), + [2279] = { + [sym_heredoc_body] = STATE(2279), + [sym_typeof] = STATE(4940), + [sym_constant] = STATE(4776), + [sym__type] = STATE(4947), + [sym_class_type] = STATE(4940), + [sym_union_type] = STATE(4940), + [sym__parenthesized_type] = STATE(4940), + [sym_no_args_proc_type] = STATE(4940), + [sym_parenthesized_proc_type] = STATE(4940), + [sym_tuple_type] = STATE(4940), + [sym_named_tuple_type] = STATE(4940), + [sym_generic_instance_type] = STATE(4940), + [sym_nilable_type] = STATE(4940), + [sym_pointer_type] = STATE(4940), + [sym_static_array_type] = STATE(4940), + [anon_sym_LPAREN] = ACTIONS(5481), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_DOT_DOT] = ACTIONS(4698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), + [anon_sym_DASH_GT] = ACTIONS(5483), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_LT] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_CARET] = ACTIONS(4700), + [anon_sym_GT_GT] = ACTIONS(4700), + [anon_sym_LT_LT] = ACTIONS(4700), + [anon_sym_EQ_EQ] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ] = ACTIONS(4698), + [anon_sym_GT] = ACTIONS(4698), + [anon_sym_GT_EQ] = ACTIONS(4700), + [anon_sym_LT_EQ_GT] = ACTIONS(4700), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), + [anon_sym_BANG_TILDE] = ACTIONS(4700), + [anon_sym_EQ_TILDE] = ACTIONS(4700), + [anon_sym_AMP_STAR] = ACTIONS(4698), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), + [anon_sym_typeof] = ACTIONS(5471), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [sym_self] = ACTIONS(5475), + [sym_underscore_type] = ACTIONS(5475), + [anon_sym_QMARK] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_do] = ACTIONS(4700), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4700), + [sym__start_of_tuple_type] = ACTIONS(5477), + [sym__start_of_named_tuple_type] = ACTIONS(5479), + [sym__start_of_index_operator] = ACTIONS(4700), + [sym__end_of_with_expression] = ACTIONS(4700), + [sym_binary_plus] = ACTIONS(4700), + [sym_binary_minus] = ACTIONS(4700), + [sym_binary_wrapping_plus] = ACTIONS(4700), + [sym_binary_wrapping_minus] = ACTIONS(4700), + [sym__binary_star] = ACTIONS(4700), + [sym__binary_double_star] = ACTIONS(4700), + [sym_binary_ampersand] = ACTIONS(4700), + [sym__binary_slash] = ACTIONS(4700), + [sym__binary_double_slash] = ACTIONS(4700), + [sym__modulo_operator] = ACTIONS(4700), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2280] = { + [sym_heredoc_body] = STATE(2280), + [sym_typeof] = STATE(4940), + [sym_constant] = STATE(4776), + [sym__type] = STATE(4951), + [sym_class_type] = STATE(4940), + [sym_union_type] = STATE(4940), + [sym__parenthesized_type] = STATE(4940), + [sym_no_args_proc_type] = STATE(4940), + [sym_parenthesized_proc_type] = STATE(4940), + [sym_tuple_type] = STATE(4940), + [sym_named_tuple_type] = STATE(4940), + [sym_generic_instance_type] = STATE(4940), + [sym_nilable_type] = STATE(4940), + [sym_pointer_type] = STATE(4940), + [sym_static_array_type] = STATE(4940), + [anon_sym_LPAREN] = ACTIONS(5481), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(5483), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ_GT] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_BANG_TILDE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_AMP_STAR] = ACTIONS(4720), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_typeof] = ACTIONS(5471), + [sym__constant_segment] = ACTIONS(3299), + [anon_sym_COLON_COLON] = ACTIONS(5473), + [sym_self] = ACTIONS(5475), + [sym_underscore_type] = ACTIONS(5475), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_do] = ACTIONS(4722), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4722), + [sym__start_of_tuple_type] = ACTIONS(5477), + [sym__start_of_named_tuple_type] = ACTIONS(5479), + [sym__start_of_index_operator] = ACTIONS(4722), + [sym__end_of_with_expression] = ACTIONS(4722), + [sym_binary_plus] = ACTIONS(4722), + [sym_binary_minus] = ACTIONS(4722), + [sym_binary_wrapping_plus] = ACTIONS(4722), + [sym_binary_wrapping_minus] = ACTIONS(4722), + [sym__binary_star] = ACTIONS(4722), + [sym__binary_double_star] = ACTIONS(4722), + [sym_binary_ampersand] = ACTIONS(4722), + [sym__binary_slash] = ACTIONS(4722), + [sym__binary_double_slash] = ACTIONS(4722), + [sym__modulo_operator] = ACTIONS(4722), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2281] = { + [sym_heredoc_body] = STATE(2281), [anon_sym_RPAREN] = ACTIONS(5403), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(5403), @@ -354643,364 +358024,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(5403), [sym__heredoc_body_start] = ACTIONS(7), }, - [2257] = { - [sym_heredoc_body] = STATE(2257), - [anon_sym_SEMI] = ACTIONS(173), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(647), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(647), - [anon_sym_DASH_EQ] = ACTIONS(647), - [anon_sym_AMP_DASH_EQ] = ACTIONS(647), - [anon_sym_STAR_EQ] = ACTIONS(647), - [anon_sym_AMP_STAR_EQ] = ACTIONS(647), - [anon_sym_SLASH_EQ] = ACTIONS(647), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(647), - [anon_sym_PERCENT_EQ] = ACTIONS(647), - [anon_sym_PIPE_EQ] = ACTIONS(647), - [anon_sym_AMP_EQ] = ACTIONS(647), - [anon_sym_CARET_EQ] = ACTIONS(647), - [anon_sym_STAR_STAR_EQ] = ACTIONS(647), - [anon_sym_LT_LT_EQ] = ACTIONS(647), - [anon_sym_GT_GT_EQ] = ACTIONS(647), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(647), - [anon_sym_AMP_AMP_EQ] = ACTIONS(647), - [anon_sym_COLON2] = ACTIONS(5549), - [sym__line_break] = ACTIONS(173), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2258] = { - [sym_heredoc_body] = STATE(2258), - [sym_typeof] = STATE(4895), - [sym_constant] = STATE(4679), - [sym__type] = STATE(4931), - [sym_class_type] = STATE(4895), - [sym_union_type] = STATE(4895), - [sym__parenthesized_type] = STATE(4895), - [sym_no_args_proc_type] = STATE(4895), - [sym_parenthesized_proc_type] = STATE(4895), - [sym_tuple_type] = STATE(4895), - [sym_named_tuple_type] = STATE(4895), - [sym_generic_instance_type] = STATE(4895), - [sym_nilable_type] = STATE(4895), - [sym_pointer_type] = STATE(4895), - [sym_static_array_type] = STATE(4895), - [anon_sym_SEMI] = ACTIONS(4722), - [anon_sym_LPAREN] = ACTIONS(5466), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5468), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ_GT] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_TILDE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_AMP_STAR] = ACTIONS(4720), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5470), - [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(5472), - [sym_self] = ACTIONS(5474), - [sym_underscore_type] = ACTIONS(5474), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_then] = ACTIONS(4722), - [sym__line_break] = ACTIONS(4722), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5476), - [sym__start_of_named_tuple_type] = ACTIONS(5478), - [sym__start_of_index_operator] = ACTIONS(4722), - [sym_binary_plus] = ACTIONS(4722), - [sym_binary_minus] = ACTIONS(4722), - [sym_binary_wrapping_plus] = ACTIONS(4722), - [sym_binary_wrapping_minus] = ACTIONS(4722), - [sym__binary_star] = ACTIONS(4722), - [sym__binary_double_star] = ACTIONS(4722), - [sym_binary_ampersand] = ACTIONS(4722), - [sym__binary_slash] = ACTIONS(4722), - [sym__binary_double_slash] = ACTIONS(4722), - [sym__modulo_operator] = ACTIONS(4722), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2259] = { - [sym_heredoc_body] = STATE(2259), - [anon_sym_SEMI] = ACTIONS(173), + [2282] = { + [sym_heredoc_body] = STATE(2282), + [sym_typeof] = STATE(5253), + [sym_constant] = STATE(5137), + [sym__type] = STATE(5480), + [sym_class_type] = STATE(5253), + [sym_union_type] = STATE(5253), + [sym__parenthesized_type] = STATE(5253), + [sym_no_args_proc_type] = STATE(5253), + [sym_parenthesized_proc_type] = STATE(5253), + [sym_tuple_type] = STATE(5253), + [sym_named_tuple_type] = STATE(5253), + [sym_generic_instance_type] = STATE(5253), + [sym_nilable_type] = STATE(5253), + [sym_pointer_type] = STATE(5253), + [sym_static_array_type] = STATE(5253), + [anon_sym_LPAREN] = ACTIONS(5549), [sym_comment] = ACTIONS(5), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(449), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(451), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), - [anon_sym_DASH_EQ] = ACTIONS(451), - [anon_sym_AMP_DASH_EQ] = ACTIONS(451), - [anon_sym_STAR_EQ] = ACTIONS(451), - [anon_sym_AMP_STAR_EQ] = ACTIONS(451), - [anon_sym_SLASH_EQ] = ACTIONS(451), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), - [anon_sym_PERCENT_EQ] = ACTIONS(451), - [anon_sym_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_EQ] = ACTIONS(451), - [anon_sym_CARET_EQ] = ACTIONS(451), - [anon_sym_STAR_STAR_EQ] = ACTIONS(451), - [anon_sym_LT_LT_EQ] = ACTIONS(451), - [anon_sym_GT_GT_EQ] = ACTIONS(451), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), - [anon_sym_AMP_AMP_EQ] = ACTIONS(451), - [anon_sym_else] = ACTIONS(173), - [sym__line_break] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_DOT_DOT] = ACTIONS(4626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), + [anon_sym_DASH_GT] = ACTIONS(5551), + [anon_sym_DOT] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4628), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4628), + [anon_sym_GT_GT] = ACTIONS(4628), + [anon_sym_LT_LT] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ_GT] = ACTIONS(4628), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_BANG_TILDE] = ACTIONS(4628), + [anon_sym_EQ_TILDE] = ACTIONS(4628), + [anon_sym_AMP_STAR] = ACTIONS(4626), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), + [anon_sym_typeof] = ACTIONS(5553), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(5555), + [sym_self] = ACTIONS(5557), + [sym_underscore_type] = ACTIONS(5557), + [anon_sym_QMARK] = ACTIONS(4628), + [anon_sym_AMP_AMP] = ACTIONS(4628), + [anon_sym_PIPE_PIPE] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modifier_if_keyword] = ACTIONS(173), - [sym__modifier_unless_keyword] = ACTIONS(173), - [sym__regular_rescue_keyword] = ACTIONS(173), - [sym__modifier_rescue_keyword] = ACTIONS(173), - [sym__regular_ensure_keyword] = ACTIONS(173), - [sym__modifier_ensure_keyword] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), + [sym__start_of_tuple_type] = ACTIONS(5559), + [sym__start_of_named_tuple_type] = ACTIONS(5561), + [sym__start_of_index_operator] = ACTIONS(4628), + [sym__end_of_with_expression] = ACTIONS(4628), + [sym_binary_plus] = ACTIONS(4628), + [sym_binary_minus] = ACTIONS(4628), + [sym_binary_wrapping_plus] = ACTIONS(4628), + [sym_binary_wrapping_minus] = ACTIONS(4628), + [sym__binary_star] = ACTIONS(4628), + [sym__binary_double_star] = ACTIONS(4628), + [sym_binary_ampersand] = ACTIONS(4628), + [sym__binary_slash] = ACTIONS(4628), + [sym__binary_double_slash] = ACTIONS(4628), + [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2260] = { - [sym_heredoc_body] = STATE(2260), - [anon_sym_RPAREN] = ACTIONS(173), + [2283] = { + [sym_heredoc_body] = STATE(2283), + [sym_typeof] = STATE(5253), + [sym_constant] = STATE(5137), + [sym__type] = STATE(5238), + [sym_class_type] = STATE(5253), + [sym_union_type] = STATE(5253), + [sym__parenthesized_type] = STATE(5253), + [sym_no_args_proc_type] = STATE(5253), + [sym_parenthesized_proc_type] = STATE(5253), + [sym_tuple_type] = STATE(5253), + [sym_named_tuple_type] = STATE(5253), + [sym_generic_instance_type] = STATE(5253), + [sym_nilable_type] = STATE(5253), + [sym_pointer_type] = STATE(5253), + [sym_static_array_type] = STATE(5253), + [anon_sym_LPAREN] = ACTIONS(5549), [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(173), - [anon_sym_RBRACK] = ACTIONS(173), - [anon_sym_EQ_GT] = ACTIONS(173), - [anon_sym_DOT_DOT] = ACTIONS(195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(173), - [anon_sym_DOT] = ACTIONS(195), - [anon_sym_end] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_CARET] = ACTIONS(195), - [anon_sym_GT_GT] = ACTIONS(195), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_EQ_EQ] = ACTIONS(195), - [anon_sym_BANG_EQ] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_GT_EQ] = ACTIONS(173), - [anon_sym_LT_EQ_GT] = ACTIONS(173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(173), - [anon_sym_BANG_TILDE] = ACTIONS(173), - [anon_sym_EQ_TILDE] = ACTIONS(173), - [anon_sym_AMP_STAR] = ACTIONS(195), - [anon_sym_AMP_STAR_STAR] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(173), - [anon_sym_AMP_AMP] = ACTIONS(195), - [anon_sym_PIPE_PIPE] = ACTIONS(195), - [anon_sym_PLUS_EQ] = ACTIONS(517), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(517), - [anon_sym_DASH_EQ] = ACTIONS(517), - [anon_sym_AMP_DASH_EQ] = ACTIONS(517), - [anon_sym_STAR_EQ] = ACTIONS(517), - [anon_sym_AMP_STAR_EQ] = ACTIONS(517), - [anon_sym_SLASH_EQ] = ACTIONS(517), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(517), - [anon_sym_PERCENT_EQ] = ACTIONS(517), - [anon_sym_PIPE_EQ] = ACTIONS(517), - [anon_sym_AMP_EQ] = ACTIONS(517), - [anon_sym_CARET_EQ] = ACTIONS(517), - [anon_sym_STAR_STAR_EQ] = ACTIONS(517), - [anon_sym_LT_LT_EQ] = ACTIONS(517), - [anon_sym_GT_GT_EQ] = ACTIONS(517), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(517), - [anon_sym_AMP_AMP_EQ] = ACTIONS(517), - [anon_sym_COLON2] = ACTIONS(5551), - [anon_sym_else] = ACTIONS(173), - [anon_sym_when] = ACTIONS(173), - [anon_sym_in] = ACTIONS(173), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(5551), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_EQ_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ_GT] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_BANG_TILDE] = ACTIONS(4656), + [anon_sym_EQ_TILDE] = ACTIONS(4656), + [anon_sym_AMP_STAR] = ACTIONS(4654), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(5553), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(5555), + [sym_self] = ACTIONS(5557), + [sym_underscore_type] = ACTIONS(5557), + [anon_sym_QMARK] = ACTIONS(4656), + [anon_sym_AMP_AMP] = ACTIONS(4656), + [anon_sym_PIPE_PIPE] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(173), - [sym_binary_plus] = ACTIONS(173), - [sym_binary_minus] = ACTIONS(173), - [sym_binary_wrapping_plus] = ACTIONS(173), - [sym_binary_wrapping_minus] = ACTIONS(173), - [sym__binary_star] = ACTIONS(173), - [sym__binary_double_star] = ACTIONS(173), - [sym_binary_ampersand] = ACTIONS(173), - [sym__binary_slash] = ACTIONS(173), - [sym__binary_double_slash] = ACTIONS(173), - [sym__modulo_operator] = ACTIONS(173), + [sym__start_of_tuple_type] = ACTIONS(5559), + [sym__start_of_named_tuple_type] = ACTIONS(5561), + [sym__start_of_index_operator] = ACTIONS(4656), + [sym__end_of_with_expression] = ACTIONS(4656), + [sym_binary_plus] = ACTIONS(4656), + [sym_binary_minus] = ACTIONS(4656), + [sym_binary_wrapping_plus] = ACTIONS(4656), + [sym_binary_wrapping_minus] = ACTIONS(4656), + [sym__binary_star] = ACTIONS(4656), + [sym__binary_double_star] = ACTIONS(4656), + [sym_binary_ampersand] = ACTIONS(4656), + [sym__binary_slash] = ACTIONS(4656), + [sym__binary_double_slash] = ACTIONS(4656), + [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2261] = { - [sym_heredoc_body] = STATE(2261), - [sym_typeof] = STATE(4988), - [sym_constant] = STATE(4549), - [sym__type] = STATE(4885), - [sym_class_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym__parenthesized_type] = STATE(4988), - [sym_no_args_proc_type] = STATE(4988), - [sym_parenthesized_proc_type] = STATE(4988), - [sym_tuple_type] = STATE(4988), - [sym_named_tuple_type] = STATE(4988), - [sym_generic_instance_type] = STATE(4988), - [sym_nilable_type] = STATE(4988), - [sym_pointer_type] = STATE(4988), - [sym_static_array_type] = STATE(4988), - [anon_sym_LPAREN] = ACTIONS(5500), + [2284] = { + [sym_heredoc_body] = STATE(2284), + [sym_typeof] = STATE(5253), + [sym_constant] = STATE(5137), + [sym__type] = STATE(5478), + [sym_class_type] = STATE(5253), + [sym_union_type] = STATE(5253), + [sym__parenthesized_type] = STATE(5253), + [sym_no_args_proc_type] = STATE(5253), + [sym_parenthesized_proc_type] = STATE(5253), + [sym_tuple_type] = STATE(5253), + [sym_named_tuple_type] = STATE(5253), + [sym_generic_instance_type] = STATE(5253), + [sym_nilable_type] = STATE(5253), + [sym_pointer_type] = STATE(5253), + [sym_static_array_type] = STATE(5253), + [anon_sym_LPAREN] = ACTIONS(5549), [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4700), - [anon_sym_DOT_DOT] = ACTIONS(4698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(4698), - [anon_sym_LT] = ACTIONS(4698), - [anon_sym_EQ] = ACTIONS(4698), - [anon_sym_PIPE] = ACTIONS(4698), - [anon_sym_CARET] = ACTIONS(4700), - [anon_sym_GT_GT] = ACTIONS(4700), - [anon_sym_LT_LT] = ACTIONS(4700), - [anon_sym_EQ_EQ] = ACTIONS(4698), - [anon_sym_BANG_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ] = ACTIONS(4698), - [anon_sym_GT] = ACTIONS(4698), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_LT_EQ_GT] = ACTIONS(4700), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4700), - [anon_sym_BANG_TILDE] = ACTIONS(4700), - [anon_sym_EQ_TILDE] = ACTIONS(4700), - [anon_sym_AMP_STAR] = ACTIONS(4698), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5490), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(5492), - [sym_self] = ACTIONS(5494), - [sym_underscore_type] = ACTIONS(5494), - [anon_sym_QMARK] = ACTIONS(4700), - [anon_sym_AMP_AMP] = ACTIONS(4700), - [anon_sym_PIPE_PIPE] = ACTIONS(4700), - [anon_sym_do] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5551), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5553), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(5555), + [sym_self] = ACTIONS(5557), + [sym_underscore_type] = ACTIONS(5557), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4700), - [sym__start_of_tuple_type] = ACTIONS(5496), - [sym__start_of_named_tuple_type] = ACTIONS(5498), - [sym__start_of_index_operator] = ACTIONS(4700), - [sym__end_of_with_expression] = ACTIONS(4700), - [sym_binary_plus] = ACTIONS(4700), - [sym_binary_minus] = ACTIONS(4700), - [sym_binary_wrapping_plus] = ACTIONS(4700), - [sym_binary_wrapping_minus] = ACTIONS(4700), - [sym__binary_star] = ACTIONS(4700), - [sym__binary_double_star] = ACTIONS(4700), - [sym_binary_ampersand] = ACTIONS(4700), - [sym__binary_slash] = ACTIONS(4700), - [sym__binary_double_slash] = ACTIONS(4700), - [sym__modulo_operator] = ACTIONS(4700), + [sym__start_of_tuple_type] = ACTIONS(5559), + [sym__start_of_named_tuple_type] = ACTIONS(5561), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym__end_of_with_expression] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2262] = { - [sym_heredoc_body] = STATE(2262), - [sym_typeof] = STATE(5267), - [sym_constant] = STATE(5084), - [sym__type] = STATE(5081), - [sym_class_type] = STATE(5267), - [sym_union_type] = STATE(5267), - [sym__parenthesized_type] = STATE(5267), - [sym_no_args_proc_type] = STATE(5267), - [sym_parenthesized_proc_type] = STATE(5267), - [sym_tuple_type] = STATE(5267), - [sym_named_tuple_type] = STATE(5267), - [sym_generic_instance_type] = STATE(5267), - [sym_nilable_type] = STATE(5267), - [sym_pointer_type] = STATE(5267), - [sym_static_array_type] = STATE(5267), - [anon_sym_LPAREN] = ACTIONS(5553), + [2285] = { + [sym_heredoc_body] = STATE(2285), + [sym_typeof] = STATE(5253), + [sym_constant] = STATE(5137), + [sym__type] = STATE(5111), + [sym_class_type] = STATE(5253), + [sym_union_type] = STATE(5253), + [sym__parenthesized_type] = STATE(5253), + [sym_no_args_proc_type] = STATE(5253), + [sym_parenthesized_proc_type] = STATE(5253), + [sym_tuple_type] = STATE(5253), + [sym_named_tuple_type] = STATE(5253), + [sym_generic_instance_type] = STATE(5253), + [sym_nilable_type] = STATE(5253), + [sym_pointer_type] = STATE(5253), + [sym_static_array_type] = STATE(5253), + [anon_sym_LPAREN] = ACTIONS(5563), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4656), [anon_sym_COMMA] = ACTIONS(4656), [anon_sym_DOT_DOT] = ACTIONS(4654), [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5555), + [anon_sym_DASH_GT] = ACTIONS(5565), [anon_sym_DOT] = ACTIONS(4654), [anon_sym_LT] = ACTIONS(4654), [anon_sym_EQ] = ACTIONS(4654), @@ -355020,17 +358267,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4656), [anon_sym_AMP_STAR] = ACTIONS(4654), [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5558), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(5560), - [sym_self] = ACTIONS(5562), - [sym_underscore_type] = ACTIONS(5562), + [anon_sym_typeof] = ACTIONS(5553), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(5555), + [sym_self] = ACTIONS(5557), + [sym_underscore_type] = ACTIONS(5557), [anon_sym_QMARK] = ACTIONS(4656), [anon_sym_AMP_AMP] = ACTIONS(4656), [anon_sym_PIPE_PIPE] = ACTIONS(4656), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5564), - [sym__start_of_named_tuple_type] = ACTIONS(5566), + [sym__start_of_tuple_type] = ACTIONS(5559), + [sym__start_of_named_tuple_type] = ACTIONS(5561), [sym__start_of_index_operator] = ACTIONS(4656), [sym__end_of_with_expression] = ACTIONS(4656), [sym_binary_plus] = ACTIONS(4656), @@ -355045,75 +358292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4656), [sym__heredoc_body_start] = ACTIONS(7), }, - [2263] = { - [sym_heredoc_body] = STATE(2263), - [sym_typeof] = STATE(4988), - [sym_constant] = STATE(4549), - [sym__type] = STATE(4873), - [sym_class_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym__parenthesized_type] = STATE(4988), - [sym_no_args_proc_type] = STATE(4988), - [sym_parenthesized_proc_type] = STATE(4988), - [sym_tuple_type] = STATE(4988), - [sym_named_tuple_type] = STATE(4988), - [sym_generic_instance_type] = STATE(4988), - [sym_nilable_type] = STATE(4988), - [sym_pointer_type] = STATE(4988), - [sym_static_array_type] = STATE(4988), - [anon_sym_LPAREN] = ACTIONS(5500), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4722), - [anon_sym_DOT_DOT] = ACTIONS(4720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), - [anon_sym_DASH_GT] = ACTIONS(5502), - [anon_sym_DOT] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_CARET] = ACTIONS(4722), - [anon_sym_GT_GT] = ACTIONS(4722), - [anon_sym_LT_LT] = ACTIONS(4722), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_EQ] = ACTIONS(4722), - [anon_sym_LT_EQ_GT] = ACTIONS(4722), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), - [anon_sym_BANG_TILDE] = ACTIONS(4722), - [anon_sym_EQ_TILDE] = ACTIONS(4722), - [anon_sym_AMP_STAR] = ACTIONS(4720), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), - [anon_sym_typeof] = ACTIONS(5490), - [sym__constant_segment] = ACTIONS(3295), - [anon_sym_COLON_COLON] = ACTIONS(5492), - [sym_self] = ACTIONS(5494), - [sym_underscore_type] = ACTIONS(5494), - [anon_sym_QMARK] = ACTIONS(4722), - [anon_sym_AMP_AMP] = ACTIONS(4722), - [anon_sym_PIPE_PIPE] = ACTIONS(4722), - [anon_sym_do] = ACTIONS(4722), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4722), - [sym__start_of_tuple_type] = ACTIONS(5496), - [sym__start_of_named_tuple_type] = ACTIONS(5498), - [sym__start_of_index_operator] = ACTIONS(4722), - [sym__end_of_with_expression] = ACTIONS(4722), - [sym_binary_plus] = ACTIONS(4722), - [sym_binary_minus] = ACTIONS(4722), - [sym_binary_wrapping_plus] = ACTIONS(4722), - [sym_binary_wrapping_minus] = ACTIONS(4722), - [sym__binary_star] = ACTIONS(4722), - [sym__binary_double_star] = ACTIONS(4722), - [sym_binary_ampersand] = ACTIONS(4722), - [sym__binary_slash] = ACTIONS(4722), - [sym__binary_double_slash] = ACTIONS(4722), - [sym__modulo_operator] = ACTIONS(4722), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2264] = { - [sym_heredoc_body] = STATE(2264), + [2286] = { + [sym_heredoc_body] = STATE(2286), [anon_sym_RPAREN] = ACTIONS(5391), [sym_comment] = ACTIONS(5), [anon_sym_RBRACE] = ACTIONS(5391), @@ -355179,75 +358359,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(5391), [sym__heredoc_body_start] = ACTIONS(7), }, - [2265] = { - [sym_heredoc_body] = STATE(2265), - [sym_typeof] = STATE(5267), - [sym_constant] = STATE(5084), - [sym__type] = STATE(5092), - [sym_class_type] = STATE(5267), - [sym_union_type] = STATE(5267), - [sym__parenthesized_type] = STATE(5267), - [sym_no_args_proc_type] = STATE(5267), - [sym_parenthesized_proc_type] = STATE(5267), - [sym_tuple_type] = STATE(5267), - [sym_named_tuple_type] = STATE(5267), - [sym_generic_instance_type] = STATE(5267), - [sym_nilable_type] = STATE(5267), - [sym_pointer_type] = STATE(5267), - [sym_static_array_type] = STATE(5267), - [anon_sym_LPAREN] = ACTIONS(5553), + [2287] = { + [sym_heredoc_body] = STATE(2287), + [anon_sym_RPAREN] = ACTIONS(173), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4628), - [anon_sym_COMMA] = ACTIONS(4628), - [anon_sym_DOT_DOT] = ACTIONS(4626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5568), - [anon_sym_DOT] = ACTIONS(4626), - [anon_sym_LT] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(4626), - [anon_sym_STAR] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4626), - [anon_sym_CARET] = ACTIONS(4628), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(4628), - [anon_sym_EQ_EQ] = ACTIONS(4626), - [anon_sym_BANG_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ] = ACTIONS(4626), - [anon_sym_GT] = ACTIONS(4626), - [anon_sym_GT_EQ] = ACTIONS(4628), - [anon_sym_LT_EQ_GT] = ACTIONS(4628), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), - [anon_sym_BANG_TILDE] = ACTIONS(4628), - [anon_sym_EQ_TILDE] = ACTIONS(4628), - [anon_sym_AMP_STAR] = ACTIONS(4626), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5558), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(5560), - [sym_self] = ACTIONS(5562), - [sym_underscore_type] = ACTIONS(5562), - [anon_sym_QMARK] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), + [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(173), + [anon_sym_EQ_GT] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(517), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(517), + [anon_sym_DASH_EQ] = ACTIONS(517), + [anon_sym_AMP_DASH_EQ] = ACTIONS(517), + [anon_sym_STAR_EQ] = ACTIONS(517), + [anon_sym_AMP_STAR_EQ] = ACTIONS(517), + [anon_sym_SLASH_EQ] = ACTIONS(517), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(517), + [anon_sym_PERCENT_EQ] = ACTIONS(517), + [anon_sym_PIPE_EQ] = ACTIONS(517), + [anon_sym_AMP_EQ] = ACTIONS(517), + [anon_sym_CARET_EQ] = ACTIONS(517), + [anon_sym_STAR_STAR_EQ] = ACTIONS(517), + [anon_sym_LT_LT_EQ] = ACTIONS(517), + [anon_sym_GT_GT_EQ] = ACTIONS(517), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(517), + [anon_sym_AMP_AMP_EQ] = ACTIONS(517), + [anon_sym_COLON2] = ACTIONS(5568), + [anon_sym_else] = ACTIONS(173), + [anon_sym_when] = ACTIONS(173), + [anon_sym_in] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5564), - [sym__start_of_named_tuple_type] = ACTIONS(5566), - [sym__start_of_index_operator] = ACTIONS(4628), - [sym__end_of_with_expression] = ACTIONS(4628), - [sym_binary_plus] = ACTIONS(4628), - [sym_binary_minus] = ACTIONS(4628), - [sym_binary_wrapping_plus] = ACTIONS(4628), - [sym_binary_wrapping_minus] = ACTIONS(4628), - [sym__binary_star] = ACTIONS(4628), - [sym__binary_double_star] = ACTIONS(4628), - [sym_binary_ampersand] = ACTIONS(4628), - [sym__binary_slash] = ACTIONS(4628), - [sym__binary_double_slash] = ACTIONS(4628), - [sym__modulo_operator] = ACTIONS(4628), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2288] = { + [sym_heredoc_body] = STATE(2288), + [sym_typeof] = STATE(5253), + [sym_constant] = STATE(5137), + [sym__type] = STATE(5059), + [sym_class_type] = STATE(5253), + [sym_union_type] = STATE(5253), + [sym__parenthesized_type] = STATE(5253), + [sym_no_args_proc_type] = STATE(5253), + [sym_parenthesized_proc_type] = STATE(5253), + [sym_tuple_type] = STATE(5253), + [sym_named_tuple_type] = STATE(5253), + [sym_generic_instance_type] = STATE(5253), + [sym_nilable_type] = STATE(5253), + [sym_pointer_type] = STATE(5253), + [sym_static_array_type] = STATE(5253), + [anon_sym_LPAREN] = ACTIONS(5563), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DOT_DOT] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(5570), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4678), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_BANG_TILDE] = ACTIONS(4678), + [anon_sym_EQ_TILDE] = ACTIONS(4678), + [anon_sym_AMP_STAR] = ACTIONS(4676), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), + [anon_sym_typeof] = ACTIONS(5553), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(5555), + [sym_self] = ACTIONS(5557), + [sym_underscore_type] = ACTIONS(5557), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5559), + [sym__start_of_named_tuple_type] = ACTIONS(5561), + [sym__start_of_index_operator] = ACTIONS(4678), + [sym__end_of_with_expression] = ACTIONS(4678), + [sym_binary_plus] = ACTIONS(4678), + [sym_binary_minus] = ACTIONS(4678), + [sym_binary_wrapping_plus] = ACTIONS(4678), + [sym_binary_wrapping_minus] = ACTIONS(4678), + [sym__binary_star] = ACTIONS(4678), + [sym__binary_double_star] = ACTIONS(4678), + [sym_binary_ampersand] = ACTIONS(4678), + [sym__binary_slash] = ACTIONS(4678), + [sym__binary_double_slash] = ACTIONS(4678), + [sym__modulo_operator] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, - [2266] = { - [sym_heredoc_body] = STATE(2266), + [2289] = { + [sym_heredoc_body] = STATE(2289), [anon_sym_SEMI] = ACTIONS(173), [sym_comment] = ACTIONS(5), [anon_sym_COMMA] = ACTIONS(307), @@ -355292,7 +358539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(5571), + [anon_sym_COLON2] = ACTIONS(5573), [sym__line_break] = ACTIONS(173), [sym__line_continuation] = ACTIONS(5), [sym__start_of_index_operator] = ACTIONS(173), @@ -355313,96 +358560,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(173), [sym__heredoc_body_start] = ACTIONS(7), }, - [2267] = { - [sym_heredoc_body] = STATE(2267), - [sym_typeof] = STATE(5267), - [sym_constant] = STATE(5084), - [sym__type] = STATE(5198), - [sym_class_type] = STATE(5267), - [sym_union_type] = STATE(5267), - [sym__parenthesized_type] = STATE(5267), - [sym_no_args_proc_type] = STATE(5267), - [sym_parenthesized_proc_type] = STATE(5267), - [sym_tuple_type] = STATE(5267), - [sym_named_tuple_type] = STATE(5267), - [sym_generic_instance_type] = STATE(5267), - [sym_nilable_type] = STATE(5267), - [sym_pointer_type] = STATE(5267), - [sym_static_array_type] = STATE(5267), - [anon_sym_LPAREN] = ACTIONS(5573), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5575), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5558), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(5560), - [sym_self] = ACTIONS(5562), - [sym_underscore_type] = ACTIONS(5562), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5564), - [sym__start_of_named_tuple_type] = ACTIONS(5566), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym__end_of_with_expression] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2268] = { - [sym_heredoc_body] = STATE(2268), - [sym_typeof] = STATE(4895), - [sym_constant] = STATE(4679), - [sym__type] = STATE(4942), - [sym_class_type] = STATE(4895), - [sym_union_type] = STATE(4895), - [sym__parenthesized_type] = STATE(4895), - [sym_no_args_proc_type] = STATE(4895), - [sym_parenthesized_proc_type] = STATE(4895), - [sym_tuple_type] = STATE(4895), - [sym_named_tuple_type] = STATE(4895), - [sym_generic_instance_type] = STATE(4895), - [sym_nilable_type] = STATE(4895), - [sym_pointer_type] = STATE(4895), - [sym_static_array_type] = STATE(4895), + [2290] = { + [sym_heredoc_body] = STATE(2290), + [sym_typeof] = STATE(5025), + [sym_constant] = STATE(4768), + [sym__type] = STATE(5039), + [sym_class_type] = STATE(5025), + [sym_union_type] = STATE(5025), + [sym__parenthesized_type] = STATE(5025), + [sym_no_args_proc_type] = STATE(5025), + [sym_parenthesized_proc_type] = STATE(5025), + [sym_tuple_type] = STATE(5025), + [sym_named_tuple_type] = STATE(5025), + [sym_generic_instance_type] = STATE(5025), + [sym_nilable_type] = STATE(5025), + [sym_pointer_type] = STATE(5025), + [sym_static_array_type] = STATE(5025), [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_LPAREN] = ACTIONS(5466), + [anon_sym_LPAREN] = ACTIONS(5493), [sym_comment] = ACTIONS(5), [anon_sym_COMMA] = ACTIONS(4700), [anon_sym_DOT_DOT] = ACTIONS(4698), [anon_sym_DOT_DOT_DOT] = ACTIONS(4700), - [anon_sym_DASH_GT] = ACTIONS(5468), + [anon_sym_DASH_GT] = ACTIONS(5495), [anon_sym_DOT] = ACTIONS(4698), [anon_sym_LT] = ACTIONS(4698), [anon_sym_EQ] = ACTIONS(4698), @@ -355421,19 +358601,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4700), [anon_sym_AMP_STAR] = ACTIONS(4698), [anon_sym_AMP_STAR_STAR] = ACTIONS(4700), - [anon_sym_typeof] = ACTIONS(5470), + [anon_sym_typeof] = ACTIONS(5497), [sym__constant_segment] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(5472), - [sym_self] = ACTIONS(5474), - [sym_underscore_type] = ACTIONS(5474), + [anon_sym_COLON_COLON] = ACTIONS(5499), + [sym_self] = ACTIONS(5501), + [sym_underscore_type] = ACTIONS(5501), [anon_sym_QMARK] = ACTIONS(4700), [anon_sym_AMP_AMP] = ACTIONS(4700), [anon_sym_PIPE_PIPE] = ACTIONS(4700), [anon_sym_then] = ACTIONS(4700), [sym__line_break] = ACTIONS(4700), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5476), - [sym__start_of_named_tuple_type] = ACTIONS(5478), + [sym__start_of_tuple_type] = ACTIONS(5503), + [sym__start_of_named_tuple_type] = ACTIONS(5505), [sym__start_of_index_operator] = ACTIONS(4700), [sym_binary_plus] = ACTIONS(4700), [sym_binary_minus] = ACTIONS(4700), @@ -355447,29 +358627,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4700), [sym__heredoc_body_start] = ACTIONS(7), }, - [2269] = { - [sym_heredoc_body] = STATE(2269), - [sym_typeof] = STATE(5267), - [sym_constant] = STATE(5084), - [sym__type] = STATE(5402), - [sym_class_type] = STATE(5267), - [sym_union_type] = STATE(5267), - [sym__parenthesized_type] = STATE(5267), - [sym_no_args_proc_type] = STATE(5267), - [sym_parenthesized_proc_type] = STATE(5267), - [sym_tuple_type] = STATE(5267), - [sym_named_tuple_type] = STATE(5267), - [sym_generic_instance_type] = STATE(5267), - [sym_nilable_type] = STATE(5267), - [sym_pointer_type] = STATE(5267), - [sym_static_array_type] = STATE(5267), - [anon_sym_LPAREN] = ACTIONS(5573), + [2291] = { + [sym_heredoc_body] = STATE(2291), + [anon_sym_SEMI] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(173), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(647), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(647), + [anon_sym_DASH_EQ] = ACTIONS(647), + [anon_sym_AMP_DASH_EQ] = ACTIONS(647), + [anon_sym_STAR_EQ] = ACTIONS(647), + [anon_sym_AMP_STAR_EQ] = ACTIONS(647), + [anon_sym_SLASH_EQ] = ACTIONS(647), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(647), + [anon_sym_PERCENT_EQ] = ACTIONS(647), + [anon_sym_PIPE_EQ] = ACTIONS(647), + [anon_sym_AMP_EQ] = ACTIONS(647), + [anon_sym_CARET_EQ] = ACTIONS(647), + [anon_sym_STAR_STAR_EQ] = ACTIONS(647), + [anon_sym_LT_LT_EQ] = ACTIONS(647), + [anon_sym_GT_GT_EQ] = ACTIONS(647), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(647), + [anon_sym_AMP_AMP_EQ] = ACTIONS(647), + [anon_sym_COLON2] = ACTIONS(5575), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2292] = { + [sym_heredoc_body] = STATE(2292), + [anon_sym_SEMI] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(173), + [anon_sym_DOT] = ACTIONS(195), + [anon_sym_end] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(195), + [anon_sym_CARET] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_EQ_EQ] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(173), + [anon_sym_LT_EQ] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(173), + [anon_sym_LT_EQ_GT] = ACTIONS(173), + [anon_sym_EQ_EQ_EQ] = ACTIONS(173), + [anon_sym_BANG_TILDE] = ACTIONS(173), + [anon_sym_EQ_TILDE] = ACTIONS(173), + [anon_sym_AMP_STAR] = ACTIONS(195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(173), + [anon_sym_QMARK] = ACTIONS(173), + [anon_sym_AMP_AMP] = ACTIONS(195), + [anon_sym_PIPE_PIPE] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(451), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(451), + [anon_sym_AMP_DASH_EQ] = ACTIONS(451), + [anon_sym_STAR_EQ] = ACTIONS(451), + [anon_sym_AMP_STAR_EQ] = ACTIONS(451), + [anon_sym_SLASH_EQ] = ACTIONS(451), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(451), + [anon_sym_PERCENT_EQ] = ACTIONS(451), + [anon_sym_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_EQ] = ACTIONS(451), + [anon_sym_CARET_EQ] = ACTIONS(451), + [anon_sym_STAR_STAR_EQ] = ACTIONS(451), + [anon_sym_LT_LT_EQ] = ACTIONS(451), + [anon_sym_GT_GT_EQ] = ACTIONS(451), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(451), + [anon_sym_AMP_AMP_EQ] = ACTIONS(451), + [anon_sym_else] = ACTIONS(173), + [sym__line_break] = ACTIONS(173), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(173), + [sym_binary_plus] = ACTIONS(173), + [sym_binary_minus] = ACTIONS(173), + [sym_binary_wrapping_plus] = ACTIONS(173), + [sym_binary_wrapping_minus] = ACTIONS(173), + [sym__binary_star] = ACTIONS(173), + [sym__binary_double_star] = ACTIONS(173), + [sym_binary_ampersand] = ACTIONS(173), + [sym__binary_slash] = ACTIONS(173), + [sym__binary_double_slash] = ACTIONS(173), + [sym__modifier_if_keyword] = ACTIONS(173), + [sym__modifier_unless_keyword] = ACTIONS(173), + [sym__regular_rescue_keyword] = ACTIONS(173), + [sym__modifier_rescue_keyword] = ACTIONS(173), + [sym__regular_ensure_keyword] = ACTIONS(173), + [sym__modifier_ensure_keyword] = ACTIONS(173), + [sym__modulo_operator] = ACTIONS(173), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2293] = { + [sym_heredoc_body] = STATE(2293), + [sym_typeof] = STATE(5253), + [sym_constant] = STATE(5137), + [sym__type] = STATE(5060), + [sym_class_type] = STATE(5253), + [sym_union_type] = STATE(5253), + [sym__parenthesized_type] = STATE(5253), + [sym_no_args_proc_type] = STATE(5253), + [sym_parenthesized_proc_type] = STATE(5253), + [sym_tuple_type] = STATE(5253), + [sym_named_tuple_type] = STATE(5253), + [sym_generic_instance_type] = STATE(5253), + [sym_nilable_type] = STATE(5253), + [sym_pointer_type] = STATE(5253), + [sym_static_array_type] = STATE(5253), + [anon_sym_LPAREN] = ACTIONS(5563), [sym_comment] = ACTIONS(5), [anon_sym_LBRACK] = ACTIONS(4628), [anon_sym_COMMA] = ACTIONS(4628), [anon_sym_DOT_DOT] = ACTIONS(4626), [anon_sym_DOT_DOT_DOT] = ACTIONS(4628), - [anon_sym_DASH_GT] = ACTIONS(5575), + [anon_sym_DASH_GT] = ACTIONS(5577), [anon_sym_DOT] = ACTIONS(4626), [anon_sym_LT] = ACTIONS(4626), [anon_sym_EQ] = ACTIONS(4626), @@ -355489,17 +358803,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE] = ACTIONS(4628), [anon_sym_AMP_STAR] = ACTIONS(4626), [anon_sym_AMP_STAR_STAR] = ACTIONS(4628), - [anon_sym_typeof] = ACTIONS(5558), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(5560), - [sym_self] = ACTIONS(5562), - [sym_underscore_type] = ACTIONS(5562), + [anon_sym_typeof] = ACTIONS(5553), + [sym__constant_segment] = ACTIONS(3323), + [anon_sym_COLON_COLON] = ACTIONS(5555), + [sym_self] = ACTIONS(5557), + [sym_underscore_type] = ACTIONS(5557), [anon_sym_QMARK] = ACTIONS(4628), [anon_sym_AMP_AMP] = ACTIONS(4628), [anon_sym_PIPE_PIPE] = ACTIONS(4628), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5564), - [sym__start_of_named_tuple_type] = ACTIONS(5566), + [sym__start_of_tuple_type] = ACTIONS(5559), + [sym__start_of_named_tuple_type] = ACTIONS(5561), [sym__start_of_index_operator] = ACTIONS(4628), [sym__end_of_with_expression] = ACTIONS(4628), [sym_binary_plus] = ACTIONS(4628), @@ -355514,240 +358828,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__modulo_operator] = ACTIONS(4628), [sym__heredoc_body_start] = ACTIONS(7), }, - [2270] = { - [sym_heredoc_body] = STATE(2270), - [sym_typeof] = STATE(5267), - [sym_constant] = STATE(5084), - [sym__type] = STATE(5082), - [sym_class_type] = STATE(5267), - [sym_union_type] = STATE(5267), - [sym__parenthesized_type] = STATE(5267), - [sym_no_args_proc_type] = STATE(5267), - [sym_parenthesized_proc_type] = STATE(5267), - [sym_tuple_type] = STATE(5267), - [sym_named_tuple_type] = STATE(5267), - [sym_generic_instance_type] = STATE(5267), - [sym_nilable_type] = STATE(5267), - [sym_pointer_type] = STATE(5267), - [sym_static_array_type] = STATE(5267), - [anon_sym_LPAREN] = ACTIONS(5553), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4678), - [anon_sym_COMMA] = ACTIONS(4678), - [anon_sym_DOT_DOT] = ACTIONS(4676), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4678), - [anon_sym_DASH_GT] = ACTIONS(5577), - [anon_sym_DOT] = ACTIONS(4676), - [anon_sym_LT] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(4676), - [anon_sym_STAR] = ACTIONS(4678), - [anon_sym_PIPE] = ACTIONS(4676), - [anon_sym_CARET] = ACTIONS(4678), - [anon_sym_GT_GT] = ACTIONS(4678), - [anon_sym_LT_LT] = ACTIONS(4678), - [anon_sym_EQ_EQ] = ACTIONS(4676), - [anon_sym_BANG_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ] = ACTIONS(4676), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_GT_EQ] = ACTIONS(4678), - [anon_sym_LT_EQ_GT] = ACTIONS(4678), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), - [anon_sym_BANG_TILDE] = ACTIONS(4678), - [anon_sym_EQ_TILDE] = ACTIONS(4678), - [anon_sym_AMP_STAR] = ACTIONS(4676), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4678), - [anon_sym_typeof] = ACTIONS(5558), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(5560), - [sym_self] = ACTIONS(5562), - [sym_underscore_type] = ACTIONS(5562), - [anon_sym_QMARK] = ACTIONS(4678), - [anon_sym_AMP_AMP] = ACTIONS(4678), - [anon_sym_PIPE_PIPE] = ACTIONS(4678), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5564), - [sym__start_of_named_tuple_type] = ACTIONS(5566), - [sym__start_of_index_operator] = ACTIONS(4678), - [sym__end_of_with_expression] = ACTIONS(4678), - [sym_binary_plus] = ACTIONS(4678), - [sym_binary_minus] = ACTIONS(4678), - [sym_binary_wrapping_plus] = ACTIONS(4678), - [sym_binary_wrapping_minus] = ACTIONS(4678), - [sym__binary_star] = ACTIONS(4678), - [sym__binary_double_star] = ACTIONS(4678), - [sym_binary_ampersand] = ACTIONS(4678), - [sym__binary_slash] = ACTIONS(4678), - [sym__binary_double_slash] = ACTIONS(4678), - [sym__modulo_operator] = ACTIONS(4678), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2271] = { - [sym_heredoc_body] = STATE(2271), - [sym_typeof] = STATE(5267), - [sym_constant] = STATE(5084), - [sym__type] = STATE(5197), - [sym_class_type] = STATE(5267), - [sym_union_type] = STATE(5267), - [sym__parenthesized_type] = STATE(5267), - [sym_no_args_proc_type] = STATE(5267), - [sym_parenthesized_proc_type] = STATE(5267), - [sym_tuple_type] = STATE(5267), - [sym_named_tuple_type] = STATE(5267), - [sym_generic_instance_type] = STATE(5267), - [sym_nilable_type] = STATE(5267), - [sym_pointer_type] = STATE(5267), - [sym_static_array_type] = STATE(5267), - [anon_sym_LPAREN] = ACTIONS(5573), + [2294] = { + [sym_heredoc_body] = STATE(2294), + [sym_typeof] = STATE(5025), + [sym_constant] = STATE(4768), + [sym__type] = STATE(5047), + [sym_class_type] = STATE(5025), + [sym_union_type] = STATE(5025), + [sym__parenthesized_type] = STATE(5025), + [sym_no_args_proc_type] = STATE(5025), + [sym_parenthesized_proc_type] = STATE(5025), + [sym_tuple_type] = STATE(5025), + [sym_named_tuple_type] = STATE(5025), + [sym_generic_instance_type] = STATE(5025), + [sym_nilable_type] = STATE(5025), + [sym_pointer_type] = STATE(5025), + [sym_static_array_type] = STATE(5025), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5493), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4656), - [anon_sym_COMMA] = ACTIONS(4656), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4656), - [anon_sym_DASH_GT] = ACTIONS(5575), - [anon_sym_DOT] = ACTIONS(4654), - [anon_sym_LT] = ACTIONS(4654), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_STAR] = ACTIONS(4656), - [anon_sym_PIPE] = ACTIONS(4654), - [anon_sym_CARET] = ACTIONS(4656), - [anon_sym_GT_GT] = ACTIONS(4656), - [anon_sym_LT_LT] = ACTIONS(4656), - [anon_sym_EQ_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4656), - [anon_sym_LT_EQ_GT] = ACTIONS(4656), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), - [anon_sym_BANG_TILDE] = ACTIONS(4656), - [anon_sym_EQ_TILDE] = ACTIONS(4656), - [anon_sym_AMP_STAR] = ACTIONS(4654), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4656), - [anon_sym_typeof] = ACTIONS(5558), - [sym__constant_segment] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(5560), - [sym_self] = ACTIONS(5562), - [sym_underscore_type] = ACTIONS(5562), - [anon_sym_QMARK] = ACTIONS(4656), - [anon_sym_AMP_AMP] = ACTIONS(4656), - [anon_sym_PIPE_PIPE] = ACTIONS(4656), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(5495), + [anon_sym_DOT] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4720), + [anon_sym_CARET] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4722), + [anon_sym_LT_EQ_GT] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4722), + [anon_sym_BANG_TILDE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_AMP_STAR] = ACTIONS(4720), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4722), + [anon_sym_typeof] = ACTIONS(5497), + [sym__constant_segment] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(5499), + [sym_self] = ACTIONS(5501), + [sym_underscore_type] = ACTIONS(5501), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_then] = ACTIONS(4722), + [sym__line_break] = ACTIONS(4722), [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5564), - [sym__start_of_named_tuple_type] = ACTIONS(5566), - [sym__start_of_index_operator] = ACTIONS(4656), - [sym__end_of_with_expression] = ACTIONS(4656), - [sym_binary_plus] = ACTIONS(4656), - [sym_binary_minus] = ACTIONS(4656), - [sym_binary_wrapping_plus] = ACTIONS(4656), - [sym_binary_wrapping_minus] = ACTIONS(4656), - [sym__binary_star] = ACTIONS(4656), - [sym__binary_double_star] = ACTIONS(4656), - [sym_binary_ampersand] = ACTIONS(4656), - [sym__binary_slash] = ACTIONS(4656), - [sym__binary_double_slash] = ACTIONS(4656), - [sym__modulo_operator] = ACTIONS(4656), + [sym__start_of_tuple_type] = ACTIONS(5503), + [sym__start_of_named_tuple_type] = ACTIONS(5505), + [sym__start_of_index_operator] = ACTIONS(4722), + [sym_binary_plus] = ACTIONS(4722), + [sym_binary_minus] = ACTIONS(4722), + [sym_binary_wrapping_plus] = ACTIONS(4722), + [sym_binary_wrapping_minus] = ACTIONS(4722), + [sym__binary_star] = ACTIONS(4722), + [sym__binary_double_star] = ACTIONS(4722), + [sym_binary_ampersand] = ACTIONS(4722), + [sym__binary_slash] = ACTIONS(4722), + [sym__binary_double_slash] = ACTIONS(4722), + [sym__modulo_operator] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2272), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5393), 14, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(5391), 46, - 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, - 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, - [75] = 16, + [0] = 16, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5529), 1, + ACTIONS(5524), 1, + anon_sym_LPAREN, + ACTIONS(5526), 1, + anon_sym_DASH_GT, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5541), 1, - anon_sym_DASH_GT, - STATE(2273), 1, + STATE(2295), 1, sym_heredoc_body, - STATE(4891), 1, + STATE(4959), 1, sym_constant, - STATE(5099), 1, + STATE(5085), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, ACTIONS(4698), 10, @@ -355761,7 +358938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - STATE(5124), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -355802,14 +358979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [172] = 8, + [97] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(719), 1, + ACTIONS(481), 1, anon_sym_EQ, - STATE(2274), 1, + STATE(2296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -355828,7 +359003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(721), 17, + ACTIONS(517), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -355846,8 +359021,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(173), 28, - sym__line_break, + ACTIONS(173), 29, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -355858,13 +359032,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_BANG_EQ, @@ -355875,33 +359048,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [253] = 16, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [176] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2297), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5580), 23, + 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, + sym_private, + sym_protected, + anon_sym_begin, + anon_sym_while, + anon_sym_until, + anon_sym_case, + anon_sym_select, + ACTIONS(5582), 37, + 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_global_match_data_index, + sym_identifier_method_call, + sym_instance_var, + sym_class_var, + aux_sym_asm_token1, + [251] = 16, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5529), 1, + ACTIONS(5524), 1, + anon_sym_LPAREN, + ACTIONS(5526), 1, + anon_sym_DASH_GT, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5539), 1, - anon_sym_LPAREN, - ACTIONS(5541), 1, - anon_sym_DASH_GT, - STATE(2275), 1, + STATE(2298), 1, sym_heredoc_body, - STATE(4891), 1, + STATE(4959), 1, sym_constant, - STATE(5097), 1, + STATE(5086), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, ACTIONS(4720), 10, @@ -355915,7 +359161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - STATE(5124), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -355956,10 +359202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [350] = 5, + [348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2276), 1, + STATE(2299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -356026,14 +359272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [425] = 8, + [423] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(719), 1, anon_sym_EQ, - ACTIONS(5571), 1, + ACTIONS(5573), 1, anon_sym_COLON2, - STATE(2277), 1, + STATE(2300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -356099,82 +359345,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [506] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2278), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5580), 23, - 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, - sym_private, - sym_protected, - anon_sym_begin, - anon_sym_while, - anon_sym_until, - anon_sym_case, - anon_sym_select, - ACTIONS(5582), 37, - 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_global_match_data_index, - sym_identifier_method_call, - sym_instance_var, - sym_class_var, - aux_sym_asm_token1, - [581] = 7, + [504] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(481), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(719), 1, anon_sym_EQ, - STATE(2279), 1, + STATE(2301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -356193,7 +359371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(517), 17, + ACTIONS(721), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -356211,7 +359389,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(173), 29, + ACTIONS(173), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -356222,12 +359401,66 @@ static const uint16_t ts_small_parse_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_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, + [585] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2302), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5393), 14, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5391), 46, + 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_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_BANG_EQ, @@ -356238,15 +359471,29 @@ 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, + 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, [660] = 7, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(611), 1, anon_sym_EQ, - STATE(2280), 1, + STATE(2303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -356313,10 +359560,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [739] = 5, + [739] = 16, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3323), 1, + sym__constant_segment, + ACTIONS(5549), 1, + anon_sym_LPAREN, + ACTIONS(5551), 1, + anon_sym_DASH_GT, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, + anon_sym_COLON_COLON, + ACTIONS(5559), 1, + sym__start_of_tuple_type, + ACTIONS(5561), 1, + sym__start_of_named_tuple_type, + STATE(2304), 1, + sym_heredoc_body, + STATE(5137), 1, + sym_constant, + STATE(5297), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5557), 2, + sym_self, + sym_underscore_type, + ACTIONS(4698), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + STATE(5253), 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(4700), 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, + [835] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2281), 1, + STATE(2305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -356382,14 +359709,14 @@ static const uint16_t ts_small_parse_table[] = { sym_instance_var, sym_class_var, aux_sym_asm_token1, - [813] = 8, + [909] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(731), 1, anon_sym_EQ, ACTIONS(5588), 1, anon_sym_COLON2, - STATE(2282), 1, + STATE(2306), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -356454,92 +359781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [893] = 16, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5558), 1, - anon_sym_typeof, - ACTIONS(5560), 1, - anon_sym_COLON_COLON, - ACTIONS(5564), 1, - sym__start_of_tuple_type, - ACTIONS(5566), 1, - sym__start_of_named_tuple_type, - ACTIONS(5573), 1, - anon_sym_LPAREN, - ACTIONS(5575), 1, - anon_sym_DASH_GT, - STATE(2283), 1, - sym_heredoc_body, - STATE(5084), 1, - sym_constant, - STATE(5322), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5562), 2, - sym_self, - sym_underscore_type, - ACTIONS(4698), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - STATE(5267), 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(4700), 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, [989] = 7, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(719), 1, anon_sym_EQ, - STATE(2284), 1, + STATE(2307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -356608,30 +359855,30 @@ static const uint16_t ts_small_parse_table[] = { [1067] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5558), 1, + ACTIONS(5549), 1, + anon_sym_LPAREN, + ACTIONS(5551), 1, + anon_sym_DASH_GT, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(5573), 1, - anon_sym_LPAREN, - ACTIONS(5575), 1, - anon_sym_DASH_GT, - STATE(2285), 1, + STATE(2308), 1, sym_heredoc_body, - STATE(5084), 1, + STATE(5137), 1, sym_constant, - STATE(5305), 1, + STATE(5437), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, ACTIONS(4720), 9, @@ -356644,7 +359891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - STATE(5267), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -356685,83 +359932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [1163] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(855), 1, - anon_sym_EQ, - ACTIONS(5590), 1, - anon_sym_COLON2, - STATE(2286), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 13, - anon_sym_DOT_DOT, - anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(861), 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(173), 26, - 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_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_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_then, - [1242] = 7, + [1163] = 7, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(731), 1, anon_sym_EQ, - STATE(2287), 1, + STATE(2309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -356826,148 +360002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1319] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5592), 1, - anon_sym_COLON_COLON, - STATE(2288), 1, - sym_heredoc_body, - STATE(2294), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4851), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4853), 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, - [1395] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2289), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5405), 14, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(5403), 43, - 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_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - 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, - anon_sym_then, - [1467] = 7, + [1240] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(855), 1, anon_sym_EQ, - STATE(2290), 1, + ACTIONS(5590), 1, + anon_sym_COLON2, + STATE(2310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -357031,19 +360073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_do, anon_sym_then, - [1543] = 7, + [1319] = 7, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5592), 1, anon_sym_COLON_COLON, - STATE(2291), 1, + STATE(2311), 1, sym_heredoc_body, - STATE(2294), 1, + STATE(2318), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -357053,7 +360095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 46, + ACTIONS(4847), 46, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357100,15 +360142,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1619] = 5, + [1395] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2292), 1, + ACTIONS(893), 1, + anon_sym_EQ, + ACTIONS(5594), 1, + anon_sym_COLON2, + STATE(2312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5393), 14, + ACTIONS(195), 14, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_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_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(929), 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(173), 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, + [1473] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2313), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5405), 14, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -357123,7 +360235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5391), 43, + ACTIONS(5403), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357167,18 +360279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_do, anon_sym_then, - [1691] = 7, + [1545] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5592), 1, + ACTIONS(5596), 1, anon_sym_COLON_COLON, - STATE(2288), 1, - aux_sym_constant_repeat1, - STATE(2293), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, + STATE(2314), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, @@ -357236,18 +360347,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1767] = 6, + [1619] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5594), 1, + ACTIONS(5592), 1, anon_sym_COLON_COLON, + STATE(2314), 1, + aux_sym_constant_repeat1, + STATE(2315), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2294), 2, - sym_heredoc_body, + ACTIONS(4845), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4847), 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, + [1695] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5592), 1, + anon_sym_COLON_COLON, + STATE(2315), 1, aux_sym_constant_repeat1, - ACTIONS(4844), 9, + STATE(2316), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -357257,7 +360438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 46, + ACTIONS(4857), 46, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357304,20 +360485,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1841] = 8, + [1771] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(893), 1, + ACTIONS(855), 1, anon_sym_EQ, - ACTIONS(5597), 1, - anon_sym_COLON2, - STATE(2295), 1, + STATE(2317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 14, - anon_sym_RBRACK, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -357331,7 +360509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(929), 17, + ACTIONS(861), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -357349,7 +360527,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(173), 24, + ACTIONS(173), 26, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -357362,6 +360541,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, @@ -357372,21 +360552,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_do, - [1919] = 7, + anon_sym_then, + [1847] = 7, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5592), 1, anon_sym_COLON_COLON, - STATE(2291), 1, + STATE(2314), 1, aux_sym_constant_repeat1, - STATE(2296), 1, + STATE(2318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -357396,7 +360576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 46, + ACTIONS(4853), 46, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357443,25 +360623,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1995] = 5, + [1923] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2297), 1, + STATE(2319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(5393), 14, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, 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, - ACTIONS(4846), 47, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5391), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357474,24 +360659,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, @@ -357499,32 +360670,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_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, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [2066] = 8, + anon_sym_then, + [1995] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(5599), 1, - anon_sym_COLON2, - STATE(2298), 1, + STATE(2320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(5405), 15, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT_GT, @@ -357535,28 +360714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1121), 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(173), 24, + ACTIONS(5403), 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, @@ -357577,13 +360737,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_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, - [2143] = 7, + [2066] = 7, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(893), 1, anon_sym_EQ, - STATE(2299), 1, + STATE(2321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -357646,20 +360824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_do, - [2218] = 5, + [2141] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2300), 1, + ACTIONS(1023), 1, + anon_sym_EQ, + ACTIONS(5599), 1, + anon_sym_COLON2, + STATE(2322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5405), 15, - anon_sym_RBRACK, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT_GT, @@ -357670,9 +360850,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5403), 41, + ACTIONS(1059), 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(173), 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, @@ -357693,37 +360892,16 @@ static const 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, - [2289] = 6, + [2218] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5601), 1, - anon_sym_COLON_COLON, + STATE(2323), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2301), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -357733,8 +360911,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 45, + ACTIONS(4840), 47, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -357759,7 +360938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - aux_sym_top_level_fun_def_token1, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -357771,38 +360949,42 @@ 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, - [2362] = 7, + [2289] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5604), 1, - anon_sym_COLON_COLON, - STATE(2301), 1, - aux_sym_constant_repeat1, - STATE(2302), 1, + STATE(2324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, + ACTIONS(5393), 15, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, 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, - ACTIONS(4853), 45, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5391), 41, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -357813,25 +360995,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, - aux_sym_top_level_fun_def_token1, - 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, @@ -357839,27 +361005,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_else, - anon_sym_when, - anon_sym_in, - [2437] = 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, + [2360] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5604), 1, + ACTIONS(5601), 1, anon_sym_COLON_COLON, - STATE(2301), 1, - aux_sym_constant_repeat1, - STATE(2303), 1, + STATE(2325), 1, sym_heredoc_body, + STATE(2328), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -357869,7 +361047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 45, + ACTIONS(4857), 45, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -357915,19 +361093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [2512] = 7, + [2435] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5604), 1, + ACTIONS(5601), 1, anon_sym_COLON_COLON, - STATE(2302), 1, - aux_sym_constant_repeat1, - STATE(2304), 1, + STATE(2326), 1, sym_heredoc_body, + STATE(2330), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -357937,7 +361115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 45, + ACTIONS(4847), 45, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -357983,20 +361161,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [2587] = 5, + [2510] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2305), 1, + ACTIONS(763), 1, + anon_sym_EQ, + ACTIONS(5603), 1, + anon_sym_COLON2, + STATE(2327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5393), 15, - anon_sym_RBRACK, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT_GT, @@ -358007,8 +361187,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5391), 41, - sym__start_of_brace_block, + ACTIONS(799), 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(173), 24, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -358020,6 +361218,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, @@ -358030,38 +361229,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_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, - [2658] = 7, + anon_sym_then, + [2587] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5604), 1, + ACTIONS(5601), 1, anon_sym_COLON_COLON, - STATE(2303), 1, - aux_sym_constant_repeat1, - STATE(2306), 1, + STATE(2328), 1, sym_heredoc_body, + STATE(2329), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -358071,7 +361252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 45, + ACTIONS(4847), 45, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -358117,51 +361298,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [2733] = 8, + [2662] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(763), 1, - anon_sym_EQ, - ACTIONS(5606), 1, - anon_sym_COLON2, - STATE(2307), 1, - sym_heredoc_body, + ACTIONS(5605), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + STATE(2329), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(799), 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(173), 24, + ACTIONS(4840), 45, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -358173,10 +361331,25 @@ static const uint16_t ts_small_parse_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, + aux_sym_top_level_fun_def_token1, + 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, @@ -358184,52 +361357,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_then, - [2810] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [2735] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1133), 1, - anon_sym_EQ, - STATE(2308), 1, + ACTIONS(5601), 1, + anon_sym_COLON_COLON, + STATE(2329), 1, + aux_sym_constant_repeat1, + STATE(2330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1155), 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(173), 24, - sym__start_of_brace_block, + ACTIONS(4853), 45, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -358240,9 +361399,25 @@ static const uint16_t ts_small_parse_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, + aux_sym_top_level_fun_def_token1, + 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, @@ -358250,31 +361425,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_COLON2, - anon_sym_do, - [2884] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [2810] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5608), 1, - anon_sym_PIPE, - STATE(2309), 1, + anon_sym_LPAREN2, + STATE(2331), 1, sym_heredoc_body, - STATE(2322), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 45, + ACTIONS(4902), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358320,26 +361499,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [2958] = 5, + [2882] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2310), 1, + ACTIONS(5610), 1, + anon_sym_LBRACK, + ACTIONS(5612), 1, + anon_sym_DOT, + ACTIONS(5614), 1, + anon_sym_STAR, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5618), 1, + anon_sym_QMARK, + STATE(2332), 1, sym_heredoc_body, + STATE(2335), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 46, + ACTIONS(4898), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -358359,13 +361549,10 @@ 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, - aux_sym_top_level_fun_def_token1, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -358376,21 +361563,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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [3028] = 7, + [2964] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1115), 1, + ACTIONS(1171), 1, anon_sym_EQ, - STATE(2311), 1, + STATE(2333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -358409,7 +361594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1121), 17, + ACTIONS(1175), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -358430,7 +361615,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(173), 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, @@ -358451,12 +361635,11 @@ 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, - [3102] = 11, + [3038] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5608), 1, - anon_sym_PIPE, ACTIONS(5610), 1, anon_sym_LBRACK, ACTIONS(5612), 1, @@ -358464,23 +361647,89 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5614), 1, anon_sym_STAR, ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5618), 1, anon_sym_QMARK, - STATE(2309), 1, + STATE(2334), 1, + sym_heredoc_body, + STATE(2335), 1, aux_sym_union_type_repeat1, - STATE(2312), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4859), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4861), 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_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_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [3120] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5616), 1, + anon_sym_PIPE, + STATE(2335), 1, sym_heredoc_body, + STATE(2347), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(4881), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 42, + ACTIONS(4883), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358502,10 +361751,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, @@ -358516,6 +361767,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, @@ -358523,12 +361775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3184] = 7, + [3194] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(763), 1, + ACTIONS(1171), 1, anon_sym_EQ, - STATE(2313), 1, + STATE(2336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -358547,7 +361799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(799), 17, + ACTIONS(1175), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -358566,7 +361818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, ACTIONS(173), 24, - sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -358578,7 +361830,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, @@ -358589,11 +361840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_then, - [3258] = 5, + anon_sym_COLON2, + anon_sym_do, + [3268] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2314), 1, + STATE(2337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -358655,19 +361907,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, anon_sym_do, - [3328] = 5, + [3338] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2315), 1, + ACTIONS(983), 1, + anon_sym_EQ, + ACTIONS(5620), 1, + anon_sym_COLON2, + STATE(2338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5393), 14, + ACTIONS(195), 14, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT_GT, @@ -358678,8 +361934,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5391), 41, - sym__line_break, + ACTIONS(989), 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(173), 22, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -358691,7 +361964,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, @@ -358702,29 +361974,10 @@ 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_then, - [3398] = 11, + anon_sym_RBRACK_QMARK, + [3414] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5608), 1, - anon_sym_PIPE, ACTIONS(5610), 1, anon_sym_LBRACK, ACTIONS(5612), 1, @@ -358732,15 +361985,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5614), 1, anon_sym_STAR, ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5618), 1, anon_sym_QMARK, - STATE(2309), 1, + STATE(2335), 1, aux_sym_union_type_repeat1, - STATE(2316), 1, + STATE(2339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(4877), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -358748,7 +362003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 42, + ACTIONS(4879), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358791,10 +362046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3480] = 5, + [3496] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2317), 1, + STATE(2340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -358856,17 +362111,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, anon_sym_do, - [3550] = 6, + [3566] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5618), 1, - anon_sym_LPAREN2, - STATE(2318), 1, + ACTIONS(1023), 1, + anon_sym_EQ, + STATE(2341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(195), 13, + anon_sym_DOT_DOT, + anon_sym_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_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1059), 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(173), 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, + 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_do, + [3640] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2335), 1, + aux_sym_union_type_repeat1, + STATE(2342), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -358876,7 +362198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 45, + ACTIONS(4875), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358922,15 +362244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3622] = 5, + [3712] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2319), 1, + STATE(2343), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5405), 14, + ACTIONS(5393), 14, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -358945,7 +362267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5403), 41, + ACTIONS(5391), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -358987,11 +362309,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, anon_sym_then, - [3692] = 11, + [3782] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5608), 1, + ACTIONS(763), 1, + anon_sym_EQ, + STATE(2344), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(195), 13, + anon_sym_DOT_DOT, + anon_sym_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_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(799), 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(173), 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, + anon_sym_then, + [3856] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, ACTIONS(5610), 1, anon_sym_LBRACK, ACTIONS(5612), 1, @@ -358999,15 +362386,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5614), 1, anon_sym_STAR, ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5618), 1, anon_sym_QMARK, - STATE(2309), 1, + STATE(2335), 1, aux_sym_union_type_repeat1, - STATE(2320), 1, + STATE(2345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(4892), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -359015,7 +362404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 42, + ACTIONS(4894), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359058,29 +362447,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3774] = 6, + [3938] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2309), 1, - aux_sym_union_type_repeat1, - STATE(2321), 1, + STATE(2346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5405), 14, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, 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, - ACTIONS(4875), 45, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5403), 41, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -359091,24 +362482,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, @@ -359117,22 +362494,33 @@ 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, - [3846] = 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, + anon_sym_then, + [4008] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5620), 1, + ACTIONS(5622), 1, anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2322), 2, + STATE(2347), 2, sym_heredoc_body, aux_sym_union_type_repeat1, ACTIONS(4873), 8, @@ -359190,172 +362578,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3918] = 7, + [4080] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1133), 1, - anon_sym_EQ, - STATE(2323), 1, + STATE(2348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1155), 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(173), 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_COLON2, - anon_sym_do, - [3992] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(983), 1, anon_sym_EQ, - ACTIONS(5623), 1, - anon_sym_COLON2, - STATE(2324), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 14, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(989), 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(173), 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, - [4068] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5612), 1, - anon_sym_DOT, - ACTIONS(5614), 1, - anon_sym_STAR, - ACTIONS(5616), 1, - anon_sym_QMARK, - STATE(2309), 1, - aux_sym_union_type_repeat1, - STATE(2325), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4884), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 42, + ACTIONS(4840), 46, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -359375,10 +362617,13 @@ 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, + aux_sym_top_level_fun_def_token1, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -359389,9 +362634,11 @@ 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, @@ -359399,8 +362646,6 @@ static const uint16_t ts_small_parse_table[] = { [4150] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5608), 1, - anon_sym_PIPE, ACTIONS(5610), 1, anon_sym_LBRACK, ACTIONS(5612), 1, @@ -359408,15 +362653,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5614), 1, anon_sym_STAR, ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5618), 1, anon_sym_QMARK, - STATE(2309), 1, + STATE(2335), 1, aux_sym_union_type_repeat1, - STATE(2326), 1, + STATE(2349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -359424,7 +362671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 42, + ACTIONS(4890), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359470,12 +362717,12 @@ static const uint16_t ts_small_parse_table[] = { [4232] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2327), 1, + STATE(2350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -359485,7 +362732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 45, + ACTIONS(4932), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359531,28 +362778,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4301] = 7, + [4301] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5625), 1, - anon_sym_PIPE, - STATE(2328), 1, + ACTIONS(1237), 1, + anon_sym_COLON, + ACTIONS(5592), 1, + anon_sym_COLON_COLON, + STATE(2315), 1, + aux_sym_constant_repeat1, + STATE(2351), 1, sym_heredoc_body, - STATE(2344), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4855), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 44, + ACTIONS(4857), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359574,11 +362823,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, @@ -359589,6 +362836,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, @@ -359597,25 +362845,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4374] = 5, + [4376] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2329), 1, + ACTIONS(5625), 1, + anon_sym_PIPE, + STATE(2352), 1, sym_heredoc_body, + STATE(2353), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 45, + ACTIONS(4883), 44, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359640,7 +362891,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, @@ -359661,30 +362911,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4443] = 8, + [4449] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1237), 1, - anon_sym_COLON, - ACTIONS(5592), 1, - anon_sym_COLON_COLON, - STATE(2291), 1, - aux_sym_constant_repeat1, - STATE(2330), 1, - sym_heredoc_body, + ACTIONS(5627), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + STATE(2353), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 43, + ACTIONS(4875), 44, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359706,9 +362953,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, @@ -359719,7 +362968,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, @@ -359728,7 +362976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4518] = 11, + [4520] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5610), 1, @@ -359737,18 +362985,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(5614), 1, anon_sym_STAR, - ACTIONS(5616), 1, + ACTIONS(5618), 1, anon_sym_QMARK, ACTIONS(5625), 1, anon_sym_PIPE, - STATE(2328), 1, + STATE(2352), 1, aux_sym_union_type_repeat1, - STATE(2331), 1, + STATE(2354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -359756,7 +363004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 41, + ACTIONS(4890), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359798,15 +363046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4599] = 5, + [4601] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2332), 1, + STATE(2355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -359816,7 +363064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 45, + ACTIONS(4948), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359862,31 +363110,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4668] = 5, + [4670] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2333), 1, + STATE(2356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5393), 15, - anon_sym_RBRACK, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(5391), 39, + ACTIONS(4912), 45, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -359897,9 +363141,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, @@ -359908,70 +363167,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_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, - [4737] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [4739] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1181), 1, - anon_sym_EQ, - ACTIONS(5627), 1, - anon_sym_COLON2, - STATE(2334), 1, + STATE(2357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1183), 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(173), 22, + ACTIONS(4902), 45, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -359982,9 +363205,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, @@ -359993,25 +363231,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [4812] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [4808] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2335), 1, + ACTIONS(277), 1, + sym__string_literal_start, + ACTIONS(5630), 1, + anon_sym_COLON, + STATE(2358), 1, sym_heredoc_body, + STATE(2412), 1, + aux_sym_chained_string_repeat1, + STATE(2488), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 45, + ACTIONS(173), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360033,12 +363285,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, @@ -360057,35 +363306,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4881] = 11, + [4885] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5612), 1, - anon_sym_DOT, - ACTIONS(5614), 1, - anon_sym_STAR, - ACTIONS(5616), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_PIPE, - STATE(2328), 1, - aux_sym_union_type_repeat1, - STATE(2336), 1, + STATE(2359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(4974), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 41, + ACTIONS(4976), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360107,9 +363346,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, @@ -360120,6 +363362,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, @@ -360127,35 +363370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4962] = 11, + [4954] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5612), 1, - anon_sym_DOT, - ACTIONS(5614), 1, - anon_sym_STAR, - ACTIONS(5616), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_PIPE, - STATE(2328), 1, - aux_sym_union_type_repeat1, - STATE(2337), 1, + STATE(2360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, + ACTIONS(4906), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 41, + ACTIONS(4908), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360177,9 +363410,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, @@ -360190,6 +363426,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, @@ -360197,25 +363434,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5043] = 5, + [5023] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2338), 1, + ACTIONS(5610), 1, + anon_sym_LBRACK, + ACTIONS(5612), 1, + anon_sym_DOT, + ACTIONS(5614), 1, + anon_sym_STAR, + ACTIONS(5618), 1, + anon_sym_QMARK, + ACTIONS(5625), 1, + anon_sym_PIPE, + STATE(2352), 1, + aux_sym_union_type_repeat1, + STATE(2361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 45, + ACTIONS(4894), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360237,12 +363484,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, @@ -360253,7 +363497,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, @@ -360261,12 +363504,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5112] = 7, + [5104] = 7, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(983), 1, anon_sym_EQ, - STATE(2339), 1, + STATE(2362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -360327,15 +363570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, - [5185] = 5, + [5177] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2340), 1, + STATE(2363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -360345,7 +363588,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 45, + ACTIONS(4956), 45, + 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_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [5246] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2364), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4958), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4960), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360391,10 +363698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5254] = 5, + [5315] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2341), 1, + STATE(2365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -360455,15 +363762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5323] = 5, + [5384] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2342), 1, + STATE(2366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -360473,7 +363780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 45, + ACTIONS(4964), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360519,7 +363826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5392] = 11, + [5453] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(5610), 1, @@ -360528,18 +363835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(5614), 1, anon_sym_STAR, - ACTIONS(5616), 1, + ACTIONS(5618), 1, anon_sym_QMARK, ACTIONS(5625), 1, anon_sym_PIPE, - STATE(2328), 1, + STATE(2352), 1, aux_sym_union_type_repeat1, - STATE(2343), 1, + STATE(2367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(4970), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -360547,7 +363854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 41, + ACTIONS(4972), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360589,29 +363896,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5473] = 6, + [5534] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5629), 1, - anon_sym_PIPE, + ACTIONS(1181), 1, + anon_sym_EQ, + ACTIONS(5632), 1, + anon_sym_COLON2, + STATE(2368), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2344), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + 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, - ACTIONS(4875), 44, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1183), 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(173), 22, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -360622,23 +363952,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_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, @@ -360647,24 +363963,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_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [5544] = 6, + [5609] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2328), 1, - aux_sym_union_type_repeat1, - STATE(2345), 1, + STATE(2369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -360674,7 +363981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 44, + ACTIONS(4916), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360699,6 +364006,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, @@ -360719,28 +364027,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5615] = 5, + [5678] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2346), 1, + ACTIONS(1113), 1, + anon_sym_EQ, + ACTIONS(5634), 1, + anon_sym_COLON2, + STATE(2370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, 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, - ACTIONS(4944), 45, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1119), 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(173), 22, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -360750,24 +364083,55 @@ static const uint16_t ts_small_parse_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_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + [5753] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2371), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5393), 15, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5391), 39, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_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, @@ -360776,42 +364140,43 @@ 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, - [5684] = 11, + 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, + [5822] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5612), 1, - anon_sym_DOT, - ACTIONS(5614), 1, - anon_sym_STAR, - ACTIONS(5616), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_PIPE, - STATE(2328), 1, - aux_sym_union_type_repeat1, - STATE(2347), 1, + STATE(2372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(4966), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 41, + ACTIONS(4968), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360833,9 +364198,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, @@ -360846,6 +364214,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, @@ -360853,53 +364222,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5765] = 8, + [5891] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1023), 1, - anon_sym_EQ, - ACTIONS(5632), 1, - anon_sym_COLON2, - STATE(2348), 1, + STATE(2373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1059), 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(173), 22, + ACTIONS(4920), 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, @@ -360909,9 +364253,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, @@ -360920,25 +364279,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [5840] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [5960] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2349), 1, + ACTIONS(5610), 1, + anon_sym_LBRACK, + ACTIONS(5612), 1, + anon_sym_DOT, + ACTIONS(5614), 1, + anon_sym_STAR, + ACTIONS(5618), 1, + anon_sym_QMARK, + ACTIONS(5625), 1, + anon_sym_PIPE, + STATE(2352), 1, + aux_sym_union_type_repeat1, + STATE(2374), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(4922), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 45, + ACTIONS(4924), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -360960,12 +364336,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, @@ -360976,7 +364349,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, @@ -360984,15 +364356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5909] = 5, + [6041] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2350), 1, + STATE(2375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -361002,7 +364374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 45, + ACTIONS(4928), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -361048,32 +364420,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5978] = 9, + [6110] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(277), 1, - sym__string_literal_start, - ACTIONS(5634), 1, - anon_sym_COLON, - STATE(2351), 1, + STATE(2376), 1, sym_heredoc_body, - STATE(2359), 1, - aux_sym_chained_string_repeat1, - STATE(2461), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 42, + ACTIONS(4936), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -361095,9 +364460,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, @@ -361116,10 +364484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6055] = 5, + [6179] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2352), 1, + STATE(2377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -361180,15 +364548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [6124] = 5, + [6248] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2353), 1, + STATE(2378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -361198,7 +364566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 45, + ACTIONS(4944), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -361244,25 +364612,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6193] = 5, + [6317] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2354), 1, + ACTIONS(5610), 1, + anon_sym_LBRACK, + ACTIONS(5612), 1, + anon_sym_DOT, + ACTIONS(5614), 1, + anon_sym_STAR, + ACTIONS(5618), 1, + anon_sym_QMARK, + ACTIONS(5625), 1, + anon_sym_PIPE, + STATE(2352), 1, + aux_sym_union_type_repeat1, + STATE(2379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 45, + ACTIONS(4898), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -361284,12 +364662,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, @@ -361300,7 +364675,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, @@ -361308,15 +364682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6262] = 5, + [6398] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2355), 1, + STATE(2352), 1, + aux_sym_union_type_repeat1, + STATE(2380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -361326,7 +364702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 45, + ACTIONS(4875), 44, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -361351,7 +364727,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, @@ -361372,15 +364747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6331] = 5, + [6469] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2356), 1, + STATE(2381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -361390,7 +364765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 45, + ACTIONS(4940), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -361436,15 +364811,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6400] = 5, + [6538] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2357), 1, + ACTIONS(1133), 1, + anon_sym_EQ, + STATE(2382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(195), 13, + anon_sym_DOT_DOT, + anon_sym_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_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1155), 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(173), 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_COLON2, + [6610] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5636), 1, + anon_sym_COLON_COLON, + STATE(2383), 1, + sym_heredoc_body, + STATE(2391), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -361454,7 +364898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 45, + ACTIONS(4857), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -361469,13 +364913,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, @@ -361492,35 +364935,109 @@ 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, - [6469] = 5, + [6682] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2358), 1, + ACTIONS(1203), 1, + anon_sym_COMMA, + ACTIONS(1205), 1, + anon_sym_EQ, + ACTIONS(5588), 1, + anon_sym_COLON2, + STATE(2384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, 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, - ACTIONS(4920), 45, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 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, + [6758] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5638), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_DOT, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5646), 1, + anon_sym_QMARK, + STATE(2385), 1, + sym_heredoc_body, + STATE(2400), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4877), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4879), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361540,12 +365057,10 @@ 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, @@ -361556,40 +365071,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [6538] = 8, + [6838] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(277), 1, - sym__string_literal_start, - STATE(2359), 1, + ACTIONS(5648), 1, + anon_sym_LPAREN2, + STATE(2386), 1, sym_heredoc_body, - STATE(2371), 1, - aux_sym_chained_string_repeat1, - STATE(2461), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 42, + ACTIONS(4902), 43, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361609,9 +365118,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, @@ -361625,58 +365137,35 @@ 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, - [6612] = 9, + [6908] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(5588), 1, - anon_sym_COLON2, - ACTIONS(5640), 1, - anon_sym_EQ, - STATE(2360), 1, + ACTIONS(5636), 1, + anon_sym_COLON_COLON, + STATE(2387), 1, sym_heredoc_body, + STATE(2392), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(733), 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(173), 20, + ACTIONS(4847), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361687,8 +365176,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, @@ -361696,33 +365200,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, - [6688] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [6980] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2361), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(5653), 1, + anon_sym_DASH_GT, + STATE(2388), 1, sym_heredoc_body, + STATE(10536), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5393), 14, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(5391), 39, + ACTIONS(5022), 41, + 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, @@ -361732,9 +365243,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__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_COMMA, + 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, @@ -361743,36 +365265,24 @@ 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, - [6756] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [7054] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5642), 1, - anon_sym_COLON_COLON, - STATE(2362), 1, - sym_heredoc_body, STATE(2389), 1, - aux_sym_constant_repeat1, + sym_heredoc_body, + STATE(2400), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -361782,9 +365292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 42, + ACTIONS(4875), 43, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361797,12 +365306,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_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -361819,22 +365329,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, + anon_sym_elsif, anon_sym_else, - [6828] = 9, + anon_sym_when, + anon_sym_in, + [7124] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(5588), 1, - anon_sym_COLON2, - ACTIONS(5644), 1, + ACTIONS(1113), 1, anon_sym_EQ, - STATE(2363), 1, + STATE(2390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -361853,7 +365360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(733), 17, + ACTIONS(1119), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -361871,8 +365378,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(173), 20, + ACTIONS(173), 22, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -361883,6 +365391,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, @@ -361892,19 +365401,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [6904] = 7, + [7196] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5642), 1, + ACTIONS(5636), 1, anon_sym_COLON_COLON, - STATE(2364), 1, + STATE(2391), 1, sym_heredoc_body, - STATE(2387), 1, + STATE(2407), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -361914,7 +365423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 42, + ACTIONS(4847), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -361957,51 +365466,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [6976] = 7, + [7268] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1023), 1, - anon_sym_EQ, - STATE(2365), 1, + ACTIONS(5636), 1, + anon_sym_COLON_COLON, + STATE(2392), 1, sym_heredoc_body, + STATE(2407), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1059), 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(173), 22, + ACTIONS(4853), 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, @@ -362011,9 +365501,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, @@ -362021,16 +365525,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, - [7048] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [7340] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5646), 1, + ACTIONS(5655), 1, anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2366), 2, + STATE(2393), 2, sym_heredoc_body, aux_sym_union_type_repeat1, ACTIONS(4873), 8, @@ -362086,16 +365595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [7118] = 9, + [7410] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(1203), 1, + ACTIONS(1181), 1, anon_sym_EQ, - ACTIONS(5588), 1, - anon_sym_COLON2, - STATE(2367), 1, + STATE(2394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -362114,7 +365619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(733), 17, + ACTIONS(1183), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -362132,7 +365637,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(173), 20, + ACTIONS(173), 22, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362144,6 +365650,7 @@ 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_BANG_EQ, anon_sym_GT_EQ, @@ -362153,31 +365660,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [7194] = 7, + [7482] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5642), 1, - anon_sym_COLON_COLON, - STATE(2364), 1, - aux_sym_constant_repeat1, - STATE(2368), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, + anon_sym_COLON2, + ACTIONS(5658), 1, + anon_sym_EQ, + STATE(2395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, 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, - ACTIONS(4840), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362188,23 +365717,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, @@ -362212,35 +365726,32 @@ 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, - [7266] = 7, + [7558] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5649), 1, - anon_sym_PIPE, - STATE(2366), 1, - aux_sym_union_type_repeat1, - STATE(2369), 1, - sym_heredoc_body, + ACTIONS(5664), 1, + sym__string_literal_start, + STATE(2488), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + STATE(2396), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 43, + ACTIONS(5660), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362260,12 +365771,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, @@ -362279,23 +365787,29 @@ 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, - [7338] = 5, + [7630] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2370), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, + anon_sym_COLON2, + ACTIONS(5667), 1, + anon_sym_EQ, + STATE(2397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5405), 14, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT_GT, @@ -362306,9 +365820,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5403), 39, + ACTIONS(733), 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(173), 20, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -362319,7 +365850,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, @@ -362329,48 +365859,36 @@ 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, - [7406] = 7, + [7706] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5655), 1, - sym__string_literal_start, - STATE(2461), 1, - sym_string, + ACTIONS(5638), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_DOT, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5646), 1, + anon_sym_QMARK, + STATE(2398), 1, + sym_heredoc_body, + STATE(2400), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2371), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 42, + ACTIONS(4861), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362392,6 +365910,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, @@ -362403,40 +365922,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, - [7478] = 8, + [7786] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(277), 1, - sym__string_literal_start, - STATE(2359), 1, - aux_sym_chained_string_repeat1, - STATE(2372), 1, + ACTIONS(301), 1, + sym__start_of_brace_block, + ACTIONS(5673), 1, + anon_sym_do, + STATE(2399), 1, sym_heredoc_body, - STATE(2461), 1, - sym_string, + STATE(2552), 1, + sym_do_end_block, + STATE(2553), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 42, + ACTIONS(5669), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362472,40 +365991,32 @@ 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, - [7552] = 11, + [7862] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5649), 1, + ACTIONS(5644), 1, anon_sym_PIPE, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - STATE(2369), 1, + STATE(2393), 1, aux_sym_union_type_repeat1, - STATE(2373), 1, + STATE(2400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(4881), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 40, + ACTIONS(4883), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -362526,10 +366037,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, @@ -362540,34 +366053,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, - [7632] = 6, + [7934] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5666), 1, - anon_sym_LPAREN2, - STATE(2374), 1, + ACTIONS(277), 1, + sym__string_literal_start, + STATE(2401), 1, sym_heredoc_body, + STATE(2412), 1, + aux_sym_chained_string_repeat1, + STATE(2488), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 43, + ACTIONS(173), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362587,12 +366105,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, @@ -362606,98 +366121,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [7702] = 9, + [8008] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(731), 1, - anon_sym_EQ, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(5588), 1, - anon_sym_COLON2, - STATE(2375), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 13, - anon_sym_DOT_DOT, + ACTIONS(5638), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(733), 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(173), 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, + ACTIONS(5646), 1, anon_sym_QMARK, - [7778] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2369), 1, + STATE(2400), 1, aux_sym_union_type_repeat1, - STATE(2376), 1, + STATE(2402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 43, + ACTIONS(4890), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -362718,12 +366175,10 @@ 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, @@ -362734,99 +366189,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, - [7848] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1181), 1, - anon_sym_EQ, - STATE(2377), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 13, - anon_sym_DOT_DOT, - anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1183), 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(173), 22, - 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_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - [7920] = 11, + [8088] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5649), 1, - anon_sym_PIPE, - ACTIONS(5658), 1, + ACTIONS(5638), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, + ACTIONS(5640), 1, anon_sym_DOT, - ACTIONS(5662), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5646), 1, anon_sym_QMARK, - STATE(2369), 1, + STATE(2400), 1, aux_sym_union_type_repeat1, - STATE(2378), 1, + STATE(2403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(4896), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -362834,7 +366223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 40, + ACTIONS(4898), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -362875,24 +366264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [8000] = 9, + [8168] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(5588), 1, - anon_sym_COLON2, - ACTIONS(5668), 1, - anon_sym_EQ, - STATE(2379), 1, + STATE(2404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(5393), 14, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT_GT, @@ -362903,26 +366287,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(733), 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(173), 20, + ACTIONS(5391), 39, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -362933,6 +366300,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, @@ -362942,35 +366310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [8076] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(731), 1, - anon_sym_EQ, - ACTIONS(5588), 1, - anon_sym_COLON2, - STATE(2380), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 13, - anon_sym_DOT_DOT, - anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(733), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -362988,37 +366327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(173), 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, - [8152] = 9, + [8236] = 9, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(307), 1, anon_sym_COMMA, ACTIONS(5588), 1, anon_sym_COLON2, - ACTIONS(5670), 1, + ACTIONS(5675), 1, anon_sym_EQ, - STATE(2381), 1, + STATE(2405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -363076,35 +366394,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [8228] = 11, + [8312] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5649), 1, - anon_sym_PIPE, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - STATE(2369), 1, - aux_sym_union_type_repeat1, - STATE(2382), 1, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, + STATE(2406), 1, sym_heredoc_body, + STATE(2814), 1, + sym_do_end_block, + STATE(2828), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(5671), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 40, + ACTIONS(5669), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -363127,7 +366443,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, @@ -363139,92 +366454,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [8308] = 7, + [8388] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1171), 1, - anon_sym_EQ, - STATE(2383), 1, - sym_heredoc_body, + ACTIONS(5679), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, - anon_sym_DOT_DOT, - anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1175), 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(173), 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_COLON2, - [8380] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(5675), 1, - anon_sym_DASH_GT, - STATE(2384), 1, + STATE(2407), 2, sym_heredoc_body, - STATE(10644), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5004), 9, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -363234,7 +366482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 41, + ACTIONS(4840), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -363249,15 +366497,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, @@ -363268,44 +366519,59 @@ 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, - [8454] = 11, + [8458] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5649), 1, - anon_sym_PIPE, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - STATE(2369), 1, - aux_sym_union_type_repeat1, - STATE(2385), 1, + ACTIONS(731), 1, + anon_sym_EQ, + ACTIONS(1203), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, + anon_sym_COLON2, + STATE(2408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(195), 13, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + 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, - ACTIONS(4890), 40, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363316,22 +366582,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_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, @@ -363339,18 +366591,17 @@ 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, - [8534] = 7, + anon_sym_QMARK, + [8534] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1171), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, + anon_sym_COLON2, + ACTIONS(5682), 1, anon_sym_EQ, - STATE(2386), 1, + STATE(2409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -363369,7 +366620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1175), 17, + ACTIONS(733), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -363387,7 +366638,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(173), 22, + ACTIONS(173), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363399,7 +366650,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, @@ -363409,31 +366659,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_COLON2, - [8606] = 6, + [8610] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5677), 1, - anon_sym_COLON_COLON, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, + anon_sym_COLON2, + ACTIONS(5684), 1, + anon_sym_EQ, + STATE(2410), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2387), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, 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, - ACTIONS(4846), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363444,23 +366716,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, @@ -363468,22 +366725,17 @@ 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, - [8676] = 9, + [8686] = 9, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(307), 1, anon_sym_COMMA, + ACTIONS(731), 1, + anon_sym_EQ, ACTIONS(5588), 1, anon_sym_COLON2, - ACTIONS(5680), 1, - anon_sym_EQ, - STATE(2388), 1, + STATE(2411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -363541,29 +366793,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [8752] = 7, + [8762] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5642), 1, - anon_sym_COLON_COLON, - STATE(2387), 1, - aux_sym_constant_repeat1, - STATE(2389), 1, + ACTIONS(277), 1, + sym__string_literal_start, + STATE(2396), 1, + aux_sym_chained_string_repeat1, + STATE(2412), 1, sym_heredoc_body, + STATE(2488), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 42, + ACTIONS(5686), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -363578,18 +366831,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, @@ -363600,22 +366851,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, - [8824] = 9, + anon_sym_when, + anon_sym_in, + [8836] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(5588), 1, - anon_sym_COLON2, - ACTIONS(5682), 1, + ACTIONS(1191), 1, anon_sym_EQ, - STATE(2390), 1, + ACTIONS(5690), 1, + anon_sym_COLON2, + STATE(2413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -363634,7 +366885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(733), 17, + ACTIONS(1193), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -363652,8 +366903,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(173), 20, + ACTIONS(173), 21, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -363673,36 +366925,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [8900] = 11, + [8910] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5649), 1, - anon_sym_PIPE, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - STATE(2369), 1, - aux_sym_union_type_repeat1, - STATE(2391), 1, + ACTIONS(1133), 1, + anon_sym_EQ, + STATE(2414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(195), 13, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + 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, - ACTIONS(4886), 40, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1155), 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(173), 22, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363713,22 +366978,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_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, @@ -363736,20 +366988,18 @@ 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, - [8980] = 8, + anon_sym_QMARK, + anon_sym_COLON2, + [8982] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1191), 1, - anon_sym_EQ, - ACTIONS(5684), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(5588), 1, anon_sym_COLON2, - STATE(2392), 1, + ACTIONS(5692), 1, + anon_sym_EQ, + STATE(2415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -363768,7 +367018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1193), 17, + ACTIONS(733), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -363786,9 +367036,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(173), 21, + ACTIONS(173), 20, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -363808,32 +367057,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [9054] = 9, + [9058] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, - STATE(2393), 1, + ACTIONS(5638), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_DOT, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5644), 1, + anon_sym_PIPE, + ACTIONS(5646), 1, + anon_sym_QMARK, + STATE(2400), 1, + aux_sym_union_type_repeat1, + STATE(2416), 1, sym_heredoc_body, - STATE(2913), 1, - sym_do_end_block, - STATE(2929), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 40, + ACTIONS(4894), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -363856,6 +367108,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, @@ -363867,41 +367120,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, - [9129] = 9, + [9138] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(131), 1, - sym__string_literal_start, - ACTIONS(5692), 1, - anon_sym_COLON, - STATE(2394), 1, + STATE(2417), 1, sym_heredoc_body, - STATE(2457), 1, - aux_sym_chained_string_repeat1, - STATE(2798), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5405), 14, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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, - ACTIONS(173), 40, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5403), 39, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -363911,21 +367161,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_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, @@ -363934,21 +367172,32 @@ 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, - [9204] = 5, + 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, + [9206] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2395), 1, + STATE(2418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -363958,7 +367207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 43, + ACTIONS(4960), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364002,26 +367251,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9271] = 5, + [9273] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2396), 1, + ACTIONS(1203), 1, + anon_sym_COMMA, + ACTIONS(1205), 1, + anon_sym_EQ, + STATE(2419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, 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, - ACTIONS(4964), 43, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -364032,24 +367306,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, @@ -364058,41 +367316,32 @@ 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, - [9338] = 11, + [9346] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5694), 1, - anon_sym_PIPE, - STATE(2397), 1, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, + STATE(2420), 1, sym_heredoc_body, - STATE(2440), 1, - aux_sym_union_type_repeat1, + STATE(2911), 1, + sym_do_end_block, + STATE(2912), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(5696), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 39, + ACTIONS(5694), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364126,33 +367375,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, - [9417] = 6, + [9421] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2398), 1, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, + STATE(2421), 1, sym_heredoc_body, - STATE(2440), 1, - aux_sym_union_type_repeat1, + STATE(2964), 1, + sym_do_end_block, + STATE(2967), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 42, + ACTIONS(5698), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364173,11 +367428,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, @@ -364195,26 +367448,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9486] = 5, + [9496] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2399), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(731), 1, + anon_sym_EQ, + STATE(2422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, 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, - ACTIONS(4916), 43, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -364225,24 +367503,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, @@ -364251,21 +367513,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, - [9553] = 5, + [9569] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2400), 1, + STATE(2423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364275,7 +367531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 43, + ACTIONS(4940), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364319,15 +367575,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9620] = 5, + [9636] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2401), 1, + ACTIONS(1191), 1, + anon_sym_EQ, + STATE(2424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(195), 13, + anon_sym_DOT_DOT, + anon_sym_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_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1193), 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(173), 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, + [9707] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2425), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364337,7 +367657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 43, + ACTIONS(4902), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364381,15 +367701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9687] = 5, + [9774] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2402), 1, + STATE(2426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364399,7 +367719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 43, + ACTIONS(4976), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364443,15 +367763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9754] = 5, + [9841] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2403), 1, + STATE(2427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(4906), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364461,7 +367781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 43, + ACTIONS(4908), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364505,35 +367825,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9821] = 11, + [9908] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5694), 1, - anon_sym_PIPE, - STATE(2404), 1, + ACTIONS(1243), 1, + anon_sym_COLON, + ACTIONS(5601), 1, + anon_sym_COLON_COLON, + STATE(2328), 1, + aux_sym_constant_repeat1, + STATE(2428), 1, sym_heredoc_body, - STATE(2440), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, + ACTIONS(4855), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 39, + ACTIONS(4857), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364567,31 +367882,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [9900] = 5, + [9981] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2405), 1, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, + STATE(2429), 1, sym_heredoc_body, + STATE(2905), 1, + sym_do_end_block, + STATE(2909), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 43, + ACTIONS(5694), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364612,12 +367936,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, @@ -364635,15 +367956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9967] = 5, + [10056] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2406), 1, + STATE(2430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364653,7 +367974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 43, + ACTIONS(4956), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364697,15 +368018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10034] = 5, + [10123] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2407), 1, + STATE(2431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364715,7 +368036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 43, + ACTIONS(4964), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364759,27 +368080,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10101] = 11, + [10190] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5658), 1, + ACTIONS(5638), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, + ACTIONS(5640), 1, anon_sym_DOT, - ACTIONS(5662), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5646), 1, anon_sym_QMARK, - ACTIONS(5694), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - STATE(2408), 1, + STATE(2432), 1, sym_heredoc_body, STATE(2440), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(4970), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -364787,7 +368108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 39, + ACTIONS(4972), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364827,15 +368148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10180] = 5, + [10269] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2409), 1, + STATE(2433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364845,7 +368166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 43, + ACTIONS(4916), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364889,15 +368210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10247] = 5, + [10336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2410), 1, + STATE(2434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364907,7 +368228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 43, + ACTIONS(4968), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364951,15 +368272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10314] = 5, + [10403] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2411), 1, + STATE(2435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -364969,7 +368290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 43, + ACTIONS(4920), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365013,51 +368334,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10381] = 8, + [10470] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(5696), 1, - anon_sym_EQ, - STATE(2412), 1, + ACTIONS(5638), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_DOT, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5646), 1, + anon_sym_QMARK, + ACTIONS(5702), 1, + anon_sym_PIPE, + STATE(2436), 1, sym_heredoc_body, + STATE(2440), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4922), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(733), 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(173), 20, + ACTIONS(4924), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365068,8 +368374,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, @@ -365077,52 +368396,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, - [10454] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [10549] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(5698), 1, - anon_sym_EQ, - STATE(2413), 1, + STATE(2437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(733), 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(173), 20, + ACTIONS(4928), 43, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365133,8 +368432,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, @@ -365143,15 +368458,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [10527] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [10616] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2414), 1, + STATE(2438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -365161,7 +368482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 43, + ACTIONS(4932), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365205,49 +368526,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10594] = 7, + [10683] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1229), 1, - anon_sym_EQ, - STATE(2415), 1, + STATE(2439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, 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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1231), 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(173), 21, + ACTIONS(4936), 43, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365258,8 +368556,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, @@ -365268,32 +368582,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_COLON2, - [10665] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [10750] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5700), 1, - anon_sym_COLON_COLON, - STATE(2416), 1, + ACTIONS(5702), 1, + anon_sym_PIPE, + STATE(2440), 1, sym_heredoc_body, - STATE(2422), 1, - aux_sym_constant_repeat1, + STATE(2441), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 10, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4840), 40, - sym__start_of_brace_block, + ACTIONS(4883), 42, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365304,15 +368621,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, @@ -365325,39 +368645,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, - [10736] = 7, + [10821] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5700), 1, - anon_sym_COLON_COLON, - STATE(2417), 1, - sym_heredoc_body, - STATE(2423), 1, - aux_sym_constant_repeat1, + ACTIONS(5704), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 10, + STATE(2441), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4840), 40, - sym__start_of_brace_block, + ACTIONS(4875), 42, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365368,15 +368684,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, @@ -365389,29 +368708,30 @@ 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, - [10807] = 8, + [10890] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, - sym__start_of_brace_block, - STATE(2418), 1, + ACTIONS(131), 1, + sym__string_literal_start, + ACTIONS(5707), 1, + anon_sym_COLON, + STATE(2442), 1, sym_heredoc_body, - STATE(2727), 1, - sym_do_end_block, - STATE(2728), 1, - sym_brace_block, + STATE(2579), 1, + aux_sym_chained_string_repeat1, + STATE(2886), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -365420,7 +368740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 41, + ACTIONS(173), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365457,38 +368777,53 @@ 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, - [10880] = 9, + [10965] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, - STATE(2419), 1, + ACTIONS(1215), 1, + anon_sym_EQ, + STATE(2443), 1, sym_heredoc_body, - STATE(2874), 1, - sym_do_end_block, - STATE(2875), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_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, - ACTIONS(5706), 40, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1217), 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(173), 21, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365499,21 +368834,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, @@ -365522,38 +368844,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, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [10955] = 9, + anon_sym_COLON2, + [11036] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, - STATE(2420), 1, + ACTIONS(5638), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_DOT, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5646), 1, + anon_sym_QMARK, + ACTIONS(5702), 1, + anon_sym_PIPE, + STATE(2440), 1, + aux_sym_union_type_repeat1, + STATE(2444), 1, sym_heredoc_body, - STATE(2895), 1, - sym_do_end_block, - STATE(2954), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 40, + ACTIONS(4890), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365587,39 +368907,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, - [11030] = 9, + [11115] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, - sym__start_of_brace_block, - ACTIONS(5714), 1, - anon_sym_do, - STATE(2421), 1, + STATE(2445), 1, sym_heredoc_body, - STATE(2709), 1, - sym_do_end_block, - STATE(2710), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 40, + ACTIONS(4944), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365640,9 +368952,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, @@ -365660,30 +368975,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11105] = 6, + [11182] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5716), 1, - anon_sym_COLON_COLON, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(5709), 1, + anon_sym_EQ, + STATE(2446), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2422), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 10, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, 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_COLON2, - ACTIONS(4846), 40, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365695,19 +369031,7 @@ 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_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, @@ -365715,39 +369039,52 @@ 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, - anon_sym_when, - anon_sym_in, - [11174] = 7, + [11255] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5700), 1, - anon_sym_COLON_COLON, - STATE(2422), 1, - aux_sym_constant_repeat1, - STATE(2423), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(5711), 1, + anon_sym_EQ, + STATE(2447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 10, + ACTIONS(195), 13, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, 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_COLON2, - ACTIONS(4853), 40, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365759,19 +369096,7 @@ 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_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, @@ -365779,29 +369104,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, - anon_sym_when, - anon_sym_in, - [11245] = 8, + [11328] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(301), 1, sym__start_of_brace_block, - STATE(2424), 1, + STATE(2448), 1, sym_heredoc_body, - STATE(2539), 1, + STATE(2600), 1, sym_do_end_block, - STATE(2540), 1, + STATE(2601), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -365810,7 +369128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 41, + ACTIONS(5698), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365852,21 +369170,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11318] = 8, + [11401] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(5713), 1, + anon_sym_EQ, + STATE(2449), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(195), 13, + anon_sym_DOT_DOT, + anon_sym_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_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(733), 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(173), 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, + [11474] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(301), 1, sym__start_of_brace_block, - STATE(2425), 1, + STATE(2450), 1, sym_heredoc_body, - STATE(2541), 1, + STATE(2621), 1, sym_do_end_block, - STATE(2542), 1, + STATE(2622), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -365875,7 +369258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 41, + ACTIONS(5694), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365917,21 +369300,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11391] = 8, + [11547] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(301), 1, sym__start_of_brace_block, - STATE(2426), 1, + STATE(2451), 1, sym_heredoc_body, - STATE(2543), 1, + STATE(2623), 1, sym_do_end_block, - STATE(2544), 1, + STATE(2624), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -365940,7 +369323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 41, + ACTIONS(5694), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365982,21 +369365,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11464] = 8, + [11620] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(301), 1, sym__start_of_brace_block, - STATE(2427), 1, + STATE(2452), 1, sym_heredoc_body, - STATE(2545), 1, + STATE(2625), 1, sym_do_end_block, - STATE(2546), 1, + STATE(2626), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -366005,7 +369388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 41, + ACTIONS(5715), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366047,23 +369430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11537] = 9, + [11693] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, + ACTIONS(301), 1, sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, - STATE(2428), 1, + STATE(2453), 1, sym_heredoc_body, - STATE(2955), 1, + STATE(2627), 1, sym_do_end_block, - STATE(2956), 1, + STATE(2628), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -366072,7 +369453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 40, + ACTIONS(5715), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366109,38 +369490,38 @@ 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, - [11612] = 9, + [11766] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, - STATE(2429), 1, + ACTIONS(5723), 1, + anon_sym_DOT, + ACTIONS(5725), 1, + anon_sym_EQ, + ACTIONS(5727), 1, + sym__start_of_index_operator, + STATE(2454), 1, sym_heredoc_body, - STATE(2957), 1, - sym_do_end_block, - STATE(2965), 1, - sym_brace_block, + STATE(2564), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 40, + ACTIONS(5719), 41, sym__line_break, - sym__start_of_index_operator, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -366175,23 +369556,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [11687] = 7, + [11841] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5700), 1, - anon_sym_COLON_COLON, - STATE(2416), 1, - aux_sym_constant_repeat1, - STATE(2430), 1, + STATE(2455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 10, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -366201,9 +369579,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4857), 40, - sym__start_of_brace_block, + ACTIONS(4912), 43, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366214,13 +369591,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, @@ -366235,22 +369616,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, - [11758] = 8, + [11908] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(731), 1, anon_sym_EQ, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_COMMA, - STATE(2431), 1, + STATE(2456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -366308,51 +369688,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [11831] = 8, + [11981] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(5723), 1, - anon_sym_EQ, - STATE(2432), 1, + STATE(2457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(733), 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(173), 20, + ACTIONS(5170), 44, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366363,8 +369718,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, + 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, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -366372,15 +369741,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, - [11904] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [12048] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(5725), 1, + ACTIONS(1215), 1, anon_sym_EQ, - STATE(2433), 1, + STATE(2458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -366399,7 +369774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(733), 17, + ACTIONS(1217), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -366417,7 +369792,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(173), 20, + ACTIONS(173), 21, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366438,23 +369813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [11977] = 9, + anon_sym_COLON2, + [12119] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, + ACTIONS(301), 1, sym__start_of_brace_block, - ACTIONS(5690), 1, + ACTIONS(5673), 1, anon_sym_do, - STATE(2434), 1, + STATE(2459), 1, sym_heredoc_body, - STATE(3101), 1, + STATE(2552), 1, sym_do_end_block, - STATE(3102), 1, + STATE(2553), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -366463,7 +369839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 40, + ACTIONS(5729), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366504,15 +369880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12052] = 5, + [12194] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2435), 1, + ACTIONS(5733), 1, + anon_sym_COLON_COLON, + STATE(2460), 1, sym_heredoc_body, + STATE(2461), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(4855), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -366522,8 +369902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 43, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4857), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366534,17 +369915,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, @@ -366559,32 +369936,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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [12119] = 5, + [12265] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2436), 1, + ACTIONS(5733), 1, + anon_sym_COLON_COLON, + STATE(2461), 1, sym_heredoc_body, + STATE(2467), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(4845), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 44, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4847), 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_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [12336] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5733), 1, + anon_sym_COLON_COLON, + STATE(2462), 1, + sym_heredoc_body, + STATE(2468), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4845), 10, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_COLON2, + ACTIONS(4847), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -366596,19 +370043,80 @@ 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_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_else, + anon_sym_when, + anon_sym_in, + [12407] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2463), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4950), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4952), 43, + 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, - 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, @@ -366619,24 +370127,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [12186] = 5, + [12474] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2437), 1, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, + STATE(2464), 1, sym_heredoc_body, + STATE(2920), 1, + sym_do_end_block, + STATE(2926), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -366645,9 +370159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 44, + ACTIONS(5715), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366663,7 +370176,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, @@ -366681,24 +370193,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [12253] = 5, + [12549] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2438), 1, + STATE(2465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -366708,7 +370218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 43, + ACTIONS(4840), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -366752,15 +370262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [12320] = 5, + [12616] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2439), 1, + STATE(2466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, + ACTIONS(4859), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -366770,8 +370280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 43, + ACTIONS(4861), 43, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366791,12 +370302,10 @@ 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, @@ -366810,33 +370319,35 @@ 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, - [12387] = 7, + [12683] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5694), 1, - anon_sym_PIPE, - STATE(2440), 1, - sym_heredoc_body, - STATE(2441), 1, - aux_sym_union_type_repeat1, + ACTIONS(5735), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + STATE(2467), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 42, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4840), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366847,18 +370358,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_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -366871,35 +370379,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, - [12458] = 6, + [12752] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5727), 1, - anon_sym_PIPE, + ACTIONS(5733), 1, + anon_sym_COLON_COLON, + STATE(2467), 1, + aux_sym_constant_repeat1, + STATE(2468), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2441), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(4851), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 42, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4853), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366910,18 +370422,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_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -366934,42 +370443,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_elsif, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [12527] = 11, + [12823] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5658), 1, - anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK, - ACTIONS(5694), 1, - anon_sym_PIPE, - STATE(2440), 1, - aux_sym_union_type_repeat1, - STATE(2442), 1, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, + STATE(2469), 1, sym_heredoc_body, + STATE(2814), 1, + sym_do_end_block, + STATE(2828), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(5731), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 39, + ACTIONS(5729), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367003,28 +370510,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_else, anon_sym_when, anon_sym_in, - [12606] = 11, + [12898] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5658), 1, + ACTIONS(5638), 1, anon_sym_LBRACK, - ACTIONS(5660), 1, + ACTIONS(5640), 1, anon_sym_DOT, - ACTIONS(5662), 1, + ACTIONS(5642), 1, anon_sym_STAR, - ACTIONS(5664), 1, + ACTIONS(5646), 1, anon_sym_QMARK, - ACTIONS(5694), 1, + ACTIONS(5702), 1, anon_sym_PIPE, STATE(2440), 1, aux_sym_union_type_repeat1, - STATE(2443), 1, + STATE(2470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -367077,144 +370585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12685] = 8, + [12977] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(1203), 1, - anon_sym_EQ, - STATE(2444), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 13, - anon_sym_DOT_DOT, - anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(733), 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(173), 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, - [12758] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1229), 1, - anon_sym_EQ, - STATE(2445), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 13, - anon_sym_DOT_DOT, - anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1231), 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(173), 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_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_COLON2, - [12829] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2446), 1, + STATE(2440), 1, + aux_sym_union_type_repeat1, + STATE(2471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -367224,7 +370605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 43, + ACTIONS(4875), 42, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367248,7 +370629,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, @@ -367268,23 +370648,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12896] = 9, + [13046] = 9, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(253), 1, sym__start_of_brace_block, - ACTIONS(5690), 1, + ACTIONS(5677), 1, anon_sym_do, - STATE(2447), 1, + STATE(2472), 1, sym_heredoc_body, - STATE(2913), 1, + STATE(2915), 1, sym_do_end_block, - STATE(2929), 1, + STATE(2916), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -367293,7 +370673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 40, + ACTIONS(5715), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367334,14 +370714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12971] = 8, + [13121] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(307), 1, anon_sym_COMMA, - ACTIONS(5730), 1, + ACTIONS(5738), 1, anon_sym_EQ, - STATE(2448), 1, + STATE(2473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -367399,14 +370779,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [13044] = 8, + [13194] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(307), 1, anon_sym_COMMA, - ACTIONS(5732), 1, + ACTIONS(5740), 1, anon_sym_EQ, - STATE(2449), 1, + STATE(2474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -367464,79 +370844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [13117] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1239), 1, - anon_sym_COLON, - ACTIONS(5604), 1, - anon_sym_COLON_COLON, - STATE(2303), 1, - aux_sym_constant_repeat1, - STATE(2450), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4855), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4857), 41, - 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_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [13190] = 8, + [13267] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(307), 1, anon_sym_COMMA, - ACTIONS(731), 1, + ACTIONS(5742), 1, anon_sym_EQ, - STATE(2451), 1, + STATE(2475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -367594,51 +370909,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [13263] = 7, + [13340] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1191), 1, - anon_sym_EQ, - STATE(2452), 1, + STATE(2476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 13, + ACTIONS(5164), 8, anon_sym_DOT_DOT, anon_sym_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_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1193), 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(173), 21, + ACTIONS(5166), 44, + 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, @@ -367648,8 +370939,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, + 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, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -367657,33 +370962,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, anon_sym_QMARK, - [13334] = 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [13407] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, - sym__start_of_brace_block, - ACTIONS(5714), 1, - anon_sym_do, - STATE(2453), 1, + STATE(2477), 1, sym_heredoc_body, - STATE(2709), 1, - sym_do_end_block, - STATE(2710), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 40, + ACTIONS(4948), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367704,9 +371010,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, @@ -367724,27 +371033,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [13409] = 5, + [13474] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2454), 1, + ACTIONS(5638), 1, + anon_sym_LBRACK, + ACTIONS(5640), 1, + anon_sym_DOT, + ACTIONS(5642), 1, + anon_sym_STAR, + ACTIONS(5646), 1, + anon_sym_QMARK, + ACTIONS(5702), 1, + anon_sym_PIPE, + STATE(2440), 1, + aux_sym_union_type_repeat1, + STATE(2478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 43, + ACTIONS(4894), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -367766,7 +371084,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, @@ -367778,37 +371095,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [13476] = 6, + [13553] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5734), 1, - anon_sym_COLON_COLON, + ACTIONS(5746), 1, + anon_sym_of, + STATE(2479), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2455), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 40, + ACTIONS(5744), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -367821,18 +371135,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, @@ -367843,76 +371155,160 @@ 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, - [13544] = 25, + anon_sym_when, + anon_sym_in, + [13621] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5739), 1, + ACTIONS(5752), 1, anon_sym_COMMA, - ACTIONS(5741), 1, + ACTIONS(5754), 1, anon_sym_DOT_DOT, - ACTIONS(5743), 1, + ACTIONS(5756), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, + ACTIONS(5758), 1, anon_sym_DOT, - ACTIONS(5749), 1, + ACTIONS(5762), 1, anon_sym_PIPE, - ACTIONS(5751), 1, + ACTIONS(5764), 1, anon_sym_CARET, - ACTIONS(5755), 1, + ACTIONS(5768), 1, anon_sym_EQ_EQ, - ACTIONS(5761), 1, + ACTIONS(5774), 1, anon_sym_AMP_STAR, - ACTIONS(5765), 1, + ACTIONS(5778), 1, anon_sym_QMARK, - ACTIONS(5767), 1, + ACTIONS(5780), 1, anon_sym_AMP_AMP, - ACTIONS(5769), 1, + ACTIONS(5782), 1, anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, + ACTIONS(5784), 1, sym__start_of_index_operator, - ACTIONS(5777), 1, + ACTIONS(5790), 1, sym_binary_ampersand, - STATE(2456), 1, + STATE(2480), 1, sym_heredoc_body, - STATE(2492), 1, + STATE(2506), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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, + [13727] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(5792), 1, + anon_sym_COMMA, + STATE(2481), 1, + sym_heredoc_body, + STATE(2514), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, + ACTIONS(5766), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5759), 2, + ACTIONS(5772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, + ACTIONS(5776), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(5760), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, + ACTIONS(5770), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5775), 4, + ACTIONS(5788), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 16, + ACTIONS(5750), 16, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -367929,31 +371325,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [13650] = 8, + [13833] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(131), 1, - sym__string_literal_start, - STATE(2457), 1, + ACTIONS(5752), 1, + anon_sym_COMMA, + STATE(2482), 1, + sym_heredoc_body, + STATE(2506), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5794), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5750), 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__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, + [13903] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2483), 1, sym_heredoc_body, - STATE(2479), 1, - aux_sym_chained_string_repeat1, - STATE(2798), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 40, + ACTIONS(5796), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -367989,18 +371444,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, - [13722] = 7, + [13969] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5779), 1, + ACTIONS(5800), 1, anon_sym_COLON_COLON, - STATE(2458), 1, + STATE(2484), 1, sym_heredoc_body, - STATE(2462), 1, + STATE(2489), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -368017,6 +371473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, ACTIONS(4857), 40, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368029,7 +371486,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, @@ -368055,16 +371511,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + [14039] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2485), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5804), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5802), 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, - [13792] = 5, + anon_sym_when, + anon_sym_in, + [14105] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2459), 1, + STATE(2486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368074,7 +371591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 42, + ACTIONS(5806), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -368117,15 +371634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [13858] = 5, + [14171] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2460), 1, + STATE(2487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 10, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368135,8 +371652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4846), 41, + ACTIONS(5810), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -368148,17 +371665,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, @@ -368169,24 +371687,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, - [13924] = 5, + [14237] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2461), 1, + STATE(2488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(5816), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368195,7 +371712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 43, + ACTIONS(5814), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -368239,19 +371756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [13990] = 7, + [14303] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5779), 1, + ACTIONS(5800), 1, anon_sym_COLON_COLON, - STATE(2455), 1, - aux_sym_constant_repeat1, - STATE(2462), 1, + STATE(2489), 1, sym_heredoc_body, + STATE(2507), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368261,8 +371778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 40, + ACTIONS(4847), 40, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368275,7 +371793,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, @@ -368301,27 +371818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [14060] = 6, + anon_sym_do, + [14373] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5787), 1, - anon_sym_of, - STATE(2463), 1, + STATE(2490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 42, + ACTIONS(5818), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -368364,19 +371880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14128] = 7, + [14439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5779), 1, - anon_sym_COLON_COLON, - STATE(2464), 1, + STATE(2491), 1, sym_heredoc_body, - STATE(2500), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368386,8 +371898,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 40, + ACTIONS(5822), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368400,18 +371913,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, @@ -368422,22 +371933,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_do, + anon_sym_elsif, anon_sym_else, - [14198] = 6, + anon_sym_when, + anon_sym_in, + [14505] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5795), 1, - sym_regex_modifier, - STATE(2465), 1, + ACTIONS(131), 1, + sym__string_literal_start, + STATE(2492), 1, sym_heredoc_body, + STATE(2579), 1, + aux_sym_chained_string_repeat1, + STATE(2886), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368446,9 +371964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 42, + ACTIONS(173), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368484,22 +372001,84 @@ 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, + [14577] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5792), 1, + anon_sym_COMMA, + STATE(2493), 1, + sym_heredoc_body, + STATE(2514), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5794), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5750), 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__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, - [14266] = 6, + [14647] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5801), 1, - sym_regex_modifier, - STATE(2466), 1, + ACTIONS(5828), 1, + anon_sym_of, + STATE(2494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368508,7 +372087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 42, + ACTIONS(5826), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -368551,17 +372130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14334] = 6, + [14715] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5805), 1, - anon_sym_of, - STATE(2467), 1, + ACTIONS(5836), 1, + sym_regex_modifier, + STATE(2495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368570,7 +372149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 42, + ACTIONS(5832), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -368613,32 +372192,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14402] = 8, + [14783] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(5809), 1, - anon_sym_DASH_GT, - STATE(2468), 1, + ACTIONS(5842), 1, + sym_regex_modifier, + STATE(2496), 1, sym_heredoc_body, - STATE(10025), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 39, + ACTIONS(5838), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368658,6 +372233,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, @@ -368673,106 +372249,82 @@ 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, - [14474] = 25, + [14851] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5739), 1, - anon_sym_COMMA, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2469), 1, + ACTIONS(5846), 1, + anon_sym_of, + STATE(2497), 1, sym_heredoc_body, - STATE(2494), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(5848), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(5844), 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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_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, - [14580] = 8, + [14919] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(5809), 1, - anon_sym_DASH_GT, - STATE(2470), 1, + STATE(2498), 1, sym_heredoc_body, - STATE(10025), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -368782,8 +372334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 39, + ACTIONS(5850), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368803,6 +372356,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, @@ -368818,28 +372372,34 @@ 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, - [14652] = 5, + [14985] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2471), 1, + ACTIONS(5800), 1, + anon_sym_COLON_COLON, + STATE(2499), 1, sym_heredoc_body, + STATE(2509), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 43, + ACTIONS(4847), 40, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -368855,16 +372415,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_LPAREN, - 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, @@ -368875,36 +372435,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [14718] = 6, + [15055] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5815), 1, - anon_sym_of, - STATE(2472), 1, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(5854), 1, + anon_sym_DASH_GT, + STATE(2500), 1, sym_heredoc_body, + STATE(10423), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 42, + ACTIONS(5022), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368924,7 +372485,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, @@ -368940,84 +372500,104 @@ 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, - [14786] = 6, + [15127] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5821), 1, - anon_sym_of, - STATE(2473), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(5858), 1, + anon_sym_COMMA, + STATE(2501), 1, sym_heredoc_body, + STATE(2515), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5819), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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_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, - [14854] = 6, + [15233] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5827), 1, - anon_sym_LPAREN, - STATE(2474), 1, + ACTIONS(5858), 1, + anon_sym_COMMA, + STATE(2502), 1, sym_heredoc_body, + STATE(2515), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -369026,7 +372606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 42, + ACTIONS(5856), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369048,7 +372628,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, @@ -369069,26 +372648,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14922] = 6, + [15303] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5835), 1, - anon_sym_EQ, - STATE(2475), 1, + STATE(2503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(5864), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 42, + ACTIONS(5862), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369131,86 +372709,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14990] = 6, + [15369] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5839), 1, - anon_sym_of, - STATE(2476), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(5792), 1, + anon_sym_COMMA, + STATE(2504), 1, sym_heredoc_body, + STATE(2582), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5837), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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_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, - [15058] = 5, + [15475] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2477), 1, + STATE(2505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(5868), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 43, + ACTIONS(5866), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369230,7 +372828,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -369254,17 +372851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15124] = 6, + [15541] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5845), 1, - anon_sym_of, - STATE(2478), 1, + ACTIONS(5858), 1, + anon_sym_COMMA, + STATE(2506), 1, sym_heredoc_body, + STATE(2548), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -369273,7 +372872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 42, + ACTIONS(5856), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369295,7 +372894,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, @@ -369316,30 +372914,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15192] = 7, + [15611] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5849), 1, - sym__string_literal_start, - STATE(2798), 1, - sym_string, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2479), 2, + STATE(2507), 2, sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 40, + ACTIONS(4840), 40, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -369353,15 +372951,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, @@ -369372,24 +372971,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_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [15262] = 6, + anon_sym_do, + [15679] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(291), 1, - anon_sym_EQ, - STATE(2480), 1, + ACTIONS(5875), 1, + anon_sym_of, + STATE(2508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -369398,7 +372995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 42, + ACTIONS(5873), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369441,31 +373038,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15330] = 8, + [15747] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(131), 1, - sym__string_literal_start, - STATE(2457), 1, - aux_sym_chained_string_repeat1, - STATE(2481), 1, + ACTIONS(5800), 1, + anon_sym_COLON_COLON, + STATE(2507), 1, + aux_sym_constant_repeat1, + STATE(2509), 1, sym_heredoc_body, - STATE(2798), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 40, + ACTIONS(4853), 40, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -369479,15 +373076,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, @@ -369498,114 +373096,93 @@ 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, - [15402] = 25, + anon_sym_do, + [15817] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(5852), 1, + ACTIONS(5879), 1, anon_sym_COMMA, - STATE(2482), 1, + STATE(2510), 1, sym_heredoc_body, - STATE(2526), 1, + STATE(2548), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(5860), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(5856), 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, - ACTIONS(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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, - [15508] = 6, + [15887] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5856), 1, - anon_sym_LPAREN, - STATE(2483), 1, + STATE(2511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 42, + ACTIONS(5881), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369648,14 +373225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15576] = 7, + [15953] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5852), 1, + ACTIONS(5792), 1, anon_sym_COMMA, - STATE(2484), 1, + STATE(2512), 1, sym_heredoc_body, - STATE(2526), 1, + STATE(2582), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -369669,7 +373246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 41, + ACTIONS(5856), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369711,17 +373288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15646] = 6, + [16023] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5634), 1, - anon_sym_COLON, - STATE(2485), 1, - sym_heredoc_body, + ACTIONS(5885), 1, + sym__string_literal_start, + STATE(2886), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + STATE(2513), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -369730,9 +373310,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 42, + ACTIONS(5660), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -369768,22 +373347,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, - [15714] = 6, + [16093] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5618), 1, - anon_sym_LPAREN2, - STATE(2486), 1, + ACTIONS(5792), 1, + anon_sym_COMMA, + STATE(2514), 1, sym_heredoc_body, + STATE(2548), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -369792,7 +373372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 42, + ACTIONS(5856), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369814,7 +373394,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, @@ -369835,15 +373414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15782] = 5, + [16163] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2487), 1, + ACTIONS(5890), 1, + anon_sym_COMMA, + STATE(2515), 1, sym_heredoc_body, + STATE(2548), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -369852,7 +373435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 43, + ACTIONS(5888), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369874,7 +373457,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, @@ -369887,7 +373469,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, @@ -369896,28 +373477,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15848] = 7, + [16233] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5739), 1, - anon_sym_COMMA, - STATE(2488), 1, + STATE(2516), 1, sym_heredoc_body, - STATE(2492), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 41, + ACTIONS(5894), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -369939,6 +373517,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, @@ -369959,30 +373538,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15918] = 7, + [16299] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5868), 1, - anon_sym_COMMA, - STATE(2489), 1, - sym_heredoc_body, - STATE(2525), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5898), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + STATE(2517), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 41, + ACTIONS(4840), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -369995,15 +373573,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, @@ -370014,23 +373595,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, - [15988] = 5, + [16367] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2490), 1, + ACTIONS(5903), 1, + anon_sym_LPAREN, + STATE(2518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -370039,7 +373619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 43, + ACTIONS(5901), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370074,7 +373654,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, @@ -370083,30 +373662,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16054] = 7, + [16435] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5739), 1, - anon_sym_COMMA, - STATE(2491), 1, + ACTIONS(5907), 1, + anon_sym_COLON_COLON, + STATE(2517), 1, + aux_sym_constant_repeat1, + STATE(2519), 1, sym_heredoc_body, - STATE(2494), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 41, + ACTIONS(4853), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370119,15 +373698,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, @@ -370138,27 +373720,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, - [16124] = 7, + [16505] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5739), 1, - anon_sym_COMMA, - STATE(2492), 1, + STATE(2520), 1, sym_heredoc_body, - STATE(2525), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -370167,7 +373742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 41, + ACTIONS(5909), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370189,6 +373764,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, @@ -370201,6 +373777,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, @@ -370209,31 +373786,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16194] = 8, + [16571] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5882), 1, - anon_sym_DOT, - ACTIONS(5884), 1, - sym__start_of_index_operator, - STATE(2493), 1, + STATE(2521), 1, sym_heredoc_body, - STATE(2684), 1, - sym__implicit_index_operator, + STATE(2541), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(4873), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 41, + ACTIONS(4875), 41, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -370245,16 +373821,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, @@ -370269,32 +373847,26 @@ 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, - [16266] = 7, + [16639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5739), 1, - anon_sym_COMMA, - STATE(2494), 1, + STATE(2522), 1, sym_heredoc_body, - STATE(2525), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 41, + ACTIONS(5913), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370316,6 +373888,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, @@ -370336,26 +373909,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16336] = 6, + [16705] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5888), 1, - anon_sym_LPAREN, - STATE(2495), 1, + STATE(2523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 42, + ACTIONS(5917), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370398,35 +373970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16404] = 11, + [16771] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5898), 1, - anon_sym_PIPE, - ACTIONS(5900), 1, - anon_sym_QMARK, - STATE(2496), 1, + STATE(2524), 1, sym_heredoc_body, - STATE(2506), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(5923), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 38, + ACTIONS(5921), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370441,15 +374003,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, @@ -370461,41 +374023,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_do, + anon_sym_elsif, anon_sym_else, - [16482] = 11, + anon_sym_when, + anon_sym_in, + [16837] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5898), 1, - anon_sym_PIPE, - ACTIONS(5900), 1, - anon_sym_QMARK, - STATE(2497), 1, + ACTIONS(5907), 1, + anon_sym_COLON_COLON, + STATE(2517), 1, + aux_sym_constant_repeat1, + STATE(2525), 1, sym_heredoc_body, - STATE(2506), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(4845), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 38, + ACTIONS(4847), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370514,10 +374073,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, @@ -370528,41 +374089,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, - [16560] = 11, + [16907] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5898), 1, - anon_sym_PIPE, - ACTIONS(5900), 1, - anon_sym_QMARK, - STATE(2498), 1, + ACTIONS(5907), 1, + anon_sym_COLON_COLON, + STATE(2519), 1, + aux_sym_constant_repeat1, + STATE(2526), 1, sym_heredoc_body, - STATE(2506), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(4845), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 38, + ACTIONS(4847), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370581,10 +374136,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, @@ -370595,21 +374152,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_else, - [16638] = 6, + [16977] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2499), 1, + STATE(2527), 1, sym_heredoc_body, - STATE(2506), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -370619,7 +374175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 41, + ACTIONS(5925), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370634,18 +374190,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, @@ -370660,93 +374214,113 @@ 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, - [16706] = 7, + anon_sym_when, + anon_sym_in, + [17043] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5779), 1, - anon_sym_COLON_COLON, - STATE(2455), 1, - aux_sym_constant_repeat1, - STATE(2500), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(5929), 1, + anon_sym_COMMA, + STATE(2528), 1, sym_heredoc_body, + STATE(2533), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4853), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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_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, + anon_sym_do, + anon_sym_elsif, anon_sym_else, - [16776] = 7, + anon_sym_when, + anon_sym_in, + [17149] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2501), 1, + ACTIONS(5929), 1, + anon_sym_COMMA, + STATE(2529), 1, sym_heredoc_body, - STATE(2502), 1, - aux_sym_constant_repeat1, + STATE(2533), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 40, + ACTIONS(5750), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370762,16 +374336,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, @@ -370782,34 +374354,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, - [16846] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [17219] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2502), 1, + ACTIONS(5630), 1, + anon_sym_COLON, + STATE(2530), 1, sym_heredoc_body, - STATE(2504), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 40, + ACTIONS(173), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370825,16 +374397,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, @@ -370845,34 +374416,117 @@ 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, - [16916] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [17287] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2503), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(5931), 1, + anon_sym_COMMA, + STATE(2531), 1, sym_heredoc_body, - STATE(2505), 1, - aux_sym_constant_repeat1, + STATE(2534), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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, + [17393] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5931), 1, + anon_sym_COMMA, + STATE(2532), 1, + sym_heredoc_body, + STATE(2534), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 40, + ACTIONS(5856), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370888,16 +374542,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, @@ -370908,33 +374560,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_do, - [16986] = 6, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [17463] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5904), 1, - anon_sym_COLON_COLON, + ACTIONS(5931), 1, + anon_sym_COMMA, + STATE(2533), 1, + sym_heredoc_body, + STATE(2548), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2504), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 40, + ACTIONS(5856), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -370950,16 +374605,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, @@ -370970,34 +374623,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_do, - [17054] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [17533] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2504), 1, - aux_sym_constant_repeat1, - STATE(2505), 1, + ACTIONS(5933), 1, + anon_sym_COMMA, + STATE(2534), 1, sym_heredoc_body, + STATE(2548), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 40, + ACTIONS(5888), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371013,16 +374668,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, @@ -371033,33 +374686,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_do, - [17124] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [17603] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5898), 1, - anon_sym_PIPE, - STATE(2506), 1, + ACTIONS(5935), 1, + anon_sym_COMMA, + STATE(2510), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2535), 1, sym_heredoc_body, - STATE(2507), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 41, + ACTIONS(5750), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371074,18 +374730,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, @@ -371100,28 +374753,30 @@ 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, - [17194] = 6, + anon_sym_when, + anon_sym_in, + [17673] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5907), 1, - anon_sym_PIPE, + ACTIONS(5941), 1, + anon_sym_EQ, + STATE(2536), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2507), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 41, + ACTIONS(5937), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371136,18 +374791,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, @@ -371162,36 +374815,29 @@ 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, - [17262] = 11, + anon_sym_when, + anon_sym_in, + [17741] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5898), 1, - anon_sym_PIPE, - ACTIONS(5900), 1, - anon_sym_QMARK, - STATE(2506), 1, - aux_sym_union_type_repeat1, - STATE(2508), 1, + STATE(2537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(5945), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 38, + ACTIONS(5943), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371206,15 +374852,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, @@ -371226,39 +374872,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_do, + anon_sym_elsif, anon_sym_else, - [17340] = 11, + anon_sym_when, + anon_sym_in, + [17807] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5898), 1, - anon_sym_PIPE, - ACTIONS(5900), 1, - anon_sym_QMARK, - STATE(2506), 1, - aux_sym_union_type_repeat1, - STATE(2509), 1, + STATE(2538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(5949), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 38, + ACTIONS(5947), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371273,15 +374913,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, @@ -371293,104 +374933,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_do, + anon_sym_elsif, anon_sym_else, - [17418] = 25, + anon_sym_when, + anon_sym_in, + [17873] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(5910), 1, - anon_sym_COMMA, - STATE(2510), 1, + STATE(2539), 1, sym_heredoc_body, - STATE(2514), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(5953), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(5951), 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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_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, - [17524] = 7, + [17939] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5910), 1, - anon_sym_COMMA, - STATE(2511), 1, + STATE(2540), 1, sym_heredoc_body, - STATE(2514), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -371399,7 +375019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 41, + ACTIONS(4622), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371419,8 +375039,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -371441,109 +375063,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [17594] = 25, + [18005] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, + ACTIONS(5955), 1, anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(5912), 1, - anon_sym_COMMA, - STATE(2512), 1, + STATE(2541), 1, sym_heredoc_body, - STATE(2515), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(2542), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(4881), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(4883), 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, - ACTIONS(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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_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_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [17700] = 7, + [18075] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5912), 1, - anon_sym_COMMA, - STATE(2513), 1, - sym_heredoc_body, - STATE(2515), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5957), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + STATE(2542), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 41, + ACTIONS(4875), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371558,15 +375161,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, @@ -371581,32 +375187,26 @@ 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, - [17770] = 7, + [18143] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5912), 1, - anon_sym_COMMA, - STATE(2514), 1, + STATE(2543), 1, sym_heredoc_body, - STATE(2525), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 41, + ACTIONS(5022), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371628,6 +375228,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, @@ -371648,19 +375249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [17840] = 7, + [18209] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5914), 1, - anon_sym_COMMA, - STATE(2515), 1, + ACTIONS(5962), 1, + anon_sym_of, + STATE(2544), 1, sym_heredoc_body, - STATE(2525), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -371669,7 +375268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 41, + ACTIONS(5960), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371691,6 +375290,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, @@ -371711,17 +375311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [17910] = 6, + [18277] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5920), 1, - sym_regex_modifier, - STATE(2516), 1, + ACTIONS(291), 1, + anon_sym_EQ, + STATE(2545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -371730,7 +375330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 42, + ACTIONS(173), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371773,109 +375373,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [17978] = 25, + [18345] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(5922), 1, - anon_sym_COMMA, - STATE(2489), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2517), 1, + STATE(2546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(4838), 10, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + anon_sym_COLON2, + ACTIONS(4840), 41, + 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 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_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_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, - [18084] = 7, + [18411] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5922), 1, - anon_sym_COMMA, - STATE(2489), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2518), 1, + STATE(2547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5968), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 41, + ACTIONS(5966), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -371897,6 +375474,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, @@ -371917,100 +375495,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18154] = 25, + [18477] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(5924), 1, + ACTIONS(5972), 1, anon_sym_COMMA, - STATE(2519), 1, - sym_heredoc_body, - STATE(2524), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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, - [18260] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5924), 1, - anon_sym_COMMA, - STATE(2520), 1, + STATE(2548), 2, sym_heredoc_body, - STATE(2524), 1, aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5860), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -372019,7 +375515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 41, + ACTIONS(5970), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372061,28 +375557,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18330] = 6, + [18545] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5930), 1, - sym_regex_modifier, - STATE(2521), 1, + ACTIONS(5907), 1, + anon_sym_COLON_COLON, + STATE(2525), 1, + aux_sym_constant_repeat1, + STATE(2549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 42, + ACTIONS(4857), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -372095,16 +375593,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, @@ -372115,117 +375615,153 @@ 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, - [18398] = 25, + [18615] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, + STATE(2550), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5979), 9, anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, anon_sym_DOT, - ACTIONS(5749), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, anon_sym_EQ_EQ, - ACTIONS(5761), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, + ACTIONS(5977), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(5777), 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(5932), 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(2522), 1, - sym_heredoc_body, - STATE(2527), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5753), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5759), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 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, + [18681] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5983), 1, + anon_sym_of, + STATE(2551), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5985), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(5981), 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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_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, - [18504] = 7, + [18749] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5932), 1, - anon_sym_COMMA, - STATE(2523), 1, + STATE(2552), 1, sym_heredoc_body, - STATE(2527), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 41, + ACTIONS(5987), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372247,6 +375783,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, @@ -372267,28 +375804,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18574] = 7, + [18815] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5932), 1, - anon_sym_COMMA, - STATE(2524), 1, + STATE(2553), 1, sym_heredoc_body, - STATE(2525), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 41, + ACTIONS(5987), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372310,6 +375844,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, @@ -372330,27 +375865,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18644] = 6, + [18881] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5936), 1, - anon_sym_COMMA, + STATE(2554), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2525), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 41, + ACTIONS(5991), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372372,6 +375905,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, @@ -372392,19 +375926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18712] = 7, + [18947] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5922), 1, - anon_sym_COMMA, - STATE(2525), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2526), 1, + ACTIONS(5608), 1, + anon_sym_LPAREN2, + STATE(2555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -372413,7 +375945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 41, + ACTIONS(173), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372435,6 +375967,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, @@ -372455,19 +375988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18782] = 7, + [19015] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_COMMA, - STATE(2525), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2527), 1, + ACTIONS(5999), 1, + sym_regex_modifier, + STATE(2556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -372476,7 +376007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 41, + ACTIONS(5995), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372498,6 +376029,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, @@ -372518,27 +376050,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18852] = 7, + [19083] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5888), 1, - anon_sym_LPAREN, - ACTIONS(5943), 1, + ACTIONS(5955), 1, + anon_sym_PIPE, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, anon_sym_DOT, - STATE(2528), 1, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + STATE(2541), 1, + aux_sym_union_type_repeat1, + STATE(2557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 42, + ACTIONS(4890), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372553,15 +376093,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, @@ -372573,35 +376113,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, - [18922] = 6, + [19161] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - STATE(2529), 1, + ACTIONS(5955), 1, + anon_sym_PIPE, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + STATE(2541), 1, + aux_sym_union_type_repeat1, + STATE(2558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 41, + ACTIONS(4894), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372622,12 +376166,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, @@ -372638,29 +376180,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_else, - [18990] = 5, + [19239] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2530), 1, + STATE(2559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 42, + ACTIONS(6009), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372703,100 +376245,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19055] = 21, + [19305] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - STATE(2531), 1, + STATE(2560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(4620), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(4618), 43, + 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5951), 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_LPAREN, 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, - [19152] = 5, + [19371] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2532), 1, + STATE(2561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 42, + ACTIONS(6013), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -372839,61 +376367,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19217] = 17, + [19437] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, + STATE(2562), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6019), 9, + anon_sym_DOT_DOT, anon_sym_DOT, - ACTIONS(5749), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, anon_sym_EQ_EQ, - ACTIONS(5761), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5771), 1, + ACTIONS(6017), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2533), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5961), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5959), 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, @@ -372901,8 +376410,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, @@ -372911,52 +376428,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19306] = 13, + [19503] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2534), 1, + STATE(2563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(5671), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 28, + anon_sym_AMP_STAR, + ACTIONS(5669), 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, @@ -372965,12 +376472,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, @@ -372979,48 +376489,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19387] = 11, + [19569] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5771), 1, - sym__start_of_index_operator, - STATE(2535), 1, + STATE(2564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5969), 6, + ACTIONS(6023), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 31, + anon_sym_AMP_STAR, + ACTIONS(6021), 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, @@ -373037,6 +376541,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, @@ -373045,55 +376550,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19464] = 15, + [19635] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2536), 1, + STATE(2565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, + ACTIONS(6027), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5971), 27, + anon_sym_AMP_STAR, + ACTIONS(6025), 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, @@ -373101,12 +376593,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, @@ -373115,65 +376611,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19549] = 19, + [19701] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - STATE(2537), 1, + ACTIONS(6033), 1, + sym_regex_modifier, + STATE(2566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(6031), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(6029), 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5975), 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, @@ -373181,98 +376655,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [19642] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - STATE(2538), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5753), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5759), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5979), 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, - 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_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [19737] = 5, + [19769] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2539), 1, + STATE(2567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -373281,7 +376690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 42, + ACTIONS(6035), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373316,6 +376725,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, @@ -373324,24 +376734,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19802] = 5, + [19835] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2540), 1, + STATE(2568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 42, + ACTIONS(5818), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373384,24 +376795,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19867] = 5, + [19901] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2541), 1, + ACTIONS(6041), 1, + anon_sym_LPAREN, + ACTIONS(6045), 1, + anon_sym_DOT, + STATE(2569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 42, + ACTIONS(6039), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373444,24 +376858,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19932] = 5, + [19971] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2542), 1, + STATE(2570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 42, + ACTIONS(6047), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373504,24 +376919,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19997] = 5, + [20037] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2543), 1, + STATE(2571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 42, + ACTIONS(6051), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373564,15 +376980,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20062] = 5, + [20103] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2544), 1, + ACTIONS(6041), 1, + anon_sym_LPAREN, + STATE(2572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -373581,7 +376999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 42, + ACTIONS(6039), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373624,24 +377042,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20127] = 5, + [20171] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2545), 1, + STATE(2573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 42, + ACTIONS(6055), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373684,84 +377103,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20192] = 5, + [20237] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2546), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(5879), 1, + anon_sym_COMMA, + STATE(2574), 1, sym_heredoc_body, + STATE(2580), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5987), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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_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, - [20257] = 5, + [20343] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2547), 1, + ACTIONS(6059), 1, + anon_sym_LPAREN2, + STATE(2575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 42, + ACTIONS(4902), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373776,16 +377219,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, @@ -373800,30 +377245,29 @@ 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, - [20322] = 5, + [20411] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2548), 1, + ACTIONS(6063), 1, + anon_sym_LPAREN, + STATE(2576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 41, + ACTIONS(6061), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373845,7 +377289,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, @@ -373860,79 +377303,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, - [20387] = 5, + [20479] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2549), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(5935), 1, + anon_sym_COMMA, + STATE(2510), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5995), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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_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, - [20452] = 5, + [20585] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2550), 1, + ACTIONS(5879), 1, + anon_sym_COMMA, + STATE(2578), 1, sym_heredoc_body, + STATE(2580), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -373941,7 +377410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 42, + ACTIONS(5856), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373963,7 +377432,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, @@ -373984,15 +377452,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20517] = 5, + [20655] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2551), 1, + ACTIONS(131), 1, + sym__string_literal_start, + STATE(2513), 1, + aux_sym_chained_string_repeat1, + STATE(2579), 1, sym_heredoc_body, + STATE(2886), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -374001,9 +377475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 42, + ACTIONS(5686), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -374039,20 +377512,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, - [20582] = 5, + [20727] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2552), 1, + ACTIONS(6067), 1, + anon_sym_COMMA, + STATE(2548), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -374061,7 +377537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 42, + ACTIONS(5888), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374083,7 +377559,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, @@ -374104,24 +377579,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20647] = 5, + [20797] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2553), 1, + ACTIONS(5955), 1, + anon_sym_PIPE, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + STATE(2541), 1, + aux_sym_union_type_repeat1, + STATE(2581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 42, + ACTIONS(4861), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374136,15 +377622,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, @@ -374156,23 +377642,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, - anon_sym_when, - anon_sym_in, - [20712] = 5, + [20875] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2554), 1, + ACTIONS(5792), 1, + anon_sym_COMMA, + STATE(2548), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -374181,7 +377667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 42, + ACTIONS(5888), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374203,7 +377689,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, @@ -374224,26 +377709,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20777] = 5, + [20945] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2555), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(5854), 1, + anon_sym_DASH_GT, + STATE(2583), 1, sym_heredoc_body, + STATE(10423), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 42, + ACTIONS(5022), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -374263,7 +377754,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, @@ -374279,29 +377769,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, - [20842] = 5, + [21017] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2556), 1, + ACTIONS(5955), 1, + anon_sym_PIPE, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + STATE(2541), 1, + aux_sym_union_type_repeat1, + STATE(2584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 42, + ACTIONS(4898), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374316,15 +377816,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, @@ -374336,32 +377836,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, - [20907] = 5, + [21095] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2557), 1, + ACTIONS(5955), 1, + anon_sym_PIPE, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + STATE(2541), 1, + aux_sym_union_type_repeat1, + STATE(2585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(4877), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 42, + ACTIONS(4879), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374376,15 +377883,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, @@ -374396,32 +377903,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, - [20972] = 5, + [21173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2558), 1, + STATE(2586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 42, + ACTIONS(6069), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374464,26 +377968,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21037] = 5, + [21239] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2559), 1, + ACTIONS(6073), 1, + anon_sym_COLON_COLON, + STATE(2587), 1, sym_heredoc_body, + STATE(2752), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(4851), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(4853), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -374494,18 +378002,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, @@ -374516,37 +378023,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, - [21102] = 7, + [21308] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5771), 1, - sym__start_of_index_operator, - STATE(2560), 1, + STATE(2588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(4838), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 41, + ACTIONS(4840), 41, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -374559,15 +378064,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, @@ -374578,32 +378084,31 @@ 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, - [21171] = 5, + [21373] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2561), 1, + STATE(2589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 42, + ACTIONS(4968), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374618,16 +378123,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, @@ -374642,28 +378149,26 @@ 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, - [21236] = 5, + [21438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2562), 1, + STATE(2590), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 42, + ACTIONS(4940), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374678,16 +378183,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, @@ -374702,19 +378209,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, - [21301] = 5, + [21503] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2563), 1, + STATE(2591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -374723,7 +378227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 42, + ACTIONS(173), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374766,15 +378270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21366] = 5, + [21568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2564), 1, + STATE(2592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -374783,7 +378287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 42, + ACTIONS(6075), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374826,25 +378330,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21431] = 5, + [21633] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2565), 1, + STATE(2593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 41, + ACTIONS(6079), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -374859,18 +378362,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, @@ -374885,199 +378386,175 @@ 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, - [21496] = 5, + anon_sym_when, + anon_sym_in, + [21698] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2566), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6059), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6083), 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, - [21561] = 8, + [21799] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1255), 1, - anon_sym_COLON, - ACTIONS(5642), 1, - anon_sym_COLON_COLON, - STATE(2389), 1, - aux_sym_constant_repeat1, - STATE(2567), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4855), 8, + ACTIONS(5754), 1, anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(5762), 1, anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5774), 1, anon_sym_AMP_STAR, - ACTIONS(4857), 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__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_LPAREN2, + ACTIONS(5778), 1, anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_AMP_AMP, + ACTIONS(5782), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [21632] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2568), 1, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6063), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6085), 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, - [21697] = 5, + [21900] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2569), 1, + STATE(2596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375086,7 +378563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 42, + ACTIONS(6085), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375129,25 +378606,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21762] = 5, + [21965] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2570), 1, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + ACTIONS(6089), 1, + anon_sym_PIPE, + STATE(2597), 1, sym_heredoc_body, + STATE(2773), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 41, + ACTIONS(4890), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375168,12 +378655,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, @@ -375184,20 +378668,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, - [21827] = 5, + [22042] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2571), 1, + STATE(2598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375206,7 +378689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 42, + ACTIONS(6091), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375249,145 +378732,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21892] = 5, + [22107] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2572), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6073), 8, + ACTIONS(5754), 1, anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(5762), 1, anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5774), 1, anon_sym_AMP_STAR, - ACTIONS(6071), 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(5778), 1, anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_AMP_AMP, + ACTIONS(5782), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [21957] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2573), 1, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6075), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 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, - [22022] = 5, + [22208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2574), 1, + STATE(2600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 41, + ACTIONS(6097), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375402,18 +378842,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, @@ -375428,16 +378866,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, - [22087] = 5, + anon_sym_when, + anon_sym_in, + [22273] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2575), 1, + STATE(2601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375446,7 +378887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 42, + ACTIONS(6097), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375489,15 +378930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22152] = 5, + [22338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2576), 1, + STATE(2602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375506,7 +378947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 42, + ACTIONS(6101), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375549,15 +378990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22217] = 5, + [22403] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2577), 1, + STATE(2603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375566,7 +379007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 42, + ACTIONS(6105), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375609,15 +379050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22282] = 5, + [22468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2578), 1, + STATE(2604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375626,7 +379067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 42, + ACTIONS(6109), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375669,15 +379110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22347] = 5, + [22533] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2579), 1, + STATE(2605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375686,7 +379127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 42, + ACTIONS(6113), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375729,15 +379170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22412] = 5, + [22598] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2580), 1, + STATE(2606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375746,7 +379187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 42, + ACTIONS(6117), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375789,15 +379230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22477] = 5, + [22663] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2581), 1, + STATE(2607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -375806,7 +379247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 42, + ACTIONS(6121), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -375849,117 +379290,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22542] = 21, + [22728] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, + ACTIONS(5758), 1, anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, + ACTIONS(5774), 1, anon_sym_AMP_STAR, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, + ACTIONS(5784), 1, sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - STATE(2582), 1, + STATE(2608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, + ACTIONS(5776), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, + ACTIONS(5788), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 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, - [22639] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2583), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6113), 8, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6111), 42, + ACTIONS(6125), 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__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, @@ -375976,7 +379347,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, @@ -375985,99 +379355,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22704] = 11, + [22803] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, + ACTIONS(5758), 1, anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5900), 1, - anon_sym_QMARK, - ACTIONS(6115), 1, - anon_sym_PIPE, - STATE(2584), 1, + ACTIONS(5784), 1, + sym__start_of_index_operator, + STATE(2609), 1, sym_heredoc_body, - STATE(2722), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4886), 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, + ACTIONS(5776), 2, 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_do, - anon_sym_else, - [22781] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2585), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6119), 8, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 42, + ACTIONS(6129), 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, @@ -376102,7 +379410,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, @@ -376111,33 +379418,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22846] = 5, + [22874] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2586), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5784), 1, + sym__start_of_index_operator, + STATE(2610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 42, + ACTIONS(6133), 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, @@ -376162,7 +379473,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, @@ -376171,41 +379481,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22911] = 5, + [22945] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2587), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5784), 1, + sym__start_of_index_operator, + STATE(2611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(173), 42, + ACTIONS(6137), 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__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376214,15 +379534,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, @@ -376231,41 +379548,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22976] = 5, + [23024] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2588), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + STATE(2612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6125), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6141), 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, @@ -376273,16 +379618,76 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23121] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2613), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5766), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5770), 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(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6145), 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, + 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -376291,41 +379696,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23041] = 5, + [23210] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2589), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6129), 42, + ACTIONS(6149), 28, 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, @@ -376334,15 +379750,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, @@ -376351,25 +379764,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23106] = 5, + [23291] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2590), 1, + ACTIONS(6153), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, + anon_sym_DOT, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6159), 1, + anon_sym_PIPE, + ACTIONS(6161), 1, + anon_sym_QMARK, + STATE(2615), 1, sym_heredoc_body, + STATE(2717), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(4877), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 42, - sym__line_break, + ACTIONS(4879), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -376381,17 +379804,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, @@ -376403,49 +379823,55 @@ 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, - [23171] = 5, + [23368] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2591), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5784), 1, + sym__start_of_index_operator, + STATE(2616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6137), 42, + ACTIONS(6163), 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__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376462,7 +379888,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, @@ -376471,41 +379896,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23236] = 5, + [23445] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2592), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5708), 8, - anon_sym_DOT_DOT, + ACTIONS(5758), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(5762), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5774), 1, anon_sym_AMP_STAR, - ACTIONS(5706), 42, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5784), 1, sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2617), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 27, + 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, @@ -376513,16 +379952,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, @@ -376531,41 +379966,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23301] = 5, + [23530] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2593), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + STATE(2618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6141), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6171), 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, @@ -376573,33 +380032,98 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23623] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + STATE(2619), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5766), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(5772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6175), 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, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [23366] = 5, + [23718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2594), 1, + STATE(2620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -376608,7 +380132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 42, + ACTIONS(6179), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -376651,15 +380175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23431] = 5, + [23783] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2595), 1, + STATE(2621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -376668,7 +380192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 42, + ACTIONS(6183), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -376711,15 +380235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23496] = 5, + [23848] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2596), 1, + STATE(2622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -376728,7 +380252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 42, + ACTIONS(6183), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -376771,15 +380295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23561] = 5, + [23913] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2597), 1, + STATE(2623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -376788,7 +380312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 42, + ACTIONS(6183), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -376831,15 +380355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23626] = 5, + [23978] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2598), 1, + STATE(2624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -376848,7 +380372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 42, + ACTIONS(6183), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -376891,15 +380415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23691] = 5, + [24043] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2599), 1, + STATE(2625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -376908,7 +380432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 42, + ACTIONS(6187), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -376951,15 +380475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23756] = 5, + [24108] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2600), 1, + STATE(2626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -376968,7 +380492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 42, + ACTIONS(6187), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377011,15 +380535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23821] = 5, + [24173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2601), 1, + STATE(2627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377028,7 +380552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 42, + ACTIONS(6187), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377071,15 +380595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23886] = 5, + [24238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2602), 1, + STATE(2628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377088,7 +380612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 42, + ACTIONS(6187), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377131,27 +380655,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23951] = 6, + [24303] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6177), 1, - anon_sym_LPAREN2, - STATE(2603), 1, + STATE(2629), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 40, + ACTIONS(6191), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -377163,17 +380685,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, @@ -377187,41 +380710,31 @@ 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, - [24018] = 11, + [24368] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_DOT, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_PIPE, - ACTIONS(6187), 1, - anon_sym_QMARK, - STATE(2604), 1, + STATE(2630), 1, sym_heredoc_body, - STATE(2686), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(4859), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 37, - sym__start_of_brace_block, + ACTIONS(4861), 41, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -377232,12 +380745,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_DASH_GT, anon_sym_end, @@ -377251,22 +380768,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, - [24095] = 5, + [24433] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2605), 1, + STATE(2631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377275,7 +380792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 42, + ACTIONS(6195), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377318,15 +380835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24160] = 5, + [24498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2606), 1, + STATE(2632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377335,7 +380852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 42, + ACTIONS(6199), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377378,15 +380895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24225] = 5, + [24563] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2607), 1, + STATE(2633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377395,7 +380912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 42, + ACTIONS(6203), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377438,35 +380955,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24290] = 11, + [24628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_DOT, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_PIPE, - ACTIONS(6187), 1, - anon_sym_QMARK, - STATE(2608), 1, + STATE(2634), 1, sym_heredoc_body, - STATE(2686), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(6209), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 37, + ACTIONS(6207), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -377478,14 +380985,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, @@ -377497,34 +381007,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_COLON2, anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [24367] = 11, + [24693] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, + ACTIONS(6153), 1, anon_sym_LBRACK, - ACTIONS(6181), 1, + ACTIONS(6155), 1, anon_sym_DOT, - ACTIONS(6183), 1, + ACTIONS(6157), 1, anon_sym_STAR, - ACTIONS(6185), 1, + ACTIONS(6159), 1, anon_sym_PIPE, - ACTIONS(6187), 1, + ACTIONS(6161), 1, anon_sym_QMARK, - STATE(2609), 1, + STATE(2635), 1, sym_heredoc_body, - STATE(2686), 1, + STATE(2717), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -377532,7 +381043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 37, + ACTIONS(4890), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -377570,15 +381081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24444] = 5, + [24770] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2610), 1, + STATE(2636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377587,7 +381098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 42, + ACTIONS(6211), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377630,15 +381141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24509] = 5, + [24835] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2611), 1, + STATE(2637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377647,7 +381158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 42, + ACTIONS(6215), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377690,102 +381201,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24574] = 23, + [24900] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, + STATE(2638), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6221), 8, anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, anon_sym_DOT, - ACTIONS(5749), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, anon_sym_EQ_EQ, - ACTIONS(5761), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, + ACTIONS(6219), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(5777), 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(2612), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5753), 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_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5759), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 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, + [24965] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + ACTIONS(6089), 1, + anon_sym_PIPE, + STATE(2639), 1, + sym_heredoc_body, + STATE(2773), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4892), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(4894), 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6205), 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, - 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_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_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, - anon_sym_when, - anon_sym_in, - [24675] = 5, + [25042] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2613), 1, + STATE(2640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 42, + ACTIONS(4920), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377800,16 +381360,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, @@ -377824,19 +381386,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, - [24740] = 5, + [25107] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2614), 1, + STATE(2641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377845,7 +381404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 42, + ACTIONS(6223), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377888,15 +381447,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24805] = 5, + [25172] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2615), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6227), 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, + [25273] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2643), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -377905,7 +381542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 42, + ACTIONS(6229), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -377948,27 +381585,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24870] = 6, + [25338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2616), 1, + STATE(2644), 1, sym_heredoc_body, - STATE(2686), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 40, + ACTIONS(6233), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -377980,17 +381615,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, @@ -378004,20 +381640,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, - [24937] = 5, + [25403] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2617), 1, + STATE(2645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -378026,7 +381662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 42, + ACTIONS(6237), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -378069,15 +381705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25002] = 5, + [25468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2618), 1, + STATE(2646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -378086,7 +381722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6223), 42, + ACTIONS(6241), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -378129,35 +381765,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25067] = 9, + [25533] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(419), 1, - sym__string_literal_start, - ACTIONS(6227), 1, - anon_sym_COLON, - STATE(2619), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5784), 1, + sym__start_of_index_operator, + STATE(2647), 1, sym_heredoc_body, - STATE(2822), 1, - aux_sym_chained_string_repeat1, - STATE(3170), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 38, + ACTIONS(6245), 41, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -378169,12 +381799,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, @@ -378192,16 +381823,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, - [25140] = 5, + anon_sym_when, + anon_sym_in, + [25602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2620), 1, + STATE(2648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -378210,7 +381844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 42, + ACTIONS(6249), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -378253,76 +381887,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25205] = 6, + [25667] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2621), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + STATE(2649), 1, sym_heredoc_body, - STATE(2722), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4875), 40, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6253), 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, + 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, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [25272] = 5, + anon_sym_when, + anon_sym_in, + [25764] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2622), 1, + STATE(2650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -378331,7 +381980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 42, + ACTIONS(6257), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -378374,77 +382023,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25337] = 7, + [25829] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - STATE(2623), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2651), 1, sym_heredoc_body, - STATE(2652), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 10, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4840), 38, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6261), 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_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, - [25406] = 5, + [25930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2624), 1, + STATE(2652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(6265), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -378453,7 +382118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 42, + ACTIONS(6263), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -378496,25 +382161,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25471] = 5, + [25995] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2625), 1, + ACTIONS(6153), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, + anon_sym_DOT, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6159), 1, + anon_sym_PIPE, + ACTIONS(6161), 1, + anon_sym_QMARK, + STATE(2653), 1, sym_heredoc_body, + STATE(2717), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 42, - sym__line_break, + ACTIONS(4894), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -378526,17 +382201,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, @@ -378548,23 +382220,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, - [25536] = 5, + [26072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2626), 1, + STATE(2654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -378573,7 +382244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 42, + ACTIONS(6267), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -378616,103 +382287,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25601] = 23, + [26137] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2627), 1, + STATE(2655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(6273), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(6271), 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6247), 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, - [25702] = 5, + [26202] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2628), 1, + STATE(2656), 1, sym_heredoc_body, + STATE(2717), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 42, - sym__line_break, + ACTIONS(4875), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -378724,18 +382379,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, @@ -378749,20 +382403,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, - [25767] = 5, + [26269] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2629), 1, + STATE(2657), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(6277), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -378771,7 +382425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 42, + ACTIONS(6275), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -378814,84 +382468,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25832] = 5, + [26334] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2630), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6259), 8, - anon_sym_DOT_DOT, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6257), 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(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, 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, - [25897] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2631), 1, + ACTIONS(6089), 1, + anon_sym_PIPE, + STATE(2658), 1, sym_heredoc_body, + STATE(2773), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(4970), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 42, + ACTIONS(4972), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -378906,13 +382511,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, @@ -378926,85 +382530,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, - [25962] = 7, + [26411] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - STATE(2632), 1, - sym_heredoc_body, - STATE(2754), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4838), 10, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4840), 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, - [26031] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2633), 1, + STATE(2659), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -379013,7 +382551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 42, + ACTIONS(145), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379056,15 +382594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26096] = 5, + [26476] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2634), 1, + STATE(2660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -379073,7 +382611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 42, + ACTIONS(5970), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379116,15 +382654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26161] = 5, + [26541] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2635), 1, + STATE(2661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -379133,7 +382671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 42, + ACTIONS(6279), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379176,15 +382714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26226] = 5, + [26606] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2636), 1, + STATE(2662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(6285), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -379193,7 +382731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 42, + ACTIONS(6283), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379236,15 +382774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26291] = 5, + [26671] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2637), 1, + STATE(2663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -379253,7 +382791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 42, + ACTIONS(5729), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379296,24 +382834,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26356] = 5, + [26736] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2638), 1, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + ACTIONS(6089), 1, + anon_sym_PIPE, + STATE(2664), 1, sym_heredoc_body, + STATE(2773), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(4922), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 42, + ACTIONS(4924), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379328,13 +382877,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, @@ -379348,32 +382896,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, - [26421] = 5, + [26813] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2639), 1, + STATE(2665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 42, + ACTIONS(4928), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379388,16 +382933,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, @@ -379412,19 +382959,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, - [26486] = 5, + [26878] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2640), 1, + STATE(2666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6289), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -379433,7 +382977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 42, + ACTIONS(6287), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379476,87 +383020,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26551] = 5, + [26943] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2641), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4922), 9, - anon_sym_DOT_DOT, + ACTIONS(6291), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(6293), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4924), 41, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6295), 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__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, - [26616] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2642), 1, + STATE(2667), 1, sym_heredoc_body, + STATE(2874), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 42, + ACTIONS(5719), 39, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -379591,15 +383080,14 @@ 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, - [26681] = 5, + [27016] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2643), 1, + STATE(2668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -379656,28 +383144,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26746] = 5, + [27081] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2644), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5784), 1, + sym__start_of_index_operator, + STATE(2669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 41, + ACTIONS(6301), 41, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -379689,18 +383178,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, @@ -379715,28 +383202,33 @@ 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, - [26811] = 5, + anon_sym_when, + anon_sym_in, + [27150] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2645), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5784), 1, + sym__start_of_index_operator, + STATE(2670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 42, + ACTIONS(6305), 41, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -379776,15 +383268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26876] = 5, + [27219] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2646), 1, + STATE(2671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -379793,7 +383285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 42, + ACTIONS(6309), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379836,24 +383328,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26941] = 5, + [27284] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2647), 1, + STATE(2672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 42, + ACTIONS(4932), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -379868,16 +383361,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, @@ -379892,19 +383387,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, - [27006] = 5, + [27349] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2648), 1, + STATE(2673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -379913,8 +383405,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 42, + ACTIONS(6313), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379930,7 +383423,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, @@ -379948,193 +383440,96 @@ 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, - [27071] = 23, + [27414] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2649), 1, + STATE(2674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(5164), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(5166), 42, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6309), 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, + sym__string_literal_start, 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, - [27172] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2650), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5753), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5759), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6311), 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_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, - [27273] = 7, + [27479] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5771), 1, - sym__start_of_index_operator, - STATE(2651), 1, + STATE(2675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(4942), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 41, + ACTIONS(4944), 41, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -380146,16 +383541,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, @@ -380170,22 +383567,20 @@ 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, - [27342] = 6, + [27544] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6317), 1, + ACTIONS(6073), 1, anon_sym_COLON_COLON, + STATE(2676), 1, + sym_heredoc_body, + STATE(2752), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2652), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 10, + ACTIONS(4845), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380196,7 +383591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_COLON2, - ACTIONS(4846), 38, + ACTIONS(4847), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -380235,15 +383630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27409] = 5, + [27613] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2653), 1, + STATE(2677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380252,7 +383647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 42, + ACTIONS(6317), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380295,15 +383690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27474] = 5, + [27678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2654), 1, + STATE(2678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380312,7 +383707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 42, + ACTIONS(6321), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380355,15 +383750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27539] = 5, + [27743] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2655), 1, + STATE(2679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380372,7 +383767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 42, + ACTIONS(6325), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380415,15 +383810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27604] = 5, + [27808] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2656), 1, + STATE(2680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380432,7 +383827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 42, + ACTIONS(6325), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380475,91 +383870,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27669] = 21, + [27873] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - STATE(2657), 1, + ACTIONS(6073), 1, + anon_sym_COLON_COLON, + STATE(2587), 1, + aux_sym_constant_repeat1, + STATE(2681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(4845), 10, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + anon_sym_COLON2, + ACTIONS(4847), 38, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 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_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_do, - anon_sym_elsif, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [27766] = 5, + [27942] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2658), 1, + STATE(2682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380568,7 +383949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 42, + ACTIONS(6329), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380611,15 +383992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27831] = 5, + [28007] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2659), 1, + STATE(2683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380628,7 +384009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 42, + ACTIONS(6333), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380671,15 +384052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27896] = 5, + [28072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2660), 1, + STATE(2684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380689,7 +384070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 41, + ACTIONS(4936), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380731,15 +384112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [27961] = 5, + [28137] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2661), 1, + STATE(2685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380748,7 +384129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 42, + ACTIONS(6337), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380791,15 +384172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28026] = 5, + [28202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2662), 1, + STATE(2686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380808,7 +384189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 42, + ACTIONS(6341), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380851,15 +384232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28091] = 5, + [28267] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2663), 1, + STATE(2687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380868,7 +384249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 42, + ACTIONS(6345), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380911,15 +384292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28156] = 5, + [28332] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2664), 1, + STATE(2688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -380928,7 +384309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 42, + ACTIONS(6349), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -380971,135 +384352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28221] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2665), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4914), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4916), 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, - [28286] = 5, + [28397] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2666), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4918), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4920), 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, - [28351] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2667), 1, + STATE(2689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -381108,7 +384369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 42, + ACTIONS(6353), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381151,15 +384412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28416] = 5, + [28462] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2668), 1, + STATE(2690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -381168,7 +384429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 42, + ACTIONS(6357), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381211,15 +384472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28481] = 5, + [28527] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2669), 1, + STATE(2691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -381229,7 +384490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 41, + ACTIONS(4964), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381271,85 +384532,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [28546] = 5, + [28592] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2670), 1, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + STATE(2692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4908), 41, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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, + 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, + anon_sym_elsif, anon_sym_else, - [28611] = 5, + anon_sym_when, + anon_sym_in, + [28689] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2671), 1, + STATE(2693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 41, + ACTIONS(5719), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381364,18 +384640,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, @@ -381390,36 +384664,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, - [28676] = 11, + anon_sym_when, + anon_sym_in, + [28754] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5900), 1, - anon_sym_QMARK, - ACTIONS(6115), 1, - anon_sym_PIPE, - STATE(2672), 1, + STATE(2694), 1, sym_heredoc_body, - STATE(2722), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, + ACTIONS(6367), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 37, + ACTIONS(6365), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381434,12 +384700,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, @@ -381453,28 +384720,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_do, + anon_sym_elsif, anon_sym_else, - [28753] = 5, + anon_sym_when, + anon_sym_in, + [28819] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2673), 1, + STATE(2695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 42, + ACTIONS(4956), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381489,16 +384761,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, @@ -381513,19 +384787,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, - [28818] = 5, + [28884] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2674), 1, + STATE(2696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -381535,7 +384806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 41, + ACTIONS(4912), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381577,15 +384848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [28883] = 5, + [28949] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2675), 1, + STATE(2697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -381594,7 +384865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 42, + ACTIONS(6369), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381637,15 +384908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28948] = 5, + [29014] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2676), 1, + STATE(2698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -381655,7 +384926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 41, + ACTIONS(4948), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381697,95 +384968,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [29013] = 5, + [29079] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2677), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4948), 41, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6373), 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_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, + anon_sym_elsif, anon_sym_else, - [29078] = 11, + anon_sym_when, + anon_sym_in, + [29180] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5900), 1, - anon_sym_QMARK, - ACTIONS(6115), 1, - anon_sym_PIPE, - STATE(2678), 1, + STATE(2700), 1, sym_heredoc_body, - STATE(2722), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(6377), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 37, + ACTIONS(6375), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381800,12 +385078,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, @@ -381819,19 +385098,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, - [29155] = 5, + anon_sym_when, + anon_sym_in, + [29245] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2679), 1, + ACTIONS(6379), 1, + anon_sym_LPAREN2, + STATE(2701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -381841,8 +385126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 41, - sym__line_break, + ACTIONS(4902), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -381854,16 +385138,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, @@ -381881,27 +385162,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_else, - [29220] = 5, + anon_sym_when, + anon_sym_in, + [29312] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2680), 1, + STATE(2702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 41, + ACTIONS(5698), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381916,18 +385199,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, @@ -381942,26 +385223,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, - [29285] = 5, + anon_sym_when, + anon_sym_in, + [29377] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2681), 1, + STATE(2703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 41, + ACTIONS(6381), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -381976,18 +385259,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, @@ -382002,16 +385283,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, - [29350] = 5, + anon_sym_when, + anon_sym_in, + [29442] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2682), 1, + STATE(2704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -382020,7 +385304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 42, + ACTIONS(6385), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -382063,15 +385347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29415] = 5, + [29507] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2683), 1, + STATE(2705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -382080,7 +385364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 42, + ACTIONS(6389), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -382123,15 +385407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29480] = 5, + [29572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2684), 1, + STATE(2706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -382140,7 +385424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 42, + ACTIONS(6393), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -382183,106 +385467,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29545] = 23, + [29637] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2685), 1, + STATE(2707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(6391), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(6389), 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5934), 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, - [29646] = 7, + [29702] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6185), 1, - anon_sym_PIPE, - STATE(2686), 1, + STATE(2708), 1, sym_heredoc_body, - STATE(2687), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 40, + ACTIONS(6397), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -382294,17 +385557,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, @@ -382318,32 +385582,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_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [29715] = 6, + [29767] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6376), 1, - anon_sym_PIPE, + STATE(2709), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2687), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 40, + ACTIONS(6401), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -382355,17 +385617,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, @@ -382379,34 +385642,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [29782] = 7, + [29832] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5771), 1, - sym__start_of_index_operator, - STATE(2688), 1, + STATE(2710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(6407), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 41, + ACTIONS(6405), 42, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -382446,35 +385707,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29851] = 11, + [29897] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_DOT, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_PIPE, - ACTIONS(6187), 1, - anon_sym_QMARK, - STATE(2686), 1, - aux_sym_union_type_repeat1, - STATE(2689), 1, + STATE(2711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6411), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 37, + ACTIONS(6409), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -382486,14 +385737,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, @@ -382505,42 +385759,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, - [29928] = 11, + [29962] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_DOT, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6185), 1, - anon_sym_PIPE, - ACTIONS(6187), 1, - anon_sym_QMARK, - STATE(2686), 1, - aux_sym_union_type_repeat1, - STATE(2690), 1, + STATE(2712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(6415), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 37, + ACTIONS(6413), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -382552,14 +385797,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, @@ -382571,22 +385819,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, - [30005] = 5, + [30027] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2691), 1, + STATE(2713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -382595,7 +385844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 42, + ACTIONS(6417), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -382638,15 +385887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30070] = 5, + [30092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2692), 1, + STATE(2714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -382655,7 +385904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 42, + ACTIONS(6421), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -382698,15 +385947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30135] = 5, + [30157] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2693), 1, + STATE(2715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -382715,7 +385964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 42, + ACTIONS(6425), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -382758,15 +386007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30200] = 5, + [30222] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2694), 1, + ACTIONS(1253), 1, + anon_sym_COLON, + ACTIONS(5636), 1, + anon_sym_COLON_COLON, + STATE(2391), 1, + aux_sym_constant_repeat1, + STATE(2716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(4855), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -382775,7 +386030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 42, + ACTIONS(4857), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -382790,13 +386045,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, @@ -382810,33 +386064,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, - [30265] = 5, + [30293] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2695), 1, + ACTIONS(6159), 1, + anon_sym_PIPE, + STATE(2717), 1, sym_heredoc_body, + STATE(2759), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 42, - sym__line_break, + ACTIONS(4883), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -382848,18 +386103,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, @@ -382873,30 +386127,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [30330] = 5, + [30362] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2696), 1, + ACTIONS(6153), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, + anon_sym_DOT, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6159), 1, + anon_sym_PIPE, + ACTIONS(6161), 1, + anon_sym_QMARK, + STATE(2717), 1, + aux_sym_union_type_repeat1, + STATE(2718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 42, - sym__line_break, + ACTIONS(4861), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -382908,17 +386172,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, @@ -382930,23 +386191,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, - [30395] = 5, + [30439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2697), 1, + STATE(2719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -382955,9 +386215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 42, + ACTIONS(5170), 42, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -382973,6 +386232,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, @@ -382990,23 +386250,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, - [30460] = 5, + [30504] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2698), 1, + STATE(2720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(6431), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383015,7 +386275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 42, + ACTIONS(6429), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383058,26 +386318,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30525] = 5, + [30569] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2699), 1, + STATE(2721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 41, + ACTIONS(5694), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383090,18 +386350,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, @@ -383112,21 +386370,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, - [30590] = 5, + anon_sym_when, + anon_sym_in, + [30634] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2700), 1, + STATE(2722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383135,7 +386395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 42, + ACTIONS(6433), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383178,100 +386438,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30655] = 21, + [30699] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - STATE(2701), 1, + STATE(2723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(4838), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(4840), 41, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6403), 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, - 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_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_do, - anon_sym_elsif, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [30752] = 5, + [30764] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2702), 1, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(6003), 1, + anon_sym_DOT, + ACTIONS(6005), 1, + anon_sym_STAR, + ACTIONS(6007), 1, + anon_sym_QMARK, + ACTIONS(6089), 1, + anon_sym_PIPE, + STATE(2724), 1, sym_heredoc_body, + STATE(2773), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 42, + ACTIONS(4898), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383286,13 +386541,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, @@ -383306,32 +386560,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_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [30817] = 5, + [30841] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2703), 1, + STATE(2725), 1, sym_heredoc_body, + STATE(2773), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 42, + ACTIONS(4875), 40, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383346,16 +386599,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, @@ -383370,19 +386624,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, - [30882] = 5, + [30908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2704), 1, + STATE(2726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383391,7 +386642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 42, + ACTIONS(5694), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383434,25 +386685,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30947] = 5, + [30973] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2705), 1, + STATE(2727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 41, + ACTIONS(6437), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383468,16 +386718,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, @@ -383488,21 +386737,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, - [31012] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [31038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2706), 1, + STATE(2728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383511,7 +386762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 42, + ACTIONS(6437), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383554,15 +386805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31077] = 5, + [31103] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2707), 1, + STATE(2729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383571,7 +386822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 42, + ACTIONS(6441), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383614,15 +386865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31142] = 5, + [31168] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2708), 1, + STATE(2730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383631,7 +386882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 42, + ACTIONS(6445), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383674,15 +386925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31207] = 5, + [31233] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2709), 1, + STATE(2731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383691,7 +386942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 42, + ACTIONS(6449), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383734,15 +386985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31272] = 5, + [31298] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2710), 1, + STATE(2732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383751,7 +387002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 42, + ACTIONS(5715), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383794,15 +387045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31337] = 5, + [31363] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2711), 1, + STATE(2733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383811,7 +387062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 42, + ACTIONS(6453), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383854,15 +387105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31402] = 5, + [31428] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2712), 1, + ACTIONS(417), 1, + sym__string_literal_start, + ACTIONS(6457), 1, + anon_sym_COLON, + STATE(2734), 1, sym_heredoc_body, + STATE(2796), 1, + aux_sym_chained_string_repeat1, + STATE(3270), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -383871,7 +387130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 42, + ACTIONS(173), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383886,13 +387145,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, @@ -383910,139 +387168,94 @@ 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, - [31467] = 5, + [31501] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2713), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6445), 8, + ACTIONS(5754), 1, anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(5762), 1, anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5774), 1, anon_sym_AMP_STAR, - ACTIONS(6443), 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(5778), 1, anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_AMP_AMP, + ACTIONS(5782), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [31532] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2714), 1, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6447), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6459), 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, - [31597] = 5, + [31602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2715), 1, + STATE(2736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -384051,7 +387264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 42, + ACTIONS(6461), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384094,15 +387307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31662] = 5, + [31667] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2716), 1, + STATE(2737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -384111,7 +387324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 42, + ACTIONS(5715), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384154,171 +387367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31727] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2717), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6459), 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, - [31828] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2718), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6461), 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, - [31929] = 5, + [31732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2719), 1, + STATE(2738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -384327,7 +387384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 42, + ACTIONS(6465), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384370,15 +387427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31994] = 5, + [31797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2720), 1, + STATE(2739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -384387,7 +387444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 42, + ACTIONS(6469), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384430,106 +387487,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32059] = 23, + [31862] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2721), 1, + STATE(2740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(6475), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + anon_sym_AMP_STAR, + ACTIONS(6473), 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(5775), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 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, - [32160] = 7, + [31927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6115), 1, - anon_sym_PIPE, - STATE(2722), 1, + STATE(2741), 1, sym_heredoc_body, - STATE(2723), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 40, + ACTIONS(6477), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384544,17 +387579,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, @@ -384569,28 +387603,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, - [32229] = 6, + anon_sym_when, + anon_sym_in, + [31992] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6471), 1, - anon_sym_PIPE, + STATE(2742), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2723), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 40, + ACTIONS(6469), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384605,17 +387639,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, @@ -384630,36 +387663,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, - [32296] = 11, + anon_sym_when, + anon_sym_in, + [32057] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5900), 1, - anon_sym_QMARK, - ACTIONS(6115), 1, - anon_sym_PIPE, - STATE(2722), 1, - aux_sym_union_type_repeat1, - STATE(2724), 1, + STATE(2743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6483), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 37, + ACTIONS(6481), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384674,12 +387699,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, @@ -384693,39 +387719,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_elsif, anon_sym_else, - [32373] = 11, + anon_sym_when, + anon_sym_in, + [32122] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5892), 1, - anon_sym_LBRACK, - ACTIONS(5894), 1, - anon_sym_DOT, - ACTIONS(5896), 1, - anon_sym_STAR, - ACTIONS(5900), 1, - anon_sym_QMARK, - ACTIONS(6115), 1, - anon_sym_PIPE, - STATE(2722), 1, - aux_sym_union_type_repeat1, - STATE(2725), 1, + STATE(2744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(6487), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 37, + ACTIONS(6485), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384740,12 +387759,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, @@ -384759,81 +387779,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_do, + anon_sym_elsif, anon_sym_else, - [32450] = 7, + anon_sym_when, + anon_sym_in, + [32187] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - STATE(2623), 1, - aux_sym_constant_repeat1, - STATE(2726), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 10, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4857), 38, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6489), 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_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_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [32288] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2746), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5766), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(5772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5770), 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_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5786), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5788), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6491), 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, - [32519] = 5, + [32389] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2727), 1, + STATE(2747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -384842,7 +387960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 42, + ACTIONS(6493), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384885,15 +388003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32584] = 5, + [32454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2728), 1, + STATE(2748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -384902,7 +388020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 42, + ACTIONS(6497), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384945,15 +388063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32649] = 5, + [32519] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2729), 1, + STATE(2749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(6503), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -384962,7 +388080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 42, + ACTIONS(6501), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385005,15 +388123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32714] = 5, + [32584] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2730), 1, + STATE(2750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -385022,7 +388140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 42, + ACTIONS(6505), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385065,146 +388183,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32779] = 5, + [32649] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2731), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6488), 8, + ACTIONS(5754), 1, anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(5762), 1, anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5774), 1, anon_sym_AMP_STAR, - ACTIONS(6486), 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(5778), 1, anon_sym_QMARK, + ACTIONS(5780), 1, anon_sym_AMP_AMP, + ACTIONS(5782), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [32844] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2732), 1, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6490), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6509), 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, - [32909] = 5, + [32750] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2733), 1, - sym_heredoc_body, + ACTIONS(6511), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + STATE(2752), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(4840), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -385215,18 +388294,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, @@ -385237,32 +388315,32 @@ 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, - [32974] = 5, + [32817] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2734), 1, + STATE(2753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 42, + ACTIONS(4916), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385277,16 +388355,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, @@ -385301,19 +388381,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, - [33039] = 5, + [32882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2735), 1, + STATE(2754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -385322,7 +388399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 42, + ACTIONS(6514), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385365,145 +388442,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33104] = 23, + [32947] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5741), 1, - anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, + ACTIONS(5758), 1, anon_sym_DOT, - ACTIONS(5749), 1, + ACTIONS(5762), 1, anon_sym_PIPE, - ACTIONS(5751), 1, + ACTIONS(5764), 1, anon_sym_CARET, - ACTIONS(5755), 1, + ACTIONS(5768), 1, anon_sym_EQ_EQ, - ACTIONS(5761), 1, + ACTIONS(5774), 1, anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, + ACTIONS(5780), 1, anon_sym_AMP_AMP, - ACTIONS(5769), 1, + ACTIONS(5782), 1, anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, + ACTIONS(5784), 1, sym__start_of_index_operator, - ACTIONS(5777), 1, + ACTIONS(5790), 1, sym_binary_ampersand, - STATE(2736), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5759), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5757), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6506), 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, - [33205] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5741), 1, + ACTIONS(6520), 1, anon_sym_DOT_DOT, - ACTIONS(5743), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_CARET, - ACTIONS(5755), 1, - anon_sym_EQ_EQ, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5765), 1, - anon_sym_QMARK, - ACTIONS(5767), 1, - anon_sym_AMP_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5771), 1, - sym__start_of_index_operator, - ACTIONS(5777), 1, - sym_binary_ampersand, - STATE(2737), 1, + STATE(2755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, + ACTIONS(5766), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5759), 2, + ACTIONS(5772), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5763), 2, + ACTIONS(5776), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5747), 3, + ACTIONS(5760), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5757), 4, + ACTIONS(5770), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5773), 4, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5775), 4, + ACTIONS(5788), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6508), 17, + ACTIONS(6518), 19, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -385515,21 +388510,23 @@ 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_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [33306] = 5, + [33044] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2738), 1, + STATE(2756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -385538,7 +388535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 42, + ACTIONS(5832), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385581,15 +388578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33371] = 5, + [33109] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2739), 1, + STATE(2757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -385598,7 +388595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 42, + ACTIONS(6522), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385641,24 +388638,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33436] = 5, + [33174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2740), 1, + STATE(2758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 42, + ACTIONS(4902), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385673,16 +388671,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, @@ -385697,29 +388697,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, - anon_sym_when, - anon_sym_in, - [33501] = 5, + [33239] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2741), 1, - sym_heredoc_body, + ACTIONS(6526), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, + STATE(2759), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 42, - sym__line_break, + ACTIONS(4875), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -385731,18 +388730,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, @@ -385756,20 +388754,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, - [33566] = 5, + [33306] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2742), 1, + STATE(2760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -385778,7 +388776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 42, + ACTIONS(6529), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385821,47 +388819,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33631] = 10, + [33371] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5771), 1, - sym__start_of_index_operator, - STATE(2743), 1, + STATE(2761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6535), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 35, + anon_sym_AMP_STAR, + ACTIONS(6533), 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, @@ -385878,6 +388870,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, @@ -385886,75 +388879,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33706] = 5, + [33436] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2744), 1, + ACTIONS(5754), 1, + anon_sym_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + anon_sym_PIPE, + ACTIONS(5764), 1, + anon_sym_CARET, + ACTIONS(5768), 1, + anon_sym_EQ_EQ, + ACTIONS(5774), 1, + anon_sym_AMP_STAR, + ACTIONS(5778), 1, + anon_sym_QMARK, + ACTIONS(5780), 1, + anon_sym_AMP_AMP, + ACTIONS(5782), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5784), 1, + sym__start_of_index_operator, + ACTIONS(5790), 1, + sym_binary_ampersand, + STATE(2762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(5766), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5772), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5776), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5760), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6530), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5770), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5786), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5788), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5970), 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, - [33771] = 5, + [33537] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2745), 1, + STATE(2763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -385963,7 +388974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 42, + ACTIONS(6537), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386006,15 +389017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33836] = 5, + [33602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2746), 1, + STATE(2764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -386023,7 +389034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 42, + ACTIONS(5838), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386066,25 +389077,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33901] = 5, + [33667] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2747), 1, + STATE(2765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 42, + ACTIONS(4960), 41, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386097,17 +389110,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, - 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, @@ -386118,45 +389132,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, 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, - [33966] = 8, + [33732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5771), 1, - sym__start_of_index_operator, - STATE(2748), 1, + STATE(2766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6543), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 39, + ACTIONS(6541), 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, @@ -386181,6 +389188,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, @@ -386189,15 +389197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34037] = 5, + [33797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2749), 1, + STATE(2767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -386206,7 +389214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(145), 42, + ACTIONS(6545), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386249,15 +389257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34102] = 5, + [33862] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2750), 1, + STATE(2768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -386266,7 +389274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 42, + ACTIONS(6549), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386309,15 +389317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34167] = 5, + [33927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2751), 1, + STATE(2769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -386326,7 +389334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 42, + ACTIONS(6553), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386369,37 +389377,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34232] = 8, + [33992] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5771), 1, - sym__start_of_index_operator, - STATE(2752), 1, + STATE(2770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6559), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 39, + ACTIONS(6557), 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, @@ -386424,6 +389428,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, @@ -386432,51 +389437,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34303] = 12, + [34057] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5745), 1, - anon_sym_DOT, - ACTIONS(5761), 1, - anon_sym_AMP_STAR, - ACTIONS(5771), 1, - sym__start_of_index_operator, - STATE(2753), 1, + STATE(2771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5753), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5763), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5773), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5775), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(6563), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 29, + anon_sym_AMP_STAR, + ACTIONS(6561), 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, @@ -386485,12 +389480,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, @@ -386499,30 +389497,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34382] = 7, + [34122] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - STATE(2652), 1, - aux_sym_constant_repeat1, - STATE(2754), 1, + STATE(2772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 10, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4853), 38, + ACTIONS(6565), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386533,17 +389527,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, @@ -386554,32 +389549,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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [34451] = 5, + [34187] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2755), 1, + ACTIONS(6089), 1, + anon_sym_PIPE, + STATE(2773), 1, sym_heredoc_body, + STATE(2774), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 40, + ACTIONS(4883), 40, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -386591,15 +389591,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_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, @@ -386615,40 +389617,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_else, - anon_sym_when, - anon_sym_in, - [34515] = 11, + [34256] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, - anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_STAR, - ACTIONS(6568), 1, + ACTIONS(6569), 1, anon_sym_PIPE, - ACTIONS(6570), 1, - anon_sym_QMARK, - STATE(2756), 1, - sym_heredoc_body, - STATE(2787), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + STATE(2774), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 36, + ACTIONS(4875), 40, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386663,15 +389654,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, @@ -386682,30 +389675,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, - [34591] = 6, + anon_sym_else, + [34323] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5692), 1, - anon_sym_COLON, - STATE(2757), 1, + ACTIONS(6153), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, + anon_sym_DOT, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6159), 1, + anon_sym_PIPE, + ACTIONS(6161), 1, + anon_sym_QMARK, + STATE(2717), 1, + aux_sym_union_type_repeat1, + STATE(2775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 40, - sym__line_break, + ACTIONS(4898), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386716,17 +389720,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, @@ -386738,24 +389739,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_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [34657] = 6, + [34400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2758), 1, + STATE(2776), 1, sym_heredoc_body, - STATE(2787), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(4950), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -386765,7 +389764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 39, + ACTIONS(4952), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386780,6 +389779,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, @@ -386805,15 +389805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [34723] = 5, + anon_sym_else, + [34465] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2759), 1, + STATE(2777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -386823,7 +389824,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 40, + ACTIONS(4976), 41, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -386835,13 +389837,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, @@ -386859,32 +389864,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_else, - anon_sym_when, - anon_sym_in, - [34787] = 6, + [34530] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6572), 1, - anon_sym_of, - STATE(2760), 1, + STATE(2778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(4906), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 40, + ACTIONS(4908), 41, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386897,16 +389899,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, @@ -386920,33 +389924,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_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [34853] = 7, + [34595] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6574), 1, - anon_sym_PIPE, - STATE(2761), 1, + ACTIONS(6073), 1, + anon_sym_COLON_COLON, + STATE(2676), 1, + aux_sym_constant_repeat1, + STATE(2779), 1, sym_heredoc_body, - STATE(2762), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4855), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 39, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4857), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386957,16 +389960,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, @@ -386981,32 +389981,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, - [34921] = 6, + anon_sym_when, + anon_sym_in, + [34664] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6576), 1, - anon_sym_PIPE, + STATE(2780), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2762), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 39, - sym__line_break, + ACTIONS(4964), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387017,16 +390018,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, @@ -387044,96 +390042,110 @@ 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, - [34987] = 6, + anon_sym_when, + anon_sym_in, + [34728] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6579), 1, - sym_regex_modifier, - STATE(2763), 1, + ACTIONS(6572), 1, + anon_sym_COMMA, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(2781), 1, sym_heredoc_body, + STATE(7996), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5797), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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, - [35053] = 11, + [34832] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6574), 1, - anon_sym_PIPE, - ACTIONS(6581), 1, - anon_sym_LBRACK, - ACTIONS(6583), 1, - anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_STAR, - ACTIONS(6587), 1, - anon_sym_QMARK, - STATE(2761), 1, - aux_sym_union_type_repeat1, - STATE(2764), 1, + ACTIONS(6612), 1, + anon_sym_LPAREN, + STATE(2782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6043), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 36, + ACTIONS(6039), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387147,15 +390159,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, @@ -387167,20 +390179,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, - [35129] = 6, + anon_sym_when, + anon_sym_in, + [34898] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2761), 1, - aux_sym_union_type_repeat1, - STATE(2765), 1, + STATE(2783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -387190,7 +390204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 39, + ACTIONS(5796), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387204,18 +390218,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, @@ -387229,38 +390241,36 @@ 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, - [35195] = 11, + anon_sym_when, + anon_sym_in, + [34962] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6574), 1, - anon_sym_PIPE, - ACTIONS(6581), 1, - anon_sym_LBRACK, - ACTIONS(6583), 1, + ACTIONS(6295), 1, + sym__start_of_index_operator, + ACTIONS(6614), 1, anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_STAR, - ACTIONS(6587), 1, - anon_sym_QMARK, - STATE(2761), 1, - aux_sym_union_type_repeat1, - STATE(2766), 1, + ACTIONS(6616), 1, + anon_sym_EQ, + STATE(2784), 1, sym_heredoc_body, + STATE(2874), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(5721), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 36, + ACTIONS(5719), 38, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -387272,15 +390282,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, @@ -387292,32 +390301,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_elsif, anon_sym_else, - [35271] = 7, + anon_sym_when, + anon_sym_in, + [35034] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - STATE(2767), 1, + ACTIONS(6618), 1, + anon_sym_COMMA, + STATE(2785), 1, sym_heredoc_body, - STATE(2773), 1, - aux_sym_constant_repeat1, + STATE(2787), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 38, + ACTIONS(5888), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387332,16 +390344,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, @@ -387352,23 +390362,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, - [35339] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [35102] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - STATE(2768), 1, + STATE(2786), 1, sym_heredoc_body, - STATE(2774), 1, - aux_sym_constant_repeat1, + STATE(2862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -387378,7 +390389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 38, + ACTIONS(4875), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387392,6 +390403,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, @@ -387413,29 +390425,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, - [35407] = 5, + anon_sym_else, + [35168] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2769), 1, - sym_heredoc_body, + ACTIONS(6620), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + STATE(2787), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 40, + ACTIONS(5970), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387456,7 +390470,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, @@ -387476,36 +390489,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [35471] = 11, + [35234] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_DOT, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6187), 1, - anon_sym_QMARK, - ACTIONS(6591), 1, - anon_sym_PIPE, - STATE(2770), 1, + ACTIONS(6623), 1, + anon_sym_LPAREN, + STATE(2788), 1, sym_heredoc_body, - STATE(2791), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(6065), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 36, - sym__start_of_brace_block, + ACTIONS(6061), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387516,12 +390520,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, @@ -387534,34 +390542,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, - [35547] = 6, + [35300] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6593), 1, - anon_sym_LPAREN, - STATE(2771), 1, + STATE(2789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 40, - sym__line_break, + ACTIONS(4902), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387572,18 +390579,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, @@ -387597,25 +390603,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, - [35613] = 8, + [35364] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(6595), 1, - anon_sym_DASH_GT, - STATE(2772), 1, + STATE(2790), 1, sym_heredoc_body, - STATE(10605), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -387625,9 +390626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 37, + ACTIONS(6047), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387640,12 +390640,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_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -387661,20 +390663,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, - [35683] = 6, + anon_sym_when, + anon_sym_in, + [35428] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6597), 1, - anon_sym_COLON_COLON, + STATE(2791), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2773), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -387684,7 +390685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 38, + ACTIONS(6051), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387699,16 +390700,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, @@ -387719,23 +390719,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, - [35749] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [35492] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - STATE(2773), 1, - aux_sym_constant_repeat1, - STATE(2774), 1, + STATE(2792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -387745,7 +390744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 38, + ACTIONS(5913), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387760,16 +390759,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, @@ -387780,30 +390778,32 @@ 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, - [35817] = 6, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [35556] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6600), 1, - anon_sym_LPAREN, - STATE(2775), 1, + STATE(2793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 40, + ACTIONS(5951), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387844,15 +390844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [35883] = 5, + [35620] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2776), 1, + STATE(2794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -387862,8 +390862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 40, - sym__start_of_brace_block, + ACTIONS(5917), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387874,17 +390874,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, @@ -387898,31 +390899,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_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [35947] = 6, + [35684] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(199), 1, - anon_sym_EQ, - STATE(2777), 1, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_DOT, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6631), 1, + anon_sym_PIPE, + ACTIONS(6633), 1, + anon_sym_QMARK, + STATE(2795), 1, sym_heredoc_body, + STATE(2862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 40, + ACTIONS(4898), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -387936,15 +390945,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, @@ -387956,32 +390965,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_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [36013] = 5, + [35760] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2778), 1, + ACTIONS(417), 1, + sym__string_literal_start, + STATE(2796), 1, sym_heredoc_body, + STATE(2819), 1, + aux_sym_chained_string_repeat1, + STATE(3270), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 40, + ACTIONS(5686), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -387993,17 +391004,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, @@ -388017,22 +391028,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, - [36077] = 6, + [35830] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5666), 1, - anon_sym_LPAREN2, - STATE(2779), 1, + STATE(2797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -388041,7 +391047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 40, + ACTIONS(4622), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -388060,6 +391066,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -388082,30 +391089,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [36143] = 8, + [35894] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6602), 1, - anon_sym_DOT, - ACTIONS(6604), 1, - sym__start_of_index_operator, - STATE(2780), 1, + STATE(2798), 1, sym_heredoc_body, - STATE(2915), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(4974), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 39, - sym__line_break, + ACTIONS(4976), 40, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -388115,18 +391119,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, @@ -388140,40 +391143,34 @@ 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, - [36213] = 11, + [35958] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6574), 1, - anon_sym_PIPE, - ACTIONS(6581), 1, - anon_sym_LBRACK, - ACTIONS(6583), 1, - anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_STAR, - ACTIONS(6587), 1, - anon_sym_QMARK, - STATE(2761), 1, - aux_sym_union_type_repeat1, - STATE(2781), 1, + ACTIONS(6635), 1, + anon_sym_LPAREN2, + STATE(2799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(4900), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 36, + ACTIONS(4902), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388186,16 +391183,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, @@ -388206,30 +391204,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_else, - [36289] = 7, + anon_sym_do, + [36024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6606), 1, - anon_sym_DOT, - STATE(2782), 1, + STATE(2800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(5020), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 40, + ACTIONS(5022), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -388270,27 +391267,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [36357] = 6, + [36088] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6608), 1, - anon_sym_LPAREN, - STATE(2783), 1, + ACTIONS(6637), 1, + anon_sym_LBRACK, + ACTIONS(6639), 1, + anon_sym_DOT, + ACTIONS(6641), 1, + anon_sym_STAR, + ACTIONS(6643), 1, + anon_sym_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK, + STATE(2801), 1, sym_heredoc_body, + STATE(2833), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 40, + ACTIONS(4861), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388304,14 +391311,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, @@ -388323,34 +391329,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, - [36423] = 11, + anon_sym_do, + [36164] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6574), 1, - anon_sym_PIPE, - ACTIONS(6581), 1, + ACTIONS(6637), 1, anon_sym_LBRACK, - ACTIONS(6583), 1, + ACTIONS(6639), 1, anon_sym_DOT, - ACTIONS(6585), 1, + ACTIONS(6641), 1, anon_sym_STAR, - ACTIONS(6587), 1, + ACTIONS(6643), 1, + anon_sym_PIPE, + ACTIONS(6645), 1, anon_sym_QMARK, - STATE(2761), 1, - aux_sym_union_type_repeat1, - STATE(2784), 1, + STATE(2802), 1, sym_heredoc_body, + STATE(2833), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(4896), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -388358,8 +391360,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 36, + ACTIONS(4898), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388372,7 +391375,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, @@ -388394,90 +391396,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [36499] = 6, + anon_sym_do, + [36240] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6610), 1, - anon_sym_EQ, - STATE(2785), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5833), 8, - anon_sym_DOT_DOT, + ACTIONS(6637), 1, + anon_sym_LBRACK, + ACTIONS(6639), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(6641), 1, + anon_sym_STAR, + ACTIONS(6643), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5831), 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(6645), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [36565] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5666), 1, - anon_sym_LPAREN2, - ACTIONS(6612), 1, - anon_sym_EQ, - STATE(2786), 1, + STATE(2803), 1, sym_heredoc_body, + STATE(2833), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4877), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 39, + ACTIONS(4879), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388491,13 +391441,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, @@ -388509,36 +391459,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_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [36633] = 7, + anon_sym_do, + [36316] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6568), 1, - anon_sym_PIPE, - STATE(2787), 1, + STATE(2804), 1, sym_heredoc_body, - STATE(2788), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4906), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 39, - sym__line_break, + ACTIONS(4908), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -388550,15 +391492,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, @@ -388576,23 +391516,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, - [36701] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [36380] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6614), 1, - anon_sym_PIPE, + STATE(2805), 1, + sym_heredoc_body, + STATE(2833), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2788), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, @@ -388637,37 +391581,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [36767] = 11, + [36446] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, - anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_STAR, - ACTIONS(6568), 1, - anon_sym_PIPE, - ACTIONS(6570), 1, - anon_sym_QMARK, - STATE(2787), 1, - aux_sym_union_type_repeat1, - STATE(2789), 1, + STATE(2806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(5979), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 36, + ACTIONS(5977), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388681,13 +391614,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_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, @@ -388699,40 +391633,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, - [36843] = 11, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [36510] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, - anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_STAR, - ACTIONS(6568), 1, - anon_sym_PIPE, - ACTIONS(6570), 1, - anon_sym_QMARK, - STATE(2787), 1, - aux_sym_union_type_repeat1, - STATE(2790), 1, + ACTIONS(6647), 1, + anon_sym_of, + STATE(2807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(5848), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 36, + ACTIONS(5844), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388746,13 +391674,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_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, @@ -388764,31 +391693,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, - [36919] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [36576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6591), 1, - anon_sym_PIPE, - STATE(2791), 1, + STATE(2808), 1, sym_heredoc_body, - STATE(2792), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 39, + ACTIONS(4956), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -388808,6 +391738,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, @@ -388828,27 +391759,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [36987] = 6, + [36640] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6617), 1, - anon_sym_PIPE, + STATE(2809), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2792), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 39, + ACTIONS(4960), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -388868,6 +391797,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, @@ -388888,36 +391818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [37053] = 11, + [36704] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_DOT, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6187), 1, - anon_sym_QMARK, - ACTIONS(6591), 1, - anon_sym_PIPE, - STATE(2791), 1, - aux_sym_union_type_repeat1, - STATE(2793), 1, + ACTIONS(6649), 1, + anon_sym_of, + STATE(2810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(5748), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 36, - sym__start_of_brace_block, + ACTIONS(5744), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388928,12 +391849,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, @@ -388946,34 +391871,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, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [37129] = 11, + [36770] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, + ACTIONS(6153), 1, anon_sym_LBRACK, - ACTIONS(6181), 1, + ACTIONS(6155), 1, anon_sym_DOT, - ACTIONS(6183), 1, + ACTIONS(6157), 1, anon_sym_STAR, - ACTIONS(6187), 1, + ACTIONS(6161), 1, anon_sym_QMARK, - ACTIONS(6591), 1, + ACTIONS(6651), 1, anon_sym_PIPE, - STATE(2791), 1, - aux_sym_union_type_repeat1, - STATE(2794), 1, + STATE(2811), 1, sym_heredoc_body, + STATE(2838), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(4970), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -388981,7 +391906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 36, + ACTIONS(4972), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -389018,27 +391943,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [37205] = 6, + [36846] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6620), 1, - anon_sym_of, - STATE(2795), 1, + STATE(2812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 40, - sym__line_break, + ACTIONS(4916), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389049,18 +391973,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, @@ -389074,30 +391997,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, - [37271] = 5, + [36910] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2796), 1, + ACTIONS(6653), 1, + anon_sym_of, + STATE(2813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 40, - sym__start_of_brace_block, + ACTIONS(5981), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389108,17 +392033,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, @@ -389132,20 +392058,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, - [37335] = 5, + [36976] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2797), 1, + STATE(2814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -389155,8 +392080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 40, - sym__start_of_brace_block, + ACTIONS(5987), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389167,17 +392092,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, @@ -389191,20 +392117,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, - [37399] = 5, + [37040] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2798), 1, + ACTIONS(5648), 1, + anon_sym_LPAREN2, + ACTIONS(6655), 1, + anon_sym_EQ, + STATE(2815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -389213,7 +392142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 41, + ACTIONS(173), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -389230,12 +392159,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, @@ -389255,35 +392182,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [37463] = 11, + [37108] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, - anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_STAR, - ACTIONS(6568), 1, - anon_sym_PIPE, - ACTIONS(6570), 1, - anon_sym_QMARK, - STATE(2787), 1, - aux_sym_union_type_repeat1, - STATE(2799), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(6657), 1, + anon_sym_DASH_GT, + STATE(2816), 1, sym_heredoc_body, + STATE(10679), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(5020), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 36, + ACTIONS(5022), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -389298,14 +392221,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, @@ -389317,18 +392239,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, - [37539] = 5, + anon_sym_else, + [37178] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2800), 1, + STATE(2817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -389338,8 +392262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 40, - sym__start_of_brace_block, + ACTIONS(6017), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389350,17 +392274,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, @@ -389374,84 +392299,103 @@ 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, - [37603] = 5, + [37242] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2801), 1, + ACTIONS(6572), 1, + anon_sym_COMMA, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(2818), 1, sym_heredoc_body, + STATE(7984), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4952), 40, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5750), 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_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [37667] = 7, + [37346] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6622), 1, + ACTIONS(6659), 1, sym__string_literal_start, - STATE(3170), 1, + STATE(3270), 1, sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2802), 2, + STATE(2819), 2, sym_heredoc_body, aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -389460,7 +392404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 38, + ACTIONS(5660), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -389499,80 +392443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [37735] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6179), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_DOT, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6187), 1, - anon_sym_QMARK, - ACTIONS(6591), 1, - anon_sym_PIPE, - STATE(2791), 1, - aux_sym_union_type_repeat1, - STATE(2803), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4934), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4936), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [37811] = 5, + [37414] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2804), 1, + STATE(2820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -389582,7 +392461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 40, + ACTIONS(4968), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -389623,15 +392502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [37875] = 5, + [37478] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2805), 1, + STATE(2821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -389641,7 +392520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 40, + ACTIONS(4920), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -389682,31 +392561,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [37939] = 8, + [37542] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(419), 1, - sym__string_literal_start, - STATE(2806), 1, - sym_heredoc_body, + ACTIONS(6153), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, + anon_sym_DOT, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6161), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_PIPE, STATE(2822), 1, - aux_sym_chained_string_repeat1, - STATE(3170), 1, - sym_string, + sym_heredoc_body, + STATE(2838), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4922), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 38, - sym__line_break, + ACTIONS(4924), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -389718,15 +392601,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, @@ -389739,99 +392619,140 @@ 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, - [38009] = 25, + anon_sym_when, + anon_sym_in, + [37618] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(6627), 1, + STATE(2823), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4926), 9, anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, anon_sym_DOT, - ACTIONS(6635), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(4928), 40, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6663), 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(2807), 1, - sym_heredoc_body, - STATE(2825), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6639), 2, + 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, - ACTIONS(6645), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 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, + [37682] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2824), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4930), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4932), 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, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 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_elsif, + 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, - [38113] = 5, + [37746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2808), 1, + STATE(2825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -389841,7 +392762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 40, + ACTIONS(4936), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -389882,15 +392803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [38177] = 5, + [37810] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2809), 1, + ACTIONS(5707), 1, + anon_sym_COLON, + STATE(2826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -389899,7 +392822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 41, + ACTIONS(173), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -389918,7 +392841,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -389941,27 +392863,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [38241] = 6, + [37876] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6665), 1, - anon_sym_LPAREN2, - STATE(2810), 1, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_DOT, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6631), 1, + anon_sym_PIPE, + ACTIONS(6633), 1, + anon_sym_QMARK, + STATE(2827), 1, sym_heredoc_body, + STATE(2862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(4877), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 39, + ACTIONS(4879), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -389981,12 +392911,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, @@ -389997,23 +392925,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_else, - [38307] = 7, + [37952] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - STATE(2767), 1, - aux_sym_constant_repeat1, - STATE(2811), 1, + STATE(2828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -390023,7 +392946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 38, + ACTIONS(5987), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -390038,16 +392961,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, @@ -390058,21 +392980,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, - [38375] = 6, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [38016] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2791), 1, - aux_sym_union_type_repeat1, - STATE(2812), 1, + ACTIONS(6662), 1, + anon_sym_COLON_COLON, + STATE(2829), 1, sym_heredoc_body, + STATE(2875), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -390082,8 +393009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 39, - sym__start_of_brace_block, + ACTIONS(4857), 38, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390094,14 +393021,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_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, @@ -390114,34 +393044,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_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [38441] = 6, + [38084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6667), 1, - anon_sym_of, - STATE(2813), 1, + STATE(2830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 40, + ACTIONS(5991), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -390182,26 +393107,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [38507] = 6, + [38148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6669), 1, - sym_regex_modifier, - STATE(2814), 1, + STATE(2831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 40, + ACTIONS(5806), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -390242,19 +393166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [38573] = 7, + [38212] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6625), 1, - anon_sym_COMMA, - STATE(2815), 1, + ACTIONS(6664), 1, + sym_regex_modifier, + STATE(2832), 1, sym_heredoc_body, - STATE(2818), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -390263,7 +393185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 39, + ACTIONS(5995), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -390284,6 +393206,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, @@ -390303,25 +393226,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [38641] = 5, + [38278] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2816), 1, + ACTIONS(6643), 1, + anon_sym_PIPE, + STATE(2833), 1, sym_heredoc_body, + STATE(2834), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 40, + ACTIONS(4883), 39, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -390333,13 +393260,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, @@ -390357,112 +393286,98 @@ 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, - [38705] = 25, + [38346] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6625), 1, - anon_sym_COMMA, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6666), 1, anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(2815), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2817), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + STATE(2834), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4875), 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(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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, - [38809] = 6, + 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, + [38412] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_COMMA, + ACTIONS(6637), 1, + anon_sym_LBRACK, + ACTIONS(6639), 1, + anon_sym_DOT, + ACTIONS(6641), 1, + anon_sym_STAR, + ACTIONS(6643), 1, + anon_sym_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK, + STATE(2833), 1, + aux_sym_union_type_repeat1, + STATE(2835), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2818), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 39, + ACTIONS(4890), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390476,13 +393391,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, @@ -390494,32 +393409,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_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [38875] = 5, + anon_sym_do, + [38488] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2819), 1, + ACTIONS(6637), 1, + anon_sym_LBRACK, + ACTIONS(6639), 1, + anon_sym_DOT, + ACTIONS(6641), 1, + anon_sym_STAR, + ACTIONS(6643), 1, + anon_sym_PIPE, + ACTIONS(6645), 1, + anon_sym_QMARK, + STATE(2833), 1, + aux_sym_union_type_repeat1, + STATE(2836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 41, + ACTIONS(4894), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390533,14 +393456,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, @@ -390552,23 +393474,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_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [38939] = 5, + anon_sym_do, + [38564] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2820), 1, + STATE(2837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(4950), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -390578,7 +393495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 40, + ACTIONS(4952), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -390619,35 +393536,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39003] = 11, + [38628] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6179), 1, - anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_DOT, - ACTIONS(6183), 1, - anon_sym_STAR, - ACTIONS(6187), 1, - anon_sym_QMARK, - ACTIONS(6591), 1, + ACTIONS(6651), 1, anon_sym_PIPE, - STATE(2791), 1, - aux_sym_union_type_repeat1, - STATE(2821), 1, + STATE(2838), 1, sym_heredoc_body, + STATE(2839), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(4881), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 36, + ACTIONS(4883), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -390662,11 +393572,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, @@ -390677,6 +393589,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, @@ -390684,31 +393597,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39079] = 8, + [38696] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(419), 1, - sym__string_literal_start, - STATE(2802), 1, - aux_sym_chained_string_repeat1, - STATE(2822), 1, - sym_heredoc_body, - STATE(3170), 1, - sym_string, + ACTIONS(6669), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + STATE(2839), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 38, - sym__line_break, + ACTIONS(4875), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -390720,17 +393629,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, @@ -390744,17 +393652,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, - [39149] = 5, + anon_sym_when, + anon_sym_in, + [38762] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2823), 1, + STATE(2840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -390764,8 +393675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 40, - sym__start_of_brace_block, + ACTIONS(6025), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390776,17 +393687,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, @@ -390800,33 +393712,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, - [39213] = 7, + [38826] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6625), 1, - anon_sym_COMMA, - STATE(2815), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2824), 1, + STATE(2841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 39, + ACTIONS(5925), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -390847,6 +393755,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, @@ -390866,29 +393775,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39281] = 7, + [38890] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6625), 1, - anon_sym_COMMA, - STATE(2818), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2825), 1, + ACTIONS(6153), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, + anon_sym_DOT, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6161), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_PIPE, + STATE(2838), 1, + aux_sym_union_type_repeat1, + STATE(2842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 39, - sym__line_break, + ACTIONS(4894), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390899,15 +393815,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, @@ -390920,33 +393833,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_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [39349] = 6, + [38966] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6674), 1, - sym_regex_modifier, - STATE(2826), 1, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + STATE(2843), 1, sym_heredoc_body, + STATE(3809), 1, + sym_do_end_block, + STATE(3810), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 40, + ACTIONS(5669), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -390960,13 +393880,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, @@ -390983,19 +393902,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, - [39415] = 5, + [39038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2827), 1, + STATE(2844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 10, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -391005,8 +393921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4846), 39, + ACTIONS(5894), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391017,17 +393933,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, @@ -391038,23 +393955,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_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, - [39479] = 5, + [39102] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2828), 1, + STATE(2845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -391064,7 +393980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 40, + ACTIONS(4940), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -391105,24 +394021,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39543] = 5, + [39166] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2829), 1, + STATE(2846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 41, + ACTIONS(6013), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -391156,7 +394073,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, @@ -391164,10 +394080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39607] = 5, + [39230] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2830), 1, + STATE(2847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -391223,15 +394139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39671] = 5, + [39294] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2831), 1, + STATE(2848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -391241,8 +394157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 40, - sym__start_of_brace_block, + ACTIONS(5947), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391253,17 +394169,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, @@ -391277,22 +394194,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, - [39735] = 6, + [39358] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6676), 1, - sym_regex_modifier, - STATE(2832), 1, + STATE(2849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -391301,7 +394215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 40, + ACTIONS(5909), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -391335,6 +394249,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, @@ -391342,15 +394257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39801] = 5, + [39422] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2833), 1, + ACTIONS(6674), 1, + sym_regex_modifier, + STATE(2850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -391359,7 +394276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 41, + ACTIONS(5832), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -391378,7 +394295,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -391401,96 +394317,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39865] = 7, + [39488] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6625), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6618), 1, anon_sym_COMMA, - STATE(2825), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2834), 1, + STATE(2851), 1, sym_heredoc_body, + STATE(2897), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5737), 39, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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, - [39933] = 11, + [39592] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6574), 1, - anon_sym_PIPE, - ACTIONS(6581), 1, - anon_sym_LBRACK, - ACTIONS(6583), 1, - anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_STAR, - ACTIONS(6587), 1, - anon_sym_QMARK, - STATE(2761), 1, - aux_sym_union_type_repeat1, - STATE(2835), 1, + STATE(2852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(6037), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 36, + ACTIONS(6035), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -391504,15 +394427,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, @@ -391524,30 +394447,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, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [40009] = 6, + anon_sym_when, + anon_sym_in, + [39656] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6678), 1, - anon_sym_of, - STATE(2836), 1, + STATE(2853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 40, - sym__line_break, + ACTIONS(4944), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391558,18 +394485,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, @@ -391583,21 +394509,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_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [40075] = 6, + [39720] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6680), 1, - anon_sym_of, - STATE(2837), 1, + ACTIONS(6676), 1, + sym_regex_modifier, + STATE(2854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -391606,7 +394533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 40, + ACTIONS(5838), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -391647,87 +394574,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40141] = 6, + [39786] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6682), 1, - anon_sym_of, - STATE(2838), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6618), 1, + anon_sym_COMMA, + STATE(2785), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5837), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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, - [40207] = 6, + [39890] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6684), 1, - anon_sym_LPAREN2, - STATE(2839), 1, + ACTIONS(417), 1, + sym__string_literal_start, + STATE(2796), 1, + aux_sym_chained_string_repeat1, + STATE(2856), 1, sym_heredoc_body, + STATE(3270), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 39, + ACTIONS(173), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -391742,17 +394691,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, @@ -391767,37 +394714,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [40273] = 11, + anon_sym_else, + [39960] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, - anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_STAR, - ACTIONS(6568), 1, - anon_sym_PIPE, - ACTIONS(6570), 1, - anon_sym_QMARK, - STATE(2787), 1, - aux_sym_union_type_repeat1, - STATE(2840), 1, + ACTIONS(5648), 1, + anon_sym_LPAREN2, + STATE(2857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(195), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 36, + ACTIONS(173), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391811,13 +394749,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_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, @@ -391829,261 +394768,211 @@ 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, - [40349] = 25, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [40026] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6686), 1, - anon_sym_COMMA, - STATE(2841), 1, + ACTIONS(199), 1, + anon_sym_EQ, + STATE(2858), 1, sym_heredoc_body, - STATE(7925), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(195), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(173), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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, - [40453] = 25, + [40092] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6686), 1, - anon_sym_COMMA, - STATE(2842), 1, + ACTIONS(6678), 1, + anon_sym_EQ, + STATE(2859), 1, sym_heredoc_body, - STATE(7948), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(5939), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(5937), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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, - [40557] = 23, + [40158] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(2843), 1, + STATE(2860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(5812), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(5810), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6459), 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, - [40656] = 5, + [40222] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2844), 1, + STATE(2861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 40, + ACTIONS(5881), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392124,24 +395013,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40719] = 5, + [40286] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2845), 1, + ACTIONS(6631), 1, + anon_sym_PIPE, + STATE(2862), 1, sym_heredoc_body, + STATE(2866), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 40, + ACTIONS(4883), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392155,16 +395048,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, @@ -392178,28 +395073,26 @@ 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, - [40782] = 5, + [40354] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2846), 1, + STATE(2863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 40, + ACTIONS(5850), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392240,24 +395133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40845] = 5, + [40418] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2847), 1, + STATE(2864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(5864), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 40, + ACTIONS(5862), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392298,23 +395192,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40908] = 9, + [40482] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1403), 1, - sym__string_literal_start, - ACTIONS(6688), 1, - anon_sym_COLON, - STATE(2848), 1, + ACTIONS(6618), 1, + anon_sym_COMMA, + STATE(2865), 1, sym_heredoc_body, - STATE(3154), 1, - aux_sym_chained_string_repeat1, - STATE(3567), 1, - sym_string, + STATE(2897), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -392323,7 +395213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(5750), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392337,13 +395227,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, @@ -392359,25 +395249,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_else, - [40979] = 5, + anon_sym_when, + anon_sym_in, + [40550] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2849), 1, - sym_heredoc_body, + ACTIONS(6680), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, + STATE(2866), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 40, + ACTIONS(4875), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392391,16 +395287,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, @@ -392414,29 +395312,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, - [41042] = 5, + [40616] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2850), 1, + ACTIONS(6683), 1, + sym_regex_modifier, + STATE(2867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(6031), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 39, + ACTIONS(6029), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392450,18 +395346,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, @@ -392475,102 +395369,99 @@ 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, - [41105] = 24, + anon_sym_when, + anon_sym_in, + [40682] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(2851), 1, + ACTIONS(6685), 1, + anon_sym_LPAREN, + STATE(2868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(5905), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(5901), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [41206] = 5, + [40748] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2852), 1, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_DOT, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6631), 1, + anon_sym_PIPE, + ACTIONS(6633), 1, + anon_sym_QMARK, + STATE(2862), 1, + aux_sym_union_type_repeat1, + STATE(2869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 40, + ACTIONS(4890), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392584,15 +395475,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, @@ -392604,31 +395495,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, - [41269] = 5, + [40824] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2853), 1, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_DOT, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6631), 1, + anon_sym_PIPE, + ACTIONS(6633), 1, + anon_sym_QMARK, + STATE(2862), 1, + aux_sym_union_type_repeat1, + STATE(2870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 40, + ACTIONS(4894), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392642,15 +395540,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, @@ -392662,22 +395560,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, - [41332] = 5, + [40900] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2854), 1, + STATE(2871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -392687,7 +395581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 39, + ACTIONS(5669), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392701,18 +395595,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, @@ -392726,26 +395618,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, - [41395] = 5, + anon_sym_when, + anon_sym_in, + [40964] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2855), 1, + STATE(2872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 39, + ACTIONS(4618), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392759,18 +395653,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_LPAREN, + 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, @@ -392784,25 +395677,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, - [41458] = 5, + anon_sym_when, + anon_sym_in, + [41028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2856), 1, + STATE(2873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 40, + ACTIONS(5818), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392843,26 +395740,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [41521] = 6, + [41092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6694), 1, - anon_sym_of, - STATE(2857), 1, + STATE(2874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(6023), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 39, + ACTIONS(6021), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392883,6 +395779,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, @@ -392902,30 +395799,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [41586] = 8, + [41156] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - STATE(2858), 1, + ACTIONS(6662), 1, + anon_sym_COLON_COLON, + STATE(2875), 1, sym_heredoc_body, - STATE(3369), 1, - sym_do_end_block, - STATE(3373), 1, - sym_brace_block, + STATE(2885), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 37, + ACTIONS(4847), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392939,15 +395835,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, @@ -392958,20 +395856,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_else, - [41655] = 5, + [41224] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2859), 1, + ACTIONS(6662), 1, + anon_sym_COLON_COLON, + STATE(2876), 1, sym_heredoc_body, + STATE(2887), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -392981,7 +395882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 39, + ACTIONS(4847), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -392995,7 +395896,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, @@ -393017,19 +395917,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_else, - [41718] = 5, + [41292] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2860), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6687), 1, + anon_sym_do, + STATE(2877), 1, sym_heredoc_body, + STATE(3214), 1, + sym_do_end_block, + STATE(3286), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393039,7 +395947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 39, + ACTIONS(5669), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393059,12 +395967,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, @@ -393079,15 +395984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [41781] = 5, + [41364] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2861), 1, + STATE(2878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393097,7 +396002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 39, + ACTIONS(5818), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393111,18 +396016,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, @@ -393136,37 +396039,97 @@ 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, - [41844] = 11, + anon_sym_when, + anon_sym_in, + [41428] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6581), 1, + ACTIONS(6153), 1, anon_sym_LBRACK, - ACTIONS(6583), 1, + ACTIONS(6155), 1, anon_sym_DOT, - ACTIONS(6585), 1, + ACTIONS(6157), 1, anon_sym_STAR, - ACTIONS(6587), 1, + ACTIONS(6161), 1, anon_sym_QMARK, - ACTIONS(6696), 1, + ACTIONS(6651), 1, anon_sym_PIPE, - STATE(2862), 1, + STATE(2838), 1, + aux_sym_union_type_repeat1, + STATE(2879), 1, sym_heredoc_body, - STATE(3042), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4896), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4898), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [41504] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2838), 1, aux_sym_union_type_repeat1, + STATE(2880), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, + ACTIONS(4873), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 35, - sym__line_break, + ACTIONS(4875), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -393177,17 +396140,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, @@ -393198,18 +396160,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, - [41919] = 5, + anon_sym_when, + anon_sym_in, + [41570] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2863), 1, + STATE(2881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393219,7 +396186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 39, + ACTIONS(5822), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393233,18 +396200,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, @@ -393258,26 +396223,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_else, - [41982] = 5, + anon_sym_when, + anon_sym_in, + [41634] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2864), 1, + ACTIONS(6612), 1, + anon_sym_LPAREN, + ACTIONS(6689), 1, + anon_sym_DOT, + STATE(2882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 39, + ACTIONS(6039), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393291,18 +396261,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, @@ -393316,16 +396284,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, - [42045] = 5, + anon_sym_when, + anon_sym_in, + [41702] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2865), 1, + STATE(2883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393335,7 +396306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 39, + ACTIONS(6009), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393349,18 +396320,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, @@ -393374,36 +396343,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, - [42108] = 11, + anon_sym_when, + anon_sym_in, + [41766] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6581), 1, - anon_sym_LBRACK, - ACTIONS(6583), 1, - anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_STAR, - ACTIONS(6587), 1, - anon_sym_QMARK, - ACTIONS(6696), 1, - anon_sym_PIPE, - STATE(2866), 1, + STATE(2884), 1, sym_heredoc_body, - STATE(3042), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(5945), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 35, + ACTIONS(5943), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393417,12 +396379,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, @@ -393436,18 +396399,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_elsif, anon_sym_else, - [42183] = 5, + anon_sym_when, + anon_sym_in, + [41830] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2867), 1, - sym_heredoc_body, + ACTIONS(6691), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + STATE(2885), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393457,7 +396427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 39, + ACTIONS(4840), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393471,7 +396441,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, @@ -393493,29 +396462,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_else, - [42246] = 5, + [41896] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2868), 1, + STATE(2886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(5816), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 39, + ACTIONS(5814), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393529,18 +396497,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, + 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, @@ -393554,16 +396521,23 @@ 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, - [42309] = 5, + anon_sym_when, + anon_sym_in, + [41960] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2869), 1, + ACTIONS(6662), 1, + anon_sym_COLON_COLON, + STATE(2885), 1, + aux_sym_constant_repeat1, + STATE(2887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393573,7 +396547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 39, + ACTIONS(4853), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393587,7 +396561,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, @@ -393609,28 +396582,88 @@ 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, + [42028] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2888), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4946), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4948), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [42372] = 5, + anon_sym_when, + anon_sym_in, + [42092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2870), 1, + STATE(2889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 40, + ACTIONS(6055), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393671,24 +396704,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [42435] = 5, + [42156] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2871), 1, + STATE(2890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 40, + ACTIONS(6069), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393729,24 +396763,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [42498] = 5, + [42220] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2872), 1, + ACTIONS(6694), 1, + anon_sym_LPAREN2, + STATE(2891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 40, + ACTIONS(4902), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393760,16 +396797,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, @@ -393783,28 +396822,36 @@ 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, - [42561] = 5, + [42286] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2873), 1, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_DOT, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6631), 1, + anon_sym_PIPE, + ACTIONS(6633), 1, + anon_sym_QMARK, + STATE(2862), 1, + aux_sym_union_type_repeat1, + STATE(2892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 40, + ACTIONS(4861), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393818,15 +396865,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, @@ -393838,22 +396885,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_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42624] = 5, + [42362] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2874), 1, + ACTIONS(6696), 1, + anon_sym_of, + STATE(2893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393862,7 +396907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 40, + ACTIONS(5826), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393903,15 +396948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [42687] = 5, + [42428] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2875), 1, + ACTIONS(6698), 1, + anon_sym_of, + STATE(2894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393920,7 +396967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 40, + ACTIONS(5873), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -393961,15 +397008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [42750] = 5, + [42494] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2876), 1, + ACTIONS(6700), 1, + anon_sym_of, + STATE(2895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -393978,9 +397027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 40, + ACTIONS(5960), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -393993,13 +397041,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, @@ -394013,27 +397061,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, - [42813] = 8, + anon_sym_when, + anon_sym_in, + [42560] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1269), 1, - anon_sym_COLON, - ACTIONS(5902), 1, - anon_sym_COLON_COLON, - STATE(2502), 1, - aux_sym_constant_repeat1, - STATE(2877), 1, + ACTIONS(6618), 1, + anon_sym_COMMA, + STATE(2785), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394042,9 +397089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 37, + ACTIONS(5856), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394058,11 +397104,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, @@ -394075,28 +397122,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, - [42882] = 9, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [42628] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(689), 1, - sym__string_literal_start, - ACTIONS(6698), 1, - anon_sym_COLON, - STATE(2878), 1, + ACTIONS(6618), 1, + anon_sym_COMMA, + STATE(2787), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2897), 1, sym_heredoc_body, - STATE(3232), 1, - aux_sym_chained_string_repeat1, - STATE(3538), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394105,9 +397150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(5856), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394121,11 +397165,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, @@ -394141,32 +397186,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [42953] = 8, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [42696] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - STATE(2879), 1, + STATE(2898), 1, sym_heredoc_body, - STATE(3449), 1, - sym_do_end_block, - STATE(3455), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(4838), 10, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 37, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4840), 39, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394177,17 +397220,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, @@ -394198,36 +397241,44 @@ 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, - [43022] = 8, + anon_sym_when, + anon_sym_in, + [42760] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - STATE(2880), 1, + ACTIONS(6153), 1, + anon_sym_LBRACK, + ACTIONS(6155), 1, + anon_sym_DOT, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6161), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_PIPE, + STATE(2838), 1, + aux_sym_union_type_repeat1, + STATE(2899), 1, sym_heredoc_body, - STATE(3456), 1, - sym_do_end_block, - STATE(3457), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 37, - sym__line_break, + ACTIONS(4890), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394238,15 +397289,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, @@ -394259,81 +397307,99 @@ 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, - [43091] = 8, + anon_sym_when, + anon_sym_in, + [42836] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - STATE(2881), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(2900), 1, sym_heredoc_body, - STATE(3464), 1, - sym_do_end_block, - STATE(3466), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5719), 37, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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_COMMA, - 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, - [43160] = 5, + anon_sym_when, + anon_sym_in, + [42937] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2882), 1, + STATE(2901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394342,7 +397408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 40, + ACTIONS(6085), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -394383,15 +397449,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43223] = 5, + [43000] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2883), 1, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + STATE(2902), 1, sym_heredoc_body, + STATE(4257), 1, + sym_do_end_block, + STATE(4260), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394400,7 +397474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 40, + ACTIONS(5715), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -394414,13 +397488,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, @@ -394437,19 +397510,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, - [43286] = 5, + [43071] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2884), 1, + STATE(2903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394458,7 +397528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 40, + ACTIONS(6325), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -394499,30 +397569,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43349] = 8, + [43134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - STATE(2885), 1, + STATE(2904), 1, sym_heredoc_body, - STATE(3467), 1, - sym_do_end_block, - STATE(3468), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 37, + ACTIONS(4968), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -394542,9 +397607,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, @@ -394558,17 +397626,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, - [43418] = 5, + [43197] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2886), 1, + STATE(2905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394577,9 +397644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 40, + ACTIONS(6183), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394592,13 +397658,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, @@ -394612,21 +397678,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_elsif, anon_sym_else, - [43481] = 5, + anon_sym_when, + anon_sym_in, + [43260] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2887), 1, + STATE(2906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394635,7 +397702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 40, + ACTIONS(5719), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -394676,15 +397743,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43544] = 5, + [43323] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2888), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + STATE(2907), 1, sym_heredoc_body, + STATE(3569), 1, + sym_do_end_block, + STATE(3576), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394693,7 +397766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 40, + ACTIONS(5694), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -394707,13 +397780,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, @@ -394730,19 +397802,23 @@ 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, - [43607] = 5, + [43392] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2889), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + STATE(2908), 1, sym_heredoc_body, + STATE(3582), 1, + sym_do_end_block, + STATE(3583), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394751,7 +397827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 40, + ACTIONS(5694), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -394765,13 +397841,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, @@ -394788,19 +397863,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, - [43670] = 5, + [43461] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2890), 1, + STATE(2909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -394809,7 +397882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 40, + ACTIONS(6183), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -394850,28 +397923,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43733] = 7, + [43524] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - STATE(2891), 1, + ACTIONS(1257), 1, + anon_sym_COLON, + ACTIONS(5733), 1, + anon_sym_COLON_COLON, + STATE(2461), 1, + aux_sym_constant_repeat1, + STATE(2910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(4855), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 39, - sym__line_break, + ACTIONS(4857), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -394881,16 +397958,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, @@ -394903,75 +397976,48 @@ 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, - [43800] = 21, + [43593] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(2892), 1, + STATE(2911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6185), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(6183), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6403), 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, @@ -394979,33 +398025,43 @@ 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, - [43895] = 7, + [43656] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - STATE(2893), 1, + STATE(2912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6185), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 39, + ACTIONS(6183), 40, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -395044,28 +398100,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43962] = 7, + [43719] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, + ACTIONS(559), 1, + sym__string_literal_start, + ACTIONS(6706), 1, + anon_sym_COLON, + STATE(2913), 1, + sym_heredoc_body, + STATE(3171), 1, + aux_sym_chained_string_repeat1, + STATE(3374), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(195), 8, + anon_sym_DOT_DOT, anon_sym_DOT, - ACTIONS(6657), 1, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(173), 36, + sym__start_of_brace_block, sym__start_of_index_operator, - STATE(2894), 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_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, + [43790] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(4914), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 39, + ACTIONS(4916), 39, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -395077,16 +398194,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, @@ -395100,19 +398219,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, - [44029] = 5, + [43853] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2895), 1, + STATE(2915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395121,7 +398237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 40, + ACTIONS(6187), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395162,15 +398278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44092] = 5, + [43916] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2896), 1, + STATE(2916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395179,7 +398295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 40, + ACTIONS(6187), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395220,15 +398336,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44155] = 5, + [43979] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2897), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + STATE(2917), 1, sym_heredoc_body, + STATE(3584), 1, + sym_do_end_block, + STATE(3585), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395237,7 +398359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 40, + ACTIONS(5715), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395251,13 +398373,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, @@ -395274,32 +398395,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_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [44218] = 7, + [44048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6700), 1, - anon_sym_PIPE, - STATE(2898), 1, + STATE(2918), 1, sym_heredoc_body, - STATE(2930), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 38, + ACTIONS(4920), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -395310,13 +398427,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, @@ -395334,19 +398454,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, - [44285] = 5, + [44111] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2899), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + STATE(2919), 1, sym_heredoc_body, + STATE(3477), 1, + sym_brace_block, + STATE(3586), 1, + sym_do_end_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395355,7 +398478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 40, + ACTIONS(5715), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395369,13 +398492,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, @@ -395392,19 +398514,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, - [44348] = 5, + [44180] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2900), 1, + STATE(2920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395413,7 +398533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 40, + ACTIONS(6187), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395454,26 +398574,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44411] = 6, + [44243] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6702), 1, - anon_sym_of, - STATE(2901), 1, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_DOT, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6633), 1, + anon_sym_QMARK, + ACTIONS(6708), 1, + anon_sym_PIPE, + STATE(2921), 1, sym_heredoc_body, + STATE(2993), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(4922), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 39, + ACTIONS(4924), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395487,13 +398616,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, anon_sym_CARET, @@ -395506,74 +398635,70 @@ 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, - [44476] = 23, + [44318] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, + ACTIONS(6576), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6598), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - STATE(2902), 1, + STATE(2922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5934), 15, + ACTIONS(6227), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -395589,25 +398714,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44575] = 5, + [44417] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2903), 1, + STATE(2923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 40, + ACTIONS(4902), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -395621,15 +398748,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, @@ -395643,19 +398771,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + [44480] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(2924), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6608), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6261), 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, - [44638] = 5, + [44579] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2904), 1, + STATE(2925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395664,7 +398865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 40, + ACTIONS(6469), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395705,15 +398906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44701] = 5, + [44642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2905), 1, + STATE(2926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395722,7 +398923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 40, + ACTIONS(6187), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395763,25 +398964,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44764] = 5, + [44705] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2906), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(2927), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6608), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6710), 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, + [44806] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 40, + ACTIONS(4940), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -395795,15 +399075,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, @@ -395817,19 +399098,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, - [44827] = 5, + anon_sym_do, + [44869] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2907), 1, + STATE(2929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(5968), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395838,7 +399116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 40, + ACTIONS(5966), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395879,15 +399157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44890] = 5, + [44932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2908), 1, + STATE(2930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -395896,7 +399174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 40, + ACTIONS(6469), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -395937,25 +399215,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44953] = 5, + [44995] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2909), 1, + STATE(2931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 40, + ACTIONS(4976), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -395969,15 +399249,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, @@ -395991,29 +399272,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, - [45016] = 5, + anon_sym_do, + [45058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2910), 1, + STATE(2932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(4906), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 40, + ACTIONS(4908), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396027,15 +399307,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, @@ -396049,19 +399330,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, - [45079] = 5, + anon_sym_do, + [45121] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2911), 1, + STATE(2933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -396070,7 +399348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 40, + ACTIONS(6317), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -396111,25 +399389,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45142] = 5, + [45184] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2912), 1, + STATE(2934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 40, + ACTIONS(4944), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396143,15 +399423,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, @@ -396165,29 +399446,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, - [45205] = 5, + anon_sym_do, + [45247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2913), 1, + STATE(2935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 40, + ACTIONS(4956), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396201,15 +399481,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, @@ -396223,29 +399504,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, - [45268] = 5, + anon_sym_do, + [45310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2914), 1, + STATE(2936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 40, + ACTIONS(4960), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396259,15 +399539,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, @@ -396281,29 +399562,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, - [45331] = 5, + anon_sym_do, + [45373] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2915), 1, + STATE(2937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 40, + ACTIONS(4964), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396317,15 +399597,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, @@ -396339,29 +399620,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, - [45394] = 5, + anon_sym_do, + [45436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2916), 1, + STATE(2938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 40, + ACTIONS(4916), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396375,15 +399655,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, @@ -396397,19 +399678,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, - [45457] = 5, + anon_sym_do, + [45499] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2917), 1, + STATE(2939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -396418,7 +399696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 40, + ACTIONS(5970), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -396459,26 +399737,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45520] = 6, + [45562] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6704), 1, - anon_sym_EQ, - STATE(2918), 1, + STATE(2940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 39, + ACTIONS(4928), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -396492,15 +399769,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, @@ -396514,29 +399794,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, - [45585] = 5, + [45625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2919), 1, + STATE(2941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 40, + ACTIONS(4968), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396550,15 +399829,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, @@ -396572,29 +399852,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, - [45648] = 5, + anon_sym_do, + [45688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2920), 1, + STATE(2942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 40, + ACTIONS(4920), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396608,15 +399887,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, @@ -396630,37 +399910,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, - [45711] = 9, + anon_sym_do, + [45751] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, - STATE(2921), 1, + STATE(2943), 1, sym_heredoc_body, - STATE(3865), 1, - sym_do_end_block, - STATE(3866), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 36, + ACTIONS(4928), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396673,15 +399944,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, @@ -396695,85 +399968,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [45782] = 5, + anon_sym_do, + [45814] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2922), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6441), 8, - anon_sym_DOT_DOT, + ACTIONS(6578), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6439), 40, - sym__line_break, + ACTIONS(6604), 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__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, - [45845] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2923), 1, + STATE(2944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 40, + ACTIONS(6245), 39, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -396812,40 +400029,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45908] = 5, + [45881] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2924), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(2945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6344), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6253), 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, @@ -396853,51 +400098,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [45971] = 9, + [45976] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, - STATE(2925), 1, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6604), 1, + sym__start_of_index_operator, + STATE(2946), 1, sym_heredoc_body, - STATE(3875), 1, - sym_do_end_block, - STATE(3876), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 36, + ACTIONS(6301), 39, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -396909,12 +400136,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, @@ -396931,35 +400159,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_else, - [46042] = 9, + anon_sym_when, + anon_sym_in, + [46043] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, - STATE(2926), 1, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6604), 1, + sym__start_of_index_operator, + STATE(2947), 1, sym_heredoc_body, - STATE(3877), 1, - sym_do_end_block, - STATE(3878), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 36, + ACTIONS(6305), 39, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -396971,12 +400196,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, @@ -396993,34 +400219,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_else, - [46113] = 9, + anon_sym_when, + anon_sym_in, + [46110] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, - STATE(2927), 1, + STATE(2948), 1, sym_heredoc_body, - STATE(3879), 1, - sym_do_end_block, - STATE(3880), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 36, + ACTIONS(4932), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -397033,15 +400256,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, @@ -397055,34 +400280,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [46184] = 9, + anon_sym_do, + [46173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, - STATE(2928), 1, + STATE(2949), 1, sym_heredoc_body, - STATE(3881), 1, - sym_do_end_block, - STATE(3882), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 36, + ACTIONS(4936), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -397095,15 +400314,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, @@ -397117,16 +400338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [46255] = 5, + anon_sym_do, + [46236] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2929), 1, + STATE(2950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397135,7 +400356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 40, + ACTIONS(6229), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397176,27 +400397,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46318] = 6, + [46299] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6708), 1, - anon_sym_PIPE, + STATE(2951), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2930), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 38, + ACTIONS(6329), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -397207,17 +400426,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, @@ -397231,77 +400451,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [46383] = 5, + [46362] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2931), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(2952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6494), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [46446] = 5, + [46463] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2932), 1, + STATE(2953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397310,7 +400549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 40, + ACTIONS(6333), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397351,32 +400590,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46509] = 9, + [46526] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - ACTIONS(6711), 1, - anon_sym_do, - STATE(2933), 1, + STATE(2954), 1, sym_heredoc_body, - STATE(3338), 1, - sym_do_end_block, - STATE(3342), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 36, + ACTIONS(4964), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397396,9 +400628,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, @@ -397413,23 +400648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [46580] = 9, + [46589] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - ACTIONS(6711), 1, - anon_sym_do, - STATE(2934), 1, + STATE(2955), 1, sym_heredoc_body, - STATE(3338), 1, - sym_do_end_block, - STATE(3342), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397438,7 +400665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 36, + ACTIONS(6091), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397452,12 +400679,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, @@ -397474,16 +400702,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, - [46651] = 5, + anon_sym_when, + anon_sym_in, + [46652] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2935), 1, + STATE(2956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397492,7 +400723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 40, + ACTIONS(6309), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397533,15 +400764,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46714] = 5, + [46715] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2936), 1, + ACTIONS(6637), 1, + anon_sym_LBRACK, + ACTIONS(6639), 1, + anon_sym_DOT, + ACTIONS(6641), 1, + anon_sym_STAR, + ACTIONS(6645), 1, + anon_sym_QMARK, + ACTIONS(6714), 1, + anon_sym_PIPE, + STATE(2957), 1, sym_heredoc_body, + STATE(3025), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(4970), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4972), 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__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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [46790] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2958), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397550,7 +400845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 40, + ACTIONS(6441), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397591,15 +400886,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46777] = 5, + [46853] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2937), 1, + ACTIONS(6637), 1, + anon_sym_LBRACK, + ACTIONS(6639), 1, + anon_sym_DOT, + ACTIONS(6641), 1, + anon_sym_STAR, + ACTIONS(6645), 1, + anon_sym_QMARK, + ACTIONS(6714), 1, + anon_sym_PIPE, + STATE(2959), 1, + sym_heredoc_body, + STATE(3025), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4922), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4924), 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__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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [46928] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397608,7 +400967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 40, + ACTIONS(6397), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397649,24 +401008,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46840] = 5, + [46991] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2938), 1, + STATE(2961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 40, + ACTIONS(4932), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397680,16 +401040,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, @@ -397703,19 +401065,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, - [46903] = 5, + [47054] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2939), 1, + STATE(2962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397724,7 +401083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 40, + ACTIONS(6075), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397765,15 +401124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46966] = 5, + [47117] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2940), 1, + STATE(2963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397782,7 +401141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 40, + ACTIONS(6191), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397823,15 +401182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47029] = 5, + [47180] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2941), 1, + STATE(2964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397840,7 +401199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 40, + ACTIONS(6097), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397881,24 +401240,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47092] = 5, + [47243] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2942), 1, + STATE(2965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 40, + ACTIONS(4936), 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, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [47306] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6716), 1, + anon_sym_of, + STATE(2966), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5877), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5873), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397919,7 +401338,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, @@ -397939,15 +401357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47155] = 5, + [47371] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2943), 1, + STATE(2967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -397956,7 +401374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 40, + ACTIONS(6097), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397997,15 +401415,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47218] = 5, + [47434] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2944), 1, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_DOT, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6633), 1, + anon_sym_QMARK, + ACTIONS(6708), 1, + anon_sym_PIPE, + STATE(2968), 1, + sym_heredoc_body, + STATE(2993), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4970), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4972), 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, + [47509] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398014,7 +401496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 40, + ACTIONS(6297), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398055,15 +401537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47281] = 5, + [47572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2945), 1, + STATE(2970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398072,7 +401554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 40, + ACTIONS(6079), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398113,15 +401595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47344] = 5, + [47635] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2946), 1, + STATE(2971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(6415), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398130,7 +401612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 40, + ACTIONS(6413), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398171,32 +401653,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47407] = 8, + [47698] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(6713), 1, - anon_sym_DASH_GT, - STATE(2947), 1, + STATE(2972), 1, sym_heredoc_body, - STATE(10445), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5804), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 36, - sym__start_of_brace_block, + ACTIONS(5802), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398207,11 +401682,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, @@ -398227,32 +401707,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, - [47476] = 5, + [47761] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2948), 1, + STATE(2973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 39, + ACTIONS(6375), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398265,15 +401742,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, @@ -398288,27 +401765,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_elsif, anon_sym_else, - [47539] = 5, + anon_sym_when, + anon_sym_in, + [47824] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2949), 1, + STATE(2974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 39, + ACTIONS(5694), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398323,16 +401801,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, @@ -398343,30 +401820,31 @@ 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, - [47602] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [47887] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2950), 1, + STATE(2975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 39, + ACTIONS(6313), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398380,18 +401858,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, @@ -398405,112 +401881,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [47665] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(2951), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6661), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6506), 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, - [47764] = 11, + [47950] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6700), 1, - anon_sym_PIPE, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - STATE(2898), 1, - aux_sym_union_type_repeat1, - STATE(2952), 1, + STATE(2976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6439), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 35, + ACTIONS(6437), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398521,14 +401914,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, @@ -398540,41 +401936,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_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [47839] = 11, + [48013] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6700), 1, + ACTIONS(6718), 1, anon_sym_PIPE, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - STATE(2898), 1, - aux_sym_union_type_repeat1, - STATE(2953), 1, + STATE(2977), 1, sym_heredoc_body, + STATE(2995), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(4881), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 35, + ACTIONS(4883), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398588,12 +401978,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, @@ -398604,21 +401996,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, - [47914] = 5, + [48080] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2954), 1, + STATE(2978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398627,7 +402020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 40, + ACTIONS(173), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398668,15 +402061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47977] = 5, + [48143] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2955), 1, + STATE(2979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398685,7 +402078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 40, + ACTIONS(6449), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398726,15 +402119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [48040] = 5, + [48206] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2956), 1, + STATE(2980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398743,7 +402136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 40, + ACTIONS(6267), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398784,15 +402177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [48103] = 5, + [48269] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2957), 1, + STATE(2981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398801,7 +402194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 40, + ACTIONS(6195), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398842,91 +402235,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [48166] = 23, + [48332] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(2958), 1, + STATE(2982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6181), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(6179), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6508), 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, - [48265] = 5, + [48395] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2959), 1, + STATE(2983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398935,7 +402310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 40, + ACTIONS(6437), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -398976,15 +402351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [48328] = 5, + [48458] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2960), 1, + STATE(2984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -398993,7 +402368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 40, + ACTIONS(6481), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399034,21 +402409,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [48391] = 8, + [48521] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1267), 1, - anon_sym_COLON, - ACTIONS(5700), 1, - anon_sym_COLON_COLON, - STATE(2416), 1, - aux_sym_constant_repeat1, - STATE(2961), 1, + STATE(2985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -399057,8 +402426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 37, - sym__start_of_brace_block, + ACTIONS(6199), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -399069,12 +402438,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, @@ -399087,23 +402460,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, - [48460] = 5, + [48584] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2962), 1, + STATE(2986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -399112,7 +402484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 40, + ACTIONS(6203), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399153,15 +402525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [48523] = 5, + [48647] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2963), 1, + STATE(2987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -399171,9 +402543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 39, + ACTIONS(4976), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -399186,6 +402557,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, @@ -399210,25 +402582,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [48586] = 5, + anon_sym_else, + [48710] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2964), 1, + STATE(2988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(4906), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 40, + ACTIONS(4908), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399242,16 +402615,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, @@ -399265,19 +402640,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, - [48649] = 5, + [48773] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2965), 1, + STATE(2989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(5868), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -399286,7 +402658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 40, + ACTIONS(5866), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399327,25 +402699,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [48712] = 5, + [48836] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2966), 1, + STATE(2990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 39, + ACTIONS(5170), 40, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399360,17 +402731,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, + sym__string_literal_start, 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, @@ -399381,29 +402751,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [48775] = 5, + anon_sym_else, + [48899] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2967), 1, + ACTIONS(1259), 1, + anon_sym_COLON, + ACTIONS(5800), 1, + anon_sym_COLON_COLON, + STATE(2489), 1, + aux_sym_constant_repeat1, + STATE(2991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(4855), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 39, + ACTIONS(4857), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399423,12 +402800,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, @@ -399439,19 +402813,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, - [48838] = 5, + [48968] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2968), 1, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + STATE(2992), 1, sym_heredoc_body, + STATE(4286), 1, + sym_do_end_block, + STATE(4288), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -399460,7 +402843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 40, + ACTIONS(5698), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399474,13 +402857,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, @@ -399497,107 +402879,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, - [48901] = 24, + [49039] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6708), 1, anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(2969), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6661), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6723), 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, - [49002] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(309), 1, - anon_sym_EQ, - STATE(2970), 1, + STATE(2993), 1, sym_heredoc_body, + STATE(2994), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 39, + ACTIONS(4883), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399611,15 +402915,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, @@ -399633,28 +402939,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, - [49067] = 5, + [49106] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2971), 1, - sym_heredoc_body, + ACTIONS(6720), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + STATE(2994), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 40, + ACTIONS(4875), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399668,16 +402974,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, @@ -399691,30 +402998,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, - [49130] = 5, + [49171] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2972), 1, - sym_heredoc_body, + ACTIONS(6723), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + STATE(2995), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 39, - sym__line_break, + ACTIONS(4875), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -399725,16 +403030,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, @@ -399752,86 +403054,108 @@ 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, - [49193] = 5, + anon_sym_when, + anon_sym_in, + [49236] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2973), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(2996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6239), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, - [49256] = 11, + [49337] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6581), 1, + ACTIONS(6625), 1, anon_sym_LBRACK, - ACTIONS(6583), 1, + ACTIONS(6627), 1, anon_sym_DOT, - ACTIONS(6585), 1, + ACTIONS(6629), 1, anon_sym_STAR, - ACTIONS(6587), 1, + ACTIONS(6633), 1, anon_sym_QMARK, - ACTIONS(6696), 1, + ACTIONS(6708), 1, anon_sym_PIPE, - STATE(2974), 1, - sym_heredoc_body, - STATE(3042), 1, + STATE(2993), 1, aux_sym_union_type_repeat1, + STATE(2997), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -399839,7 +403163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 35, + ACTIONS(4890), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399875,27 +403199,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [49331] = 6, + [49412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2975), 1, + STATE(2998), 1, sym_heredoc_body, - STATE(3042), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 38, + ACTIONS(6485), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399909,17 +403230,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, @@ -399933,147 +403253,137 @@ 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, - [49396] = 24, + anon_sym_when, + anon_sym_in, + [49475] = 11, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6625), 1, + anon_sym_LBRACK, ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6633), 1, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(2976), 1, + ACTIONS(6708), 1, + anon_sym_PIPE, + STATE(2993), 1, + aux_sym_union_type_repeat1, + STATE(2999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(4892), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4894), 35, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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_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_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [49497] = 24, + [49550] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, + ACTIONS(6576), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6598), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - ACTIONS(6692), 1, + ACTIONS(6704), 1, anon_sym_COMMA, - STATE(2977), 1, + STATE(3000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6690), 14, + ACTIONS(6702), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -400088,92 +403398,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [49598] = 24, + [49651] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(2978), 1, + ACTIONS(689), 1, + sym__string_literal_start, + ACTIONS(6726), 1, + anon_sym_COLON, + STATE(3001), 1, sym_heredoc_body, + STATE(3313), 1, + aux_sym_chained_string_repeat1, + STATE(3888), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(195), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(173), 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(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6725), 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_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49699] = 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, + [49722] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2979), 1, + ACTIONS(6728), 1, + anon_sym_of, + STATE(3002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -400182,7 +403479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 40, + ACTIONS(5960), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -400203,7 +403500,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, @@ -400223,69 +403519,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [49762] = 24, + [49787] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, + ACTIONS(6576), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6598), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - ACTIONS(6692), 1, + ACTIONS(6704), 1, anon_sym_COMMA, - STATE(2980), 1, + STATE(3003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 14, + ACTIONS(6702), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -400300,10 +403596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [49863] = 5, + [49888] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2981), 1, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + STATE(3004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -400318,9 +403616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 39, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4902), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400331,15 +403627,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, @@ -400357,24 +403651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [49926] = 9, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [49953] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(559), 1, - sym__string_literal_start, - ACTIONS(6729), 1, - anon_sym_COLON, - STATE(2982), 1, + STATE(3005), 1, sym_heredoc_body, - STATE(3158), 1, - aux_sym_chained_string_repeat1, - STATE(3374), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -400383,8 +403672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, - sym__start_of_brace_block, + ACTIONS(6381), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400395,12 +403684,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, @@ -400416,31 +403709,29 @@ 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, - [49997] = 5, + [50016] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2983), 1, + STATE(3006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 39, + ACTIONS(6385), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400454,16 +403745,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, @@ -400477,28 +403767,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50060] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50079] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2984), 1, + ACTIONS(6732), 1, + anon_sym_of, + STATE(3007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 39, + ACTIONS(5826), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400512,16 +403805,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, @@ -400535,144 +403826,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50123] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50144] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2985), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4918), 9, + ACTIONS(6574), 1, anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, + ACTIONS(6582), 1, anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(4920), 39, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 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(6610), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__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, + ACTIONS(6704), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, + STATE(3008), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6596), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [50186] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2986), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4954), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4956), 39, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [50249] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50245] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2987), 1, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + STATE(3009), 1, sym_heredoc_body, + STATE(3809), 1, + sym_do_end_block, + STATE(3810), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 39, + ACTIONS(5729), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400685,17 +403946,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, @@ -400709,28 +403968,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50312] = 5, + anon_sym_else, + [50316] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2988), 1, + STATE(3010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 39, + ACTIONS(6257), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400744,16 +404001,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, @@ -400767,28 +404023,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50375] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2989), 1, + STATE(3011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 39, + ACTIONS(6393), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400802,16 +404059,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, @@ -400825,28 +404081,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50438] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50442] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2990), 1, + STATE(3012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 39, + ACTIONS(6365), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400860,16 +404117,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, @@ -400883,94 +404139,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50501] = 11, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50505] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, anon_sym_LBRACK, - ACTIONS(6564), 1, + ACTIONS(6736), 1, anon_sym_DOT, - ACTIONS(6566), 1, + ACTIONS(6738), 1, anon_sym_STAR, - ACTIONS(6570), 1, + ACTIONS(6740), 1, anon_sym_QMARK, - ACTIONS(6731), 1, - anon_sym_PIPE, - STATE(2991), 1, - sym_heredoc_body, - STATE(3063), 1, + STATE(2977), 1, aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4884), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4886), 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__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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [50576] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2992), 1, + STATE(3013), 1, sym_heredoc_body, - STATE(3063), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4861), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400981,18 +404182,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, @@ -401003,31 +404201,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, - [50641] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2993), 1, + STATE(3014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 39, + ACTIONS(6101), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401041,16 +404239,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, @@ -401064,28 +404261,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50704] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50643] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2994), 1, + STATE(3015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 39, + ACTIONS(6417), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401099,16 +404297,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, @@ -401122,28 +404319,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50767] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50706] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2995), 1, + ACTIONS(6742), 1, + anon_sym_EQ, + STATE(3016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 39, + ACTIONS(5937), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401157,16 +404357,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, @@ -401180,28 +404378,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50830] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50771] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2996), 1, + STATE(3017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 39, + ACTIONS(6337), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401215,16 +404414,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, @@ -401238,16 +404436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50893] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [50834] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2997), 1, + STATE(3018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -401257,9 +404458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 39, + ACTIONS(4948), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401272,6 +404472,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, @@ -401296,16 +404497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [50956] = 5, + anon_sym_else, + [50897] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2998), 1, + STATE(3019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6209), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -401314,7 +404515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 40, + ACTIONS(6207), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -401355,15 +404556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51019] = 5, + [50960] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2999), 1, + STATE(3020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6559), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -401372,7 +404573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 40, + ACTIONS(6557), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -401413,92 +404614,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51082] = 24, + [51023] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3000), 1, + STATE(3021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6343), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + 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(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [51183] = 5, + [51086] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3001), 1, + STATE(3022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -401507,7 +404689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 40, + ACTIONS(6345), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -401548,15 +404730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51246] = 5, + [51149] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3002), 1, + STATE(3023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -401565,7 +404747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 40, + ACTIONS(6105), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -401606,15 +404788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51309] = 5, + [51212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3003), 1, + STATE(3024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -401623,7 +404805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 40, + ACTIONS(6211), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -401664,27 +404846,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51372] = 6, + [51275] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2898), 1, - aux_sym_union_type_repeat1, - STATE(3004), 1, + ACTIONS(6714), 1, + anon_sym_PIPE, + STATE(3025), 1, sym_heredoc_body, + STATE(3026), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 38, + ACTIONS(4883), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401695,15 +404880,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_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -401719,29 +404905,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, - [51437] = 5, + anon_sym_do, + [51342] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3005), 1, - sym_heredoc_body, + ACTIONS(6744), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + STATE(3026), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 40, + ACTIONS(4875), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401755,15 +404942,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, @@ -401777,19 +404964,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, - [51500] = 5, + anon_sym_do, + [51407] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3006), 1, + STATE(3027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -401798,7 +404982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 40, + ACTIONS(6249), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -401839,27 +405023,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51563] = 11, + [51470] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, + ACTIONS(6637), 1, anon_sym_LBRACK, - ACTIONS(6564), 1, + ACTIONS(6639), 1, anon_sym_DOT, - ACTIONS(6566), 1, + ACTIONS(6641), 1, anon_sym_STAR, - ACTIONS(6570), 1, + ACTIONS(6645), 1, anon_sym_QMARK, - ACTIONS(6731), 1, + ACTIONS(6714), 1, anon_sym_PIPE, - STATE(3007), 1, - sym_heredoc_body, - STATE(3063), 1, + STATE(3025), 1, aux_sym_union_type_repeat1, + STATE(3028), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -401867,7 +405051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 35, + ACTIONS(4890), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401903,26 +405087,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [51638] = 5, + [51545] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3008), 1, + ACTIONS(6637), 1, + anon_sym_LBRACK, + ACTIONS(6639), 1, + anon_sym_DOT, + ACTIONS(6641), 1, + anon_sym_STAR, + ACTIONS(6645), 1, + anon_sym_QMARK, + ACTIONS(6714), 1, + anon_sym_PIPE, + STATE(3025), 1, + aux_sym_union_type_repeat1, + STATE(3029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 39, + ACTIONS(4894), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401935,18 +405130,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, @@ -401957,39 +405148,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_else, - [51701] = 11, + anon_sym_do, + [51620] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, - anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_STAR, - ACTIONS(6570), 1, - anon_sym_QMARK, - ACTIONS(6731), 1, - anon_sym_PIPE, - STATE(3009), 1, + STATE(3030), 1, sym_heredoc_body, - STATE(3063), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(4946), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 35, + ACTIONS(4948), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402009,9 +405189,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, @@ -402022,95 +405205,83 @@ 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, - [51776] = 24, + [51683] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6718), 1, anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3010), 1, + STATE(2977), 1, + aux_sym_union_type_repeat1, + STATE(3031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(4896), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4898), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 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_DASH_GT, 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_else, anon_sym_when, anon_sym_in, - [51877] = 5, + [51758] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3011), 1, + STATE(3032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402119,7 +405290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 40, + ACTIONS(6215), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402160,15 +405331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51940] = 5, + [51821] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3012), 1, + STATE(3033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402177,7 +405348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 40, + ACTIONS(6219), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402218,15 +405389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52003] = 5, + [51884] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3013), 1, + STATE(3034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402235,7 +405406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 40, + ACTIONS(5832), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402276,15 +405447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52066] = 5, + [51947] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3014), 1, + STATE(3035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6289), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402293,7 +405464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 40, + ACTIONS(6287), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402334,15 +405505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52129] = 5, + [52010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3015), 1, + STATE(3036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402351,7 +405522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 40, + ACTIONS(6237), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402392,92 +405563,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52192] = 24, + [52073] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6718), 1, anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3016), 1, + STATE(2977), 1, + aux_sym_union_type_repeat1, + STATE(3037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(4877), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4879), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 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_DASH_GT, 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_else, anon_sym_when, anon_sym_in, - [52293] = 5, + [52148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3017), 1, + STATE(3038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(6265), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402486,7 +405644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 40, + ACTIONS(6263), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402527,17 +405685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52356] = 6, + [52211] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6733), 1, - anon_sym_of, - STATE(3018), 1, + STATE(3039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402546,7 +405702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 39, + ACTIONS(6241), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402567,6 +405723,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, @@ -402586,92 +405743,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52421] = 24, + [52274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3019), 1, + STATE(3040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6273), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(6271), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [52522] = 5, + [52337] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3020), 1, + STATE(3041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(5164), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402680,8 +405818,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 40, + ACTIONS(5166), 40, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -402694,13 +405833,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, @@ -402714,22 +405853,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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [52585] = 5, + [52400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3021), 1, + STATE(3042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402738,7 +405876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 40, + ACTIONS(6349), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402779,92 +405917,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52648] = 24, + [52463] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3022), 1, + STATE(3043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6403), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(6401), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [52749] = 5, + [52526] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3023), 1, + STATE(3044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -402873,7 +405992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 40, + ACTIONS(6109), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -402914,169 +406033,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52812] = 24, + [52589] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3024), 1, + STATE(3045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6359), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(6357), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [52913] = 24, + [52652] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3025), 1, + STATE(3046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(4950), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4952), 39, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, + 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, - anon_sym_when, - anon_sym_in, - [53014] = 5, + [52715] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3026), 1, + STATE(3047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -403085,7 +406166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 40, + ACTIONS(6529), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -403126,69 +406207,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53077] = 24, + [52778] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, + ACTIONS(6576), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6598), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3027), 1, + STATE(3048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6690), 14, + ACTIONS(6509), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -403198,30 +406277,41 @@ 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, - [53178] = 5, + [52877] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3028), 1, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, + anon_sym_QMARK, + STATE(2977), 1, + aux_sym_union_type_repeat1, + STATE(3049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 40, - sym__line_break, + ACTIONS(4890), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403232,17 +406322,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, @@ -403254,193 +406341,152 @@ 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, - [53241] = 5, + [52952] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3029), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(143), 8, + ACTIONS(6574), 1, anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(6582), 1, anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(145), 40, - sym__line_break, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 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(6610), 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(6704), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + STATE(3050), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6596), 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, - [53304] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6735), 1, - anon_sym_of, - STATE(3030), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5817), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5813), 39, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, - [53369] = 24, + [53053] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, + ACTIONS(6576), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6598), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - ACTIONS(6692), 1, + ACTIONS(6704), 1, anon_sym_COMMA, - STATE(3031), 1, + STATE(3051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6690), 14, + ACTIONS(6702), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -403455,15 +406501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53470] = 5, + [53154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3032), 1, + STATE(3052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -403472,7 +406518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 40, + ACTIONS(6537), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -403513,15 +406559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53533] = 5, + [53217] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3033), 1, + STATE(3053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -403530,7 +406576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 40, + ACTIONS(5838), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -403571,40 +406617,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53596] = 5, + [53280] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3034), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6145), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6518), 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, @@ -403612,44 +406686,40 @@ 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, - [53659] = 6, + [53375] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6737), 1, - anon_sym_of, - STATE(3035), 1, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, + anon_sym_QMARK, + STATE(2977), 1, + aux_sym_union_type_repeat1, + STATE(3055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 39, - sym__line_break, + ACTIONS(4894), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403660,16 +406730,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, @@ -403681,22 +406749,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, - [53724] = 5, + [53450] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3036), 1, + STATE(3056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -403705,7 +406772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 40, + ACTIONS(6113), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -403746,15 +406813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53787] = 5, + [53513] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3037), 1, + STATE(3057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -403763,7 +406830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 40, + ACTIONS(6541), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -403804,15 +406871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53850] = 5, + [53576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3038), 1, + STATE(3058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -403821,7 +406888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 40, + ACTIONS(6545), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -403862,15 +406929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53913] = 5, + [53639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3039), 1, + STATE(3059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -403879,7 +406946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6125), 40, + ACTIONS(6493), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -403920,144 +406987,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53976] = 5, + [53702] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3040), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6129), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6083), 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, - [54039] = 5, + [53801] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3041), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6133), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6085), 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_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [53900] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3062), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6590), 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(6606), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6608), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 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, - [54102] = 7, + [53999] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6696), 1, - anon_sym_PIPE, - STATE(3042), 1, + STATE(3063), 1, sym_heredoc_body, - STATE(3043), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 38, + ACTIONS(5715), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -404071,17 +407246,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, @@ -404095,28 +407269,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, - [54169] = 6, + anon_sym_when, + anon_sym_in, + [54062] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6739), 1, - anon_sym_PIPE, + STATE(3064), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3043), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 38, + ACTIONS(6549), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -404130,17 +407304,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, @@ -404154,16 +407327,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, - [54234] = 5, + anon_sym_when, + anon_sym_in, + [54125] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3044), 1, + STATE(3065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -404172,7 +407348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 40, + ACTIONS(6553), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -404213,35 +407389,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54297] = 11, + [54188] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6581), 1, - anon_sym_LBRACK, - ACTIONS(6583), 1, - anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_STAR, - ACTIONS(6587), 1, - anon_sym_QMARK, - ACTIONS(6696), 1, - anon_sym_PIPE, - STATE(3042), 1, - aux_sym_union_type_repeat1, - STATE(3045), 1, + STATE(3066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6499), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 35, + ACTIONS(6497), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -404255,12 +407420,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, @@ -404274,97 +407440,108 @@ 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, - [54372] = 6, + anon_sym_when, + anon_sym_in, + [54251] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6742), 1, - anon_sym_of, - STATE(3046), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(3067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5843), 39, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6747), 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, - [54437] = 11, + [54352] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6581), 1, - anon_sym_LBRACK, - ACTIONS(6583), 1, - anon_sym_DOT, - ACTIONS(6585), 1, - anon_sym_STAR, - ACTIONS(6587), 1, - anon_sym_QMARK, - ACTIONS(6696), 1, - anon_sym_PIPE, - STATE(3042), 1, - aux_sym_union_type_repeat1, - STATE(3047), 1, + STATE(3068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(6119), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 35, + ACTIONS(6117), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -404378,12 +407555,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, @@ -404397,43 +407575,53 @@ 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, - [54512] = 5, + anon_sym_when, + anon_sym_in, + [54415] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3048), 1, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6604), 1, + sym__start_of_index_operator, + STATE(3069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6608), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6293), 40, + ACTIONS(6125), 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, @@ -404450,7 +407638,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, @@ -404458,32 +407645,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54575] = 5, + [54488] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3049), 1, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6604), 1, + sym__start_of_index_operator, + STATE(3070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 40, + ACTIONS(6129), 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, @@ -404508,7 +407699,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, @@ -404516,15 +407706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54638] = 5, + [54557] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3050), 1, + STATE(3071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -404533,7 +407723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 40, + ACTIONS(6121), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -404574,15 +407764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54701] = 5, + [54620] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3051), 1, + ACTIONS(6749), 1, + anon_sym_of, + STATE(3072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -404591,7 +407783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 40, + ACTIONS(5744), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -404612,7 +407804,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, @@ -404632,15 +407823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54764] = 5, + [54685] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3052), 1, + STATE(3073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -404649,7 +407840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 40, + ACTIONS(6453), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -404690,32 +407881,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54827] = 5, + [54748] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3053), 1, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6604), 1, + sym__start_of_index_operator, + STATE(3074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 40, + ACTIONS(6133), 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, @@ -404740,7 +407935,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, @@ -404748,40 +407942,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54890] = 5, + [54817] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3054), 1, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6604), 1, + sym__start_of_index_operator, + STATE(3075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6606), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6608), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6157), 40, + ACTIONS(6137), 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__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -404790,15 +407994,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, @@ -404806,40 +408007,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54953] = 5, + [54894] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3055), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6161), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6141), 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, @@ -404847,16 +408076,74 @@ static const uint16_t ts_small_parse_table[] = { 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, + [54989] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3077), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6590), 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(6606), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6608), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -404864,40 +408151,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55016] = 5, + [55076] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3056), 1, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6215), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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, @@ -404906,15 +408204,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, @@ -404922,40 +408217,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55079] = 5, + [55155] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3057), 1, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6604), 1, + sym__start_of_index_operator, + STATE(3079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6606), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6608), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6219), 40, + ACTIONS(6163), 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, @@ -404972,7 +408274,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, @@ -404980,40 +408281,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55142] = 5, + [55230] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3058), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6225), 8, - anon_sym_DOT_DOT, + ACTIONS(6578), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(6582), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6223), 40, - sym__line_break, + ACTIONS(6604), 1, sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3080), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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, @@ -405021,16 +408336,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, @@ -405038,67 +408349,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55205] = 23, + [55313] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6173), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - STATE(3059), 1, + STATE(3081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6309), 15, + ACTIONS(6171), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -405109,72 +408412,70 @@ 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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [55304] = 23, + [55404] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6177), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - STATE(3060), 1, + STATE(3082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6311), 15, + ACTIONS(6175), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -405185,20 +408486,23 @@ 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_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [55403] = 5, + [55497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3061), 1, + STATE(3083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -405207,7 +408511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 40, + ACTIONS(6561), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -405248,15 +408552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55466] = 5, + [55560] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3062), 1, + STATE(3084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -405265,7 +408569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 40, + ACTIONS(6353), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -405306,30 +408610,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55529] = 7, + [55623] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6731), 1, - anon_sym_PIPE, - STATE(3063), 1, + STATE(3085), 1, sym_heredoc_body, - STATE(3064), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(6277), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 38, + ACTIONS(6275), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405343,15 +408642,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, @@ -405365,100 +408664,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [55596] = 6, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [55686] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6744), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3064), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(6363), 1, anon_sym_DOT_DOT, + ACTIONS(6578), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(4875), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 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(6610), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__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, + STATE(3086), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6596), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [55661] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3065), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(173), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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, @@ -405466,118 +408737,30 @@ 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, - [55724] = 11, + [55781] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6562), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, - anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_STAR, - ACTIONS(6570), 1, - anon_sym_QMARK, - ACTIONS(6731), 1, - anon_sym_PIPE, - STATE(3063), 1, - aux_sym_union_type_repeat1, - STATE(3066), 1, + STATE(3087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6503), 8, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4890), 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__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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [55799] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6562), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, anon_sym_DOT, - ACTIONS(6566), 1, - anon_sym_STAR, - ACTIONS(6570), 1, - anon_sym_QMARK, - ACTIONS(6731), 1, - anon_sym_PIPE, - STATE(3063), 1, - aux_sym_union_type_repeat1, - STATE(3067), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4896), 7, - anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 35, + ACTIONS(6501), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405591,10 +408774,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, @@ -405608,28 +408793,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_do, - [55874] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [55844] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3068), 1, + ACTIONS(6751), 1, + anon_sym_of, + STATE(3088), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 39, + ACTIONS(5844), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -405643,18 +408833,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, @@ -405668,16 +408855,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, - [55937] = 5, + anon_sym_when, + anon_sym_in, + [55909] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3069), 1, + STATE(3089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -405686,7 +408876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 40, + ACTIONS(6514), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -405727,25 +408917,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [56000] = 5, + [55972] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3070), 1, + STATE(2977), 1, + aux_sym_union_type_repeat1, + STATE(3090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 40, - sym__line_break, + ACTIONS(4875), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405756,18 +408948,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, @@ -405781,73 +408972,71 @@ 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, - [56063] = 24, + [56037] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, + ACTIONS(6576), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6598), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3071), 1, + STATE(3091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6690), 14, + ACTIONS(6459), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -405857,20 +409046,21 @@ 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, - [56164] = 5, + [56136] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3072), 1, + STATE(3092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -405879,7 +409069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 40, + ACTIONS(6445), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -405920,76 +409110,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [56227] = 8, + [56199] = 23, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6747), 1, - anon_sym_DOT, - STATE(2915), 1, - sym__implicit_index_operator, - STATE(3073), 1, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, - anon_sym_DOT_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5878), 38, - sym__line_break, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6491), 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_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_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, - [56296] = 5, + [56298] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3074), 1, + STATE(3094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -405998,7 +409203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 40, + ACTIONS(6433), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406039,131 +409244,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [56359] = 5, + [56361] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3075), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + STATE(3095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6502), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6373), 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, - [56422] = 5, + [56460] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3076), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(3096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4956), 39, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [56485] = 5, + anon_sym_when, + anon_sym_in, + [56561] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3077), 1, + STATE(3097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406172,7 +409414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 40, + ACTIONS(6405), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406213,21 +409455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [56548] = 8, + [56624] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1253), 1, - anon_sym_COLON, - ACTIONS(5779), 1, - anon_sym_COLON_COLON, - STATE(2462), 1, - aux_sym_constant_repeat1, - STATE(3078), 1, + STATE(3098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406236,7 +409472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 37, + ACTIONS(145), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406250,12 +409486,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, @@ -406269,28 +409506,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_elsif, anon_sym_else, - [56617] = 9, + anon_sym_when, + anon_sym_in, + [56687] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, - STATE(3079), 1, + STATE(3099), 1, sym_heredoc_body, - STATE(4151), 1, - sym_do_end_block, - STATE(4152), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406299,7 +409530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 36, + ACTIONS(6421), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406313,12 +409544,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, @@ -406335,24 +409567,25 @@ 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, - [56688] = 9, + anon_sym_when, + anon_sym_in, + [56750] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, - STATE(3080), 1, + ACTIONS(1255), 1, + anon_sym_COLON, + ACTIONS(5907), 1, + anon_sym_COLON_COLON, + STATE(2525), 1, + aux_sym_constant_repeat1, + STATE(3100), 1, sym_heredoc_body, - STATE(4151), 1, - sym_do_end_block, - STATE(4152), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(4855), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406361,7 +409594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 36, + ACTIONS(4857), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406394,77 +409627,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_else, - [56759] = 5, + [56819] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3081), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(3101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6165), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [56822] = 5, + [56920] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3082), 1, + ACTIONS(1403), 1, + sym__string_literal_start, + ACTIONS(6753), 1, + anon_sym_COLON, + STATE(3102), 1, sym_heredoc_body, + STATE(3237), 1, + aux_sym_chained_string_repeat1, + STATE(3723), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406473,7 +409734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 40, + ACTIONS(173), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406487,13 +409748,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, @@ -406510,19 +409770,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, - [56885] = 5, + [56991] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3083), 1, + STATE(3103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406531,7 +409788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 40, + ACTIONS(6279), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406572,15 +409829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [56948] = 5, + [57054] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3084), 1, + STATE(3104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406589,7 +409846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 40, + ACTIONS(6409), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406630,73 +409887,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57011] = 5, + [57117] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3085), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(3105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6383), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [57074] = 5, + [57218] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3086), 1, + STATE(3106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406705,7 +409981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 40, + ACTIONS(6505), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406746,26 +410022,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57137] = 5, + [57281] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3087), 1, + ACTIONS(6755), 1, + anon_sym_DOT, + ACTIONS(6757), 1, + anon_sym_EQ, + ACTIONS(6759), 1, + sym__start_of_index_operator, + STATE(3107), 1, sym_heredoc_body, + STATE(3275), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 40, + ACTIONS(5719), 37, sym__line_break, - sym__start_of_index_operator, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -406777,13 +410060,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, @@ -406800,19 +410082,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, - [57200] = 5, + [57352] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3088), 1, + STATE(3108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406821,7 +410101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 40, + ACTIONS(5729), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406853,98 +410133,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [57263] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3089), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6661), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6332), 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_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, - [57358] = 5, + [57415] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3090), 1, + STATE(3109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -406953,7 +410159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 40, + ACTIONS(5698), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -406994,15 +410200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57421] = 5, + [57478] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3091), 1, + ACTIONS(6761), 1, + anon_sym_of, + STATE(3110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -407011,7 +410219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 40, + ACTIONS(5981), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -407032,7 +410240,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, @@ -407052,24 +410259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57484] = 5, + [57543] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3092), 1, + STATE(3111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 40, + ACTIONS(4912), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -407083,16 +410291,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, @@ -407106,19 +410316,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_else, + [57606] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(3112), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6608), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [57547] = 5, + [57707] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3093), 1, + STATE(3113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(6285), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -407127,7 +410411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 40, + ACTIONS(6283), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -407168,24 +410452,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57610] = 5, + [57770] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3094), 1, + STATE(3114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 40, + ACTIONS(4944), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -407199,16 +410484,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, @@ -407222,223 +410509,192 @@ 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, - [57673] = 23, + [57833] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3095), 1, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + STATE(3115), 1, sym_heredoc_body, + STATE(4031), 1, + sym_do_end_block, + STATE(4061), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(5696), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(5694), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6247), 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_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [57772] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 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(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3096), 1, + anon_sym_else, + [57904] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + STATE(3116), 1, sym_heredoc_body, + STATE(4148), 1, + sym_do_end_block, + STATE(4151), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(5696), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(5694), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6461), 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_else, - anon_sym_when, - anon_sym_in, - [57871] = 23, + [57975] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6629), 1, + ACTIONS(6576), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6651), 1, + ACTIONS(6598), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - STATE(3097), 1, + STATE(3117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6469), 15, + ACTIONS(5970), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -407454,15 +410710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57970] = 5, + [58074] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3098), 1, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + STATE(3118), 1, sym_heredoc_body, + STATE(4227), 1, + sym_do_end_block, + STATE(4240), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -407471,7 +410735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 40, + ACTIONS(5715), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -407485,13 +410749,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, @@ -407508,19 +410771,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, - [58033] = 5, + [58145] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3099), 1, + STATE(3119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -407529,7 +410789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 40, + ACTIONS(6425), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -407570,15 +410830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58096] = 5, + [58208] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3100), 1, + ACTIONS(309), 1, + anon_sym_EQ, + STATE(3120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -407587,7 +410849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 40, + ACTIONS(173), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -407608,7 +410870,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, @@ -407628,25 +410889,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58159] = 5, + [58273] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3101), 1, + ACTIONS(583), 1, + sym__start_of_brace_block, + ACTIONS(6763), 1, + anon_sym_do, + STATE(3121), 1, sym_heredoc_body, + STATE(3462), 1, + sym_do_end_block, + STATE(3487), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 40, - sym__line_break, + ACTIONS(5669), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -407657,16 +410926,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, @@ -407682,19 +410947,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, - [58222] = 5, + [58344] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3102), 1, + STATE(3122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -407703,7 +410968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 40, + ACTIONS(6321), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -407744,46 +411009,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58285] = 10, + [58407] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6657), 1, - sym__start_of_index_operator, - STATE(3103), 1, + STATE(3123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6661), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6225), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 33, + anon_sym_AMP_STAR, + ACTIONS(6223), 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, @@ -407800,6 +411059,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, @@ -407807,48 +411067,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58358] = 8, + [58470] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - STATE(3104), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6687), 1, + anon_sym_do, + STATE(3124), 1, sym_heredoc_body, + STATE(3214), 1, + sym_do_end_block, + STATE(3286), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(5731), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 37, + ACTIONS(5729), 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, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -407861,58 +411124,55 @@ 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, - [58427] = 8, + [58541] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - STATE(3105), 1, + STATE(3125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(4950), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 37, + ACTIONS(4952), 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, - 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, @@ -407922,57 +411182,45 @@ 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, - [58496] = 12, + anon_sym_do, + [58604] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6657), 1, - sym__start_of_index_operator, - STATE(3106), 1, + STATE(3126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6659), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6661), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(5696), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 27, + anon_sym_AMP_STAR, + ACTIONS(5694), 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, @@ -407981,12 +411229,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, @@ -407994,195 +411245,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58573] = 21, + [58667] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6629), 1, + anon_sym_STAR, + ACTIONS(6633), 1, + anon_sym_QMARK, + ACTIONS(6708), 1, anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3107), 1, + STATE(2993), 1, + aux_sym_union_type_repeat1, + STATE(3127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(4896), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4898), 35, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5951), 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_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - 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_else, - anon_sym_when, - anon_sym_in, - [58668] = 17, + [58742] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3108), 1, + STATE(2993), 1, + aux_sym_union_type_repeat1, + STATE(3128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(4873), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4875), 38, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5959), 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, - 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_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [58755] = 13, + [58807] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3109), 1, + STATE(3129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6659), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6661), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(6391), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 26, + anon_sym_AMP_STAR, + ACTIONS(6389), 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, @@ -408191,12 +411410,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, @@ -408204,52 +411426,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58834] = 11, + [58870] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6657), 1, - sym__start_of_index_operator, - STATE(3110), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(6765), 1, + anon_sym_DASH_GT, + STATE(3130), 1, sym_heredoc_body, + STATE(10490), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6659), 4, + ACTIONS(5020), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5022), 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, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 29, - sym__line_break, - 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_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -408261,61 +411478,49 @@ 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_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [58909] = 15, + [58939] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3111), 1, + STATE(3131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6659), 4, + ACTIONS(6475), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6473), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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, @@ -408323,12 +411528,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, @@ -408336,170 +411545,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58992] = 19, + [59002] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, ACTIONS(6637), 1, - anon_sym_CARET, + anon_sym_LBRACK, + ACTIONS(6639), 1, + anon_sym_DOT, ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3112), 1, + anon_sym_STAR, + ACTIONS(6645), 1, + anon_sym_QMARK, + ACTIONS(6714), 1, + anon_sym_PIPE, + STATE(3025), 1, + aux_sym_union_type_repeat1, + STATE(3132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(4896), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4898), 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(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5975), 19, - 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_COMMA, 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_else, - anon_sym_when, - anon_sym_in, - [59083] = 20, + anon_sym_do, + [59077] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3113), 1, + STATE(3025), 1, + aux_sym_union_type_repeat1, + STATE(3133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(4873), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(4875), 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(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5979), 18, - 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_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, - [59176] = 5, + anon_sym_do, + [59142] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3114), 1, + STATE(3134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 40, + ACTIONS(4912), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408513,15 +411702,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, @@ -408535,19 +411725,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, - [59239] = 5, + anon_sym_do, + [59205] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3115), 1, + STATE(3135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -408556,7 +411743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 40, + ACTIONS(6325), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -408597,15 +411784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [59302] = 5, + [59268] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3116), 1, + STATE(3136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -408614,7 +411801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 40, + ACTIONS(6369), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -408655,15 +411842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [59365] = 5, + [59331] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3117), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + STATE(3137), 1, sym_heredoc_body, + STATE(3489), 1, + sym_do_end_block, + STATE(3492), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -408672,7 +411865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 40, + ACTIONS(5698), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -408686,13 +411879,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, @@ -408709,19 +411901,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, - [59428] = 5, + [59400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3118), 1, + STATE(3138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -408730,7 +411920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 40, + ACTIONS(6461), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -408771,17 +411961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [59491] = 6, + [59463] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6749), 1, - anon_sym_LPAREN2, - STATE(3119), 1, + STATE(3139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(4859), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -408791,7 +411979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 38, + ACTIONS(4861), 39, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408802,17 +411992,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_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, @@ -408826,39 +412017,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, - [59556] = 11, + [59526] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6700), 1, - anon_sym_PIPE, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - STATE(2898), 1, - aux_sym_union_type_repeat1, - STATE(3120), 1, + STATE(3140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(4838), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 35, + ACTIONS(4840), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408869,15 +412049,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, @@ -408888,30 +412072,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_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, - [59631] = 5, + [59589] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3121), 1, + STATE(3141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 40, + ACTIONS(4940), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -408925,16 +412109,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, @@ -408948,125 +412134,147 @@ 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, - [59694] = 5, + [59652] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3122), 1, + ACTIONS(6574), 1, + anon_sym_DOT_DOT, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, + anon_sym_DOT, + ACTIONS(6582), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_CARET, + ACTIONS(6588), 1, + anon_sym_EQ_EQ, + ACTIONS(6594), 1, + anon_sym_AMP_STAR, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, + anon_sym_AMP_AMP, + ACTIONS(6602), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6610), 1, + sym_binary_ampersand, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(3142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6586), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6592), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6596), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6580), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6498), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6590), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6608), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [59757] = 21, + [59753] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6631), 1, + ACTIONS(6576), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6635), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6641), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6647), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6598), 1, + anon_sym_QMARK, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6655), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6663), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - STATE(3123), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(3143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6645), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 17, + ACTIONS(6712), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -409076,43 +412284,38 @@ 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, - [59852] = 11, + [59854] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6700), 1, - anon_sym_PIPE, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - STATE(2898), 1, - aux_sym_union_type_repeat1, - STATE(3124), 1, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, + STATE(3144), 1, sym_heredoc_body, + STATE(4033), 1, + sym_do_end_block, + STATE(4034), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(5671), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 35, + ACTIONS(5669), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409130,7 +412333,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, @@ -409142,41 +412344,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_else, anon_sym_when, anon_sym_in, - [59927] = 11, + [59925] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6700), 1, - anon_sym_PIPE, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - STATE(2898), 1, - aux_sym_union_type_repeat1, - STATE(3125), 1, + STATE(3145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(6235), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 35, + ACTIONS(6233), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409187,14 +412380,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, @@ -409206,21 +412402,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, - [60002] = 5, + [59988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3126), 1, + STATE(3146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -409229,7 +412426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 40, + ACTIONS(6389), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -409270,24 +412467,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [60065] = 5, + [60051] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3127), 1, + STATE(3147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 40, + ACTIONS(4956), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -409301,16 +412499,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, @@ -409324,28 +412524,26 @@ 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, - [60128] = 5, + [60114] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3128), 1, + STATE(3148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 40, + ACTIONS(4902), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -409359,16 +412557,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, @@ -409382,95 +412582,74 @@ 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, - [60191] = 23, + [60177] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_DOT_DOT, - ACTIONS(6629), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_CARET, - ACTIONS(6641), 1, - anon_sym_EQ_EQ, - ACTIONS(6647), 1, - anon_sym_AMP_STAR, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6655), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6663), 1, - sym_binary_ampersand, - STATE(3129), 1, + STATE(3149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6639), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6649), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6633), 3, + ACTIONS(6479), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6643), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6659), 4, + anon_sym_AMP_STAR, + ACTIONS(6477), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6661), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6205), 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, - [60290] = 5, + [60240] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3130), 1, + STATE(3150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -409479,7 +412658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 40, + ACTIONS(6565), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -409520,35 +412699,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [60353] = 11, + [60303] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - ACTIONS(6751), 1, - anon_sym_PIPE, - STATE(3131), 1, + STATE(3151), 1, sym_heredoc_body, - STATE(3237), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(6431), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 34, + ACTIONS(6429), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409559,12 +412728,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, @@ -409577,104 +412750,138 @@ 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, - [60427] = 23, + [60366] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, + STATE(3152), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6467), 8, anon_sym_DOT_DOT, - ACTIONS(6757), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, anon_sym_DOT, - ACTIONS(6763), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_EQ_EQ, - ACTIONS(6775), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6779), 1, + ACTIONS(6465), 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, - ACTIONS(6781), 1, anon_sym_AMP_AMP, - ACTIONS(6783), 1, anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3132), 1, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [60429] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(5717), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + anon_sym_AMP_STAR, + ACTIONS(5715), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6753), 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, - [60525] = 9, + [60492] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, - STATE(3133), 1, + STATE(3154), 1, sym_heredoc_body, - STATE(4339), 1, - sym_do_end_block, - STATE(4340), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -409683,7 +412890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 35, + ACTIONS(6522), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409694,12 +412902,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, @@ -409715,30 +412927,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [60595] = 5, + [60555] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3134), 1, + STATE(3155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 39, + ACTIONS(4960), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409757,9 +412969,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, @@ -409770,29 +412985,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_do, anon_sym_else, - [60657] = 9, + [60618] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, - STATE(3135), 1, + STATE(3156), 1, sym_heredoc_body, - STATE(4341), 1, - sym_do_end_block, - STATE(4342), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5923), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -409801,7 +413006,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 35, + ACTIONS(5921), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409812,12 +413018,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, @@ -409833,109 +413043,163 @@ 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, - [60727] = 25, + [60681] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6793), 1, - anon_sym_COMMA, - ACTIONS(6795), 1, + ACTIONS(6574), 1, anon_sym_DOT_DOT, - ACTIONS(6797), 1, + ACTIONS(6576), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6578), 1, anon_sym_DOT, - ACTIONS(6803), 1, + ACTIONS(6582), 1, anon_sym_PIPE, - ACTIONS(6805), 1, + ACTIONS(6584), 1, anon_sym_CARET, - ACTIONS(6809), 1, + ACTIONS(6588), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6594), 1, anon_sym_AMP_STAR, - ACTIONS(6819), 1, + ACTIONS(6598), 1, anon_sym_QMARK, - ACTIONS(6821), 1, + ACTIONS(6600), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, + ACTIONS(6602), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, + ACTIONS(6610), 1, sym_binary_ampersand, - STATE(3136), 1, + STATE(3157), 1, sym_heredoc_body, - STATE(3263), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6586), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, + ACTIONS(6592), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6596), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6580), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, + ACTIONS(6590), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6606), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6608), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 12, + ACTIONS(6489), 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, + 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, - [60829] = 7, + anon_sym_when, + anon_sym_in, + [60780] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6793), 1, + STATE(3158), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6535), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6533), 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, - STATE(3137), 1, + 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, + [60843] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3159), 1, sym_heredoc_body, - STATE(3263), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 37, + ACTIONS(5894), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -409956,6 +413220,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, @@ -409973,23 +413238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [60895] = 9, + [60905] = 5, ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, - STATE(3138), 1, + sym__heredoc_body_start, + STATE(3160), 1, sym_heredoc_body, - STATE(4343), 1, - sym_do_end_block, - STATE(4344), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5168), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -409998,7 +413255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 35, + anon_sym_COLON2, + ACTIONS(5170), 38, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410010,6 +413269,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, @@ -410027,39 +413287,33 @@ 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, - [60965] = 9, + [60967] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, - STATE(3139), 1, + STATE(3161), 1, sym_heredoc_body, - STATE(4349), 1, - sym_do_end_block, - STATE(4350), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 35, + ACTIONS(4964), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410073,11 +413327,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, @@ -410095,182 +413352,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [61035] = 25, + [61029] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - ACTIONS(6833), 1, - anon_sym_COMMA, - STATE(3140), 1, + STATE(3162), 1, sym_heredoc_body, - STATE(3190), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(5868), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(5866), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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_end, - anon_sym_do, - anon_sym_else, - [61137] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 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(6821), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - ACTIONS(6835), 1, - anon_sym_COMMA, - STATE(3141), 1, + anon_sym_do, + anon_sym_else, + [61091] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3163), 1, sym_heredoc_body, - STATE(3145), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(5864), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(5862), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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, - [61239] = 7, + [61153] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6835), 1, - anon_sym_COMMA, - STATE(3142), 1, + STATE(3164), 1, sym_heredoc_body, - STATE(3145), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 37, + ACTIONS(6051), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -410291,6 +413505,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, @@ -410308,105 +413523,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [61305] = 25, + [61215] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - ACTIONS(6837), 1, - anon_sym_COMMA, - STATE(3143), 1, + STATE(3165), 1, sym_heredoc_body, - STATE(3146), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(5820), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(5818), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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, - [61407] = 7, + [61277] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6837), 1, - anon_sym_COMMA, - STATE(3144), 1, + STATE(3166), 1, sym_heredoc_body, - STATE(3146), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 37, + ACTIONS(6017), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -410427,6 +413619,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, @@ -410444,28 +413637,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [61473] = 7, + [61339] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6837), 1, - anon_sym_COMMA, - STATE(3145), 1, + STATE(3167), 1, sym_heredoc_body, - STATE(3191), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 37, + ACTIONS(5822), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -410486,6 +413676,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, @@ -410503,19 +413694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [61539] = 7, + [61401] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6839), 1, - anon_sym_COMMA, - STATE(3146), 1, + STATE(3168), 1, sym_heredoc_body, - STATE(3191), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -410524,7 +413711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 37, + ACTIONS(5909), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -410545,6 +413732,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, @@ -410557,97 +413745,161 @@ 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, - [61605] = 17, + [61463] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, + ACTIONS(6769), 1, + anon_sym_COMMA, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6763), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6765), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6769), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6775), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6789), 1, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3147), 1, + STATE(3169), 1, sym_heredoc_body, + STATE(3298), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6777), 2, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, - anon_sym_DOT_DOT, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 20, + ACTIONS(5856), 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_end, + anon_sym_do, + anon_sym_else, + [61565] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3170), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4910), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4912), 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [61691] = 9, + [61627] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - ACTIONS(6841), 1, - anon_sym_do, - STATE(3148), 1, + ACTIONS(559), 1, + sym__string_literal_start, + STATE(3171), 1, sym_heredoc_body, - STATE(3779), 1, - sym_do_end_block, - STATE(3780), 1, - sym_brace_block, + STATE(3291), 1, + aux_sym_chained_string_repeat1, + STATE(3374), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -410656,7 +413908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 35, + ACTIONS(5686), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410688,95 +413941,86 @@ 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, - [61761] = 13, + [61695] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3149), 1, + STATE(3172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6785), 4, + ACTIONS(4918), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4920), 38, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5963), 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, - [61839] = 5, + [61757] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3150), 1, + STATE(3173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 39, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4936), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410787,18 +414031,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_LPAREN, + 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, @@ -410812,17 +414055,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, - [61901] = 5, + anon_sym_when, + anon_sym_in, + [61819] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3151), 1, + STATE(3174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -410832,7 +414077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 38, + ACTIONS(4902), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410871,17 +414116,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [61963] = 6, + [61881] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6843), 1, - anon_sym_of, - STATE(3152), 1, + ACTIONS(583), 1, + sym__start_of_brace_block, + STATE(3175), 1, sym_heredoc_body, + STATE(3675), 1, + sym_do_end_block, + STATE(3676), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -410890,9 +414139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5694), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410903,15 +414150,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, @@ -410927,30 +414171,36 @@ 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, - [62027] = 7, + anon_sym_when, + anon_sym_in, + [61949] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - STATE(3153), 1, + ACTIONS(583), 1, + sym__start_of_brace_block, + STATE(3176), 1, sym_heredoc_body, + STATE(3677), 1, + sym_do_end_block, + STATE(3678), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(5696), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 38, - sym__line_break, + ACTIONS(5694), 36, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -410960,15 +414210,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, @@ -410984,34 +414231,36 @@ 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, - [62093] = 8, + [62017] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1403), 1, - sym__string_literal_start, - STATE(3154), 1, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(6809), 1, + anon_sym_DASH_GT, + STATE(3177), 1, sym_heredoc_body, - STATE(3182), 1, - aux_sym_chained_string_repeat1, - STATE(3567), 1, - sym_string, + STATE(10157), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 36, + ACTIONS(5022), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -411031,7 +414280,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, @@ -411048,27 +414296,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [62161] = 11, + [62085] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6715), 1, + ACTIONS(6811), 1, anon_sym_LBRACK, - ACTIONS(6717), 1, + ACTIONS(6813), 1, anon_sym_DOT, - ACTIONS(6719), 1, + ACTIONS(6815), 1, anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - ACTIONS(6751), 1, + ACTIONS(6817), 1, anon_sym_PIPE, - STATE(3155), 1, + ACTIONS(6819), 1, + anon_sym_QMARK, + STATE(3178), 1, sym_heredoc_body, - STATE(3237), 1, + STATE(3188), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(4896), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -411076,7 +414324,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 34, + ACTIONS(4898), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411087,13 +414336,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, @@ -411107,56 +414359,56 @@ 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, - [62235] = 11, + [62159] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, anon_sym_DOT, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - STATE(3156), 1, + ACTIONS(6815), 1, + anon_sym_STAR, + ACTIONS(6817), 1, + anon_sym_PIPE, + ACTIONS(6819), 1, + anon_sym_QMARK, + STATE(3179), 1, sym_heredoc_body, + STATE(3188), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5969), 6, + ACTIONS(4877), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 28, + anon_sym_AMP_STAR, + ACTIONS(4879), 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, @@ -411167,22 +414419,18 @@ 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, - [62309] = 5, + [62233] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3157), 1, + STATE(3180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -411192,7 +414440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 38, + ACTIONS(4940), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411231,21 +414479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [62371] = 8, + [62295] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(559), 1, - sym__string_literal_start, - STATE(3158), 1, + ACTIONS(341), 1, + anon_sym_EQ, + STATE(3181), 1, sym_heredoc_body, - STATE(3174), 1, - aux_sym_chained_string_repeat1, - STATE(3374), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -411254,7 +414498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 36, + ACTIONS(173), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -411266,12 +414511,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, @@ -411289,23 +414537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [62439] = 8, + [62359] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - STATE(3159), 1, + ACTIONS(6821), 1, + anon_sym_of, + STATE(3182), 1, sym_heredoc_body, - STATE(3655), 1, - sym_do_end_block, - STATE(3656), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -411314,7 +414556,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 36, + ACTIONS(5873), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411325,12 +414569,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, @@ -411346,95 +414593,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, - [62507] = 8, + [62423] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - STATE(3160), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + STATE(3183), 1, sym_heredoc_body, - STATE(3657), 1, - sym_do_end_block, - STATE(3658), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 36, - sym__start_of_index_operator, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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_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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [62575] = 8, + [62505] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - STATE(3161), 1, + STATE(3184), 1, sym_heredoc_body, - STATE(3659), 1, - sym_do_end_block, - STATE(3660), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5979), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 36, + ACTIONS(5977), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411445,12 +414693,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, @@ -411466,36 +414717,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_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [62643] = 8, + [62567] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - STATE(3162), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + STATE(3185), 1, sym_heredoc_body, - STATE(3661), 1, - sym_do_end_block, - STATE(3662), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 36, - sym__start_of_index_operator, + ACTIONS(6245), 38, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -411505,12 +414750,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_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411526,30 +414774,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_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [62711] = 5, + [62633] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3163), 1, + ACTIONS(6841), 1, + sym_regex_modifier, + STATE(3186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 38, + ACTIONS(5838), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411560,17 +414810,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, @@ -411584,30 +414834,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, - [62773] = 6, + [62697] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(433), 1, - anon_sym_EQ, - STATE(3164), 1, + STATE(3187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5804), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 38, + ACTIONS(5802), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -411646,50 +414893,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [62837] = 8, + [62759] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - STATE(3165), 1, + ACTIONS(6817), 1, + anon_sym_PIPE, + STATE(3188), 1, sym_heredoc_body, + STATE(3191), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(4881), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 36, + ACTIONS(4883), 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, - 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, @@ -411699,74 +414948,146 @@ 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, - [62905] = 23, + [62825] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6755), 1, - anon_sym_DOT_DOT, - ACTIONS(6757), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, + ACTIONS(6823), 1, anon_sym_DOT, - ACTIONS(6763), 1, + ACTIONS(6825), 1, anon_sym_PIPE, - ACTIONS(6765), 1, + ACTIONS(6827), 1, anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, + ACTIONS(6831), 1, anon_sym_AMP_STAR, - ACTIONS(6779), 1, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, anon_sym_QMARK, - ACTIONS(6781), 1, + ACTIONS(6859), 1, anon_sym_AMP_AMP, - ACTIONS(6783), 1, + ACTIONS(6861), 1, anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3166), 1, + STATE(3189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6829), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, + ACTIONS(6833), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, + ACTIONS(6835), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6837), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + ACTIONS(6843), 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, + [62923] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3190), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, + ACTIONS(6837), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6845), 14, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6863), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -411781,28 +415102,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [63003] = 6, + [63021] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6227), 1, - anon_sym_COLON, - STATE(3167), 1, - sym_heredoc_body, + ACTIONS(6865), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + STATE(3191), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 38, + ACTIONS(4875), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411815,15 +415136,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, @@ -411837,98 +415160,156 @@ 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, - [63067] = 25, + [63085] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, + ACTIONS(583), 1, + sym__start_of_brace_block, + STATE(3192), 1, + sym_heredoc_body, + STATE(3679), 1, + sym_do_end_block, + STATE(3680), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5717), 8, anon_sym_DOT_DOT, - ACTIONS(6797), 1, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5715), 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, - ACTIONS(6799), 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, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [63153] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, anon_sym_DOT, - ACTIONS(6803), 1, + ACTIONS(6825), 1, anon_sym_PIPE, - ACTIONS(6805), 1, + ACTIONS(6827), 1, anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6831), 1, anon_sym_AMP_STAR, - ACTIONS(6819), 1, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, anon_sym_QMARK, - ACTIONS(6821), 1, + ACTIONS(6859), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, + ACTIONS(6861), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - ACTIONS(6847), 1, - anon_sym_COMMA, - STATE(3168), 1, + STATE(3193), 1, sym_heredoc_body, - STATE(3184), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6829), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6833), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6837), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 12, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6868), 14, 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_end, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [63169] = 7, + anon_sym_when, + anon_sym_in, + [63251] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6847), 1, - anon_sym_COMMA, - STATE(3169), 1, + ACTIONS(583), 1, + sym__start_of_brace_block, + STATE(3194), 1, sym_heredoc_body, - STATE(3184), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(3681), 1, + sym_do_end_block, + STATE(3682), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -411937,9 +415318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 37, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5715), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411950,14 +415329,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, @@ -411973,17 +415350,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, - [63235] = 5, + anon_sym_when, + anon_sym_in, + [63319] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3170), 1, + ACTIONS(6870), 1, + anon_sym_COMMA, + STATE(3195), 1, sym_heredoc_body, + STATE(3211), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -411992,7 +415376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 39, + ACTIONS(5888), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -412012,9 +415396,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, anon_sym_end, anon_sym_CARET, @@ -412032,15 +415414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [63297] = 5, + [63385] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3171), 1, + STATE(3196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -412050,8 +415432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 38, - sym__start_of_brace_block, + ACTIONS(4948), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412065,12 +415446,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, @@ -412085,109 +415468,39 @@ 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, - [63359] = 25, + [63447] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, ACTIONS(6815), 1, - anon_sym_AMP_STAR, + anon_sym_STAR, + ACTIONS(6817), 1, + anon_sym_PIPE, ACTIONS(6819), 1, anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - ACTIONS(6849), 1, - anon_sym_COMMA, - STATE(3172), 1, - sym_heredoc_body, - STATE(3185), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6829), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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, - [63461] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6851), 1, - anon_sym_of, - STATE(3173), 1, + STATE(3188), 1, + aux_sym_union_type_repeat1, + STATE(3197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 38, + ACTIONS(4890), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412200,7 +415513,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, @@ -412208,6 +415520,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, @@ -412219,25 +415532,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, - [63525] = 7, + [63521] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6853), 1, - sym__string_literal_start, - STATE(3374), 1, - sym_string, + ACTIONS(6872), 1, + anon_sym_of, + STATE(3198), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3174), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -412246,7 +415553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 36, + ACTIONS(5744), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412258,12 +415566,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, @@ -412281,19 +415592,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [63591] = 6, + [63585] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6856), 1, - anon_sym_of, - STATE(3175), 1, + ACTIONS(6874), 1, + sym_regex_modifier, + STATE(3199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(6031), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -412302,7 +415611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 38, + ACTIONS(6029), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -412341,30 +415650,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [63655] = 7, + [63649] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6849), 1, - anon_sym_COMMA, - STATE(3176), 1, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3200), 1, sym_heredoc_body, - STATE(3185), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(3236), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(4970), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 37, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4972), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412375,14 +415689,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, @@ -412395,84 +415707,78 @@ 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, - [63721] = 12, + anon_sym_when, + anon_sym_in, + [63723] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - STATE(3177), 1, + STATE(3201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(5883), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 26, + anon_sym_AMP_STAR, + ACTIONS(5881), 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, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [63797] = 5, + [63785] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3178), 1, + STATE(3202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -412482,7 +415788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 38, + ACTIONS(4916), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412521,101 +415827,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [63859] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, - anon_sym_DOT_DOT, - ACTIONS(6757), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, - anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6779), 1, - anon_sym_QMARK, - ACTIONS(6781), 1, - anon_sym_AMP_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3179), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6459), 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, - [63957] = 6, + [63847] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6858), 1, + ACTIONS(6878), 1, anon_sym_LPAREN, - STATE(3180), 1, + ACTIONS(6880), 1, + anon_sym_DOT, + STATE(3203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 38, + ACTIONS(6039), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -412654,95 +415886,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [64021] = 23, + [63913] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6757), 1, + ACTIONS(6773), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6763), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6765), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6769), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6775), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6779), 1, + ACTIONS(6795), 1, anon_sym_QMARK, - ACTIONS(6781), 1, + ACTIONS(6797), 1, anon_sym_AMP_AMP, - ACTIONS(6783), 1, + ACTIONS(6799), 1, anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3181), 1, + ACTIONS(6882), 1, + anon_sym_COMMA, + STATE(3204), 1, sym_heredoc_body, + STATE(3208), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6773), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6461), 14, + ACTIONS(5750), 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_end, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [64119] = 7, + [64015] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6860), 1, - sym__string_literal_start, - STATE(3567), 1, - sym_string, + ACTIONS(6882), 1, + anon_sym_COMMA, + STATE(3205), 1, + sym_heredoc_body, + STATE(3208), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3182), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -412751,8 +415984,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 36, + ACTIONS(5750), 37, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412771,7 +416005,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, @@ -412787,95 +416020,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_else, - [64185] = 23, + [64081] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6757), 1, + ACTIONS(6773), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6763), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6765), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6769), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6775), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6779), 1, + ACTIONS(6795), 1, anon_sym_QMARK, - ACTIONS(6781), 1, + ACTIONS(6797), 1, anon_sym_AMP_AMP, - ACTIONS(6783), 1, + ACTIONS(6799), 1, anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3183), 1, + ACTIONS(6884), 1, + anon_sym_COMMA, + STATE(3206), 1, sym_heredoc_body, + STATE(3209), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6773), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6863), 14, + ACTIONS(5856), 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_end, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [64283] = 7, + [64183] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6849), 1, + ACTIONS(6884), 1, anon_sym_COMMA, - STATE(3184), 1, + STATE(3207), 1, sym_heredoc_body, - STATE(3191), 1, + STATE(3209), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -412884,7 +416120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 37, + ACTIONS(5856), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -412922,19 +416158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [64349] = 7, + [64249] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6865), 1, + ACTIONS(6884), 1, anon_sym_COMMA, - STATE(3185), 1, + STATE(3208), 1, sym_heredoc_body, - STATE(3191), 1, + STATE(3211), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -412943,7 +416179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 37, + ACTIONS(5856), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -412981,19 +416217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [64415] = 7, + [64315] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6833), 1, + ACTIONS(6886), 1, anon_sym_COMMA, - STATE(3186), 1, + STATE(3209), 1, sym_heredoc_body, - STATE(3190), 1, + STATE(3211), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -413002,7 +416238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 37, + ACTIONS(5888), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -413040,28 +416276,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [64481] = 6, + [64381] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6867), 1, - anon_sym_EQ, - STATE(3187), 1, + STATE(3210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(4950), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4952), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -413072,17 +416305,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, @@ -413096,163 +416329,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, - [64545] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, - anon_sym_DOT_DOT, - ACTIONS(6757), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, - anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6779), 1, - anon_sym_QMARK, - ACTIONS(6781), 1, - anon_sym_AMP_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3188), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6247), 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, - [64643] = 15, + [64443] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, - anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3189), 1, - sym_heredoc_body, + ACTIONS(6888), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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_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_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [64725] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6833), 1, - anon_sym_COMMA, - STATE(3190), 1, + STATE(3211), 2, sym_heredoc_body, - STATE(3191), 1, aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5870), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -413261,7 +416353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 37, + ACTIONS(5970), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -413299,29 +416391,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [64791] = 6, + [64507] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6869), 1, - anon_sym_COMMA, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_DOT, + ACTIONS(6815), 1, + anon_sym_STAR, + ACTIONS(6817), 1, + anon_sym_PIPE, + ACTIONS(6819), 1, + anon_sym_QMARK, + STATE(3188), 1, + aux_sym_union_type_repeat1, + STATE(3212), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3191), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 37, + ACTIONS(4894), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -413334,13 +416433,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_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -413352,30 +416452,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_do, - anon_sym_else, - [64855] = 5, + [64581] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3192), 1, + ACTIONS(6878), 1, + anon_sym_LPAREN, + STATE(3213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 38, + ACTIONS(6039), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -413414,26 +416512,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [64917] = 6, + [64645] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5945), 1, - anon_sym_LPAREN2, - STATE(3193), 1, + STATE(3214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 38, + ACTIONS(5987), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -413472,253 +416569,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [64981] = 23, + [64707] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, - anon_sym_DOT_DOT, - ACTIONS(6757), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, - anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6779), 1, - anon_sym_QMARK, - ACTIONS(6781), 1, - anon_sym_AMP_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3194), 1, + ACTIONS(6891), 1, + anon_sym_LPAREN, + STATE(3215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6872), 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, - [65079] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5977), 1, + ACTIONS(6065), 8, anon_sym_DOT_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, anon_sym_DOT, - ACTIONS(6763), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6769), 1, anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3195), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + anon_sym_AMP_STAR, + ACTIONS(6061), 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(6787), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5975), 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, - 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_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [65169] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, - anon_sym_DOT_DOT, - ACTIONS(6757), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, - anon_sym_PIPE, - ACTIONS(6765), 1, anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6779), 1, - anon_sym_QMARK, - ACTIONS(6781), 1, - anon_sym_AMP_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3196), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6767), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6773), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 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_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [65267] = 9, + [64771] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, - STATE(3197), 1, + STATE(3216), 1, sym_heredoc_body, - STATE(4518), 1, - sym_do_end_block, - STATE(4520), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 35, + ACTIONS(6055), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -413729,12 +416658,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, @@ -413750,95 +416682,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, - [65337] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, - anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6781), 1, - anon_sym_AMP_AMP, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3198), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - 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, - 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_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [65429] = 7, + [64833] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6833), 1, - anon_sym_COMMA, - STATE(3191), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3199), 1, + ACTIONS(6893), 1, + anon_sym_LPAREN, + STATE(3217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -413847,7 +416703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 37, + ACTIONS(5901), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -413868,6 +416724,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, @@ -413885,24 +416742,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [65495] = 5, + [64897] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3200), 1, + STATE(3218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 39, + ACTIONS(5913), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -413923,7 +416781,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -413942,32 +416799,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [65557] = 8, + [64959] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(6874), 1, - anon_sym_DASH_GT, - STATE(3201), 1, + STATE(3219), 1, sym_heredoc_body, - STATE(10195), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 35, + ACTIONS(6035), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -413986,6 +416837,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, @@ -413998,87 +416850,107 @@ 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, - [65625] = 6, + [65021] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6876), 1, - sym_regex_modifier, - STATE(3202), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5916), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6895), 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_COMMA, - 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, - [65689] = 5, + anon_sym_when, + anon_sym_in, + [65119] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3203), 1, + STATE(3221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 9, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(5170), 38, + ACTIONS(5917), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414090,13 +416962,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, @@ -414109,34 +416983,33 @@ 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, - [65751] = 5, + [65181] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3204), 1, + ACTIONS(6897), 1, + anon_sym_LPAREN2, + STATE(3222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 39, + ACTIONS(4902), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414149,15 +417022,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, @@ -414168,56 +417043,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [65813] = 10, + [65245] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - STATE(3205), 1, + STATE(3223), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(5798), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 32, + anon_sym_AMP_STAR, + ACTIONS(5796), 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, anon_sym_CARET, @@ -414229,28 +417097,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_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [65885] = 8, + [65307] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, + ACTIONS(535), 1, sym__start_of_brace_block, - STATE(3206), 1, + ACTIONS(6767), 1, + anon_sym_do, + STATE(3224), 1, sym_heredoc_body, - STATE(3647), 1, + STATE(4362), 1, sym_do_end_block, - STATE(3648), 1, + STATE(4367), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -414259,7 +417128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 36, + ACTIONS(5698), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414292,75 +417161,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, - [65953] = 25, + [65377] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6797), 1, + ACTIONS(6773), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6803), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6805), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6809), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6819), 1, + ACTIONS(6795), 1, anon_sym_QMARK, - ACTIONS(6821), 1, + ACTIONS(6797), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, + ACTIONS(6799), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, + ACTIONS(6801), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, + ACTIONS(6807), 1, sym_binary_ampersand, - ACTIONS(6833), 1, + ACTIONS(6899), 1, anon_sym_COMMA, - STATE(3199), 1, + STATE(3195), 1, aux_sym_argument_list_no_parens_repeat1, - STATE(3207), 1, + STATE(3225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 12, + ACTIONS(5856), 12, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -414373,25 +417241,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_do, anon_sym_else, - [66055] = 5, + [65479] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3208), 1, + ACTIONS(6899), 1, + anon_sym_COMMA, + STATE(3195), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 38, + ACTIONS(5856), 37, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414402,17 +417275,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, @@ -414426,21 +417298,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, - [66117] = 6, + [65545] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3209), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(6901), 1, + anon_sym_DASH_GT, + STATE(3227), 1, sym_heredoc_body, - STATE(3237), 1, - aux_sym_union_type_repeat1, + STATE(10741), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -414450,7 +417324,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 37, + ACTIONS(5022), 35, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414461,16 +417337,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_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -414484,19 +417359,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_else, - anon_sym_when, - anon_sym_in, - [66181] = 5, + anon_sym_do, + [65613] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3210), 1, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, + STATE(3228), 1, sym_heredoc_body, + STATE(4452), 1, + sym_do_end_block, + STATE(4473), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -414506,7 +417386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 38, + ACTIONS(5669), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414517,17 +417398,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, @@ -414541,62 +417421,70 @@ 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, - [66243] = 7, + [65683] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6759), 1, + ACTIONS(6823), 1, anon_sym_DOT, - STATE(3211), 1, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + STATE(3229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, - anon_sym_DOT_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6313), 38, - sym__line_break, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6171), 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, 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, @@ -414604,15 +417492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [66309] = 5, + [65773] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3212), 1, + STATE(3230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -414622,7 +417510,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 38, + ACTIONS(5951), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414633,17 +417523,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, @@ -414657,35 +417547,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_else, - anon_sym_when, - anon_sym_in, - [66371] = 8, + [65835] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1403), 1, - sym__string_literal_start, - STATE(3154), 1, - aux_sym_chained_string_repeat1, - STATE(3213), 1, + STATE(3231), 1, sym_heredoc_body, - STATE(3567), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(5925), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414720,32 +417604,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_else, - [66439] = 8, + [65897] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6878), 1, - anon_sym_DOT, - ACTIONS(6880), 1, - sym__start_of_index_operator, - STATE(3214), 1, + ACTIONS(6899), 1, + anon_sym_COMMA, + STATE(3211), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3232), 1, sym_heredoc_body, - STATE(3380), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(5860), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 37, + ACTIONS(5856), 37, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -414763,7 +417648,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, @@ -414781,31 +417665,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [66507] = 8, + [65963] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(6874), 1, - anon_sym_DASH_GT, - STATE(3215), 1, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_DOT, + ACTIONS(6815), 1, + anon_sym_STAR, + ACTIONS(6817), 1, + anon_sym_PIPE, + ACTIONS(6819), 1, + anon_sym_QMARK, + STATE(3188), 1, + aux_sym_union_type_repeat1, + STATE(3233), 1, sym_heredoc_body, - STATE(10195), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 35, + ACTIONS(4861), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -414819,13 +417707,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_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -414837,34 +417726,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_else, - [66575] = 8, + [66037] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(689), 1, - sym__string_literal_start, - STATE(3216), 1, + STATE(3234), 1, sym_heredoc_body, - STATE(3232), 1, - aux_sym_chained_string_repeat1, - STATE(3538), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(5806), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -414879,6 +417761,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, @@ -414901,17 +417784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [66643] = 6, + anon_sym_else, + [66099] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6882), 1, + ACTIONS(6905), 1, anon_sym_of, - STATE(3217), 1, + STATE(3235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -414920,7 +417804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 38, + ACTIONS(5826), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -414959,175 +417843,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [66707] = 21, + [66163] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, + ACTIONS(6876), 1, anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6781), 1, - anon_sym_AMP_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3218), 1, + STATE(3236), 1, sym_heredoc_body, + STATE(3238), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(4881), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + anon_sym_AMP_STAR, + ACTIONS(4883), 37, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 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_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [66801] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, - anon_sym_DOT_DOT, - ACTIONS(6757), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, - anon_sym_PIPE, - ACTIONS(6765), 1, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6779), 1, - anon_sym_QMARK, - ACTIONS(6781), 1, - anon_sym_AMP_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3219), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6767), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6773), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6785), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6787), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6884), 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_else, anon_sym_when, anon_sym_in, - [66899] = 6, + [66229] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - STATE(3220), 1, + ACTIONS(1403), 1, + sym__string_literal_start, + STATE(3237), 1, sym_heredoc_body, + STATE(3303), 1, + aux_sym_chained_string_repeat1, + STATE(3723), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 37, + ACTIONS(5686), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -415141,17 +417939,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, @@ -415165,28 +417961,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [66963] = 6, + anon_sym_else, + [66297] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6888), 1, - sym_regex_modifier, - STATE(3221), 1, - sym_heredoc_body, + ACTIONS(6907), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + STATE(3238), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4875), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415197,17 +417993,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, @@ -415221,31 +418016,32 @@ 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, - [67027] = 7, + anon_sym_when, + anon_sym_in, + [66361] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6890), 1, - anon_sym_PIPE, - STATE(3222), 1, + ACTIONS(6910), 1, + sym_regex_modifier, + STATE(3239), 1, sym_heredoc_body, - STATE(3223), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 37, + ACTIONS(5832), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415258,17 +418054,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, @@ -415282,28 +418076,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [67093] = 6, + anon_sym_do, + anon_sym_else, + [66425] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6892), 1, - anon_sym_PIPE, + ACTIONS(6059), 1, + anon_sym_LPAREN2, + STATE(3240), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3223), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 37, + ACTIONS(173), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415316,17 +418112,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, @@ -415340,28 +418134,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [67157] = 7, + anon_sym_do, + anon_sym_else, + [66489] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - STATE(3224), 1, + STATE(3241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(6011), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 38, + ACTIONS(6009), 38, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -415373,13 +418169,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, anon_sym_CARET, @@ -415395,109 +418191,114 @@ 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, - [67223] = 21, + [66551] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, + ACTIONS(6769), 1, + anon_sym_COMMA, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6763), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6765), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6769), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6775), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6781), 1, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, anon_sym_AMP_AMP, - ACTIONS(6783), 1, + ACTIONS(6799), 1, anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3225), 1, + STATE(3242), 1, sym_heredoc_body, + STATE(3321), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6773), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 16, + ACTIONS(5750), 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_QMARK, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [67317] = 9, + [66653] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, - STATE(3226), 1, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3236), 1, + aux_sym_union_type_repeat1, + STATE(3243), 1, sym_heredoc_body, - STATE(4360), 1, - sym_do_end_block, - STATE(4362), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 35, + ACTIONS(4890), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415526,240 +418327,204 @@ 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, - [67387] = 9, + [66727] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, - STATE(3227), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3244), 1, sym_heredoc_body, - STATE(4360), 1, - sym_do_end_block, - STATE(4362), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5710), 35, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 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, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(6853), 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(6361), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [67457] = 11, + [66821] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6890), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - STATE(3222), 1, - aux_sym_union_type_repeat1, - STATE(3228), 1, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, - anon_sym_DOT_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4861), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 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, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(6853), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - [67531] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6890), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - STATE(3222), 1, - aux_sym_union_type_repeat1, - STATE(3229), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4888), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4890), 34, + ACTIONS(6518), 16, 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, + 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, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_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, - [67605] = 5, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [66915] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3230), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + STATE(3246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6837), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4964), 38, - sym__start_of_index_operator, + ACTIONS(6125), 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, @@ -415769,44 +418534,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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [67667] = 11, + [66987] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6890), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - STATE(3222), 1, - aux_sym_union_type_repeat1, - STATE(3231), 1, + STATE(3247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(5820), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 34, + ACTIONS(5818), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415819,6 +418574,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, @@ -415826,7 +418582,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, @@ -415838,34 +418593,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, - [67741] = 8, + anon_sym_do, + anon_sym_else, + [67049] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(689), 1, - sym__string_literal_start, - STATE(3232), 1, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3236), 1, + aux_sym_union_type_repeat1, + STATE(3248), 1, sym_heredoc_body, - STATE(3257), 1, - aux_sym_chained_string_repeat1, - STATE(3538), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4894), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415876,14 +418637,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, @@ -415896,54 +418655,54 @@ 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, - [67809] = 8, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [67123] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(6903), 1, - anon_sym_DASH_GT, - STATE(3233), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + STATE(3249), 1, sym_heredoc_body, - STATE(10677), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 35, + ACTIONS(6129), 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, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -415955,30 +418714,37 @@ 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, - [67877] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [67191] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3234), 1, + ACTIONS(583), 1, + sym__start_of_brace_block, + STATE(3250), 1, sym_heredoc_body, + STATE(3659), 1, + sym_do_end_block, + STATE(3660), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 38, + ACTIONS(5698), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415992,14 +418758,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, @@ -416014,31 +418777,29 @@ 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, - [67939] = 7, + [67259] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6905), 1, - anon_sym_COMMA, - STATE(3191), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3235), 1, + STATE(3251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 37, + ACTIONS(6047), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -416059,6 +418820,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, @@ -416076,36 +418838,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [68005] = 11, + [67321] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6890), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - STATE(3222), 1, - aux_sym_union_type_repeat1, - STATE(3236), 1, + STATE(3252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(6071), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 34, + ACTIONS(6069), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416118,6 +418871,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, @@ -416125,7 +418879,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, @@ -416137,30 +418890,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, - [68079] = 7, + anon_sym_do, + anon_sym_else, + [67383] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6751), 1, - anon_sym_PIPE, - STATE(3237), 1, + ACTIONS(6912), 1, + anon_sym_EQ, + STATE(3253), 1, sym_heredoc_body, - STATE(3238), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 37, + ACTIONS(5937), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416171,16 +418927,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, @@ -416194,31 +418951,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_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [68145] = 6, + [67447] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3238), 2, + ACTIONS(6457), 1, + anon_sym_COLON, + STATE(3254), 1, sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 37, + ACTIONS(173), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416229,16 +418985,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, @@ -416252,102 +419009,109 @@ 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, - [68209] = 11, + [67511] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - ACTIONS(6751), 1, + ACTIONS(6825), 1, anon_sym_PIPE, - STATE(3237), 1, - aux_sym_union_type_repeat1, - STATE(3239), 1, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, - anon_sym_DOT_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4890), 34, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 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, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(6853), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + ACTIONS(6095), 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, - [68283] = 11, + [67609] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - ACTIONS(6751), 1, - anon_sym_PIPE, - STATE(3237), 1, - aux_sym_union_type_repeat1, - STATE(3240), 1, + ACTIONS(583), 1, + sym__start_of_brace_block, + ACTIONS(6763), 1, + anon_sym_do, + STATE(3256), 1, sym_heredoc_body, + STATE(3462), 1, + sym_do_end_block, + STATE(3487), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(5731), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 34, + ACTIONS(5729), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416376,43 +419140,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_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [68357] = 11, + [67679] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6890), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - STATE(3222), 1, - aux_sym_union_type_repeat1, - STATE(3241), 1, + STATE(3257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(6303), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 34, + ACTIONS(6301), 38, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -416425,13 +419181,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, @@ -416443,19 +419199,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, - [68431] = 6, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [67745] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6910), 1, - sym_regex_modifier, - STATE(3242), 1, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, + STATE(3258), 1, sym_heredoc_body, + STATE(4426), 1, + sym_do_end_block, + STATE(4427), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -416464,9 +419231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5694), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416477,15 +419242,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, @@ -416501,65 +419263,71 @@ 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, - [68495] = 21, + anon_sym_when, + anon_sym_in, + [67815] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(6657), 1, + ACTIONS(6604), 1, sym__start_of_index_operator, - ACTIONS(6759), 1, + ACTIONS(6823), 1, anon_sym_DOT, - ACTIONS(6763), 1, + ACTIONS(6825), 1, anon_sym_PIPE, - ACTIONS(6765), 1, + ACTIONS(6827), 1, anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, + ACTIONS(6831), 1, anon_sym_AMP_STAR, - ACTIONS(6781), 1, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, anon_sym_AMP_AMP, - ACTIONS(6783), 1, + ACTIONS(6861), 1, anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3243), 1, + STATE(3259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6829), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, + ACTIONS(6833), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, + ACTIONS(6837), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 16, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6373), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -416569,53 +419337,55 @@ 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, - [68589] = 5, + [67913] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3244), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + STATE(3260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 38, - sym__start_of_index_operator, + ACTIONS(6133), 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, @@ -416625,23 +419395,103 @@ 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, - [68651] = 5, + [67981] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3245), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + ACTIONS(6914), 1, + anon_sym_COMMA, + STATE(3261), 1, + sym_heredoc_body, + STATE(3266), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6805), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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, + [68083] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6914), 1, + anon_sym_COMMA, + STATE(3262), 1, sym_heredoc_body, + STATE(3266), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 9, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -416650,8 +419500,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(5162), 38, + ACTIONS(5750), 37, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416663,13 +419513,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, @@ -416682,96 +419533,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [68713] = 21, + [68149] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6763), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6765), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6769), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6775), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6781), 1, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, anon_sym_AMP_AMP, - ACTIONS(6783), 1, + ACTIONS(6799), 1, anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3246), 1, + ACTIONS(6916), 1, + anon_sym_COMMA, + STATE(3263), 1, sym_heredoc_body, + STATE(3267), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6773), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 16, + ACTIONS(5856), 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_QMARK, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [68807] = 7, + [68251] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6833), 1, + ACTIONS(6916), 1, anon_sym_COMMA, - STATE(3199), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3247), 1, + STATE(3264), 1, sym_heredoc_body, + STATE(3267), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, @@ -416784,7 +419636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 37, + ACTIONS(5856), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -416822,25 +419674,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [68873] = 5, + [68317] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3248), 1, + STATE(3265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 38, + ACTIONS(4622), 39, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416851,17 +419704,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_LPAREN, 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, @@ -416875,21 +419729,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, - [68935] = 6, + [68379] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6912), 1, - anon_sym_of, - STATE(3249), 1, + ACTIONS(6916), 1, + anon_sym_COMMA, + STATE(3211), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3266), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -416898,7 +419752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 38, + ACTIONS(5856), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -416919,7 +419773,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, @@ -416937,28 +419790,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [68999] = 6, + [68445] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3222), 1, - aux_sym_union_type_repeat1, - STATE(3250), 1, + ACTIONS(6918), 1, + anon_sym_COMMA, + STATE(3211), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 37, + ACTIONS(5888), 37, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416971,17 +419826,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, @@ -416995,17 +419847,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69063] = 6, + anon_sym_do, + anon_sym_else, + [68511] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6914), 1, - sym_regex_modifier, - STATE(3251), 1, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, + STATE(3268), 1, sym_heredoc_body, + STATE(4428), 1, + sym_do_end_block, + STATE(4430), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -417014,9 +419874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5694), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -417027,15 +419885,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, @@ -417051,19 +419906,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, - [69127] = 6, + anon_sym_when, + anon_sym_in, + [68581] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6916), 1, - anon_sym_of, - STATE(3252), 1, + STATE(3269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(5164), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -417072,8 +419927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 38, - sym__line_break, + anon_sym_COLON2, + ACTIONS(5166), 38, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417085,15 +419940,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, @@ -417106,30 +419959,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [69191] = 5, + anon_sym_when, + anon_sym_in, + [68643] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3253), 1, + STATE(3270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(5816), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 38, + ACTIONS(5814), 39, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -417140,17 +419997,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, + sym__string_literal_start, + 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, @@ -417164,29 +420022,37 @@ 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, - [69253] = 5, + [68705] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3254), 1, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3236), 1, + aux_sym_union_type_repeat1, + STATE(3271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 38, + ACTIONS(4898), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -417200,14 +420066,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, @@ -417218,114 +420081,98 @@ 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, - [69315] = 23, + [68779] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6755), 1, - anon_sym_DOT_DOT, - ACTIONS(6757), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6759), 1, - anon_sym_DOT, - ACTIONS(6763), 1, - anon_sym_PIPE, - ACTIONS(6765), 1, - anon_sym_CARET, - ACTIONS(6769), 1, - anon_sym_EQ_EQ, - ACTIONS(6775), 1, - anon_sym_AMP_STAR, - ACTIONS(6779), 1, - anon_sym_QMARK, - ACTIONS(6781), 1, - anon_sym_AMP_AMP, - ACTIONS(6783), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6789), 1, - sym_binary_ampersand, - STATE(3255), 1, + STATE(3236), 1, + aux_sym_union_type_repeat1, + STATE(3272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6767), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6761), 3, + ACTIONS(4873), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6771), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6785), 4, + anon_sym_AMP_STAR, + ACTIONS(4875), 37, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6787), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6205), 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_end, - anon_sym_elsif, + 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, - [69413] = 9, + [68843] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, + ACTIONS(713), 1, sym__start_of_brace_block, - ACTIONS(6841), 1, + ACTIONS(6920), 1, anon_sym_do, - STATE(3256), 1, + STATE(3273), 1, sym_heredoc_body, - STATE(3779), 1, + STATE(3761), 1, sym_do_end_block, - STATE(3780), 1, + STATE(3762), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 35, + ACTIONS(5669), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -417336,12 +420183,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, @@ -417357,24 +420206,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_else, - anon_sym_when, - anon_sym_in, - [69483] = 7, + [68913] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6918), 1, - sym__string_literal_start, - STATE(3538), 1, - sym_string, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, + STATE(3274), 1, + sym_heredoc_body, + STATE(4439), 1, + sym_do_end_block, + STATE(4442), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3257), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -417383,9 +420231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5715), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -417396,14 +420242,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, @@ -417419,28 +420263,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [69549] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [68983] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6921), 1, - anon_sym_LPAREN, - ACTIONS(6923), 1, - anon_sym_DOT, - STATE(3258), 1, + STATE(3275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(6023), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 38, + ACTIONS(6021), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -417479,105 +420324,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [69615] = 25, + [69045] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, + ACTIONS(6255), 1, anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, anon_sym_DOT, - ACTIONS(6803), 1, + ACTIONS(6825), 1, anon_sym_PIPE, - ACTIONS(6805), 1, + ACTIONS(6827), 1, anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6831), 1, anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6859), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, + ACTIONS(6861), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - ACTIONS(6925), 1, - anon_sym_COMMA, - STATE(3235), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3259), 1, + STATE(3276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6829), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6833), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6837), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 12, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6253), 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_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_do, + anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, - [69717] = 7, + anon_sym_when, + anon_sym_in, + [69139] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6925), 1, - anon_sym_COMMA, - STATE(3235), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3260), 1, + STATE(3277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 37, + ACTIONS(6013), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -417598,6 +420436,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, @@ -417615,17 +420454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [69783] = 6, + [69201] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6921), 1, - anon_sym_LPAREN, - STATE(3261), 1, + STATE(3278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -417634,7 +420471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 38, + ACTIONS(4618), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -417655,6 +420492,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -417673,26 +420511,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [69847] = 6, + [69263] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6927), 1, - anon_sym_LPAREN, - STATE(3262), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + STATE(3279), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6835), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6837), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 26, + sym__line_break, + 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_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_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [69339] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 38, + ACTIONS(5947), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -417731,31 +420632,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [69911] = 7, + [69401] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6925), 1, - anon_sym_COMMA, - STATE(3191), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3263), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + STATE(3281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 37, + ACTIONS(6305), 38, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -417767,12 +420665,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, @@ -417788,17 +420687,92 @@ 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, - [69977] = 5, + anon_sym_when, + anon_sym_in, + [69467] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3264), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6835), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6837), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6141), 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, + [69561] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3283), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -417808,7 +420782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 38, + ACTIONS(4976), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -417847,10 +420821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [70039] = 5, + [69623] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3265), 1, + STATE(3284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -417904,15 +420878,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [70101] = 5, + [69685] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3266), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6835), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6837), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6922), 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, + [69783] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3286), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -417922,7 +420971,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 38, + ACTIONS(5987), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -417933,17 +420984,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, @@ -417957,52 +421008,48 @@ 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, - [70163] = 8, + [69845] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6657), 1, - sym__start_of_index_operator, - ACTIONS(6759), 1, - anon_sym_DOT, - STATE(3267), 1, + STATE(3287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6777), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(5020), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 36, + ACTIONS(5022), 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, @@ -418014,42 +421061,38 @@ 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, - [70231] = 11, + [69907] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6715), 1, - anon_sym_LBRACK, - ACTIONS(6717), 1, - anon_sym_DOT, - ACTIONS(6719), 1, - anon_sym_STAR, - ACTIONS(6721), 1, - anon_sym_QMARK, - ACTIONS(6751), 1, - anon_sym_PIPE, - STATE(3237), 1, - aux_sym_union_type_repeat1, - STATE(3268), 1, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, + STATE(3288), 1, sym_heredoc_body, + STATE(4450), 1, + sym_do_end_block, + STATE(4451), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, + ACTIONS(5717), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 34, + ACTIONS(5715), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418078,94 +421121,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_else, anon_sym_when, anon_sym_in, - [70305] = 5, + [69977] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3269), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4938), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4940), 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, + ACTIONS(5650), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(6809), 1, 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, - [70367] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(559), 1, - sym__string_literal_start, - STATE(3158), 1, - aux_sym_chained_string_repeat1, - STATE(3270), 1, + STATE(3289), 1, sym_heredoc_body, - STATE(3374), 1, - sym_string, + STATE(10157), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, - sym__start_of_brace_block, + ACTIONS(5022), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418176,12 +421164,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, @@ -418197,19 +421187,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, - [70435] = 5, + [70045] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3271), 1, + STATE(3290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -418219,8 +421206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 37, + ACTIONS(5810), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418233,17 +421221,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, @@ -418257,15 +421243,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70496] = 5, + anon_sym_do, + anon_sym_else, + [70107] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3272), 1, - sym_heredoc_body, + ACTIONS(6924), 1, + sym__string_literal_start, + STATE(3374), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + STATE(3291), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -418274,8 +421267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 38, - sym__line_break, + ACTIONS(5660), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418287,15 +421279,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, @@ -418313,71 +421302,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [70557] = 5, + anon_sym_when, + anon_sym_in, + [70173] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3273), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + ACTIONS(6927), 1, + anon_sym_COMMA, + STATE(3232), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6071), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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, - [70618] = 5, + [70275] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3274), 1, + ACTIONS(6927), 1, + anon_sym_COMMA, + STATE(3232), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -418386,7 +421402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 38, + ACTIONS(5750), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -418407,7 +421423,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, @@ -418425,15 +421440,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [70679] = 5, + [70341] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3275), 1, + ACTIONS(689), 1, + sym__string_literal_start, + STATE(3294), 1, sym_heredoc_body, + STATE(3313), 1, + aux_sym_chained_string_repeat1, + STATE(3888), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -418442,7 +421463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 38, + ACTIONS(173), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -418457,7 +421478,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, @@ -418480,25 +421500,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [70740] = 5, + [70409] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3276), 1, + STATE(3295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(5945), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 38, + ACTIONS(5943), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -418537,80 +421557,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [70801] = 5, + [70471] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3277), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6083), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6459), 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_COMMA, - 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, - [70862] = 5, + anon_sym_when, + anon_sym_in, + [70569] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3278), 1, + STATE(3297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 38, + ACTIONS(5991), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -418649,15 +421689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [70923] = 5, + [70631] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3279), 1, + ACTIONS(6769), 1, + anon_sym_COMMA, + STATE(3211), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -418666,7 +421710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 38, + ACTIONS(5888), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -418687,7 +421731,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, @@ -418705,24 +421748,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [70984] = 5, + [70697] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3280), 1, + STATE(3299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(5968), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 38, + ACTIONS(5966), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -418761,26 +421805,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71045] = 5, + [70759] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3281), 1, + STATE(3300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4968), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418791,17 +421834,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, @@ -418815,17 +421858,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_COLON2, anon_sym_else, - [71106] = 5, + anon_sym_when, + anon_sym_in, + [70821] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3282), 1, + ACTIONS(6769), 1, + anon_sym_COMMA, + STATE(3301), 1, sym_heredoc_body, + STATE(3321), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -418834,7 +421883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 38, + ACTIONS(5750), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -418855,7 +421904,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, @@ -418873,33 +421921,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71167] = 9, + [70887] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - STATE(3283), 1, + STATE(3302), 1, sym_heredoc_body, - STATE(4815), 1, - sym_do_end_block, - STATE(4816), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 34, + ACTIONS(5669), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418912,6 +421954,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, @@ -418933,15 +421976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [71236] = 5, + anon_sym_do, + anon_sym_else, + [70949] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3284), 1, - sym_heredoc_body, + ACTIONS(6929), 1, + sym__string_literal_start, + STATE(3723), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + STATE(3303), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -418950,9 +422000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 38, + ACTIONS(5660), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418987,17 +422036,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, - [71297] = 5, + [71015] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3285), 1, - sym_heredoc_body, + ACTIONS(6932), 1, + sym__string_literal_start, + STATE(3888), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + STATE(3304), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -419006,7 +422059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 38, + ACTIONS(5660), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -419021,7 +422074,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, @@ -419044,72 +422096,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [71358] = 5, + [71081] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3286), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5719), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6491), 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_COMMA, - 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, - [71419] = 5, + anon_sym_when, + anon_sym_in, + [71179] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3287), 1, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, + STATE(3306), 1, sym_heredoc_body, + STATE(4033), 1, + sym_do_end_block, + STATE(4034), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -419118,9 +422196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5729), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -419131,15 +422207,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, @@ -419155,28 +422228,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, - [71480] = 5, + anon_sym_when, + anon_sym_in, + [71249] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3288), 1, + ACTIONS(6734), 1, + anon_sym_LBRACK, + ACTIONS(6736), 1, + anon_sym_DOT, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3236), 1, + aux_sym_union_type_repeat1, + STATE(3307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(4922), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4924), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -419187,15 +422271,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, @@ -419208,56 +422289,57 @@ 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, - [71541] = 9, + anon_sym_when, + anon_sym_in, + [71323] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - STATE(3289), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + STATE(3308), 1, sym_heredoc_body, - STATE(4817), 1, - sym_do_end_block, - STATE(4818), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6835), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6837), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 34, + ACTIONS(6163), 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__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, @@ -419269,30 +422351,32 @@ 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, - [71610] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [71397] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3290), 1, + STATE(3309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4944), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -419303,17 +422387,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, @@ -419327,95 +422411,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_COLON2, anon_sym_else, - [71671] = 9, + anon_sym_when, + anon_sym_in, + [71459] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - STATE(3291), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + STATE(3310), 1, sym_heredoc_body, - STATE(4819), 1, - sym_do_end_block, - STATE(4820), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5719), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6145), 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, + 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, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [71740] = 9, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [71545] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - STATE(3292), 1, + STATE(3311), 1, sym_heredoc_body, - STATE(4821), 1, - sym_do_end_block, - STATE(4822), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 34, - sym__line_break, + ACTIONS(4928), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -419426,16 +422513,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, @@ -419449,24 +422537,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [71809] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [71607] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3293), 1, + STATE(3312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 38, + ACTIONS(6025), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -419505,15 +422598,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71870] = 5, + [71669] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3294), 1, + ACTIONS(689), 1, + sym__string_literal_start, + STATE(3304), 1, + aux_sym_chained_string_repeat1, + STATE(3313), 1, sym_heredoc_body, + STATE(3888), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -419522,7 +422621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 38, + ACTIONS(5686), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -419537,7 +422636,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, @@ -419560,18 +422658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [71931] = 6, + [71737] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6177), 1, - anon_sym_LPAREN2, - STATE(3295), 1, + ACTIONS(6935), 1, + anon_sym_of, + STATE(3314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -419580,7 +422677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 37, + ACTIONS(5844), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419592,12 +422690,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, @@ -419613,31 +422714,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, - [71994] = 5, + [71801] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3296), 1, + STATE(3315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4956), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -419648,17 +422745,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, @@ -419672,17 +422769,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, - [72055] = 5, + anon_sym_when, + anon_sym_in, + [71863] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3297), 1, + ACTIONS(6937), 1, + anon_sym_of, + STATE(3316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -419691,7 +422792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 38, + ACTIONS(5960), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -419730,15 +422831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72116] = 5, + [71927] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3298), 1, + ACTIONS(6939), 1, + anon_sym_of, + STATE(3317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -419747,7 +422850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 38, + ACTIONS(5981), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -419786,15 +422889,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72177] = 5, + [71991] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3299), 1, + ACTIONS(6769), 1, + anon_sym_COMMA, + STATE(3298), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -419803,7 +422910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 38, + ACTIONS(5856), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -419824,7 +422931,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, @@ -419842,96 +422948,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72238] = 21, + [72057] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3300), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6829), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6107), 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, - [72331] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3301), 1, + STATE(3319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(5923), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 38, + ACTIONS(5921), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -419970,26 +423005,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72392] = 5, + [72119] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3302), 1, + STATE(3320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4960), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -420000,17 +423034,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, @@ -420024,17 +423058,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_COLON2, anon_sym_else, - [72453] = 5, + anon_sym_when, + anon_sym_in, + [72181] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3303), 1, + ACTIONS(6769), 1, + anon_sym_COMMA, + STATE(3211), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -420043,7 +423083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 38, + ACTIONS(5856), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -420064,7 +423104,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, @@ -420082,29 +423121,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72514] = 6, + [72247] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6931), 1, - anon_sym_COLON_COLON, + ACTIONS(559), 1, + sym__string_literal_start, + STATE(3171), 1, + aux_sym_chained_string_repeat1, + STATE(3322), 1, + sym_heredoc_body, + STATE(3374), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3304), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 35, - sym__line_break, + ACTIONS(173), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420117,12 +423157,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, @@ -420133,77 +423174,103 @@ 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, - [72577] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [72315] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3305), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + ACTIONS(6861), 1, + anon_sym_PIPE_PIPE, + STATE(3323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6111), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6083), 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_COMMA, - 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, - [72638] = 5, + anon_sym_when, + anon_sym_in, + [72413] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3306), 1, + ACTIONS(1403), 1, + sym__string_literal_start, + STATE(3237), 1, + aux_sym_chained_string_repeat1, + STATE(3324), 1, sym_heredoc_body, + STATE(3723), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -420212,9 +423279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 38, + ACTIONS(173), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -420249,17 +423315,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_else, - [72699] = 5, + [72481] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3307), 1, + ACTIONS(6941), 1, + sym_regex_modifier, + STATE(3325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -420268,7 +423335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 38, + ACTIONS(5995), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -420307,19 +423374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72760] = 7, + [72545] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6934), 1, - anon_sym_COLON_COLON, - STATE(3304), 1, - aux_sym_constant_repeat1, - STATE(3308), 1, + STATE(3326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -420329,9 +423392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 35, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4932), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -420343,11 +423404,15 @@ 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_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, + anon_sym_end, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -420359,30 +423424,32 @@ 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, - [72825] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [72607] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3309), 1, + STATE(3327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 38, + ACTIONS(5850), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -420421,209 +423488,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72886] = 5, + [72669] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3310), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6825), 1, + anon_sym_PIPE, + ACTIONS(6827), 1, + anon_sym_CARET, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6859), 1, + anon_sym_AMP_AMP, + STATE(3328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6125), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6175), 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, - 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, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [72947] = 21, + anon_sym_when, + anon_sym_in, + [72761] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, anon_sym_DOT, - ACTIONS(6803), 1, + ACTIONS(6825), 1, anon_sym_PIPE, - ACTIONS(6805), 1, + ACTIONS(6827), 1, anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6831), 1, anon_sym_AMP_STAR, - ACTIONS(6821), 1, + ACTIONS(6839), 1, + sym_binary_ampersand, + ACTIONS(6845), 1, + anon_sym_DOT_DOT, + ACTIONS(6847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6851), 1, + anon_sym_EQ_EQ, + ACTIONS(6857), 1, + anon_sym_QMARK, + ACTIONS(6859), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, + ACTIONS(6861), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3311), 1, + STATE(3329), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6829), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6833), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6855), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6849), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6837), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 15, + ACTIONS(6853), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6085), 14, 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_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_QMARK, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [73040] = 5, + anon_sym_when, + anon_sym_in, + [72859] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3312), 1, + ACTIONS(6604), 1, + sym__start_of_index_operator, + ACTIONS(6823), 1, + anon_sym_DOT, + ACTIONS(6831), 1, + anon_sym_AMP_STAR, + ACTIONS(6839), 1, + sym_binary_ampersand, + STATE(3330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5791), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6829), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6833), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6835), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6837), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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, - 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, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [73101] = 5, + anon_sym_when, + anon_sym_in, + [72937] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3313), 1, + STATE(3331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(4859), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 38, - sym__line_break, + ACTIONS(4861), 38, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420635,16 +423730,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, @@ -420659,28 +423752,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, - [73162] = 5, + anon_sym_when, + anon_sym_in, + [72999] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3314), 1, + STATE(3188), 1, + aux_sym_union_type_repeat1, + STATE(3332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 38, + ACTIONS(4875), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -420693,15 +423791,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, @@ -420715,17 +423815,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, - [73223] = 5, + [73063] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3315), 1, + STATE(3333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -420734,7 +423832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 38, + ACTIONS(6497), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -420773,15 +423871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [73284] = 5, + [73124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3316), 1, + STATE(3334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -420790,7 +423888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 38, + ACTIONS(6191), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -420829,17 +423927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [73345] = 6, + [73185] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6936), 1, - sym_regex_modifier, - STATE(3317), 1, + STATE(3335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -420848,7 +423944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 37, + ACTIONS(5729), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420860,12 +423957,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, @@ -420881,76 +423981,165 @@ 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, - [73408] = 5, + [73246] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3318), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6348), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6227), 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, + [73343] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3337), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6787), 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(6803), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6805), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6261), 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, - [73469] = 5, + [73440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3319), 1, + STATE(3338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -420959,7 +424148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 38, + ACTIONS(6195), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -420998,15 +424187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [73530] = 5, + [73501] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3320), 1, + STATE(3339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421015,7 +424204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 38, + ACTIONS(6469), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -421054,15 +424243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [73591] = 5, + [73562] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3321), 1, + STATE(3340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421071,8 +424260,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 38, + ACTIONS(6445), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -421090,7 +424280,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, @@ -421105,20 +424294,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, - [73652] = 5, + [73623] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3322), 1, + STATE(3341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421127,7 +424316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 38, + ACTIONS(6485), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -421166,72 +424355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [73713] = 6, + [73684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6938), 1, - sym_regex_modifier, - STATE(3323), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5928), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5926), 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, - [73776] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3324), 1, + STATE(3342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421240,9 +424372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 38, + ACTIONS(5170), 38, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -421260,6 +424391,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, @@ -421274,78 +424406,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, - [73837] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6940), 1, - anon_sym_LPAREN, - ACTIONS(6942), 1, - anon_sym_DOT, - STATE(3325), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5890), 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(5886), 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, - [73902] = 5, + [73745] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3326), 1, + STATE(3343), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421354,7 +424428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 38, + ACTIONS(6199), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -421393,15 +424467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [73963] = 5, + [73806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3327), 1, + STATE(3344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421410,7 +424484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 38, + ACTIONS(6514), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -421449,17 +424523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74024] = 6, + [73867] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6940), 1, - anon_sym_LPAREN, - STATE(3328), 1, + STATE(3345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421468,7 +424540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 37, + ACTIONS(5719), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421480,12 +424553,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, @@ -421501,20 +424577,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, - [74087] = 5, + [73928] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3329), 1, + STATE(3346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421523,7 +424596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 38, + ACTIONS(6203), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -421562,143 +424635,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74148] = 9, + [73989] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - STATE(3330), 1, - sym_heredoc_body, - STATE(4629), 1, - sym_do_end_block, - STATE(4631), 1, - sym_brace_block, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5712), 8, + ACTIONS(6520), 1, anon_sym_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(6779), 1, anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(5710), 34, - sym__line_break, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 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(6807), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__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, + STATE(3347), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6793), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [74217] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3331), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6463), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6461), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6518), 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_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, - [74278] = 5, + [74082] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3332), 1, + ACTIONS(6943), 1, + anon_sym_DOT, + ACTIONS(6945), 1, + anon_sym_EQ, + ACTIONS(6947), 1, + sym__start_of_index_operator, + STATE(3348), 1, sym_heredoc_body, + STATE(3745), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 38, + ACTIONS(5719), 35, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -421710,7 +424745,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, @@ -421733,18 +424767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [74339] = 6, + [74151] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6944), 1, - anon_sym_LPAREN, - STATE(3333), 1, + STATE(3349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6209), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421753,7 +424784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 37, + ACTIONS(6207), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421765,12 +424797,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, @@ -421786,29 +424821,31 @@ 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, - [74402] = 5, + [74212] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3334), 1, + ACTIONS(6949), 1, + anon_sym_COLON_COLON, + STATE(3350), 1, sym_heredoc_body, + STATE(3508), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 38, + ACTIONS(4853), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -421821,17 +424858,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, @@ -421842,20 +424875,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_else, - [74463] = 5, + anon_sym_then, + [74277] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3335), 1, + STATE(3351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421864,7 +424898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 38, + ACTIONS(5832), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -421903,15 +424937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74524] = 5, + [74338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3336), 1, + STATE(3352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421920,7 +424954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 38, + ACTIONS(173), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -421959,15 +424993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74585] = 5, + [74399] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3337), 1, + STATE(3353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -421976,7 +425010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 38, + ACTIONS(6211), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422015,15 +425049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74646] = 5, + [74460] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3338), 1, + STATE(3354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6289), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422032,7 +425066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 38, + ACTIONS(6287), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422071,15 +425105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74707] = 5, + [74521] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3339), 1, + STATE(3355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422088,7 +425122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 38, + ACTIONS(6075), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422127,89 +425161,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74768] = 23, + [74582] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, + ACTIONS(6951), 1, + sym_regex_modifier, + STATE(3356), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6031), 8, anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, anon_sym_DOT, - ACTIONS(6803), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, + ACTIONS(6029), 37, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6831), 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(3340), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6807), 2, + 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(6813), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 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, + [74645] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3357), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6217), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(6215), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6309), 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, - [74865] = 5, + [74706] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3341), 1, + STATE(3358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422218,7 +425291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 38, + ACTIONS(6219), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422257,15 +425330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74926] = 5, + [74767] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3342), 1, + STATE(3359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422274,7 +425347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 38, + ACTIONS(6529), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422313,89 +425386,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74987] = 23, + [74828] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6953), 1, + anon_sym_LPAREN, + ACTIONS(6955), 1, anon_sym_DOT, - ACTIONS(6803), 1, + STATE(3360), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6043), 7, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, + ACTIONS(6039), 37, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6831), 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(3343), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6807), 2, + 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(6813), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 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, + [74893] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3361), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6225), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(6223), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6311), 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, - [75084] = 5, + [74954] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3344), 1, + STATE(3362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(6535), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422404,7 +425517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 38, + ACTIONS(6533), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422443,21 +425556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [75145] = 8, + [75015] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - STATE(3345), 1, + STATE(3363), 1, sym_heredoc_body, - STATE(4002), 1, - sym_do_end_block, - STATE(4003), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422466,8 +425573,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 35, + ACTIONS(6237), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422480,6 +425588,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, @@ -422502,26 +425611,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_else, + [75076] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6953), 1, + anon_sym_LPAREN, + STATE(3364), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6043), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6039), 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, + [75139] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_DOT, + ACTIONS(6815), 1, + anon_sym_STAR, + ACTIONS(6819), 1, + anon_sym_QMARK, + ACTIONS(6957), 1, + anon_sym_PIPE, + STATE(3365), 1, + sym_heredoc_body, + STATE(3510), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4922), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4924), 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_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, [75212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3346), 1, + STATE(3366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 38, + ACTIONS(4928), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422534,15 +425763,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, @@ -422556,17 +425787,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, [75273] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3347), 1, + STATE(3367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422575,7 +425804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 38, + ACTIONS(6079), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422617,23 +425846,23 @@ static const uint16_t ts_small_parse_table[] = { [75334] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3348), 1, + STATE(3368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 38, + ACTIONS(4932), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422646,15 +425875,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, @@ -422668,28 +425899,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_else, [75395] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3349), 1, + STATE(3369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 38, + ACTIONS(4936), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422702,15 +425931,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, @@ -422724,17 +425955,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, [75456] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3350), 1, + STATE(3370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422743,7 +425972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 38, + ACTIONS(6537), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422785,12 +426014,12 @@ static const uint16_t ts_small_parse_table[] = { [75517] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3351), 1, + STATE(3371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422799,7 +426028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 38, + ACTIONS(5838), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422838,26 +426067,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [75578] = 5, + [75578] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3352), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6805), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5970), 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, + [75675] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3373), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 38, + ACTIONS(4956), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422870,15 +426173,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, @@ -422892,17 +426197,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, - [75639] = 5, + [75736] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3353), 1, + STATE(3374), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(5816), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422911,8 +426214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 38, - sym__line_break, + ACTIONS(5814), 38, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -422924,15 +426226,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, @@ -422948,17 +426248,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, - [75700] = 5, + anon_sym_when, + anon_sym_in, + [75797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3354), 1, + STATE(3375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -422967,7 +426270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 38, + ACTIONS(6541), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423006,24 +426309,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [75761] = 5, + [75858] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3355), 1, + ACTIONS(6949), 1, + anon_sym_COLON_COLON, + STATE(3376), 1, sym_heredoc_body, + STATE(3544), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 38, + ACTIONS(4857), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423036,17 +426344,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, @@ -423057,20 +426361,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_else, - [75822] = 5, + anon_sym_then, + [75923] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3356), 1, + STATE(3377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423079,7 +426384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 38, + ACTIONS(6309), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423118,15 +426423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [75883] = 5, + [75984] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3357), 1, + STATE(3378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(4859), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423136,8 +426441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 37, + ACTIONS(4861), 37, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -423155,12 +426461,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, @@ -423174,25 +426478,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [75944] = 5, + anon_sym_do, + [76045] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3358), 1, + STATE(3379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 38, - sym__line_break, + ACTIONS(6047), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -423204,15 +426509,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, @@ -423228,27 +426530,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_do, anon_sym_else, - [76005] = 5, + anon_sym_when, + anon_sym_in, + [76106] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3359), 1, + STATE(3380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(5968), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 38, - sym__line_break, + ACTIONS(5966), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -423260,15 +426565,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, @@ -423284,27 +426586,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_do, anon_sym_else, - [76066] = 5, + anon_sym_when, + anon_sym_in, + [76167] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3360), 1, + STATE(3381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 38, - sym__line_break, + ACTIONS(6013), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -423316,15 +426621,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, @@ -423340,165 +426642,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, - [76127] = 23, + anon_sym_when, + anon_sym_in, + [76228] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3361), 1, + STATE(3382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(5700), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(5698), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6459), 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_end, - anon_sym_do, - anon_sym_else, - [76224] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3362), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6807), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6827), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6829), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6461), 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_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76321] = 5, + [76289] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3363), 1, + STATE(3383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423507,7 +426720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 38, + ACTIONS(6313), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423546,89 +426759,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76382] = 23, + [76350] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3364), 1, + STATE(3384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6391), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(6389), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 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, - [76479] = 5, + [76411] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3365), 1, + STATE(3385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423637,7 +426832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 38, + ACTIONS(6389), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423676,71 +426871,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76540] = 5, + [76472] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3366), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4956), 37, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6253), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - [76601] = 5, + anon_sym_do, + anon_sym_else, + [76565] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3367), 1, + STATE(3387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423749,7 +426960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 38, + ACTIONS(6545), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423788,15 +426999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76662] = 5, + [76626] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3368), 1, + STATE(3388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423805,7 +427016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 38, + ACTIONS(6397), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423844,15 +427055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76723] = 5, + [76687] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3369), 1, + STATE(3389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423861,7 +427072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 38, + ACTIONS(6317), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423900,15 +427111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76784] = 5, + [76748] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3370), 1, + STATE(3390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423917,7 +427128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 38, + ACTIONS(6321), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423956,15 +427167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76845] = 5, + [76809] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3371), 1, + STATE(3391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -423973,7 +427184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 38, + ACTIONS(6325), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424012,15 +427223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76906] = 5, + [76870] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3372), 1, + STATE(3392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424029,7 +427240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 38, + ACTIONS(6325), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424068,15 +427279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76967] = 5, + [76931] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3373), 1, + STATE(3393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424085,7 +427296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 38, + ACTIONS(6329), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424124,15 +427335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77028] = 5, + [76992] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3374), 1, + STATE(3394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424141,7 +427352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 38, + ACTIONS(6333), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -424153,13 +427365,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, @@ -424175,20 +427389,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, - [77089] = 5, + [77053] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3375), 1, + STATE(3395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424197,7 +427408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 38, + ACTIONS(6337), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424236,31 +427447,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77150] = 8, + [77114] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(6946), 1, - anon_sym_DASH_GT, - STATE(3376), 1, + STATE(3396), 1, sym_heredoc_body, - STATE(10516), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 34, + ACTIONS(6549), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424271,11 +427477,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, @@ -424291,93 +427501,73 @@ 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, - [77217] = 23, + [77175] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3377), 1, + STATE(3397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6415), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(6413), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6205), 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, - [77314] = 5, + [77236] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3378), 1, + STATE(3398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424386,7 +427576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 38, + ACTIONS(6341), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424425,15 +427615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77375] = 5, + [77297] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3379), 1, + STATE(3399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424442,7 +427632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 38, + ACTIONS(6417), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424481,15 +427671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77436] = 5, + [77358] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3380), 1, + STATE(3400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424498,7 +427688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 38, + ACTIONS(6345), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424537,17 +427727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77497] = 6, + [77419] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6948), 1, - anon_sym_of, - STATE(3381), 1, + STATE(3401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424556,7 +427744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 37, + ACTIONS(6349), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -424568,12 +427757,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, @@ -424589,22 +427781,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, - [77560] = 6, + [77480] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6950), 1, - sym_regex_modifier, - STATE(3382), 1, + STATE(3402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424613,7 +427800,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 37, + ACTIONS(6357), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -424625,12 +427813,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, @@ -424646,20 +427837,25 @@ 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, - [77623] = 5, + [77541] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3383), 1, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, + STATE(3403), 1, sym_heredoc_body, + STATE(4790), 1, + sym_do_end_block, + STATE(4792), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424668,9 +427864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 38, + ACTIONS(5698), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424687,7 +427882,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, @@ -424702,32 +427896,35 @@ 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, - [77684] = 5, + [77610] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3384), 1, + ACTIONS(6959), 1, + anon_sym_DOT, + ACTIONS(6961), 1, + anon_sym_EQ, + ACTIONS(6963), 1, + sym__start_of_index_operator, + STATE(3404), 1, sym_heredoc_body, + STATE(3786), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 38, + ACTIONS(5719), 35, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -424761,17 +427958,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, - [77745] = 5, + [77679] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3385), 1, + STATE(3405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424780,8 +427976,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 38, + ACTIONS(6553), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424799,7 +427996,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, @@ -424814,20 +428010,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, - [77806] = 5, + [77740] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3386), 1, + ACTIONS(6965), 1, + anon_sym_of, + STATE(3406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424836,8 +428034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 38, - sym__line_break, + ACTIONS(5826), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -424849,15 +428046,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, @@ -424873,19 +428067,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, - [77867] = 6, + anon_sym_when, + anon_sym_in, + [77803] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6952), 1, - sym_regex_modifier, - STATE(3387), 1, + STATE(3407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424894,7 +428089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 37, + ACTIONS(6421), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -424906,12 +428102,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, @@ -424927,20 +428126,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, - [77930] = 5, + [77864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3388), 1, + STATE(3408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -424949,7 +428145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 38, + ACTIONS(6425), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424988,17 +428184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77991] = 6, + [77925] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6954), 1, - anon_sym_of, - STATE(3389), 1, + ACTIONS(6967), 1, + anon_sym_LPAREN, + STATE(3409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -425007,7 +428203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 37, + ACTIONS(6061), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -425045,28 +428241,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [78054] = 7, + [77988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - anon_sym_PIPE, - STATE(3390), 1, + STATE(3410), 1, sym_heredoc_body, - STATE(3391), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 36, + ACTIONS(4940), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -425088,6 +428281,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, @@ -425103,28 +428297,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78119] = 6, + [78049] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6958), 1, - anon_sym_PIPE, + STATE(3411), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3391), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 36, - sym__line_break, + ACTIONS(6017), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425135,18 +428327,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_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -425160,21 +428348,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78182] = 8, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [78110] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1271), 1, - anon_sym_COLON, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - STATE(2623), 1, - aux_sym_constant_repeat1, - STATE(3392), 1, + ACTIONS(6969), 1, + sym_regex_modifier, + STATE(3412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -425183,7 +428372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 35, + ACTIONS(5832), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425212,42 +428402,32 @@ 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, - [78249] = 11, + [78173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - ACTIONS(6956), 1, - anon_sym_PIPE, - STATE(3390), 1, - aux_sym_union_type_repeat1, - STATE(3393), 1, + STATE(3413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(5164), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 33, + ACTIONS(5166), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -425261,10 +428441,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, @@ -425279,27 +428461,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, - [78322] = 5, + anon_sym_else, + [78234] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3394), 1, + STATE(3414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 38, - sym__line_break, + ACTIONS(5669), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -425311,15 +428496,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, @@ -425332,155 +428514,106 @@ 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, - [78383] = 11, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [78295] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - ACTIONS(6956), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - STATE(3390), 1, - aux_sym_union_type_repeat1, - STATE(3395), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4896), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(4898), 33, - sym__line_break, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 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(6807), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__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, + STATE(3415), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6793), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [78456] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3396), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6225), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6223), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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_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, - [78517] = 9, + [78388] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2043), 1, - sym__string_literal_start, - ACTIONS(6961), 1, - anon_sym_COLON, - STATE(3397), 1, + STATE(3416), 1, sym_heredoc_body, - STATE(3545), 1, - aux_sym_chained_string_repeat1, - STATE(3989), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, + ACTIONS(5818), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425512,28 +428645,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_do, anon_sym_else, anon_sym_when, anon_sym_in, - [78586] = 5, + [78449] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3398), 1, + STATE(3417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 38, - sym__line_break, + ACTIONS(5818), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -425545,15 +428680,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, @@ -425569,17 +428701,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, - [78647] = 5, + anon_sym_when, + anon_sym_in, + [78510] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3399), 1, + ACTIONS(1275), 1, + anon_sym_COLON, + ACTIONS(6073), 1, + anon_sym_COLON_COLON, + STATE(2676), 1, + aux_sym_constant_repeat1, + STATE(3418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, + ACTIONS(4855), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -425588,9 +428729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4857), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425601,15 +428740,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, @@ -425622,20 +428758,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_else, - [78708] = 5, + anon_sym_when, + anon_sym_in, + [78577] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3400), 1, + ACTIONS(6971), 1, + anon_sym_of, + STATE(3419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -425644,8 +428784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 38, - sym__line_break, + ACTIONS(5981), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -425657,15 +428796,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, @@ -425681,17 +428817,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, - [78769] = 5, + anon_sym_when, + anon_sym_in, + [78640] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3401), 1, + STATE(3420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -425700,7 +428839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 38, + ACTIONS(6561), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -425739,26 +428878,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78830] = 5, + [78701] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3402), 1, + STATE(3421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 38, + ACTIONS(4960), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425771,15 +428910,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, @@ -425793,17 +428934,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, - [78891] = 5, + [78762] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3403), 1, + STATE(3422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -425812,8 +428951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 38, - sym__line_break, + ACTIONS(4618), 38, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -425825,15 +428963,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_LPAREN, + 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, @@ -425849,27 +428985,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_do, anon_sym_else, - [78952] = 5, + anon_sym_when, + anon_sym_in, + [78823] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3404), 1, + STATE(3423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 38, - sym__line_break, + ACTIONS(5822), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -425881,15 +429020,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, @@ -425905,17 +429041,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, - [79013] = 5, + anon_sym_when, + anon_sym_in, + [78884] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3405), 1, + STATE(3424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -425924,7 +429063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 38, + ACTIONS(6179), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -425963,15 +429102,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79074] = 5, + [78945] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3406), 1, + ACTIONS(2043), 1, + sym__string_literal_start, + ACTIONS(6973), 1, + anon_sym_COLON, + STATE(3425), 1, sym_heredoc_body, + STATE(3608), 1, + aux_sym_chained_string_repeat1, + STATE(3970), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -425980,9 +429127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(173), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425993,15 +429138,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, @@ -426017,31 +429159,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_else, - [79135] = 7, + anon_sym_when, + anon_sym_in, + [79014] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6825), 1, - sym__start_of_index_operator, - STATE(3407), 1, + STATE(3426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6265), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 37, + ACTIONS(6263), 38, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -426077,17 +429218,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79200] = 6, + [79075] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6963), 1, - anon_sym_of, - STATE(3408), 1, + ACTIONS(6975), 1, + sym_regex_modifier, + STATE(3427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426096,7 +429237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 37, + ACTIONS(5838), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -426134,15 +429275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [79263] = 5, + [79138] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3409), 1, + STATE(3428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6273), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426151,7 +429292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 38, + ACTIONS(6271), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426190,91 +429331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79324] = 23, + [79199] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3410), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6829), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6247), 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, - [79421] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6965), 1, - anon_sym_LPAREN, - STATE(3411), 1, + STATE(3429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426283,7 +429348,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 37, + ACTIONS(6375), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -426295,75 +429361,13 @@ 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_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [79484] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6825), 1, - sym__start_of_index_operator, - STATE(3412), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6829), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6526), 31, - 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__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, @@ -426377,30 +429381,31 @@ 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, - [79555] = 5, + [79260] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3413), 1, + STATE(3430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 38, - sym__line_break, + ACTIONS(6009), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -426412,15 +429417,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, @@ -426436,17 +429438,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, - [79616] = 5, + anon_sym_when, + anon_sym_in, + [79321] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3414), 1, + STATE(3431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426455,7 +429460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 38, + ACTIONS(6522), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426494,15 +429499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79677] = 5, + [79382] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3415), 1, + STATE(3432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426511,7 +429516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 38, + ACTIONS(6381), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426550,15 +429555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79738] = 5, + [79443] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3416), 1, + ACTIONS(6977), 1, + anon_sym_of, + STATE(3433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426567,7 +429574,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 38, + ACTIONS(5844), 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, + [79506] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3434), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6387), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6385), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426606,37 +429668,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79799] = 8, + [79567] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6825), 1, - sym__start_of_index_operator, - STATE(3417), 1, + STATE(3435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6817), 2, + ACTIONS(5852), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5850), 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(6544), 7, + 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, + [79628] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3436), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6395), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 35, + ACTIONS(6393), 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, @@ -426660,31 +429774,32 @@ 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, - [79866] = 5, + [79689] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3418), 1, + STATE(3437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 38, + ACTIONS(4944), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426697,15 +429812,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, @@ -426719,17 +429836,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, - [79927] = 5, + [79750] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3419), 1, + STATE(3438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426738,7 +429853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 38, + ACTIONS(6401), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426777,26 +429892,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79988] = 6, + [79811] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6967), 1, - anon_sym_of, - STATE(3420), 1, + STATE(3439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 37, + ACTIONS(5947), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -426834,17 +429948,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [80051] = 6, + [79872] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6969), 1, - anon_sym_of, - STATE(3421), 1, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, + STATE(3440), 1, sym_heredoc_body, + STATE(4814), 1, + sym_do_end_block, + STATE(4823), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426853,8 +429973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 37, - sym__start_of_brace_block, + ACTIONS(5694), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426865,12 +429985,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, @@ -426886,20 +430008,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, - [80114] = 5, + [79941] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3422), 1, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, + STATE(3441), 1, sym_heredoc_body, + STATE(4826), 1, + sym_do_end_block, + STATE(4828), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426908,9 +430033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 38, + ACTIONS(5694), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426923,7 +430047,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, @@ -426945,17 +430068,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, - [80175] = 5, + [80010] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3423), 1, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, + STATE(3442), 1, sym_heredoc_body, + STATE(4831), 1, + sym_do_end_block, + STATE(4832), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -426964,9 +430093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 38, + ACTIONS(5715), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426979,7 +430107,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, @@ -427001,17 +430128,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [80079] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, anon_sym_do, - anon_sym_else, - [80236] = 5, + STATE(3443), 1, + sym_heredoc_body, + STATE(4833), 1, + sym_do_end_block, + STATE(4834), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5717), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5715), 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, + [80148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3424), 1, + STATE(3444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -427020,7 +430205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 38, + ACTIONS(6405), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427059,37 +430244,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80297] = 8, + [80209] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6825), 1, - sym__start_of_index_operator, - STATE(3425), 1, + STATE(3445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6411), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 35, + ACTIONS(6409), 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, @@ -427113,83 +430294,77 @@ 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, - [80364] = 12, + [80270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6825), 1, - sym__start_of_index_operator, - STATE(3426), 1, + STATE(3446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6827), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6829), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(4900), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 25, + anon_sym_AMP_STAR, + ACTIONS(4902), 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [80439] = 5, + [80331] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3427), 1, + STATE(3447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(6431), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -427198,7 +430373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 38, + ACTIONS(6429), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427237,15 +430412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80500] = 5, + [80392] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3428), 1, + STATE(3448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(6277), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -427254,7 +430429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 38, + ACTIONS(6275), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427293,21 +430468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80561] = 8, + [80453] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, + ACTIONS(665), 1, sym__start_of_brace_block, - STATE(3429), 1, + ACTIONS(6903), 1, + anon_sym_do, + STATE(3449), 1, sym_heredoc_body, - STATE(4004), 1, + STATE(4452), 1, sym_do_end_block, - STATE(4005), 1, + STATE(4473), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -427316,7 +430493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 35, + ACTIONS(5729), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -427351,33 +430528,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [80628] = 9, + [80522] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - ACTIONS(6971), 1, - anon_sym_do, - STATE(3430), 1, + STATE(3450), 1, sym_heredoc_body, - STATE(3822), 1, - sym_do_end_block, - STATE(3823), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 34, + ACTIONS(4964), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -427396,9 +430565,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, @@ -427412,15 +430584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [80697] = 5, + [80583] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3431), 1, + STATE(3451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -427429,7 +430601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 38, + ACTIONS(6441), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427468,26 +430640,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80758] = 5, + [80644] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3432), 1, + STATE(3452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 38, + ACTIONS(4948), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427500,15 +430672,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, @@ -427522,31 +430696,101 @@ 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, - [80819] = 7, + [80705] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6825), 1, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, sym__start_of_index_operator, - STATE(3433), 1, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6805), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6489), 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, + [80802] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3454), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5864), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 37, - sym__line_break, + ACTIONS(5862), 37, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -427556,15 +430800,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, @@ -427580,65 +430821,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_do, anon_sym_else, - [80884] = 21, + anon_sym_when, + anon_sym_in, + [80863] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6803), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6805), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6809), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6821), 1, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, + ACTIONS(6799), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, + ACTIONS(6801), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3434), 1, + STATE(3455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 15, + ACTIONS(6509), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -427649,20 +430897,75 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_end, + anon_sym_do, + anon_sym_else, + [80960] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6979), 1, + sym_regex_modifier, + STATE(3456), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5997), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5995), 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, - [80977] = 5, + anon_sym_when, + anon_sym_in, + [81023] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3435), 1, + STATE(3457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -427671,7 +430974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 38, + ACTIONS(145), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427710,15 +431013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81038] = 5, + [81084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3436), 1, + STATE(3458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -427727,7 +431030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 38, + ACTIONS(6279), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427766,83 +431069,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81099] = 17, + [81145] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3437), 1, + STATE(3459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(6285), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(6283), 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(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5959), 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_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, - [81184] = 5, + [81206] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3438), 1, + STATE(3460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5979), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -427852,7 +431143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 37, + ACTIONS(5977), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -427890,26 +431181,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [81245] = 5, + [81267] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3439), 1, + STATE(3461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 37, + ACTIONS(6085), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427922,17 +431213,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, @@ -427946,63 +431235,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [81306] = 21, + anon_sym_do, + anon_sym_else, + [81328] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, + STATE(3462), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5989), 9, anon_sym_DOT_DOT, - ACTIONS(6799), 1, anon_sym_DOT, - ACTIONS(6803), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6805), 1, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5987), 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, - ACTIONS(6809), 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_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [81389] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6821), 1, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, + ACTIONS(6799), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, + ACTIONS(6801), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3440), 1, + STATE(3463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 15, + ACTIONS(6083), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -428013,31 +431364,28 @@ 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, - [81399] = 5, + [81486] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3441), 1, + STATE(3464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 37, - sym__line_break, + ACTIONS(4622), 38, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428048,17 +431396,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_LPAREN, + 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, @@ -428073,47 +431418,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_do, anon_sym_else, - [81460] = 13, + anon_sym_when, + anon_sym_in, + [81547] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6815), 1, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6825), 1, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3442), 1, + STATE(3465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6817), 2, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6827), 4, + ACTIONS(6777), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5963), 24, + ACTIONS(6085), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -428124,37 +431494,18 @@ 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, - [81537] = 9, + [81644] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - ACTIONS(6971), 1, - anon_sym_do, - STATE(3443), 1, + STATE(3466), 1, sym_heredoc_body, - STATE(3822), 1, - sym_do_end_block, - STATE(3823), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6037), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -428163,8 +431514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 34, - sym__line_break, + anon_sym_COLON2, + ACTIONS(6035), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428175,14 +431527,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, @@ -428195,190 +431545,131 @@ 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, - [81606] = 11, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [81705] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6825), 1, - sym__start_of_index_operator, - STATE(3444), 1, + STATE(3467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6827), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6829), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5969), 6, + ACTIONS(6093), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 27, + anon_sym_AMP_STAR, + ACTIONS(6091), 38, 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_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_else, - [81679] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6825), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3445), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6827), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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, + 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, - [81760] = 19, + [81766] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6803), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6805), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6809), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6825), 1, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3446), 1, + STATE(3468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 17, + ACTIONS(6095), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -428389,99 +431680,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_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81849] = 20, + [81863] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, + STATE(3469), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5953), 9, anon_sym_DOT_DOT, - ACTIONS(6799), 1, anon_sym_DOT, - ACTIONS(6803), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6825), 1, + ACTIONS(5951), 37, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6831), 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(3447), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6807), 2, + 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(6813), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 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, + [81924] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3470), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5812), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(5810), 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(6829), 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__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_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, - [81940] = 8, + anon_sym_when, + anon_sym_in, + [81985] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - STATE(3448), 1, + STATE(3471), 1, sym_heredoc_body, - STATE(4006), 1, - sym_do_end_block, - STATE(4007), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -428490,8 +431812,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 35, + ACTIONS(6449), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428504,6 +431827,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, @@ -428526,15 +431850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [82007] = 5, + anon_sym_else, + [82046] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3449), 1, + STATE(3472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -428543,7 +431868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 38, + ACTIONS(6297), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -428582,26 +431907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82068] = 5, + [82107] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3450), 1, + STATE(3473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 37, + ACTIONS(6453), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428614,17 +431939,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, @@ -428638,15 +431961,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [82129] = 5, + anon_sym_do, + anon_sym_else, + [82168] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3451), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3474), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6805), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6459), 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, + [82265] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -428655,7 +432054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 38, + ACTIONS(6461), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -428694,15 +432093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82190] = 5, + [82326] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3452), 1, + STATE(3476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -428711,7 +432110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 38, + ACTIONS(5170), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -428726,11 +432125,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, @@ -428745,20 +432144,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, - [82251] = 5, + [82387] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3453), 1, + STATE(3477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 9, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -428767,8 +432166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(5862), 37, + ACTIONS(6187), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -428780,12 +432179,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, @@ -428798,35 +432200,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [82312] = 5, + [82448] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3454), 1, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6801), 1, + sym__start_of_index_operator, + STATE(3478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 37, + ACTIONS(6301), 37, sym__line_break, - sym__start_of_index_operator, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -428838,17 +432239,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, @@ -428862,15 +432261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [82373] = 5, + anon_sym_do, + anon_sym_else, + [82513] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3455), 1, + STATE(3479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -428879,7 +432280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 38, + ACTIONS(6369), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -428918,15 +432319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82434] = 5, + [82574] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3456), 1, + ACTIONS(6379), 1, + anon_sym_LPAREN2, + STATE(3480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -428935,8 +432338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 38, - sym__line_break, + ACTIONS(173), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -428948,15 +432350,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, @@ -428972,29 +432371,34 @@ 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, - [82495] = 5, + anon_sym_when, + anon_sym_in, + [82637] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3457), 1, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6801), 1, + sym__start_of_index_operator, + STATE(3481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 38, + ACTIONS(6305), 37, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -429030,25 +432434,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82556] = 5, + [82702] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3458), 1, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_DOT, + ACTIONS(6815), 1, + anon_sym_STAR, + ACTIONS(6819), 1, + anon_sym_QMARK, + ACTIONS(6957), 1, + anon_sym_PIPE, + STATE(3482), 1, sym_heredoc_body, + STATE(3510), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(4970), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 37, + ACTIONS(4972), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429067,12 +432481,63 @@ 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_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, + [82775] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(6981), 1, anon_sym_DASH_GT, + STATE(3483), 1, + sym_heredoc_body, + STATE(10409), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5020), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5022), 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_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, @@ -429086,15 +432551,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [82617] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [82842] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3459), 1, + STATE(3484), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5927), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5925), 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, + [82903] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429103,7 +432628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 38, + ACTIONS(6465), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -429142,26 +432667,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82678] = 5, + [82964] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3460), 1, + STATE(3486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(5911), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 37, - sym__line_break, + anon_sym_COLON2, + ACTIONS(5909), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429172,19 +432697,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, @@ -429195,18 +432715,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, - [82739] = 5, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [83025] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3461), 1, + STATE(3487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429216,8 +432741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 37, - sym__line_break, + ACTIONS(5987), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429228,19 +432753,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, @@ -429254,15 +432774,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [82800] = 5, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [83086] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3462), 1, + STATE(3488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429272,7 +432797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 37, + ACTIONS(4976), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429310,36 +432835,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [82861] = 11, + [83147] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - ACTIONS(6956), 1, - anon_sym_PIPE, - STATE(3390), 1, - aux_sym_union_type_repeat1, - STATE(3463), 1, + STATE(3489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, + ACTIONS(6099), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 33, + ACTIONS(6097), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429352,6 +432867,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, @@ -429370,17 +432886,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, - [82934] = 5, + anon_sym_do, + anon_sym_else, + [83208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3464), 1, + STATE(3490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429389,7 +432908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 38, + ACTIONS(5694), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -429428,15 +432947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82995] = 5, + [83269] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3465), 1, + STATE(3491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(5804), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429446,8 +432965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 37, - sym__line_break, + ACTIONS(5802), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429458,19 +432977,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, @@ -429484,15 +432998,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [83056] = 5, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [83330] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3466), 1, + STATE(3492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429501,7 +433020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 38, + ACTIONS(6097), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -429540,25 +433059,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83117] = 5, + [83391] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3467), 1, + STATE(3493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 38, - sym__line_break, + ACTIONS(5991), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -429570,15 +433089,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, @@ -429594,17 +433110,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, - [83178] = 5, + anon_sym_when, + anon_sym_in, + [83452] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3468), 1, + STATE(3494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6475), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429613,7 +433132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 38, + ACTIONS(6473), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -429652,15 +433171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83239] = 5, + [83513] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3469), 1, + STATE(3495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429669,7 +433188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(145), 38, + ACTIONS(6477), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -429708,15 +433227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83300] = 5, + [83574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3470), 1, + STATE(3496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429725,7 +433244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 38, + ACTIONS(5694), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -429764,26 +433283,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83361] = 5, + [83635] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3471), 1, + STATE(3497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 37, + ACTIONS(6481), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429796,17 +433315,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, @@ -429820,36 +433337,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [83422] = 11, + anon_sym_do, + anon_sym_else, + [83696] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, - anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - ACTIONS(6956), 1, - anon_sym_PIPE, - STATE(3390), 1, - aux_sym_union_type_repeat1, - STATE(3472), 1, + STATE(3498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(6103), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 33, + ACTIONS(6101), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429862,6 +433371,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, @@ -429880,17 +433390,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, - [83495] = 5, + anon_sym_do, + anon_sym_else, + [83757] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3473), 1, + STATE(3499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(4906), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429900,7 +433413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 37, + ACTIONS(4908), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429938,15 +433451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [83556] = 5, + [83818] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3474), 1, + STATE(3500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(5164), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -429955,7 +433468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 38, + ACTIONS(5166), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -429970,11 +433483,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, @@ -429989,31 +433502,31 @@ 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, - [83617] = 5, + [83879] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3475), 1, + STATE(3501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 37, + ACTIONS(5970), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -430026,17 +433539,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, @@ -430050,26 +433561,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [83678] = 5, + anon_sym_do, + anon_sym_else, + [83940] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3476), 1, + STATE(3502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 37, + ACTIONS(6105), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -430082,17 +433595,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, @@ -430106,141 +433617,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [83739] = 23, + anon_sym_do, + anon_sym_else, + [84001] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6983), 1, anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, + ACTIONS(6985), 1, + anon_sym_EQ, + ACTIONS(6987), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3477), 1, + STATE(3503), 1, sym_heredoc_body, + STATE(3568), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(5721), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(5719), 35, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6506), 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_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, - [83836] = 23, + anon_sym_when, + anon_sym_in, + [84070] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, + ACTIONS(6771), 1, anon_sym_DOT_DOT, - ACTIONS(6797), 1, + ACTIONS(6773), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6803), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - ACTIONS(6805), 1, + ACTIONS(6781), 1, anon_sym_CARET, - ACTIONS(6809), 1, + ACTIONS(6785), 1, anon_sym_EQ_EQ, - ACTIONS(6815), 1, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6819), 1, + ACTIONS(6795), 1, anon_sym_QMARK, - ACTIONS(6821), 1, + ACTIONS(6797), 1, anon_sym_AMP_AMP, - ACTIONS(6823), 1, + ACTIONS(6799), 1, anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, + ACTIONS(6801), 1, sym__start_of_index_operator, - ACTIONS(6831), 1, + ACTIONS(6807), 1, sym_binary_ampersand, - STATE(3478), 1, + STATE(3504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, + ACTIONS(6783), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6813), 2, + ACTIONS(6789), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, + ACTIONS(6793), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(6777), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, + ACTIONS(6787), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, + ACTIONS(6805), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6508), 13, + ACTIONS(6491), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -430254,15 +433753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_do, anon_sym_else, - [83933] = 5, + [84167] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3479), 1, + STATE(3505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -430271,7 +433770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 38, + ACTIONS(6493), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -430310,15 +433809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83994] = 5, + [84228] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3480), 1, + ACTIONS(713), 1, + sym__start_of_brace_block, + ACTIONS(6920), 1, + anon_sym_do, + STATE(3506), 1, sym_heredoc_body, + STATE(3761), 1, + sym_do_end_block, + STATE(3762), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -430327,9 +433834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 38, + ACTIONS(5729), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -430342,7 +433848,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, @@ -430364,17 +433869,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, - [84055] = 5, + [84297] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3481), 1, + STATE(3507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -430383,7 +433886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 38, + ACTIONS(6109), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -430422,71 +433925,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [84116] = 5, + [84358] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3482), 1, - sym_heredoc_body, + ACTIONS(6989), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4622), 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_LPAREN, - 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, - [84177] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3483), 1, + STATE(3508), 2, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4958), 9, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -430496,8 +433946,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 37, + ACTIONS(4840), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -430508,18 +433959,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_DASH_GT, - anon_sym_end, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -430531,18 +433976,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, - [84238] = 5, + anon_sym_do, + anon_sym_then, + [84421] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3484), 1, + STATE(3509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(6503), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -430551,7 +433999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 38, + ACTIONS(6501), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -430590,26 +434038,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [84299] = 5, + [84482] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3485), 1, + ACTIONS(6957), 1, + anon_sym_PIPE, + STATE(3510), 1, sym_heredoc_body, + STATE(3511), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 38, + ACTIONS(4883), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -430622,15 +434073,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, @@ -430644,32 +434096,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_else, - [84360] = 8, + [84547] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1265), 1, - anon_sym_COLON, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - STATE(2767), 1, - aux_sym_constant_repeat1, - STATE(3486), 1, - sym_heredoc_body, + ACTIONS(6992), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + STATE(3511), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 35, + ACTIONS(4875), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -430688,9 +434135,11 @@ 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_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -430701,19 +434150,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, - [84427] = 5, + [84610] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3487), 1, + STATE(3512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -430722,7 +434170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 38, + ACTIONS(6113), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -430761,15 +434209,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [84488] = 5, + [84671] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3488), 1, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_DOT, + ACTIONS(6815), 1, + anon_sym_STAR, + ACTIONS(6819), 1, + anon_sym_QMARK, + ACTIONS(6957), 1, + anon_sym_PIPE, + STATE(3510), 1, + aux_sym_union_type_repeat1, + STATE(3513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(4888), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4890), 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_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, + [84744] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3514), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -430778,7 +434288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 38, + ACTIONS(6505), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -430817,26 +434327,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [84549] = 5, + [84805] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3489), 1, + STATE(3515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(4950), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 38, + ACTIONS(4952), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -430849,15 +434359,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, @@ -430871,27 +434383,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_else, - [84610] = 5, + [84866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3490), 1, + STATE(3516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 9, + ACTIONS(5923), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(5872), 37, + ACTIONS(5921), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -430921,23 +434431,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, - [84671] = 5, + [84927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3491), 1, + STATE(3517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -430946,7 +434456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 38, + ACTIONS(6565), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -430985,21 +434495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [84732] = 8, + [84988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - STATE(3492), 1, + STATE(3518), 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(5721), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -431008,8 +434512,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 35, + ACTIONS(6233), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431022,6 +434527,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, @@ -431044,26 +434550,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [84799] = 5, + anon_sym_else, + [85049] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3493), 1, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_DOT, + ACTIONS(6815), 1, + anon_sym_STAR, + ACTIONS(6819), 1, + anon_sym_QMARK, + ACTIONS(6957), 1, + anon_sym_PIPE, + STATE(3510), 1, + aux_sym_union_type_repeat1, + STATE(3519), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4896), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4898), 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_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, + [85122] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3510), 1, + aux_sym_union_type_repeat1, + STATE(3520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 38, + ACTIONS(4875), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431076,15 +434647,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, @@ -431098,17 +434670,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, - [84860] = 5, + [85185] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3494), 1, + STATE(3521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -431117,7 +434687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 38, + ACTIONS(6117), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -431156,32 +434726,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [84921] = 9, + [85246] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2181), 1, - sym__string_literal_start, - ACTIONS(6973), 1, - anon_sym_COLON, - STATE(3495), 1, + ACTIONS(6811), 1, + anon_sym_LBRACK, + ACTIONS(6813), 1, + anon_sym_DOT, + ACTIONS(6815), 1, + anon_sym_STAR, + ACTIONS(6819), 1, + anon_sym_QMARK, + ACTIONS(6957), 1, + anon_sym_PIPE, + STATE(3510), 1, + aux_sym_union_type_repeat1, + STATE(3522), 1, sym_heredoc_body, - STATE(3795), 1, - aux_sym_chained_string_repeat1, - STATE(4513), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, + ACTIONS(4894), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -431213,29 +434786,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, - [84990] = 5, + [85319] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3496), 1, + STATE(3523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 37, + ACTIONS(6121), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431248,17 +434820,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, @@ -431272,26 +434842,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85051] = 5, + anon_sym_do, + anon_sym_else, + [85380] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3497), 1, + STATE(3524), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 38, + ACTIONS(4916), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431304,15 +434876,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, @@ -431326,17 +434900,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, - [85112] = 5, + [85441] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3498), 1, + STATE(3525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -431345,7 +434917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 38, + ACTIONS(6241), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -431384,43 +434956,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [85173] = 5, + [85502] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3499), 1, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6801), 1, + sym__start_of_index_operator, + STATE(3526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6805), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6301), 38, + ACTIONS(6125), 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, @@ -431434,35 +435012,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_else, - [85234] = 7, + [85573] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6934), 1, - anon_sym_COLON_COLON, - STATE(3304), 1, - aux_sym_constant_repeat1, - STATE(3500), 1, + STATE(3527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 35, + ACTIONS(6229), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -431475,13 +435047,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, @@ -431492,25 +435068,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_then, - [85299] = 7, + anon_sym_else, + [85634] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6799), 1, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6825), 1, + ACTIONS(6801), 1, sym__start_of_index_operator, - STATE(3501), 1, + STATE(3528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431518,7 +435096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 37, + ACTIONS(6129), 35, sym__line_break, sym__start_of_brace_block, sym_binary_plus, @@ -431526,7 +435104,6 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -431550,39 +435127,42 @@ 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, - [85364] = 5, + [85701] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3502), 1, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6801), 1, + sym__start_of_index_operator, + STATE(3529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 38, + ACTIONS(6133), 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, @@ -431606,30 +435186,30 @@ 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, - [85425] = 5, + [85768] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3503), 1, + STATE(3530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 38, + ACTIONS(6055), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -431642,7 +435222,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -431668,131 +435247,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [85486] = 9, + [85829] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - STATE(3504), 1, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6801), 1, + sym__start_of_index_operator, + STATE(3531), 1, sym_heredoc_body, - STATE(4629), 1, - sym_do_end_block, - STATE(4631), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6803), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6805), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5686), 34, + ACTIONS(6137), 25, 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__start_of_brace_block, 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, - [85555] = 5, + anon_sym_do, + anon_sym_else, + [85904] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3505), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4861), 37, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6141), 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_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, - [85616] = 5, + anon_sym_else, + [85997] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3506), 1, + STATE(3533), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -431801,7 +435399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 38, + ACTIONS(6267), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -431840,29 +435438,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [85677] = 7, + [86058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6934), 1, - anon_sym_COLON_COLON, - STATE(3308), 1, - aux_sym_constant_repeat1, - STATE(3507), 1, + STATE(3534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 35, + ACTIONS(6437), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -431875,13 +435468,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, @@ -431892,40 +435489,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_then, - [85742] = 9, + anon_sym_else, + [86119] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - STATE(3508), 1, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6801), 1, + sym__start_of_index_operator, + STATE(3535), 1, sym_heredoc_body, - STATE(4806), 1, - sym_do_end_block, - STATE(4807), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 34, + ACTIONS(6245), 37, sym__line_break, - sym__start_of_index_operator, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -431937,6 +435528,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, @@ -431958,77 +435550,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85811] = 11, + anon_sym_do, + anon_sym_else, + [86184] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6895), 1, - anon_sym_LBRACK, - ACTIONS(6897), 1, + ACTIONS(6775), 1, anon_sym_DOT, - ACTIONS(6899), 1, - anon_sym_STAR, - ACTIONS(6901), 1, - anon_sym_QMARK, - ACTIONS(6956), 1, + ACTIONS(6779), 1, anon_sym_PIPE, - STATE(3390), 1, - aux_sym_union_type_repeat1, - STATE(3509), 1, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4886), 33, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 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_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, - [85884] = 5, + anon_sym_do, + anon_sym_else, + [86269] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3510), 1, + ACTIONS(6995), 1, + anon_sym_of, + STATE(3537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -432037,8 +435639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 38, - sym__line_break, + ACTIONS(5873), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -432050,15 +435651,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, @@ -432074,104 +435672,91 @@ 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, - [85945] = 23, + anon_sym_when, + anon_sym_in, + [86332] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6795), 1, - anon_sym_DOT_DOT, - ACTIONS(6797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6799), 1, - anon_sym_DOT, - ACTIONS(6803), 1, - anon_sym_PIPE, - ACTIONS(6805), 1, - anon_sym_CARET, - ACTIONS(6809), 1, - anon_sym_EQ_EQ, - ACTIONS(6815), 1, - anon_sym_AMP_STAR, - ACTIONS(6819), 1, - anon_sym_QMARK, - ACTIONS(6821), 1, - anon_sym_AMP_AMP, - ACTIONS(6823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6825), 1, - sym__start_of_index_operator, - ACTIONS(6831), 1, - sym_binary_ampersand, - STATE(3511), 1, + ACTIONS(1273), 1, + anon_sym_COLON, + ACTIONS(6662), 1, + anon_sym_COLON_COLON, + STATE(2875), 1, + aux_sym_constant_repeat1, + STATE(3538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6807), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6813), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6817), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6801), 3, + ACTIONS(4855), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6811), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6827), 4, + anon_sym_AMP_STAR, + ACTIONS(4857), 35, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6829), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5934), 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, - [86042] = 6, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_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, + [86399] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3390), 1, - aux_sym_union_type_repeat1, - STATE(3512), 1, + ACTIONS(6997), 1, + anon_sym_of, + STATE(3539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 36, - sym__line_break, + ACTIONS(5744), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432182,18 +435767,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_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -432207,25 +435788,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86105] = 5, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [86462] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3513), 1, + STATE(3540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 38, - sym__line_break, + ACTIONS(5881), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -432237,15 +435823,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, @@ -432261,17 +435844,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, - [86166] = 5, + anon_sym_when, + anon_sym_in, + [86523] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3514), 1, + ACTIONS(2157), 1, + sym__string_literal_start, + ACTIONS(6999), 1, + anon_sym_COLON, + STATE(3541), 1, sym_heredoc_body, + STATE(3807), 1, + aux_sym_chained_string_repeat1, + STATE(4412), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -432280,9 +435874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 38, + ACTIONS(173), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432295,7 +435888,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, @@ -432317,76 +435909,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_else, - [86227] = 8, + [86592] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - STATE(3515), 1, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3542), 1, sym_heredoc_body, - STATE(3993), 1, - sym_do_end_block, - STATE(3995), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5702), 35, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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, - 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, - [86294] = 5, + anon_sym_else, + [86669] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3516), 1, + STATE(3543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -432395,7 +435990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 38, + ACTIONS(6433), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -432434,19 +436029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86355] = 7, + [86730] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6934), 1, + ACTIONS(6949), 1, anon_sym_COLON_COLON, - STATE(3500), 1, + STATE(3508), 1, aux_sym_constant_repeat1, - STATE(3517), 1, + STATE(3544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -432456,7 +436051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 35, + ACTIONS(4847), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -432492,24 +436087,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [86420] = 5, + [86795] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3518), 1, + ACTIONS(6949), 1, + anon_sym_COLON_COLON, + STATE(3350), 1, + aux_sym_constant_repeat1, + STATE(3545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 38, + ACTIONS(4847), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -432522,17 +436122,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, @@ -432543,48 +436139,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_do, - anon_sym_else, - [86481] = 5, + anon_sym_then, + [86860] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3519), 1, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6801), 1, + sym__start_of_index_operator, + STATE(3546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6803), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6805), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 38, + ACTIONS(6163), 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__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, @@ -432598,31 +436202,30 @@ 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, - [86542] = 5, + [86933] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3520), 1, + STATE(3547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 38, - sym__line_break, + ACTIONS(5796), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -432634,15 +436237,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, @@ -432658,129 +436258,162 @@ 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, - [86603] = 5, + anon_sym_when, + anon_sym_in, + [86994] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3521), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6061), 8, - anon_sym_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(6779), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6791), 1, anon_sym_AMP_STAR, - ACTIONS(6059), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6801), 1, sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3548), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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, - 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, - [86664] = 5, + [87075] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3522), 1, + ACTIONS(6771), 1, + anon_sym_DOT_DOT, + ACTIONS(6773), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6799), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6373), 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, - [86725] = 5, + [87172] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3523), 1, + ACTIONS(7001), 1, + anon_sym_LPAREN, + STATE(3550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -432789,8 +436422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 38, - sym__line_break, + ACTIONS(5901), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -432802,15 +436434,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, @@ -432826,17 +436455,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, - [86786] = 5, + anon_sym_when, + anon_sym_in, + [87235] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3524), 1, + ACTIONS(713), 1, + sym__start_of_brace_block, + STATE(3551), 1, sym_heredoc_body, + STATE(3904), 1, + sym_brace_block, + STATE(4267), 1, + sym_do_end_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -432845,9 +436483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 38, + ACTIONS(5698), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432860,7 +436497,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, @@ -432883,27 +436519,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [86847] = 6, + [87302] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6975), 1, - anon_sym_of, - STATE(3525), 1, + STATE(3552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 37, + ACTIONS(5913), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -432941,29 +436575,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [86910] = 7, + [87363] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6977), 1, - anon_sym_COMMA, - STATE(3526), 1, + STATE(3553), 1, sym_heredoc_body, - STATE(3571), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, - sym__line_break, + ACTIONS(5917), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -432975,13 +436605,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, @@ -432997,74 +436626,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, - [86974] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [87424] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(703), 1, - anon_sym_EQ, - STATE(3527), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(6775), 1, + anon_sym_DOT, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(173), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6171), 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, - [87036] = 6, + anon_sym_else, + [87513] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6684), 1, - anon_sym_LPAREN2, - STATE(3528), 1, + STATE(3555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433073,7 +436718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(6257), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -433088,6 +436733,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, @@ -433110,27 +436756,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [87098] = 6, + anon_sym_else, + [87574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6979), 1, - sym_regex_modifier, - STATE(3529), 1, + STATE(3556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(5945), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 36, - sym__line_break, + ACTIONS(5943), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -433142,14 +436787,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, @@ -433165,18 +436808,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, - [87160] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [87635] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6981), 1, - sym_regex_modifier, - STATE(3530), 1, + STATE(3557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433185,7 +436830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 36, + ACTIONS(6437), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -433200,6 +436845,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, @@ -433222,84 +436868,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [87222] = 7, + anon_sym_else, + [87696] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6983), 1, - anon_sym_LPAREN, - ACTIONS(6985), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(6775), 1, anon_sym_DOT, - STATE(3531), 1, + ACTIONS(6779), 1, + anon_sym_PIPE, + ACTIONS(6781), 1, + anon_sym_CARET, + ACTIONS(6785), 1, + anon_sym_EQ_EQ, + ACTIONS(6791), 1, + anon_sym_AMP_STAR, + ACTIONS(6797), 1, + anon_sym_AMP_AMP, + ACTIONS(6801), 1, + sym__start_of_index_operator, + ACTIONS(6807), 1, + sym_binary_ampersand, + STATE(3558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, - anon_sym_DOT_DOT, + ACTIONS(6783), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6789), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6793), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6777), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5886), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6787), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6803), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6805), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6175), 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_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, - [87286] = 6, + anon_sym_else, + [87787] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6983), 1, - anon_sym_LPAREN, - STATE(3532), 1, + STATE(3559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 36, - sym__line_break, + ACTIONS(6051), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -433311,14 +436970,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, @@ -433334,28 +436991,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_do, - [87348] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [87848] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6987), 1, - anon_sym_LPAREN, - STATE(3533), 1, + STATE(3560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 36, - sym__line_break, + ACTIONS(6069), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -433367,14 +437026,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, @@ -433390,91 +437047,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, - [87410] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6989), 1, - anon_sym_COMMA, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(3534), 1, - sym_heredoc_body, - STATE(3580), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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, - [87510] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [87909] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3535), 1, + ACTIONS(7003), 1, + anon_sym_of, + STATE(3561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433483,7 +437071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 37, + ACTIONS(5960), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -433521,15 +437109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [87570] = 5, + [87972] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3536), 1, + STATE(3562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433538,7 +437126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 37, + ACTIONS(6353), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -433550,69 +437139,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_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, - [87630] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7029), 1, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3537), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5934), 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_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -433630,17 +437165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [87692] = 5, + [88033] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3538), 1, + STATE(3563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433649,7 +437182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 37, + ACTIONS(6365), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -433664,11 +437197,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, @@ -433687,17 +437220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [87752] = 6, + anon_sym_else, + [88094] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_of, - STATE(3539), 1, + ACTIONS(713), 1, + sym__start_of_brace_block, + STATE(3564), 1, sym_heredoc_body, + STATE(3930), 1, + sym_do_end_block, + STATE(3931), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433706,9 +437244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 36, + ACTIONS(5694), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433743,17 +437280,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [87814] = 6, + [88161] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7034), 1, - sym_regex_modifier, - STATE(3540), 1, + ACTIONS(713), 1, + sym__start_of_brace_block, + STATE(3565), 1, sym_heredoc_body, + STATE(3935), 1, + sym_do_end_block, + STATE(3944), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433762,9 +437303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 36, + ACTIONS(5694), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433799,17 +437339,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [87876] = 6, + [88228] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7036), 1, - sym_regex_modifier, - STATE(3541), 1, + ACTIONS(713), 1, + sym__start_of_brace_block, + STATE(3566), 1, sym_heredoc_body, + STATE(3945), 1, + sym_do_end_block, + STATE(3946), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433818,9 +437362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 36, + ACTIONS(5715), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433855,17 +437398,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [87938] = 6, + [88295] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7038), 1, - anon_sym_of, - STATE(3542), 1, + ACTIONS(713), 1, + sym__start_of_brace_block, + STATE(3567), 1, sym_heredoc_body, + STATE(3963), 1, + sym_do_end_block, + STATE(3972), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433874,9 +437421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 36, + ACTIONS(5715), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433911,15 +437457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [88000] = 5, + [88362] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3543), 1, + STATE(3568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6023), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -433929,8 +437475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 36, - sym__line_break, + ACTIONS(6021), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433941,15 +437487,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, @@ -433965,26 +437508,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_else, - [88060] = 5, + anon_sym_when, + anon_sym_in, + [88423] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3544), 1, + STATE(3569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 36, + ACTIONS(6183), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -433997,13 +437543,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, @@ -434014,37 +437564,31 @@ 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_then, - [88120] = 8, + anon_sym_else, + [88484] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2043), 1, - sym__string_literal_start, - STATE(3545), 1, + STATE(3570), 1, sym_heredoc_body, - STATE(3782), 1, - aux_sym_chained_string_repeat1, - STATE(3989), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 34, + ACTIONS(5806), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434076,20 +437620,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, - [88186] = 6, + [88545] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7040), 1, - anon_sym_of, - STATE(3546), 1, + STATE(3571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434098,7 +437642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 36, + ACTIONS(5715), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -434113,6 +437657,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, @@ -434135,28 +437680,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [88248] = 6, + anon_sym_else, + [88606] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7042), 1, - anon_sym_of, - STATE(3547), 1, + STATE(3572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(4859), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 36, + ACTIONS(4861), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434169,6 +437713,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, @@ -434176,6 +437721,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, @@ -434190,18 +437736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [88310] = 6, + anon_sym_else, + [88667] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7044), 1, - anon_sym_LPAREN, - STATE(3548), 1, + STATE(3573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(6559), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434210,7 +437754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 36, + ACTIONS(6557), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -434225,6 +437769,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, @@ -434247,28 +437792,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [88372] = 6, + anon_sym_else, + [88728] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7046), 1, - anon_sym_EQ, - STATE(3549), 1, + STATE(3574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 36, + ACTIONS(4968), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434286,9 +437830,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, @@ -434302,29 +437849,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [88434] = 6, + [88789] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7048), 1, - anon_sym_of, - STATE(3550), 1, + STATE(3575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 36, + ACTIONS(4920), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434342,9 +437886,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, @@ -434358,18 +437905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [88496] = 6, + [88850] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7050), 1, - anon_sym_of, - STATE(3551), 1, + STATE(3576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434378,7 +437922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 36, + ACTIONS(6183), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -434393,6 +437937,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, @@ -434415,79 +437960,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [88558] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3552), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6536), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6534), 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, - [88618] = 5, + [88911] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3553), 1, + STATE(3577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 37, + ACTIONS(5894), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -434525,15 +438017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [88678] = 5, + [88972] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3554), 1, + STATE(3578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434542,7 +438034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 37, + ACTIONS(6249), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -434557,6 +438049,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, @@ -434575,22 +438068,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, - [88738] = 6, + anon_sym_else, + [89033] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6698), 1, - anon_sym_COLON, - STATE(3555), 1, + STATE(3579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434599,7 +438090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(5715), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -434614,6 +438105,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, @@ -434636,15 +438128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [88800] = 5, + anon_sym_else, + [89094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3556), 1, + STATE(3580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434653,7 +438146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 37, + ACTIONS(6469), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -434668,6 +438161,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, @@ -434686,32 +438180,31 @@ 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, - [88860] = 6, + anon_sym_else, + [89155] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7052), 1, - sym_regex_modifier, - STATE(3557), 1, + STATE(3581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 36, - sym__line_break, + ACTIONS(6025), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434722,15 +438215,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, @@ -434746,18 +438236,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, - [88922] = 6, + anon_sym_when, + anon_sym_in, + [89216] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7054), 1, - sym_regex_modifier, - STATE(3558), 1, + STATE(3582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434766,8 +438258,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 36, + ACTIONS(6183), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434802,29 +438295,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_else, - [88984] = 7, + [89277] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7056), 1, - anon_sym_LPAREN, - ACTIONS(7058), 1, - anon_sym_DOT, - STATE(3559), 1, + STATE(3583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(6185), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 36, + ACTIONS(6183), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434859,18 +438351,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, - [89048] = 6, + [89338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7056), 1, - anon_sym_LPAREN, - STATE(3560), 1, + STATE(3584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434879,8 +438370,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 36, + ACTIONS(6187), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434915,18 +438407,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, - [89110] = 6, + [89399] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7060), 1, - anon_sym_LPAREN, - STATE(3561), 1, + STATE(3585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -434935,8 +438426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 36, + ACTIONS(6187), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434971,181 +438463,84 @@ 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, - [89172] = 25, + [89460] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7062), 1, - anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(3562), 1, + STATE(3586), 1, sym_heredoc_body, - STATE(8249), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6189), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6187), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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, - [89272] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - ACTIONS(7102), 1, - anon_sym_COMMA, - STATE(3563), 1, - sym_heredoc_body, - STATE(3575), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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_do, - [89372] = 7, + anon_sym_else, + [89521] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7102), 1, - anon_sym_COMMA, - STATE(3564), 1, + STATE(3587), 1, sym_heredoc_body, - STATE(3575), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 35, + ACTIONS(4912), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435163,8 +438558,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, @@ -435178,107 +438577,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [89436] = 25, + [89582] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6989), 1, - anon_sym_COMMA, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(3565), 1, + STATE(3588), 1, sym_heredoc_body, - STATE(3582), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(5868), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(5866), 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(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 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, - [89536] = 8, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [89643] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7104), 1, - anon_sym_DOT, - ACTIONS(7106), 1, - sym__start_of_index_operator, - STATE(3566), 1, + STATE(3589), 1, sym_heredoc_body, - STATE(4261), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(5020), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 35, - sym__line_break, + ACTIONS(5022), 37, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -435288,14 +438663,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, @@ -435311,16 +438684,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, - [89602] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [89704] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3567), 1, + STATE(3590), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -435329,8 +438706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 37, - sym__line_break, + ACTIONS(6549), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435341,16 +438718,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, - 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, @@ -435366,18 +438739,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, - [89662] = 6, + anon_sym_when, + anon_sym_in, + [89764] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7108), 1, + ACTIONS(7005), 1, sym_regex_modifier, - STATE(3568), 1, + STATE(3591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -435386,8 +438763,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 36, + ACTIONS(5832), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435400,7 +438778,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, @@ -435422,18 +438799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [89724] = 6, + anon_sym_do, + [89826] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7110), 1, + ACTIONS(7007), 1, sym_regex_modifier, - STATE(3569), 1, + STATE(3592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -435442,8 +438819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 36, + ACTIONS(5838), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435456,7 +438834,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, @@ -435478,94 +438855,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [89786] = 25, + anon_sym_do, + [89888] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7062), 1, - anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(3570), 1, + ACTIONS(7009), 1, + anon_sym_of, + STATE(3593), 1, sym_heredoc_body, - STATE(8260), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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, - [89886] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7112), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3571), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -435574,7 +438875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 35, + ACTIONS(5844), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -435594,6 +438895,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, @@ -435610,103 +438912,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [89948] = 25, + [89950] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - ACTIONS(7115), 1, - anon_sym_COMMA, - STATE(3572), 1, - sym_heredoc_body, - STATE(3581), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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, - [90048] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7115), 1, - anon_sym_COMMA, - STATE(3573), 1, + STATE(3594), 1, sym_heredoc_body, - STATE(3581), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, + ACTIONS(5850), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -435726,6 +438950,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, @@ -435742,15 +438967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [90112] = 5, + [90010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3574), 1, + STATE(3595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 9, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -435759,8 +438984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(5162), 36, + ACTIONS(6425), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435772,7 +438997,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, @@ -435790,26 +439014,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, - [90172] = 7, + [90070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7115), 1, - anon_sym_COMMA, - STATE(3571), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3575), 1, + STATE(3596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -435818,8 +439039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, - sym__line_break, + ACTIONS(6369), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -435831,13 +439051,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, @@ -435853,25 +439072,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_do, - [90236] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [90130] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3576), 1, + STATE(3597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 37, + ACTIONS(5022), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435891,7 +439115,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -435909,27 +439132,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [90296] = 6, + [90190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7117), 1, - anon_sym_LPAREN, - STATE(3577), 1, + STATE(3598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(5864), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 36, + ACTIONS(5862), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435942,7 +439165,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, @@ -435964,77 +439186,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [90358] = 7, + anon_sym_do, + [90250] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6989), 1, + ACTIONS(7011), 1, anon_sym_COMMA, - STATE(3578), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3599), 1, sym_heredoc_body, - STATE(3580), 1, + STATE(3639), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5737), 35, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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_DOT_DOT_DOT, + ACTIONS(5750), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_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, - [90422] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [90350] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6989), 1, + ACTIONS(7011), 1, anon_sym_COMMA, - STATE(3579), 1, + STATE(3600), 1, sym_heredoc_body, - STATE(3582), 1, + STATE(3639), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436043,8 +439283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, - sym__line_break, + ACTIONS(5750), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436056,13 +439295,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_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -436079,28 +439316,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [90486] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [90414] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6989), 1, - anon_sym_COMMA, - STATE(3571), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3580), 1, + STATE(3601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, + ACTIONS(4840), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -436113,15 +439350,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, @@ -436132,80 +439367,101 @@ 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, - [90550] = 7, + anon_sym_then, + [90474] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7119), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + ACTIONS(7051), 1, anon_sym_COMMA, - STATE(3571), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3581), 1, + STATE(3602), 1, sym_heredoc_body, + STATE(3606), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5866), 35, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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_DOT_DOT_DOT, + ACTIONS(5750), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_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, - [90614] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [90574] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6989), 1, + ACTIONS(7051), 1, anon_sym_COMMA, - STATE(3571), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3582), 1, + STATE(3603), 1, sym_heredoc_body, + STATE(3606), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436214,8 +439470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 35, - sym__line_break, + ACTIONS(5750), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436227,13 +439482,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_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -436250,81 +439503,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [90678] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [90638] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3583), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + ACTIONS(7053), 1, + anon_sym_COMMA, + 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(4620), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4618), 37, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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_LPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(5856), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_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, - [90738] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [90738] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3584), 1, + ACTIONS(7053), 1, + anon_sym_COMMA, + STATE(3605), 1, sym_heredoc_body, + STATE(3607), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 36, - sym__line_break, + ACTIONS(5856), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436336,14 +439614,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_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -436360,15 +439635,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [90798] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [90802] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3585), 1, + ACTIONS(7053), 1, + anon_sym_COMMA, + STATE(3606), 1, sym_heredoc_body, + STATE(3834), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436377,7 +439659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 37, + ACTIONS(5856), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436392,7 +439674,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, @@ -436410,20 +439691,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, - [90858] = 5, + [90866] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3586), 1, + ACTIONS(7055), 1, + anon_sym_COMMA, + STATE(3607), 1, sym_heredoc_body, + STATE(3834), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436432,7 +439716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 37, + ACTIONS(5888), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436447,7 +439731,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, @@ -436465,20 +439748,25 @@ 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, - [90918] = 5, + [90930] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3587), 1, + ACTIONS(2043), 1, + sym__string_literal_start, + STATE(3608), 1, sym_heredoc_body, + STATE(3641), 1, + aux_sym_chained_string_repeat1, + STATE(3970), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436487,8 +439775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 37, - sym__start_of_brace_block, + ACTIONS(5686), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -436520,20 +439807,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, - [90978] = 5, + [90996] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3588), 1, + ACTIONS(7057), 1, + anon_sym_of, + STATE(3609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436542,7 +439829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 37, + ACTIONS(5873), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436554,12 +439842,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, @@ -436575,22 +439865,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, - [91038] = 6, + [91058] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(573), 1, - anon_sym_EQ, - STATE(3589), 1, + ACTIONS(7059), 1, + anon_sym_of, + STATE(3610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436599,7 +439885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(5744), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436611,12 +439898,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, @@ -436633,34 +439922,27 @@ 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, - [91100] = 8, + [91120] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2181), 1, - sym__string_literal_start, - STATE(3590), 1, + STATE(3611), 1, sym_heredoc_body, - STATE(3795), 1, - aux_sym_chained_string_repeat1, - STATE(4513), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, + ACTIONS(5881), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -436694,15 +439976,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [91166] = 5, + anon_sym_do, + [91180] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3591), 1, + ACTIONS(7061), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3612), 1, + sym_heredoc_body, + STATE(3774), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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, + [91280] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7101), 1, + anon_sym_COMMA, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(3613), 1, sym_heredoc_body, + STATE(3618), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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, + [91380] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7101), 1, + anon_sym_COMMA, + STATE(3614), 1, + sym_heredoc_body, + STATE(3618), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436711,7 +440148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 37, + ACTIONS(5750), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436723,12 +440161,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, @@ -436744,20 +440183,170 @@ 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, + [91444] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7061), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3615), 1, + sym_heredoc_body, + STATE(3781), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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, - [91226] = 5, + [91544] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3592), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + ACTIONS(7141), 1, + anon_sym_COMMA, + STATE(3616), 1, + sym_heredoc_body, + STATE(3619), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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, + [91644] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7141), 1, + anon_sym_COMMA, + STATE(3617), 1, sym_heredoc_body, + STATE(3619), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436766,7 +440355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 37, + ACTIONS(5856), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436778,12 +440368,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, @@ -436799,33 +440390,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, - [91286] = 7, + [91708] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - STATE(3593), 1, + ACTIONS(7141), 1, + anon_sym_COMMA, + STATE(3618), 1, sym_heredoc_body, + STATE(3770), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(5860), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 36, + ACTIONS(5856), 35, + sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -436835,12 +440425,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, @@ -436856,20 +440447,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, - [91350] = 5, + [91772] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3594), 1, + ACTIONS(7143), 1, + anon_sym_COMMA, + STATE(3619), 1, sym_heredoc_body, + STATE(3770), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436878,8 +440469,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 37, + ACTIONS(5888), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -436892,13 +440484,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, @@ -436911,20 +440501,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, - [91410] = 5, + anon_sym_do, + [91836] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3595), 1, + STATE(3620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436933,7 +440522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 37, + ACTIONS(5694), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -436971,15 +440560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [91470] = 5, + [91896] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3596), 1, + ACTIONS(7145), 1, + anon_sym_LPAREN, + STATE(3621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -436988,7 +440579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 37, + ACTIONS(5901), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -437008,7 +440599,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -437026,24 +440616,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [91530] = 5, + [91958] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3597), 1, + STATE(3622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 37, + ACTIONS(5913), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437055,12 +440647,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, @@ -437076,26 +440670,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, - [91590] = 8, + [92018] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(7125), 1, - anon_sym_DASH_GT, - STATE(3598), 1, + STATE(3623), 1, sym_heredoc_body, - STATE(10634), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -437105,8 +440689,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 33, + ACTIONS(5917), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437124,6 +440709,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, @@ -437139,15 +440725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [91656] = 5, + anon_sym_do, + [92078] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3599), 1, + STATE(3624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -437156,7 +440743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 37, + ACTIONS(5694), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437194,15 +440781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [91716] = 5, + [92138] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3600), 1, + STATE(3625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -437211,7 +440798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(145), 37, + ACTIONS(6437), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437249,15 +440836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [91776] = 5, + [92198] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3601), 1, + STATE(3626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -437266,7 +440853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 37, + ACTIONS(6437), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437304,15 +440891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [91836] = 5, + [92258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3602), 1, + STATE(3627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -437321,7 +440908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 37, + ACTIONS(5715), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437359,30 +440946,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [91896] = 7, + [92318] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7127), 1, - anon_sym_COLON_COLON, - STATE(3603), 1, + STATE(3628), 1, sym_heredoc_body, - STATE(3604), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 10, - anon_sym_RBRACK, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 33, + ACTIONS(5715), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437395,11 +440976,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, @@ -437410,36 +440993,32 @@ 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, - [91960] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [92378] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7127), 1, - anon_sym_COLON_COLON, - STATE(3604), 1, + STATE(3629), 1, sym_heredoc_body, - STATE(3606), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 10, - anon_sym_RBRACK, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 33, + ACTIONS(6469), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437452,11 +441031,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, @@ -437467,36 +441048,32 @@ 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, - [92024] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [92438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7127), 1, - anon_sym_COLON_COLON, - STATE(3605), 1, + STATE(3630), 1, sym_heredoc_body, - STATE(3607), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 10, - anon_sym_RBRACK, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 33, + ACTIONS(6469), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437509,11 +441086,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, @@ -437524,35 +441103,32 @@ 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, - [92088] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [92498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7129), 1, - anon_sym_COLON_COLON, + STATE(3631), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3606), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 10, - anon_sym_RBRACK, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 33, + ACTIONS(6485), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437565,11 +441141,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, @@ -437580,36 +441158,32 @@ 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, - [92150] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [92558] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7127), 1, - anon_sym_COLON_COLON, - STATE(3606), 1, - aux_sym_constant_repeat1, - STATE(3607), 1, + STATE(3632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 10, - anon_sym_RBRACK, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 33, + ACTIONS(6514), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437622,11 +441196,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, @@ -437637,21 +441213,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [92214] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [92618] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3608), 1, + STATE(3633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -437660,7 +441238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 37, + ACTIONS(5832), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437698,28 +441276,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [92274] = 7, + [92678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - STATE(3609), 1, + STATE(3634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6071), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 36, + ACTIONS(6069), 36, + sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -437729,12 +441307,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, @@ -437750,33 +441330,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, - [92338] = 7, + [92738] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - STATE(3610), 1, + STATE(3635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(5164), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 36, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(5166), 36, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -437787,6 +441361,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, @@ -437804,40 +441379,35 @@ 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, - [92402] = 8, + [92798] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(7125), 1, - anon_sym_DASH_GT, - STATE(3611), 1, + ACTIONS(7147), 1, + anon_sym_EQ, + STATE(3636), 1, sym_heredoc_body, - STATE(10634), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 33, + ACTIONS(5937), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437855,6 +441425,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, @@ -437870,71 +441441,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [92468] = 25, + anon_sym_do, + [92860] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7132), 1, - anon_sym_COMMA, - ACTIONS(7134), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(7136), 1, + ACTIONS(7015), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7142), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7146), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7156), 1, + ACTIONS(7037), 1, anon_sym_QMARK, - ACTIONS(7158), 1, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7160), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(3612), 1, + ACTIONS(7149), 1, + anon_sym_COMMA, + STATE(3637), 1, sym_heredoc_body, - STATE(3760), 1, + STATE(3654), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 10, + ACTIONS(5856), 10, sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, @@ -437945,15 +441517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [92568] = 5, + [92960] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3613), 1, + ACTIONS(7149), 1, + anon_sym_COMMA, + STATE(3638), 1, sym_heredoc_body, + STATE(3654), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -437962,7 +441538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 37, + ACTIONS(5856), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437977,7 +441553,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, @@ -437995,20 +441570,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, - [92628] = 5, + [93024] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3614), 1, + ACTIONS(7149), 1, + anon_sym_COMMA, + STATE(3639), 1, sym_heredoc_body, + STATE(3834), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438017,7 +441595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 37, + ACTIONS(5856), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438032,7 +441610,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, @@ -438050,20 +441627,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, - [92688] = 5, + [93088] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3615), 1, + ACTIONS(7151), 1, + anon_sym_of, + STATE(3640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438072,8 +441650,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 37, + ACTIONS(5960), 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, + [93150] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7153), 1, + sym__string_literal_start, + STATE(3970), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(3641), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5660), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -438105,20 +441741,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, - [92748] = 5, + [93214] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3616), 1, + ACTIONS(7156), 1, + anon_sym_of, + STATE(3642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438127,7 +441763,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 37, + ACTIONS(5981), 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, + [93276] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3643), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6037), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6035), 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_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [93336] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3644), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6531), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6529), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438165,15 +441910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [92808] = 5, + [93396] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3617), 1, + STATE(3645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(6535), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438182,7 +441927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 37, + ACTIONS(6533), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438220,15 +441965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [92868] = 5, + [93456] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3618), 1, + STATE(3646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438237,7 +441982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 37, + ACTIONS(6537), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438275,15 +442020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [92928] = 5, + [93516] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3619), 1, + STATE(3647), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438292,7 +442037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 37, + ACTIONS(5838), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438330,15 +442075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [92988] = 5, + [93576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3620), 1, + STATE(3648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438347,7 +442092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 37, + ACTIONS(6541), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438385,15 +442130,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93048] = 5, + [93636] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3621), 1, + STATE(3649), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6019), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + 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__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, + [93696] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438402,7 +442202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 37, + ACTIONS(6545), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438440,15 +442240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93108] = 5, + [93756] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3622), 1, + STATE(3651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438457,7 +442257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 37, + ACTIONS(6553), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438495,15 +442295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93168] = 5, + [93816] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3623), 1, + STATE(3652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438512,7 +442312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 37, + ACTIONS(6561), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438550,15 +442350,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93228] = 5, + [93876] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3624), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + ACTIONS(7158), 1, + anon_sym_COMMA, + STATE(3653), 1, sym_heredoc_body, + STATE(3879), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [93976] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7160), 1, + anon_sym_COMMA, + STATE(3654), 1, + sym_heredoc_body, + STATE(3834), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438567,7 +442446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 37, + ACTIONS(5888), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438582,7 +442461,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, @@ -438600,29 +442478,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_do, anon_sym_else, anon_sym_when, anon_sym_in, - [93288] = 5, + [94040] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3625), 1, + STATE(3655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 37, + ACTIONS(6055), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438634,12 +442513,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, @@ -438655,20 +442536,75 @@ 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, + [94100] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6963), 1, + sym__start_of_index_operator, + ACTIONS(7162), 1, + anon_sym_DOT, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(3656), 1, + sym_heredoc_body, + STATE(3786), 1, + sym__implicit_index_operator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5721), 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(5719), 34, + 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__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, - anon_sym_when, - anon_sym_in, - [93348] = 5, + [94168] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3626), 1, + STATE(3657), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438677,7 +442613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 37, + ACTIONS(6091), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438715,24 +442651,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93408] = 5, + [94228] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3627), 1, + STATE(3658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 37, + ACTIONS(5796), 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, + [94288] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3659), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6099), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6097), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438770,15 +442761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93468] = 5, + [94348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3628), 1, + STATE(3660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438787,7 +442778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 37, + ACTIONS(6097), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438825,15 +442816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93528] = 5, + [94408] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3629), 1, + STATE(3661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -438842,7 +442833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 37, + ACTIONS(6101), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438880,24 +442871,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93588] = 5, + [94468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3630), 1, + STATE(3662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 37, + ACTIONS(5806), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438909,12 +442902,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, @@ -438930,29 +442925,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, - [93648] = 5, + [94528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3631), 1, + STATE(3663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 37, + ACTIONS(5894), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -438964,12 +442957,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, @@ -438985,20 +442980,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, - [93708] = 5, + [94588] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3632), 1, + STATE(3664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439007,7 +442998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 37, + ACTIONS(6105), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439045,15 +443036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93768] = 5, + [94648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3633), 1, + STATE(3665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439062,8 +443053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 37, - sym__line_break, + ACTIONS(6109), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439074,15 +443065,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, @@ -439095,29 +443083,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [93828] = 5, + anon_sym_when, + anon_sym_in, + [94708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3634), 1, + STATE(3666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 37, + ACTIONS(6013), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439129,12 +443122,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, @@ -439150,29 +443145,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, - [93888] = 5, + [94768] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3635), 1, + STATE(3667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 37, + ACTIONS(5947), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439184,12 +443177,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, @@ -439205,29 +443200,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, - [93948] = 5, + [94828] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3636), 1, + STATE(3668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 37, + ACTIONS(5810), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439239,12 +443232,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, @@ -439260,29 +443255,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, - [94008] = 5, + [94888] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3637), 1, + STATE(3669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 37, + ACTIONS(6025), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439294,12 +443287,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, @@ -439315,20 +443310,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, - [94068] = 5, + [94948] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3638), 1, + STATE(3670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439337,7 +443328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 37, + ACTIONS(6113), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439375,15 +443366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94128] = 5, + [95008] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3639), 1, + STATE(3671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439392,7 +443383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 37, + ACTIONS(6117), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439430,15 +443421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94188] = 5, + [95068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3640), 1, + STATE(3672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439447,7 +443438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 37, + ACTIONS(6121), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439485,15 +443476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94248] = 5, + [95128] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3641), 1, + STATE(3673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439502,7 +443493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 37, + ACTIONS(5909), 37, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439514,12 +443506,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, @@ -439532,23 +443526,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, - [94308] = 5, + [95188] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3642), 1, + ACTIONS(6726), 1, + anon_sym_COLON, + STATE(3674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439557,7 +443550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 37, + ACTIONS(173), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439569,12 +443563,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, @@ -439590,20 +443586,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, - [94368] = 5, + [95250] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3643), 1, + STATE(3675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439612,7 +443604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 37, + ACTIONS(6183), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439650,15 +443642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94428] = 5, + [95310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3644), 1, + STATE(3676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439667,7 +443659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 37, + ACTIONS(6183), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439705,90 +443697,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94488] = 25, + [95370] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7132), 1, - anon_sym_COMMA, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(3645), 1, + STATE(3677), 1, sym_heredoc_body, - STATE(3763), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(6185), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(6183), 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(7164), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 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, - [94588] = 5, + [95430] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3646), 1, + STATE(3678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439797,7 +443769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 37, + ACTIONS(6183), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439835,15 +443807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94648] = 5, + [95490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3647), 1, + STATE(3679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439852,7 +443824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 37, + ACTIONS(6187), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439890,15 +443862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94708] = 5, + [95550] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3648), 1, + STATE(3680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439907,7 +443879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 37, + ACTIONS(6187), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -439945,15 +443917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94768] = 5, + [95610] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3649), 1, + STATE(3681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -439962,7 +443934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 37, + ACTIONS(6187), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440000,15 +443972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94828] = 5, + [95670] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3650), 1, + STATE(3682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440017,7 +443989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 37, + ACTIONS(6187), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440055,15 +444027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94888] = 5, + [95730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3651), 1, + STATE(3683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440072,7 +444044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 37, + ACTIONS(6191), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440110,25 +444082,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94948] = 5, + [95790] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3652), 1, + STATE(3684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 37, - sym__start_of_brace_block, + ACTIONS(5881), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440139,12 +444112,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, @@ -440160,20 +444136,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, - [95008] = 5, + [95850] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3653), 1, + STATE(3685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440182,7 +444154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 37, + ACTIONS(6195), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440220,15 +444192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95068] = 5, + [95910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3654), 1, + STATE(3686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440237,7 +444209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 37, + ACTIONS(6199), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440275,15 +444247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95128] = 5, + [95970] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3655), 1, + STATE(3687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440292,7 +444264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 37, + ACTIONS(6203), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440330,15 +444302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95188] = 5, + [96030] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3656), 1, + STATE(3688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6209), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440347,7 +444319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 37, + ACTIONS(6207), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440385,15 +444357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95248] = 5, + [96090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3657), 1, + STATE(3689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440402,7 +444374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 37, + ACTIONS(6211), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440440,15 +444412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95308] = 5, + [96150] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3658), 1, + STATE(3690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440457,7 +444429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 37, + ACTIONS(6215), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440495,15 +444467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95368] = 5, + [96210] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3659), 1, + STATE(3691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440512,7 +444484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 37, + ACTIONS(6035), 37, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440524,12 +444497,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, @@ -440542,23 +444517,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, - [95428] = 5, + [96270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3660), 1, + STATE(3692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440567,7 +444539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 37, + ACTIONS(6219), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440605,15 +444577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95488] = 5, + [96330] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3661), 1, + STATE(3693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440622,7 +444594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 37, + ACTIONS(6223), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440660,15 +444632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95548] = 5, + [96390] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3662), 1, + STATE(3694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440677,7 +444649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 37, + ACTIONS(6237), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440715,25 +444687,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95608] = 5, + [96450] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3663), 1, + ACTIONS(7166), 1, + anon_sym_LPAREN, + ACTIONS(7168), 1, + anon_sym_DOT, + STATE(3695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 37, - sym__start_of_brace_block, + ACTIONS(6039), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440744,12 +444719,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, @@ -440765,20 +444743,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, - [95668] = 5, + [96514] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3664), 1, + ACTIONS(7170), 1, + anon_sym_LPAREN, + STATE(3696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440787,8 +444763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 37, - sym__start_of_brace_block, + ACTIONS(5901), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440799,12 +444775,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, @@ -440820,30 +444799,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, - [95728] = 5, + [96576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3665), 1, + STATE(3697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 37, - sym__start_of_brace_block, + ACTIONS(5913), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440854,12 +444830,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, @@ -440875,20 +444854,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, - [95788] = 5, + [96636] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3666), 1, + STATE(3698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440897,7 +444872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 37, + ACTIONS(6309), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440935,15 +444910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95848] = 5, + [96696] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3667), 1, + STATE(3699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -440952,7 +444927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 37, + ACTIONS(6313), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440990,25 +444965,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95908] = 5, + [96756] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3668), 1, + STATE(3700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 37, - sym__start_of_brace_block, + ACTIONS(5917), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441019,12 +444995,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, @@ -441040,20 +445019,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, - [95968] = 5, + [96816] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3669), 1, + ACTIONS(7166), 1, + anon_sym_LPAREN, + STATE(3701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441062,8 +445039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 37, - sym__start_of_brace_block, + ACTIONS(6039), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441074,12 +445051,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, @@ -441095,20 +445075,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, - [96028] = 5, + [96878] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3670), 1, + ACTIONS(7172), 1, + anon_sym_LPAREN, + STATE(3702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441117,8 +445095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 37, - sym__start_of_brace_block, + ACTIONS(6061), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441129,12 +445107,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, @@ -441150,20 +445131,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, - [96088] = 5, + [96940] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3671), 1, + ACTIONS(7174), 1, + anon_sym_EQ, + STATE(3703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441172,7 +445151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 37, + ACTIONS(5937), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441205,20 +445184,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, - [96148] = 5, + [97002] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3672), 1, + STATE(3704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441227,7 +445205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 37, + ACTIONS(6317), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441265,15 +445243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96208] = 5, + [97062] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3673), 1, + STATE(3705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441282,7 +445260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 37, + ACTIONS(6321), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441320,15 +445298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96268] = 5, + [97122] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3674), 1, + STATE(3706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441337,7 +445315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 37, + ACTIONS(6325), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441375,15 +445353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96328] = 5, + [97182] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3675), 1, + STATE(3707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441392,7 +445370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 37, + ACTIONS(6325), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441430,15 +445408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96388] = 5, + [97242] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3676), 1, + STATE(3708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441447,7 +445425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 37, + ACTIONS(6329), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441485,15 +445463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96448] = 5, + [97302] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3677), 1, + STATE(3709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441502,7 +445480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 37, + ACTIONS(6333), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441540,15 +445518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96508] = 5, + [97362] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3678), 1, + STATE(3710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441557,7 +445535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 37, + ACTIONS(6337), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441595,17 +445573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96568] = 6, + [97422] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7168), 1, - anon_sym_EQ, - STATE(3679), 1, + STATE(3711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441614,7 +445590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 36, + ACTIONS(6341), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441647,19 +445623,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, - [96630] = 5, + [97482] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3680), 1, + STATE(3712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441668,7 +445645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 37, + ACTIONS(6345), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441706,15 +445683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96690] = 5, + [97542] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3681), 1, + STATE(3713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441723,7 +445700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 37, + ACTIONS(6349), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441761,18 +445738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96750] = 6, + [97602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7170), 1, - anon_sym_COMMA, + STATE(3714), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3682), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441781,8 +445755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 35, - sym__line_break, + ACTIONS(6357), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441793,14 +445767,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, @@ -441816,16 +445788,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, - [96812] = 5, + anon_sym_when, + anon_sym_in, + [97662] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3683), 1, + STATE(3715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441834,7 +445810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 37, + ACTIONS(6375), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441872,15 +445848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96872] = 5, + [97722] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3684), 1, + STATE(3716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441889,7 +445865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 37, + ACTIONS(6381), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441927,15 +445903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96932] = 5, + [97782] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3685), 1, + STATE(3717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441944,7 +445920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 37, + ACTIONS(6385), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -441982,15 +445958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96992] = 5, + [97842] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3686), 1, + STATE(3718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -441999,7 +445975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 37, + ACTIONS(6393), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442037,15 +446013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97052] = 5, + [97902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3687), 1, + STATE(3719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442054,7 +446030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 37, + ACTIONS(6401), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442092,15 +446068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97112] = 5, + [97962] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3688), 1, + STATE(3720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442109,7 +446085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 37, + ACTIONS(6405), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442147,15 +446123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97172] = 5, + [98022] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3689), 1, + STATE(3721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442164,7 +446140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 37, + ACTIONS(6409), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442202,15 +446178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97232] = 5, + [98082] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3690), 1, + STATE(3722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6431), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442219,7 +446195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 37, + ACTIONS(6429), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442257,21 +446233,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97292] = 8, + [98142] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2043), 1, + STATE(3723), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5816), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5814), 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, sym__string_literal_start, - STATE(3545), 1, - aux_sym_chained_string_repeat1, - STATE(3691), 1, + 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, + [98202] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3724), 1, sym_heredoc_body, - STATE(3989), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442280,7 +446305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, + ACTIONS(6441), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442312,18 +446338,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, - [97358] = 5, + [98262] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3692), 1, + STATE(3725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442332,7 +446360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 37, + ACTIONS(6449), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442370,15 +446398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97418] = 5, + [98322] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3693), 1, + STATE(3726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442387,7 +446415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 37, + ACTIONS(6453), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442425,15 +446453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97478] = 5, + [98382] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3694), 1, + STATE(3727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442442,7 +446470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 37, + ACTIONS(6461), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442480,15 +446508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97538] = 5, + [98442] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3695), 1, + ACTIONS(7176), 1, + anon_sym_COMMA, + STATE(3728), 1, sym_heredoc_body, + STATE(3770), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442497,7 +446529,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6125), 37, + ACTIONS(5888), 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__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, + [98506] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3729), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6071), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6069), 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, + [98566] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3730), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6467), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6465), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442535,15 +446675,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97598] = 5, + [98626] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3696), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + ACTIONS(7178), 1, + anon_sym_COMMA, + STATE(3731), 1, sym_heredoc_body, + STATE(3804), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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, + [98726] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3732), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6475), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442552,7 +446767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 37, + ACTIONS(6473), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442590,15 +446805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97658] = 5, + [98786] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3697), 1, + STATE(3733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442607,7 +446822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 37, + ACTIONS(6477), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442645,15 +446860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97718] = 5, + [98846] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3698), 1, + ACTIONS(6706), 1, + anon_sym_COLON, + STATE(3734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442662,7 +446879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 37, + ACTIONS(173), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442695,24 +446912,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, - [97778] = 7, + [98908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6665), 1, - anon_sym_LPAREN2, - ACTIONS(7173), 1, - anon_sym_EQ, - STATE(3699), 1, + STATE(3735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442721,8 +446933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 35, - sym__line_break, + ACTIONS(6481), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442733,14 +446945,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, @@ -442756,16 +446966,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, - [97842] = 5, + anon_sym_when, + anon_sym_in, + [98968] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3700), 1, + STATE(3736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442774,7 +446988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 37, + ACTIONS(6493), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442812,15 +447026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97902] = 5, + [99028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3701), 1, + STATE(3737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442829,7 +447043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 37, + ACTIONS(6497), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442867,15 +447081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97962] = 5, + [99088] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3702), 1, + STATE(3738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(6503), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442884,7 +447098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 37, + ACTIONS(6501), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442922,15 +447136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98022] = 5, + [99148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3703), 1, + STATE(3739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442939,7 +447153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 37, + ACTIONS(6505), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -442977,15 +447191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98082] = 5, + [99208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3704), 1, + STATE(3740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -442994,7 +447208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 37, + ACTIONS(6565), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443032,24 +447246,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98142] = 5, + [99268] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3705), 1, + STATE(3741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 37, + ACTIONS(6047), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443061,12 +447277,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, @@ -443082,29 +447300,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, - [98202] = 5, + [99328] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3706), 1, + STATE(3742), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 37, + ACTIONS(6051), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443116,12 +447332,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, @@ -443137,29 +447355,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, - [98262] = 5, + [99388] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3707), 1, + STATE(3743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 37, + ACTIONS(5951), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443171,12 +447387,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, @@ -443192,29 +447410,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, - [98322] = 5, + [99448] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3708), 1, + STATE(3744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 37, + ACTIONS(5925), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443226,12 +447442,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, @@ -443247,29 +447465,80 @@ 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, - [98382] = 5, + [99508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3709), 1, + STATE(3745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6023), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 37, + ACTIONS(6021), 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, + [99568] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3746), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6231), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6229), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443307,15 +447576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98442] = 5, + [99628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3710), 1, + STATE(3747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -443324,7 +447593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 37, + ACTIONS(6267), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443362,15 +447631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98502] = 5, + [99688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3711), 1, + STATE(3748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -443379,7 +447648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 37, + ACTIONS(6257), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443417,15 +447686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98562] = 5, + [99748] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3712), 1, + STATE(3749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -443434,7 +447703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 37, + ACTIONS(6365), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443472,15 +447741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98622] = 5, + [99808] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3713), 1, + STATE(3750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(6559), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -443489,7 +447758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 37, + ACTIONS(6557), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443527,15 +447796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98682] = 5, + [99868] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3714), 1, + STATE(3751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -443544,7 +447813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6223), 37, + ACTIONS(6249), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443582,24 +447851,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98742] = 5, + [99928] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3715), 1, + STATE(3752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 37, + ACTIONS(5669), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443611,12 +447882,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, @@ -443632,29 +447905,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, - [98802] = 5, + [99988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3716), 1, + STATE(3753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 37, + ACTIONS(5818), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443666,12 +447937,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, @@ -443687,29 +447960,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, - [98862] = 5, + [100048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3717), 1, + STATE(3754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 37, + ACTIONS(5818), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443721,12 +447992,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, @@ -443742,29 +448015,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, - [98922] = 5, + [100108] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3718), 1, + STATE(3755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 37, + ACTIONS(5822), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443776,12 +448047,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, @@ -443797,29 +448070,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, - [98982] = 5, + [100168] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3719), 1, + STATE(3756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 37, + ACTIONS(6009), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443831,12 +448102,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, @@ -443852,29 +448125,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, - [99042] = 5, + [100228] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3720), 1, + STATE(3757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(5945), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 37, + ACTIONS(5943), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443886,12 +448157,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, @@ -443907,20 +448180,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, - [99102] = 5, + [100288] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3721), 1, + ACTIONS(7180), 1, + anon_sym_of, + STATE(3758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -443929,7 +448200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 37, + ACTIONS(5826), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -443941,12 +448213,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, @@ -443962,20 +448236,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, - [99162] = 5, + [100350] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3722), 1, + STATE(3759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(6289), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -443984,7 +448254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 37, + ACTIONS(6287), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -444022,24 +448292,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99222] = 5, + [100410] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3723), 1, + STATE(3760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(5979), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 37, + ACTIONS(5977), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -444051,12 +448323,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, @@ -444072,29 +448346,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, - [99282] = 5, + [100470] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3724), 1, + STATE(3761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 37, + ACTIONS(5987), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -444106,12 +448378,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, @@ -444127,29 +448401,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, - [99342] = 5, + [100530] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3725), 1, + STATE(3762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 37, + ACTIONS(5987), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -444161,12 +448433,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, @@ -444182,29 +448456,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, - [99402] = 5, + [100590] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3726), 1, + STATE(3763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 37, + ACTIONS(5991), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -444216,12 +448488,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, @@ -444237,99 +448511,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, - anon_sym_when, - anon_sym_in, - [99462] = 25, + [100650] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, + ACTIONS(7063), 1, anon_sym_DOT_DOT, - ACTIONS(7136), 1, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7142), 1, + ACTIONS(7073), 1, anon_sym_CARET, - ACTIONS(7146), 1, + ACTIONS(7077), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, + ACTIONS(7083), 1, anon_sym_AMP_STAR, - ACTIONS(7156), 1, + ACTIONS(7087), 1, anon_sym_QMARK, - ACTIONS(7158), 1, + ACTIONS(7089), 1, anon_sym_AMP_AMP, - ACTIONS(7160), 1, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, sym_binary_ampersand, - ACTIONS(7175), 1, + ACTIONS(7182), 1, anon_sym_COMMA, - STATE(3727), 1, + STATE(3764), 1, sym_heredoc_body, - STATE(3735), 1, + STATE(8303), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, + ACTIONS(7085), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(7069), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, + ACTIONS(7079), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, + ACTIONS(7097), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 10, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ_GT, + ACTIONS(5750), 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, - [99562] = 7, + [100750] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7175), 1, + ACTIONS(7061), 1, anon_sym_COMMA, - STATE(3728), 1, + STATE(3765), 1, sym_heredoc_body, - STATE(3735), 1, + STATE(3774), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -444338,8 +448608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 35, - sym__start_of_brace_block, + ACTIONS(5750), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -444350,11 +448620,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_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -444370,29 +448643,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_else, - anon_sym_when, - anon_sym_in, - [99626] = 5, + [100814] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3729), 1, + STATE(3766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 37, - sym__start_of_brace_block, + ACTIONS(6017), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -444403,12 +448674,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, @@ -444424,20 +448698,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, - [99686] = 5, + [100874] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3730), 1, + ACTIONS(7184), 1, + sym_regex_modifier, + STATE(3767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -444446,8 +448718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 37, - sym__start_of_brace_block, + ACTIONS(5832), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -444458,12 +448730,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, @@ -444479,29 +448754,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, - [99746] = 5, + [100936] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3731), 1, + STATE(3768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(5923), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 37, + ACTIONS(5921), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -444513,12 +448786,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, @@ -444534,99 +448809,74 @@ 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, - [99806] = 25, + [100996] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - ACTIONS(7177), 1, - anon_sym_COMMA, - STATE(3732), 1, + STATE(3769), 1, sym_heredoc_body, - STATE(3736), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(5968), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(5966), 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(7164), 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, - ACTIONS(5811), 10, - sym__start_of_brace_block, - 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, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [99906] = 7, + [101056] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7177), 1, + ACTIONS(7186), 1, anon_sym_COMMA, - STATE(3733), 1, - sym_heredoc_body, - STATE(3736), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + STATE(3770), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -444635,7 +448885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, + ACTIONS(5970), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -444647,11 +448898,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_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -444668,18 +448921,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, - [99970] = 5, + [101118] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3734), 1, + STATE(3771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(5168), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -444688,8 +448938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 37, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(5170), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -444701,6 +448951,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, @@ -444718,37 +448969,32 @@ 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, - [100030] = 7, + [101178] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7177), 1, - anon_sym_COMMA, - STATE(3537), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3735), 1, + STATE(3772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(4859), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, - sym__start_of_brace_block, + ACTIONS(4861), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -444762,9 +449008,11 @@ 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_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -444779,23 +449027,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_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [100094] = 7, + [101238] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7179), 1, + ACTIONS(7061), 1, anon_sym_COMMA, - STATE(3537), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3736), 1, + STATE(3773), 1, sym_heredoc_body, + STATE(3781), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -444804,8 +449052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 35, - sym__start_of_brace_block, + ACTIONS(5856), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -444816,11 +449064,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_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -444836,182 +449087,193 @@ 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, - [100158] = 25, + [101302] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - ACTIONS(7181), 1, + ACTIONS(7061), 1, anon_sym_COMMA, - STATE(3737), 1, + STATE(3774), 1, sym_heredoc_body, - STATE(3752), 1, + STATE(3828), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(5860), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(5856), 35, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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, - [100258] = 25, + [101366] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, + STATE(3775), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5804), 9, anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, anon_sym_DOT, - ACTIONS(6999), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, anon_sym_EQ_EQ, - ACTIONS(7011), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(5802), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(7027), 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(7183), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__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, - STATE(3738), 1, - sym_heredoc_body, - STATE(3743), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [101426] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3776), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6087), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(6085), 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(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 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, - [100358] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [101486] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7183), 1, - anon_sym_COMMA, - STATE(3739), 1, + STATE(3777), 1, sym_heredoc_body, - STATE(3743), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5868), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 35, + ACTIONS(5866), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -445031,6 +449293,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, @@ -445047,169 +449310,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [100422] = 25, + [101546] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7064), 1, + ACTIONS(7189), 1, + sym_regex_modifier, + STATE(3778), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5840), 8, anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, anon_sym_DOT, - ACTIONS(7072), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(5838), 36, + sym__line_break, sym__start_of_index_operator, - ACTIONS(7100), 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(7181), 1, + 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, - STATE(3740), 1, - sym_heredoc_body, - STATE(3754), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [101608] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3779), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6057), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6055), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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, - [100522] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 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(7017), 1, anon_sym_AMP_AMP, - ACTIONS(7019), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - ACTIONS(7185), 1, - anon_sym_COMMA, - STATE(3741), 1, + anon_sym_else, + [101668] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3780), 1, sym_heredoc_body, - STATE(3744), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(4620), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(4618), 37, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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_LPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_do, - [100622] = 7, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [101728] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7185), 1, + ACTIONS(7061), 1, anon_sym_COMMA, - STATE(3742), 1, + STATE(3781), 1, sym_heredoc_body, - STATE(3744), 1, + STATE(3828), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -445218,9 +449497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, + ACTIONS(5888), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445233,6 +449511,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, @@ -445253,31 +449532,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [100686] = 7, + anon_sym_else, + [101792] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7185), 1, - anon_sym_COMMA, - STATE(3571), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3743), 1, + STATE(3782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, + ACTIONS(6047), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445290,11 +449565,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, @@ -445310,31 +449587,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [100750] = 7, + anon_sym_else, + [101852] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7187), 1, - anon_sym_COMMA, - STATE(3571), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3744), 1, + STATE(3783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 35, + ACTIONS(6051), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445347,11 +449620,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, @@ -445367,29 +449642,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [100814] = 7, + anon_sym_else, + [101912] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7181), 1, - anon_sym_COMMA, - STATE(3745), 1, + STATE(3784), 1, sym_heredoc_body, - STATE(3752), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 35, + ACTIONS(5951), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -445409,6 +449681,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, @@ -445425,104 +449698,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [100878] = 25, + [101972] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, + STATE(3785), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5927), 9, anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, + ACTIONS(5925), 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, - ACTIONS(7189), 1, + 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, - STATE(3746), 1, - sym_heredoc_body, - STATE(3787), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7144), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [102032] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3786), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6023), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(6021), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 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(5811), 10, - sym__start_of_brace_block, - 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_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_else, - anon_sym_when, - anon_sym_in, - [100978] = 7, + [102092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7189), 1, - anon_sym_COMMA, - STATE(3747), 1, - sym_heredoc_body, STATE(3787), 1, - aux_sym_argument_list_no_parens_repeat1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, - sym__start_of_brace_block, + ACTIONS(5796), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445533,11 +449838,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, @@ -445553,33 +449862,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_else, - anon_sym_when, - anon_sym_in, - [101042] = 7, + [102152] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7189), 1, - anon_sym_COMMA, - STATE(3537), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3748), 1, + STATE(3788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, - sym__start_of_brace_block, + ACTIONS(5850), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445590,11 +449893,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, @@ -445610,21 +449917,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_else, - anon_sym_when, - anon_sym_in, - [101106] = 6, + [102212] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6729), 1, - anon_sym_COLON, - STATE(3749), 1, + ACTIONS(7191), 1, + anon_sym_of, + STATE(3789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -445633,8 +449937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, - sym__start_of_brace_block, + ACTIONS(5844), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445645,12 +449949,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, @@ -445666,29 +449973,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_else, - anon_sym_when, - anon_sym_in, - [101168] = 5, + [102274] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3750), 1, + ACTIONS(7193), 1, + anon_sym_of, + STATE(3790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 36, + ACTIONS(5744), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445699,14 +450005,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_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, @@ -445721,23 +450029,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, - [101228] = 7, + [102336] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7181), 1, - anon_sym_COMMA, - STATE(3751), 1, + ACTIONS(7195), 1, + anon_sym_of, + STATE(3791), 1, sym_heredoc_body, - STATE(3754), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -445746,7 +450049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, + ACTIONS(5981), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -445766,6 +450069,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, @@ -445782,28 +450086,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [101292] = 7, + [102398] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7181), 1, - anon_sym_COMMA, - STATE(3682), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3752), 1, + STATE(3792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, + ACTIONS(5806), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -445823,6 +450124,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, @@ -445839,15 +450141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [101356] = 5, + [102458] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3753), 1, + STATE(3793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -445856,8 +450158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 37, - sym__start_of_brace_block, + ACTIONS(4622), 37, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445868,12 +450170,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_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -445889,33 +450195,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, - anon_sym_when, - anon_sym_in, - [101416] = 7, + [102518] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7181), 1, - anon_sym_COMMA, - STATE(3682), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3754), 1, + STATE(3794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 35, + ACTIONS(5669), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -445935,6 +450234,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, @@ -445951,17 +450251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [101480] = 6, + [102578] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6665), 1, - anon_sym_LPAREN2, - STATE(3755), 1, + ACTIONS(7178), 1, + anon_sym_COMMA, + STATE(3795), 1, sym_heredoc_body, + STATE(3799), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -445970,8 +450272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(5750), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445984,13 +450287,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, @@ -446006,27 +450307,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [101542] = 6, + anon_sym_do, + [102642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6688), 1, - anon_sym_COLON, - STATE(3756), 1, + STATE(3796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(5818), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -446063,29 +450363,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [101604] = 7, + [102702] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7132), 1, - anon_sym_COMMA, - STATE(3757), 1, + STATE(3797), 1, sym_heredoc_body, - STATE(3760), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 35, - sym__start_of_brace_block, + ACTIONS(5818), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446096,11 +450393,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, @@ -446116,19 +450417,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, - [101668] = 5, + [102762] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3758), 1, + ACTIONS(7178), 1, + anon_sym_COMMA, + STATE(3798), 1, sym_heredoc_body, + STATE(3804), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -446137,7 +450439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 37, + ACTIONS(5856), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -446149,12 +450452,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, @@ -446170,24 +450474,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, - [101728] = 7, + [102826] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7132), 1, + ACTIONS(7178), 1, anon_sym_COMMA, - STATE(3759), 1, - sym_heredoc_body, - STATE(3763), 1, + STATE(3770), 1, aux_sym_argument_list_no_parens_repeat1, + STATE(3799), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -446196,7 +450496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, + ACTIONS(5856), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -446208,11 +450509,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_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -446229,32 +450532,26 @@ 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, - [101792] = 7, + [102890] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7132), 1, - anon_sym_COMMA, - STATE(3537), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3760), 1, + STATE(3800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, - sym__start_of_brace_block, + ACTIONS(5822), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446265,11 +450562,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, @@ -446285,34 +450586,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_else, - anon_sym_when, - anon_sym_in, - [101856] = 8, + [102950] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7191), 1, - anon_sym_DOT, - ACTIONS(7193), 1, - sym__start_of_index_operator, - STATE(3761), 1, + STATE(3801), 1, sym_heredoc_body, - STATE(3769), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(6011), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 35, - sym__start_of_brace_block, + ACTIONS(6009), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -446322,12 +450617,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, @@ -446343,29 +450641,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_else, - anon_sym_when, - anon_sym_in, - [101922] = 5, + [103010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3762), 1, + STATE(3802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5945), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 37, - sym__start_of_brace_block, + ACTIONS(5943), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446376,12 +450672,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, @@ -446397,34 +450696,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, - [101982] = 7, + [103070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7132), 1, - anon_sym_COMMA, - STATE(3537), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3763), 1, + STATE(3803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 35, - sym__start_of_brace_block, + ACTIONS(5894), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446435,11 +450727,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, @@ -446455,19 +450751,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, - [102046] = 5, + [103130] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3764), 1, + ACTIONS(7178), 1, + anon_sym_COMMA, + STATE(3770), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -446476,7 +450773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 37, + ACTIONS(5888), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -446488,12 +450786,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, @@ -446509,20 +450808,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, - [102106] = 5, + [103194] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3765), 1, + ACTIONS(7197), 1, + sym_regex_modifier, + STATE(3805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -446531,8 +450828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 37, - sym__start_of_brace_block, + ACTIONS(5995), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446543,12 +450840,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, @@ -446564,30 +450864,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, - [102166] = 5, + [103256] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3766), 1, + STATE(3806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 37, - sym__start_of_brace_block, + ACTIONS(6013), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446598,12 +450895,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, @@ -446619,20 +450919,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, - [102226] = 5, + [103316] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3767), 1, + ACTIONS(2157), 1, + sym__string_literal_start, + STATE(3807), 1, sym_heredoc_body, + STATE(3824), 1, + aux_sym_chained_string_repeat1, + STATE(4412), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -446641,8 +450943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 37, - sym__start_of_brace_block, + ACTIONS(5686), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446653,12 +450955,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, @@ -446674,30 +450978,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, - anon_sym_when, - anon_sym_in, - [102286] = 5, + [103382] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3768), 1, + STATE(3808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(5979), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 37, - sym__start_of_brace_block, + ACTIONS(5977), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446708,12 +451008,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, @@ -446729,30 +451032,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, - [102346] = 5, + [103442] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3769), 1, + STATE(3809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 37, - sym__start_of_brace_block, + ACTIONS(5987), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446763,12 +451063,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, @@ -446784,30 +451087,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, - [102406] = 5, + [103502] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3770), 1, + STATE(3810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 37, - sym__start_of_brace_block, + ACTIONS(5987), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446818,12 +451118,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, @@ -446839,20 +451142,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, - [102466] = 5, + [103562] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3771), 1, + STATE(3811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -446861,7 +451160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 37, + ACTIONS(4622), 37, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -446873,12 +451173,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_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -446894,30 +451197,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, - [102526] = 5, + [103622] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3772), 1, + STATE(3812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 37, - sym__start_of_brace_block, + ACTIONS(5991), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446928,12 +451228,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, @@ -446949,30 +451252,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, - [102586] = 5, + [103682] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3773), 1, + STATE(3813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 37, - sym__start_of_brace_block, + ACTIONS(5947), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446983,12 +451283,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, @@ -447004,30 +451307,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, - [102646] = 5, + [103742] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3774), 1, + STATE(3814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 37, - sym__start_of_brace_block, + ACTIONS(5810), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -447038,12 +451338,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, @@ -447059,30 +451362,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, - [102706] = 5, + [103802] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3775), 1, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(6981), 1, + anon_sym_DASH_GT, + STATE(3815), 1, sym_heredoc_body, + STATE(10409), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 37, - sym__start_of_brace_block, + ACTIONS(5022), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -447096,8 +451401,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, @@ -447115,29 +451418,29 @@ 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, - [102766] = 5, + [103868] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3776), 1, + STATE(3816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 37, - sym__start_of_brace_block, + ACTIONS(6025), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -447148,12 +451451,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, @@ -447169,20 +451475,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, - [102826] = 5, + [103928] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3777), 1, + STATE(3817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -447191,7 +451493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 37, + ACTIONS(173), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -447229,15 +451531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102886] = 5, + [103988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3778), 1, + STATE(3818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -447246,7 +451548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 37, + ACTIONS(6075), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -447284,15 +451586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102946] = 5, + [104048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3779), 1, + STATE(3819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -447301,7 +451603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 37, + ACTIONS(6079), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -447339,25 +451641,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103006] = 5, + [104108] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3780), 1, + STATE(3820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(5864), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 37, - sym__start_of_brace_block, + ACTIONS(5862), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -447368,12 +451671,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, @@ -447389,132 +451695,91 @@ 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, - [103066] = 5, + [104168] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3781), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6437), 8, + ACTIONS(7063), 1, anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7071), 1, anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7083), 1, anon_sym_AMP_STAR, - ACTIONS(6435), 37, - sym__start_of_brace_block, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 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(7099), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(7182), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + STATE(3821), 1, + sym_heredoc_body, + STATE(8306), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(7085), 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, - [103126] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7195), 1, - sym__string_literal_start, - STATE(3989), 1, - sym_string, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3782), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5651), 34, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 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(5856), 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_else, - anon_sym_when, - anon_sym_in, - [103190] = 5, + [104268] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3783), 1, + STATE(3822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 9, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -447523,8 +451788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(5170), 36, + ACTIONS(6179), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -447536,7 +451801,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, @@ -447554,24 +451818,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_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [103250] = 6, + [104328] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7198), 1, - anon_sym_of, - STATE(3784), 1, + ACTIONS(573), 1, + anon_sym_EQ, + STATE(3823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -447580,8 +451845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 36, - sym__line_break, + ACTIONS(173), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -447592,15 +451857,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, @@ -447616,18 +451878,24 @@ 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, - [103312] = 6, + anon_sym_when, + anon_sym_in, + [104390] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7200), 1, - anon_sym_of, - STATE(3785), 1, - sym_heredoc_body, + ACTIONS(7199), 1, + sym__string_literal_start, + STATE(4412), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + STATE(3824), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -447636,7 +451904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 36, + ACTIONS(5660), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -447650,7 +451918,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, @@ -447672,28 +451939,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [103374] = 6, + [104454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7202), 1, - anon_sym_of, - STATE(3786), 1, + STATE(3825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 36, + ACTIONS(5022), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -447706,7 +451972,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, @@ -447728,71 +451993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [103436] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7204), 1, - anon_sym_COMMA, - STATE(3537), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3787), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5870), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5866), 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_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, - [103500] = 6, + [104514] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(341), 1, - anon_sym_EQ, - STATE(3788), 1, + ACTIONS(2157), 1, + sym__string_literal_start, + STATE(3807), 1, + aux_sym_chained_string_repeat1, + STATE(3826), 1, sym_heredoc_body, + STATE(4412), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, @@ -447805,7 +452017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(173), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -447819,7 +452031,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, @@ -447841,18 +452052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [103562] = 6, + [104580] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7206), 1, - anon_sym_of, - STATE(3789), 1, + ACTIONS(6694), 1, + anon_sym_LPAREN2, + STATE(3827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -447861,7 +452071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 36, + ACTIONS(173), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -447898,17 +452108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [103624] = 6, + [104642] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7208), 1, - anon_sym_of, - STATE(3790), 1, - sym_heredoc_body, + ACTIONS(7202), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + STATE(3828), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -447917,7 +452128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 36, + ACTIONS(5970), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -447937,7 +452148,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, @@ -447954,73 +452164,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [103686] = 6, + [104704] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7210), 1, - anon_sym_EQ, - STATE(3791), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + ACTIONS(7205), 1, + anon_sym_COMMA, + STATE(3829), 1, sym_heredoc_body, + STATE(3874), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5831), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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_else, - [103748] = 6, + anon_sym_do, + [104804] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7212), 1, - anon_sym_of, - STATE(3792), 1, + ACTIONS(7205), 1, + anon_sym_COMMA, + STATE(3830), 1, sym_heredoc_body, + STATE(3874), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -448029,8 +452260,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 36, + ACTIONS(5750), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -448043,13 +452275,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, @@ -448065,31 +452295,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [103810] = 8, + anon_sym_do, + [104868] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - anon_sym_DOT, - ACTIONS(7216), 1, - sym__start_of_index_operator, - STATE(3793), 1, + ACTIONS(7207), 1, + sym_regex_modifier, + STATE(3831), 1, sym_heredoc_body, - STATE(4141), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(6031), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 35, + ACTIONS(6029), 36, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -448124,15 +452352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [103876] = 5, + [104930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3794), 1, + STATE(3832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -448141,8 +452369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 37, - sym__line_break, + ACTIONS(6233), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -448153,16 +452381,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_LPAREN, + 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, @@ -448178,22 +452402,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, - [103936] = 8, + anon_sym_when, + anon_sym_in, + [104990] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2181), 1, - sym__string_literal_start, - STATE(3795), 1, + STATE(3833), 1, sym_heredoc_body, - STATE(3800), 1, - aux_sym_chained_string_repeat1, - STATE(4513), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -448202,8 +452424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 34, - sym__line_break, + ACTIONS(5970), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -448214,14 +452436,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, @@ -448237,15 +452457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [104002] = 5, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [105050] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3796), 1, - sym_heredoc_body, + ACTIONS(7209), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + STATE(3834), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -448254,7 +452482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 37, + ACTIONS(5970), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -448269,7 +452497,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, @@ -448287,36 +452514,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_do, anon_sym_else, anon_sym_when, anon_sym_in, - [104062] = 8, + [105112] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(6946), 1, - anon_sym_DASH_GT, - STATE(3797), 1, + STATE(3835), 1, sym_heredoc_body, - STATE(10516), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 33, + ACTIONS(4618), 37, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -448327,10 +452548,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_EQ_GT, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -448346,98 +452572,74 @@ 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, - [104128] = 25, + anon_sym_do, + [105172] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - ACTIONS(7218), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(3748), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3798), 1, + ACTIONS(7212), 1, + anon_sym_DASH_GT, + STATE(3836), 1, sym_heredoc_body, + STATE(10694), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(5020), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(5022), 33, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 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, - ACTIONS(5737), 10, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [104228] = 7, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [105238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7218), 1, - anon_sym_COMMA, - STATE(3748), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3799), 1, + STATE(3837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -448446,7 +452648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 35, + ACTIONS(6241), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -448461,6 +452663,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, @@ -448478,35 +452681,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, anon_sym_when, anon_sym_in, - [104292] = 7, + [105298] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7220), 1, - sym__string_literal_start, - STATE(4513), 1, - sym_string, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(3838), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3800), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6245), 36, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -448516,14 +452717,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, @@ -448539,104 +452738,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [104356] = 25, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [105362] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - ACTIONS(7223), 1, - anon_sym_COMMA, - STATE(3526), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3801), 1, + ACTIONS(7214), 1, + anon_sym_COLON_COLON, + STATE(3839), 1, sym_heredoc_body, + STATE(3840), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(4855), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(4857), 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, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 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_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, - [104456] = 7, + [105426] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7223), 1, - anon_sym_COMMA, - STATE(3526), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3802), 1, + ACTIONS(7214), 1, + anon_sym_COLON_COLON, + STATE(3840), 1, sym_heredoc_body, + STATE(3842), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(4845), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 35, - sym__line_break, + ACTIONS(4847), 33, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -448648,15 +452835,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, @@ -448667,108 +452851,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [104520] = 25, + [105490] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6977), 1, - anon_sym_COMMA, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(3803), 1, + ACTIONS(7214), 1, + anon_sym_COLON_COLON, + STATE(3841), 1, sym_heredoc_body, - STATE(3805), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(3843), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(4845), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(4847), 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, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 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_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, - [104620] = 7, + [105554] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6977), 1, - anon_sym_COMMA, - STATE(3804), 1, - sym_heredoc_body, - STATE(3805), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(7216), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + STATE(3842), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 35, - sym__line_break, + ACTIONS(4840), 33, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -448780,15 +452948,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, @@ -448799,33 +452964,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [104684] = 7, + [105616] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7225), 1, - anon_sym_COMMA, - STATE(3571), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3805), 1, + ACTIONS(7214), 1, + anon_sym_COLON_COLON, + STATE(3842), 1, + aux_sym_constant_repeat1, + STATE(3843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(4851), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 35, - sym__line_break, + ACTIONS(4853), 33, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -448837,15 +453005,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, @@ -448856,29 +453021,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [104748] = 5, + [105680] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3806), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(7212), 1, + anon_sym_DASH_GT, + STATE(3844), 1, sym_heredoc_body, + STATE(10694), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 37, - sym__start_of_brace_block, + ACTIONS(5022), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -448889,12 +453063,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, @@ -448910,20 +453085,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, - [104808] = 5, + [105746] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3807), 1, + ACTIONS(6753), 1, + anon_sym_COLON, + STATE(3845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -448932,9 +453104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 36, + ACTIONS(173), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -448947,6 +453118,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, @@ -448968,16 +453140,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [104867] = 5, + anon_sym_else, + [105808] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3808), 1, + ACTIONS(7158), 1, + anon_sym_COMMA, + STATE(3846), 1, sym_heredoc_body, + STATE(3868), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -448986,8 +453162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 36, - sym__line_break, + ACTIONS(5750), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -448999,14 +453174,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_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -449023,15 +453195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [104926] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [105872] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3809), 1, + STATE(3847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449040,8 +453215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 36, - sym__line_break, + ACTIONS(6433), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -449053,14 +453227,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, @@ -449076,16 +453248,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, - [104985] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [105932] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3810), 1, + ACTIONS(431), 1, + anon_sym_EQ, + STATE(3848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449094,9 +453272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 36, + ACTIONS(173), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449109,6 +453286,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, @@ -449130,16 +453308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [105044] = 5, + anon_sym_else, + [105994] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3811), 1, + ACTIONS(7219), 1, + anon_sym_of, + STATE(3849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449148,9 +453328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 36, + ACTIONS(5826), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449163,6 +453342,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, @@ -449184,16 +453364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [105103] = 5, + anon_sym_else, + [106056] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3812), 1, + ACTIONS(7221), 1, + anon_sym_of, + STATE(3850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449202,9 +453384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 36, + ACTIONS(5873), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449217,6 +453398,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, @@ -449238,16 +453420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [105162] = 5, + anon_sym_else, + [106118] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3813), 1, + ACTIONS(7223), 1, + anon_sym_EQ, + STATE(3851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449256,9 +453440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 36, + ACTIONS(5937), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449271,6 +453454,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, @@ -449292,16 +453476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [105221] = 5, + anon_sym_else, + [106180] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3814), 1, + ACTIONS(7225), 1, + anon_sym_of, + STATE(3852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449310,9 +453496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 36, + ACTIONS(5960), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449325,6 +453510,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, @@ -449346,16 +453532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [105280] = 5, + anon_sym_else, + [106242] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3815), 1, + STATE(3853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449364,7 +453550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 36, + ACTIONS(5909), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -449397,91 +453583,75 @@ 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, - [105339] = 23, + [106302] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(3816), 1, + STATE(3854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(6265), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(6263), 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(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6205), 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_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, - [105434] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [106362] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3817), 1, + STATE(3855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6273), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449490,8 +453660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 36, - sym__line_break, + ACTIONS(6271), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449502,15 +453672,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, @@ -449526,16 +453693,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, - [105493] = 5, + anon_sym_when, + anon_sym_in, + [106422] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3818), 1, + STATE(3856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6277), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449544,8 +453715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 36, - sym__line_break, + ACTIONS(6275), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449556,15 +453727,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, @@ -449580,16 +453748,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, - [105552] = 5, + anon_sym_when, + anon_sym_in, + [106482] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3819), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + ACTIONS(7227), 1, + anon_sym_COMMA, + STATE(3728), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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, + [106582] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3858), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449598,8 +453845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 36, - sym__line_break, + ACTIONS(145), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449610,15 +453857,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, @@ -449634,16 +453878,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, - [105611] = 5, + anon_sym_when, + anon_sym_in, + [106642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3820), 1, + STATE(3859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449652,8 +453900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 36, - sym__line_break, + ACTIONS(6279), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449664,15 +453912,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, @@ -449688,16 +453933,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, - [105670] = 5, + anon_sym_when, + anon_sym_in, + [106702] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3821), 1, + STATE(3860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(6285), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449706,8 +453955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 36, - sym__line_break, + ACTIONS(6283), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -449719,14 +453967,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, @@ -449742,16 +453988,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, - [105729] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [106762] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3822), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + STATE(3728), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449760,7 +454014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 36, + ACTIONS(5856), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -449780,7 +454034,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, @@ -449797,15 +454050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [105788] = 5, + [106826] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3823), 1, + STATE(3862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449814,8 +454067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 36, - sym__line_break, + ACTIONS(6297), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -449827,14 +454079,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, @@ -449850,16 +454100,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, - [105847] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [106886] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3824), 1, + ACTIONS(703), 1, + anon_sym_EQ, + STATE(3863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -449868,7 +454124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 36, + ACTIONS(173), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -449905,98 +454161,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [105906] = 23, + [106948] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + anon_sym_DOT, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(3825), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6247), 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, - [106001] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3826), 1, + STATE(3864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6301), 36, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -450006,15 +454192,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, @@ -450030,16 +454213,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, - [106060] = 5, + anon_sym_when, + anon_sym_in, + [107012] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3827), 1, + ACTIONS(7158), 1, + anon_sym_COMMA, + STATE(3865), 1, sym_heredoc_body, + STATE(3879), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450048,8 +454239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 36, - sym__line_break, + ACTIONS(5856), 35, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450060,15 +454251,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, @@ -450084,27 +454271,32 @@ 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, - [106119] = 5, + anon_sym_when, + anon_sym_in, + [107076] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3828), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(3866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6305), 36, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -450114,15 +454306,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, @@ -450138,16 +454327,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, - [106178] = 5, + anon_sym_when, + anon_sym_in, + [107140] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3829), 1, + ACTIONS(6635), 1, + anon_sym_LPAREN2, + STATE(3867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450156,8 +454351,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 36, + ACTIONS(173), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450170,7 +454366,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, @@ -450192,18 +454387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106237] = 6, + anon_sym_do, + [107202] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7227), 1, - anon_sym_of, - STATE(3830), 1, + ACTIONS(7158), 1, + anon_sym_COMMA, + STATE(3834), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450212,8 +454409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 35, - sym__line_break, + ACTIONS(5856), 35, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450224,14 +454421,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_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -450247,16 +454441,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, - [106298] = 5, + anon_sym_when, + anon_sym_in, + [107266] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3831), 1, + ACTIONS(7229), 1, + sym_regex_modifier, + STATE(3869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450265,8 +454464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 36, + ACTIONS(5995), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450279,7 +454479,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, @@ -450301,16 +454500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106357] = 5, + anon_sym_do, + [107328] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3832), 1, + ACTIONS(7231), 1, + sym_regex_modifier, + STATE(3870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6031), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450319,8 +454520,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 36, + ACTIONS(6029), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450333,7 +454535,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, @@ -450355,26 +454556,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106416] = 5, + anon_sym_do, + [107390] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3833), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + ACTIONS(7235), 1, + anon_sym_DOT, + STATE(3871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 36, + ACTIONS(6039), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450387,7 +454592,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, @@ -450409,16 +454613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106475] = 5, + anon_sym_do, + [107454] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3834), 1, + ACTIONS(7233), 1, + anon_sym_LPAREN, + STATE(3872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450427,8 +454633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 36, + ACTIONS(6039), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450441,7 +454648,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, @@ -450463,16 +454669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106534] = 5, + anon_sym_do, + [107516] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3835), 1, + ACTIONS(7237), 1, + anon_sym_LPAREN, + STATE(3873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450481,8 +454689,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 36, + ACTIONS(6061), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450495,7 +454704,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, @@ -450517,16 +454725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106593] = 5, + anon_sym_do, + [107578] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3836), 1, + ACTIONS(7227), 1, + anon_sym_COMMA, + STATE(3770), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450535,8 +454747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 36, + ACTIONS(5856), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450549,13 +454762,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, @@ -450571,16 +454782,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106652] = 5, + anon_sym_do, + [107642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3837), 1, + STATE(3875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450589,8 +454800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 36, - sym__line_break, + ACTIONS(5719), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -450602,14 +454812,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, @@ -450625,124 +454833,170 @@ 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, - [106711] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [107702] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3838), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + ACTIONS(7178), 1, + anon_sym_COMMA, + STATE(3799), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6407), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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_do, + [107802] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 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(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, anon_sym_QMARK, + ACTIONS(7039), 1, anon_sym_AMP_AMP, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [106770] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3839), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + ACTIONS(7158), 1, + anon_sym_COMMA, + STATE(3868), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6411), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(5750), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_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, anon_sym_else, - [106829] = 5, + anon_sym_when, + anon_sym_in, + [107902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3840), 1, + STATE(3878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450751,8 +455005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 36, - sym__line_break, + ACTIONS(6353), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450763,15 +455017,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, @@ -450787,16 +455038,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, - [106888] = 5, + anon_sym_when, + anon_sym_in, + [107962] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3841), 1, + ACTIONS(7158), 1, + anon_sym_COMMA, + STATE(3834), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450805,8 +455064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 36, - sym__line_break, + ACTIONS(5888), 35, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450817,15 +455076,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, @@ -450841,16 +455096,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_else, - [106947] = 5, + anon_sym_when, + anon_sym_in, + [108026] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3842), 1, + ACTIONS(2043), 1, + sym__string_literal_start, + STATE(3608), 1, + aux_sym_chained_string_repeat1, + STATE(3880), 1, sym_heredoc_body, + STATE(3970), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450859,9 +455123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(173), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450872,14 +455134,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, @@ -450895,16 +455155,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [107006] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [108092] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3843), 1, + ACTIONS(6694), 1, + anon_sym_LPAREN2, + ACTIONS(7239), 1, + anon_sym_EQ, + STATE(3881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450913,7 +455179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 36, + ACTIONS(173), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -450933,7 +455199,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, @@ -450950,17 +455215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [107065] = 6, + [108156] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7229), 1, - anon_sym_of, - STATE(3844), 1, + STATE(3882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -450969,8 +455232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 35, - sym__line_break, + ACTIONS(6522), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450981,14 +455244,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, @@ -451004,16 +455265,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, - [107126] = 5, + anon_sym_when, + anon_sym_in, + [108216] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3845), 1, + STATE(3883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451022,8 +455287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 36, - sym__line_break, + ACTIONS(5698), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451034,15 +455299,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, @@ -451058,16 +455320,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, - [107185] = 5, + anon_sym_when, + anon_sym_in, + [108276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3846), 1, + STATE(3884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451076,8 +455342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 36, - sym__line_break, + ACTIONS(6389), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451088,15 +455354,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, @@ -451112,16 +455375,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, - [107244] = 5, + anon_sym_when, + anon_sym_in, + [108336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3847), 1, + STATE(3885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451130,8 +455397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 36, - sym__line_break, + ACTIONS(6389), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -451143,14 +455409,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, @@ -451166,29 +455430,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, - [107303] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [108396] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7231), 1, - anon_sym_LPAREN2, - STATE(3848), 1, + STATE(3886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 34, - sym__line_break, + ACTIONS(6397), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -451201,12 +455465,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, @@ -451220,38 +455485,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_then, - [107364] = 11, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [108456] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7239), 1, - anon_sym_PIPE, - ACTIONS(7241), 1, - anon_sym_QMARK, - STATE(3849), 1, + STATE(3887), 1, sym_heredoc_body, - STATE(3947), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(6415), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 31, - sym__line_break, + ACTIONS(6413), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -451264,10 +455520,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_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451278,19 +455537,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_then, - [107435] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [108516] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3850), 1, + STATE(3888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(5816), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451299,7 +455562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 36, + ACTIONS(5814), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -451318,6 +455581,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, @@ -451336,36 +455600,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107494] = 11, + [108576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7239), 1, - anon_sym_PIPE, - ACTIONS(7241), 1, - anon_sym_QMARK, - STATE(3851), 1, + STATE(3889), 1, sym_heredoc_body, - STATE(3947), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(6419), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 31, - sym__line_break, + ACTIONS(6417), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -451378,10 +455630,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_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451392,40 +455647,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_then, - [107565] = 11, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [108636] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7239), 1, - anon_sym_PIPE, - ACTIONS(7241), 1, - anon_sym_QMARK, - STATE(3852), 1, + STATE(3890), 1, sym_heredoc_body, - STATE(3947), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(5731), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 31, - sym__line_break, + ACTIONS(5729), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -451438,10 +455685,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_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451452,19 +455702,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_then, - [107636] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [108696] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3853), 1, + STATE(3891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451473,8 +455727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 36, - sym__line_break, + ACTIONS(6421), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -451486,14 +455739,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, @@ -451509,70 +455760,99 @@ 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, - [107695] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [108756] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3854), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + ACTIONS(7241), 1, + anon_sym_COMMA, + STATE(3892), 1, sym_heredoc_body, + STATE(3896), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5934), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [107754] = 5, + [108856] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3855), 1, + ACTIONS(7241), 1, + anon_sym_COMMA, + STATE(3893), 1, sym_heredoc_body, + STATE(3896), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451581,7 +455861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 36, + ACTIONS(5750), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -451601,7 +455881,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, @@ -451618,70 +455897,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107813] = 6, + [108920] = 25, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, ACTIONS(7243), 1, - sym_regex_modifier, - STATE(3856), 1, + anon_sym_COMMA, + STATE(3894), 1, sym_heredoc_body, + STATE(3897), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5791), 35, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 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(5856), 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_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [107874] = 5, + anon_sym_do, + [109020] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3857), 1, + ACTIONS(7243), 1, + anon_sym_COMMA, + STATE(3895), 1, sym_heredoc_body, + STATE(3897), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451690,7 +455993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 36, + ACTIONS(5856), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -451710,7 +456013,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, @@ -451727,15 +456029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107933] = 5, + [109084] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3858), 1, + ACTIONS(7243), 1, + anon_sym_COMMA, + STATE(3770), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451744,7 +456050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 36, + ACTIONS(5856), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -451764,7 +456070,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, @@ -451781,15 +456086,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107992] = 5, + [109148] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3859), 1, + ACTIONS(7245), 1, + anon_sym_COMMA, + STATE(3770), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451798,8 +456107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 36, + ACTIONS(5888), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451812,13 +456122,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, @@ -451834,29 +456142,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108051] = 6, + anon_sym_do, + [109212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3860), 1, + STATE(3898), 1, sym_heredoc_body, - STATE(3947), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 34, - sym__line_break, + ACTIONS(6445), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -451869,12 +456173,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, @@ -451888,17 +456193,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_then, - [108112] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [109272] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3861), 1, + STATE(3899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451907,9 +456215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 36, + ACTIONS(5838), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451922,6 +456229,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, @@ -451943,16 +456251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [108171] = 5, + anon_sym_else, + [109331] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3862), 1, + STATE(3900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -451961,7 +456269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 36, + ACTIONS(6565), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -451998,69 +456306,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108230] = 5, + [109390] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3863), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6530), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, + ACTIONS(6085), 11, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_EQ_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, - [108289] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [109485] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3864), 1, + STATE(3902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452069,9 +456395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 36, + ACTIONS(6085), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452084,6 +456409,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, @@ -452105,70 +456431,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [108348] = 5, + anon_sym_else, + [109544] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3865), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6474), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [108407] = 5, + [109641] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3866), 1, + STATE(3904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452177,8 +456522,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 36, + ACTIONS(6097), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452191,7 +456537,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, @@ -452213,16 +456558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108466] = 5, + anon_sym_do, + [109700] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3867), 1, + STATE(3905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452231,8 +456576,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 36, + ACTIONS(6101), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452245,7 +456591,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, @@ -452267,124 +456612,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108525] = 5, + anon_sym_do, + [109759] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3868), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6486), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, + [109856] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3907), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7029), 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(7045), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 11, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_do, anon_sym_else, - [108584] = 5, + anon_sym_when, + anon_sym_in, + [109951] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3869), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6502), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [108643] = 5, + [110048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3870), 1, + STATE(3909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452393,8 +456848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 36, + ACTIONS(6229), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452407,7 +456863,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, @@ -452429,16 +456884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108702] = 5, + anon_sym_do, + [110107] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3871), 1, + STATE(3910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452447,7 +456902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 36, + ACTIONS(6203), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -452484,69 +456939,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [108761] = 5, + [110166] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3872), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6522), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [108820] = 5, + [110263] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3873), 1, + STATE(3912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452555,7 +457029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 36, + ACTIONS(6105), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -452592,69 +457066,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108879] = 5, + [110322] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3874), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(5872), 35, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 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(6712), 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_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [108938] = 5, + [110419] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3875), 1, + STATE(3914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452663,8 +457156,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 36, + ACTIONS(6109), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452677,7 +457171,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, @@ -452699,70 +457192,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108997] = 5, + anon_sym_do, + [110478] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3876), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [109056] = 5, + [110575] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3877), 1, + STATE(3916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452771,8 +457283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 36, + ACTIONS(6113), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452785,7 +457298,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, @@ -452807,16 +457319,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + [110634] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3917), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, - [109115] = 5, + [110731] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3878), 1, + STATE(3918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452825,8 +457410,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 36, + ACTIONS(6267), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452839,7 +457425,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, @@ -452861,16 +457446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109174] = 5, + anon_sym_do, + [110790] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3879), 1, + STATE(3919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452879,8 +457464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 36, + ACTIONS(6117), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452893,7 +457479,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, @@ -452915,16 +457500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109233] = 5, + anon_sym_do, + [110849] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3880), 1, + ACTIONS(7247), 1, + anon_sym_of, + STATE(3920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452933,8 +457520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 36, - sym__line_break, + ACTIONS(5960), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452945,15 +457531,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, @@ -452969,16 +457552,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_else, - [109292] = 5, + anon_sym_when, + anon_sym_in, + [110910] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3881), 1, + ACTIONS(7249), 1, + anon_sym_of, + STATE(3921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -452987,8 +457575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 36, - sym__line_break, + ACTIONS(5981), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452999,15 +457586,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, @@ -453023,26 +457607,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_else, - [109351] = 5, + anon_sym_when, + anon_sym_in, + [110971] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3882), 1, + STATE(3922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 36, - sym__line_break, + ACTIONS(6017), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453053,15 +457640,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, @@ -453077,16 +457661,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, - [109410] = 5, + anon_sym_when, + anon_sym_in, + [111030] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3883), 1, + STATE(3923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453095,8 +457682,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 36, + ACTIONS(6257), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453109,7 +457697,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, @@ -453131,18 +457718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109469] = 6, + anon_sym_do, + [111089] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7245), 1, - anon_sym_of, - STATE(3884), 1, + STATE(3924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453151,8 +457736,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 35, + ACTIONS(6365), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453165,12 +457751,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, @@ -453186,16 +457772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109530] = 5, + anon_sym_do, + [111148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3885), 1, + STATE(3925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453204,8 +457790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 36, + ACTIONS(6121), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453218,7 +457805,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, @@ -453240,16 +457826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109589] = 5, + anon_sym_do, + [111207] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3886), 1, + STATE(3926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(6559), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453258,8 +457844,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 36, + ACTIONS(6557), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453272,7 +457859,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, @@ -453294,16 +457880,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + [111266] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7251), 1, + anon_sym_LPAREN, + ACTIONS(7253), 1, + anon_sym_DASH_GT, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(7264), 1, + sym__start_of_tuple_type, + ACTIONS(7266), 1, + sym__start_of_named_tuple_type, + STATE(3927), 1, + sym_heredoc_body, + STATE(7734), 1, + sym_constant, + STATE(7792), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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(4678), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, - [109648] = 5, + anon_sym_when, + anon_sym_in, + [111345] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3887), 1, + STATE(3928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453312,8 +457962,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 36, + ACTIONS(6249), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453326,7 +457977,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, @@ -453348,16 +457998,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + [111404] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7251), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(7264), 1, + sym__start_of_tuple_type, + ACTIONS(7266), 1, + sym__start_of_named_tuple_type, + ACTIONS(7268), 1, + anon_sym_DASH_GT, + STATE(3929), 1, + sym_heredoc_body, + STATE(7734), 1, + sym_constant, + STATE(7793), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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(4628), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, - [109707] = 5, + anon_sym_when, + anon_sym_in, + [111483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3888), 1, + STATE(3930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453366,8 +458080,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 36, + ACTIONS(6183), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453380,7 +458095,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, @@ -453402,16 +458116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109766] = 5, + anon_sym_do, + [111542] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3889), 1, + STATE(3931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453420,8 +458134,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 36, + ACTIONS(6183), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453434,7 +458149,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, @@ -453456,16 +458170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109825] = 5, + anon_sym_do, + [111601] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3890), 1, + STATE(3932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453474,8 +458188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 36, + ACTIONS(6445), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453488,7 +458203,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, @@ -453510,72 +458224,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109884] = 5, + anon_sym_do, + [111660] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3891), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6019), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [111757] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3934), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 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(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, - [109943] = 6, + [111854] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7247), 1, - anon_sym_of, - STATE(3892), 1, + STATE(3935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -453584,8 +458388,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 35, + ACTIONS(6183), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453598,12 +458403,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, @@ -453619,296 +458424,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [110004] = 5, + anon_sym_do, + [111913] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3893), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6027), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [112010] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 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(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, anon_sym_QMARK, + ACTIONS(7089), 1, anon_sym_AMP_AMP, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [110063] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3894), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6031), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [112107] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 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(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, anon_sym_QMARK, + ACTIONS(7089), 1, anon_sym_AMP_AMP, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [110122] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3895), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6035), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [112204] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 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(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, anon_sym_QMARK, + ACTIONS(7089), 1, anon_sym_AMP_AMP, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [110181] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3896), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6149), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [112301] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 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(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, anon_sym_QMARK, + ACTIONS(7089), 1, anon_sym_AMP_AMP, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [110240] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3897), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(3940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6043), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, - [110299] = 5, + [112398] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3898), 1, + STATE(3941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 36, - sym__line_break, + ACTIONS(6055), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453919,15 +458819,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, @@ -453943,26 +458840,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_else, - [110358] = 5, + anon_sym_when, + anon_sym_in, + [112457] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3899), 1, + STATE(3942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 36, - sym__line_break, + ACTIONS(5796), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453973,15 +458873,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, @@ -453997,16 +458894,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, - [110417] = 5, + anon_sym_when, + anon_sym_in, + [112516] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3900), 1, + STATE(3943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(6289), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -454015,8 +458915,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 36, + ACTIONS(6287), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454029,7 +458930,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, @@ -454051,16 +458951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [110476] = 5, + anon_sym_do, + [112575] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3901), 1, + STATE(3944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -454069,7 +458969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 36, + ACTIONS(6183), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -454106,15 +459006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [110535] = 5, + [112634] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3902), 1, + STATE(3945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -454123,7 +459023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 36, + ACTIONS(6187), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -454160,15 +459060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [110594] = 5, + [112693] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3903), 1, + STATE(3946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -454177,8 +459077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 36, + ACTIONS(6187), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454191,7 +459092,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, @@ -454213,46 +459113,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [110653] = 6, + anon_sym_do, + [112752] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7249), 1, - anon_sym_EQ, - STATE(3904), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(3947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5831), 35, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6125), 29, + 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_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, @@ -454264,49 +459166,52 @@ 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, - [110714] = 5, + anon_sym_when, + anon_sym_in, + [112821] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3905), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(3948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6129), 33, + 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_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, @@ -454318,49 +459223,52 @@ 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, - [110773] = 5, + anon_sym_when, + anon_sym_in, + [112886] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3906), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(3949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6133), 33, + 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_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, @@ -454372,84 +459280,93 @@ 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, - [110832] = 5, + anon_sym_when, + anon_sym_in, + [112951] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3907), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(3950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 23, + sym__start_of_brace_block, + 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, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [110891] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [113024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3908), 1, + STATE(3951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 36, - sym__line_break, + ACTIONS(5806), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454460,15 +459377,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, @@ -454484,16 +459398,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, - [110950] = 5, + anon_sym_when, + anon_sym_in, + [113083] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3909), 1, + STATE(3952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6209), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -454502,7 +459419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 36, + ACTIONS(6207), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -454539,25 +459456,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [111009] = 5, + [113142] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3910), 1, + STATE(3953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 36, - sym__line_break, + ACTIONS(5894), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454568,15 +459485,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, @@ -454592,26 +459506,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_else, - [111068] = 5, + anon_sym_when, + anon_sym_in, + [113201] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3911), 1, + STATE(3954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 36, - sym__line_break, + ACTIONS(6013), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454622,15 +459539,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, @@ -454646,26 +459560,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_else, - [111127] = 5, + anon_sym_when, + anon_sym_in, + [113260] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3912), 1, + STATE(3955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 36, - sym__line_break, + ACTIONS(5947), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454676,15 +459593,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, @@ -454700,26 +459614,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_else, - [111186] = 5, + anon_sym_when, + anon_sym_in, + [113319] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3913), 1, + STATE(3956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 36, - sym__line_break, + ACTIONS(5810), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454730,15 +459647,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, @@ -454754,80 +459668,99 @@ 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, - [111245] = 5, + anon_sym_when, + anon_sym_in, + [113378] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3914), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6091), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, - anon_sym_SEMI, + ACTIONS(6141), 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_do, anon_sym_else, - [111304] = 5, + anon_sym_when, + anon_sym_in, + [113469] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3915), 1, + STATE(3958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 36, - sym__line_break, + ACTIONS(6025), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454838,15 +459771,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, @@ -454862,16 +459792,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, - [111363] = 5, + anon_sym_when, + anon_sym_in, + [113528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3916), 1, + STATE(3959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -454880,7 +459813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 36, + ACTIONS(6211), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -454917,15 +459850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [111422] = 5, + [113587] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3917), 1, + STATE(3960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -454934,7 +459867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 36, + ACTIONS(6215), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -454971,126 +459904,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [111481] = 6, + [113646] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7251), 1, - anon_sym_of, - STATE(3918), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5837), 35, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, - anon_sym_SEMI, + ACTIONS(6145), 17, + 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_do, anon_sym_else, - [111542] = 7, + anon_sym_when, + anon_sym_in, + [113729] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7253), 1, - anon_sym_COLON_COLON, - STATE(3919), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3962), 1, sym_heredoc_body, - STATE(4132), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4857), 33, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 22, + 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_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_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [111605] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [113804] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3920), 1, + STATE(3963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -455099,8 +460049,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 36, + ACTIONS(6187), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455113,7 +460064,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, @@ -455135,45 +460085,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [111664] = 5, + anon_sym_do, + [113863] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3921), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(3964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6121), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, - anon_sym_SEMI, + ACTIONS(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 25, + sym__start_of_brace_block, + 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, @@ -455185,137 +460139,168 @@ 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, - [111723] = 5, + anon_sym_when, + anon_sym_in, + [113934] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3922), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6127), 8, - anon_sym_DOT_DOT, + ACTIONS(7017), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7021), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(6125), 36, - sym__line_break, + ACTIONS(7043), 1, sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3965), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, - anon_sym_SEMI, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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_do, anon_sym_else, - [111782] = 5, + anon_sym_when, + anon_sym_in, + [114013] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3923), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6173), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, + ACTIONS(6171), 15, + 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_do, - [111841] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [114100] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3924), 1, + ACTIONS(7271), 1, + anon_sym_COLON_COLON, + STATE(3967), 1, sym_heredoc_body, + STATE(3990), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 36, + ACTIONS(4857), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -455327,17 +460312,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, @@ -455348,19 +460329,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, + [114163] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(3968), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6175), 14, + 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_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [111900] = 5, + anon_sym_when, + anon_sym_in, + [114252] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3925), 1, + STATE(3969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -455369,7 +460420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 36, + ACTIONS(6219), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -455406,15 +460457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [111959] = 5, + [114311] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3926), 1, + STATE(3970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(5816), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -455423,8 +460474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 36, - sym__line_break, + ACTIONS(5814), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455435,15 +460485,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, @@ -455459,18 +460507,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_else, - [112018] = 6, + anon_sym_when, + anon_sym_in, + [114370] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7255), 1, + ACTIONS(7273), 1, anon_sym_of, - STATE(3927), 1, + STATE(3971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -455479,7 +460530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 35, + ACTIONS(5744), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -455515,26 +460566,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112079] = 5, + [114431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3928), 1, + STATE(3972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 35, + ACTIONS(6187), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455554,7 +460605,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, @@ -455569,15 +460619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [112138] = 5, + anon_sym_do, + [114490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3929), 1, + STATE(3973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -455586,8 +460637,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 36, + ACTIONS(6191), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455600,7 +460652,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, @@ -455622,71 +460673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112197] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7257), 1, - sym_regex_modifier, - STATE(3930), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5799), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5797), 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, - [112258] = 5, + anon_sym_do, + [114549] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3931), 1, + STATE(3974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -455695,8 +460691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 36, + ACTIONS(5838), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455709,7 +460706,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, @@ -455731,178 +460727,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112317] = 5, + anon_sym_do, + [114608] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3932), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6159), 8, + ACTIONS(7103), 1, anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7111), 1, anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7123), 1, anon_sym_AMP_STAR, - ACTIONS(6157), 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(7127), 1, anon_sym_QMARK, + ACTIONS(7129), 1, anon_sym_AMP_AMP, + ACTIONS(7131), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [112376] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3933), 1, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(3975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6161), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6227), 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, + [114703] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 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(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, anon_sym_QMARK, + ACTIONS(7129), 1, anon_sym_AMP_AMP, + ACTIONS(7131), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [112435] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3934), 1, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(3976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6165), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6261), 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_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [112494] = 5, + anon_sym_do, + [114798] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3935), 1, + STATE(3977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -455911,8 +460889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 36, + ACTIONS(6195), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455925,7 +460904,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, @@ -455947,16 +460925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112553] = 5, + anon_sym_do, + [114857] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3936), 1, + STATE(3978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -455965,8 +460943,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 36, + ACTIONS(6199), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455979,7 +460958,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, @@ -456001,16 +460979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112612] = 5, + anon_sym_do, + [114916] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3937), 1, + STATE(3979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456019,8 +460997,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 36, + ACTIONS(6203), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456033,7 +461012,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, @@ -456055,16 +461033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112671] = 5, + anon_sym_do, + [114975] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3938), 1, + STATE(3980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(6209), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456073,8 +461051,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 36, + ACTIONS(6207), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456087,7 +461066,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, @@ -456109,16 +461087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112730] = 5, + anon_sym_do, + [115034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3939), 1, + STATE(3981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456127,8 +461105,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 36, + ACTIONS(6211), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456141,7 +461120,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, @@ -456163,16 +461141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112789] = 5, + anon_sym_do, + [115093] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3940), 1, + STATE(3982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456181,8 +461159,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 36, + ACTIONS(6215), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456195,7 +461174,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, @@ -456217,16 +461195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112848] = 5, + anon_sym_do, + [115152] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3941), 1, + STATE(3983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456235,8 +461213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 36, + ACTIONS(6219), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456249,7 +461228,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, @@ -456271,16 +461249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112907] = 5, + anon_sym_do, + [115211] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3942), 1, + STATE(3984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456289,8 +461267,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 36, + ACTIONS(6541), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456303,7 +461282,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, @@ -456325,16 +461303,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112966] = 5, + anon_sym_do, + [115270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3943), 1, + STATE(3985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456343,8 +461321,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 36, + ACTIONS(6223), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456357,7 +461336,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, @@ -456379,70 +461357,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [113025] = 5, + anon_sym_do, + [115329] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3944), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(3986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6223), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6489), 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, + [115424] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(3987), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7115), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7121), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7119), 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, - [113084] = 5, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6509), 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, + [115519] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3945), 1, + STATE(3988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456451,7 +461519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 36, + ACTIONS(6223), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -456488,15 +461556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [113143] = 5, + [115578] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3946), 1, + STATE(3989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456505,8 +461573,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 36, + ACTIONS(6085), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456519,7 +461588,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, @@ -456541,31 +461609,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [113202] = 7, + anon_sym_do, + [115637] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7239), 1, - anon_sym_PIPE, - STATE(3947), 1, + ACTIONS(7271), 1, + anon_sym_COLON_COLON, + STATE(3990), 1, sym_heredoc_body, - STATE(3948), 1, - aux_sym_union_type_repeat1, + STATE(4002), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 34, + ACTIONS(4847), 33, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456593,34 +461661,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_then, - [113265] = 6, + [115700] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7259), 1, - anon_sym_PIPE, + ACTIONS(7271), 1, + anon_sym_COLON_COLON, + STATE(3991), 1, + sym_heredoc_body, + STATE(4003), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3948), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 34, + ACTIONS(4847), 33, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456648,20 +461717,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, - [113326] = 5, + [115763] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3949), 1, + STATE(3992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456670,7 +461739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 36, + ACTIONS(6425), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -456707,35 +461776,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [113385] = 11, + [115822] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7239), 1, - anon_sym_PIPE, - ACTIONS(7241), 1, - anon_sym_QMARK, - STATE(3947), 1, - aux_sym_union_type_repeat1, - STATE(3950), 1, + STATE(3993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6547), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 31, + ACTIONS(6545), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -456748,11 +461806,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, @@ -456763,39 +461826,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_do, - anon_sym_then, - [113456] = 11, + [115881] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7239), 1, - anon_sym_PIPE, - ACTIONS(7241), 1, - anon_sym_QMARK, - STATE(3947), 1, - aux_sym_union_type_repeat1, - STATE(3951), 1, + STATE(3994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(6551), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 31, + ACTIONS(6549), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -456808,11 +461860,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, @@ -456823,19 +461880,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_then, - [113527] = 5, + [115940] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3952), 1, + STATE(3995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456844,7 +461901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 36, + ACTIONS(145), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -456881,15 +461938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [113586] = 5, + [115999] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3953), 1, + STATE(3996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456898,9 +461955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 36, + ACTIONS(6237), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456913,6 +461969,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, @@ -456934,16 +461991,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [113645] = 5, + anon_sym_else, + [116058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3954), 1, + STATE(3997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -456952,7 +462009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 36, + ACTIONS(6279), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -456989,15 +462046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [113704] = 5, + [116117] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3955), 1, + STATE(3998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(6285), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457006,7 +462063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 36, + ACTIONS(6283), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -457043,15 +462100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [113763] = 5, + [116176] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3956), 1, + STATE(3999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457060,8 +462117,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 36, + ACTIONS(6553), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457074,7 +462132,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, @@ -457096,16 +462153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [113822] = 5, + anon_sym_do, + [116235] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3957), 1, + STATE(4000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457114,8 +462171,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 36, + ACTIONS(6561), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457128,7 +462186,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, @@ -457150,16 +462207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [113881] = 5, + anon_sym_do, + [116294] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3958), 1, + ACTIONS(7275), 1, + sym_regex_modifier, + STATE(4001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(6031), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457168,8 +462227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 36, - sym__line_break, + ACTIONS(6029), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457180,15 +462238,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, @@ -457204,25 +462259,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_else, - [113940] = 5, + anon_sym_when, + anon_sym_in, + [116355] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3959), 1, - sym_heredoc_body, + ACTIONS(7277), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + STATE(4002), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 36, + ACTIONS(4840), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -457234,17 +462296,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, @@ -457255,28 +462313,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_else, - [113999] = 5, + anon_sym_then, + [116416] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3960), 1, + ACTIONS(7271), 1, + anon_sym_COLON_COLON, + STATE(4002), 1, + aux_sym_constant_repeat1, + STATE(4003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 36, + ACTIONS(4853), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -457288,17 +462352,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, @@ -457309,19 +462369,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, - [114058] = 5, + anon_sym_then, + [116479] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3961), 1, + STATE(4004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457330,8 +462391,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 36, + ACTIONS(6237), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457344,7 +462406,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, @@ -457366,16 +462427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [114117] = 5, + anon_sym_do, + [116538] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3962), 1, + STATE(4005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457384,7 +462445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 36, + ACTIONS(6417), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -457421,15 +462482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [114176] = 5, + [116597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3963), 1, + STATE(4006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457438,7 +462499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 36, + ACTIONS(6309), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -457475,25 +462536,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [114235] = 5, + [116656] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3964), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(4007), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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_QMARK, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [116747] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 36, - sym__line_break, + ACTIONS(6047), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457504,15 +462635,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, @@ -457528,26 +462656,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_else, - [114294] = 5, + anon_sym_when, + anon_sym_in, + [116806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3965), 1, + STATE(4009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 36, - sym__line_break, + ACTIONS(6051), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457558,15 +462689,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, @@ -457582,27 +462710,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_else, - [114353] = 5, + anon_sym_when, + anon_sym_in, + [116865] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3966), 1, + STATE(4010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5951), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457613,14 +462743,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, @@ -457636,27 +462764,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114412] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [116924] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3967), 1, + STATE(4011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5925), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457667,14 +462797,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, @@ -457690,16 +462818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114471] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [116983] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3968), 1, + STATE(4012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457708,9 +462839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 36, + ACTIONS(6313), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457723,6 +462853,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, @@ -457744,27 +462875,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114530] = 5, + anon_sym_else, + [117042] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3969), 1, + STATE(4013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6023), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6021), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457775,14 +462905,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, @@ -457798,16 +462926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114589] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [117101] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3970), 1, + STATE(4014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457816,9 +462947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 36, + ACTIONS(5170), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457835,6 +462965,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, @@ -457849,19 +462980,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_do, - [114648] = 5, + [117160] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3971), 1, + STATE(4015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -457870,9 +463001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 36, + ACTIONS(6297), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457885,6 +463015,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, @@ -457906,28 +463037,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114707] = 5, + anon_sym_else, + [117219] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3972), 1, + ACTIONS(7280), 1, + anon_sym_COLON_COLON, + STATE(4016), 1, sym_heredoc_body, + STATE(4042), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 36, - sym__line_break, + ACTIONS(4847), 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, @@ -457937,16 +463073,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, @@ -457957,33 +463089,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [114766] = 7, + [117282] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(7021), 1, - sym__start_of_index_operator, - STATE(3973), 1, + ACTIONS(7280), 1, + anon_sym_COLON_COLON, + STATE(4017), 1, sym_heredoc_body, + STATE(4043), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(4845), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 35, - sym__line_break, + ACTIONS(4847), 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, @@ -457993,16 +463129,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, @@ -458013,89 +463145,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, - [114829] = 21, + [117345] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, + ACTIONS(7103), 1, anon_sym_DOT_DOT, - ACTIONS(7121), 1, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7140), 1, + ACTIONS(7111), 1, anon_sym_PIPE, - ACTIONS(7142), 1, + ACTIONS(7113), 1, anon_sym_CARET, - ACTIONS(7146), 1, + ACTIONS(7117), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, + ACTIONS(7123), 1, anon_sym_AMP_STAR, - ACTIONS(7158), 1, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, anon_sym_AMP_AMP, - ACTIONS(7160), 1, + ACTIONS(7131), 1, anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, sym_binary_ampersand, - STATE(3974), 1, + STATE(4018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7115), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + ACTIONS(7121), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, + ACTIONS(7125), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(7109), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, + ACTIONS(7119), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, + ACTIONS(7137), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 13, + ACTIONS(5970), 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_EQ_GT, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [114920] = 5, + [117440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3975), 1, + STATE(4019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -458104,9 +463239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 36, + ACTIONS(6421), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458119,6 +463253,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, @@ -458140,27 +463275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114979] = 5, + anon_sym_else, + [117499] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3976), 1, + STATE(4020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5669), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458171,14 +463305,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, @@ -458194,27 +463326,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115038] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [117558] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3977), 1, + STATE(4021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5818), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458225,14 +463359,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, @@ -458248,27 +463380,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115097] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [117617] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3978), 1, + STATE(4022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5818), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458279,14 +463413,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, @@ -458302,97 +463434,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115156] = 21, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [117676] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(3979), 1, + STATE(4023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(5824), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(5822), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 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_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_do, - [115247] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [117735] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3980), 1, + STATE(4024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6009), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458403,14 +463521,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, @@ -458426,27 +463542,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115306] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [117794] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3981), 1, + STATE(4025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(5945), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5943), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458457,14 +463575,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, @@ -458480,16 +463596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115365] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [117853] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3982), 1, + STATE(4026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -458498,9 +463617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 36, + ACTIONS(6079), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458513,6 +463631,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, @@ -458534,16 +463653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115424] = 5, + anon_sym_else, + [117912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3983), 1, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + STATE(4027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -458552,9 +463673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(173), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458565,14 +463684,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, @@ -458588,16 +463705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115483] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [117973] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3984), 1, + STATE(4028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -458606,7 +463726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 36, + ACTIONS(6309), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -458643,26 +463763,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [115542] = 5, + [118032] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3985), 1, + STATE(4029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 10, - anon_sym_RBRACK, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 34, + ACTIONS(6313), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -458674,12 +463793,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, @@ -458690,22 +463813,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, - [115601] = 5, + [118091] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3986), 1, + STATE(4030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -458714,9 +463834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 36, + ACTIONS(173), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458729,6 +463848,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, @@ -458750,16 +463870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115660] = 5, + anon_sym_else, + [118150] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3987), 1, + STATE(4031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -458768,9 +463888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 36, + ACTIONS(6183), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458783,6 +463902,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, @@ -458804,27 +463924,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115719] = 5, + anon_sym_else, + [118209] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3988), 1, + STATE(4032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(5979), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5977), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458835,14 +463954,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, @@ -458858,25 +463975,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115778] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [118268] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3989), 1, + STATE(4033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 36, + ACTIONS(5987), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458888,7 +464009,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, @@ -458913,26 +464033,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [115837] = 5, + [118327] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3990), 1, + STATE(4034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5987), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458943,14 +464062,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, @@ -458966,27 +464083,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115896] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [118386] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7262), 1, - anon_sym_of, - STATE(3991), 1, + STATE(4035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 35, + ACTIONS(5991), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459022,69 +464141,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [115957] = 5, + [118445] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3992), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6465), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6518), 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, - [116016] = 5, + [118536] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3993), 1, + STATE(4037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(5164), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -459093,9 +464228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 36, + ACTIONS(5166), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459112,6 +464246,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, @@ -459126,19 +464261,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_do, - [116075] = 5, + [118595] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3994), 1, + STATE(4038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -459147,7 +464282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 36, + ACTIONS(5694), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459158,13 +464294,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_LPAREN, - 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, @@ -459180,19 +464318,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, - [116134] = 5, + [118654] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3995), 1, + STATE(4039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -459201,9 +464336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 36, + ACTIONS(6233), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459216,6 +464350,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, @@ -459237,70 +464372,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116193] = 5, + anon_sym_else, + [118713] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3996), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(4040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6482), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, + ACTIONS(6459), 11, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_EQ_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, - [116252] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [118808] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3997), 1, + STATE(4041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -459309,9 +464462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 36, + ACTIONS(6389), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459324,6 +464476,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, @@ -459345,28 +464498,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116311] = 5, + anon_sym_else, + [118867] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3998), 1, - sym_heredoc_body, + ACTIONS(7282), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + STATE(4042), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 36, - sym__line_break, + ACTIONS(4840), 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, @@ -459376,16 +464533,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, @@ -459396,31 +464549,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [116370] = 5, + [118928] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3999), 1, + ACTIONS(7280), 1, + anon_sym_COLON_COLON, + STATE(4042), 1, + aux_sym_constant_repeat1, + STATE(4043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(4851), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 36, - sym__line_break, + ACTIONS(4853), 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, @@ -459430,16 +464589,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, @@ -459450,127 +464605,164 @@ 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, - [116429] = 5, + [118991] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4000), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6518), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6083), 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_do, + [119086] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 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(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, anon_sym_QMARK, + ACTIONS(7129), 1, anon_sym_AMP_AMP, + ACTIONS(7131), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [116488] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4001), 1, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6522), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6085), 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, - [116547] = 5, + [119181] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4002), 1, + STATE(4046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -459579,7 +464771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 36, + ACTIONS(5719), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -459616,96 +464808,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [116606] = 5, + [119240] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4003), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 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, - [116665] = 5, + [119335] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4004), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7133), 1, + sym__start_of_index_operator, + STATE(4048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 36, + ACTIONS(6125), 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, @@ -459719,38 +464935,41 @@ 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, - [116724] = 5, + [119404] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4005), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7133), 1, + sym__start_of_index_operator, + STATE(4049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 36, + ACTIONS(6129), 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, @@ -459773,38 +464992,41 @@ 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, - [116783] = 5, + [119469] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4006), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7133), 1, + sym__start_of_index_operator, + STATE(4050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 36, + ACTIONS(6133), 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, @@ -459827,263 +465049,312 @@ 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, - [116842] = 5, + [119534] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4007), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7133), 1, + sym__start_of_index_operator, + STATE(4051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5987), 36, + ACTIONS(6137), 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, - [116901] = 5, + [119607] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4008), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5987), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6141), 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, - [116960] = 5, + [119698] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4009), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5987), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 17, + 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, - [117019] = 5, + [119781] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4010), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5991), 36, + ACTIONS(6149), 22, 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, - [117078] = 5, + [119856] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4011), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7133), 1, + sym__start_of_index_operator, + STATE(4055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6498), 36, + ACTIONS(6163), 25, 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, @@ -460097,142 +465368,127 @@ 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, - [117137] = 21, + [119927] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7121), 1, + ACTIONS(7107), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7140), 1, + ACTIONS(7111), 1, anon_sym_PIPE, - ACTIONS(7142), 1, + ACTIONS(7113), 1, anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, + ACTIONS(7123), 1, anon_sym_AMP_STAR, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, sym_binary_ampersand, - STATE(4012), 1, + STATE(4056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7115), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, + ACTIONS(7125), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, + ACTIONS(7137), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 13, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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_EQ_GT, 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, - [117228] = 23, + [120006] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, + ACTIONS(6173), 1, anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7107), 1, anon_sym_DOT, - ACTIONS(6999), 1, + ACTIONS(7111), 1, anon_sym_PIPE, - ACTIONS(7001), 1, + ACTIONS(7113), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7117), 1, anon_sym_EQ_EQ, - ACTIONS(7011), 1, + ACTIONS(7123), 1, anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7133), 1, sym__start_of_index_operator, - ACTIONS(7027), 1, + ACTIONS(7139), 1, sym_binary_ampersand, - STATE(4013), 1, + STATE(4057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, + ACTIONS(7115), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + ACTIONS(7121), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, + ACTIONS(7125), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(7109), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, + ACTIONS(7119), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, + ACTIONS(7137), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6506), 11, + ACTIONS(6171), 15, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -460242,69 +465498,67 @@ 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, - [117323] = 23, + [120093] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, + ACTIONS(6177), 1, anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7107), 1, anon_sym_DOT, - ACTIONS(6999), 1, + ACTIONS(7111), 1, anon_sym_PIPE, - ACTIONS(7001), 1, + ACTIONS(7113), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7117), 1, anon_sym_EQ_EQ, - ACTIONS(7011), 1, + ACTIONS(7123), 1, anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, + ACTIONS(7129), 1, anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7133), 1, sym__start_of_index_operator, - ACTIONS(7027), 1, + ACTIONS(7139), 1, sym_binary_ampersand, - STATE(4014), 1, + STATE(4058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, + ACTIONS(7115), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + ACTIONS(7121), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, + ACTIONS(7125), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(7109), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, + ACTIONS(7119), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, + ACTIONS(7137), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6508), 11, + ACTIONS(6175), 14, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -460314,17 +465568,22 @@ 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_PIPE_PIPE, anon_sym_do, - [117418] = 5, + [120182] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4015), 1, + ACTIONS(7285), 1, + anon_sym_EQ, + STATE(4059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -460333,9 +465592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 36, + ACTIONS(5937), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460348,12 +465606,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, @@ -460369,70 +465627,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117477] = 5, + anon_sym_else, + [120243] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4016), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(4060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5999), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, + ACTIONS(6491), 11, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_EQ_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, - [117536] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [120338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4017), 1, + STATE(4061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -460441,9 +465717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 36, + ACTIONS(6183), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460456,6 +465731,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, @@ -460477,16 +465753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117595] = 5, + anon_sym_else, + [120397] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4018), 1, + STATE(4062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -460495,9 +465771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 36, + ACTIONS(6397), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460510,6 +465785,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, @@ -460531,70 +465807,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117654] = 5, + anon_sym_else, + [120456] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4019), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(4063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6011), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7047), 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, + ACTIONS(6518), 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_do, - [117713] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [120547] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4020), 1, + STATE(4064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -460603,9 +465895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 36, + ACTIONS(6317), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460618,6 +465909,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, @@ -460639,16 +465931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117772] = 5, + anon_sym_else, + [120606] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4021), 1, + ACTIONS(7287), 1, + anon_sym_of, + STATE(4065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -460657,9 +465951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5826), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460670,14 +465962,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, @@ -460693,26 +465983,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117831] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [120667] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4022), 1, + ACTIONS(7289), 1, + anon_sym_LPAREN, + ACTIONS(7291), 1, + anon_sym_DOT, + STATE(4066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 36, - sym__line_break, + ACTIONS(6039), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460723,15 +466018,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, @@ -460747,16 +466039,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_else, - [117890] = 5, + anon_sym_when, + anon_sym_in, + [120730] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4023), 1, + ACTIONS(7289), 1, + anon_sym_LPAREN, + STATE(4067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -460765,9 +466062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6039), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460778,14 +466073,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, @@ -460801,16 +466094,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117949] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [120791] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4024), 1, + STATE(4068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -460819,7 +466115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 36, + ACTIONS(6522), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -460856,15 +466152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [118008] = 5, + [120850] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4025), 1, + STATE(4069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -460873,9 +466169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 36, + ACTIONS(6321), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460888,6 +466183,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, @@ -460909,68 +466205,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118067] = 23, + anon_sym_else, + [120909] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(7136), 1, + ACTIONS(7015), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7142), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7146), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7156), 1, + ACTIONS(7037), 1, anon_sym_QMARK, - ACTIONS(7158), 1, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7160), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(4026), 1, + STATE(4070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6459), 11, + ACTIONS(6489), 11, sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, @@ -460982,67 +466278,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [118162] = 23, + [121004] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(7136), 1, + ACTIONS(7015), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7142), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7146), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7156), 1, + ACTIONS(7037), 1, anon_sym_QMARK, - ACTIONS(7158), 1, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7160), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(4027), 1, + STATE(4071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6461), 11, + ACTIONS(6509), 11, sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, @@ -461054,15 +466350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [118257] = 5, + [121099] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4028), 1, + STATE(4072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -461071,7 +466367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 36, + ACTIONS(6325), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -461108,141 +466404,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [118316] = 23, + [121158] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4029), 1, + ACTIONS(7293), 1, + sym_regex_modifier, + STATE(4073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(5834), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(5832), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6469), 11, - 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, - [118411] = 5, + [121219] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4030), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(145), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7137), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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, - [118470] = 5, + [121310] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4031), 1, + ACTIONS(7295), 1, + anon_sym_LPAREN, + STATE(4075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -461251,9 +466548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6061), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461264,14 +466559,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, @@ -461287,16 +466580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118529] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [121371] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4032), 1, + STATE(4076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -461305,9 +466601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 36, + ACTIONS(6325), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461320,6 +466615,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, @@ -461341,168 +466637,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118588] = 23, + anon_sym_else, + [121430] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(6993), 1, + ACTIONS(7015), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(6999), 1, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7001), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7011), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7015), 1, + ACTIONS(7037), 1, anon_sym_QMARK, - ACTIONS(7017), 1, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7019), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(7027), 1, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(4033), 1, + STATE(4077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5934), 11, - sym__line_break, + ACTIONS(6373), 11, 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_end, anon_sym_do, - [118683] = 10, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [121525] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7152), 1, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - STATE(4034), 1, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(4078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7154), 2, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, - anon_sym_DOT_DOT, + ACTIONS(7019), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 29, - sym__start_of_brace_block, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym_binary_ampersand, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6227), 11, + 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, + [121620] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + STATE(4079), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7019), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7029), 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, + ACTIONS(7045), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6261), 11, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [118752] = 8, + [121715] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - STATE(4035), 1, + STATE(4080), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6037), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 33, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(6035), 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, @@ -461523,52 +466900,52 @@ 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, - [118817] = 8, + [121774] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - STATE(4036), 1, + STATE(4081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6331), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 33, - sym__start_of_brace_block, + ACTIONS(6329), 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_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, @@ -461580,251 +466957,222 @@ 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, - [118882] = 12, + [121833] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - STATE(4037), 1, + STATE(4082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7162), 4, + ACTIONS(6335), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6333), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 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(6560), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 23, - 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_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, - [118955] = 21, + [121892] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(7121), 1, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7140), 1, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7142), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7146), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7158), 1, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7160), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(4038), 1, + STATE(4083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 13, + ACTIONS(5970), 11, 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_QMARK, anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [119046] = 17, + [121987] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4039), 1, + STATE(4084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(5731), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(5729), 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(7164), 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, - ACTIONS(5959), 17, - sym__start_of_brace_block, - 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, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [119129] = 13, + [122046] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4040), 1, + ACTIONS(7297), 1, + sym_regex_modifier, + STATE(4085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7162), 4, + ACTIONS(5840), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5838), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5963), 22, - sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -461833,61 +467181,114 @@ 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, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [119204] = 11, + [122107] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - STATE(4041), 1, + STATE(4086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7162), 4, + ACTIONS(6371), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6369), 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(7164), 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, - ACTIONS(5969), 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, + anon_sym_do, + [122166] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4087), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6319), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 25, + anon_sym_AMP_STAR, + ACTIONS(6317), 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, - 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, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -461899,223 +467300,200 @@ 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, - [119275] = 15, + [122225] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4042), 1, + STATE(4088), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7162), 4, + ACTIONS(6323), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + 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, - ACTIONS(7164), 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, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 21, - sym__start_of_brace_block, - 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [119354] = 19, + [122284] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, + ACTIONS(7103), 1, anon_sym_DOT_DOT, - ACTIONS(7121), 1, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7140), 1, + ACTIONS(7111), 1, anon_sym_PIPE, - ACTIONS(7142), 1, + ACTIONS(7113), 1, anon_sym_CARET, - ACTIONS(7146), 1, + ACTIONS(7117), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, + ACTIONS(7123), 1, anon_sym_AMP_STAR, - ACTIONS(7166), 1, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, sym_binary_ampersand, - STATE(4043), 1, + STATE(4089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, + ACTIONS(7115), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + ACTIONS(7121), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, + ACTIONS(7125), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(7109), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, + ACTIONS(7119), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, + ACTIONS(7137), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 15, + ACTIONS(6459), 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_EQ_GT, - 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, - [119441] = 20, + [122379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4044), 1, + STATE(4090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(6339), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(6337), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 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(5979), 14, - sym__start_of_brace_block, - 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, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [119530] = 5, + [122438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4045), 1, + STATE(4091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462124,9 +467502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 36, + ACTIONS(6341), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462139,6 +467516,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, @@ -462160,16 +467538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119589] = 5, + anon_sym_else, + [122497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4046), 1, + STATE(4092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462178,9 +467556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 36, + ACTIONS(6345), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462193,6 +467570,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, @@ -462214,16 +467592,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_else, + [122556] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4093), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6491), 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, - [119648] = 5, + [122651] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4047), 1, + STATE(4094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462232,7 +467682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 36, + ACTIONS(6325), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -462269,15 +467719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [119707] = 5, + [122710] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4048), 1, + STATE(4095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462286,9 +467736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 36, + ACTIONS(6349), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462301,6 +467750,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, @@ -462322,16 +467772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119766] = 5, + anon_sym_else, + [122769] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4049), 1, + STATE(4096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462340,9 +467790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 36, + ACTIONS(6357), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462355,6 +467804,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, @@ -462376,16 +467826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119825] = 5, + anon_sym_else, + [122828] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4050), 1, + STATE(4097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462394,9 +467844,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 36, + ACTIONS(5694), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462409,6 +467858,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, @@ -462430,16 +467880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119884] = 5, + anon_sym_else, + [122887] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4051), 1, + STATE(4098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462448,7 +467898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 36, + ACTIONS(6325), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -462485,15 +467935,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [119943] = 5, + [122946] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4052), 1, + ACTIONS(7103), 1, + anon_sym_DOT_DOT, + ACTIONS(7105), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7111), 1, + anon_sym_PIPE, + ACTIONS(7113), 1, + anon_sym_CARET, + ACTIONS(7117), 1, + anon_sym_EQ_EQ, + ACTIONS(7123), 1, + anon_sym_AMP_STAR, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7129), 1, + anon_sym_AMP_AMP, + ACTIONS(7131), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7133), 1, + sym__start_of_index_operator, + ACTIONS(7139), 1, + sym_binary_ampersand, + STATE(4099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(7115), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7121), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7125), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7109), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7119), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7135), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7137), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6373), 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, + [123041] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4100), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462502,9 +468024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 36, + ACTIONS(6437), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462517,6 +468038,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, @@ -462538,16 +468060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120002] = 5, + anon_sym_else, + [123100] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4053), 1, + STATE(4101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462556,9 +468078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 36, + ACTIONS(6437), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462571,6 +468092,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, @@ -462592,16 +468114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120061] = 5, + anon_sym_else, + [123159] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4054), 1, + STATE(4102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462610,9 +468132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 36, + ACTIONS(6375), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462625,6 +468146,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, @@ -462646,16 +468168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120120] = 5, + anon_sym_else, + [123218] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4055), 1, + ACTIONS(7299), 1, + anon_sym_of, + STATE(4103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462664,9 +468188,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 36, + ACTIONS(5960), 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_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, + [123279] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4104), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6383), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6381), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462679,6 +468255,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, @@ -462700,16 +468277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120179] = 5, + anon_sym_else, + [123338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4056), 1, + STATE(4105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462718,9 +468295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 36, + ACTIONS(6385), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462733,6 +468309,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, @@ -462754,16 +468331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120238] = 5, + anon_sym_else, + [123397] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4057), 1, + STATE(4106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462772,9 +468349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 36, + ACTIONS(6393), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462787,6 +468363,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, @@ -462808,16 +468385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120297] = 5, + anon_sym_else, + [123456] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4058), 1, + STATE(4107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462826,9 +468403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 36, + ACTIONS(6401), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462841,6 +468417,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, @@ -462862,16 +468439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120356] = 5, + anon_sym_else, + [123515] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4059), 1, + STATE(4108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462880,9 +468457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 36, + ACTIONS(6405), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462895,6 +468471,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, @@ -462916,16 +468493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120415] = 5, + anon_sym_else, + [123574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4060), 1, + STATE(4109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462934,9 +468511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 36, + ACTIONS(6409), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462949,6 +468525,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, @@ -462970,16 +468547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120474] = 5, + anon_sym_else, + [123633] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4061), 1, + ACTIONS(7301), 1, + anon_sym_of, + STATE(4110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -462988,9 +468567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 36, + ACTIONS(5981), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463003,6 +468581,60 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__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, + [123694] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4111), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6431), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6429), 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, @@ -463024,16 +468656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120533] = 5, + anon_sym_else, + [123753] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4062), 1, + STATE(4112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463042,9 +468674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 36, + ACTIONS(6241), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463057,6 +468688,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, @@ -463078,16 +468710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120592] = 5, + anon_sym_else, + [123812] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4063), 1, + STATE(4113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463096,9 +468728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 36, + ACTIONS(5715), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463111,6 +468742,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, @@ -463132,16 +468764,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120651] = 5, + anon_sym_else, + [123871] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4064), 1, + STATE(4114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463150,9 +468782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6125), 36, + ACTIONS(5715), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463165,6 +468796,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, @@ -463186,16 +468818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120710] = 5, + anon_sym_else, + [123930] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4065), 1, + ACTIONS(7303), 1, + anon_sym_of, + STATE(4115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463204,9 +468838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5844), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463217,14 +468849,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, @@ -463240,16 +468870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120769] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [123991] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4066), 1, + STATE(4116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463258,9 +468891,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 36, + ACTIONS(6433), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463273,6 +468905,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, @@ -463294,16 +468927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [120828] = 5, + anon_sym_else, + [124050] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4067), 1, + STATE(4117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463312,7 +468945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 36, + ACTIONS(6433), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -463349,15 +468982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [120887] = 5, + [124109] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4068), 1, + STATE(4118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463366,7 +468999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 36, + ACTIONS(6469), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -463403,15 +469036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [120946] = 5, + [124168] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4069), 1, + STATE(4119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463420,9 +469053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 36, + ACTIONS(6469), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463435,6 +469067,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, @@ -463456,16 +469089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121005] = 5, + anon_sym_else, + [124227] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4070), 1, + STATE(4120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463474,9 +469107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(6485), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463489,6 +469121,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, @@ -463510,16 +469143,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121064] = 5, + anon_sym_else, + [124286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4071), 1, + STATE(4121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463528,9 +469161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 36, + ACTIONS(6441), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463543,6 +469175,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, @@ -463564,27 +469197,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121123] = 5, + anon_sym_else, + [124345] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4072), 1, + STATE(4122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5850), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463595,14 +469227,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, @@ -463618,16 +469248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121182] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [124404] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4073), 1, + STATE(4123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463636,9 +469269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 36, + ACTIONS(6449), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463651,6 +469283,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, @@ -463672,16 +469305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121241] = 5, + anon_sym_else, + [124463] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4074), 1, + STATE(4124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463690,9 +469323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 36, + ACTIONS(6453), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463705,6 +469337,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, @@ -463726,16 +469359,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121300] = 5, + anon_sym_else, + [124522] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4075), 1, + ACTIONS(7305), 1, + anon_sym_of, + STATE(4125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463744,9 +469379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 36, + ACTIONS(5826), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463759,12 +469393,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, @@ -463780,16 +469414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121359] = 5, + anon_sym_else, + [124583] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4076), 1, + STATE(4126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463798,9 +469432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 36, + ACTIONS(6514), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463813,6 +469446,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, @@ -463834,16 +469468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121418] = 5, + anon_sym_else, + [124642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4077), 1, + STATE(4127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -463852,9 +469486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 36, + ACTIONS(5832), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463867,6 +469500,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, @@ -463888,65 +469522,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121477] = 21, + anon_sym_else, + [124701] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4078), 1, + STATE(4128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(5864), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(5862), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 13, - sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -463954,29 +469560,44 @@ static const uint16_t ts_small_parse_table[] = { 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_do, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [121568] = 5, + [124760] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4079), 1, + ACTIONS(7307), 1, + anon_sym_LPAREN2, + STATE(4129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 36, + ACTIONS(4902), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -463989,16 +469610,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, @@ -464013,15 +469631,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [121627] = 5, + anon_sym_then, + [124821] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4080), 1, + STATE(4130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464030,9 +469649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 36, + ACTIONS(6529), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464045,6 +469663,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, @@ -464066,16 +469685,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_else, + [124880] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + anon_sym_DOT, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, + anon_sym_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK, + STATE(4131), 1, + sym_heredoc_body, + STATE(4217), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4859), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4861), 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_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, - [121686] = 5, + anon_sym_then, + [124951] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4081), 1, + STATE(4132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464084,7 +469763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 36, + ACTIONS(6329), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464121,15 +469800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [121745] = 5, + [125010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4082), 1, + STATE(4133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(6535), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464138,9 +469817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 36, + ACTIONS(6533), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464153,6 +469831,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, @@ -464174,16 +469853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121804] = 5, + anon_sym_else, + [125069] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4083), 1, + STATE(4134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464192,9 +469871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 36, + ACTIONS(6461), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464207,6 +469885,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, @@ -464228,25 +469907,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121863] = 5, + anon_sym_else, + [125128] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4084), 1, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + anon_sym_DOT, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, + anon_sym_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK, + STATE(4135), 1, sym_heredoc_body, + STATE(4217), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6223), 36, + ACTIONS(4898), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464259,16 +469949,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, @@ -464279,19 +469964,79 @@ 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, + [125199] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + anon_sym_DOT, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, + anon_sym_PIPE, + ACTIONS(7317), 1, anon_sym_QMARK, + STATE(4136), 1, + sym_heredoc_body, + STATE(4217), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4877), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4879), 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_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, - [121922] = 5, + anon_sym_then, + [125270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4085), 1, + STATE(4137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464300,9 +470045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 36, + ACTIONS(6537), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464315,6 +470059,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, @@ -464336,16 +470081,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121981] = 5, + anon_sym_else, + [125329] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4086), 1, + STATE(4138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464354,7 +470099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 36, + ACTIONS(6333), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464391,15 +470136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122040] = 5, + [125388] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4087), 1, + STATE(4139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464408,7 +470153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 36, + ACTIONS(5970), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464445,15 +470190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122099] = 5, + [125447] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4088), 1, + STATE(4140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464462,7 +470207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 36, + ACTIONS(6337), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464499,26 +470244,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122158] = 5, + [125506] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4089), 1, + STATE(4141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5022), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464529,14 +470273,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, @@ -464552,16 +470294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122217] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [125565] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4090), 1, + STATE(4142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464570,7 +470315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 36, + ACTIONS(6341), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464607,15 +470352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122276] = 5, + [125624] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4091), 1, + STATE(4143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464624,7 +470369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 36, + ACTIONS(6345), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464661,15 +470406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122335] = 5, + [125683] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4092), 1, + STATE(4144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464678,9 +470423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 36, + ACTIONS(6465), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464693,6 +470437,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, @@ -464714,16 +470459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122394] = 5, + anon_sym_else, + [125742] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4093), 1, + STATE(4145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464732,7 +470477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 36, + ACTIONS(6349), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464769,24 +470514,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122453] = 5, + [125801] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4094), 1, + STATE(4146), 1, sym_heredoc_body, + STATE(4217), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 36, + ACTIONS(4875), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464799,16 +470547,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, @@ -464823,15 +470568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122512] = 5, + anon_sym_then, + [125862] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4095), 1, + STATE(4147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464840,7 +470586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 36, + ACTIONS(6357), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -464877,15 +470623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122571] = 5, + [125921] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4096), 1, + STATE(4148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -464894,9 +470640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 36, + ACTIONS(6183), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464909,6 +470654,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, @@ -464930,88 +470676,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122630] = 23, + anon_sym_else, + [125980] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4097), 1, + STATE(4149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(6475), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(6473), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 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(6205), 11, - sym__start_of_brace_block, - 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_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_else, - anon_sym_when, - anon_sym_in, - [122725] = 5, + [126039] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4098), 1, + STATE(4150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465020,9 +470748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 36, + ACTIONS(5719), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465035,6 +470762,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, @@ -465056,16 +470784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122784] = 5, + anon_sym_else, + [126098] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4099), 1, + STATE(4151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465074,9 +470802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 36, + ACTIONS(6183), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465089,6 +470816,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, @@ -465110,16 +470838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122843] = 5, + anon_sym_else, + [126157] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4100), 1, + STATE(4152), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465128,9 +470856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 36, + ACTIONS(6477), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465143,6 +470870,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, @@ -465164,16 +470892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122902] = 5, + anon_sym_else, + [126216] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4101), 1, + STATE(4153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465182,9 +470910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 36, + ACTIONS(6481), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465197,6 +470924,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, @@ -465218,16 +470946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122961] = 5, + anon_sym_else, + [126275] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4102), 1, + STATE(4154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465236,9 +470964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 36, + ACTIONS(6493), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465251,6 +470978,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, @@ -465272,16 +471000,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123020] = 5, + anon_sym_else, + [126334] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4103), 1, + STATE(4155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465290,9 +471018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 36, + ACTIONS(6497), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465305,6 +471032,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, @@ -465326,30 +471054,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123079] = 7, + anon_sym_else, + [126393] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(7021), 1, - sym__start_of_index_operator, - STATE(4104), 1, + STATE(4156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6503), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 35, + ACTIONS(6501), 36, sym__line_break, - sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -465361,6 +471086,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, @@ -465382,101 +471108,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123142] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4105), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6247), 11, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [123237] = 6, + [126452] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7264), 1, - anon_sym_COLON_COLON, + STATE(4157), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4106), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 33, + ACTIONS(6505), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -465488,13 +471138,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, @@ -465505,36 +471159,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_then, - [123298] = 7, + anon_sym_else, + [126511] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7267), 1, - anon_sym_COLON_COLON, - STATE(4106), 1, - aux_sym_constant_repeat1, - STATE(4107), 1, + ACTIONS(7319), 1, + anon_sym_DOT, + ACTIONS(7321), 1, + anon_sym_EQ, + ACTIONS(7323), 1, + sym__start_of_index_operator, + STATE(4013), 1, + sym__implicit_index_operator, + STATE(4158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 33, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(5719), 33, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -465545,12 +471198,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, @@ -465561,20 +471215,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_then, - [123361] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [126578] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4108), 1, + STATE(4159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465583,7 +471238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 36, + ACTIONS(6565), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -465620,29 +471275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [123420] = 7, + [126637] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(7021), 1, - sym__start_of_index_operator, - STATE(4109), 1, + STATE(4160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(6543), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 35, + ACTIONS(6541), 36, sym__line_break, - sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -465654,6 +471306,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, @@ -465675,16 +471328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123483] = 5, + anon_sym_else, + [126696] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4110), 1, + STATE(4161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465693,7 +471346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 36, + ACTIONS(6522), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -465730,159 +471383,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [123542] = 23, + [126755] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4111), 1, + STATE(4162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(6547), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(6545), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6309), 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_end, - anon_sym_do, - [123637] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4112), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6311), 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, - [123732] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [126814] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4113), 1, + STATE(4163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465891,8 +471454,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 36, + ACTIONS(6375), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465905,7 +471469,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, @@ -465927,16 +471490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [123791] = 5, + anon_sym_do, + [126873] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4114), 1, + STATE(4164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465945,9 +471508,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 36, + ACTIONS(6549), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465960,6 +471522,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, @@ -465981,16 +471544,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123850] = 5, + anon_sym_else, + [126932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4115), 1, + STATE(4165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -465999,7 +471562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 36, + ACTIONS(6553), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466036,17 +471599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [123909] = 6, + [126991] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(449), 1, - anon_sym_EQ, - STATE(4116), 1, + STATE(4166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -466055,7 +471616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 35, + ACTIONS(6561), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466075,6 +471636,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, @@ -466091,17 +471653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [123970] = 6, + [127050] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7269), 1, - anon_sym_of, - STATE(4117), 1, + STATE(4167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -466110,7 +471670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 35, + ACTIONS(6229), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -466121,12 +471682,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, @@ -466142,30 +471706,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_else, - anon_sym_when, - anon_sym_in, - [124031] = 5, + [127109] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4118), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7093), 1, + sym__start_of_index_operator, + STATE(4168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 36, + ACTIONS(6245), 35, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -466200,15 +471763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [124090] = 5, + [127172] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4119), 1, + ACTIONS(7325), 1, + anon_sym_of, + STATE(4169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -466217,7 +471782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 36, + ACTIONS(5844), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466237,7 +471802,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, @@ -466254,81 +471818,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [124149] = 6, + [127233] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6749), 1, - anon_sym_LPAREN2, - STATE(4120), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(173), 35, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 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(6253), 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_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, - [124210] = 5, + [127324] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4121), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7093), 1, + sym__start_of_index_operator, + STATE(4171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 36, + ACTIONS(6301), 35, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -466363,26 +471944,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [124269] = 5, + [127387] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4122), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7093), 1, + sym__start_of_index_operator, + STATE(4172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 36, + ACTIONS(6305), 35, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -466417,15 +472000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [124328] = 5, + [127450] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4123), 1, + STATE(4173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -466434,7 +472017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 36, + ACTIONS(6179), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466471,150 +472054,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [124387] = 5, + [127509] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4124), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(145), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6518), 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, + [127600] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4175), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 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(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6083), 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, - [124446] = 5, + [127695] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4125), 1, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6546), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6085), 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_DOT_DOT_DOT, anon_sym_end, + anon_sym_else, + [127790] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4177), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 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(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 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, - [124505] = 5, + [127885] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4126), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7093), 1, + sym__start_of_index_operator, + STATE(4178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6301), 36, + ACTIONS(6125), 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__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, @@ -466628,37 +472395,40 @@ 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, - [124564] = 5, + [127954] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4127), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7093), 1, + sym__start_of_index_operator, + STATE(4179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 36, + ACTIONS(6129), 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, @@ -466682,47 +472452,50 @@ 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, - [124623] = 5, + [128019] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4128), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7093), 1, + sym__start_of_index_operator, + STATE(4180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 36, + ACTIONS(6133), 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__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, @@ -466736,214 +472509,316 @@ 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, - [124682] = 5, + anon_sym_else, + [128084] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4129), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7093), 1, + sym__start_of_index_operator, + STATE(4181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6103), 36, + ACTIONS(6137), 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__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, - [124741] = 5, + anon_sym_else, + [128157] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4130), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5006), 35, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 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(6141), 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_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + [128248] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4183), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 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(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 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_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [124800] = 5, + [128331] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4131), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6320), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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, - 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, - [124859] = 7, + [128406] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7253), 1, - anon_sym_COLON_COLON, - STATE(4132), 1, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7093), 1, + sym__start_of_index_operator, + STATE(4185), 1, sym_heredoc_body, - STATE(4167), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4840), 33, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 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(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 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_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -466953,188 +472828,220 @@ 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, - [124922] = 8, + anon_sym_else, + [128477] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7216), 1, - sym__start_of_index_operator, - ACTIONS(7271), 1, + ACTIONS(7067), 1, anon_sym_DOT, - STATE(4133), 1, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4186), 1, sym_heredoc_body, - STATE(4141), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 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(5878), 34, - sym__line_break, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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, - [124987] = 5, + [128556] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4134), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5878), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6171), 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_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [125046] = 7, + [128643] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7253), 1, - anon_sym_COLON_COLON, - STATE(4135), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4188), 1, sym_heredoc_body, - STATE(4168), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4840), 33, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 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(6175), 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_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_end, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [125109] = 5, + anon_sym_else, + [128732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4136), 1, + STATE(4189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6415), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467143,7 +473050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 36, + ACTIONS(6413), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467180,123 +473087,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125168] = 5, + [128791] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4137), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6356), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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, + [128882] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4191), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 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(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6459), 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, - [125227] = 5, + [128977] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4138), 1, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6360), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6491), 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_DOT_DOT_DOT, anon_sym_end, + anon_sym_else, + [129072] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4193), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 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(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6373), 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, - [125286] = 5, + [129167] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4139), 1, + STATE(4194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467305,8 +473390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 36, - sym__line_break, + ACTIONS(4618), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -467317,15 +473401,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_LPAREN, + 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, @@ -467341,16 +473423,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, - [125345] = 5, + anon_sym_when, + anon_sym_in, + [129226] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4140), 1, + STATE(4195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467359,7 +473444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 36, + ACTIONS(6353), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467396,15 +473481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125404] = 5, + [129285] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4141), 1, + STATE(4196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467413,7 +473498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 36, + ACTIONS(6267), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467450,15 +473535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125463] = 5, + [129344] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4142), 1, + STATE(4197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467467,7 +473552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 36, + ACTIONS(5729), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467504,15 +473589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125522] = 5, + [129403] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4143), 1, + STATE(4198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467521,7 +473606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 36, + ACTIONS(6257), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467558,15 +473643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125581] = 5, + [129462] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4144), 1, + STATE(4199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467575,7 +473660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 36, + ACTIONS(6369), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467612,15 +473697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125640] = 5, + [129521] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4145), 1, + STATE(4200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467629,7 +473714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 36, + ACTIONS(6365), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467666,15 +473751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125699] = 5, + [129580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4146), 1, + STATE(4201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(6559), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467683,7 +473768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 36, + ACTIONS(6557), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467720,15 +473805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125758] = 5, + [129639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4147), 1, + STATE(4202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467737,8 +473822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 36, + ACTIONS(6381), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -467751,7 +473837,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, @@ -467773,16 +473858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125817] = 5, + anon_sym_do, + [129698] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4148), 1, + STATE(4203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467791,7 +473876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 36, + ACTIONS(6249), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467828,15 +473913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [125876] = 5, + [129757] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4149), 1, + STATE(4204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467845,8 +473930,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 36, + ACTIONS(6385), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -467859,7 +473945,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, @@ -467881,16 +473966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125935] = 5, + anon_sym_do, + [129816] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4150), 1, + STATE(4205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -467899,8 +473984,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 36, + ACTIONS(6393), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -467913,7 +473999,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, @@ -467935,27 +474020,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125994] = 5, + anon_sym_do, + [129875] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4151), 1, + ACTIONS(7280), 1, + anon_sym_COLON_COLON, + STATE(4016), 1, + aux_sym_constant_repeat1, + STATE(4206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 36, - sym__line_break, + ACTIONS(4857), 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, @@ -467965,17 +474056,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, @@ -467986,28 +474072,30 @@ 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, - [126053] = 5, + anon_sym_do, + [129938] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4152), 1, + STATE(4207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(4859), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 36, + ACTIONS(4861), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -468021,7 +474109,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, @@ -468029,6 +474116,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, @@ -468043,16 +474131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126112] = 5, + [129997] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4153), 1, + STATE(4208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -468061,7 +474148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 36, + ACTIONS(6445), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -468098,15 +474185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [126171] = 5, + [130056] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4154), 1, + STATE(4209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -468115,7 +474202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 36, + ACTIONS(6401), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -468152,367 +474239,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [126230] = 23, + [130115] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4155), 1, + STATE(4210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6309), 11, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [126325] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, + ACTIONS(6289), 8, anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, + anon_sym_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4156), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6311), 11, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [126420] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7273), 1, - anon_sym_LPAREN, - ACTIONS(7275), 1, - anon_sym_DASH_GT, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(7286), 1, - sym__start_of_tuple_type, - ACTIONS(7288), 1, - sym__start_of_named_tuple_type, - STATE(4157), 1, - sym_heredoc_body, - STATE(7680), 1, - sym__type, - STATE(7728), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7284), 2, - sym_self, - sym_underscore_type, - STATE(7758), 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(4628), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [126499] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(6287), 36, + sym__line_break, sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4158), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6309), 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, - [126594] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4159), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6311), 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_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [126689] = 5, + [130174] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4160), 1, + ACTIONS(449), 1, + anon_sym_EQ, + STATE(4211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -468521,7 +474312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 36, + ACTIONS(173), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -468541,7 +474332,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, @@ -468558,229 +474348,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [126748] = 21, + [130235] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4161), 1, + STATE(4212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6332), 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, - [126839] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7064), 1, + ACTIONS(5923), 8, anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, anon_sym_DOT, - ACTIONS(7072), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4162), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(5921), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6506), 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, - [126934] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4163), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6508), 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_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [127029] = 5, + [130294] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4164), 1, + STATE(4213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -468789,7 +474419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 36, + ACTIONS(6075), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -468803,11 +474433,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, @@ -468822,106 +474452,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, - [127088] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, anon_sym_QMARK, - ACTIONS(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4165), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5934), 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, - [127183] = 7, + [130353] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7267), 1, - anon_sym_COLON_COLON, - STATE(4106), 1, - aux_sym_constant_repeat1, - STATE(4166), 1, + STATE(4214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 33, + ACTIONS(6405), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -468932,13 +474486,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, @@ -468949,36 +474506,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_then, - [127246] = 6, + anon_sym_do, + [130412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7290), 1, - anon_sym_COLON_COLON, + STATE(4215), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4167), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 33, + ACTIONS(6409), 36, + 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, @@ -468988,12 +474540,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, @@ -469004,37 +474560,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, - [127307] = 7, + [130471] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7253), 1, - anon_sym_COLON_COLON, - STATE(4167), 1, - aux_sym_constant_repeat1, - STATE(4168), 1, + STATE(4216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, + ACTIONS(6431), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 33, + ACTIONS(6429), 36, + 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, @@ -469044,195 +474594,54 @@ static const uint16_t ts_small_parse_table[] = { 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, - [127370] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4169), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6459), 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_end, - anon_sym_do, - [127465] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4170), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6461), 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_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, - [127560] = 7, + [130530] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7267), 1, - anon_sym_COLON_COLON, - STATE(4107), 1, - aux_sym_constant_repeat1, - STATE(4171), 1, + ACTIONS(7315), 1, + anon_sym_PIPE, + STATE(4217), 1, sym_heredoc_body, + STATE(4218), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 33, + ACTIONS(4883), 34, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -469260,29 +474669,32 @@ 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, - [127623] = 5, + [130593] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4172), 1, - sym_heredoc_body, + ACTIONS(7327), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + STATE(4218), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 36, + ACTIONS(4875), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -469295,16 +474707,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, @@ -469319,97 +474728,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [127682] = 23, + anon_sym_then, + [130654] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6991), 1, - anon_sym_DOT_DOT, - ACTIONS(6993), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, anon_sym_DOT, - ACTIONS(6999), 1, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7015), 1, + ACTIONS(7317), 1, anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4173), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 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, - [127777] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4174), 1, + STATE(4217), 1, + aux_sym_union_type_repeat1, + STATE(4219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 36, + ACTIONS(4890), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -469420,17 +474770,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, @@ -469441,56 +474785,56 @@ 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, - [127836] = 10, + anon_sym_do, + anon_sym_then, + [130725] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, anon_sym_DOT, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7021), 1, - sym__start_of_index_operator, - STATE(4175), 1, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, + anon_sym_PIPE, + ACTIONS(7317), 1, + anon_sym_QMARK, + STATE(4217), 1, + aux_sym_union_type_repeat1, + STATE(4220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(4892), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 29, + anon_sym_AMP_STAR, + ACTIONS(4894), 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__modifier_if_keyword, - sym__modifier_unless_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_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -469500,46 +474844,43 @@ 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, - [127905] = 8, + anon_sym_then, + [130796] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(7021), 1, - sym__start_of_index_operator, - STATE(4176), 1, + STATE(4221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6265), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 33, + ACTIONS(6263), 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, @@ -469557,46 +474898,43 @@ 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, - [127970] = 8, + anon_sym_else, + [130855] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(7021), 1, - sym__start_of_index_operator, - STATE(4177), 1, + STATE(4222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6273), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 33, + ACTIONS(6271), 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, @@ -469614,208 +474952,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_do, - [128035] = 12, + anon_sym_else, + [130914] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7021), 1, - sym__start_of_index_operator, - STATE(4178), 1, + STATE(4223), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(6277), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 23, + anon_sym_AMP_STAR, + ACTIONS(6275), 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_do, - [128108] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7273), 1, - anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(7286), 1, - sym__start_of_tuple_type, - ACTIONS(7288), 1, - sym__start_of_named_tuple_type, - ACTIONS(7293), 1, - anon_sym_DASH_GT, - STATE(4179), 1, - sym_heredoc_body, - STATE(7721), 1, - sym__type, - STATE(7728), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7284), 2, - sym_self, - sym_underscore_type, - STATE(7758), 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(4656), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [128187] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7273), 1, - anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(7286), 1, - sym__start_of_tuple_type, - ACTIONS(7288), 1, - sym__start_of_named_tuple_type, - ACTIONS(7296), 1, - anon_sym_DASH_GT, - STATE(4180), 1, - sym_heredoc_body, - STATE(7722), 1, - sym__type, - STATE(7728), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7284), 2, - sym_self, - sym_underscore_type, - STATE(7758), 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(4678), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [128266] = 5, + [130973] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4181), 1, + STATE(4224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5968), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -469824,7 +475028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 36, + ACTIONS(5966), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -469861,285 +475065,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [128325] = 23, + [131032] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4182), 1, + STATE(4225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(5975), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(5970), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7164), 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(6506), 11, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [128420] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4183), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7144), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6508), 11, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [128515] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7158), 1, anon_sym_AMP_AMP, - ACTIONS(7160), 1, anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - STATE(4184), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5934), 11, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [128610] = 24, + [131091] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, + ACTIONS(6704), 1, anon_sym_COMMA, - ACTIONS(7064), 1, + ACTIONS(7063), 1, anon_sym_DOT_DOT, - ACTIONS(7066), 1, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, + ACTIONS(7067), 1, anon_sym_DOT, - ACTIONS(7072), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7074), 1, + ACTIONS(7073), 1, anon_sym_CARET, - ACTIONS(7078), 1, + ACTIONS(7077), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + ACTIONS(7083), 1, anon_sym_AMP_STAR, - ACTIONS(7088), 1, + ACTIONS(7087), 1, anon_sym_QMARK, - ACTIONS(7090), 1, + ACTIONS(7089), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(7093), 1, sym__start_of_index_operator, - ACTIONS(7100), 1, + ACTIONS(7099), 1, sym_binary_ampersand, - STATE(4185), 1, + STATE(4226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, + ACTIONS(7085), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(7069), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, + ACTIONS(7079), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, + ACTIONS(7097), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6723), 10, + ACTIONS(6710), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -470150,28 +475192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [128707] = 7, + [131188] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - STATE(4186), 1, + STATE(4227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(6189), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 35, + ACTIONS(6187), 36, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -470206,98 +475246,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [128770] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4187), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6403), 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, - [128861] = 7, + [131247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - STATE(4188), 1, + STATE(4228), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6093), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 35, + ACTIONS(6091), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -470309,7 +475278,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, @@ -470331,29 +475299,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [128924] = 7, + anon_sym_do, + [131306] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - STATE(4189), 1, + STATE(4229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(6443), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 35, + ACTIONS(6441), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -470365,7 +475332,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, @@ -470387,18 +475353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [128987] = 6, + anon_sym_do, + [131365] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7299), 1, - sym_regex_modifier, - STATE(4190), 1, + STATE(4230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -470407,7 +475371,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 35, + ACTIONS(6449), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -470418,12 +475384,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, @@ -470439,89 +475407,94 @@ 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, - [129048] = 21, + anon_sym_do, + [131424] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(6999), 1, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7001), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7011), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7017), 1, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7019), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(7027), 1, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(4191), 1, + ACTIONS(7330), 1, + anon_sym_COMMA, + STATE(4231), 1, sym_heredoc_body, + STATE(4235), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 13, - sym__line_break, + ACTIONS(5750), 9, 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_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_end, - anon_sym_QMARK, anon_sym_do, - [129139] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [131523] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4192), 1, + ACTIONS(7330), 1, + anon_sym_COMMA, + STATE(4232), 1, sym_heredoc_body, + STATE(4235), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 9, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -470530,8 +475503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(5862), 35, + ACTIONS(5750), 34, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -470545,8 +475518,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, @@ -470560,411 +475531,292 @@ 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, - [129198] = 21, + [131586] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(7068), 1, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(7072), 1, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7074), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7078), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7090), 1, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(7100), 1, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(4193), 1, + ACTIONS(7332), 1, + anon_sym_COMMA, + STATE(4233), 1, sym_heredoc_body, + STATE(4236), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 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, + ACTIONS(5856), 9, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_end, - anon_sym_QMARK, + anon_sym_do, anon_sym_else, - [129289] = 17, + anon_sym_when, + anon_sym_in, + [131685] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4194), 1, + ACTIONS(7332), 1, + anon_sym_COMMA, + STATE(4234), 1, sym_heredoc_body, + STATE(4236), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(5860), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(5856), 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, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 17, - 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_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_do, - [129372] = 23, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [131748] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4195), 1, + ACTIONS(7332), 1, + anon_sym_COMMA, + STATE(3834), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(5860), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(5856), 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, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6459), 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, - [129467] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4196), 1, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [131811] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7334), 1, + anon_sym_COMMA, + STATE(3834), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(5892), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(5888), 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, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6461), 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, - [129562] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4197), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 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_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [129657] = 10, + anon_sym_when, + anon_sym_in, + [131874] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7094), 1, - sym__start_of_index_operator, - STATE(4198), 1, + STATE(4237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(4838), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 29, - sym__line_break, + anon_sym_AMP_STAR, + ACTIONS(4840), 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__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, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + 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, @@ -470974,52 +475826,50 @@ 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_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [129726] = 8, + anon_sym_do, + [131933] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - STATE(4199), 1, + ACTIONS(7336), 1, + anon_sym_of, + STATE(4238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(5877), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 33, - sym__line_break, + ACTIONS(5873), 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__modifier_if_keyword, - sym__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, @@ -471031,46 +475881,46 @@ 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, - [129791] = 8, + anon_sym_when, + anon_sym_in, + [131994] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - STATE(4200), 1, + STATE(4239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6455), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 33, + ACTIONS(6453), 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, @@ -471088,314 +475938,279 @@ 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, - [129856] = 12, + anon_sym_do, + [132053] = 5, ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7094), 1, - sym__start_of_index_operator, - STATE(4201), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + sym__heredoc_body_start, + STATE(4240), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6189), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 23, + anon_sym_AMP_STAR, + ACTIONS(6187), 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, - [129929] = 21, + [132112] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(6255), 1, anon_sym_DOT_DOT, - ACTIONS(7068), 1, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(7072), 1, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7074), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7078), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7090), 1, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(7100), 1, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(4202), 1, + STATE(4241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 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, + ACTIONS(6253), 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_QMARK, + anon_sym_do, anon_sym_else, - [130020] = 17, + anon_sym_when, + anon_sym_in, + [132203] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4203), 1, + STATE(4242), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(5700), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + 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, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5959), 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, + 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, - [130103] = 13, + [132262] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4204), 1, + STATE(4243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(5804), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 22, + anon_sym_AMP_STAR, + ACTIONS(5802), 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, - [130178] = 11, + [132321] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7094), 1, - sym__start_of_index_operator, - STATE(4205), 1, + ACTIONS(7338), 1, + anon_sym_of, + STATE(4244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 4, + ACTIONS(5748), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5744), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 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_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, @@ -471407,293 +476222,308 @@ 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, - [130249] = 15, + anon_sym_when, + anon_sym_in, + [132382] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4206), 1, + STATE(4245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 4, + ACTIONS(5883), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5881), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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, - 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, - [130328] = 19, + anon_sym_when, + anon_sym_in, + [132441] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4207), 1, + ACTIONS(7340), 1, + anon_sym_LPAREN, + STATE(4246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(5905), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(5901), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 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_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, - [130415] = 20, + anon_sym_when, + anon_sym_in, + [132502] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, + STATE(4247), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5915), 9, anon_sym_DOT_DOT, - ACTIONS(7068), 1, anon_sym_DOT, - ACTIONS(7072), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7094), 1, + ACTIONS(5913), 35, sym__start_of_index_operator, - ACTIONS(7100), 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(4208), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, + 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(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [132561] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4248), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5868), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(5866), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5979), 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, 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, - [130504] = 13, + [132620] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, + ACTIONS(7342), 1, anon_sym_DOT, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7021), 1, + ACTIONS(7344), 1, + anon_sym_EQ, + ACTIONS(7346), 1, sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4209), 1, + STATE(4249), 1, sym_heredoc_body, + STATE(4380), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(5721), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 22, + anon_sym_AMP_STAR, + ACTIONS(5719), 33, 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__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, - [130579] = 6, + [132687] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7301), 1, - anon_sym_of, - STATE(4210), 1, + STATE(4250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 35, + ACTIONS(5917), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -471729,119 +476559,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [130640] = 21, + [132746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4211), 1, + STATE(4251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6531), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6529), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6107), 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_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_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, - [130731] = 11, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [132805] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7021), 1, - sym__start_of_index_operator, - STATE(4212), 1, + STATE(4252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7023), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7025), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5969), 6, + ACTIONS(6535), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 25, + anon_sym_AMP_STAR, + ACTIONS(6533), 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, @@ -471855,165 +476662,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_do, - [130802] = 23, + [132864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4213), 1, + STATE(4253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6093), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6091), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6205), 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, - [130897] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4214), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7098), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6247), 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_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [130992] = 6, + [132923] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7303), 1, - sym_regex_modifier, - STATE(4215), 1, + STATE(4254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -472022,7 +476738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 35, + ACTIONS(173), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -472033,12 +476751,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, @@ -472054,21 +476774,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, - [131053] = 6, + anon_sym_do, + [132982] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7305), 1, - anon_sym_of, - STATE(4216), 1, + STATE(4255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -472077,7 +476792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 35, + ACTIONS(6075), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -472088,12 +476805,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, @@ -472109,21 +476828,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, - [131114] = 6, + anon_sym_do, + [133041] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7307), 1, - anon_sym_LPAREN, - STATE(4217), 1, + STATE(4256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -472132,7 +476846,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 35, + ACTIONS(6079), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -472143,12 +476859,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, @@ -472164,31 +476882,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_else, - anon_sym_when, - anon_sym_in, - [131175] = 7, + anon_sym_do, + [133100] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7309), 1, - anon_sym_LPAREN, - ACTIONS(7311), 1, - anon_sym_DOT, - STATE(4218), 1, + STATE(4257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(6189), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 35, + ACTIONS(6187), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -472199,12 +476912,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, @@ -472220,21 +476936,80 @@ 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, + [133159] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7251), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(7264), 1, + sym__start_of_tuple_type, + ACTIONS(7266), 1, + sym__start_of_named_tuple_type, + ACTIONS(7348), 1, + anon_sym_DASH_GT, + STATE(4258), 1, + sym_heredoc_body, + STATE(7734), 1, + sym_constant, + STATE(7782), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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(4656), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [131238] = 6, + [133238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7309), 1, - anon_sym_LPAREN, - STATE(4219), 1, + STATE(4259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -472243,7 +477018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 35, + ACTIONS(6179), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -472254,12 +477031,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, @@ -472275,21 +477054,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, - [131299] = 6, + anon_sym_do, + [133297] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7313), 1, - anon_sym_LPAREN, - STATE(4220), 1, + STATE(4260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -472298,7 +477072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 35, + ACTIONS(6187), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -472309,12 +477084,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, @@ -472330,137 +477108,122 @@ 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, - [131360] = 15, + [133356] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4221), 1, + STATE(4261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7023), 4, + ACTIONS(6193), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6191), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 21, - 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, - [131439] = 24, + anon_sym_else, + [133415] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7064), 1, + ACTIONS(7063), 1, anon_sym_DOT_DOT, - ACTIONS(7066), 1, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, + ACTIONS(7067), 1, anon_sym_DOT, - ACTIONS(7072), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7074), 1, + ACTIONS(7073), 1, anon_sym_CARET, - ACTIONS(7078), 1, + ACTIONS(7077), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + ACTIONS(7083), 1, anon_sym_AMP_STAR, - ACTIONS(7088), 1, + ACTIONS(7087), 1, anon_sym_QMARK, - ACTIONS(7090), 1, + ACTIONS(7089), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(7093), 1, sym__start_of_index_operator, - ACTIONS(7100), 1, + ACTIONS(7099), 1, sym_binary_ampersand, - STATE(4222), 1, + STATE(4262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, + ACTIONS(7085), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(7069), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, + ACTIONS(7079), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, + ACTIONS(7097), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6725), 10, + ACTIONS(6489), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -472469,71 +477232,70 @@ 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, - [131536] = 24, + [133510] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7064), 1, + ACTIONS(7063), 1, anon_sym_DOT_DOT, - ACTIONS(7066), 1, + ACTIONS(7065), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, + ACTIONS(7067), 1, anon_sym_DOT, - ACTIONS(7072), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7074), 1, + ACTIONS(7073), 1, anon_sym_CARET, - ACTIONS(7078), 1, + ACTIONS(7077), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + ACTIONS(7083), 1, anon_sym_AMP_STAR, - ACTIONS(7088), 1, + ACTIONS(7087), 1, anon_sym_QMARK, - ACTIONS(7090), 1, + ACTIONS(7089), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, + ACTIONS(7091), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(7093), 1, sym__start_of_index_operator, - ACTIONS(7100), 1, + ACTIONS(7099), 1, sym_binary_ampersand, - STATE(4223), 1, + STATE(4263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, + ACTIONS(7085), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(7069), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, + ACTIONS(7079), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, + ACTIONS(7097), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 10, + ACTIONS(6509), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -472542,457 +477304,523 @@ 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, - [131633] = 24, + [133605] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7064), 1, + ACTIONS(7351), 1, + anon_sym_of, + STATE(4264), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5877), 8, anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, anon_sym_DOT, - ACTIONS(7072), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(5873), 35, + sym__line_break, sym__start_of_index_operator, - ACTIONS(7100), 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(4224), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 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(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [133666] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4265), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6197), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6195), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [131730] = 24, + [133725] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7064), 1, + STATE(4266), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6463), 8, anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, anon_sym_DOT, - ACTIONS(7072), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(6461), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(7100), 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(4225), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7076), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__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, - ACTIONS(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [133784] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4267), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6099), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6097), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [131827] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4226), 1, + anon_sym_do, + [133843] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, + ACTIONS(6235), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6233), 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, - ACTIONS(7082), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [133902] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4269), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6243), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6241), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [131924] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + anon_sym_do, + [133961] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7133), 1, sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4227), 1, + STATE(4270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6247), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6245), 35, + sym__line_break, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [132021] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4228), 1, + anon_sym_do, + [134024] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6391), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6389), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [132118] = 24, + [134083] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7064), 1, + ACTIONS(6255), 1, anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, + ACTIONS(7107), 1, anon_sym_DOT, - ACTIONS(7072), 1, + ACTIONS(7111), 1, anon_sym_PIPE, - ACTIONS(7074), 1, + ACTIONS(7113), 1, anon_sym_CARET, - ACTIONS(7078), 1, + ACTIONS(7117), 1, anon_sym_EQ_EQ, - ACTIONS(7084), 1, + ACTIONS(7123), 1, anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, + ACTIONS(7129), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, + ACTIONS(7131), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, + ACTIONS(7133), 1, sym__start_of_index_operator, - ACTIONS(7100), 1, + ACTIONS(7139), 1, sym_binary_ampersand, - STATE(4229), 1, + STATE(4272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, + ACTIONS(7115), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7082), 2, + ACTIONS(7121), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, + ACTIONS(7125), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(7109), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, + ACTIONS(7119), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + ACTIONS(7135), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7098), 4, + ACTIONS(7137), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 10, + ACTIONS(6253), 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_DOT_DOT_DOT, anon_sym_end, - anon_sym_else, - [132215] = 6, + anon_sym_QMARK, + anon_sym_do, + [134174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7315), 1, - anon_sym_of, - STATE(4230), 1, + STATE(4273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -473001,7 +477829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 35, + ACTIONS(6199), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -473012,12 +477841,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, @@ -473033,21 +477865,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, - [132276] = 6, + [134233] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7317), 1, - anon_sym_of, - STATE(4231), 1, + STATE(4274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(6265), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -473056,7 +477883,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 35, + ACTIONS(6263), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -473067,12 +477896,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, @@ -473088,608 +477919,394 @@ 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, - [132337] = 24, + anon_sym_do, + [134292] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 1, - anon_sym_QMARK, - ACTIONS(7090), 1, - anon_sym_AMP_AMP, - ACTIONS(7092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4232), 1, + STATE(4275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6273), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6271), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [132434] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4233), 1, + anon_sym_do, + [134351] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6277), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6275), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [132531] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4234), 1, + anon_sym_do, + [134410] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6467), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6465), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [132628] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4235), 1, + anon_sym_do, + [134469] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(143), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(145), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [132725] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4236), 1, + anon_sym_do, + [134528] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6281), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6279), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [132822] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4237), 1, + anon_sym_do, + [134587] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6285), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6283), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [132919] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7064), 1, - anon_sym_DOT_DOT, - ACTIONS(7066), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7068), 1, - anon_sym_DOT, - ACTIONS(7072), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7078), 1, - anon_sym_EQ_EQ, - ACTIONS(7084), 1, - anon_sym_AMP_STAR, - ACTIONS(7088), 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(7090), 1, anon_sym_AMP_AMP, - ACTIONS(7092), 1, anon_sym_PIPE_PIPE, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7100), 1, - sym_binary_ampersand, - STATE(4238), 1, + anon_sym_do, + [134646] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7076), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7082), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7086), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7070), 3, + ACTIONS(6475), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7080), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7096), 4, + anon_sym_AMP_STAR, + ACTIONS(6473), 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(7098), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [133016] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - ACTIONS(7319), 1, - anon_sym_COMMA, - STATE(4239), 1, - sym_heredoc_body, - STATE(4243), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7144), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 9, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_end, + 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, - [133115] = 7, + [134705] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7319), 1, - anon_sym_COMMA, - STATE(4240), 1, + STATE(4282), 1, sym_heredoc_body, - STATE(4243), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -473698,7 +478315,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 34, + ACTIONS(6477), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -473710,10 +478328,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, @@ -473730,107 +478352,83 @@ 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, - [133178] = 25, + [134764] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - ACTIONS(7321), 1, - anon_sym_COMMA, - STATE(4241), 1, + STATE(4283), 1, sym_heredoc_body, - STATE(4244), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7138), 3, + ACTIONS(6299), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(6297), 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(7164), 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, - ACTIONS(5811), 9, - sym__start_of_brace_block, - 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, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [133277] = 7, + [134823] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7321), 1, - anon_sym_COMMA, - STATE(4242), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7133), 1, + sym__start_of_index_operator, + STATE(4284), 1, sym_heredoc_body, - STATE(4244), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 34, + ACTIONS(6301), 35, + sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -473840,10 +478438,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, @@ -473860,33 +478462,29 @@ 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, - [133340] = 7, + [134886] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7321), 1, - anon_sym_COMMA, - STATE(3537), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4243), 1, + ACTIONS(7107), 1, + anon_sym_DOT, + ACTIONS(7133), 1, + sym__start_of_index_operator, + STATE(4285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 34, + ACTIONS(6305), 35, + sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -473896,10 +478494,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, @@ -473916,22 +478518,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, - [133403] = 7, + [134949] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7323), 1, - anon_sym_COMMA, - STATE(3537), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4244), 1, + STATE(4286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -473940,8 +478535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 34, - sym__start_of_brace_block, + ACTIONS(6097), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -473952,10 +478547,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_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -473971,19 +478571,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, - [133466] = 5, + [135008] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4245), 1, + STATE(4287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -473992,7 +478589,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 36, + ACTIONS(6481), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -474003,13 +478602,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_LPAREN, - 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, @@ -474025,156 +478625,142 @@ 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, - [133525] = 19, + anon_sym_do, + [135067] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4246), 1, + STATE(4288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(6099), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(6097), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, 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, + 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, - [133612] = 20, + anon_sym_else, + [135126] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(6995), 1, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(6999), 1, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(7001), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(7011), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(7017), 1, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(7027), 1, + ACTIONS(7049), 1, sym_binary_ampersand, - STATE(4247), 1, + STATE(4289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7009), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 14, - sym__line_break, + ACTIONS(6083), 11, 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_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_end, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, anon_sym_do, - [133701] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135221] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4248), 1, + STATE(4290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474183,8 +478769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 36, + ACTIONS(6493), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -474197,7 +478784,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, @@ -474219,16 +478805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [133760] = 5, + anon_sym_do, + [135280] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4249), 1, + STATE(4291), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474237,8 +478823,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 36, + ACTIONS(6537), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -474251,7 +478838,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, @@ -474273,16 +478859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [133819] = 5, + anon_sym_do, + [135339] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4250), 1, + STATE(4292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474291,8 +478877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 36, + ACTIONS(6353), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -474305,7 +478892,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, @@ -474327,70 +478913,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [133878] = 5, + anon_sym_do, + [135398] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4251), 1, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6455), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6227), 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_DOT_DOT_DOT, anon_sym_end, + anon_sym_else, + [135493] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4294), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7081), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 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(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6261), 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, - [133937] = 5, + [135588] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4252), 1, + STATE(4295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474399,8 +479075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 36, - sym__line_break, + ACTIONS(4622), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -474411,15 +479086,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_LPAREN, + 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, @@ -474435,16 +479108,91 @@ 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, + [135647] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4296), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7097), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5970), 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, - [133996] = 5, + [135742] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4253), 1, + STATE(4297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474453,7 +479201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 36, + ACTIONS(6101), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474490,15 +479238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [134055] = 5, + [135801] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4254), 1, + STATE(4298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474507,8 +479255,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 36, + ACTIONS(5698), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -474521,7 +479270,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, @@ -474543,16 +479291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [134114] = 5, + anon_sym_do, + [135860] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4255), 1, + STATE(4299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474561,7 +479309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 36, + ACTIONS(6389), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -474598,15 +479346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [134173] = 5, + [135919] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4256), 1, + STATE(4300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474615,7 +479363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 36, + ACTIONS(6389), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -474652,30 +479400,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [134232] = 7, + [135978] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7267), 1, - anon_sym_COLON_COLON, - STATE(4166), 1, - aux_sym_constant_repeat1, - STATE(4257), 1, + STATE(4301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 33, + ACTIONS(6397), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -474686,13 +479430,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, @@ -474703,20 +479450,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, - [134295] = 5, + anon_sym_do, + [136037] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4258), 1, + STATE(4302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6415), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474725,7 +479471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 36, + ACTIONS(6413), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -474762,15 +479508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [134354] = 5, + [136096] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4259), 1, + STATE(4303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474779,7 +479525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 36, + ACTIONS(6417), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -474816,15 +479562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [134413] = 5, + [136155] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4260), 1, + STATE(4304), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474833,7 +479579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 36, + ACTIONS(6421), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -474870,15 +479616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [134472] = 5, + [136214] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4261), 1, + STATE(4305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -474887,7 +479633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 36, + ACTIONS(6425), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -474924,95 +479670,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [134531] = 21, + [136273] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(6995), 1, - anon_sym_DOT, - ACTIONS(6999), 1, - anon_sym_PIPE, - ACTIONS(7001), 1, - anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_EQ_EQ, - ACTIONS(7011), 1, - anon_sym_AMP_STAR, - ACTIONS(7017), 1, - anon_sym_AMP_AMP, - ACTIONS(7019), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7021), 1, - sym__start_of_index_operator, - ACTIONS(7027), 1, - sym_binary_ampersand, - STATE(4262), 1, + STATE(4306), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7003), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7009), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7013), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6997), 3, + ACTIONS(6107), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7007), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7023), 4, + anon_sym_AMP_STAR, + ACTIONS(6105), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7025), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6107), 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_do, - [134622] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [136332] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4263), 1, + STATE(4307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 36, - sym__line_break, + ACTIONS(6069), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475023,15 +479753,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, @@ -475047,16 +479774,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, - [134681] = 5, + anon_sym_when, + anon_sym_in, + [136391] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4264), 1, + STATE(4308), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -475065,7 +479795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 36, + ACTIONS(6109), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475102,15 +479832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [134740] = 5, + [136450] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4265), 1, + STATE(4309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -475119,9 +479849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 36, + ACTIONS(6113), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475134,6 +479863,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, @@ -475155,16 +479885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [134799] = 5, + anon_sym_else, + [136509] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4266), 1, + STATE(4310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -475173,9 +479903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 36, + ACTIONS(6117), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475188,6 +479917,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, @@ -475209,18 +479939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [134858] = 6, + anon_sym_else, + [136568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7325), 1, - anon_sym_EQ, - STATE(4267), 1, + STATE(4311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -475229,7 +479957,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 34, + ACTIONS(6497), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475240,12 +479970,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, @@ -475261,18 +479993,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, - [134918] = 5, + anon_sym_do, + [136627] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4268), 1, + STATE(4312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -475281,7 +480011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 35, + ACTIONS(6121), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475292,12 +480023,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, @@ -475313,29 +480047,25 @@ 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, - [134976] = 5, + [136686] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4269), 1, + STATE(4313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 34, + ACTIONS(5694), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -475348,13 +480078,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, @@ -475369,108 +480102,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [135034] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7327), 1, - anon_sym_DOT_DOT, - ACTIONS(7329), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7351), 1, - anon_sym_QMARK, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4270), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7359), 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, - [135128] = 11, + [136745] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7369), 1, - anon_sym_PIPE, - ACTIONS(7371), 1, - anon_sym_QMARK, - STATE(4271), 1, + STATE(4314), 1, sym_heredoc_body, - STATE(4366), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 8, - anon_sym_RBRACK, + ACTIONS(5696), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 29, + ACTIONS(5694), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -475482,10 +480132,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, @@ -475496,33 +480152,30 @@ 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, - [135198] = 6, + [136804] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7373), 1, - anon_sym_COLON_COLON, + STATE(4315), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4272), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 10, - anon_sym_RBRACK, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 31, + ACTIONS(6437), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475533,12 +480186,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, @@ -475549,35 +480206,30 @@ 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, - [135258] = 7, + anon_sym_do, + [136863] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7376), 1, - anon_sym_COLON_COLON, - STATE(4272), 1, - aux_sym_constant_repeat1, - STATE(4273), 1, + STATE(4316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 10, - anon_sym_RBRACK, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 31, + ACTIONS(6437), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475588,12 +480240,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, @@ -475604,41 +480260,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135320] = 11, + anon_sym_do, + [136922] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7369), 1, - anon_sym_PIPE, - ACTIONS(7371), 1, - anon_sym_QMARK, - STATE(4274), 1, + STATE(4317), 1, sym_heredoc_body, - STATE(4366), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 8, - anon_sym_RBRACK, + ACTIONS(5717), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 29, + ACTIONS(5715), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -475650,10 +480294,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, @@ -475664,40 +480314,29 @@ 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, - [135390] = 11, + [136981] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7369), 1, - anon_sym_PIPE, - ACTIONS(7371), 1, - anon_sym_QMARK, - STATE(4275), 1, + STATE(4318), 1, sym_heredoc_body, - STATE(4366), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 8, - anon_sym_RBRACK, + ACTIONS(6503), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 29, + ACTIONS(6501), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -475709,10 +480348,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, @@ -475723,30 +480368,30 @@ 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, - [135460] = 5, + [137040] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4276), 1, + STATE(4319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 34, + ACTIONS(6505), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475780,238 +480425,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135518] = 23, + anon_sym_do, + [137099] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7327), 1, - anon_sym_DOT_DOT, - ACTIONS(7329), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7351), 1, - anon_sym_QMARK, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4277), 1, + STATE(4320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7359), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6872), 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, - [135612] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7327), 1, + ACTIONS(5717), 8, anon_sym_DOT_DOT, - ACTIONS(7329), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, anon_sym_DOT, - ACTIONS(7335), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7351), 1, - anon_sym_QMARK, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4278), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + anon_sym_AMP_STAR, + ACTIONS(5715), 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(7359), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6884), 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, - [135706] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7327), 1, - anon_sym_DOT_DOT, - ACTIONS(7329), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7351), 1, - anon_sym_QMARK, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4279), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7345), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7357), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7359), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6753), 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, - [135800] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [137158] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4280), 1, + STATE(4321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 34, + ACTIONS(6469), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -476024,13 +480510,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, @@ -476045,16 +480534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [135858] = 5, + [137217] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4281), 1, + STATE(4322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -476063,7 +480551,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 35, + ACTIONS(6469), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476074,12 +480564,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, @@ -476095,32 +480587,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_else, - anon_sym_when, - anon_sym_in, - [135916] = 6, + anon_sym_do, + [137276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4282), 1, + STATE(4323), 1, sym_heredoc_body, - STATE(4366), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 10, - anon_sym_RBRACK, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 32, + ACTIONS(6485), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -476132,12 +480618,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, @@ -476149,72 +480639,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_do, - [135976] = 5, + [137335] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4283), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7063), 1, + anon_sym_DOT_DOT, + ACTIONS(7065), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7067), 1, + anon_sym_DOT, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_CARET, + ACTIONS(7077), 1, + anon_sym_EQ_EQ, + ACTIONS(7083), 1, + anon_sym_AMP_STAR, + ACTIONS(7087), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_AMP_AMP, + ACTIONS(7091), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7099), 1, + sym_binary_ampersand, + STATE(4324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7075), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7081), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7085), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7069), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6344), 35, - sym__start_of_index_operator, + ACTIONS(7079), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7095), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7097), 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(6747), 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, - [136034] = 5, + [137432] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4284), 1, + STATE(4325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -476223,7 +480732,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 35, + ACTIONS(6514), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476234,12 +480745,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, @@ -476255,19 +480768,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, - [136092] = 5, + anon_sym_do, + [137491] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4285), 1, + STATE(4326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -476276,8 +480786,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 35, + ACTIONS(5832), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476295,7 +480806,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -476312,78 +480822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [136150] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(7286), 1, - sym__start_of_tuple_type, - ACTIONS(7288), 1, - sym__start_of_named_tuple_type, - ACTIONS(7378), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_DASH_GT, - STATE(4286), 1, - sym_heredoc_body, - STATE(7728), 1, - sym_constant, - STATE(7771), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7284), 2, - sym_self, - sym_underscore_type, - STATE(7758), 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(4628), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [136228] = 5, + anon_sym_do, + [137550] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4287), 1, + ACTIONS(7353), 1, + sym_regex_modifier, + STATE(4327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -476392,8 +480842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 35, - sym__line_break, + ACTIONS(5995), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476404,14 +480853,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, @@ -476424,19 +480871,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, - [136286] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [137611] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4288), 1, + STATE(4328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(5911), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -476445,7 +480895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 35, + anon_sym_COLON2, + ACTIONS(5909), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476474,34 +480925,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [136344] = 5, + [137670] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4289), 1, - sym_heredoc_body, + ACTIONS(7355), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + STATE(4329), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5970), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476513,12 +480964,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_RPAREN, + anon_sym_RBRACE, + 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, @@ -476532,152 +480983,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, - [136402] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(7286), 1, - sym__start_of_tuple_type, - ACTIONS(7288), 1, - sym__start_of_named_tuple_type, - ACTIONS(7378), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_DASH_GT, - STATE(4290), 1, - sym_heredoc_body, - STATE(7728), 1, - sym_constant, - STATE(7779), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7284), 2, - sym_self, - sym_underscore_type, - STATE(7758), 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(4656), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [136480] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(7286), 1, - sym__start_of_tuple_type, - ACTIONS(7288), 1, - sym__start_of_named_tuple_type, - ACTIONS(7378), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_DASH_GT, - STATE(4291), 1, - sym_heredoc_body, - STATE(7728), 1, - sym_constant, - STATE(7780), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7284), 2, - sym_self, - sym_underscore_type, - STATE(7758), 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(4678), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [136558] = 5, + [137730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4292), 1, + STATE(4330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 35, + ACTIONS(4960), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476689,13 +481018,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, @@ -476709,53 +481037,46 @@ 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, - [136616] = 8, + anon_sym_do, + anon_sym_then, + [137788] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - STATE(4293), 1, + STATE(4331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(4962), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 32, + ACTIONS(4964), 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__modifier_if_keyword, - sym__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, @@ -476765,32 +481086,44 @@ 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, - [136680] = 7, + anon_sym_do, + anon_sym_then, + [137846] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, anon_sym_DOT, - STATE(4294), 1, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7358), 1, + anon_sym_PIPE, + STATE(4332), 1, sym_heredoc_body, + STATE(4522), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(4970), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 34, + ACTIONS(4972), 30, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -476800,16 +481133,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_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -476820,32 +481147,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_else, - [136742] = 7, + anon_sym_do, + anon_sym_then, + [137916] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - STATE(4295), 1, + STATE(4333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(4914), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 34, + ACTIONS(4916), 34, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -476855,16 +481182,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, @@ -476878,22 +481202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [136804] = 8, + anon_sym_do, + anon_sym_then, + [137974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1861), 1, - anon_sym_COLON, - ACTIONS(6934), 1, - anon_sym_COLON_COLON, - STATE(3500), 1, - aux_sym_constant_repeat1, - STATE(4296), 1, + STATE(4334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + ACTIONS(6559), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -476902,9 +481221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 32, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6557), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476916,9 +481233,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, @@ -476929,21 +481250,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, - [136868] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [138032] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4297), 1, + STATE(4335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -476952,7 +481274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 35, + ACTIONS(6249), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476988,24 +481310,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [136926] = 5, + [138090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4298), 1, + STATE(4336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 35, + ACTIONS(4968), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477017,13 +481342,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, @@ -477037,28 +481361,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_else, - anon_sym_when, - anon_sym_in, - [136984] = 5, + anon_sym_do, + anon_sym_then, + [138148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4299), 1, + STATE(4337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 35, + ACTIONS(4920), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477070,13 +481395,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, @@ -477090,28 +481414,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, - [137042] = 5, + anon_sym_do, + anon_sym_then, + [138206] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4300), 1, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + anon_sym_DOT, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7358), 1, + anon_sym_PIPE, + STATE(4338), 1, sym_heredoc_body, + STATE(4522), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(4922), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 35, + ACTIONS(4924), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477123,13 +481458,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, @@ -477140,31 +481471,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_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [137100] = 5, + anon_sym_do, + anon_sym_then, + [138276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4301), 1, + STATE(4339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 35, + ACTIONS(4928), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477176,13 +481507,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, @@ -477196,28 +481526,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_else, - anon_sym_when, - anon_sym_in, - [137158] = 5, + anon_sym_do, + anon_sym_then, + [138334] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4302), 1, + STATE(4340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 35, + ACTIONS(4932), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477229,13 +481560,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, @@ -477249,19 +481579,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, - [137216] = 5, + anon_sym_do, + anon_sym_then, + [138392] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4303), 1, + STATE(4341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477271,7 +481599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 34, + ACTIONS(4936), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -477306,75 +481634,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [137274] = 8, + [138450] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, + ACTIONS(7093), 1, sym__start_of_index_operator, - ACTIONS(7331), 1, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, anon_sym_DOT, - STATE(4304), 1, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7349), 2, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, - anon_sym_DOT_DOT, + ACTIONS(7366), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6554), 32, - sym__line_break, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7392), 4, sym__binary_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6491), 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, - [137338] = 9, + [138544] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(841), 1, - sym__string_literal_start, - ACTIONS(7382), 1, + ACTIONS(6973), 1, anon_sym_COLON, - STATE(4305), 1, + STATE(4343), 1, sym_heredoc_body, - STATE(4651), 1, - aux_sym_chained_string_repeat1, - STATE(5141), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, @@ -477387,9 +481724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(173), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477401,9 +481736,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, @@ -477417,17 +481756,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_then, - [137404] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [138604] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4306), 1, + ACTIONS(7396), 1, + anon_sym_COMMA, + STATE(4344), 1, sym_heredoc_body, + STATE(4436), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477436,7 +481780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 35, + ACTIONS(5750), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477450,7 +481794,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, @@ -477468,19 +481811,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, - [137462] = 5, + [138666] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4307), 1, + STATE(4345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477489,7 +481831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 35, + ACTIONS(6433), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477525,85 +481867,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [137520] = 12, + [138724] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - STATE(4308), 1, + STATE(4346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7357), 4, + ACTIONS(6087), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6085), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 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_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, - [137592] = 5, + anon_sym_when, + anon_sym_in, + [138782] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4309), 1, + ACTIONS(1863), 1, + anon_sym_COLON, + ACTIONS(6949), 1, + anon_sym_COLON_COLON, + STATE(3544), 1, + aux_sym_constant_repeat1, + STATE(4347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(4855), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 34, + ACTIONS(4857), 32, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -477618,11 +481958,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, @@ -477633,29 +481970,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_then, - [137650] = 5, + [138846] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4310), 1, + STATE(4348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 35, + ACTIONS(4948), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477667,13 +482008,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, @@ -477687,19 +482027,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, - [137708] = 5, + anon_sym_do, + anon_sym_then, + [138904] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4311), 1, + STATE(4349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477708,7 +482046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 35, + ACTIONS(6375), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477744,15 +482082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [137766] = 5, + [138962] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4312), 1, + STATE(4350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477761,7 +482099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 35, + ACTIONS(6389), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477797,15 +482135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [137824] = 5, + [139020] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4313), 1, + STATE(4351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477814,7 +482152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 35, + ACTIONS(6389), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477850,19 +482188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [137882] = 7, + [139078] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7384), 1, - anon_sym_COMMA, - STATE(4314), 1, + STATE(4352), 1, sym_heredoc_body, - STATE(4384), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477871,7 +482205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 33, + ACTIONS(6449), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477885,6 +482219,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, @@ -477902,18 +482237,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, - [137944] = 5, + [139136] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4315), 1, + STATE(4353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477922,7 +482258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 35, + ACTIONS(6091), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477958,15 +482294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [138002] = 5, + [139194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4316), 1, + STATE(4354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -477975,7 +482311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 35, + ACTIONS(6445), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478011,19 +482347,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [138060] = 7, + [139252] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7386), 1, - anon_sym_COMMA, - STATE(4317), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + STATE(4355), 1, sym_heredoc_body, - STATE(4514), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7390), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7392), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 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, + [139324] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4356), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478032,8 +482424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 33, - sym__line_break, + ACTIONS(6397), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478044,13 +482435,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, @@ -478066,19 +482456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [138122] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [139382] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7386), 1, - anon_sym_COMMA, - STATE(4318), 1, + ACTIONS(6897), 1, + anon_sym_LPAREN2, + STATE(4357), 1, sym_heredoc_body, - STATE(4517), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478087,7 +482479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 33, + ACTIONS(173), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478106,6 +482498,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, @@ -478121,28 +482514,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [138184] = 5, + [139442] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4319), 1, + STATE(4358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 34, - sym__start_of_brace_block, + ACTIONS(5715), 35, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -478153,11 +482543,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, @@ -478168,33 +482560,31 @@ 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, - [138242] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [139500] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4320), 1, + STATE(4359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6381), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478206,12 +482596,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, @@ -478225,17 +482616,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, - [138300] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [139558] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4321), 1, + ACTIONS(7398), 1, + anon_sym_COMMA, + STATE(4360), 1, sym_heredoc_body, + STATE(4410), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478244,7 +482641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 35, + ACTIONS(5856), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478263,7 +482660,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, @@ -478276,71 +482672,66 @@ 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, - [138358] = 23, + [139620] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7327), 1, + ACTIONS(6143), 1, anon_sym_DOT_DOT, - ACTIONS(7329), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7370), 1, anon_sym_CARET, - ACTIONS(7341), 1, + ACTIONS(7374), 1, anon_sym_EQ_EQ, - ACTIONS(7347), 1, + ACTIONS(7380), 1, anon_sym_AMP_STAR, - ACTIONS(7351), 1, - anon_sym_QMARK, - ACTIONS(7353), 1, + ACTIONS(7386), 1, anon_sym_AMP_AMP, - ACTIONS(7355), 1, + ACTIONS(7388), 1, anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, + ACTIONS(7394), 1, sym_binary_ampersand, - STATE(4322), 1, + STATE(4361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, + ACTIONS(7372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7345), 2, + ACTIONS(7378), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, + ACTIONS(7382), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + ACTIONS(7366), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, + ACTIONS(7376), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, + ACTIONS(7392), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6205), 10, + ACTIONS(6141), 12, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -478349,17 +482740,19 @@ 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, - [138452] = 5, + [139710] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4323), 1, + STATE(4362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478368,8 +482761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 35, - sym__line_break, + ACTIONS(6097), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478380,15 +482772,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_LPAREN, + 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, @@ -478404,15 +482793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [138510] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [139768] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4324), 1, + ACTIONS(7400), 1, + sym_regex_modifier, + STATE(4363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478421,7 +482816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 35, + ACTIONS(5995), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478432,12 +482828,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, @@ -478453,19 +482851,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, - [138568] = 5, + [139828] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4325), 1, + ACTIONS(7398), 1, + anon_sym_COMMA, + STATE(4364), 1, sym_heredoc_body, + STATE(4413), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478474,7 +482872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 35, + ACTIONS(5856), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478485,12 +482884,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, @@ -478506,88 +482906,122 @@ 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, - [138626] = 21, + [139890] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(7402), 1, + sym_regex_modifier, + STATE(4365), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6031), 8, anon_sym_DOT_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, anon_sym_DOT, - ACTIONS(7335), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, anon_sym_EQ_EQ, - ACTIONS(7347), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, + ACTIONS(6029), 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, - STATE(4326), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7339), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__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, - ACTIONS(7345), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [139950] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4366), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4838), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + anon_sym_AMP_STAR, + ACTIONS(4840), 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, sym_binary_wrapping_minus, - ACTIONS(7359), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 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_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_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_else, - [138716] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [140008] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4327), 1, + STATE(4367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478596,7 +483030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 35, + ACTIONS(6097), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478632,15 +483066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [138774] = 5, + [140066] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4328), 1, + STATE(4368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(6289), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478649,7 +483083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 35, + ACTIONS(6287), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478685,15 +483119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [138832] = 5, + [140124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4329), 1, + STATE(4369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478702,7 +483136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 35, + ACTIONS(6385), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478738,15 +483172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [138890] = 5, + [140182] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4330), 1, + STATE(4370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -478755,7 +483189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 35, + ACTIONS(6393), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478791,25 +483225,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [138948] = 5, + [140240] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4331), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + STATE(4371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 35, - sym__start_of_index_operator, + ACTIONS(6301), 34, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -478844,176 +483280,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139006] = 17, + [140302] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4332), 1, + STATE(4372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(6049), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + anon_sym_AMP_STAR, + ACTIONS(6047), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5959), 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, + 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, - [139088] = 13, + [140360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4333), 1, + STATE(4373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7357), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7359), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(6053), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 21, + anon_sym_AMP_STAR, + ACTIONS(6051), 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, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [139162] = 11, + [140418] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - STATE(4334), 1, + STATE(4374), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7357), 4, + ACTIONS(5717), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5715), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 24, - 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_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, @@ -479025,91 +483431,87 @@ 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, - [139232] = 15, + anon_sym_when, + anon_sym_in, + [140476] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4335), 1, + STATE(4375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7357), 4, + ACTIONS(5953), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5951), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 20, - 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, - [139310] = 5, + [140534] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4336), 1, + STATE(4376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 35, + ACTIONS(5925), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479120,12 +483522,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, @@ -479141,157 +483545,68 @@ 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, - [139368] = 23, + [140592] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7327), 1, - anon_sym_DOT_DOT, - ACTIONS(7329), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7351), 1, - anon_sym_QMARK, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4337), 1, + STATE(4377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + ACTIONS(6455), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + anon_sym_AMP_STAR, + ACTIONS(6453), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6845), 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, - [139462] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4338), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7339), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7345), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7357), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7359), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5975), 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_DOT_DOT_DOT, - anon_sym_end, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [139548] = 5, + anon_sym_when, + anon_sym_in, + [140650] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4339), 1, + STATE(4378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -479300,7 +483615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 35, + ACTIONS(6469), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479336,15 +483651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139606] = 5, + [140708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4340), 1, + STATE(4379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -479353,7 +483668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 35, + ACTIONS(6469), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479389,24 +483704,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139664] = 5, + [140766] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4341), 1, + STATE(4380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6023), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 35, + ACTIONS(6021), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479417,12 +483734,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, @@ -479438,28 +483757,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, - [139722] = 5, + [140824] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4342), 1, + ACTIONS(7408), 1, + anon_sym_LPAREN, + ACTIONS(7410), 1, + anon_sym_DOT, + STATE(4381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 35, + ACTIONS(6039), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479470,12 +483789,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, @@ -479491,19 +483812,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, - [139780] = 5, + [140886] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4343), 1, + STATE(4382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -479512,7 +483829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 35, + ACTIONS(6493), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479548,15 +483865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139838] = 5, + [140944] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4344), 1, + ACTIONS(7408), 1, + anon_sym_LPAREN, + STATE(4383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -479565,7 +483884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 35, + ACTIONS(6039), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479576,12 +483896,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, @@ -479597,19 +483919,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, - [139896] = 5, + [141004] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4345), 1, + STATE(4384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -479618,7 +483936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 35, + ACTIONS(6101), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479654,144 +483972,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139954] = 25, + [141062] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7384), 1, - anon_sym_COMMA, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7370), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7380), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7394), 1, sym_binary_ampersand, - STATE(4346), 1, + STATE(4385), 1, sym_heredoc_body, - STATE(4416), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7382), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7392), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [140052] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4347), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5939), 8, + ACTIONS(6169), 5, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5934), 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, + ACTIONS(6167), 20, + 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, - [140110] = 6, + [141140] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7426), 1, - anon_sym_COMMA, + ACTIONS(7412), 1, + anon_sym_LPAREN, + STATE(4386), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4348), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -479800,7 +484054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 33, + ACTIONS(6061), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479811,11 +484066,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_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -479831,18 +484089,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, - [140170] = 5, + [141200] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4349), 1, + STATE(4387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6277), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -479851,7 +484106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 35, + ACTIONS(6275), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479887,15 +484142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140228] = 5, + [141258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4350), 1, + STATE(4388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -479904,7 +484159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 35, + ACTIONS(6497), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479940,95 +484195,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140286] = 20, + [141316] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, + ACTIONS(7396), 1, + anon_sym_COMMA, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7341), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7347), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7353), 1, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7361), 1, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4351), 1, + STATE(4389), 1, sym_heredoc_body, + STATE(4436), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7345), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 13, + ACTIONS(5750), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [141414] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7448), 1, + anon_sym_of, + STATE(4390), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5848), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5844), 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, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [140374] = 7, + [141474] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(4352), 1, + ACTIONS(7450), 1, + anon_sym_of, + STATE(4391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(5748), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 34, + ACTIONS(5744), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -480038,12 +484353,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, @@ -480059,25 +484376,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, - [140436] = 8, + [141534] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(729), 1, - aux_sym_top_level_fun_def_token1, - ACTIONS(5666), 1, - anon_sym_LPAREN2, - ACTIONS(6612), 1, - anon_sym_EQ, - STATE(4353), 1, + ACTIONS(7452), 1, + anon_sym_of, + STATE(4392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -480086,7 +484395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 32, + ACTIONS(5981), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480101,11 +484410,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, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -480119,15 +484430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [140500] = 5, + [141594] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4354), 1, + STATE(4393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -480136,7 +484447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 35, + ACTIONS(6105), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480172,24 +484483,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140558] = 5, + [141652] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4355), 1, + ACTIONS(7454), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4394), 1, + sym_heredoc_body, + STATE(8482), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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, + [141750] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(4950), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 35, + ACTIONS(4952), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480201,13 +484588,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, @@ -480221,71 +484607,69 @@ 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, - [140616] = 23, + anon_sym_do, + anon_sym_then, + [141808] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, + ACTIONS(7093), 1, sym__start_of_index_operator, - ACTIONS(7327), 1, + ACTIONS(7360), 1, anon_sym_DOT_DOT, - ACTIONS(7329), 1, + ACTIONS(7362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, + ACTIONS(7364), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7370), 1, anon_sym_CARET, - ACTIONS(7341), 1, + ACTIONS(7374), 1, anon_sym_EQ_EQ, - ACTIONS(7347), 1, + ACTIONS(7380), 1, anon_sym_AMP_STAR, - ACTIONS(7351), 1, + ACTIONS(7384), 1, anon_sym_QMARK, - ACTIONS(7353), 1, + ACTIONS(7386), 1, anon_sym_AMP_AMP, - ACTIONS(7355), 1, + ACTIONS(7388), 1, anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, + ACTIONS(7394), 1, sym_binary_ampersand, - STATE(4356), 1, + STATE(4396), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, + ACTIONS(7372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7345), 2, + ACTIONS(7378), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, + ACTIONS(7382), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + ACTIONS(7366), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, + ACTIONS(7376), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, + ACTIONS(7392), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6469), 10, + ACTIONS(6373), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -480296,15 +484680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [140710] = 5, + [141902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4357), 1, + STATE(4397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -480313,7 +484697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 35, + ACTIONS(6109), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480349,24 +484733,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140768] = 5, + [141960] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4358), 1, + STATE(4398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 35, + ACTIONS(5669), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480377,12 +484763,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, @@ -480398,28 +484786,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_else, - anon_sym_when, - anon_sym_in, - [140826] = 5, + [142018] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4359), 1, + STATE(4399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 35, + ACTIONS(5818), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480430,12 +484816,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, @@ -480451,19 +484839,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, - [140884] = 5, + [142076] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4360), 1, + STATE(4400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -480472,7 +484856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 35, + ACTIONS(6113), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480508,15 +484892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140942] = 5, + [142134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4361), 1, + STATE(4401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -480525,7 +484909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 35, + ACTIONS(6117), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480561,15 +484945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141000] = 5, + [142192] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4362), 1, + STATE(4402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -480578,7 +484962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 35, + ACTIONS(6121), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480614,27 +484998,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141058] = 5, + [142250] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4363), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7392), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6843), 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, + [142344] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4404), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 34, + ACTIONS(4622), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480645,13 +485098,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_LBRACK, + anon_sym_LPAREN, 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, @@ -480665,122 +485122,209 @@ 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, - [141116] = 5, + [142402] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4364), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6435), 35, - sym__start_of_index_operator, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7392), 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(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, + [142496] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4406), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7378), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7376), 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(7390), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7392), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6868), 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, - [141174] = 23, + [142590] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, + ACTIONS(7093), 1, sym__start_of_index_operator, - ACTIONS(7327), 1, + ACTIONS(7360), 1, anon_sym_DOT_DOT, - ACTIONS(7329), 1, + ACTIONS(7362), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, + ACTIONS(7364), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7370), 1, anon_sym_CARET, - ACTIONS(7341), 1, + ACTIONS(7374), 1, anon_sym_EQ_EQ, - ACTIONS(7347), 1, + ACTIONS(7380), 1, anon_sym_AMP_STAR, - ACTIONS(7351), 1, + ACTIONS(7384), 1, anon_sym_QMARK, - ACTIONS(7353), 1, + ACTIONS(7386), 1, anon_sym_AMP_AMP, - ACTIONS(7355), 1, + ACTIONS(7388), 1, anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, + ACTIONS(7394), 1, sym_binary_ampersand, - STATE(4365), 1, + STATE(4407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, + ACTIONS(7372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7345), 2, + ACTIONS(7378), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, + ACTIONS(7382), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + ACTIONS(7366), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, + ACTIONS(7376), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, + ACTIONS(7392), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6247), 10, + ACTIONS(6895), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -480791,30 +485335,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [141268] = 7, + [142684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7369), 1, - anon_sym_PIPE, - STATE(4366), 1, + STATE(4408), 1, sym_heredoc_body, - STATE(4368), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 9, - anon_sym_RBRACK, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 32, - sym__start_of_brace_block, + ACTIONS(5818), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480825,12 +485365,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, @@ -480842,28 +485386,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [141330] = 5, + [142742] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4367), 1, + STATE(4409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 35, + ACTIONS(5822), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480874,12 +485418,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, @@ -480895,33 +485441,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_else, - anon_sym_when, - anon_sym_in, - [141388] = 6, + [142800] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7429), 1, - anon_sym_PIPE, + ACTIONS(7398), 1, + anon_sym_COMMA, + STATE(4410), 1, + sym_heredoc_body, + STATE(4413), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4368), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 9, - anon_sym_RBRACK, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 32, - sym__start_of_brace_block, + ACTIONS(5888), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480932,12 +485474,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_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, @@ -480949,71 +485494,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, - anon_sym_do, - [141448] = 23, + [142862] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7327), 1, + ACTIONS(6255), 1, anon_sym_DOT_DOT, - ACTIONS(7329), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7370), 1, anon_sym_CARET, - ACTIONS(7341), 1, + ACTIONS(7374), 1, anon_sym_EQ_EQ, - ACTIONS(7347), 1, + ACTIONS(7380), 1, anon_sym_AMP_STAR, - ACTIONS(7351), 1, - anon_sym_QMARK, - ACTIONS(7353), 1, + ACTIONS(7386), 1, anon_sym_AMP_AMP, - ACTIONS(7355), 1, + ACTIONS(7388), 1, anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, + ACTIONS(7394), 1, sym_binary_ampersand, - STATE(4369), 1, + STATE(4411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, + ACTIONS(7372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7345), 2, + ACTIONS(7378), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, + ACTIONS(7382), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + ACTIONS(7366), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, + ACTIONS(7376), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, + ACTIONS(7392), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6459), 10, + ACTIONS(6253), 12, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -481022,39 +485561,29 @@ 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, - [141542] = 11, + [142952] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7369), 1, - anon_sym_PIPE, - ACTIONS(7371), 1, - anon_sym_QMARK, - STATE(4366), 1, - aux_sym_union_type_repeat1, - STATE(4370), 1, + STATE(4412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 8, - anon_sym_RBRACK, + ACTIONS(5816), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 29, - sym__start_of_brace_block, + ACTIONS(5814), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481065,10 +485594,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, + 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, anon_sym_LT_LT, @@ -481079,31 +485615,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, - [141612] = 5, + [143010] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4371), 1, - sym_heredoc_body, + ACTIONS(7494), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + STATE(4413), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 34, + ACTIONS(5970), 33, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481114,13 +485650,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, @@ -481134,26 +485672,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, - [141670] = 5, + [143070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4372), 1, + STATE(4414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 35, + ACTIONS(4912), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481165,13 +485704,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, @@ -481185,41 +485723,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_else, - anon_sym_when, - anon_sym_in, - [141728] = 11, + anon_sym_do, + anon_sym_then, + [143128] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7369), 1, - anon_sym_PIPE, - ACTIONS(7371), 1, - anon_sym_QMARK, - STATE(4366), 1, - aux_sym_union_type_repeat1, - STATE(4373), 1, + STATE(4415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 8, - anon_sym_RBRACK, + ACTIONS(6487), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 29, - sym__start_of_brace_block, + ACTIONS(6485), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481231,9 +485754,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, @@ -481244,31 +485771,34 @@ 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, - [141798] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [143186] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4374), 1, + ACTIONS(7497), 1, + sym_regex_modifier, + STATE(4416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 34, + ACTIONS(5832), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481279,13 +485809,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, @@ -481299,39 +485832,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_then, - [141856] = 11, + [143246] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7241), 1, - anon_sym_QMARK, - ACTIONS(7432), 1, - anon_sym_PIPE, - STATE(4375), 1, + STATE(4417), 1, sym_heredoc_body, - STATE(4379), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(5020), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 30, + ACTIONS(5022), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481342,10 +485862,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, @@ -481356,28 +485882,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_then, - [141926] = 5, + [143304] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4376), 1, + STATE(4418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 35, + ACTIONS(6009), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481388,12 +485915,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, @@ -481409,31 +485938,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_else, - anon_sym_when, - anon_sym_in, - [141984] = 5, + [143362] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4377), 1, + ACTIONS(7499), 1, + sym_regex_modifier, + STATE(4419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 34, + ACTIONS(5838), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481444,13 +485969,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, @@ -481464,103 +485992,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_then, - [142042] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7327), 1, - anon_sym_DOT_DOT, - ACTIONS(7329), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7351), 1, - anon_sym_QMARK, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4378), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7359), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6461), 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, - [142136] = 7, + [143422] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7432), 1, - anon_sym_PIPE, - STATE(4379), 1, + STATE(4420), 1, sym_heredoc_body, - STATE(4380), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 33, + ACTIONS(5850), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481571,12 +486022,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_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481590,31 +486045,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_then, - [142198] = 6, + [143480] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7434), 1, - anon_sym_PIPE, + STATE(4421), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4380), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(5945), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 33, + ACTIONS(5943), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481625,12 +486075,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_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481644,65 +486098,55 @@ 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, - [142258] = 21, + [143538] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, + ACTIONS(7093), 1, sym__start_of_index_operator, - ACTIONS(7331), 1, + ACTIONS(7364), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7370), 1, anon_sym_CARET, - ACTIONS(7341), 1, + ACTIONS(7374), 1, anon_sym_EQ_EQ, - ACTIONS(7347), 1, + ACTIONS(7380), 1, anon_sym_AMP_STAR, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, + ACTIONS(7394), 1, sym_binary_ampersand, - STATE(4381), 1, + STATE(4422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, + ACTIONS(7372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, + ACTIONS(7382), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, + ACTIONS(7376), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, + ACTIONS(7392), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 12, + ACTIONS(6145), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -481713,21 +486157,21 @@ static const uint16_t ts_small_parse_table[] = { 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_else, - [142348] = 7, + [143620] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7384), 1, - anon_sym_COMMA, - STATE(4382), 1, + STATE(4423), 1, sym_heredoc_body, - STATE(4416), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -481736,7 +486180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 33, + ACTIONS(6514), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481750,6 +486194,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, @@ -481767,40 +486212,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, - [142410] = 11, + [143678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7241), 1, - anon_sym_QMARK, - ACTIONS(7432), 1, - anon_sym_PIPE, - STATE(4379), 1, - aux_sym_union_type_repeat1, - STATE(4383), 1, + STATE(4424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(5864), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 30, + ACTIONS(5862), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481811,10 +486246,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, @@ -481825,85 +486266,100 @@ 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, - [142480] = 7, + [143736] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7384), 1, + ACTIONS(7454), 1, anon_sym_COMMA, - STATE(4348), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4384), 1, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4425), 1, sym_heredoc_body, + STATE(8521), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5811), 33, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 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_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(5856), 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_else, - anon_sym_when, - anon_sym_in, - [142542] = 5, + [143834] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4385), 1, + STATE(4426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 34, - sym__line_break, + ACTIONS(6183), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481915,12 +486371,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, @@ -481931,21 +486388,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_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [142600] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [143892] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4386), 1, + STATE(4427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -481954,7 +486412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 35, + ACTIONS(6183), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481990,17 +486448,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [142658] = 6, + [143950] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7437), 1, - anon_sym_of, - STATE(4387), 1, + STATE(4428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482009,8 +486465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 34, - sym__line_break, + ACTIONS(6183), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482021,14 +486476,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, @@ -482044,17 +486497,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [142718] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [144008] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7439), 1, - anon_sym_of, - STATE(4388), 1, + ACTIONS(7396), 1, + anon_sym_COMMA, + STATE(4429), 1, sym_heredoc_body, + STATE(4505), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482063,8 +486522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 34, - sym__line_break, + ACTIONS(5856), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482075,14 +486533,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_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -482098,17 +486553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [142778] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [144070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7441), 1, - anon_sym_of, - STATE(4389), 1, + STATE(4430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482117,8 +486573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 34, - sym__line_break, + ACTIONS(6183), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482129,14 +486584,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, @@ -482152,15 +486605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [142838] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [144128] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4390), 1, + STATE(4431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482169,7 +486626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 35, + ACTIONS(5832), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482205,84 +486662,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [142896] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4391), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7359), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6332), 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_else, - [142986] = 5, + [144186] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4392), 1, + ACTIONS(729), 1, + aux_sym_top_level_fun_def_token1, + ACTIONS(5648), 1, + anon_sym_LPAREN2, + ACTIONS(6655), 1, + anon_sym_EQ, + STATE(4432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482291,7 +486685,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 35, + ACTIONS(173), 32, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482302,14 +486697,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, + 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, @@ -482323,19 +486718,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, - [143044] = 5, + [144250] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4393), 1, + STATE(4433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(6415), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482344,7 +486735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 35, + ACTIONS(6413), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482380,15 +486771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143102] = 5, + [144308] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4394), 1, + STATE(4434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482397,7 +486788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 35, + ACTIONS(145), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482433,15 +486824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143160] = 5, + [144366] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4395), 1, + STATE(4435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(5923), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482450,7 +486841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 35, + ACTIONS(5921), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482486,15 +486877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143218] = 5, + [144424] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4396), 1, + ACTIONS(7396), 1, + anon_sym_COMMA, + STATE(4329), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482503,7 +486898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 35, + ACTIONS(5856), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482517,7 +486912,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, @@ -482535,28 +486929,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_else, anon_sym_when, anon_sym_in, - [143276] = 5, + [144486] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4397), 1, + STATE(4437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 35, + ACTIONS(4840), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482568,13 +486963,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, @@ -482585,22 +486979,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, - [143334] = 5, + anon_sym_then, + [144544] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4398), 1, + STATE(4438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(6503), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482609,7 +487002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 35, + ACTIONS(6501), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482645,15 +487038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143392] = 5, + [144602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4399), 1, + STATE(4439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482662,7 +487055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 35, + ACTIONS(6187), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482698,37 +487091,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143450] = 11, + [144660] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7241), 1, - anon_sym_QMARK, - ACTIONS(7432), 1, - anon_sym_PIPE, - STATE(4379), 1, - aux_sym_union_type_repeat1, - STATE(4400), 1, + STATE(4440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(5883), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 30, + ACTIONS(5881), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482739,10 +487121,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, @@ -482753,19 +487141,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_do, - anon_sym_then, - [143520] = 5, + [144718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4401), 1, + STATE(4441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482774,7 +487161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 35, + ACTIONS(6505), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482810,15 +487197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143578] = 5, + [144776] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4402), 1, + STATE(4442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482827,7 +487214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 35, + ACTIONS(6187), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482863,15 +487250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143636] = 5, + [144834] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4403), 1, + STATE(4443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482880,7 +487267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 35, + ACTIONS(5719), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482916,27 +487303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143694] = 5, + [144892] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4404), 1, + STATE(4444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5694), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482948,12 +487332,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, @@ -482967,17 +487352,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_then, - [143752] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [144950] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4405), 1, + ACTIONS(7501), 1, + anon_sym_LPAREN, + STATE(4445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -482986,7 +487375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 35, + ACTIONS(5901), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -482997,12 +487387,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, @@ -483018,28 +487410,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_else, - anon_sym_when, - anon_sym_in, - [143810] = 5, + [145010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4406), 1, + STATE(4446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 35, + ACTIONS(5913), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483050,12 +487440,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, @@ -483071,28 +487463,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_else, - anon_sym_when, - anon_sym_in, - [143868] = 5, + [145068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4407), 1, + STATE(4447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(145), 35, + ACTIONS(5917), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483103,12 +487493,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, @@ -483124,81 +487516,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, - [143926] = 5, + [145126] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4408), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6546), 35, - sym__start_of_index_operator, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7392), 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(6171), 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_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, - [143984] = 5, + [145212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4409), 1, + STATE(4449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(5979), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 35, + ACTIONS(5977), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483209,12 +487613,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, @@ -483230,33 +487636,25 @@ 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, - [144042] = 8, + [145270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7443), 1, - anon_sym_DOT, - ACTIONS(7445), 1, - sym__start_of_index_operator, - STATE(4316), 1, - sym__implicit_index_operator, - STATE(4410), 1, + STATE(4450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(6189), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 33, + ACTIONS(6187), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -483287,18 +487685,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, - [144106] = 5, + [145328] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4411), 1, + STATE(4451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -483307,7 +487706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 35, + ACTIONS(6187), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483343,15 +487742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144164] = 5, + [145386] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4412), 1, + STATE(4452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -483361,9 +487760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 34, + ACTIONS(5987), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483374,13 +487772,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, @@ -483394,17 +487795,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, - [144222] = 5, + [145444] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4413), 1, + STATE(4453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -483413,7 +487812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 35, + ACTIONS(6297), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483449,24 +487848,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144280] = 5, + [145502] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4414), 1, + ACTIONS(7503), 1, + anon_sym_COLON_COLON, + STATE(4454), 1, sym_heredoc_body, + STATE(4456), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(4855), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 35, + ACTIONS(4857), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483478,13 +487883,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, @@ -483495,22 +487898,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, - [144338] = 5, + [145564] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4415), 1, + STATE(4455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -483519,7 +487920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 35, + ACTIONS(6035), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483530,12 +487932,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, @@ -483548,35 +487952,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144396] = 7, + [145622] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7384), 1, - anon_sym_COMMA, - STATE(4348), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4416), 1, + ACTIONS(7503), 1, + anon_sym_COLON_COLON, + STATE(4456), 1, sym_heredoc_body, + STATE(4461), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(4845), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 33, + ACTIONS(4847), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483588,12 +487991,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_RBRACK, - anon_sym_EQ_GT, + 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, @@ -483604,30 +488006,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144458] = 5, + [145684] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4417), 1, + ACTIONS(7503), 1, + anon_sym_COLON_COLON, + STATE(4457), 1, sym_heredoc_body, + STATE(4462), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(4845), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 35, + ACTIONS(4847), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483639,13 +488046,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, @@ -483656,31 +488061,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, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144516] = 5, + [145746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4418), 1, + STATE(4458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 35, + ACTIONS(6069), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483691,12 +488096,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, @@ -483712,55 +488119,45 @@ 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, - [144574] = 10, + [145804] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - STATE(4419), 1, + ACTIONS(7505), 1, + anon_sym_LPAREN2, + STATE(4459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7359), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(4900), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 28, - sym__line_break, + anon_sym_AMP_STAR, + ACTIONS(4902), 32, + 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, - anon_sym_SEMI, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + 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, @@ -483770,28 +488167,43 @@ 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_else, - [144642] = 5, + anon_sym_do, + [145864] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4420), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7513), 1, + anon_sym_PIPE, + ACTIONS(7515), 1, + anon_sym_QMARK, + STATE(4460), 1, sym_heredoc_body, + STATE(4513), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(4859), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 35, + ACTIONS(4861), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483803,13 +488215,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, @@ -483820,31 +488228,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144700] = 5, + anon_sym_do, + [145934] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4421), 1, - sym_heredoc_body, + ACTIONS(7517), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + STATE(4461), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 35, + ACTIONS(4840), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483856,13 +488266,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, @@ -483873,31 +488281,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144758] = 5, + [145994] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4422), 1, + ACTIONS(7503), 1, + anon_sym_COLON_COLON, + STATE(4461), 1, + aux_sym_constant_repeat1, + STATE(4462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(4851), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 35, + ACTIONS(4853), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483909,13 +488321,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, @@ -483926,31 +488336,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144816] = 5, + [146056] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4423), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7513), 1, + anon_sym_PIPE, + ACTIONS(7515), 1, + anon_sym_QMARK, + STATE(4463), 1, sym_heredoc_body, + STATE(4513), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(4896), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 35, + ACTIONS(4898), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483962,13 +488383,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, @@ -483979,31 +488396,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, - [144874] = 5, + anon_sym_do, + [146126] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4424), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7513), 1, + anon_sym_PIPE, + ACTIONS(7515), 1, + anon_sym_QMARK, + STATE(4464), 1, sym_heredoc_body, + STATE(4513), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(4877), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 35, + ACTIONS(4879), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484015,13 +488442,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, @@ -484032,31 +488455,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144932] = 5, + anon_sym_do, + [146196] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4425), 1, + STATE(4465), 1, sym_heredoc_body, + STATE(4513), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(4873), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 35, + ACTIONS(4875), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484068,13 +488493,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, @@ -484086,31 +488509,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [144990] = 5, + anon_sym_do, + [146256] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4426), 1, + ACTIONS(7346), 1, + sym__start_of_index_operator, + ACTIONS(7520), 1, + anon_sym_DOT, + ACTIONS(7522), 1, + anon_sym_EQ, + STATE(4380), 1, + sym__implicit_index_operator, + STATE(4466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 35, - sym__start_of_index_operator, + ACTIONS(5719), 32, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -484120,12 +488548,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, @@ -484141,19 +488570,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, - [145048] = 5, + [146322] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4427), 1, + STATE(4467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -484162,7 +488587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 35, + ACTIONS(4618), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484173,12 +488599,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_LPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -484194,72 +488623,265 @@ 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, - [145106] = 5, + [146380] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4428), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6095), 35, - sym__start_of_index_operator, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7392), 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(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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, + 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, + [146454] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(7264), 1, + sym__start_of_tuple_type, + ACTIONS(7266), 1, + sym__start_of_named_tuple_type, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_GT, + STATE(4469), 1, + sym_heredoc_body, + STATE(7734), 1, + sym_constant, + STATE(7821), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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(4656), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [145164] = 5, + [146532] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4429), 1, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(7264), 1, + sym__start_of_tuple_type, + ACTIONS(7266), 1, + sym__start_of_named_tuple_type, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_GT, + STATE(4470), 1, + sym_heredoc_body, + STATE(7734), 1, + sym_constant, + STATE(7828), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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(4678), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [146610] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(7264), 1, + sym__start_of_tuple_type, + ACTIONS(7266), 1, + sym__start_of_named_tuple_type, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_GT, + STATE(4471), 1, + sym_heredoc_body, + STATE(7734), 1, + sym_constant, + STATE(7829), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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(4628), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [146688] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -484268,7 +488890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 35, + ACTIONS(6529), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484304,27 +488926,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145222] = 7, + [146746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(4430), 1, + STATE(4473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(5989), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 34, + ACTIONS(5987), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -484334,12 +488956,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, @@ -484355,31 +488979,25 @@ 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, - [145284] = 7, + [146804] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(4431), 1, + STATE(4474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(6535), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 34, + ACTIONS(6533), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -484414,97 +489032,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145346] = 5, + [146862] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4432), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + STATE(4475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4916), 34, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7392), 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, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [145404] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4433), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4926), 9, + ACTIONS(6165), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4928), 34, + ACTIONS(6163), 24, 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_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, @@ -484514,21 +489087,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_then, - [145462] = 5, + anon_sym_else, + [146932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4434), 1, + STATE(4476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -484538,9 +489109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 34, + ACTIONS(5991), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484551,13 +489121,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, @@ -484571,17 +489144,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, - [145520] = 5, + [146990] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4435), 1, + STATE(4477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(5968), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -484590,7 +489161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 35, + ACTIONS(5966), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484626,15 +489197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145578] = 5, + [147048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4436), 1, + STATE(4478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -484643,7 +489214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 35, + ACTIONS(6401), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484679,15 +489250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145636] = 5, + [147106] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4437), 1, + STATE(4479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -484696,7 +489267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 35, + ACTIONS(5970), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484732,27 +489303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145694] = 5, + [147164] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4438), 1, + STATE(4480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6441), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484764,12 +489332,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, @@ -484783,31 +489352,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_then, - [145752] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [147222] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - ACTIONS(7447), 1, - anon_sym_EQ, - STATE(4439), 1, + STATE(4481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 33, + ACTIONS(4956), 34, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484818,15 +489387,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, @@ -484840,88 +489407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [145814] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7384), 1, - anon_sym_COMMA, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4384), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4440), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [145912] = 5, + anon_sym_do, + anon_sym_then, + [147280] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4441), 1, + STATE(4482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -484930,7 +489426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 35, + ACTIONS(6191), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484966,15 +489462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145970] = 5, + [147338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4442), 1, + STATE(4483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -484983,7 +489479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 35, + ACTIONS(6437), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485019,15 +489515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146028] = 5, + [147396] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4443), 1, + STATE(4484), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485036,7 +489532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 35, + ACTIONS(6417), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485072,15 +489568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146086] = 5, + [147454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4444), 1, + STATE(4485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485089,7 +489585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 35, + ACTIONS(5838), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485125,15 +489621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146144] = 5, + [147512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4445), 1, + STATE(4486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485142,7 +489638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6125), 35, + ACTIONS(6195), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485178,15 +489674,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146202] = 5, + [147570] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4446), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7392), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6175), 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_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_else, + [147658] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4488), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485195,7 +489759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 35, + ACTIONS(6199), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485231,15 +489795,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146260] = 5, + [147716] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4447), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7392), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6083), 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, + [147810] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4490), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485248,7 +489883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 35, + ACTIONS(5698), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485284,40 +489919,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146318] = 5, + [147868] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4448), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6137), 35, - sym__start_of_index_operator, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7392), 4, sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6085), 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, + [147962] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + STATE(4492), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7382), 2, sym__binary_double_star, - sym_binary_ampersand, + anon_sym_AMP_STAR_STAR, + ACTIONS(7392), 4, + sym__binary_star, 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(6127), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6125), 28, + 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, + 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, @@ -485329,45 +490044,30 @@ 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, - [146376] = 11, + [148030] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7241), 1, - anon_sym_QMARK, - ACTIONS(7432), 1, - anon_sym_PIPE, - STATE(4379), 1, - aux_sym_union_type_repeat1, - STATE(4449), 1, + STATE(4493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, + ACTIONS(6019), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 30, + ACTIONS(6017), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485378,10 +490078,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, @@ -485392,19 +490098,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_do, - anon_sym_then, - [146446] = 5, + [148088] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4450), 1, + STATE(4494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485413,7 +490118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 35, + ACTIONS(6203), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485449,15 +490154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146504] = 5, + [148146] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4451), 1, + STATE(4495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485466,7 +490171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 35, + ACTIONS(6565), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485502,15 +490207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146562] = 5, + [148204] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4452), 1, + STATE(4496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(6209), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485519,7 +490224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 35, + ACTIONS(6207), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485555,15 +490260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146620] = 5, + [148262] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4453), 1, + STATE(4497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485572,7 +490277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 35, + ACTIONS(6211), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485608,15 +490313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146678] = 5, + [148320] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4454), 1, + STATE(4498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485625,7 +490330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 35, + ACTIONS(6215), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485661,15 +490366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146736] = 5, + [148378] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4455), 1, + STATE(4499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485678,7 +490383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 35, + ACTIONS(6219), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485714,40 +490419,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146794] = 5, + [148436] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4456), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + STATE(4500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 35, - sym__start_of_index_operator, + ACTIONS(6129), 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__modifier_if_keyword, + sym__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, @@ -485759,32 +490471,30 @@ 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, - [146852] = 5, + [148500] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4457), 1, + STATE(4501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 35, + ACTIONS(6055), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485795,12 +490505,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, @@ -485816,19 +490528,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, - [146910] = 5, + [148558] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4458), 1, + STATE(4502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485837,7 +490545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 35, + ACTIONS(6223), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485873,15 +490581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146968] = 5, + [148616] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4459), 1, + STATE(4503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485890,7 +490598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 35, + ACTIONS(6237), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485926,15 +490634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [147026] = 5, + [148674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4460), 1, + STATE(4504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485943,7 +490651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 35, + ACTIONS(6437), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485979,15 +490687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [147084] = 5, + [148732] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4461), 1, + ACTIONS(7396), 1, + anon_sym_COMMA, + STATE(4329), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -485996,7 +490708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 35, + ACTIONS(5888), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486010,7 +490722,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, @@ -486028,32 +490739,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, - [147142] = 7, + [148794] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - STATE(4462), 1, + STATE(4506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(5798), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 34, + ACTIONS(5796), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486065,12 +490774,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, @@ -486086,85 +490795,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [147204] = 21, + [148852] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - sym__start_of_index_operator, - ACTIONS(7331), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, - anon_sym_CARET, - ACTIONS(7341), 1, - anon_sym_EQ_EQ, - ACTIONS(7347), 1, - anon_sym_AMP_STAR, - ACTIONS(7353), 1, - anon_sym_AMP_AMP, - ACTIONS(7355), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7361), 1, - sym_binary_ampersand, - STATE(4463), 1, + ACTIONS(7528), 1, + anon_sym_of, + STATE(4507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7345), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7349), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7333), 3, + ACTIONS(5830), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7343), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7357), 4, + anon_sym_AMP_STAR, + ACTIONS(5826), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7359), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6403), 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_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_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, - [147294] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [148912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4464), 1, + ACTIONS(7530), 1, + anon_sym_of, + STATE(4508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -486173,7 +490868,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 35, + ACTIONS(5873), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486184,12 +490880,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, @@ -486205,28 +490903,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_else, - anon_sym_when, - anon_sym_in, - [147352] = 5, + [148972] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4465), 1, + STATE(4509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 35, + ACTIONS(5806), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486237,12 +490933,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, @@ -486258,19 +490956,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, - [147410] = 5, + [149030] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4466), 1, + ACTIONS(7532), 1, + anon_sym_of, + STATE(4510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -486279,7 +490975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 35, + ACTIONS(5960), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486290,12 +490987,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, @@ -486311,28 +491010,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_else, - anon_sym_when, - anon_sym_in, - [147468] = 5, + [149090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4467), 1, + STATE(4511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 35, + ACTIONS(5894), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486343,12 +491040,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, @@ -486364,28 +491063,103 @@ 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, - [147526] = 5, + [149148] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4468), 1, + ACTIONS(7398), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4364), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5750), 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, + [149246] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7513), 1, + anon_sym_PIPE, + STATE(4513), 1, + sym_heredoc_body, + STATE(4514), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4881), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 35, + ACTIONS(4883), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486397,13 +491171,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, @@ -486415,30 +491187,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_else, - anon_sym_when, - anon_sym_in, - [147584] = 5, + anon_sym_do, + [149308] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4469), 1, - sym_heredoc_body, + ACTIONS(7534), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + STATE(4514), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 35, + ACTIONS(4875), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486450,13 +491225,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, @@ -486468,30 +491241,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_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [147642] = 5, + anon_sym_do, + [149368] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4470), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7513), 1, + anon_sym_PIPE, + ACTIONS(7515), 1, + anon_sym_QMARK, + STATE(4513), 1, + aux_sym_union_type_repeat1, + STATE(4515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(4888), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 35, + ACTIONS(4890), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486503,13 +491287,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, @@ -486520,31 +491300,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, - [147700] = 5, + anon_sym_do, + [149438] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4471), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7513), 1, + anon_sym_PIPE, + ACTIONS(7515), 1, + anon_sym_QMARK, + STATE(4513), 1, + aux_sym_union_type_repeat1, + STATE(4516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(4892), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 35, + ACTIONS(4894), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486556,13 +491346,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, @@ -486573,22 +491359,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, - [147758] = 5, + anon_sym_do, + [149508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4472), 1, + STATE(4517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, + ACTIONS(5804), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -486597,7 +491380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6223), 35, + ACTIONS(5802), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486633,24 +491416,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [147816] = 5, + [149566] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4473), 1, + ACTIONS(7398), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4410), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4518), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5856), 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, + [149664] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 35, + ACTIONS(6013), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486661,12 +491519,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, @@ -486682,28 +491542,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_else, - anon_sym_when, - anon_sym_in, - [147874] = 5, + [149722] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4474), 1, + STATE(4520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 35, + ACTIONS(5947), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486714,12 +491572,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, @@ -486735,30 +491595,25 @@ 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, - [147932] = 6, + [149780] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - STATE(4475), 1, + STATE(4521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, + ACTIONS(5810), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -486793,24 +491648,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [147992] = 5, + [149838] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4476), 1, + ACTIONS(7358), 1, + anon_sym_PIPE, + STATE(4522), 1, sym_heredoc_body, + STATE(4523), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 35, + ACTIONS(4883), 33, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486822,13 +491683,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, @@ -486842,28 +491701,31 @@ 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, - [148050] = 5, + anon_sym_do, + anon_sym_then, + [149900] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4477), 1, - sym_heredoc_body, + ACTIONS(7537), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + STATE(4523), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 35, + ACTIONS(4875), 33, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486875,13 +491737,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, @@ -486895,19 +491755,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, - [148108] = 5, + anon_sym_do, + anon_sym_then, + [149960] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4478), 1, + STATE(4524), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -486916,7 +491774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 35, + ACTIONS(6279), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -486952,176 +491810,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148166] = 25, + [150018] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7386), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7317), 1, anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4318), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4479), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 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, - [148264] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7386), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7358), 1, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4480), 1, - sym_heredoc_body, - STATE(4514), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5811), 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, - [148362] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7376), 1, - anon_sym_COLON_COLON, - STATE(4481), 1, + STATE(4522), 1, + aux_sym_union_type_repeat1, + STATE(4525), 1, sym_heredoc_body, - STATE(4492), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 10, - anon_sym_RBRACK, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 31, + ACTIONS(4890), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487133,11 +491852,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, @@ -487148,31 +491865,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [148424] = 6, + anon_sym_do, + anon_sym_then, + [150088] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7487), 1, - sym_regex_modifier, - STATE(4482), 1, + STATE(4526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 34, + ACTIONS(6025), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -487207,27 +491922,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [148484] = 6, + [150146] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7489), 1, - sym_regex_modifier, - STATE(4483), 1, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + anon_sym_DOT, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7358), 1, + anon_sym_PIPE, + STATE(4522), 1, + aux_sym_union_type_repeat1, + STATE(4527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 34, + ACTIONS(4894), 30, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487238,16 +491963,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, @@ -487258,31 +491977,99 @@ 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, - [148544] = 7, + anon_sym_do, + anon_sym_then, + [150216] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7491), 1, - anon_sym_LPAREN, - ACTIONS(7493), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, anon_sym_DOT, - STATE(4484), 1, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4528), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7392), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 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, + [150310] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(6285), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 34, - sym__line_break, + ACTIONS(6283), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487293,14 +492080,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, @@ -487316,17 +492101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [148606] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150368] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7491), 1, - anon_sym_LPAREN, - STATE(4485), 1, + STATE(4530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -487335,8 +492122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 34, - sym__line_break, + ACTIONS(6541), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487347,14 +492133,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, @@ -487370,17 +492154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [148666] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150426] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7495), 1, - anon_sym_LPAREN, - STATE(4486), 1, + STATE(4531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -487389,8 +492175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 34, - sym__line_break, + ACTIONS(6545), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487401,14 +492186,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, @@ -487424,15 +492207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [148726] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150484] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4487), 1, + STATE(4532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -487441,7 +492228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 35, + ACTIONS(6549), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487477,15 +492264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148784] = 5, + [150542] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4488), 1, + STATE(4533), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -487494,7 +492281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 35, + ACTIONS(6553), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487530,15 +492317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148842] = 5, + [150600] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4489), 1, + STATE(4534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -487547,7 +492334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 35, + ACTIONS(6405), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487583,88 +492370,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148900] = 11, + [150658] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7233), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, anon_sym_DOT, - ACTIONS(7237), 1, - anon_sym_STAR, - ACTIONS(7241), 1, - anon_sym_QMARK, - ACTIONS(7432), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - STATE(4379), 1, - aux_sym_union_type_repeat1, - STATE(4490), 1, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, - anon_sym_DOT_DOT, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4886), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7392), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6361), 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_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, - [148970] = 6, + anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + [150748] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4379), 1, - aux_sym_union_type_repeat1, - STATE(4491), 1, + STATE(4536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 33, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6461), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487676,11 +492468,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, @@ -487694,32 +492488,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, - [149030] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7376), 1, - anon_sym_COLON_COLON, - STATE(4272), 1, - aux_sym_constant_repeat1, - STATE(4492), 1, + STATE(4537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 10, - anon_sym_RBRACK, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 31, + ACTIONS(6409), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487731,11 +492521,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, @@ -487746,20 +492538,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, - [149092] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4493), 1, + STATE(4538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -487768,7 +492562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 35, + ACTIONS(6522), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487804,103 +492598,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [149150] = 25, + [150922] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, + STATE(4539), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6427), 8, anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, anon_sym_DOT, - ACTIONS(7457), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, + ACTIONS(6425), 35, sym__start_of_index_operator, - ACTIONS(7485), 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(7497), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(4494), 1, - sym_heredoc_body, - STATE(8552), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7461), 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(7467), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150980] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + STATE(4540), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6307), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(6305), 34, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 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_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_end, - [149248] = 7, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [151042] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7376), 1, - anon_sym_COLON_COLON, - STATE(4273), 1, - aux_sym_constant_repeat1, - STATE(4495), 1, + ACTIONS(6897), 1, + anon_sym_LPAREN2, + ACTIONS(7540), 1, + anon_sym_EQ, + STATE(4541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 10, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 31, + ACTIONS(173), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487911,12 +492739,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_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, @@ -487927,20 +492758,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [149310] = 5, + [151104] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4496), 1, + STATE(4542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(6431), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -487949,7 +492778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 35, + ACTIONS(6429), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487985,15 +492814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [149368] = 5, + [151162] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4497), 1, + STATE(4543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488002,7 +492831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 35, + ACTIONS(6465), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488038,17 +492867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [149426] = 6, + [151220] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6973), 1, - anon_sym_COLON, - STATE(4498), 1, + STATE(4544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6475), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488057,8 +492884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, - sym__line_break, + ACTIONS(6473), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488069,14 +492895,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, @@ -488092,15 +492916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [149486] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [151278] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4499), 1, + STATE(4545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488109,7 +492937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 35, + ACTIONS(5909), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488120,12 +492949,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, @@ -488138,22 +492969,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, - [149544] = 5, + [151336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4500), 1, + STATE(4546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488162,7 +492990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 35, + ACTIONS(6353), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488198,25 +493026,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [149602] = 5, + [151394] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4501), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + STATE(4547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 35, - sym__start_of_index_operator, + ACTIONS(6301), 34, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -488226,12 +493057,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, @@ -488247,44 +493080,48 @@ 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, - [149660] = 5, + [151456] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4502), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + STATE(4548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 35, - sym__start_of_index_operator, + ACTIONS(6133), 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__modifier_if_keyword, + sym__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, @@ -488296,25 +493133,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_else, - anon_sym_when, - anon_sym_in, - [149718] = 6, + [151520] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7499), 1, - anon_sym_of, - STATE(4503), 1, + ACTIONS(7398), 1, + anon_sym_COMMA, + STATE(4364), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488323,7 +493158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 34, + ACTIONS(5750), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -488342,7 +493177,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, @@ -488358,17 +493192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [149778] = 6, + [151582] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7501), 1, - anon_sym_of, - STATE(4504), 1, + STATE(4550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488377,8 +493209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 34, - sym__line_break, + ACTIONS(6561), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488389,14 +493220,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, @@ -488412,15 +493241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [149838] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [151640] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4505), 1, + STATE(4551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(5868), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488429,7 +493262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 35, + ACTIONS(5866), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488465,17 +493298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [149896] = 6, + [151698] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7503), 1, - anon_sym_of, - STATE(4506), 1, + STATE(4552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488484,8 +493315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 34, - sym__line_break, + ACTIONS(6309), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488496,14 +493326,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, @@ -488519,15 +493347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [149956] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [151756] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4507), 1, + STATE(4553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488536,7 +493368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 35, + ACTIONS(6477), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488572,15 +493404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150014] = 5, + [151814] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4508), 1, + STATE(4554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488589,7 +493421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 35, + ACTIONS(6313), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488625,15 +493457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150072] = 5, + [151872] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4509), 1, + STATE(4555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488642,7 +493474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 35, + ACTIONS(173), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488678,15 +493510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150130] = 5, + [151930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4510), 1, + STATE(4556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488695,7 +493527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 35, + ACTIONS(6075), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488731,15 +493563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150188] = 5, + [151988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4511), 1, + STATE(4557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488748,7 +493580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 35, + ACTIONS(6079), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488784,15 +493616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150246] = 5, + [152046] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4512), 1, + ACTIONS(6999), 1, + anon_sym_COLON, + STATE(4558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488801,7 +493635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 35, + ACTIONS(173), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488812,12 +493647,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, @@ -488833,19 +493670,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, - [150304] = 5, + [152106] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4513), 1, + STATE(4559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488854,8 +493687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 35, - sym__line_break, + ACTIONS(6229), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488866,15 +493698,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, @@ -488890,29 +493719,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150362] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152164] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7386), 1, - anon_sym_COMMA, - STATE(4514), 1, + STATE(4560), 1, sym_heredoc_body, - STATE(4517), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 33, + ACTIONS(4940), 34, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488923,15 +493754,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, @@ -488945,17 +493774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150424] = 6, + anon_sym_do, + anon_sym_then, + [152222] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7505), 1, - sym_regex_modifier, - STATE(4515), 1, + STATE(4561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -488964,8 +493793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 34, - sym__line_break, + ACTIONS(6267), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488976,14 +493804,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, @@ -488999,17 +493825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150484] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152280] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7507), 1, - sym_regex_modifier, - STATE(4516), 1, + STATE(4562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489018,8 +493846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 34, - sym__line_break, + ACTIONS(6179), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489030,14 +493857,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, @@ -489053,18 +493878,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150544] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152338] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7509), 1, - anon_sym_COMMA, + ACTIONS(481), 1, + anon_sym_EQ, + STATE(4563), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4517), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489073,8 +493901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 33, - sym__line_break, + ACTIONS(173), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489085,13 +493912,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, @@ -489107,15 +493933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150604] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152398] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4518), 1, + STATE(4564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6265), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489124,7 +493953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 35, + ACTIONS(6263), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489160,88 +493989,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150662] = 25, + [152456] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, + ACTIONS(6520), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7368), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7370), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7374), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7380), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7386), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7388), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7394), 1, sym_binary_ampersand, - ACTIONS(7497), 1, - anon_sym_COMMA, - STATE(4519), 1, + STATE(4565), 1, sym_heredoc_body, - STATE(8508), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7372), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7378), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7382), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7366), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7376), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7390), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7392), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 8, + ACTIONS(6518), 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, - [150760] = 5, + anon_sym_QMARK, + anon_sym_else, + [152546] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4520), 1, + STATE(4566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489250,7 +494075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 35, + ACTIONS(5729), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489286,15 +494111,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150818] = 5, + [152604] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4521), 1, + ACTIONS(841), 1, + sym__string_literal_start, + ACTIONS(7542), 1, + anon_sym_COLON, + STATE(4567), 1, sym_heredoc_body, + STATE(4839), 1, + aux_sym_chained_string_repeat1, + STATE(5152), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489303,7 +494136,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 35, + ACTIONS(173), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489315,13 +494150,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, @@ -489335,29 +494166,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, - [150876] = 5, + anon_sym_do, + anon_sym_then, + [152670] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4522), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + STATE(4568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 35, - sym__start_of_index_operator, + ACTIONS(6245), 34, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -489367,12 +494199,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, @@ -489388,28 +494222,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, - [150934] = 5, + [152732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4523), 1, + STATE(4569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 35, + ACTIONS(4902), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489421,13 +494255,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, @@ -489441,19 +494274,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, - [150992] = 5, + anon_sym_do, + anon_sym_then, + [152790] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4524), 1, + STATE(4570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489462,7 +494293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 35, + ACTIONS(6481), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489498,26 +494329,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151050] = 6, + [152848] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6961), 1, - anon_sym_COLON, - STATE(4525), 1, + ACTIONS(7309), 1, + anon_sym_LBRACK, + ACTIONS(7311), 1, + anon_sym_DOT, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7317), 1, + anon_sym_QMARK, + ACTIONS(7358), 1, + anon_sym_PIPE, + STATE(4522), 1, + aux_sym_union_type_repeat1, + STATE(4571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, + ACTIONS(4898), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489529,13 +494371,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, @@ -489546,21 +494384,92 @@ 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, + [152918] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, anon_sym_QMARK, + ACTIONS(7386), 1, anon_sym_AMP_AMP, + ACTIONS(7388), 1, anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4572), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7392), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6922), 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, - [151110] = 5, + [153012] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4526), 1, + ACTIONS(7544), 1, + anon_sym_EQ, + STATE(4573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489569,7 +494478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 35, + ACTIONS(5937), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489601,19 +494510,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, - [151168] = 5, + [153072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4527), 1, + STATE(4574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489622,7 +494530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 35, + ACTIONS(6257), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489658,15 +494566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151226] = 5, + [153130] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4528), 1, + STATE(4575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489675,7 +494583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 35, + ACTIONS(6317), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489711,17 +494619,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151284] = 6, + [153188] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7512), 1, - anon_sym_LPAREN, - STATE(4529), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7360), 1, + anon_sym_DOT_DOT, + ACTIONS(7362), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7364), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_PIPE, + ACTIONS(7370), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_EQ, + ACTIONS(7380), 1, + anon_sym_AMP_STAR, + ACTIONS(7384), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_AMP_AMP, + ACTIONS(7388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7394), 1, + sym_binary_ampersand, + STATE(4576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(7372), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7378), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7382), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7366), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7376), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7390), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7392), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6459), 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, + [153282] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4577), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489730,8 +494707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 34, - sym__line_break, + ACTIONS(6321), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489742,14 +494718,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, @@ -489765,15 +494739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [151344] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153340] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4530), 1, + STATE(4578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489782,7 +494760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 35, + ACTIONS(6369), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489818,19 +494796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151402] = 7, + [153398] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7386), 1, - anon_sym_COMMA, - STATE(4318), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4531), 1, + STATE(4579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489839,8 +494813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 33, - sym__line_break, + ACTIONS(6325), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489851,13 +494824,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, @@ -489873,27 +494845,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [151464] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153456] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4532), 1, + STATE(4580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6325), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489905,12 +494878,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, @@ -489924,19 +494898,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, - [151522] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(481), 1, - anon_sym_EQ, - STATE(4533), 1, + STATE(4581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489945,7 +494919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, + ACTIONS(6329), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489977,18 +494951,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, - [151582] = 5, + [153572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4534), 1, + STATE(4582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -489997,7 +494972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 35, + ACTIONS(6333), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490033,18 +495008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151640] = 6, + [153630] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7514), 1, - anon_sym_LPAREN2, - STATE(4535), 1, + STATE(4583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 10, - anon_sym_RBRACK, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490054,7 +495026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 32, + ACTIONS(4944), 34, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -490067,6 +495040,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, @@ -490083,21 +495057,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, - [151700] = 6, + anon_sym_then, + [153688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(611), 1, - anon_sym_EQ, - STATE(4536), 1, + STATE(4584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490106,8 +495078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, - sym__line_break, + ACTIONS(6337), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490118,14 +495089,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, @@ -490141,15 +495110,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [151760] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4537), 1, + STATE(4585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + ACTIONS(6273), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490158,7 +495131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 35, + ACTIONS(6271), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490194,24 +495167,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151818] = 5, + [153804] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4538), 1, + STATE(4522), 1, + aux_sym_union_type_repeat1, + STATE(4586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 35, + ACTIONS(4875), 33, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490223,13 +495201,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, @@ -490243,21 +495219,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, - [151876] = 6, + anon_sym_do, + anon_sym_then, + [153864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7516), 1, - anon_sym_EQ, - STATE(4539), 1, + STATE(4587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490266,8 +495238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 34, - sym__line_break, + ACTIONS(6233), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490278,14 +495249,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, @@ -490301,30 +495270,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [151936] = 8, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153922] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7518), 1, - anon_sym_DOT, - ACTIONS(7520), 1, - sym__start_of_index_operator, - STATE(4540), 1, + STATE(4588), 1, sym_heredoc_body, - STATE(4615), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(6243), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 33, - sym__line_break, + ACTIONS(6241), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -490334,14 +495302,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, @@ -490357,25 +495323,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152000] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153980] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4541), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + STATE(4589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 35, - sym__start_of_index_operator, + ACTIONS(6245), 34, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -490410,27 +495382,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [152058] = 6, + [154042] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7522), 1, - anon_sym_of, - STATE(4542), 1, + STATE(4590), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 33, + ACTIONS(4976), 34, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490441,15 +495413,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, @@ -490463,85 +495433,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152117] = 23, + anon_sym_do, + anon_sym_then, + [154100] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4543), 1, + STATE(4591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(4906), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(4908), 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, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5934), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [152210] = 5, + 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, + [154158] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4544), 1, + STATE(4592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490550,8 +495505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 34, - sym__line_break, + ACTIONS(6341), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490562,14 +495516,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, @@ -490585,15 +495537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152267] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154216] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4545), 1, + STATE(4593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490602,8 +495558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 34, - sym__line_break, + ACTIONS(6345), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490614,14 +495569,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, @@ -490637,15 +495590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152324] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4546), 1, + STATE(4594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490654,8 +495611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 34, - sym__line_break, + ACTIONS(6349), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490666,14 +495622,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, @@ -490689,15 +495643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152381] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154332] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4547), 1, + STATE(4595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490706,8 +495664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 34, - sym__line_break, + ACTIONS(6357), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490718,14 +495675,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, @@ -490741,26 +495696,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152438] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154390] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4548), 1, + ACTIONS(7093), 1, + sym__start_of_index_operator, + ACTIONS(7364), 1, + anon_sym_DOT, + STATE(4596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 34, + ACTIONS(6305), 34, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -490772,12 +495733,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, @@ -490793,30 +495754,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152495] = 6, + anon_sym_else, + [154452] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7524), 1, - anon_sym_LPAREN2, - STATE(4549), 1, + STATE(4597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 32, - sym__start_of_brace_block, + ACTIONS(6421), 35, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -490827,11 +495784,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, @@ -490845,74 +495804,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [152554] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154510] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, + ACTIONS(7396), 1, + anon_sym_COMMA, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7532), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7534), 1, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - STATE(4550), 1, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4505), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4598), 1, sym_heredoc_body, - STATE(4583), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, - anon_sym_DOT_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4861), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [152623] = 5, + ACTIONS(5856), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154608] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4551), 1, + ACTIONS(611), 1, + anon_sym_EQ, + STATE(4599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490921,7 +495900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 34, + ACTIONS(173), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -490956,15 +495935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152680] = 5, + [154668] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4552), 1, + STATE(4600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -490973,8 +495952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 34, - sym__line_break, + ACTIONS(5694), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490985,14 +495963,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, @@ -491008,38 +495984,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152737] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154726] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, - anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7532), 1, - anon_sym_PIPE, - ACTIONS(7534), 1, - anon_sym_QMARK, - STATE(4553), 1, + ACTIONS(7546), 1, + anon_sym_EQ, + STATE(4601), 1, sym_heredoc_body, - STATE(4583), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(5939), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 29, - sym__start_of_brace_block, + ACTIONS(5937), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -491049,10 +496019,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, @@ -491063,41 +496039,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_do, - [152806] = 11, + [154786] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, - anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7532), 1, - anon_sym_PIPE, - ACTIONS(7534), 1, - anon_sym_QMARK, - STATE(4554), 1, + STATE(4602), 1, sym_heredoc_body, - STATE(4583), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(6367), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 29, - sym__start_of_brace_block, + ACTIONS(6365), 35, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -491108,9 +496071,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, @@ -491121,33 +496088,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, - [152875] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154844] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4555), 1, + STATE(4603), 1, sym_heredoc_body, - STATE(4583), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 32, - sym__start_of_brace_block, + ACTIONS(6537), 35, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -491158,11 +496124,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, @@ -491176,16 +496144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [152934] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154902] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4556), 1, + ACTIONS(7548), 1, + anon_sym_of, + STATE(4604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -491194,8 +496167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 34, - sym__line_break, + ACTIONS(5981), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -491206,14 +496178,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, @@ -491229,259 +496197,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152991] = 23, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154961] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6177), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7460), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7464), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7466), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7470), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7482), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(7486), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7492), 1, sym_binary_ampersand, - STATE(4557), 1, + STATE(4605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7478), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7462), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7472), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7490), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6309), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6175), 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_RBRACK, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [153084] = 23, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [155048] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7460), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7464), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7466), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7470), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7480), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7482), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(7486), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7492), 1, sym_binary_ampersand, - STATE(4558), 1, + STATE(4606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7478), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7462), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7472), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7490), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6311), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [153177] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4559), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6221), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6219), 34, + ACTIONS(6702), 8, 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, + [155143] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 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, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7482), 1, anon_sym_AMP_AMP, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - [153234] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4560), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6223), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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, - [153291] = 5, + [155232] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4561), 1, + STATE(4608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -491490,7 +496424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 34, + ACTIONS(173), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -491525,69 +496459,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153348] = 24, + [155289] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + ACTIONS(7456), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7460), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7464), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7466), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7470), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7480), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7482), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, + ACTIONS(7486), 1, sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7492), 1, sym_binary_ampersand, - STATE(4562), 1, + STATE(4609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7478), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7462), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7472), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7490), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6725), 8, + ACTIONS(6459), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -491595,70 +496527,69 @@ 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, - [153443] = 24, + [155382] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + ACTIONS(7456), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7460), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7464), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7466), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7470), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7480), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7482), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, + ACTIONS(7486), 1, sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7492), 1, sym_binary_ampersand, - STATE(4563), 1, + STATE(4610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7478), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7462), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7472), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7490), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 8, + ACTIONS(6491), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -491666,70 +496597,69 @@ 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, - [153538] = 24, + [155475] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + ACTIONS(7456), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7460), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7464), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7466), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7470), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7480), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7482), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, + ACTIONS(7486), 1, sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7492), 1, sym_binary_ampersand, - STATE(4564), 1, + STATE(4611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7478), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7462), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7472), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7490), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 8, + ACTIONS(6373), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -491737,381 +496667,790 @@ 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, - [153633] = 24, + [155568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + STATE(4612), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4900), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4902), 32, + 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, - ACTIONS(7453), 1, + 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, + anon_sym_do, + [155625] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4565), 1, + STATE(4613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 8, + ACTIONS(6261), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [155718] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7550), 1, + anon_sym_EQ, + STATE(4614), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5939), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5937), 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, - [153728] = 24, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [155777] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + STATE(4615), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6265), 8, anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, anon_sym_DOT, - ACTIONS(7457), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(6263), 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(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4566), 1, + [155834] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(4838), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4840), 32, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_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(7467), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [155891] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4617), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6355), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(6353), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [153823] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 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(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4567), 1, + [155948] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(6273), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(6271), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [153918] = 24, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [156005] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + STATE(4619), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4938), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, anon_sym_DOT, - ACTIONS(7457), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(4940), 32, + 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_QMARK, - ACTIONS(7475), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4568), 1, + anon_sym_do, + [156062] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7552), 1, + anon_sym_LBRACK, + ACTIONS(7554), 1, + anon_sym_DOT, + ACTIONS(7556), 1, + anon_sym_STAR, + ACTIONS(7558), 1, + anon_sym_PIPE, + ACTIONS(7560), 1, + anon_sym_QMARK, + STATE(4620), 1, sym_heredoc_body, + STATE(4625), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(4896), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4898), 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_DASH_GT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [156131] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7552), 1, + anon_sym_LBRACK, + ACTIONS(7554), 1, + anon_sym_DOT, + ACTIONS(7556), 1, + anon_sym_STAR, + ACTIONS(7558), 1, + anon_sym_PIPE, + ACTIONS(7560), 1, + anon_sym_QMARK, + STATE(4621), 1, + sym_heredoc_body, + STATE(4625), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4877), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + anon_sym_AMP_STAR, + ACTIONS(4879), 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_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, - ACTIONS(7481), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [156200] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4622), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6319), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6317), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6727), 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, - [154013] = 24, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [156257] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + STATE(4623), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4974), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, anon_sym_DOT, - ACTIONS(7457), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(4976), 32, + 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_QMARK, - ACTIONS(7475), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4569), 1, + anon_sym_do, + [156314] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(4906), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4908), 32, + 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, - ACTIONS(7467), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [156371] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7558), 1, + anon_sym_PIPE, + STATE(4625), 1, + sym_heredoc_body, + STATE(4635), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4881), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(4883), 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(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6727), 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, - [154108] = 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [156432] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4570), 1, + STATE(4626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(4946), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 34, - sym__line_break, + ACTIONS(4948), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492122,16 +497461,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, @@ -492143,23 +497478,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, - [154165] = 8, + anon_sym_do, + [156489] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - STATE(4571), 1, + STATE(4627), 1, sym_heredoc_body, - STATE(10490), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(4942), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -492169,8 +497501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 30, - sym__line_break, + ACTIONS(4944), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492183,8 +497514,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, @@ -492196,29 +497530,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_do, - anon_sym_then, - [154228] = 5, + [156546] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4572), 1, + STATE(4628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(4954), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 34, - sym__line_break, + ACTIONS(4956), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492229,16 +497565,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, @@ -492250,29 +497582,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, - [154285] = 6, + anon_sym_do, + [156603] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7538), 1, - anon_sym_EQ, - STATE(4573), 1, + STATE(4629), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(4958), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 33, - sym__line_break, + ACTIONS(4960), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492283,15 +497617,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, @@ -492303,27 +497634,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, - [154344] = 5, + anon_sym_do, + [156660] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4574), 1, + STATE(4630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(4962), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 34, - sym__line_break, + ACTIONS(4964), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492334,16 +497669,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, @@ -492355,32 +497686,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, - [154401] = 8, + anon_sym_do, + [156717] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7520), 1, - sym__start_of_index_operator, - ACTIONS(7540), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, anon_sym_DOT, - STATE(4575), 1, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7515), 1, + anon_sym_QMARK, + ACTIONS(7562), 1, + anon_sym_PIPE, + STATE(4631), 1, sym_heredoc_body, - STATE(4615), 1, - sym__implicit_index_operator, + STATE(4788), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(4970), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 32, - sym__line_break, + ACTIONS(4972), 28, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -492390,15 +497731,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, @@ -492409,18 +497744,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, - [154464] = 5, + anon_sym_do, + [156786] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4576), 1, + STATE(4632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -492429,7 +497765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 34, + ACTIONS(6321), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -492464,15 +497800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154521] = 5, + [156843] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4577), 1, + STATE(4633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 10, + ACTIONS(4914), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -492483,7 +497819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 32, + ACTIONS(4916), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492516,15 +497852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [154578] = 5, + [156900] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4578), 1, + STATE(4634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(6277), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -492533,7 +497869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 34, + ACTIONS(6275), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -492568,27 +497904,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154635] = 5, + [156957] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4579), 1, - sym_heredoc_body, + ACTIONS(7564), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 10, - anon_sym_RBRACK, + STATE(4635), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 32, + ACTIONS(4875), 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, @@ -492614,21 +497953,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, - [154692] = 5, + anon_sym_do, + [157016] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4580), 1, + STATE(4636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 10, + ACTIONS(4950), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -492639,7 +497976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 32, + ACTIONS(4952), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492672,15 +498009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [154749] = 5, + [157073] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4581), 1, + STATE(4637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 10, + ACTIONS(4966), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -492691,7 +498028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 32, + ACTIONS(4968), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492724,10 +498061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [154806] = 5, + [157130] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4582), 1, + STATE(4638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -492776,31 +498113,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [154863] = 7, + [157187] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7532), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7515), 1, + anon_sym_QMARK, + ACTIONS(7562), 1, anon_sym_PIPE, - STATE(4583), 1, + STATE(4639), 1, sym_heredoc_body, - STATE(4591), 1, + STATE(4788), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4922), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 32, + ACTIONS(4924), 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, @@ -492811,11 +498155,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, @@ -492826,19 +498167,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, - [154924] = 5, + [157256] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4584), 1, + STATE(4640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 10, + ACTIONS(4926), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -492849,7 +498190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 32, + ACTIONS(4928), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492882,15 +498223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [154981] = 5, + [157313] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4585), 1, + STATE(4641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 10, + ACTIONS(4910), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -492901,7 +498242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 32, + ACTIONS(4912), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492934,15 +498275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [155038] = 5, + [157370] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4586), 1, + STATE(4642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 10, + ACTIONS(4930), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -492953,7 +498294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 32, + ACTIONS(4932), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492986,15 +498327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [155095] = 5, + [157427] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4587), 1, + STATE(4643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 10, + ACTIONS(4934), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -493005,7 +498346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 32, + ACTIONS(4936), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -493038,27 +498379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [155152] = 5, + [157484] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4588), 1, + STATE(4644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 10, - anon_sym_RBRACK, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 32, - sym__start_of_brace_block, + ACTIONS(6325), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493069,12 +498408,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, @@ -493086,32 +498429,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [155209] = 11, + [157541] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, + ACTIONS(7552), 1, anon_sym_LBRACK, - ACTIONS(7365), 1, + ACTIONS(7554), 1, anon_sym_DOT, - ACTIONS(7367), 1, + ACTIONS(7556), 1, anon_sym_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7542), 1, + ACTIONS(7558), 1, anon_sym_PIPE, - STATE(4589), 1, - sym_heredoc_body, - STATE(4616), 1, + ACTIONS(7560), 1, + anon_sym_QMARK, + STATE(4625), 1, aux_sym_union_type_repeat1, + STATE(4645), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 8, - anon_sym_RBRACK, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -493119,9 +498459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 28, + ACTIONS(4890), 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, @@ -493134,6 +498475,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, @@ -493144,31 +498486,28 @@ 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, - [155278] = 5, + [157610] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4590), 1, + STATE(4646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 10, - anon_sym_RBRACK, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 32, - sym__start_of_brace_block, + ACTIONS(6325), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493179,12 +498518,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, @@ -493196,34 +498539,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [155335] = 6, + [157667] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7544), 1, - anon_sym_PIPE, + STATE(4647), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4591), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 32, - sym__start_of_brace_block, + ACTIONS(6075), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -493233,12 +498570,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, @@ -493252,29 +498593,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [155394] = 5, + [157724] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4592), 1, + ACTIONS(7552), 1, + anon_sym_LBRACK, + ACTIONS(7554), 1, + anon_sym_DOT, + ACTIONS(7556), 1, + anon_sym_STAR, + ACTIONS(7558), 1, + anon_sym_PIPE, + ACTIONS(7560), 1, + anon_sym_QMARK, + STATE(4625), 1, + aux_sym_union_type_repeat1, + STATE(4648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 10, - anon_sym_RBRACK, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 32, + ACTIONS(4894), 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, @@ -493285,11 +498635,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, @@ -493300,32 +498648,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [155451] = 5, + [157793] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4593), 1, + STATE(4649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 10, - anon_sym_RBRACK, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 32, - sym__start_of_brace_block, + ACTIONS(6079), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493336,12 +498680,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, @@ -493353,31 +498701,168 @@ static const uint16_t ts_small_parse_table[] = { 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, - [155508] = 5, + [157850] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4594), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 10, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6491), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [157943] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4651), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [158038] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4652), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 32, - sym__start_of_brace_block, + ACTIONS(6329), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493388,12 +498873,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, @@ -493405,41 +498894,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, - [155565] = 11, + [158095] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7542), 1, - anon_sym_PIPE, - STATE(4595), 1, + STATE(4653), 1, sym_heredoc_body, - STATE(4616), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 8, - anon_sym_RBRACK, + ACTIONS(6335), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 28, - sym__start_of_brace_block, + ACTIONS(6333), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493450,9 +498925,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, @@ -493463,31 +498945,28 @@ 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, - [155634] = 5, + [158152] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4596), 1, + STATE(4654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 10, - anon_sym_RBRACK, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 32, - sym__start_of_brace_block, + ACTIONS(6337), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493498,12 +498977,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, @@ -493515,31 +498998,168 @@ static const uint16_t ts_small_parse_table[] = { 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, - [155691] = 5, + [158209] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4597), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 10, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [158302] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4656), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [158397] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4657), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 32, - sym__start_of_brace_block, + ACTIONS(5698), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493550,12 +499170,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, @@ -493567,31 +499191,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, - [155748] = 5, + [158454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4598), 1, + STATE(4658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 10, - anon_sym_RBRACK, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 32, - sym__start_of_brace_block, + ACTIONS(6341), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493602,12 +499222,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, @@ -493619,31 +499243,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, - [155805] = 5, + [158511] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4599), 1, + STATE(4659), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 10, - anon_sym_RBRACK, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 32, - sym__start_of_brace_block, + ACTIONS(6389), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493654,12 +499274,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, @@ -493671,42 +499295,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [155862] = 11, + [158568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, - anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7532), 1, - anon_sym_PIPE, - ACTIONS(7534), 1, - anon_sym_QMARK, - STATE(4583), 1, - aux_sym_union_type_repeat1, - STATE(4600), 1, + STATE(4660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6347), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 29, - sym__start_of_brace_block, + ACTIONS(6345), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -493716,10 +499326,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, @@ -493730,41 +499346,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, - [155931] = 11, + [158625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, - anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7532), 1, - anon_sym_PIPE, - ACTIONS(7534), 1, - anon_sym_QMARK, - STATE(4583), 1, - aux_sym_union_type_repeat1, - STATE(4601), 1, + STATE(4661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(6351), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 29, - sym__start_of_brace_block, + ACTIONS(6349), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -493774,10 +499378,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, @@ -493788,515 +499398,383 @@ 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, - [156000] = 24, + [158682] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4602), 1, + STATE(4662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(6359), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(6357), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [156095] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 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(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4603), 1, + [158739] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(6391), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + 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, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [156190] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 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(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4604), 1, + [158796] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(6399), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(6397), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [156285] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 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(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4605), 1, + [158853] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(6377), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(6375), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [156380] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 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(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4606), 1, + [158910] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(6415), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(6413), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [156475] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 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(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4607), 1, + [158967] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7567), 1, + anon_sym_of, + STATE(4667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(5964), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(5960), 33, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [156570] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 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(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4608), 1, + [159026] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(5804), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(5802), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6690), 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, - [156665] = 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, + [159083] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4609), 1, + STATE(4669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494305,7 +499783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 34, + ACTIONS(6417), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -494340,15 +499818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156722] = 5, + [159140] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4610), 1, + ACTIONS(7569), 1, + anon_sym_of, + STATE(4670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494357,8 +499837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 34, - sym__line_break, + ACTIONS(5826), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494369,14 +499848,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, @@ -494392,15 +499867,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156779] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [159199] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4611), 1, + ACTIONS(7323), 1, + sym__start_of_index_operator, + ACTIONS(7571), 1, + anon_sym_DOT, + ACTIONS(7573), 1, + anon_sym_EQ, + STATE(4013), 1, + sym__implicit_index_operator, + STATE(4671), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5721), 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(5719), 31, + sym_binary_plus, + sym_binary_minus, + sym_binary_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_else, + anon_sym_when, + anon_sym_in, + [159264] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494409,7 +499944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 34, + ACTIONS(6421), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -494444,15 +499979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156836] = 5, + [159321] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4612), 1, + STATE(4673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494461,7 +499996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 34, + ACTIONS(145), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -494496,15 +500031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156893] = 5, + [159378] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4613), 1, + STATE(4674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494513,7 +500048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 34, + ACTIONS(6179), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -494548,15 +500083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156950] = 5, + [159435] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4614), 1, + ACTIONS(7575), 1, + anon_sym_of, + STATE(4675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494565,8 +500102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 34, - sym__line_break, + ACTIONS(5873), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494577,14 +500113,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, @@ -494600,15 +500132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157007] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [159494] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4615), 1, + STATE(4676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494617,7 +500153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 34, + ACTIONS(6425), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -494652,30 +500188,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157064] = 7, + [159551] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7542), 1, - anon_sym_PIPE, - STATE(4616), 1, + ACTIONS(7577), 1, + anon_sym_of, + STATE(4677), 1, sym_heredoc_body, - STATE(4617), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 9, - anon_sym_RBRACK, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 31, - sym__start_of_brace_block, + ACTIONS(5960), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494687,10 +500219,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_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -494702,72 +500235,101 @@ static const uint16_t ts_small_parse_table[] = { 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, - [157125] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [159610] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7583), 1, + anon_sym_end, + ACTIONS(7587), 1, anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(4678), 1, + sym_heredoc_body, + STATE(9503), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(11892), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4617), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4875), 31, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_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, - [157184] = 5, + [159719] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4618), 1, + ACTIONS(719), 1, + anon_sym_EQ, + STATE(4679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494776,7 +500338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 34, + ACTIONS(173), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -494795,7 +500357,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, @@ -494811,37 +500372,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157241] = 11, + [159778] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7542), 1, - anon_sym_PIPE, - STATE(4616), 1, - aux_sym_union_type_repeat1, - STATE(4619), 1, + STATE(4680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 8, - anon_sym_RBRACK, + ACTIONS(6383), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 28, - sym__start_of_brace_block, + ACTIONS(6381), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494852,9 +500401,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, @@ -494865,19 +500421,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, - [157310] = 5, + [159835] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4620), 1, + STATE(4681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494886,7 +500441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 34, + ACTIONS(5719), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -494921,50 +500476,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157367] = 11, + [159892] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7542), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, anon_sym_PIPE, - STATE(4616), 1, - aux_sym_union_type_repeat1, - STATE(4621), 1, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, + sym_binary_ampersand, + ACTIONS(7621), 1, + anon_sym_end, + STATE(4682), 1, sym_heredoc_body, + STATE(9498), 1, + aux_sym_case_repeat1, + STATE(9993), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(11869), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 8, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4898), 28, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 4, sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [160001] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + STATE(4683), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7434), 2, sym__binary_double_star, - sym_binary_ampersand, + anon_sym_AMP_STAR_STAR, + ACTIONS(7444), 4, + sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6127), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6125), 27, + 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, anon_sym_GT_GT, anon_sym_LT_LT, @@ -494974,20 +500605,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_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [157436] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [160068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4622), 1, + STATE(4684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -494996,7 +500628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 34, + ACTIONS(6385), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495031,15 +500663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157493] = 5, + [160125] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4623), 1, + STATE(4685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495048,7 +500680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 34, + ACTIONS(6393), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495083,15 +500715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157550] = 5, + [160182] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4624), 1, + STATE(4686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495100,7 +500732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 34, + ACTIONS(6401), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495135,15 +500767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157607] = 5, + [160239] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4625), 1, + STATE(4687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495152,7 +500784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 34, + ACTIONS(6405), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495187,15 +500819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157664] = 5, + [160296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4626), 1, + STATE(4688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495204,7 +500836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 34, + ACTIONS(6409), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495239,15 +500871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157721] = 5, + [160353] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4627), 1, + ACTIONS(7623), 1, + anon_sym_of, + STATE(4689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495256,7 +500890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 34, + ACTIONS(5981), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495275,7 +500909,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, @@ -495291,43 +500924,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157778] = 5, + [160412] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4628), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + STATE(4690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6129), 31, sym_binary_plus, sym_binary_minus, sym_binary_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_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, @@ -495339,19 +500973,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, - [157835] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [160475] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4629), 1, + STATE(4691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6431), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495360,7 +500996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 34, + ACTIONS(6429), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495395,173 +501031,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157892] = 31, + [160532] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7554), 1, - anon_sym_end, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(7584), 1, + ACTIONS(7613), 1, anon_sym_in, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - STATE(4630), 1, + ACTIONS(7625), 1, + anon_sym_end, + STATE(4692), 1, sym_heredoc_body, - STATE(9439), 1, + STATE(9502), 1, aux_sym_case_repeat1, - STATE(9656), 1, + STATE(9717), 1, aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(10781), 1, + STATE(10838), 1, sym_in, - STATE(12322), 1, + STATE(11255), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [158001] = 5, + [160641] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4631), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6433), 8, - anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6431), 34, - sym__line_break, + ACTIONS(7406), 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_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [158058] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4632), 1, + STATE(4693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6133), 31, sym_binary_plus, sym_binary_minus, sym_binary_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_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, @@ -495573,19 +501158,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, - [158115] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [160704] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4633), 1, + STATE(4694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495594,7 +501181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 34, + ACTIONS(6279), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495629,15 +501216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [158172] = 5, + [160761] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4634), 1, + STATE(4695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495646,7 +501233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 34, + ACTIONS(6522), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495681,155 +501268,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [158229] = 23, + [160818] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4635), 1, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + STATE(4696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6309), 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, - [158322] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7449), 1, + ACTIONS(6139), 6, anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4636), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(6137), 21, + 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, anon_sym_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(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6311), 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, - [158415] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [160889] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4637), 1, + STATE(4697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(5968), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495838,7 +501344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 34, + ACTIONS(5966), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495873,15 +501379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [158472] = 5, + [160946] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4638), 1, + STATE(4698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495890,7 +501396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 34, + ACTIONS(5970), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495925,24 +501431,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [158529] = 5, + [161003] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4639), 1, - sym_heredoc_body, + ACTIONS(7627), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + STATE(4699), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 34, + ACTIONS(4875), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -495954,16 +501463,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, @@ -495977,15 +501483,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [158586] = 5, + anon_sym_then, + [161062] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4640), 1, + STATE(4700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -495994,7 +501501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 34, + ACTIONS(6441), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -496029,139 +501536,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [158643] = 23, + [161119] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6143), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4641), 1, + STATE(4701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6459), 9, + ACTIONS(6141), 11, 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_else, anon_sym_when, anon_sym_in, - [158736] = 7, + [161208] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7592), 1, - anon_sym_COLON_COLON, - STATE(4642), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, + sym_binary_ampersand, + ACTIONS(7630), 1, + anon_sym_end, + STATE(4702), 1, sym_heredoc_body, - STATE(4645), 1, - aux_sym_constant_repeat1, + STATE(9452), 1, + aux_sym_case_repeat1, + STATE(9852), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(12135), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4857), 31, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [158797] = 5, + [161317] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4643), 1, + STATE(4703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -496170,7 +501699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 34, + ACTIONS(6449), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -496205,67 +501734,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [158854] = 23, + [161374] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4644), 1, + STATE(4704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6461), 9, + ACTIONS(6085), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -496275,31 +501804,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [158947] = 7, + [161467] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7592), 1, - anon_sym_COLON_COLON, - STATE(4645), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7515), 1, + anon_sym_QMARK, + ACTIONS(7562), 1, + anon_sym_PIPE, + STATE(4705), 1, sym_heredoc_body, - STATE(4654), 1, - aux_sym_constant_repeat1, + STATE(4788), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(4896), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 31, + ACTIONS(4898), 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, @@ -496310,11 +501846,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, @@ -496325,35 +501858,30 @@ 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, - [159008] = 7, + anon_sym_do, + [161536] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7592), 1, - anon_sym_COLON_COLON, - STATE(4646), 1, + STATE(4706), 1, sym_heredoc_body, - STATE(4655), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4838), 9, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4840), 31, + ACTIONS(5694), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -496363,12 +501891,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, @@ -496379,110 +501911,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, - [159069] = 23, + [161593] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4647), 1, + STATE(4707), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [159162] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7363), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7542), 1, - anon_sym_PIPE, - STATE(4616), 1, + STATE(4788), 1, aux_sym_union_type_repeat1, - STATE(4648), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 8, + ACTIONS(4873), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 28, + ACTIONS(4875), 31, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -496495,8 +501948,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, @@ -496507,33 +501962,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, anon_sym_do, - [159231] = 6, + [161652] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4616), 1, - aux_sym_union_type_repeat1, - STATE(4649), 1, + STATE(4708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 10, - anon_sym_RBRACK, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 31, - sym__start_of_brace_block, + ACTIONS(5694), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -496544,11 +501996,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, @@ -496560,19 +502017,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, - [159290] = 5, + [161709] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4650), 1, + STATE(4709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -496581,7 +502036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 34, + ACTIONS(6453), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -496616,21 +502071,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [159347] = 8, + [161766] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(841), 1, - sym__string_literal_start, - STATE(4651), 1, + STATE(4710), 1, sym_heredoc_body, - STATE(4656), 1, - aux_sym_chained_string_repeat1, - STATE(5141), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -496639,9 +502088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 31, + ACTIONS(6461), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -496652,10 +502100,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, @@ -496669,95 +502123,164 @@ 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, - [159410] = 31, + [161823] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(7584), 1, + ACTIONS(7613), 1, anon_sym_in, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(7594), 1, + ACTIONS(7632), 1, anon_sym_end, - STATE(4652), 1, + STATE(4711), 1, sym_heredoc_body, - STATE(9420), 1, + STATE(9489), 1, aux_sym_case_repeat1, - STATE(9826), 1, + STATE(9994), 1, aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(10781), 1, + STATE(10838), 1, sym_in, - STATE(11091), 1, + STATE(11771), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [159519] = 5, + [161932] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4653), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4712), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6710), 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, + [162027] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -496766,7 +502289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 34, + ACTIONS(6465), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -496801,30 +502324,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [159576] = 6, + [162084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7596), 1, - anon_sym_COLON_COLON, + STATE(4714), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4654), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 9, + ACTIONS(6475), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 31, + ACTIONS(6473), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -496834,12 +502353,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, @@ -496850,35 +502373,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, - [159635] = 7, + [162141] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7592), 1, - anon_sym_COLON_COLON, - STATE(4654), 1, - aux_sym_constant_repeat1, - STATE(4655), 1, + STATE(4715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 9, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4853), 31, + ACTIONS(6477), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -496888,12 +502405,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, @@ -496904,24 +502425,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, - [159696] = 7, + [162198] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7599), 1, - sym__string_literal_start, - STATE(5141), 1, - sym_string, + STATE(4716), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4656), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -496930,9 +502445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 31, + ACTIONS(6481), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -496943,10 +502457,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, @@ -496960,95 +502480,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, - [159757] = 31, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(7602), 1, - anon_sym_end, - STATE(4657), 1, - sym_heredoc_body, - STATE(9456), 1, - aux_sym_case_repeat1, - STATE(9667), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11114), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [159866] = 5, + [162255] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4658), 1, + STATE(4717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -497057,7 +502497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 34, + ACTIONS(6437), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -497092,15 +502532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [159923] = 5, + [162312] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4659), 1, + STATE(4718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -497109,7 +502549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 34, + ACTIONS(6493), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -497144,113 +502584,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [159980] = 31, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(7604), 1, - anon_sym_end, - STATE(4660), 1, - sym_heredoc_body, - STATE(9455), 1, - aux_sym_case_repeat1, - STATE(9728), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11436), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [160089] = 11, + [162369] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7606), 1, - anon_sym_LBRACK, - ACTIONS(7608), 1, - anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7612), 1, - anon_sym_PIPE, - ACTIONS(7614), 1, - anon_sym_QMARK, - STATE(4661), 1, + STATE(4719), 1, sym_heredoc_body, - STATE(4838), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6499), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 29, + ACTIONS(6497), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -497262,11 +502613,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, @@ -497277,49 +502633,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_then, - [160158] = 10, + [162426] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(4662), 1, + STATE(4720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6503), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 27, + anon_sym_AMP_STAR, + ACTIONS(6501), 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, - 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, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -497331,50 +502684,47 @@ 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, - [160225] = 8, + [162483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(4663), 1, + STATE(4721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6507), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 31, + ACTIONS(6505), 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_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, @@ -497386,50 +502736,47 @@ 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, - [160288] = 8, + [162540] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(4664), 1, + STATE(4722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6439), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 31, + ACTIONS(6437), 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_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, @@ -497441,99 +502788,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_else, - anon_sym_when, - anon_sym_in, - [160351] = 31, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(7616), 1, - anon_sym_end, - STATE(4665), 1, - sym_heredoc_body, - STATE(9441), 1, - aux_sym_case_repeat1, - STATE(9795), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(10894), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [160460] = 5, + [162597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4666), 1, + STATE(4723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -497542,7 +502809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 34, + ACTIONS(6565), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -497577,123 +502844,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [160517] = 31, + [162654] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(7618), 1, - anon_sym_end, - STATE(4667), 1, + STATE(4724), 1, sym_heredoc_body, - STATE(9451), 1, - aux_sym_case_repeat1, - STATE(9840), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11217), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [160626] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(4668), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 21, - sym_binary_ampersand, + ACTIONS(6145), 15, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -497701,112 +502900,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, 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, - [160697] = 31, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, anon_sym_QMARK, - ACTIONS(7576), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, anon_sym_else, - ACTIONS(7582), 1, anon_sym_when, - ACTIONS(7584), 1, anon_sym_in, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(7620), 1, - anon_sym_end, - STATE(4669), 1, - sym_heredoc_body, - STATE(9393), 1, - aux_sym_case_repeat1, - STATE(9870), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11477), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [160806] = 8, + [162735] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(841), 1, - sym__string_literal_start, - STATE(4651), 1, - aux_sym_chained_string_repeat1, - STATE(4670), 1, + STATE(4725), 1, sym_heredoc_body, - STATE(5141), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -497815,9 +502925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 31, + ACTIONS(5715), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -497828,10 +502937,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, @@ -497845,143 +502960,46 @@ 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, - [160869] = 31, + [162792] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(7622), 1, - anon_sym_end, - STATE(4671), 1, + STATE(4726), 1, sym_heredoc_body, - STATE(9430), 1, - aux_sym_case_repeat1, - STATE(9923), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11760), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [160978] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(6151), 6, anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4672), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5951), 11, + ACTIONS(6149), 20, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -497989,175 +503007,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [161067] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4673), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 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(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5959), 15, - 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_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, - [161148] = 13, + [162865] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4674), 1, + STATE(4727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(5717), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 20, - 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_BANG_EQ, - 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, - [161221] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7408), 1, anon_sym_AMP_STAR, - ACTIONS(7418), 1, + ACTIONS(5715), 34, + sym__line_break, sym__start_of_index_operator, - STATE(4675), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7420), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 23, - sym_binary_ampersand, - 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, + sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -498169,251 +503068,210 @@ 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, - [161290] = 15, + [162922] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4676), 1, + STATE(4728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7420), 4, + ACTIONS(6371), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6369), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 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, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 19, - 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [161367] = 31, + [162979] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(7624), 1, - anon_sym_end, - STATE(4677), 1, + STATE(4729), 1, sym_heredoc_body, - STATE(9424), 1, - aux_sym_case_repeat1, - STATE(9944), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11986), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(6471), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(6469), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 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, - [161476] = 31, + 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, + [163036] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(7584), 1, + ACTIONS(7613), 1, anon_sym_in, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(7626), 1, + ACTIONS(7634), 1, anon_sym_end, - STATE(4678), 1, + STATE(4730), 1, sym_heredoc_body, - STATE(9461), 1, + STATE(9551), 1, aux_sym_case_repeat1, - STATE(9854), 1, + STATE(9903), 1, aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(10781), 1, + STATE(10838), 1, sym_in, - STATE(12323), 1, + STATE(12354), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [161585] = 6, + [163145] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7628), 1, - anon_sym_LPAREN2, - STATE(4679), 1, + STATE(4731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 32, + ACTIONS(6229), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -498425,13 +503283,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, @@ -498445,36 +503306,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [161644] = 11, + [163202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7606), 1, - anon_sym_LBRACK, - ACTIONS(7608), 1, - anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7612), 1, - anon_sym_PIPE, - ACTIONS(7614), 1, - anon_sym_QMARK, - STATE(4680), 1, + STATE(4732), 1, sym_heredoc_body, - STATE(4838), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(6471), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 29, + ACTIONS(6469), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -498486,11 +503335,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, @@ -498501,18 +503355,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, - [161713] = 5, + [163259] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4681), 1, + STATE(4733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -498521,7 +503375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 34, + ACTIONS(6267), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -498556,15 +503410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161770] = 5, + [163316] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4682), 1, + STATE(4734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -498573,7 +503427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 34, + ACTIONS(6485), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -498608,35 +503462,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161827] = 11, + [163373] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7606), 1, - anon_sym_LBRACK, - ACTIONS(7608), 1, - anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7612), 1, - anon_sym_PIPE, - ACTIONS(7614), 1, - anon_sym_QMARK, - STATE(4683), 1, + STATE(4735), 1, sym_heredoc_body, - STATE(4838), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(6259), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 29, + ACTIONS(6257), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -498648,11 +503491,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, @@ -498663,62 +503511,45 @@ 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, - [161896] = 19, + [163430] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4684), 1, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + STATE(4736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 13, + ACTIONS(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 23, + sym_binary_ampersand, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -498726,21 +503557,30 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [161981] = 5, + [163499] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4685), 1, + STATE(4737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -498749,7 +503589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 34, + ACTIONS(6365), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -498784,15 +503624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162038] = 5, + [163556] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4686), 1, + ACTIONS(7636), 1, + anon_sym_of, + STATE(4738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -498801,7 +503643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 34, + ACTIONS(5826), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -498820,7 +503662,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, @@ -498836,93 +503677,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162095] = 31, + [163615] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(7630), 1, - anon_sym_end, - STATE(4687), 1, + STATE(4739), 1, sym_heredoc_body, - STATE(9471), 1, - aux_sym_case_repeat1, - STATE(9670), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11683), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(6516), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(6514), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 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, - [162204] = 5, + 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, + [163672] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4688), 1, + STATE(4740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -498931,7 +503746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 34, + ACTIONS(5832), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -498966,171 +503781,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162261] = 31, + [163729] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7466), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7470), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7480), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7482), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, sym_binary_ampersand, - ACTIONS(7632), 1, - anon_sym_end, - STATE(4689), 1, + STATE(4741), 1, sym_heredoc_body, - STATE(9379), 1, - aux_sym_case_repeat1, - STATE(9684), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11307), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7478), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7462), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7472), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7490), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [162370] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7606), 1, - anon_sym_LBRACK, - ACTIONS(7608), 1, - anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7612), 1, - anon_sym_PIPE, - ACTIONS(7614), 1, - anon_sym_QMARK, - STATE(4690), 1, - sym_heredoc_body, - STATE(4838), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4884), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4886), 29, + ACTIONS(6702), 8, 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_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, - [162439] = 11, + anon_sym_end, + [163824] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7606), 1, - anon_sym_LBRACK, - ACTIONS(7608), 1, - anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7612), 1, - anon_sym_PIPE, - ACTIONS(7614), 1, - anon_sym_QMARK, - STATE(4691), 1, + STATE(4742), 1, sym_heredoc_body, - STATE(4838), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(6559), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 29, + ACTIONS(6557), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -499142,11 +503881,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, @@ -499157,195 +503901,278 @@ 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, - [162508] = 31, + [163881] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(7584), 1, + ACTIONS(7613), 1, anon_sym_in, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(7634), 1, + ACTIONS(7638), 1, anon_sym_end, - STATE(4692), 1, + STATE(4743), 1, sym_heredoc_body, - STATE(9463), 1, + STATE(9470), 1, aux_sym_case_repeat1, - STATE(9699), 1, + STATE(9735), 1, aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(10781), 1, + STATE(10838), 1, sym_in, - STATE(12041), 1, + STATE(11246), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [162617] = 6, + [163990] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4693), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4744), 1, sym_heredoc_body, - STATE(4838), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4875), 32, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + ACTIONS(5970), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, 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, - [162676] = 20, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [164083] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7414), 1, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, sym_binary_ampersand, - STATE(4694), 1, + ACTIONS(7640), 1, + anon_sym_end, + STATE(4745), 1, sym_heredoc_body, + STATE(9521), 1, + aux_sym_case_repeat1, + STATE(9759), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(11961), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [164192] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4746), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 12, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 19, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -499353,20 +504180,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, 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_else, anon_sym_when, anon_sym_in, - [162763] = 5, + [164269] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4695), 1, + STATE(4747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -499375,7 +504209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 34, + ACTIONS(6529), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -499410,15 +504244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162820] = 5, + [164326] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4696), 1, + STATE(4748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -499427,7 +504261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 34, + ACTIONS(6249), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -499462,17 +504296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162877] = 6, + [164383] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7636), 1, - anon_sym_of, - STATE(4697), 1, + STATE(4749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6535), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -499481,7 +504313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 33, + ACTIONS(6533), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -499492,10 +504325,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, @@ -499511,21 +504348,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, - [162936] = 6, + [164440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7638), 1, - anon_sym_of, - STATE(4698), 1, + STATE(4750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -499534,7 +504365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 33, + ACTIONS(6537), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -499545,10 +504377,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, @@ -499564,19 +504400,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, - [162995] = 5, + [164497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4699), 1, + STATE(4751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -499585,7 +504417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 34, + ACTIONS(5838), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -499620,15 +504452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163052] = 5, + [164554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4700), 1, + STATE(4752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -499637,7 +504469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 34, + ACTIONS(6445), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -499672,24 +504504,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163109] = 5, + [164611] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4701), 1, + ACTIONS(7642), 1, + anon_sym_LBRACK, + ACTIONS(7644), 1, + anon_sym_DOT, + ACTIONS(7646), 1, + anon_sym_STAR, + ACTIONS(7648), 1, + anon_sym_PIPE, + ACTIONS(7650), 1, + anon_sym_QMARK, + STATE(4753), 1, sym_heredoc_body, + STATE(4862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 34, + ACTIONS(4890), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -499701,16 +504544,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, @@ -499721,18 +504559,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, - [163166] = 5, + anon_sym_then, + [164680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4702), 1, + STATE(4754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(6285), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -499741,7 +504579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 34, + ACTIONS(6283), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -499776,15 +504614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163223] = 5, + [164737] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4703), 1, + STATE(4755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -499793,7 +504631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 34, + ACTIONS(6541), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -499828,26 +504666,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163280] = 5, + [164794] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4704), 1, - sym_heredoc_body, + ACTIONS(7652), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + STATE(4756), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 34, - sym__line_break, + ACTIONS(4840), 31, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -499857,16 +504699,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, @@ -499877,99 +504715,30 @@ 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, - [163337] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4705), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6403), 11, - 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_else, - anon_sym_when, - anon_sym_in, - [163426] = 7, + [164853] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - STATE(4706), 1, + STATE(4757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(6551), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 33, + ACTIONS(6549), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -500002,96 +504771,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163487] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4707), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6403), 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, - [163576] = 7, + [164910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - STATE(4708), 1, + STATE(4758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6555), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 33, + ACTIONS(6553), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -500124,28 +504823,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163637] = 7, + [164967] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - STATE(4709), 1, + STATE(4759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(6563), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 33, + ACTIONS(6561), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -500178,327 +504875,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163698] = 21, + [165024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4710), 1, + STATE(4760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(6289), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(6287), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6332), 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, - [163787] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4711), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7461), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6459), 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, - [163880] = 23, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [165081] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7642), 1, + anon_sym_LBRACK, + ACTIONS(7644), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7646), 1, + anon_sym_STAR, + ACTIONS(7648), 1, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7650), 1, anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4712), 1, + STATE(4761), 1, sym_heredoc_body, + STATE(4862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(4892), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(4894), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6461), 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, - [163973] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7449), 1, - anon_sym_DOT_DOT, - ACTIONS(7451), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, + anon_sym_DASH_GT, anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7473), 1, - anon_sym_QMARK, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4713), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7461), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 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, - [164066] = 10, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [165150] = 6, ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7479), 1, - sym__start_of_index_operator, - STATE(4714), 1, + sym__heredoc_body_start, + ACTIONS(7655), 1, + anon_sym_of, + STATE(4762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(5848), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 27, + anon_sym_AMP_STAR, + ACTIONS(5844), 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_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -500510,52 +505034,52 @@ 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, - [164133] = 8, + [165209] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - STATE(4715), 1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + STATE(4763), 1, sym_heredoc_body, + STATE(5838), 1, + sym_do_end_block, + STATE(5840), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(5671), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 31, + ACTIONS(5669), 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_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -500565,52 +505089,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, - [164196] = 8, + anon_sym_then, + [165274] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - STATE(4716), 1, + ACTIONS(7659), 1, + anon_sym_COLON_COLON, + STATE(4756), 1, + aux_sym_constant_repeat1, + STATE(4764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(4851), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 31, - sym__line_break, + ACTIONS(4853), 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__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, @@ -500620,306 +505143,235 @@ 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, - [164259] = 12, + [165335] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7479), 1, - sym__start_of_index_operator, - STATE(4717), 1, + STATE(4765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(5868), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 21, + anon_sym_AMP_STAR, + ACTIONS(5866), 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, - [164330] = 21, + [165392] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(6173), 1, anon_sym_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4718), 1, + STATE(4766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 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, + ACTIONS(6171), 13, + 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, - [164419] = 17, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [165477] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4719), 1, + STATE(4767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7471), 2, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, - anon_sym_DOT_DOT, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 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(6175), 12, + 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_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164500] = 13, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [165564] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4720), 1, + ACTIONS(7661), 1, + anon_sym_LPAREN2, + STATE(4768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(4900), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 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, - [164573] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7469), 1, anon_sym_AMP_STAR, - ACTIONS(7479), 1, + ACTIONS(4902), 32, + sym__line_break, sym__start_of_index_operator, - STATE(4721), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7481), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 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, 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, @@ -500929,52 +505381,72 @@ 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, - [164642] = 15, + anon_sym_then, + [165623] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7453), 1, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7464), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7466), 1, anon_sym_CARET, - ACTIONS(7469), 1, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(7479), 1, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7492), 1, sym_binary_ampersand, - STATE(4722), 1, + STATE(4769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7471), 2, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7481), 4, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7490), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 19, + ACTIONS(6509), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -500983,501 +505455,421 @@ 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_BANG_EQ, - 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, - [164719] = 19, + [165716] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, - anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4723), 1, + STATE(4770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(5923), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(5921), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 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__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, - [164804] = 20, + [165773] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7475), 1, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4724), 1, + STATE(4771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 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, + ACTIONS(6489), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_end, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [164891] = 21, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [165866] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7642), 1, + anon_sym_LBRACK, + ACTIONS(7644), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7646), 1, + anon_sym_STAR, + ACTIONS(7648), 1, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, - anon_sym_EQ_EQ, - ACTIONS(7469), 1, - anon_sym_AMP_STAR, - ACTIONS(7475), 1, - anon_sym_AMP_AMP, - ACTIONS(7477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4725), 1, + ACTIONS(7650), 1, + anon_sym_QMARK, + STATE(4772), 1, sym_heredoc_body, + STATE(4862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7467), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(4859), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(4861), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 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, - [164980] = 23, + 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, + [165935] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4726), 1, + STATE(4773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6205), 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(6459), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_end, - [165073] = 23, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [166028] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4727), 1, + STATE(4774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6247), 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(6509), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_end, - [165166] = 24, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [166121] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, - anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4728), 1, + STATE(4775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7483), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6723), 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, - [165261] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4729), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6097), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6095), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + ACTIONS(6083), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_EQ_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, - [165318] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [166214] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4730), 1, + ACTIONS(7663), 1, + anon_sym_LPAREN2, + STATE(4776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 34, - sym__line_break, + ACTIONS(4902), 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, @@ -501487,16 +505879,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, @@ -501510,78 +505898,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165375] = 5, + anon_sym_do, + [166273] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4731), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6101), 8, - anon_sym_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_LBRACK, + ACTIONS(7554), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7556), 1, + anon_sym_STAR, + ACTIONS(7558), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6099), 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(7560), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [165432] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4732), 1, + STATE(4625), 1, + aux_sym_union_type_repeat1, + STATE(4777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 34, - sym__line_break, + ACTIONS(4861), 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, @@ -501591,16 +505940,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, @@ -501611,66 +505954,66 @@ 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, - [165489] = 21, + anon_sym_do, + [166342] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, + ACTIONS(6520), 1, anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(4733), 1, + STATE(4778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 11, + ACTIONS(6518), 11, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -501682,26 +506025,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [165578] = 5, + [166431] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4734), 1, + ACTIONS(7659), 1, + anon_sym_COLON_COLON, + STATE(4779), 1, sym_heredoc_body, + STATE(4802), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 34, - sym__line_break, + ACTIONS(4857), 31, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -501711,16 +506059,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, @@ -501731,18 +506075,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, - [165635] = 5, + [166492] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4735), 1, + STATE(4780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -501751,7 +506096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 34, + ACTIONS(6297), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -501786,67 +506131,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165692] = 5, + [166549] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4736), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6125), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + ACTIONS(6227), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_EQ_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, - [165749] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [166642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4737), 1, + STATE(4782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -501855,7 +506218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 34, + ACTIONS(6233), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -501890,83 +506253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165806] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4738), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6107), 11, - 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_else, - anon_sym_when, - anon_sym_in, - [165895] = 5, + [166699] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4739), 1, + STATE(4783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -501975,7 +506270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 34, + ACTIONS(6241), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -502010,26 +506305,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165952] = 5, + [166756] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4740), 1, + STATE(4625), 1, + aux_sym_union_type_repeat1, + STATE(4784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 34, - sym__line_break, + ACTIONS(4875), 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, @@ -502039,16 +506338,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, @@ -502062,15 +506357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166009] = 5, + anon_sym_do, + [166815] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4741), 1, + STATE(4785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502079,7 +506375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 34, + ACTIONS(5729), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -502114,17 +506410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166066] = 6, + [166872] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7640), 1, - anon_sym_of, - STATE(4742), 1, + STATE(4786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502133,7 +506427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 33, + ACTIONS(6091), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -502152,6 +506446,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, @@ -502167,15 +506462,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166125] = 5, + [166929] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4743), 1, + ACTIONS(841), 1, + sym__string_literal_start, + STATE(4787), 1, sym_heredoc_body, + STATE(4839), 1, + aux_sym_chained_string_repeat1, + STATE(5152), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502184,8 +506485,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 34, + ACTIONS(173), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -502196,16 +506498,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, @@ -502219,179 +506515,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166182] = 31, + anon_sym_do, + anon_sym_then, + [166992] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7562), 1, anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(7642), 1, - anon_sym_end, - STATE(4744), 1, + STATE(4788), 1, sym_heredoc_body, - STATE(9378), 1, - aux_sym_case_repeat1, - STATE(9842), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10781), 1, - sym_in, - STATE(11255), 1, - sym_else, + STATE(4789), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(4881), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(4883), 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(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [166291] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4745), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6506), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [166384] = 8, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [167053] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1931), 1, - anon_sym_COLON, - ACTIONS(7127), 1, - anon_sym_COLON_COLON, - STATE(3604), 1, - aux_sym_constant_repeat1, - STATE(4746), 1, - sym_heredoc_body, + ACTIONS(7665), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + STATE(4789), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 30, + ACTIONS(4875), 31, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -502404,8 +506605,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, @@ -502416,109 +506619,93 @@ 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, - [166447] = 23, + [167112] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(4747), 1, + STATE(4790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(6099), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6097), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 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, - ACTIONS(6205), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [166540] = 9, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [167169] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3267), 1, - sym__string_literal_start, - ACTIONS(7644), 1, - anon_sym_COLON, - STATE(4748), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7515), 1, + anon_sym_QMARK, + ACTIONS(7562), 1, + anon_sym_PIPE, + STATE(4788), 1, + aux_sym_union_type_repeat1, + STATE(4791), 1, sym_heredoc_body, - STATE(4957), 1, - aux_sym_chained_string_repeat1, - STATE(5384), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, + ACTIONS(4888), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(4890), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -502543,20 +506730,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, - [166605] = 5, + [167238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4749), 1, + STATE(4792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502565,7 +506751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 34, + ACTIONS(6097), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -502600,25 +506786,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166662] = 5, + [167295] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4750), 1, + ACTIONS(7507), 1, + anon_sym_LBRACK, + ACTIONS(7509), 1, + anon_sym_DOT, + ACTIONS(7511), 1, + anon_sym_STAR, + ACTIONS(7515), 1, + anon_sym_QMARK, + ACTIONS(7562), 1, + anon_sym_PIPE, + STATE(4788), 1, + aux_sym_union_type_repeat1, + STATE(4793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(4892), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 34, - sym__line_break, + ACTIONS(4894), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -502629,16 +506827,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, @@ -502649,18 +506840,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, - [166719] = 5, + anon_sym_do, + [167364] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4751), 1, + STATE(4794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502669,7 +506861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 34, + ACTIONS(6433), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -502704,15 +506896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166776] = 5, + [167421] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4752), 1, + STATE(4795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502721,7 +506913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 34, + ACTIONS(6101), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -502756,17 +506948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166833] = 6, + [167478] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(719), 1, - anon_sym_EQ, - STATE(4753), 1, + STATE(4796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502775,7 +506965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 33, + ACTIONS(6105), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -502794,6 +506984,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, @@ -502809,17 +507000,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166892] = 6, + [167535] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7646), 1, - anon_sym_of, - STATE(4754), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4797), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6747), 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, + [167630] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502828,7 +507088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 33, + ACTIONS(6109), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -502839,10 +507100,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, @@ -502858,21 +507123,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, - [166951] = 6, + [167687] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7648), 1, - anon_sym_of, - STATE(4755), 1, + STATE(4799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -502881,7 +507140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 33, + ACTIONS(6113), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -502892,10 +507152,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, @@ -502911,32 +507175,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_else, - anon_sym_when, - anon_sym_in, - [167010] = 6, + [167744] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7650), 1, - anon_sym_PIPE, + ACTIONS(1943), 1, + anon_sym_COLON, + ACTIONS(7214), 1, + anon_sym_COLON_COLON, + STATE(3840), 1, + aux_sym_constant_repeat1, + STATE(4800), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4756), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(4855), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 32, - sym__line_break, + ACTIONS(4857), 30, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -502948,12 +507212,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, @@ -502964,31 +507224,108 @@ 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_then, - [167069] = 6, + anon_sym_do, + [167807] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7653), 1, - anon_sym_of, - STATE(4757), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4801), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, + [167902] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7659), 1, + anon_sym_COLON_COLON, + STATE(4756), 1, + aux_sym_constant_repeat1, + STATE(4802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 33, + ACTIONS(4847), 31, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -502999,11 +507336,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_EQ_GT, + 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, @@ -503014,22 +507351,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_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [167128] = 5, + [167963] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4758), 1, + STATE(4803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -503038,7 +507372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 34, + ACTIONS(6117), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -503073,15 +507407,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167185] = 5, + [168020] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4759), 1, + ACTIONS(3267), 1, + sym__string_literal_start, + ACTIONS(7668), 1, + anon_sym_COLON, + STATE(4804), 1, sym_heredoc_body, + STATE(4933), 1, + aux_sym_chained_string_repeat1, + STATE(5224), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(195), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -503090,8 +507433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 34, - sym__line_break, + ACTIONS(173), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -503102,16 +507445,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, @@ -503123,98 +507459,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167242] = 23, + anon_sym_do, + [168085] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7460), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7464), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7466), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7470), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7480), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7482), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(7486), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7492), 1, sym_binary_ampersand, - STATE(4760), 1, + STATE(4805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7478), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7462), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7472), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7490), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6508), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + ACTIONS(6712), 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, - [167335] = 5, + [168180] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4761), 1, + ACTIONS(7659), 1, + anon_sym_COLON_COLON, + STATE(4764), 1, + aux_sym_constant_repeat1, + STATE(4806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(4845), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 34, - sym__line_break, + ACTIONS(4847), 31, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -503224,16 +507568,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, @@ -503244,18 +507584,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, - [167392] = 5, + [168241] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4762), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4807), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, + [168336] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -503264,7 +507676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 34, + ACTIONS(6121), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -503299,25 +507711,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167449] = 5, + [168393] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4763), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4809), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, + [168488] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(7670), 1, + anon_sym_DASH_GT, + STATE(4810), 1, sym_heredoc_body, + STATE(10523), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 34, + ACTIONS(5022), 30, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -503328,16 +507819,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, @@ -503351,26 +507835,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167506] = 5, + anon_sym_do, + anon_sym_then, + [168551] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4764), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, + sym_binary_ampersand, + ACTIONS(7672), 1, + anon_sym_end, + STATE(4811), 1, sym_heredoc_body, + STATE(9490), 1, + aux_sym_case_repeat1, + STATE(9966), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(11718), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, - anon_sym_DOT_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [168660] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7460), 1, anon_sym_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + STATE(4812), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6247), 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(145), 34, + ACTIONS(6245), 33, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -503403,67 +507969,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167563] = 5, + [168721] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4765), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6546), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6253), 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, - [167620] = 5, + [168810] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4766), 1, + STATE(4814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -503472,7 +508054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 34, + ACTIONS(6183), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -503507,76 +508089,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167677] = 5, + [168867] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4767), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6320), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, + [168962] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4816), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, + [169057] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, anon_sym_QMARK, + ACTIONS(7482), 1, anon_sym_AMP_AMP, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - [167734] = 5, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4817), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6712), 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, + [169152] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4768), 1, + ACTIONS(7642), 1, + anon_sym_LBRACK, + ACTIONS(7644), 1, + anon_sym_DOT, + ACTIONS(7646), 1, + anon_sym_STAR, + ACTIONS(7648), 1, + anon_sym_PIPE, + ACTIONS(7650), 1, + anon_sym_QMARK, + STATE(4818), 1, sym_heredoc_body, + STATE(4862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 34, + ACTIONS(4898), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -503588,16 +508342,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, @@ -503608,27 +508357,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, - [167791] = 5, + anon_sym_then, + [169221] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4769), 1, + ACTIONS(7642), 1, + anon_sym_LBRACK, + ACTIONS(7644), 1, + anon_sym_DOT, + ACTIONS(7646), 1, + anon_sym_STAR, + ACTIONS(7648), 1, + anon_sym_PIPE, + ACTIONS(7650), 1, + anon_sym_QMARK, + STATE(4819), 1, sym_heredoc_body, + STATE(4862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(4877), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 34, + ACTIONS(4879), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -503640,16 +508400,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, @@ -503660,29 +508415,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, - [167848] = 5, + anon_sym_then, + [169290] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4770), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + STATE(4820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 34, + ACTIONS(6301), 33, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -503715,85 +508472,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167905] = 23, + [169351] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, sym_binary_ampersand, - STATE(4771), 1, + ACTIONS(7674), 1, + anon_sym_end, + STATE(4821), 1, sym_heredoc_body, + STATE(9485), 1, + aux_sym_case_repeat1, + STATE(9914), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(11360), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6247), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_end, + [169460] = 31, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, anon_sym_else, + ACTIONS(7611), 1, anon_sym_when, + ACTIONS(7613), 1, anon_sym_in, - [167998] = 5, + ACTIONS(7619), 1, + sym_binary_ampersand, + ACTIONS(7676), 1, + anon_sym_end, + STATE(4822), 1, + sym_heredoc_body, + STATE(9458), 1, + aux_sym_case_repeat1, + STATE(9857), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(12329), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [169569] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4772), 1, + STATE(4823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -503802,7 +508645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 34, + ACTIONS(6183), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -503837,26 +508680,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168055] = 5, + [169626] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4773), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + STATE(4824), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 34, + ACTIONS(6305), 33, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -503889,67 +508734,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168112] = 5, + [169687] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4774), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, + sym_binary_ampersand, + ACTIONS(7678), 1, + anon_sym_end, + STATE(4825), 1, sym_heredoc_body, + STATE(9539), 1, + aux_sym_case_repeat1, + STATE(9718), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(11332), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6336), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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, - 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, - [168169] = 5, + [169796] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4775), 1, + STATE(4826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -503958,7 +508829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 34, + ACTIONS(6183), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -503993,67 +508864,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168226] = 5, + [169853] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4776), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6447), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6518), 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, - [168283] = 5, + [169942] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4777), 1, + STATE(4828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504062,7 +508949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 34, + ACTIONS(6183), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504097,24 +508984,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168340] = 5, + [169999] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4778), 1, + ACTIONS(865), 1, + sym__start_of_brace_block, + ACTIONS(7680), 1, + anon_sym_do, + STATE(4829), 1, sym_heredoc_body, + STATE(5075), 1, + sym_do_end_block, + STATE(5076), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 34, + ACTIONS(5669), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504126,16 +509022,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, @@ -504149,15 +509039,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168397] = 5, + anon_sym_then, + [170064] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4779), 1, - sym_heredoc_body, + ACTIONS(7682), 1, + sym__string_literal_start, + STATE(5152), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + STATE(4830), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504166,8 +509062,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 34, + ACTIONS(5660), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -504178,16 +509075,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, @@ -504201,15 +509092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168454] = 5, + anon_sym_do, + anon_sym_then, + [170125] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4780), 1, + STATE(4831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504218,7 +509111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 34, + ACTIONS(6187), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504253,15 +509146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168511] = 5, + [170182] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4781), 1, + STATE(4832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504270,7 +509163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 34, + ACTIONS(6187), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504305,15 +509198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168568] = 5, + [170239] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4782), 1, + STATE(4833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504322,7 +509215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 34, + ACTIONS(6187), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504357,15 +509250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168625] = 5, + [170296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4783), 1, + STATE(4834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504374,7 +509267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 34, + ACTIONS(6187), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504409,67 +509302,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168682] = 5, + [170353] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4784), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6373), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [170446] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7456), 1, anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7464), 1, anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(5719), 34, - sym__line_break, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4836), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6083), 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, + [170539] = 31, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, + sym_binary_ampersand, + ACTIONS(7685), 1, + anon_sym_end, + STATE(4837), 1, + sym_heredoc_body, + STATE(9453), 1, + aux_sym_case_repeat1, + STATE(9772), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(11092), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7595), 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, - [168739] = 5, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [170648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4785), 1, + STATE(4838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504478,7 +509537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 34, + ACTIONS(6191), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504513,15 +509572,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168796] = 5, + [170705] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4786), 1, + ACTIONS(841), 1, + sym__string_literal_start, + STATE(4830), 1, + aux_sym_chained_string_repeat1, + STATE(4839), 1, sym_heredoc_body, + STATE(5152), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504530,8 +509595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 34, + ACTIONS(5686), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -504542,16 +509608,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, @@ -504565,15 +509625,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168853] = 5, + anon_sym_do, + anon_sym_then, + [170768] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4787), 1, + ACTIONS(7687), 1, + anon_sym_of, + STATE(4840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504582,7 +509646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 34, + ACTIONS(5873), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504601,7 +509665,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, @@ -504617,69 +509680,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168910] = 5, + [170827] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4788), 1, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6305), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6227), 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, + [170920] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4842), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 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, - [168967] = 6, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6261), 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, + [171013] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7655), 1, - anon_sym_of, - STATE(4789), 1, + STATE(4843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504688,7 +509837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 33, + ACTIONS(6195), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504707,6 +509856,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, @@ -504722,15 +509872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169026] = 5, + [171070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4790), 1, + STATE(4844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504739,7 +509889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 34, + ACTIONS(6199), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504774,15 +509924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169083] = 5, + [171127] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4791), 1, + STATE(4845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504791,7 +509941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 34, + ACTIONS(6203), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504826,15 +509976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169140] = 5, + [171184] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4792), 1, + STATE(4846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6209), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504843,7 +509993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 34, + ACTIONS(6207), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504878,15 +510028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169197] = 5, + [171241] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4793), 1, + STATE(4847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504895,7 +510045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 34, + ACTIONS(6211), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504930,15 +510080,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169254] = 5, + [171298] = 31, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(7619), 1, + sym_binary_ampersand, + ACTIONS(7689), 1, + anon_sym_end, + STATE(4848), 1, + sym_heredoc_body, + STATE(9560), 1, + aux_sym_case_repeat1, + STATE(9915), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(10838), 1, + sym_in, + STATE(11399), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [171407] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4794), 1, + STATE(4849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504947,7 +510175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 34, + ACTIONS(6215), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -504982,15 +510210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169311] = 5, + [171464] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4795), 1, + STATE(4850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -504999,7 +510227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 34, + ACTIONS(6219), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -505034,15 +510262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169368] = 5, + [171521] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4796), 1, + ACTIONS(7691), 1, + anon_sym_of, + STATE(4851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -505051,7 +510281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 34, + ACTIONS(5744), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -505070,7 +510300,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, @@ -505086,76 +510315,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169425] = 5, + [171580] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4797), 1, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6411), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6085), 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, - [169482] = 5, + [171673] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4798), 1, + STATE(4853), 1, sym_heredoc_body, + STATE(4862), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 34, + ACTIONS(4875), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -505167,16 +510417,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, @@ -505190,15 +510437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169539] = 5, + anon_sym_then, + [171732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4799), 1, + STATE(4854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -505207,7 +510455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 34, + ACTIONS(6223), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -505242,69 +510490,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169596] = 5, + [171789] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4800), 1, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6423), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 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, - [169653] = 6, + [171882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7657), 1, - anon_sym_of, - STATE(4801), 1, + STATE(4856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -505313,7 +510577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 33, + ACTIONS(6085), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -505332,6 +510596,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, @@ -505347,15 +510612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169712] = 5, + [171939] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4802), 1, + STATE(4857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -505364,7 +510629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 34, + ACTIONS(6237), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -505399,41 +510664,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169769] = 5, + [171996] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4803), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7486), 1, + sym__start_of_index_operator, + STATE(4858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6451), 34, + ACTIONS(6125), 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, @@ -505447,36 +510718,39 @@ 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, - [169826] = 5, + [172063] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4804), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + STATE(4859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 34, + ACTIONS(6129), 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, @@ -505499,36 +510773,39 @@ 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, - [169883] = 5, + [172126] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4805), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + STATE(4860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 34, + ACTIONS(6133), 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, @@ -505551,19 +510828,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, - [169940] = 5, + [172189] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4806), 1, + ACTIONS(7693), 1, + anon_sym_of, + STATE(4861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -505572,8 +510850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 34, - sym__line_break, + ACTIONS(5844), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -505584,14 +510861,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, @@ -505607,24 +510880,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169997] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [172248] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4807), 1, + ACTIONS(7648), 1, + anon_sym_PIPE, + STATE(4699), 1, + aux_sym_union_type_repeat1, + STATE(4862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 34, + ACTIONS(4883), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -505636,16 +510917,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, @@ -505659,327 +510937,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170054] = 5, + anon_sym_then, + [172309] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4808), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7486), 1, + sym__start_of_index_operator, + STATE(4863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6482), 34, + ACTIONS(6137), 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, - [170111] = 5, + [172380] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4809), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6486), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6141), 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, - [170168] = 5, + [172469] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4810), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6502), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 15, + 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, - [170225] = 5, + [172550] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4811), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6514), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + ACTIONS(6361), 11, + 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_else, + anon_sym_when, + anon_sym_in, + [172639] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 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(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, anon_sym_QMARK, + ACTIONS(7482), 1, anon_sym_AMP_AMP, + ACTIONS(7484), 1, anon_sym_PIPE_PIPE, - [170282] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4812), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6518), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6489), 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, - [170339] = 5, + [172732] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4813), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6522), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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, - [170396] = 5, + [172805] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4814), 1, + ACTIONS(7695), 1, + anon_sym_of, + STATE(4869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -505988,8 +511346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 34, - sym__line_break, + ACTIONS(5744), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -506000,14 +511357,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, @@ -506023,93 +511376,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170453] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [172864] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4815), 1, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5970), 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, - [170510] = 5, + [172957] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4816), 1, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7486), 1, + sym__start_of_index_operator, + STATE(4871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 34, + ACTIONS(6163), 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, @@ -506123,175 +511505,359 @@ 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, - [170567] = 5, + [173026] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4817), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [173121] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6704), 1, anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4873), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 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, - [170624] = 5, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [173216] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4818), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5985), 8, - anon_sym_DOT_DOT, + ACTIONS(7460), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7464), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7476), 1, anon_sym_AMP_STAR, - ACTIONS(5983), 34, - sym__line_break, + ACTIONS(7486), 1, sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4874), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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, - [170681] = 5, + [173293] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4819), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7456), 1, + anon_sym_DOT_DOT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, + anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7480), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_AMP_AMP, + ACTIONS(7484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7468), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7474), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5987), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7488), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7490), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6702), 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, + [173388] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(7460), 1, + anon_sym_DOT, + ACTIONS(7464), 1, + anon_sym_PIPE, + ACTIONS(7466), 1, anon_sym_CARET, + ACTIONS(7470), 1, + anon_sym_EQ_EQ, + ACTIONS(7476), 1, + anon_sym_AMP_STAR, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7492), 1, + sym_binary_ampersand, + STATE(4876), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7468), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7474), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7478), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7462), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7472), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7488), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7490), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6171), 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, - [170738] = 5, + [173473] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4820), 1, + STATE(4877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -506300,7 +511866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 34, + ACTIONS(6309), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -506335,67 +511901,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170795] = 5, + [173530] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4821), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(4878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5987), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + ACTIONS(6253), 11, + 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, - [170852] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [173619] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4822), 1, + STATE(4879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -506404,7 +511986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 34, + ACTIONS(6313), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -506439,15 +512021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170909] = 5, + [173676] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4823), 1, + STATE(4880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -506456,7 +512038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 34, + ACTIONS(6545), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -506491,26 +512073,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170966] = 6, + [173733] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7659), 1, - anon_sym_of, - STATE(4824), 1, - sym_heredoc_body, + ACTIONS(7697), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + STATE(4881), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 33, + ACTIONS(4875), 31, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -506522,15 +512105,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, @@ -506544,67 +512124,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171025] = 23, + anon_sym_then, + [173791] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7704), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7708), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7710), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7714), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7720), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7724), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7726), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7728), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7734), 1, sym_binary_ampersand, - STATE(4825), 1, + STATE(4882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7718), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7722), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7706), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7716), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7732), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6506), 9, + ACTIONS(6922), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -506612,87 +512193,190 @@ 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, - [171118] = 23, + [173883] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, + STATE(4883), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4946), 9, anon_sym_DOT_DOT, - ACTIONS(7451), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, anon_sym_DOT, - ACTIONS(7457), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7459), 1, - anon_sym_CARET, - ACTIONS(7463), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(4948), 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, anon_sym_QMARK, - ACTIONS(7475), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, - sym_binary_ampersand, - STATE(4826), 1, + anon_sym_do, + [173939] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7736), 1, + sym_identifier, + ACTIONS(7738), 1, + anon_sym_LBRACK, + ACTIONS(7746), 1, + sym_instance_var, + STATE(227), 1, + sym__operator_token, + STATE(4884), 1, sym_heredoc_body, + STATE(5061), 1, + sym__implicit_method_call_chainable, + STATE(5068), 1, + sym__implicit_ivar_call, + STATE(5069), 1, + sym__implicit_index_call, + STATE(5225), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7744), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7740), 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(7742), 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(7467), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 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(7455), 3, + [174013] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + STATE(4885), 1, + sym_heredoc_body, + STATE(6063), 1, + sym_do_end_block, + STATE(6064), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5700), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + anon_sym_AMP_STAR, + ACTIONS(5698), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6508), 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, - [171211] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [174077] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4827), 1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + STATE(4886), 1, sym_heredoc_body, + STATE(6073), 1, + sym_do_end_block, + STATE(6074), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -506701,7 +512385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 34, + ACTIONS(5694), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -506713,16 +512397,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, @@ -506736,15 +512414,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171268] = 5, + anon_sym_then, + [174141] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4828), 1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + STATE(4887), 1, sym_heredoc_body, + STATE(6076), 1, + sym_do_end_block, + STATE(6077), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -506753,7 +512440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 34, + ACTIONS(5694), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -506765,16 +512452,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, @@ -506788,26 +512469,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171325] = 5, + anon_sym_then, + [174205] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4829), 1, + STATE(4888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(4950), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 34, - sym__line_break, + ACTIONS(4952), 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, @@ -506817,16 +512501,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, @@ -506840,15 +512520,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171382] = 5, + anon_sym_do, + [174261] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4830), 1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + STATE(4889), 1, sym_heredoc_body, + STATE(6078), 1, + sym_do_end_block, + STATE(6079), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -506857,7 +512546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 34, + ACTIONS(5715), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -506869,16 +512558,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, @@ -506892,15 +512575,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171439] = 5, + anon_sym_then, + [174325] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4831), 1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + STATE(4890), 1, sym_heredoc_body, + STATE(6080), 1, + sym_do_end_block, + STATE(6081), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -506909,7 +512601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 34, + ACTIONS(5715), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -506921,16 +512613,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, @@ -506944,26 +512630,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171496] = 5, + anon_sym_then, + [174389] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4832), 1, + STATE(4891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 34, - sym__line_break, + ACTIONS(4912), 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, @@ -506973,16 +512662,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, @@ -506996,26 +512681,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171553] = 5, + anon_sym_do, + [174445] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4833), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + STATE(4892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 34, + ACTIONS(6245), 32, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -507032,7 +512720,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, @@ -507048,17 +512735,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171610] = 6, + [174505] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7661), 1, - anon_sym_of, - STATE(4834), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4893), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6253), 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, + [174593] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -507067,8 +512819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 33, + ACTIONS(5170), 33, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -507079,15 +512832,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, + 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, @@ -507098,29 +512847,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171669] = 5, + anon_sym_do, + anon_sym_then, + [174649] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4835), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + STATE(4895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 34, + ACTIONS(6301), 32, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -507137,7 +512891,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, @@ -507153,26 +512906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171726] = 5, + [174709] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4836), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + STATE(4896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 34, + ACTIONS(6305), 32, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -507189,7 +512944,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, @@ -507205,80 +512959,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171783] = 5, + [174769] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4837), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, + anon_sym_QMARK, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6843), 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, + [174861] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7708), 1, anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, + anon_sym_QMARK, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4898), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6035), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7732), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6863), 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, + [174953] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, + anon_sym_QMARK, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4899), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7718), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6868), 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, + [175045] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, anon_sym_QMARK, + ACTIONS(7726), 1, anon_sym_AMP_AMP, + ACTIONS(7728), 1, anon_sym_PIPE_PIPE, - [171840] = 7, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4900), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6895), 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, + [175137] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7612), 1, - anon_sym_PIPE, - STATE(4756), 1, - aux_sym_union_type_repeat1, - STATE(4838), 1, + STATE(4901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 32, + ACTIONS(4940), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -507311,67 +513286,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [171901] = 5, + [175193] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4839), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6043), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7732), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6518), 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [171958] = 5, + [175281] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4840), 1, + STATE(4903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(5164), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -507380,8 +513370,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 34, + ACTIONS(5166), 33, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -507392,16 +513383,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, + 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, @@ -507412,122 +513398,211 @@ 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, - [172015] = 5, + anon_sym_do, + anon_sym_then, + [175337] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4841), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, + anon_sym_QMARK, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6165), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7732), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6083), 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, + [175429] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, + anon_sym_QMARK, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4905), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7718), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7716), 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, - [172072] = 23, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6085), 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, + [175521] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7449), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, anon_sym_DOT_DOT, - ACTIONS(7451), 1, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7453), 1, + ACTIONS(7704), 1, anon_sym_DOT, - ACTIONS(7457), 1, + ACTIONS(7708), 1, anon_sym_PIPE, - ACTIONS(7459), 1, + ACTIONS(7710), 1, anon_sym_CARET, - ACTIONS(7463), 1, + ACTIONS(7714), 1, anon_sym_EQ_EQ, - ACTIONS(7469), 1, + ACTIONS(7720), 1, anon_sym_AMP_STAR, - ACTIONS(7473), 1, + ACTIONS(7724), 1, anon_sym_QMARK, - ACTIONS(7475), 1, + ACTIONS(7726), 1, anon_sym_AMP_AMP, - ACTIONS(7477), 1, + ACTIONS(7728), 1, anon_sym_PIPE_PIPE, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7485), 1, + ACTIONS(7734), 1, sym_binary_ampersand, - STATE(4842), 1, + STATE(4906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7461), 2, + ACTIONS(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7467), 2, + ACTIONS(7718), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7471), 2, + ACTIONS(7722), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7455), 3, + ACTIONS(7706), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7465), 4, + ACTIONS(7716), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7481), 4, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7483), 4, + ACTIONS(7732), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5934), 9, + ACTIONS(6095), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -507535,45 +513610,49 @@ 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, - [172165] = 5, + [175613] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4843), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + STATE(4907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6051), 34, + ACTIONS(6125), 26, 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, @@ -507585,44 +513664,49 @@ 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, - [172222] = 6, + [175679] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7663), 1, - anon_sym_of, - STATE(4844), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + STATE(4908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 33, - sym__start_of_index_operator, + ACTIONS(6129), 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_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -507634,345 +513718,355 @@ 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, - [172281] = 14, + [175741] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7665), 1, - sym_identifier, - ACTIONS(7667), 1, - anon_sym_LBRACK, - ACTIONS(7675), 1, - sym_instance_var, - STATE(278), 1, - sym__operator_token, - STATE(3765), 1, - sym__implicit_method_call_chainable, - STATE(3766), 1, - sym__implicit_method_call_unchainable, - STATE(3767), 1, - sym__implicit_ivar_call, - STATE(3768), 1, - sym__implicit_index_call, - STATE(4845), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + STATE(4909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7673), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 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(7671), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6133), 30, + sym__line_break, + 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__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_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, - [172355] = 7, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [175803] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7677), 1, - anon_sym_PIPE, - STATE(4846), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + STATE(4910), 1, sym_heredoc_body, - STATE(4850), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4882), 31, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7732), 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(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 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_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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [172415] = 14, + [175873] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7681), 1, - anon_sym_LBRACK, - ACTIONS(7689), 1, - sym_instance_var, - STATE(295), 1, - sym__operator_token, - STATE(4847), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4911), 1, sym_heredoc_body, - STATE(6791), 1, - sym__implicit_method_call_chainable, - STATE(6830), 1, - sym__implicit_method_call_unchainable, - STATE(6862), 1, - sym__implicit_ivar_call, - STATE(6868), 1, - sym__implicit_index_call, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7687), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7683), 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(7685), 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(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7718), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7716), 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, - [172489] = 14, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6141), 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, + [175961] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7691), 1, - sym_identifier, - ACTIONS(7693), 1, - anon_sym_LBRACK, - ACTIONS(7701), 1, - sym_instance_var, - STATE(111), 1, - sym__operator_token, - STATE(4146), 1, - sym__implicit_method_call_chainable, - STATE(4147), 1, - sym__implicit_method_call_unchainable, - STATE(4148), 1, - sym__implicit_ivar_call, - STATE(4149), 1, - sym__implicit_index_call, - STATE(4848), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7699), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7695), 10, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 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(7697), 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(7716), 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, - [172563] = 14, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 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, + [176041] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7693), 1, - anon_sym_LBRACK, - ACTIONS(7701), 1, - sym_instance_var, - ACTIONS(7703), 1, - sym_identifier, - STATE(101), 1, - sym__operator_token, - STATE(4137), 1, - sym__implicit_method_call_chainable, - STATE(4138), 1, - sym__implicit_method_call_unchainable, - STATE(4139), 1, - sym__implicit_ivar_call, - STATE(4140), 1, - sym__implicit_index_call, - STATE(4849), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7705), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7695), 10, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 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(7697), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6149), 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_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, - [172637] = 6, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [176113] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7707), 1, - anon_sym_PIPE, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + STATE(4914), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4850), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4875), 31, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7732), 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(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 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_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -507982,128 +514076,123 @@ 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, - [172695] = 14, + [176181] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7710), 1, - sym_identifier, - ACTIONS(7712), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - sym_instance_var, - STATE(89), 1, - sym__operator_token, - STATE(2909), 1, - sym__implicit_method_call_chainable, - STATE(2910), 1, - sym__implicit_method_call_unchainable, - STATE(2911), 1, - sym__implicit_ivar_call, - STATE(2914), 1, - sym__implicit_index_call, - STATE(4851), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7718), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7714), 10, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6169), 5, + 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(7716), 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(6167), 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_end, 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, - [172769] = 21, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [176257] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, + ACTIONS(6173), 1, anon_sym_DOT_DOT, - ACTIONS(7479), 1, + ACTIONS(7486), 1, sym__start_of_index_operator, - ACTIONS(7722), 1, + ACTIONS(7704), 1, anon_sym_DOT, - ACTIONS(7726), 1, + ACTIONS(7708), 1, anon_sym_PIPE, - ACTIONS(7728), 1, + ACTIONS(7710), 1, anon_sym_CARET, - ACTIONS(7732), 1, + ACTIONS(7714), 1, anon_sym_EQ_EQ, - ACTIONS(7738), 1, + ACTIONS(7720), 1, anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, + ACTIONS(7734), 1, sym_binary_ampersand, - STATE(4852), 1, + STATE(4916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, + ACTIONS(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7736), 2, + ACTIONS(7718), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, + ACTIONS(7722), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(7706), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, + ACTIONS(7716), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, + ACTIONS(7732), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 10, + ACTIONS(6171), 12, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -508114,146 +514203,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_QMARK, - [172857] = 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [176341] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7752), 1, - sym_identifier, - ACTIONS(7754), 1, - anon_sym_LBRACK, - ACTIONS(7758), 1, - sym_instance_var, - STATE(312), 1, - sym__operator_token, - STATE(4853), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4917), 1, sym_heredoc_body, - STATE(5798), 1, - sym__implicit_method_call_chainable, - STATE(6022), 1, - sym__implicit_method_call_unchainable, - STATE(6110), 1, - sym__implicit_ivar_call, - STATE(6123), 1, - sym__implicit_index_call, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7756), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7683), 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(7685), 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(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7718), 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(7722), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - [172931] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4854), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4954), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7706), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4956), 32, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7732), 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(6175), 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_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_do, - [172987] = 11, + [176427] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, - anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7534), 1, - anon_sym_QMARK, - ACTIONS(7677), 1, - anon_sym_PIPE, - STATE(4846), 1, - aux_sym_union_type_repeat1, - STATE(4855), 1, + STATE(4918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(4938), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 28, + ACTIONS(4940), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -508267,8 +514303,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, @@ -508279,78 +514318,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, - [173055] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7681), 1, - anon_sym_LBRACK, - ACTIONS(7689), 1, - sym_instance_var, - ACTIONS(7760), 1, - sym_identifier, - STATE(332), 1, - sym__operator_token, - STATE(4856), 1, - sym_heredoc_body, - STATE(6791), 1, - sym__implicit_method_call_chainable, - STATE(6830), 1, - sym__implicit_method_call_unchainable, - STATE(6862), 1, - sym__implicit_ivar_call, - STATE(6868), 1, - sym__implicit_index_call, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7762), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7683), 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(7685), 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, - [173129] = 5, + [176483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4857), 1, + STATE(4919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -508360,10 +514340,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 32, - sym__start_of_brace_block, + ACTIONS(4948), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -508374,6 +514353,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, @@ -508392,35 +514372,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [173185] = 14, + anon_sym_then, + [176539] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7764), 1, + ACTIONS(7748), 1, sym_identifier, - ACTIONS(7766), 1, + ACTIONS(7750), 1, anon_sym_LBRACK, - ACTIONS(7774), 1, + ACTIONS(7758), 1, sym_instance_var, - STATE(674), 1, + STATE(113), 1, sym__operator_token, - STATE(4858), 1, - sym_heredoc_body, - STATE(9416), 1, + STATE(4023), 1, sym__implicit_method_call_chainable, - STATE(9427), 1, - sym__implicit_index_call, - STATE(9472), 1, + STATE(4024), 1, sym__implicit_ivar_call, - STATE(9849), 1, + STATE(4025), 1, + sym__implicit_index_call, + STATE(4578), 1, sym__implicit_method_call_unchainable, + STATE(4920), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7772), 2, + ACTIONS(7756), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7768), 10, + ACTIONS(7752), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -508431,7 +514411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7770), 21, + ACTIONS(7754), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -508453,34 +514433,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [173259] = 14, + [176613] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7776), 1, + ACTIONS(7760), 1, sym_identifier, - ACTIONS(7778), 1, + ACTIONS(7762), 1, anon_sym_LBRACK, - ACTIONS(7786), 1, + ACTIONS(7770), 1, sym_instance_var, - STATE(255), 1, + STATE(265), 1, sym__operator_token, - STATE(4859), 1, + STATE(4921), 1, sym_heredoc_body, - STATE(5313), 1, + STATE(5568), 1, sym__implicit_method_call_chainable, - STATE(5314), 1, - sym__implicit_method_call_unchainable, - STATE(5315), 1, + STATE(5570), 1, sym__implicit_ivar_call, - STATE(5316), 1, + STATE(5615), 1, sym__implicit_index_call, + STATE(6223), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7784), 2, + ACTIONS(7768), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7780), 10, + ACTIONS(7764), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -508491,7 +514471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7782), 21, + ACTIONS(7766), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -508513,132 +514493,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [173333] = 11, + [176687] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7704), 1, anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7534), 1, - anon_sym_QMARK, - ACTIONS(7677), 1, + ACTIONS(7708), 1, anon_sym_PIPE, - STATE(4846), 1, - aux_sym_union_type_repeat1, - STATE(4860), 1, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4898), 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_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + ACTIONS(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7718), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(7722), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [173401] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7788), 1, - sym_identifier, - ACTIONS(7790), 1, - anon_sym_LBRACK, - ACTIONS(7798), 1, - sym_instance_var, - STATE(129), 1, - sym__operator_token, - STATE(3811), 1, - sym__implicit_method_call_chainable, - STATE(3812), 1, - sym__implicit_method_call_unchainable, - STATE(3813), 1, - sym__implicit_ivar_call, - STATE(3814), 1, - sym__implicit_index_call, - STATE(4861), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7796), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7792), 10, + ACTIONS(7706), 3, 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(7794), 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(7716), 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, - [173475] = 5, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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, + [176775] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4862), 1, + STATE(4923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -508648,7 +514578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 32, + ACTIONS(4944), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -508681,15 +514611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [173531] = 5, + [176831] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4863), 1, + STATE(4924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -508699,10 +514629,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 32, - sym__start_of_brace_block, + ACTIONS(4944), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -508713,6 +514642,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, @@ -508731,88 +514661,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [173587] = 9, + anon_sym_then, + [176887] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, - STATE(4864), 1, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, + anon_sym_QMARK, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4925), 1, sym_heredoc_body, - STATE(6020), 1, - sym_do_end_block, - STATE(6024), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7732), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6459), 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_COMMA, + anon_sym_end, + [176979] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, + anon_sym_QMARK, + ACTIONS(7726), 1, + anon_sym_AMP_AMP, + ACTIONS(7728), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4926), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7712), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7718), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6491), 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, + [177071] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7486), 1, + sym__start_of_index_operator, + ACTIONS(7700), 1, + anon_sym_DOT_DOT, + ACTIONS(7702), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7704), 1, + anon_sym_DOT, + ACTIONS(7708), 1, + anon_sym_PIPE, + ACTIONS(7710), 1, + anon_sym_CARET, + ACTIONS(7714), 1, + anon_sym_EQ_EQ, + ACTIONS(7720), 1, + anon_sym_AMP_STAR, + ACTIONS(7724), 1, anon_sym_QMARK, + ACTIONS(7726), 1, anon_sym_AMP_AMP, + ACTIONS(7728), 1, anon_sym_PIPE_PIPE, - anon_sym_then, - [173651] = 9, + ACTIONS(7734), 1, + sym_binary_ampersand, + STATE(4927), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7712), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7718), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7722), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7706), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7716), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7730), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7732), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6373), 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, + [177163] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, - STATE(4865), 1, + STATE(4928), 1, sym_heredoc_body, - STATE(6025), 1, - sym_do_end_block, - STATE(6029), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(4950), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 29, + ACTIONS(4952), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -508826,8 +514901,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, @@ -508842,15 +514920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [173715] = 5, + [177219] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4866), 1, + STATE(4929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -508860,10 +514938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 32, - sym__start_of_brace_block, + ACTIONS(4912), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -508874,6 +514951,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, @@ -508892,89 +514970,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [173771] = 8, + anon_sym_then, + [177275] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1863), 1, - anon_sym_COLON, - ACTIONS(7267), 1, - anon_sym_COLON_COLON, - STATE(4166), 1, - aux_sym_constant_repeat1, - STATE(4867), 1, + ACTIONS(7772), 1, + sym_identifier, + ACTIONS(7774), 1, + anon_sym_LBRACK, + ACTIONS(7782), 1, + sym_instance_var, + STATE(96), 1, + sym__operator_token, + STATE(3167), 1, + sym__implicit_method_call_chainable, + STATE(3241), 1, + sym__implicit_ivar_call, + STATE(3295), 1, + sym__implicit_index_call, + STATE(3479), 1, + sym__implicit_method_call_unchainable, + STATE(4930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7780), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7776), 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(4857), 30, - 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, + ACTIONS(7778), 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_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [173833] = 14, + [177349] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7802), 1, + ACTIONS(7784), 1, sym_identifier, - ACTIONS(7804), 1, + ACTIONS(7786), 1, anon_sym_LBRACK, - ACTIONS(7808), 1, + ACTIONS(7794), 1, sym_instance_var, - STATE(98), 1, + STATE(121), 1, sym__operator_token, - STATE(3287), 1, + STATE(4409), 1, sym__implicit_method_call_chainable, - STATE(3288), 1, - sym__implicit_method_call_unchainable, - STATE(3296), 1, + STATE(4418), 1, sym__implicit_ivar_call, - STATE(3297), 1, + STATE(4421), 1, sym__implicit_index_call, - STATE(4868), 1, + STATE(4728), 1, + sym__implicit_method_call_unchainable, + STATE(4931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7806), 2, + ACTIONS(7792), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7695), 10, + ACTIONS(7788), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -508985,7 +515069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7697), 21, + ACTIONS(7790), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -509007,23 +515091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [173907] = 9, + [177423] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, - STATE(4869), 1, + ACTIONS(3267), 1, + sym__string_literal_start, + STATE(4932), 1, sym_heredoc_body, - STATE(6030), 1, - sym_do_end_block, - STATE(6034), 1, - sym_brace_block, + STATE(4933), 1, + aux_sym_chained_string_repeat1, + STATE(5224), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(195), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -509032,8 +515115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 29, - sym__line_break, + ACTIONS(173), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -509045,7 +515128,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, @@ -509059,26 +515141,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_then, - [173971] = 9, + anon_sym_do, + [177485] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2879), 1, + ACTIONS(3267), 1, sym__string_literal_start, - ACTIONS(7810), 1, - anon_sym_COLON, - STATE(4870), 1, + STATE(4933), 1, sym_heredoc_body, - STATE(5095), 1, + STATE(4934), 1, aux_sym_chained_string_repeat1, - STATE(5486), 1, + STATE(5224), 1, sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5688), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -509087,8 +515169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, - sym__line_break, + ACTIONS(5686), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -509100,7 +515182,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, @@ -509114,31 +515195,36 @@ static const uint16_t ts_small_parse_table[] = { 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, - [174035] = 5, + anon_sym_do, + [177547] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4871), 1, - sym_heredoc_body, + ACTIONS(7796), 1, + sym__string_literal_start, + STATE(5224), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + STATE(4934), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 32, + 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, @@ -509149,11 +515235,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, @@ -509165,37 +515248,38 @@ static const uint16_t ts_small_parse_table[] = { 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, - [174091] = 14, + [177607] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7812), 1, + ACTIONS(7799), 1, sym_identifier, - ACTIONS(7814), 1, + ACTIONS(7801), 1, anon_sym_LBRACK, - ACTIONS(7818), 1, + ACTIONS(7809), 1, sym_instance_var, - STATE(88), 1, + STATE(254), 1, sym__operator_token, - STATE(2668), 1, + STATE(4935), 1, + sym_heredoc_body, + STATE(5893), 1, sym__implicit_method_call_chainable, - STATE(2673), 1, - sym__implicit_method_call_unchainable, - STATE(2682), 1, + STATE(5894), 1, sym__implicit_ivar_call, - STATE(2683), 1, + STATE(5895), 1, sym__implicit_index_call, - STATE(4872), 1, - sym_heredoc_body, + STATE(6344), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7816), 2, + ACTIONS(7807), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7714), 10, + ACTIONS(7803), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -509206,7 +515290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7716), 21, + ACTIONS(7805), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -509228,142 +515312,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [174165] = 11, + [177681] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, - anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7534), 1, - anon_sym_QMARK, - ACTIONS(7677), 1, - anon_sym_PIPE, - STATE(4846), 1, - aux_sym_union_type_repeat1, - STATE(4873), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4934), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4936), 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_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, - [174233] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4874), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4938), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4940), 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, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [174289] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7820), 1, + ACTIONS(7811), 1, sym_identifier, - ACTIONS(7822), 1, + ACTIONS(7813), 1, anon_sym_LBRACK, - ACTIONS(7830), 1, + ACTIONS(7817), 1, sym_instance_var, - STATE(676), 1, + STATE(266), 1, sym__operator_token, - STATE(4875), 1, + STATE(4936), 1, sym_heredoc_body, - STATE(9493), 1, + STATE(5722), 1, sym__implicit_method_call_chainable, - STATE(9524), 1, + STATE(5734), 1, sym__implicit_ivar_call, - STATE(9631), 1, + STATE(5758), 1, sym__implicit_index_call, - STATE(10487), 1, + STATE(5869), 1, sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7828), 2, + ACTIONS(7815), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7824), 10, + ACTIONS(7740), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -509374,7 +515350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7826), 21, + ACTIONS(7742), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -509396,25 +515372,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [174363] = 5, + [177755] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4876), 1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + STATE(4937), 1, sym_heredoc_body, + STATE(5838), 1, + sym_do_end_block, + STATE(5840), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 32, + ACTIONS(5729), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -509428,233 +515411,101 @@ 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, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [174419] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4877), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4962), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4964), 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, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [174475] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7710), 1, - sym_identifier, - ACTIONS(7712), 1, - anon_sym_LBRACK, - ACTIONS(7720), 1, - sym_instance_var, - STATE(89), 1, - sym__operator_token, - STATE(3087), 1, - sym__implicit_method_call_chainable, - STATE(3088), 1, - sym__implicit_method_call_unchainable, - STATE(3090), 1, - sym__implicit_ivar_call, - STATE(3091), 1, - sym__implicit_index_call, - STATE(4878), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7718), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7714), 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(7716), 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, - [174549] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, + anon_sym_LT_EQ_GT, + anon_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(7744), 1, anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, - anon_sym_QMARK, - STATE(4879), 1, + anon_sym_then, + [177819] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(4859), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(4861), 32, + 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(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6205), 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, - [174641] = 14, + 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_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [177875] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7691), 1, - sym_identifier, - ACTIONS(7693), 1, + ACTIONS(7750), 1, anon_sym_LBRACK, - ACTIONS(7701), 1, + ACTIONS(7758), 1, sym_instance_var, - STATE(111), 1, + ACTIONS(7819), 1, + sym_identifier, + STATE(300), 1, sym__operator_token, - STATE(4137), 1, + STATE(4023), 1, sym__implicit_method_call_chainable, - STATE(4138), 1, - sym__implicit_method_call_unchainable, - STATE(4139), 1, + STATE(4024), 1, sym__implicit_ivar_call, - STATE(4140), 1, + STATE(4025), 1, sym__implicit_index_call, - STATE(4880), 1, + STATE(4578), 1, + sym__implicit_method_call_unchainable, + STATE(4939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7699), 2, + ACTIONS(7821), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7695), 10, + ACTIONS(7752), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -509665,7 +515516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7697), 21, + ACTIONS(7754), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -509687,34 +515538,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [174715] = 9, + [177949] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, - STATE(4881), 1, + STATE(4940), 1, sym_heredoc_body, - STATE(6038), 1, - sym_do_end_block, - STATE(6050), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 29, - sym__line_break, + ACTIONS(4902), 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, @@ -509725,9 +515570,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, @@ -509741,16 +515588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [174779] = 5, + anon_sym_do, + [178005] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4882), 1, + STATE(4941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -509760,7 +515607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 32, + ACTIONS(4976), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -509793,15 +515640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [174835] = 5, + [178061] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4883), 1, + STATE(4942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(4906), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -509811,7 +515658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 32, + ACTIONS(4908), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -509844,34 +515691,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [174891] = 14, + [178117] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7667), 1, + ACTIONS(7823), 1, + sym_identifier, + ACTIONS(7825), 1, anon_sym_LBRACK, - ACTIONS(7675), 1, + ACTIONS(7829), 1, sym_instance_var, - ACTIONS(7838), 1, - sym_identifier, - STATE(116), 1, + STATE(108), 1, sym__operator_token, - STATE(3765), 1, + STATE(3755), 1, sym__implicit_method_call_chainable, - STATE(3766), 1, - sym__implicit_method_call_unchainable, - STATE(3767), 1, + STATE(3756), 1, sym__implicit_ivar_call, - STATE(3768), 1, + STATE(3757), 1, sym__implicit_index_call, - STATE(4884), 1, + STATE(4086), 1, + sym__implicit_method_call_unchainable, + STATE(4943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7840), 2, + ACTIONS(7827), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7788), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -509882,7 +515729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7790), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -509904,35 +515751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [174965] = 11, + [178191] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, - anon_sym_DOT, - ACTIONS(7530), 1, - anon_sym_STAR, - ACTIONS(7534), 1, - anon_sym_QMARK, - ACTIONS(7677), 1, - anon_sym_PIPE, - STATE(4846), 1, - aux_sym_union_type_repeat1, - STATE(4885), 1, + STATE(4944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(4954), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 28, + ACTIONS(4956), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -509946,8 +515783,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, @@ -509958,219 +515798,144 @@ 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, - [175033] = 23, + [178247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, - anon_sym_QMARK, - STATE(4886), 1, + STATE(4945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(4958), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(4960), 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(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6863), 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, - [175125] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7712), 1, anon_sym_LBRACK, - ACTIONS(7720), 1, - sym_instance_var, - ACTIONS(7842), 1, - sym_identifier, - STATE(82), 1, - sym__operator_token, - STATE(2909), 1, - sym__implicit_method_call_chainable, - STATE(2910), 1, - sym__implicit_method_call_unchainable, - STATE(2911), 1, - sym__implicit_ivar_call, - STATE(2914), 1, - sym__implicit_index_call, - STATE(4887), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7844), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7714), 10, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, 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(7716), 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, - [175199] = 14, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [178303] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7681), 1, - anon_sym_LBRACK, - ACTIONS(7689), 1, - sym_instance_var, - ACTIONS(7760), 1, - sym_identifier, - STATE(332), 1, - sym__operator_token, - STATE(4888), 1, + STATE(4946), 1, sym_heredoc_body, - STATE(6672), 1, - sym__implicit_ivar_call, - STATE(6684), 1, - sym__implicit_index_call, - STATE(6786), 1, - sym__implicit_method_call_chainable, - STATE(6795), 1, - sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7762), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7683), 10, + ACTIONS(4962), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7685), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(4964), 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_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, - [175273] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [178359] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4889), 1, + ACTIONS(7552), 1, + anon_sym_LBRACK, + ACTIONS(7554), 1, + anon_sym_DOT, + ACTIONS(7556), 1, + anon_sym_STAR, + ACTIONS(7560), 1, + anon_sym_QMARK, + ACTIONS(7831), 1, + anon_sym_PIPE, + STATE(4947), 1, sym_heredoc_body, + STATE(4974), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(4970), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 32, - sym__line_break, + ACTIONS(4972), 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, @@ -510181,12 +515946,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, @@ -510197,31 +515958,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_then, - [175329] = 6, + anon_sym_do, + [178427] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(731), 1, - anon_sym_EQ, - STATE(4890), 1, + STATE(4948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 32, + ACTIONS(4916), 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, @@ -510232,11 +515993,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_EQ_GT, + 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, @@ -510250,21 +516011,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, - [175387] = 6, + anon_sym_do, + [178483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7846), 1, - anon_sym_LPAREN2, - STATE(4891), 1, + STATE(4949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 10, - anon_sym_RBRACK, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -510274,8 +516030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 30, + ACTIONS(4968), 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, @@ -510302,91 +516060,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, - [175445] = 14, + anon_sym_do, + [178539] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7776), 1, - sym_identifier, - ACTIONS(7778), 1, - anon_sym_LBRACK, - ACTIONS(7786), 1, - sym_instance_var, - STATE(255), 1, - sym__operator_token, - STATE(4892), 1, + STATE(4950), 1, sym_heredoc_body, - STATE(5292), 1, - sym__implicit_method_call_chainable, - STATE(5293), 1, - sym__implicit_method_call_unchainable, - STATE(5294), 1, - sym__implicit_ivar_call, - STATE(5295), 1, - sym__implicit_index_call, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7784), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7780), 10, + ACTIONS(4918), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7782), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(4920), 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_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, - [175519] = 11, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [178595] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, + ACTIONS(7552), 1, anon_sym_LBRACK, - ACTIONS(7850), 1, + ACTIONS(7554), 1, anon_sym_DOT, - ACTIONS(7852), 1, + ACTIONS(7556), 1, anon_sym_STAR, - ACTIONS(7854), 1, - anon_sym_PIPE, - ACTIONS(7856), 1, + ACTIONS(7560), 1, anon_sym_QMARK, - STATE(4893), 1, + ACTIONS(7831), 1, + anon_sym_PIPE, + STATE(4951), 1, sym_heredoc_body, - STATE(4902), 1, + STATE(4974), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 8, - anon_sym_RBRACK, + ACTIONS(4922), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -510394,8 +516142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 27, + ACTIONS(4924), 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, @@ -510408,7 +516158,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, @@ -510419,30 +516168,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_AMP_AMP, anon_sym_PIPE_PIPE, - [175587] = 6, + anon_sym_do, + [178663] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7858), 1, - anon_sym_EQ, - STATE(4894), 1, + STATE(4952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 32, + ACTIONS(4928), 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, @@ -510453,11 +516203,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_EQ_GT, + 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, @@ -510471,18 +516221,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, - [175645] = 5, + anon_sym_do, + [178719] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4895), 1, + STATE(4953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -510492,9 +516240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 32, - sym__line_break, + ACTIONS(4932), 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, @@ -510505,7 +516254,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, @@ -510524,16 +516272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [175701] = 5, + anon_sym_do, + [178775] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4896), 1, + STATE(4954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -510543,7 +516291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 32, + ACTIONS(4936), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -510576,34 +516324,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [175757] = 14, + [178831] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7752), 1, + ACTIONS(7833), 1, sym_identifier, - ACTIONS(7754), 1, + ACTIONS(7835), 1, anon_sym_LBRACK, - ACTIONS(7758), 1, + ACTIONS(7839), 1, sym_instance_var, - STATE(312), 1, + STATE(261), 1, sym__operator_token, - STATE(4897), 1, + STATE(4955), 1, sym_heredoc_body, - STATE(5841), 1, - sym__implicit_ivar_call, - STATE(6007), 1, + STATE(5244), 1, sym__implicit_method_call_chainable, - STATE(6060), 1, + STATE(5245), 1, + sym__implicit_ivar_call, + STATE(5248), 1, + sym__implicit_index_call, + STATE(5551), 1, sym__implicit_method_call_unchainable, - STATE(6097), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7837), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7803), 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(7805), 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, + [178905] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7841), 1, + sym_identifier, + ACTIONS(7843), 1, + anon_sym_LBRACK, + ACTIONS(7847), 1, + sym_instance_var, + STATE(276), 1, + sym__operator_token, + STATE(3423), 1, + sym__implicit_method_call_chainable, + STATE(3430), 1, + sym__implicit_ivar_call, + STATE(3556), 1, sym__implicit_index_call, + STATE(3596), 1, + sym__implicit_method_call_unchainable, + STATE(4956), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7756), 2, + ACTIONS(7845), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7683), 10, + ACTIONS(7752), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -510614,7 +516422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7685), 21, + ACTIONS(7754), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -510636,28 +516444,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [175831] = 7, + [178979] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - STATE(4898), 1, + ACTIONS(1857), 1, + anon_sym_COLON, + ACTIONS(7271), 1, + anon_sym_COLON_COLON, + STATE(3990), 1, + aux_sym_constant_repeat1, + STATE(4957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(4855), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 32, + ACTIONS(4857), 30, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -510667,15 +516479,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, @@ -510686,96 +516493,88 @@ 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, - [175891] = 21, + anon_sym_then, + [179041] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - STATE(4899), 1, + ACTIONS(2881), 1, + sym__string_literal_start, + ACTIONS(7849), 1, + anon_sym_COLON, + STATE(4958), 1, sym_heredoc_body, + STATE(5139), 1, + aux_sym_chained_string_repeat1, + STATE(5833), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(195), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(173), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 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_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, - [175979] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [179105] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4900), 1, + ACTIONS(7851), 1, + anon_sym_LPAREN2, + STATE(4959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(4900), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 33, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4902), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -510787,10 +516586,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, @@ -510801,35 +516601,41 @@ 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, - [176035] = 8, + [179163] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7445), 1, - sym__start_of_index_operator, - ACTIONS(7860), 1, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, anon_sym_DOT, - STATE(4316), 1, - sym__implicit_index_operator, - STATE(4901), 1, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7859), 1, + anon_sym_PIPE, + ACTIONS(7861), 1, + anon_sym_QMARK, + STATE(4960), 1, sym_heredoc_body, + STATE(4965), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(4859), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 31, + ACTIONS(4861), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -510840,11 +516646,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, @@ -510855,35 +516659,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_else, - anon_sym_when, - anon_sym_in, - [176097] = 7, + [179231] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7854), 1, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, + anon_sym_DOT, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7859), 1, anon_sym_PIPE, - STATE(4902), 1, + ACTIONS(7861), 1, + anon_sym_QMARK, + STATE(4961), 1, sym_heredoc_body, - STATE(4905), 1, + STATE(4965), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 9, + ACTIONS(4896), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 30, + ACTIONS(4898), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -510895,11 +516703,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, @@ -510910,107 +516716,146 @@ 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, - [176157] = 23, + [179299] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, anon_sym_DOT, - ACTIONS(7726), 1, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7859), 1, anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, + ACTIONS(7861), 1, anon_sym_QMARK, - STATE(4903), 1, + STATE(4962), 1, sym_heredoc_body, + STATE(4965), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, + ACTIONS(4877), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4879), 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_DASH_GT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7736), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [179367] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4963), 1, + sym_heredoc_body, + STATE(4965), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4873), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(4875), 30, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6872), 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, - [176249] = 14, + 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, + [179425] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7764), 1, + ACTIONS(7863), 1, sym_identifier, - ACTIONS(7766), 1, + ACTIONS(7865), 1, anon_sym_LBRACK, - ACTIONS(7774), 1, + ACTIONS(7873), 1, sym_instance_var, - STATE(674), 1, + STATE(89), 1, sym__operator_token, - STATE(4904), 1, - sym_heredoc_body, - STATE(9381), 1, + STATE(2791), 1, sym__implicit_method_call_chainable, - STATE(9417), 1, + STATE(2793), 1, sym__implicit_ivar_call, - STATE(9422), 1, + STATE(2841), 1, sym__implicit_index_call, - STATE(9702), 1, + STATE(3154), 1, sym__implicit_method_call_unchainable, + STATE(4964), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7772), 2, + ACTIONS(7871), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7768), 10, + ACTIONS(7867), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -511021,7 +516866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7770), 21, + ACTIONS(7869), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -511043,15 +516888,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [176323] = 6, + [179499] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7859), 1, + anon_sym_PIPE, + STATE(4965), 1, + sym_heredoc_body, + STATE(4966), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4881), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4883), 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_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, + [179559] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7862), 1, + ACTIONS(7875), 1, anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4905), 2, + STATE(4966), 2, sym_heredoc_body, aux_sym_union_type_repeat1, ACTIONS(4873), 9, @@ -511095,230 +516993,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [176381] = 23, + [179617] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, anon_sym_DOT, - ACTIONS(7726), 1, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7859), 1, anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, + ACTIONS(7861), 1, anon_sym_QMARK, - STATE(4906), 1, + STATE(4965), 1, + aux_sym_union_type_repeat1, + STATE(4967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(4888), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(4890), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6884), 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, - [176473] = 23, + 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, + [179685] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, anon_sym_DOT, - ACTIONS(7726), 1, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7859), 1, anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, + ACTIONS(7861), 1, anon_sym_QMARK, - STATE(4907), 1, + STATE(4965), 1, + aux_sym_union_type_repeat1, + STATE(4968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(4892), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(4894), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6753), 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, - [176565] = 14, + 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, + [179753] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7820), 1, - sym_identifier, - ACTIONS(7822), 1, - anon_sym_LBRACK, - ACTIONS(7830), 1, - sym_instance_var, - STATE(676), 1, - sym__operator_token, - STATE(4908), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(7878), 1, + anon_sym_DASH_GT, + STATE(4969), 1, sym_heredoc_body, - STATE(9500), 1, - sym__implicit_ivar_call, - STATE(9576), 1, - sym__implicit_index_call, - STATE(9639), 1, - sym__implicit_method_call_chainable, - STATE(10322), 1, - sym__implicit_method_call_unchainable, + STATE(10075), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7828), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7824), 10, + ACTIONS(5020), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7826), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5022), 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_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, - [176639] = 8, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [179815] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3267), 1, - sym__string_literal_start, - STATE(4909), 1, + ACTIONS(7880), 1, + anon_sym_PIPE, + STATE(4881), 1, + aux_sym_union_type_repeat1, + STATE(4970), 1, sym_heredoc_body, - STATE(4957), 1, - aux_sym_chained_string_repeat1, - STATE(5384), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, - anon_sym_RBRACK, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, - sym__start_of_brace_block, + ACTIONS(4883), 31, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -511330,8 +517195,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_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -511343,32 +517211,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, - [176701] = 7, + anon_sym_then, + [179875] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, + ACTIONS(7642), 1, + anon_sym_LBRACK, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4910), 1, + ACTIONS(7646), 1, + anon_sym_STAR, + ACTIONS(7650), 1, + anon_sym_QMARK, + ACTIONS(7880), 1, + anon_sym_PIPE, + STATE(4970), 1, + aux_sym_union_type_repeat1, + STATE(4971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 32, + ACTIONS(4890), 28, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -511378,15 +517254,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, @@ -511397,31 +517268,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, - [176761] = 7, + anon_sym_then, + [179943] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, + ACTIONS(7642), 1, + anon_sym_LBRACK, + ACTIONS(7644), 1, anon_sym_DOT, - STATE(4911), 1, + ACTIONS(7646), 1, + anon_sym_STAR, + ACTIONS(7650), 1, + anon_sym_QMARK, + ACTIONS(7880), 1, + anon_sym_PIPE, + STATE(4970), 1, + aux_sym_union_type_repeat1, + STATE(4972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(4892), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 32, + ACTIONS(4894), 28, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -511431,15 +517311,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, @@ -511450,91 +517325,85 @@ 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, - [176821] = 14, + anon_sym_then, + [180011] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7802), 1, - sym_identifier, - ACTIONS(7804), 1, - anon_sym_LBRACK, - ACTIONS(7808), 1, - sym_instance_var, - STATE(98), 1, - sym__operator_token, - STATE(3355), 1, - sym__implicit_method_call_chainable, - STATE(3360), 1, - sym__implicit_method_call_unchainable, - STATE(3367), 1, - sym__implicit_ivar_call, - STATE(3372), 1, - sym__implicit_index_call, - STATE(4912), 1, + STATE(4973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7806), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7695), 10, + ACTIONS(4934), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7697), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(4936), 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_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, - [176895] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [180067] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4913), 1, + ACTIONS(7831), 1, + anon_sym_PIPE, + STATE(4974), 1, sym_heredoc_body, + STATE(4975), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 32, - sym__line_break, + ACTIONS(4883), 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, @@ -511545,10 +517414,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, anon_sym_LT_LT, @@ -511563,89 +517432,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [176951] = 14, + [180127] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7822), 1, - anon_sym_LBRACK, - ACTIONS(7830), 1, - sym_instance_var, - ACTIONS(7865), 1, - sym_identifier, - STATE(675), 1, - sym__operator_token, - STATE(4914), 1, - sym_heredoc_body, - STATE(9500), 1, - sym__implicit_ivar_call, - STATE(9576), 1, - sym__implicit_index_call, - STATE(9639), 1, - sym__implicit_method_call_chainable, - STATE(10322), 1, - sym__implicit_method_call_unchainable, + ACTIONS(7882), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7867), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7824), 10, + STATE(4975), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7826), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(4875), 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, + 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_STAR, 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, - [177025] = 11, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [180185] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, + ACTIONS(7552), 1, anon_sym_LBRACK, - ACTIONS(7850), 1, + ACTIONS(7554), 1, anon_sym_DOT, - ACTIONS(7852), 1, + ACTIONS(7556), 1, anon_sym_STAR, - ACTIONS(7854), 1, - anon_sym_PIPE, - ACTIONS(7856), 1, + ACTIONS(7560), 1, anon_sym_QMARK, - STATE(4902), 1, + ACTIONS(7831), 1, + anon_sym_PIPE, + STATE(4974), 1, aux_sym_union_type_repeat1, - STATE(4915), 1, + STATE(4976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 8, - anon_sym_RBRACK, + ACTIONS(4888), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -511653,8 +517512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 27, + ACTIONS(4890), 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, @@ -511667,7 +517528,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, @@ -511678,31 +517538,30 @@ 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, - [177093] = 11, + anon_sym_do, + [180253] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, + ACTIONS(7552), 1, anon_sym_LBRACK, - ACTIONS(7850), 1, + ACTIONS(7554), 1, anon_sym_DOT, - ACTIONS(7852), 1, + ACTIONS(7556), 1, anon_sym_STAR, - ACTIONS(7854), 1, - anon_sym_PIPE, - ACTIONS(7856), 1, + ACTIONS(7560), 1, anon_sym_QMARK, - STATE(4902), 1, + ACTIONS(7831), 1, + anon_sym_PIPE, + STATE(4974), 1, aux_sym_union_type_repeat1, - STATE(4916), 1, + STATE(4977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 8, - anon_sym_RBRACK, + ACTIONS(4892), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -511710,8 +517569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 27, + ACTIONS(4894), 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, @@ -511724,7 +517585,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, @@ -511735,37 +517595,37 @@ 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, - [177161] = 14, + anon_sym_do, + [180321] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7885), 1, sym_identifier, - ACTIONS(7871), 1, + ACTIONS(7887), 1, anon_sym_LBRACK, - ACTIONS(7875), 1, + ACTIONS(7895), 1, sym_instance_var, - STATE(144), 1, + STATE(671), 1, sym__operator_token, - STATE(4611), 1, + STATE(4978), 1, + sym_heredoc_body, + STATE(9217), 1, sym__implicit_method_call_chainable, - STATE(4612), 1, - sym__implicit_method_call_unchainable, - STATE(4613), 1, + STATE(9223), 1, sym__implicit_ivar_call, - STATE(4614), 1, + STATE(9224), 1, sym__implicit_index_call, - STATE(4917), 1, - sym_heredoc_body, + STATE(9766), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7873), 2, + ACTIONS(7893), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7792), 10, + ACTIONS(7889), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -511776,7 +517636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7794), 21, + ACTIONS(7891), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -511798,33 +517658,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [177235] = 8, + [180395] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(7877), 1, - anon_sym_DASH_GT, - STATE(4918), 1, + ACTIONS(865), 1, + sym__start_of_brace_block, + ACTIONS(7680), 1, + anon_sym_do, + STATE(4979), 1, sym_heredoc_body, - STATE(10682), 1, - aux_sym_proc_type_repeat1, + STATE(5075), 1, + sym_do_end_block, + STATE(5076), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 10, - anon_sym_RBRACK, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 28, - sym__start_of_brace_block, + ACTIONS(5729), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -511836,6 +517696,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, @@ -511848,32 +517710,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, - [177297] = 11, + anon_sym_then, + [180459] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, + ACTIONS(7642), 1, anon_sym_LBRACK, - ACTIONS(7850), 1, + ACTIONS(7644), 1, anon_sym_DOT, - ACTIONS(7852), 1, + ACTIONS(7646), 1, anon_sym_STAR, - ACTIONS(7854), 1, - anon_sym_PIPE, - ACTIONS(7856), 1, + ACTIONS(7650), 1, anon_sym_QMARK, - STATE(4902), 1, + ACTIONS(7880), 1, + anon_sym_PIPE, + STATE(4970), 1, aux_sym_union_type_repeat1, - STATE(4919), 1, + STATE(4980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 8, - anon_sym_RBRACK, + ACTIONS(4896), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -511881,7 +517741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 27, + ACTIONS(4898), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -511893,9 +517754,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, @@ -511906,18 +517767,20 @@ 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, - [177365] = 5, + anon_sym_then, + [180527] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4920), 1, + STATE(4970), 1, + aux_sym_union_type_repeat1, + STATE(4981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -511927,7 +517790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 32, + ACTIONS(4875), 31, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -511944,7 +517807,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, @@ -511960,15 +517822,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [177421] = 5, + [180585] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4921), 1, + ACTIONS(945), 1, + sym__start_of_brace_block, + ACTIONS(7897), 1, + anon_sym_do, + STATE(4982), 1, sym_heredoc_body, + STATE(5261), 1, + sym_do_end_block, + STATE(5262), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(5671), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -511978,8 +517849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 32, - sym__line_break, + ACTIONS(5669), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -511991,12 +517861,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, @@ -512008,35 +517874,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_then, - [177477] = 7, + [180649] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7879), 1, - sym__string_literal_start, - STATE(5384), 1, - sym_string, + ACTIONS(7552), 1, + anon_sym_LBRACK, + ACTIONS(7554), 1, + anon_sym_DOT, + ACTIONS(7556), 1, + anon_sym_STAR, + ACTIONS(7560), 1, + anon_sym_QMARK, + ACTIONS(7831), 1, + anon_sym_PIPE, + STATE(4974), 1, + aux_sym_union_type_repeat1, + STATE(4983), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4922), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 9, - anon_sym_RBRACK, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 29, + ACTIONS(4898), 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, @@ -512059,42 +517931,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [177537] = 11, + [180717] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, - anon_sym_LBRACK, - ACTIONS(7850), 1, - anon_sym_DOT, - ACTIONS(7852), 1, - anon_sym_STAR, - ACTIONS(7854), 1, - anon_sym_PIPE, - ACTIONS(7856), 1, - anon_sym_QMARK, - STATE(4902), 1, + STATE(4974), 1, aux_sym_union_type_repeat1, - STATE(4923), 1, + STATE(4984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 8, - anon_sym_RBRACK, + ACTIONS(4873), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 27, + ACTIONS(4875), 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, @@ -512105,9 +517968,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_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -512118,37 +517982,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, - [177605] = 14, + anon_sym_do, + [180775] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7667), 1, + ACTIONS(7748), 1, + sym_identifier, + ACTIONS(7750), 1, anon_sym_LBRACK, - ACTIONS(7675), 1, + ACTIONS(7758), 1, sym_instance_var, - ACTIONS(7838), 1, - sym_identifier, - STATE(116), 1, + STATE(113), 1, sym__operator_token, - STATE(3774), 1, + STATE(4009), 1, sym__implicit_method_call_chainable, - STATE(3775), 1, - sym__implicit_method_call_unchainable, - STATE(3776), 1, + STATE(4010), 1, sym__implicit_ivar_call, - STATE(3777), 1, + STATE(4011), 1, sym__implicit_index_call, - STATE(4924), 1, + STATE(4538), 1, + sym__implicit_method_call_unchainable, + STATE(4985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7840), 2, + ACTIONS(7756), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7752), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -512159,7 +518024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7754), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -512181,34 +518046,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [177679] = 14, + [180849] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7882), 1, + ACTIONS(7899), 1, sym_identifier, - ACTIONS(7884), 1, + ACTIONS(7901), 1, anon_sym_LBRACK, - ACTIONS(7892), 1, + ACTIONS(7905), 1, sym_instance_var, - STATE(262), 1, + STATE(80), 1, sym__operator_token, - STATE(4925), 1, - sym_heredoc_body, - STATE(6342), 1, - sym__implicit_index_call, - STATE(6645), 1, + STATE(2491), 1, sym__implicit_method_call_chainable, - STATE(6646), 1, - sym__implicit_method_call_unchainable, - STATE(6647), 1, + STATE(2537), 1, + sym__implicit_index_call, + STATE(2559), 1, sym__implicit_ivar_call, + STATE(2697), 1, + sym__implicit_method_call_unchainable, + STATE(4986), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7890), 2, + ACTIONS(7903), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7886), 10, + ACTIONS(7867), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -512219,7 +518084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7888), 21, + ACTIONS(7869), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -512241,34 +518106,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [177753] = 14, + [180923] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7894), 1, + ACTIONS(7811), 1, sym_identifier, - ACTIONS(7896), 1, + ACTIONS(7813), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7817), 1, sym_instance_var, - STATE(322), 1, + STATE(266), 1, sym__operator_token, - STATE(4297), 1, + STATE(4987), 1, + sym_heredoc_body, + STATE(5630), 1, sym__implicit_method_call_chainable, - STATE(4299), 1, - sym__implicit_method_call_unchainable, - STATE(4302), 1, + STATE(5631), 1, sym__implicit_ivar_call, - STATE(4310), 1, + STATE(5633), 1, sym__implicit_index_call, - STATE(4926), 1, - sym_heredoc_body, + STATE(6160), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7898), 2, + ACTIONS(7815), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7740), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -512279,7 +518144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7742), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -512301,34 +518166,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [177827] = 14, + [180997] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7788), 1, + ACTIONS(7907), 1, sym_identifier, - ACTIONS(7790), 1, + ACTIONS(7909), 1, anon_sym_LBRACK, - ACTIONS(7798), 1, + ACTIONS(7913), 1, sym_instance_var, - STATE(129), 1, + STATE(307), 1, sym__operator_token, - STATE(4256), 1, + STATE(4988), 1, + sym_heredoc_body, + STATE(6357), 1, sym__implicit_method_call_chainable, - STATE(4258), 1, - sym__implicit_method_call_unchainable, - STATE(4259), 1, + STATE(6358), 1, sym__implicit_ivar_call, - STATE(4260), 1, + STATE(6359), 1, sym__implicit_index_call, - STATE(4927), 1, - sym_heredoc_body, + STATE(6842), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7796), 2, + ACTIONS(7911), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7792), 10, + ACTIONS(7764), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -512339,7 +518204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7794), 21, + ACTIONS(7766), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -512361,347 +518226,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [177901] = 5, + [181071] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4928), 1, + ACTIONS(7899), 1, + sym_identifier, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7905), 1, + sym_instance_var, + STATE(80), 1, + sym__operator_token, + STATE(2527), 1, + sym__implicit_index_call, + STATE(2539), 1, + sym__implicit_ivar_call, + STATE(2571), 1, + sym__implicit_method_call_chainable, + STATE(2757), 1, + sym__implicit_method_call_unchainable, + STATE(4989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7903), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7867), 10, anon_sym_LT, - anon_sym_EQ, - 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(4928), 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, + ACTIONS(7869), 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, - anon_sym_then, - [177957] = 5, + [181145] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4929), 1, + ACTIONS(7915), 1, + sym_identifier, + ACTIONS(7917), 1, + anon_sym_LBRACK, + ACTIONS(7925), 1, + sym_instance_var, + STATE(676), 1, + sym__operator_token, + STATE(4990), 1, sym_heredoc_body, + STATE(9449), 1, + sym__implicit_ivar_call, + STATE(9478), 1, + sym__implicit_index_call, + STATE(9505), 1, + sym__implicit_method_call_chainable, + STATE(10274), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7923), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7919), 10, anon_sym_LT, - anon_sym_EQ, - 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(4908), 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, + ACTIONS(7921), 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, - anon_sym_then, - [178013] = 5, + [181219] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4930), 1, + ACTIONS(7927), 1, + sym_identifier, + ACTIONS(7929), 1, + anon_sym_LBRACK, + ACTIONS(7933), 1, + sym_instance_var, + STATE(97), 1, + sym__operator_token, + STATE(3783), 1, + sym__implicit_method_call_chainable, + STATE(3784), 1, + sym__implicit_ivar_call, + STATE(3785), 1, + sym__implicit_index_call, + STATE(4161), 1, + sym__implicit_method_call_unchainable, + STATE(4991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7931), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7776), 10, anon_sym_LT, - anon_sym_EQ, - 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(4932), 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, + ACTIONS(7778), 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, - anon_sym_then, - [178069] = 11, + [181293] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7606), 1, + ACTIONS(7843), 1, anon_sym_LBRACK, - ACTIONS(7608), 1, - anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7614), 1, - anon_sym_QMARK, - ACTIONS(7902), 1, - anon_sym_PIPE, - STATE(4931), 1, + ACTIONS(7847), 1, + sym_instance_var, + ACTIONS(7935), 1, + sym_identifier, + STATE(111), 1, + sym__operator_token, + STATE(3469), 1, + sym__implicit_ivar_call, + STATE(3484), 1, + sym__implicit_index_call, + STATE(3559), 1, + sym__implicit_method_call_chainable, + STATE(3882), 1, + sym__implicit_method_call_unchainable, + STATE(4992), 1, sym_heredoc_body, - STATE(4948), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, - anon_sym_DOT_DOT, + ACTIONS(7937), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7752), 10, anon_sym_LT, - anon_sym_EQ, + 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(4936), 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, + ACTIONS(7754), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [178137] = 5, + [181367] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4932), 1, + ACTIONS(7736), 1, + sym_identifier, + ACTIONS(7738), 1, + anon_sym_LBRACK, + ACTIONS(7746), 1, + sym_instance_var, + STATE(227), 1, + sym__operator_token, + STATE(4993), 1, sym_heredoc_body, + STATE(5128), 1, + sym__implicit_method_call_chainable, + STATE(5131), 1, + sym__implicit_ivar_call, + STATE(5132), 1, + sym__implicit_index_call, + STATE(5243), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7744), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7740), 10, anon_sym_LT, - anon_sym_EQ, - 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(4940), 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, + ACTIONS(7742), 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, - anon_sym_then, - [178193] = 6, + [181441] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4902), 1, - aux_sym_union_type_repeat1, - STATE(4933), 1, + ACTIONS(7760), 1, + sym_identifier, + ACTIONS(7762), 1, + anon_sym_LBRACK, + ACTIONS(7770), 1, + sym_instance_var, + STATE(265), 1, + sym__operator_token, + STATE(4994), 1, sym_heredoc_body, + STATE(5515), 1, + sym__implicit_method_call_chainable, + STATE(5516), 1, + sym__implicit_ivar_call, + STATE(5522), 1, + sym__implicit_index_call, + STATE(6156), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 10, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7768), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7764), 10, anon_sym_LT, - anon_sym_EQ, - 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(4875), 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_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + ACTIONS(7766), 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, - [178251] = 14, + [181515] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7904), 1, + ACTIONS(7915), 1, sym_identifier, - ACTIONS(7906), 1, + ACTIONS(7917), 1, anon_sym_LBRACK, - ACTIONS(7910), 1, + ACTIONS(7925), 1, sym_instance_var, - STATE(260), 1, + STATE(676), 1, sym__operator_token, - STATE(4934), 1, + STATE(4995), 1, sym_heredoc_body, - STATE(5669), 1, - sym__implicit_method_call_chainable, - STATE(5677), 1, - sym__implicit_method_call_unchainable, - STATE(5678), 1, + STATE(9464), 1, sym__implicit_ivar_call, - STATE(5679), 1, + STATE(9466), 1, sym__implicit_index_call, + STATE(9558), 1, + sym__implicit_method_call_chainable, + STATE(10129), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7908), 2, + ACTIONS(7923), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7886), 10, + ACTIONS(7919), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -512712,7 +518624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7888), 21, + ACTIONS(7921), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -512734,34 +518646,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [178325] = 14, + [181589] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7871), 1, + ACTIONS(7772), 1, + sym_identifier, + ACTIONS(7774), 1, anon_sym_LBRACK, - ACTIONS(7875), 1, + ACTIONS(7782), 1, sym_instance_var, - ACTIONS(7912), 1, - sym_identifier, - STATE(136), 1, + STATE(96), 1, sym__operator_token, - STATE(4624), 1, + STATE(3164), 1, sym__implicit_method_call_chainable, - STATE(4625), 1, - sym__implicit_method_call_unchainable, - STATE(4626), 1, + STATE(3230), 1, sym__implicit_ivar_call, - STATE(4627), 1, + STATE(3231), 1, sym__implicit_index_call, - STATE(4935), 1, + STATE(3431), 1, + sym__implicit_method_call_unchainable, + STATE(4996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7914), 2, + ACTIONS(7780), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7792), 10, + ACTIONS(7776), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -512772,7 +518684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7794), 21, + ACTIONS(7778), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -512794,34 +518706,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [178399] = 14, + [181663] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7916), 1, + ACTIONS(7784), 1, sym_identifier, - ACTIONS(7918), 1, + ACTIONS(7786), 1, anon_sym_LBRACK, - ACTIONS(7922), 1, + ACTIONS(7794), 1, sym_instance_var, - STATE(302), 1, + STATE(121), 1, sym__operator_token, - STATE(4936), 1, - sym_heredoc_body, - STATE(6009), 1, + STATE(4373), 1, sym__implicit_method_call_chainable, - STATE(6010), 1, - sym__implicit_method_call_unchainable, - STATE(6011), 1, + STATE(4375), 1, sym__implicit_ivar_call, - STATE(6012), 1, + STATE(4376), 1, sym__implicit_index_call, + STATE(4695), 1, + sym__implicit_method_call_unchainable, + STATE(4997), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7920), 2, + ACTIONS(7792), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7780), 10, + ACTIONS(7788), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -512832,7 +518744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7782), 21, + ACTIONS(7790), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -512854,34 +518766,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [178473] = 14, + [181737] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7918), 1, + ACTIONS(7863), 1, + sym_identifier, + ACTIONS(7865), 1, anon_sym_LBRACK, - ACTIONS(7922), 1, + ACTIONS(7873), 1, sym_instance_var, - ACTIONS(7924), 1, - sym_identifier, - STATE(253), 1, + STATE(89), 1, sym__operator_token, - STATE(4937), 1, - sym_heredoc_body, - STATE(6009), 1, + STATE(2881), 1, sym__implicit_method_call_chainable, - STATE(6010), 1, - sym__implicit_method_call_unchainable, - STATE(6011), 1, + STATE(2883), 1, sym__implicit_ivar_call, - STATE(6012), 1, + STATE(2884), 1, sym__implicit_index_call, + STATE(3136), 1, + sym__implicit_method_call_unchainable, + STATE(4998), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7926), 2, + ACTIONS(7871), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7780), 10, + ACTIONS(7867), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -512892,7 +518804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7782), 21, + ACTIONS(7869), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -512914,152 +518826,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [178547] = 21, + [181811] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - STATE(4938), 1, + ACTIONS(7799), 1, + sym_identifier, + ACTIONS(7801), 1, + anon_sym_LBRACK, + ACTIONS(7809), 1, + sym_instance_var, + STATE(254), 1, + sym__operator_token, + STATE(4999), 1, sym_heredoc_body, + STATE(5883), 1, + sym__implicit_method_call_chainable, + STATE(5884), 1, + sym__implicit_ivar_call, + STATE(5885), 1, + sym__implicit_index_call, + STATE(6581), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, + ACTIONS(7807), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7803), 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(7805), 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(7736), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7740), 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(7724), 3, + [181885] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7885), 1, + sym_identifier, + ACTIONS(7887), 1, + anon_sym_LBRACK, + ACTIONS(7895), 1, + sym_instance_var, + STATE(671), 1, + sym__operator_token, + STATE(5000), 1, + sym_heredoc_body, + STATE(9229), 1, + sym__implicit_method_call_chainable, + STATE(9235), 1, + sym__implicit_ivar_call, + STATE(9238), 1, + sym__implicit_index_call, + STATE(9898), 1, + sym__implicit_method_call_unchainable, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7893), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7889), 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(7734), 4, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(7891), 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_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6332), 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, - [178635] = 5, + 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, + [181959] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4939), 1, + ACTIONS(7750), 1, + anon_sym_LBRACK, + ACTIONS(7758), 1, + sym_instance_var, + ACTIONS(7819), 1, + sym_identifier, + STATE(300), 1, + sym__operator_token, + STATE(4009), 1, + sym__implicit_method_call_chainable, + STATE(4010), 1, + sym__implicit_ivar_call, + STATE(4011), 1, + sym__implicit_index_call, + STATE(4538), 1, + sym__implicit_method_call_unchainable, + STATE(5001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7821), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7752), 10, anon_sym_LT, - anon_sym_EQ, - 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(4948), 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, + ACTIONS(7754), 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, - anon_sym_then, - [178691] = 14, + [182033] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7896), 1, + ACTIONS(7823), 1, + sym_identifier, + ACTIONS(7825), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7829), 1, sym_instance_var, - ACTIONS(7928), 1, - sym_identifier, - STATE(308), 1, + STATE(108), 1, sym__operator_token, - STATE(4281), 1, + STATE(3742), 1, + sym__implicit_method_call_chainable, + STATE(3743), 1, sym__implicit_ivar_call, - STATE(4284), 1, + STATE(3744), 1, sym__implicit_index_call, - STATE(4467), 1, - sym__implicit_method_call_chainable, - STATE(4489), 1, + STATE(4068), 1, sym__implicit_method_call_unchainable, - STATE(4940), 1, + STATE(5002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7930), 2, + ACTIONS(7827), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7788), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -513070,7 +519044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7790), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -513092,135 +519066,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [178765] = 5, + [182107] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4941), 1, + ACTIONS(7833), 1, + sym_identifier, + ACTIONS(7835), 1, + anon_sym_LBRACK, + ACTIONS(7839), 1, + sym_instance_var, + STATE(261), 1, + sym__operator_token, + STATE(5003), 1, sym_heredoc_body, + STATE(5494), 1, + sym__implicit_method_call_chainable, + STATE(5497), 1, + sym__implicit_ivar_call, + STATE(5506), 1, + sym__implicit_index_call, + STATE(5531), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7837), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7803), 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(5162), 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, + ACTIONS(7805), 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_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [178821] = 11, + [182181] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7606), 1, + ACTIONS(7841), 1, + sym_identifier, + ACTIONS(7843), 1, anon_sym_LBRACK, - ACTIONS(7608), 1, - anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7614), 1, - anon_sym_QMARK, - ACTIONS(7902), 1, - anon_sym_PIPE, - STATE(4942), 1, + ACTIONS(7847), 1, + sym_instance_var, + STATE(276), 1, + sym__operator_token, + STATE(3469), 1, + sym__implicit_ivar_call, + STATE(3484), 1, + sym__implicit_index_call, + STATE(3559), 1, + sym__implicit_method_call_chainable, + STATE(3882), 1, + sym__implicit_method_call_unchainable, + STATE(5004), 1, sym_heredoc_body, - STATE(4948), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, - anon_sym_DOT_DOT, + ACTIONS(7845), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7752), 10, anon_sym_LT, - anon_sym_EQ, + 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(4968), 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, + ACTIONS(7754), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [178889] = 5, + [182255] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4943), 1, + ACTIONS(1949), 1, + anon_sym_COLON, + ACTIONS(7280), 1, + anon_sym_COLON_COLON, + STATE(4016), 1, + aux_sym_constant_repeat1, + STATE(5005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(4855), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 32, - sym__line_break, + ACTIONS(4857), 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, @@ -513231,12 +519223,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, @@ -513247,31 +519235,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, - [178945] = 5, + anon_sym_do, + [182317] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4944), 1, + ACTIONS(1099), 1, + sym__string_literal_start, + ACTIONS(7939), 1, + anon_sym_COLON, + STATE(5006), 1, sym_heredoc_body, + STATE(5204), 1, + aux_sym_chained_string_repeat1, + STATE(5754), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 32, - sym__line_break, + ACTIONS(173), 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, @@ -513282,12 +519279,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, @@ -513301,26 +519294,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [179001] = 5, + anon_sym_do, + [182381] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4945), 1, + ACTIONS(865), 1, + sym__start_of_brace_block, + STATE(5007), 1, sym_heredoc_body, + STATE(5364), 1, + sym_do_end_block, + STATE(5365), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 32, + ACTIONS(5698), 30, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -513334,11 +519332,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, @@ -513352,35 +519347,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_then, - [179057] = 14, + [182443] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7712), 1, + ACTIONS(7865), 1, anon_sym_LBRACK, - ACTIONS(7720), 1, + ACTIONS(7873), 1, sym_instance_var, - ACTIONS(7842), 1, + ACTIONS(7941), 1, sym_identifier, STATE(82), 1, sym__operator_token, - STATE(3087), 1, + STATE(2881), 1, sym__implicit_method_call_chainable, - STATE(3088), 1, - sym__implicit_method_call_unchainable, - STATE(3090), 1, + STATE(2883), 1, sym__implicit_ivar_call, - STATE(3091), 1, + STATE(2884), 1, sym__implicit_index_call, - STATE(4946), 1, + STATE(3136), 1, + sym__implicit_method_call_unchainable, + STATE(5008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7844), 2, + ACTIONS(7943), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7714), 10, + ACTIONS(7867), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -513391,7 +519387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7716), 21, + ACTIONS(7869), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -513413,28 +519409,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [179131] = 5, + [182517] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4947), 1, + ACTIONS(865), 1, + sym__start_of_brace_block, + STATE(5009), 1, sym_heredoc_body, + STATE(5383), 1, + sym_do_end_block, + STATE(5384), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 32, - sym__start_of_brace_block, + ACTIONS(5694), 30, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -513445,11 +519445,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, @@ -513464,28 +519462,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [179187] = 7, + anon_sym_then, + [182579] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7902), 1, - anon_sym_PIPE, - STATE(4948), 1, + ACTIONS(865), 1, + sym__start_of_brace_block, + STATE(5010), 1, sym_heredoc_body, - STATE(4949), 1, - aux_sym_union_type_repeat1, + STATE(5385), 1, + sym_do_end_block, + STATE(5386), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 31, + ACTIONS(5694), 30, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -513499,10 +519500,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, @@ -513516,28 +519515,32 @@ 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, - [179247] = 6, + [182641] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7932), 1, - anon_sym_PIPE, + ACTIONS(865), 1, + sym__start_of_brace_block, + STATE(5011), 1, + sym_heredoc_body, + STATE(5387), 1, + sym_do_end_block, + STATE(5388), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4949), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 31, + ACTIONS(5715), 30, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -513551,10 +519554,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, @@ -513568,24 +519569,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, - [179305] = 9, + [182703] = 8, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(865), 1, sym__start_of_brace_block, - ACTIONS(7935), 1, - anon_sym_do, - STATE(4950), 1, + STATE(5012), 1, sym_heredoc_body, - STATE(5326), 1, + STATE(5389), 1, sym_do_end_block, - STATE(5327), 1, + STATE(5390), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -513594,7 +519594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 29, + ACTIONS(5715), 30, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -513623,35 +519623,29 @@ 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, - [179369] = 9, + [182765] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - ACTIONS(7935), 1, - anon_sym_do, - STATE(4951), 1, + STATE(5013), 1, sym_heredoc_body, - STATE(5326), 1, - sym_do_end_block, - STATE(5327), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(4838), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 29, - sym__line_break, + ACTIONS(4840), 32, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -513662,9 +519656,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, @@ -513675,38 +519671,39 @@ 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_then, - [179433] = 14, + [182821] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7894), 1, - sym_identifier, - ACTIONS(7896), 1, + ACTIONS(7750), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7758), 1, sym_instance_var, - STATE(322), 1, + ACTIONS(7945), 1, + sym_identifier, + STATE(155), 1, sym__operator_token, - STATE(4281), 1, + STATE(4023), 1, + sym__implicit_method_call_chainable, + STATE(4024), 1, sym__implicit_ivar_call, - STATE(4284), 1, + STATE(4025), 1, sym__implicit_index_call, - STATE(4467), 1, - sym__implicit_method_call_chainable, - STATE(4489), 1, + STATE(4578), 1, sym__implicit_method_call_unchainable, - STATE(4952), 1, + STATE(5014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7898), 2, + ACTIONS(7947), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7752), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -513717,7 +519714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7754), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -513739,88 +519736,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [179507] = 14, + [182895] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7822), 1, - anon_sym_LBRACK, - ACTIONS(7830), 1, - sym_instance_var, - ACTIONS(7865), 1, - sym_identifier, - STATE(675), 1, - sym__operator_token, - STATE(4953), 1, + ACTIONS(1953), 1, + anon_sym_COLON, + ACTIONS(5733), 1, + anon_sym_COLON_COLON, + STATE(2461), 1, + aux_sym_constant_repeat1, + STATE(5015), 1, sym_heredoc_body, - STATE(9493), 1, - sym__implicit_method_call_chainable, - STATE(9524), 1, - sym__implicit_ivar_call, - STATE(9631), 1, - sym__implicit_index_call, - STATE(10487), 1, - sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7867), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7824), 10, + ACTIONS(4855), 9, + anon_sym_DOT_DOT, + anon_sym_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(7826), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + anon_sym_COLON2, + ACTIONS(4857), 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, - [179581] = 5, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [182957] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4954), 1, + ACTIONS(3267), 1, + sym__string_literal_start, + ACTIONS(7949), 1, + anon_sym_COLON, + STATE(3374), 1, + sym_string, + STATE(5016), 1, sym_heredoc_body, + STATE(5186), 1, + aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(195), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 32, + anon_sym_COLON2, + ACTIONS(173), 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, @@ -513831,11 +519829,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, @@ -513850,34 +519845,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [179637] = 14, + [183021] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7871), 1, + ACTIONS(7813), 1, anon_sym_LBRACK, - ACTIONS(7875), 1, + ACTIONS(7817), 1, sym_instance_var, - ACTIONS(7912), 1, + ACTIONS(7951), 1, sym_identifier, - STATE(136), 1, + STATE(230), 1, sym__operator_token, - STATE(4611), 1, + STATE(5017), 1, + sym_heredoc_body, + STATE(5722), 1, sym__implicit_method_call_chainable, - STATE(4612), 1, - sym__implicit_method_call_unchainable, - STATE(4613), 1, + STATE(5734), 1, sym__implicit_ivar_call, - STATE(4614), 1, + STATE(5758), 1, sym__implicit_index_call, - STATE(4955), 1, - sym_heredoc_body, + STATE(5869), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7914), 2, + ACTIONS(7953), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7792), 10, + ACTIONS(7740), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -513888,7 +519883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7794), 21, + ACTIONS(7742), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -513910,34 +519905,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [179711] = 14, + [183095] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7896), 1, + ACTIONS(7909), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7913), 1, sym_instance_var, - ACTIONS(7928), 1, + ACTIONS(7955), 1, sym_identifier, - STATE(308), 1, + STATE(270), 1, sym__operator_token, - STATE(4297), 1, + STATE(5018), 1, + sym_heredoc_body, + STATE(6377), 1, sym__implicit_method_call_chainable, - STATE(4299), 1, - sym__implicit_method_call_unchainable, - STATE(4302), 1, + STATE(6378), 1, sym__implicit_ivar_call, - STATE(4310), 1, + STATE(6380), 1, sym__implicit_index_call, - STATE(4956), 1, - sym_heredoc_body, + STATE(6877), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7930), 2, + ACTIONS(7957), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7764), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -513948,7 +519943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7766), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -513970,226 +519965,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [179785] = 8, + [183169] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3267), 1, - sym__string_literal_start, - STATE(4922), 1, - aux_sym_chained_string_repeat1, - STATE(4957), 1, + ACTIONS(7927), 1, + sym_identifier, + ACTIONS(7929), 1, + anon_sym_LBRACK, + ACTIONS(7933), 1, + sym_instance_var, + STATE(97), 1, + sym__operator_token, + STATE(3800), 1, + sym__implicit_method_call_chainable, + STATE(3801), 1, + sym__implicit_ivar_call, + STATE(3802), 1, + sym__implicit_index_call, + STATE(4199), 1, + sym__implicit_method_call_unchainable, + STATE(5019), 1, sym_heredoc_body, - STATE(5384), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7931), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7776), 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(5636), 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, - [179847] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, + ACTIONS(7778), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(7728), 1, anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, - anon_sym_QMARK, - STATE(4958), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7730), 2, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7734), 4, anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6459), 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, - [179939] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, - anon_sym_QMARK, - STATE(4959), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7734), 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, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6461), 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, - [180031] = 14, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [183243] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7896), 1, + ACTIONS(7929), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7933), 1, sym_instance_var, - ACTIONS(7937), 1, + ACTIONS(7959), 1, sym_identifier, - STATE(205), 1, + STATE(93), 1, sym__operator_token, - STATE(4281), 1, + STATE(3800), 1, + sym__implicit_method_call_chainable, + STATE(3801), 1, sym__implicit_ivar_call, - STATE(4284), 1, + STATE(3802), 1, sym__implicit_index_call, - STATE(4467), 1, - sym__implicit_method_call_chainable, - STATE(4489), 1, + STATE(4199), 1, sym__implicit_method_call_unchainable, - STATE(4960), 1, + STATE(5020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7939), 2, + ACTIONS(7961), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7776), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -514200,7 +520063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7778), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -514222,212 +520085,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [180105] = 23, + [183317] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, - anon_sym_QMARK, - STATE(4961), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 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, - [180197] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1951), 1, - anon_sym_COLON, - ACTIONS(5700), 1, - anon_sym_COLON_COLON, - STATE(2416), 1, - aux_sym_constant_repeat1, - STATE(4962), 1, + anon_sym_LBRACK, + ACTIONS(7758), 1, + sym_instance_var, + ACTIONS(7945), 1, + sym_identifier, + STATE(155), 1, + sym__operator_token, + STATE(4009), 1, + sym__implicit_method_call_chainable, + STATE(4010), 1, + sym__implicit_ivar_call, + STATE(4011), 1, + sym__implicit_index_call, + STATE(4538), 1, + sym__implicit_method_call_unchainable, + STATE(5021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7947), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7752), 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_COLON2, - ACTIONS(4857), 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, + ACTIONS(7754), 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_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [180259] = 9, + [183391] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3267), 1, - sym__string_literal_start, - ACTIONS(7941), 1, - anon_sym_COLON, - STATE(3374), 1, - sym_string, - STATE(4963), 1, + ACTIONS(7813), 1, + anon_sym_LBRACK, + ACTIONS(7817), 1, + sym_instance_var, + ACTIONS(7951), 1, + sym_identifier, + STATE(230), 1, + sym__operator_token, + STATE(5022), 1, sym_heredoc_body, - STATE(5075), 1, - aux_sym_chained_string_repeat1, + STATE(5630), 1, + sym__implicit_method_call_chainable, + STATE(5631), 1, + sym__implicit_ivar_call, + STATE(5633), 1, + sym__implicit_index_call, + STATE(6160), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7953), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7740), 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_COLON2, - ACTIONS(173), 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, + ACTIONS(7742), 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, - anon_sym_do, - [180323] = 14, + [183465] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7916), 1, - sym_identifier, - ACTIONS(7918), 1, + ACTIONS(7909), 1, anon_sym_LBRACK, - ACTIONS(7922), 1, + ACTIONS(7913), 1, sym_instance_var, - STATE(302), 1, + ACTIONS(7955), 1, + sym_identifier, + STATE(270), 1, sym__operator_token, - STATE(4964), 1, + STATE(5023), 1, sym_heredoc_body, - STATE(6045), 1, + STATE(6357), 1, sym__implicit_method_call_chainable, - STATE(6046), 1, - sym__implicit_method_call_unchainable, - STATE(6047), 1, + STATE(6358), 1, sym__implicit_ivar_call, - STATE(6049), 1, + STATE(6359), 1, sym__implicit_index_call, + STATE(6842), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7920), 2, + ACTIONS(7957), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7780), 10, + ACTIONS(7764), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -514438,7 +520243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7782), 21, + ACTIONS(7766), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -514460,34 +520265,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [180397] = 14, + [183539] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7918), 1, + ACTIONS(7929), 1, anon_sym_LBRACK, - ACTIONS(7922), 1, + ACTIONS(7933), 1, sym_instance_var, - ACTIONS(7924), 1, + ACTIONS(7959), 1, sym_identifier, - STATE(253), 1, + STATE(93), 1, sym__operator_token, - STATE(4965), 1, - sym_heredoc_body, - STATE(6045), 1, + STATE(3783), 1, sym__implicit_method_call_chainable, - STATE(6046), 1, - sym__implicit_method_call_unchainable, - STATE(6047), 1, + STATE(3784), 1, sym__implicit_ivar_call, - STATE(6049), 1, + STATE(3785), 1, sym__implicit_index_call, + STATE(4161), 1, + sym__implicit_method_call_unchainable, + STATE(5024), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7926), 2, + ACTIONS(7961), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7780), 10, + ACTIONS(7776), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -514498,7 +520303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7782), 21, + ACTIONS(7778), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -514520,15 +520325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [180471] = 5, + [183613] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4966), 1, + STATE(5025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -514538,7 +520343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 32, + ACTIONS(4902), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -514571,34 +520376,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [180527] = 14, + [183669] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7679), 1, - sym_identifier, - ACTIONS(7681), 1, + ACTIONS(7865), 1, anon_sym_LBRACK, - ACTIONS(7689), 1, + ACTIONS(7873), 1, sym_instance_var, - STATE(295), 1, + ACTIONS(7941), 1, + sym_identifier, + STATE(82), 1, sym__operator_token, - STATE(4967), 1, - sym_heredoc_body, - STATE(6672), 1, + STATE(2791), 1, + sym__implicit_method_call_chainable, + STATE(2793), 1, sym__implicit_ivar_call, - STATE(6684), 1, + STATE(2841), 1, sym__implicit_index_call, - STATE(6786), 1, - sym__implicit_method_call_chainable, - STATE(6795), 1, + STATE(3154), 1, sym__implicit_method_call_unchainable, + STATE(5026), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7687), 2, + ACTIONS(7943), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7683), 10, + ACTIONS(7867), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -514609,7 +520414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7685), 21, + ACTIONS(7869), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -514631,21 +520436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [180601] = 8, + [183743] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1949), 1, - anon_sym_COLON, - ACTIONS(7253), 1, - anon_sym_COLON_COLON, - STATE(4132), 1, - aux_sym_constant_repeat1, - STATE(4968), 1, + ACTIONS(731), 1, + anon_sym_EQ, + STATE(5027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -514654,136 +520455,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 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, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [180663] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7606), 1, - anon_sym_LBRACK, - ACTIONS(7608), 1, - anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7614), 1, - anon_sym_QMARK, - ACTIONS(7902), 1, - anon_sym_PIPE, - STATE(4948), 1, - aux_sym_union_type_repeat1, - STATE(4969), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4888), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4890), 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, - [180731] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7479), 1, + ACTIONS(173), 32, sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - STATE(4970), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6526), 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__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + 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, @@ -514795,25 +520481,30 @@ 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, - [180797] = 8, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [183801] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, + ACTIONS(7963), 1, anon_sym_DOT, - STATE(4971), 1, + ACTIONS(7965), 1, + anon_sym_EQ, + ACTIONS(7967), 1, + sym__start_of_index_operator, + STATE(5028), 1, sym_heredoc_body, + STATE(5135), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(5721), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -514821,25 +520512,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 30, + ACTIONS(5719), 30, 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__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, @@ -514849,49 +520537,46 @@ 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, - [180859] = 8, + anon_sym_do, + anon_sym_then, + [183865] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - STATE(4972), 1, + ACTIONS(7969), 1, + anon_sym_EQ, + STATE(5029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(5939), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 30, - sym__line_break, + ACTIONS(5937), 32, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_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_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -514903,534 +520588,427 @@ 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, - [180921] = 12, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [183923] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - STATE(4973), 1, + ACTIONS(7917), 1, + anon_sym_LBRACK, + ACTIONS(7925), 1, + sym_instance_var, + ACTIONS(7971), 1, + sym_identifier, + STATE(675), 1, + sym__operator_token, + STATE(5030), 1, sym_heredoc_body, + STATE(9464), 1, + sym__implicit_ivar_call, + STATE(9466), 1, + sym__implicit_index_call, + STATE(9558), 1, + sym__implicit_method_call_chainable, + STATE(10129), 1, + sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, - anon_sym_DOT_DOT, + ACTIONS(7973), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7919), 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, - ACTIONS(6558), 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_end, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(7921), 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, - [180991] = 21, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [183997] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - STATE(4974), 1, + STATE(5031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(4974), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(4976), 32, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 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_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, - [181079] = 17, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [184053] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7750), 1, - sym_binary_ampersand, - STATE(4975), 1, + STATE(5032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(4906), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(4908), 32, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 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_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, - [181159] = 13, + anon_sym_then, + [184109] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7750), 1, - sym_binary_ampersand, - STATE(4976), 1, + ACTIONS(7843), 1, + anon_sym_LBRACK, + ACTIONS(7847), 1, + sym_instance_var, + ACTIONS(7935), 1, + sym_identifier, + STATE(111), 1, + sym__operator_token, + STATE(3423), 1, + sym__implicit_method_call_chainable, + STATE(3430), 1, + sym__implicit_ivar_call, + STATE(3556), 1, + sym__implicit_index_call, + STATE(3596), 1, + sym__implicit_method_call_unchainable, + STATE(5033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, + ACTIONS(7937), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7752), 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, - ACTIONS(5963), 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_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(7754), 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, - [181231] = 11, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [184183] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - STATE(4977), 1, + ACTIONS(7786), 1, + anon_sym_LBRACK, + ACTIONS(7794), 1, + sym_instance_var, + ACTIONS(7975), 1, + sym_identifier, + STATE(104), 1, + sym__operator_token, + STATE(4409), 1, + sym__implicit_method_call_chainable, + STATE(4418), 1, + sym__implicit_ivar_call, + STATE(4421), 1, + sym__implicit_index_call, + STATE(4728), 1, + sym__implicit_method_call_unchainable, + STATE(5034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, + ACTIONS(7977), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7788), 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, - ACTIONS(5967), 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_end, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(7790), 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, - [181299] = 15, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [184257] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, ACTIONS(7750), 1, - sym_binary_ampersand, - STATE(4978), 1, + anon_sym_LBRACK, + ACTIONS(7758), 1, + sym_instance_var, + ACTIONS(7979), 1, + sym_identifier, + STATE(263), 1, + sym__operator_token, + STATE(4023), 1, + sym__implicit_method_call_chainable, + STATE(4024), 1, + sym__implicit_ivar_call, + STATE(4025), 1, + sym__implicit_index_call, + STATE(4578), 1, + sym__implicit_method_call_unchainable, + STATE(5035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, + ACTIONS(7981), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7752), 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(5971), 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_end, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(7754), 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, - [181375] = 19, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [184331] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7750), 1, - sym_binary_ampersand, - STATE(4979), 1, + STATE(5036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(4954), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(4956), 32, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 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__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_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [181459] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7750), 1, - sym_binary_ampersand, - STATE(4980), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7730), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7736), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7746), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7748), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - 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_DOT_DOT_DOT, - anon_sym_end, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [181545] = 9, + anon_sym_then, + [184387] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1101), 1, - sym__string_literal_start, - ACTIONS(7943), 1, - anon_sym_COLON, - STATE(4981), 1, + STATE(5037), 1, sym_heredoc_body, - STATE(5036), 1, - aux_sym_chained_string_repeat1, - STATE(5652), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, - sym__start_of_brace_block, + ACTIONS(4960), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515441,8 +521019,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, @@ -515456,16 +521038,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [181609] = 5, + anon_sym_then, + [184443] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4982), 1, + STATE(5038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 9, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -515475,10 +521057,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 32, - sym__start_of_brace_block, + ACTIONS(4964), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515489,6 +521070,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, @@ -515507,28 +521089,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [181665] = 11, + anon_sym_then, + [184499] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7606), 1, + ACTIONS(7642), 1, anon_sym_LBRACK, - ACTIONS(7608), 1, + ACTIONS(7644), 1, anon_sym_DOT, - ACTIONS(7610), 1, + ACTIONS(7646), 1, anon_sym_STAR, - ACTIONS(7614), 1, + ACTIONS(7650), 1, anon_sym_QMARK, - ACTIONS(7902), 1, + ACTIONS(7880), 1, anon_sym_PIPE, - STATE(4948), 1, + STATE(4970), 1, aux_sym_union_type_repeat1, - STATE(4983), 1, + STATE(5039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(4970), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -515536,7 +521118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 28, + ACTIONS(4972), 28, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -515565,17 +521147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [181733] = 6, + [184567] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4948), 1, - aux_sym_union_type_repeat1, - STATE(4984), 1, + STATE(5040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(4914), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -515585,7 +521165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 31, + ACTIONS(4916), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -515602,6 +521182,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, @@ -515617,34 +521198,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [181791] = 14, + [184623] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7882), 1, - sym_identifier, - ACTIONS(7884), 1, + ACTIONS(7917), 1, anon_sym_LBRACK, - ACTIONS(7892), 1, + ACTIONS(7925), 1, sym_instance_var, - STATE(262), 1, + ACTIONS(7971), 1, + sym_identifier, + STATE(675), 1, sym__operator_token, - STATE(4985), 1, + STATE(5041), 1, sym_heredoc_body, - STATE(6278), 1, + STATE(9449), 1, + sym__implicit_ivar_call, + STATE(9478), 1, + sym__implicit_index_call, + STATE(9505), 1, sym__implicit_method_call_chainable, - STATE(6279), 1, + STATE(10274), 1, sym__implicit_method_call_unchainable, - STATE(6281), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7973), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(7919), 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(7921), 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, + [184697] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7786), 1, + anon_sym_LBRACK, + ACTIONS(7794), 1, + sym_instance_var, + ACTIONS(7975), 1, + sym_identifier, + STATE(104), 1, + sym__operator_token, + STATE(4373), 1, + sym__implicit_method_call_chainable, + STATE(4375), 1, sym__implicit_ivar_call, - STATE(6282), 1, + STATE(4376), 1, sym__implicit_index_call, + STATE(4695), 1, + sym__implicit_method_call_unchainable, + STATE(5042), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7890), 2, + ACTIONS(7977), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7886), 10, + ACTIONS(7788), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -515655,7 +521296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7888), 21, + ACTIONS(7790), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -515677,34 +521318,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [181865] = 14, + [184771] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7693), 1, + ACTIONS(7750), 1, anon_sym_LBRACK, - ACTIONS(7701), 1, + ACTIONS(7758), 1, sym_instance_var, - ACTIONS(7703), 1, + ACTIONS(7979), 1, sym_identifier, - STATE(101), 1, + STATE(263), 1, sym__operator_token, - STATE(4146), 1, + STATE(4009), 1, sym__implicit_method_call_chainable, - STATE(4147), 1, - sym__implicit_method_call_unchainable, - STATE(4148), 1, + STATE(4010), 1, sym__implicit_ivar_call, - STATE(4149), 1, + STATE(4011), 1, sym__implicit_index_call, - STATE(4986), 1, + STATE(4538), 1, + sym__implicit_method_call_unchainable, + STATE(5043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7705), 2, + ACTIONS(7981), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7695), 10, + ACTIONS(7752), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -515715,7 +521356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7697), 21, + ACTIONS(7754), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -515737,35 +521378,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [181939] = 11, + [184845] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7606), 1, - anon_sym_LBRACK, - ACTIONS(7608), 1, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, + STATE(5044), 1, + sym_heredoc_body, + STATE(5902), 1, + sym_do_end_block, + STATE(5903), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5671), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT, - ACTIONS(7610), 1, - anon_sym_STAR, - ACTIONS(7614), 1, - anon_sym_QMARK, - ACTIONS(7902), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - STATE(4948), 1, - aux_sym_union_type_repeat1, - STATE(4987), 1, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5669), 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, + [184909] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(4966), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 28, + ACTIONS(4968), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -515779,8 +521465,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, @@ -515791,18 +521480,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_then, - [182007] = 5, + [184965] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4988), 1, + STATE(5046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -515812,10 +521502,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 32, - sym__start_of_brace_block, + ACTIONS(4920), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515826,6 +521515,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, @@ -515844,28 +521534,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [182063] = 11, + anon_sym_then, + [185021] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7526), 1, + ACTIONS(7642), 1, anon_sym_LBRACK, - ACTIONS(7528), 1, + ACTIONS(7644), 1, anon_sym_DOT, - ACTIONS(7530), 1, + ACTIONS(7646), 1, anon_sym_STAR, - ACTIONS(7534), 1, + ACTIONS(7650), 1, anon_sym_QMARK, - ACTIONS(7677), 1, + ACTIONS(7880), 1, anon_sym_PIPE, - STATE(4846), 1, + STATE(4970), 1, aux_sym_union_type_repeat1, - STATE(4989), 1, + STATE(5047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(4922), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ, @@ -515873,10 +521563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 28, - sym__start_of_brace_block, + ACTIONS(4924), 28, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515887,6 +521576,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, @@ -515901,18 +521591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [182131] = 6, + anon_sym_then, + [185089] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4846), 1, - aux_sym_union_type_repeat1, - STATE(4990), 1, + STATE(5048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -515922,10 +521610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 31, - sym__start_of_brace_block, + ACTIONS(4928), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515936,9 +521623,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, @@ -515953,35 +521642,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [182189] = 14, + anon_sym_then, + [185145] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7896), 1, + STATE(5049), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4930), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4932), 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, - ACTIONS(7900), 1, - sym_instance_var, - ACTIONS(7945), 1, + 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, + [185201] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7907), 1, sym_identifier, - STATE(122), 1, + ACTIONS(7909), 1, + anon_sym_LBRACK, + ACTIONS(7913), 1, + sym_instance_var, + STATE(307), 1, sym__operator_token, - STATE(4281), 1, + STATE(5050), 1, + sym_heredoc_body, + STATE(6377), 1, + sym__implicit_method_call_chainable, + STATE(6378), 1, sym__implicit_ivar_call, - STATE(4284), 1, + STATE(6380), 1, sym__implicit_index_call, - STATE(4467), 1, - sym__implicit_method_call_chainable, - STATE(4489), 1, + STATE(6877), 1, sym__implicit_method_call_unchainable, - STATE(4991), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7947), 2, + ACTIONS(7911), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(7764), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -515992,7 +521732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7766), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -516014,21 +521754,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [182263] = 8, + [185275] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - STATE(4992), 1, + ACTIONS(7985), 1, + anon_sym_COMMA, + STATE(5051), 1, sym_heredoc_body, - STATE(5213), 1, - sym_do_end_block, - STATE(5214), 1, - sym_brace_block, + STATE(5141), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -516037,8 +521775,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 30, + ACTIONS(5888), 30, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -516051,7 +521790,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, @@ -516068,26 +521806,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [182325] = 5, + [185334] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4993), 1, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, + STATE(5052), 1, sym_heredoc_body, + STATE(6584), 1, + sym_do_end_block, + STATE(6586), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(5696), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 32, - sym__line_break, + ACTIONS(5694), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -516099,12 +521844,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, @@ -516116,26 +521857,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_then, - [182381] = 9, + [185397] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, + ACTIONS(995), 1, sym__start_of_brace_block, - ACTIONS(7800), 1, + ACTIONS(7983), 1, anon_sym_do, - STATE(4994), 1, + STATE(5053), 1, sym_heredoc_body, - STATE(6092), 1, + STATE(6587), 1, sym_do_end_block, - STATE(6106), 1, + STATE(6591), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(5696), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -516144,8 +521886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 29, - sym__line_break, + ACTIONS(5694), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -516157,7 +521898,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, @@ -516171,153 +521911,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, - anon_sym_then, - [182445] = 23, + [185460] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, - anon_sym_QMARK, - STATE(4995), 1, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, + STATE(5054), 1, sym_heredoc_body, + STATE(6597), 1, + sym_do_end_block, + STATE(6602), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(5717), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(5715), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6247), 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, - [182537] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7812), 1, - sym_identifier, - ACTIONS(7814), 1, - anon_sym_LBRACK, - ACTIONS(7818), 1, - sym_instance_var, - STATE(88), 1, - sym__operator_token, - STATE(2695), 1, - sym__implicit_method_call_chainable, - STATE(2696), 1, - sym__implicit_method_call_unchainable, - STATE(2697), 1, - sym__implicit_ivar_call, - STATE(2698), 1, - sym__implicit_index_call, - STATE(4996), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7816), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7714), 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(7716), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + 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, - [182611] = 8, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [185523] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, + ACTIONS(995), 1, sym__start_of_brace_block, - STATE(4997), 1, + ACTIONS(7983), 1, + anon_sym_do, + STATE(5055), 1, sym_heredoc_body, - STATE(5241), 1, + STATE(6610), 1, sym_do_end_block, - STATE(5242), 1, + STATE(6616), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5717), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -516326,8 +521994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 30, - sym__line_break, + ACTIONS(5715), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -516339,7 +522006,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, @@ -516353,36 +522019,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_do, - anon_sym_then, - [182673] = 8, + [185586] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - STATE(4998), 1, + ACTIONS(7987), 1, + anon_sym_PIPE, + STATE(5056), 1, sym_heredoc_body, - STATE(5243), 1, - sym_do_end_block, - STATE(5244), 1, - sym_brace_block, + STATE(5058), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 30, - sym__line_break, + ACTIONS(4883), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -516393,9 +522056,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, @@ -516409,94 +522074,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, - [182735] = 14, + [185645] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7904), 1, - sym_identifier, - ACTIONS(7906), 1, - anon_sym_LBRACK, - ACTIONS(7910), 1, - sym_instance_var, - STATE(260), 1, - sym__operator_token, - STATE(4999), 1, + STATE(5057), 1, sym_heredoc_body, - STATE(5477), 1, - sym__implicit_ivar_call, - STATE(5478), 1, - sym__implicit_index_call, - STATE(5619), 1, - sym__implicit_method_call_chainable, - STATE(5729), 1, - sym__implicit_method_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7908), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7886), 10, + ACTIONS(5820), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7888), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5818), 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_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, - [182809] = 8, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [185700] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - STATE(5000), 1, - sym_heredoc_body, - STATE(5251), 1, - sym_do_end_block, - STATE(5252), 1, - sym_brace_block, + ACTIONS(7989), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + STATE(5058), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 30, - sym__line_break, + ACTIONS(4875), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -516507,9 +522157,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, @@ -516523,34 +522175,37 @@ 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, - [182871] = 8, + [185757] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - STATE(5001), 1, + ACTIONS(7987), 1, + anon_sym_PIPE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, + anon_sym_DOT, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + STATE(5056), 1, + aux_sym_union_type_repeat1, + STATE(5059), 1, sym_heredoc_body, - STATE(5253), 1, - sym_do_end_block, - STATE(5258), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 30, - sym__line_break, + ACTIONS(4890), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -516561,9 +522216,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, @@ -516574,80 +522229,73 @@ 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, - [182933] = 14, + [185824] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7896), 1, + ACTIONS(7987), 1, + anon_sym_PIPE, + ACTIONS(7992), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, - sym_instance_var, - ACTIONS(7945), 1, - sym_identifier, - STATE(122), 1, - sym__operator_token, - STATE(4297), 1, - sym__implicit_method_call_chainable, - STATE(4299), 1, - sym__implicit_method_call_unchainable, - STATE(4302), 1, - sym__implicit_ivar_call, - STATE(4310), 1, - sym__implicit_index_call, - STATE(5002), 1, + ACTIONS(7994), 1, + anon_sym_DOT, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + STATE(5056), 1, + aux_sym_union_type_repeat1, + STATE(5060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7947), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(4892), 7, + anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(4894), 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_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, - [183007] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [185891] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5003), 1, + STATE(5061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -516657,10 +522305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 32, + ACTIONS(5822), 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, @@ -516671,11 +522319,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, @@ -516690,27 +522336,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [183063] = 5, + anon_sym_then, + [185946] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5004), 1, + STATE(5062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 9, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4846), 32, + ACTIONS(4622), 32, + 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, @@ -516721,11 +522368,10 @@ 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_LPAREN, 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, @@ -516736,33 +522382,37 @@ 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, - [183119] = 5, + anon_sym_do, + anon_sym_then, + [186001] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5005), 1, + ACTIONS(945), 1, + sym__start_of_brace_block, + STATE(5063), 1, sym_heredoc_body, + STATE(5569), 1, + sym_do_end_block, + STATE(5572), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(5700), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 32, - sym__start_of_brace_block, + ACTIONS(5698), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -516773,11 +522423,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, @@ -516789,218 +522436,141 @@ static const uint16_t ts_small_parse_table[] = { 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, - [183175] = 23, + [186062] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7479), 1, - sym__start_of_index_operator, - ACTIONS(7722), 1, - anon_sym_DOT, - ACTIONS(7726), 1, - anon_sym_PIPE, - ACTIONS(7728), 1, - anon_sym_CARET, - ACTIONS(7732), 1, - anon_sym_EQ_EQ, - ACTIONS(7738), 1, - anon_sym_AMP_STAR, - ACTIONS(7742), 1, - anon_sym_AMP_AMP, - ACTIONS(7744), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7750), 1, - sym_binary_ampersand, - ACTIONS(7832), 1, - anon_sym_DOT_DOT, - ACTIONS(7834), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7836), 1, - anon_sym_QMARK, - STATE(5006), 1, + ACTIONS(945), 1, + sym__start_of_brace_block, + STATE(5064), 1, sym_heredoc_body, + STATE(5583), 1, + sym_do_end_block, + STATE(5584), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7730), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7736), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7740), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7724), 3, + ACTIONS(5696), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7734), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7746), 4, + anon_sym_AMP_STAR, + ACTIONS(5694), 28, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7748), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6845), 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, - [183267] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7665), 1, - sym_identifier, - ACTIONS(7667), 1, - anon_sym_LBRACK, - ACTIONS(7675), 1, - sym_instance_var, - STATE(278), 1, - sym__operator_token, - STATE(3774), 1, - sym__implicit_method_call_chainable, - STATE(3775), 1, - sym__implicit_method_call_unchainable, - STATE(3776), 1, - sym__implicit_ivar_call, - STATE(3777), 1, - sym__implicit_index_call, - STATE(5007), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7673), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7669), 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(7671), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + 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, - [183341] = 14, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [186123] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - sym_identifier, - ACTIONS(7871), 1, - anon_sym_LBRACK, - ACTIONS(7875), 1, - sym_instance_var, - STATE(144), 1, - sym__operator_token, - STATE(4624), 1, - sym__implicit_method_call_chainable, - STATE(4625), 1, - sym__implicit_method_call_unchainable, - STATE(4626), 1, - sym__implicit_ivar_call, - STATE(4627), 1, - sym__implicit_index_call, - STATE(5008), 1, + ACTIONS(945), 1, + sym__start_of_brace_block, + STATE(5065), 1, sym_heredoc_body, + STATE(5585), 1, + sym_do_end_block, + STATE(5586), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7873), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7792), 10, + ACTIONS(5696), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_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(7794), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5694), 28, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_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, - [183415] = 5, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [186184] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5009), 1, + ACTIONS(945), 1, + sym__start_of_brace_block, + STATE(5066), 1, sym_heredoc_body, + STATE(5587), 1, + sym_do_end_block, + STATE(5588), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, + ACTIONS(5717), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 32, - sym__line_break, + ACTIONS(5715), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517012,12 +522582,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, @@ -517029,26 +522595,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_then, - [183471] = 9, + anon_sym_do, + [186245] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, + ACTIONS(945), 1, sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, - STATE(5010), 1, + STATE(5067), 1, sym_heredoc_body, - STATE(6056), 1, + STATE(5589), 1, sym_do_end_block, - STATE(6057), 1, + STATE(5590), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(5717), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -517057,8 +522623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 29, - sym__line_break, + ACTIONS(5715), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517070,7 +522635,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, @@ -517084,36 +522648,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_then, - [183535] = 9, + anon_sym_do, + [186306] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, - STATE(5011), 1, + STATE(5068), 1, sym_heredoc_body, - STATE(6056), 1, - sym_do_end_block, - STATE(6057), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 29, + ACTIONS(6009), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517141,87 +522700,82 @@ 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, - [183599] = 14, + [186361] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7896), 1, - anon_sym_LBRACK, - ACTIONS(7900), 1, - sym_instance_var, - ACTIONS(7937), 1, - sym_identifier, - STATE(205), 1, - sym__operator_token, - STATE(4297), 1, - sym__implicit_method_call_chainable, - STATE(4299), 1, - sym__implicit_method_call_unchainable, - STATE(4302), 1, - sym__implicit_ivar_call, - STATE(4310), 1, - sym__implicit_index_call, - STATE(5012), 1, + STATE(5069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7939), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(7669), 10, + ACTIONS(5945), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7671), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5943), 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_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, - [183673] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [186416] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5013), 1, + ACTIONS(8000), 1, + anon_sym_COMMA, + STATE(5070), 1, sym_heredoc_body, + STATE(5141), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 32, + ACTIONS(5856), 30, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517234,11 +522788,7 @@ 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, @@ -517252,26 +522802,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, - [183729] = 5, + [186475] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5014), 1, + STATE(5071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 9, - anon_sym_RBRACK, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 31, + ACTIONS(5022), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517284,7 +522836,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, @@ -517298,34 +522850,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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [183784] = 6, + anon_sym_then, + [186530] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7949), 1, - anon_sym_of, - STATE(5015), 1, + ACTIONS(8002), 1, + anon_sym_DOT, + ACTIONS(8004), 1, + anon_sym_EQ, + ACTIONS(8006), 1, + sym__start_of_index_operator, + STATE(5072), 1, sym_heredoc_body, + STATE(5507), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(5721), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 31, - sym__line_break, + ACTIONS(5719), 28, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -517336,7 +522891,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, @@ -517350,21 +522904,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, - [183841] = 6, + [186593] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7951), 1, - sym_regex_modifier, - STATE(5016), 1, + ACTIONS(2881), 1, + sym__string_literal_start, + STATE(5073), 1, sym_heredoc_body, + STATE(5139), 1, + aux_sym_chained_string_repeat1, + STATE(5833), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -517373,9 +522931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 31, + ACTIONS(173), 29, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517403,18 +522960,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, - [183898] = 5, + [186654] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5017), 1, + STATE(5074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 10, - anon_sym_RBRACK, + ACTIONS(5979), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -517424,7 +522979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 30, + ACTIONS(5977), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517436,11 +522993,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, @@ -517452,29 +523007,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183953] = 6, + anon_sym_do, + anon_sym_then, + [186709] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7953), 1, - sym_regex_modifier, - STATE(5018), 1, + STATE(5075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 31, + ACTIONS(5987), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -517506,26 +523061,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [184010] = 6, + [186764] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7955), 1, - anon_sym_of, - STATE(5019), 1, + STATE(5076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 31, + ACTIONS(5987), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -517557,26 +523111,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [184067] = 6, + [186819] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7231), 1, - anon_sym_LPAREN2, - STATE(5020), 1, + STATE(5077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 31, + ACTIONS(5991), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -517608,96 +523161,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [184124] = 25, + [186874] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8008), 1, + anon_sym_LPAREN, + ACTIONS(8010), 1, + anon_sym_DASH_GT, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(8021), 1, + sym__start_of_tuple_type, + ACTIONS(8023), 1, + sym__start_of_named_tuple_type, + STATE(5078), 1, + sym_heredoc_body, + STATE(7850), 1, + sym__type, + STATE(7864), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8019), 2, + sym_self, + sym_underscore_type, + STATE(7902), 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(4656), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [186949] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7957), 1, + ACTIONS(8008), 1, + anon_sym_LPAREN, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(8021), 1, + sym__start_of_tuple_type, + ACTIONS(8023), 1, + sym__start_of_named_tuple_type, + ACTIONS(8025), 1, + anon_sym_DASH_GT, + STATE(5079), 1, + sym_heredoc_body, + STATE(7857), 1, + sym__type, + STATE(7864), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8019), 2, + sym_self, + sym_underscore_type, + STATE(7902), 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(4678), 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, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, anon_sym_DOT, - ACTIONS(7967), 1, + anon_sym_end, + anon_sym_STAR, anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, + anon_sym_forall, anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5021), 1, + anon_sym_else, + [187024] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8008), 1, + anon_sym_LPAREN, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(8021), 1, + sym__start_of_tuple_type, + ACTIONS(8023), 1, + sym__start_of_named_tuple_type, + ACTIONS(8028), 1, + anon_sym_DASH_GT, + STATE(5080), 1, sym_heredoc_body, - STATE(5094), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(7864), 1, + sym_constant, + STATE(7867), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(8019), 2, + sym_self, + sym_underscore_type, + STATE(7902), 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(4628), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [187099] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(8031), 1, + anon_sym_DASH_GT, + STATE(5081), 1, + sym_heredoc_body, + STATE(10543), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5020), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(5022), 28, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 5, - sym__line_break, - sym__start_of_brace_block, anon_sym_SEMI, - anon_sym_do, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [184219] = 5, + [187160] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5022), 1, + STATE(5082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 10, + ACTIONS(5168), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 30, + ACTIONS(5170), 31, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517709,11 +523425,9 @@ 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_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -517728,26 +523442,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [184274] = 5, + anon_sym_COLON2, + anon_sym_do, + [187215] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5023), 1, + STATE(5083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 10, + ACTIONS(5164), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 30, + ACTIONS(5166), 31, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517759,11 +523475,9 @@ 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_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -517778,26 +523492,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [184329] = 5, + anon_sym_COLON2, + anon_sym_do, + [187270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5024), 1, + STATE(5084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 10, - anon_sym_RBRACK, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 30, + ACTIONS(4618), 32, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517809,11 +523525,10 @@ 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_LPAREN, 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, @@ -517825,158 +523540,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [184384] = 25, + anon_sym_do, + anon_sym_then, + [187325] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7861), 1, anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - ACTIONS(7997), 1, - anon_sym_COMMA, - STATE(5025), 1, + ACTIONS(8033), 1, + anon_sym_PIPE, + STATE(5085), 1, sym_heredoc_body, - STATE(9301), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(5113), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(4970), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(4972), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [184479] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 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_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7987), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - ACTIONS(7999), 1, - anon_sym_COMMA, - STATE(5026), 1, + [187392] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, + anon_sym_DOT, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7861), 1, + anon_sym_QMARK, + ACTIONS(8033), 1, + anon_sym_PIPE, + STATE(5086), 1, sym_heredoc_body, - STATE(9300), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(5113), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(4922), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(4924), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [184574] = 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_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [187459] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5027), 1, + STATE(5087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 10, + ACTIONS(4900), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -517987,7 +523675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 30, + ACTIONS(4902), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518018,29 +523706,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [184629] = 6, + [187514] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8001), 1, - anon_sym_of, - STATE(5028), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(8035), 1, + anon_sym_DASH_GT, + STATE(5088), 1, sym_heredoc_body, + STATE(10593), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 31, - sym__line_break, + ACTIONS(5022), 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, @@ -518051,8 +523744,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, @@ -518068,29 +523759,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [184686] = 6, + [187575] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8003), 1, - anon_sym_of, - STATE(5029), 1, + STATE(5089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(4938), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4940), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518102,9 +523790,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, @@ -518116,21 +523806,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, - [184743] = 6, + [187630] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8005), 1, - anon_sym_LPAREN, - STATE(5030), 1, + ACTIONS(1917), 1, + anon_sym_COLON, + ACTIONS(7503), 1, + anon_sym_COLON_COLON, + STATE(4456), 1, + aux_sym_constant_repeat1, + STATE(5090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(4855), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -518139,9 +523833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4857), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518153,7 +523845,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, @@ -518166,20 +523857,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_do, - anon_sym_then, - [184800] = 5, + [187691] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5031), 1, + STATE(5091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 10, + ACTIONS(4974), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -518190,8 +523881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 30, - sym__start_of_brace_block, + ACTIONS(4976), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518203,9 +523893,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, @@ -518220,29 +523912,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [184855] = 6, + [187746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_EQ, - STATE(5032), 1, + STATE(5092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(4906), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4908), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518254,9 +523943,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, @@ -518268,32 +523959,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [184912] = 6, + [187801] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8009), 1, - anon_sym_of, - STATE(5033), 1, + STATE(5093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(4946), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4948), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518305,9 +523993,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, @@ -518319,32 +524009,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [184969] = 6, + [187856] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8011), 1, - anon_sym_of, - STATE(5034), 1, + STATE(5094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(4942), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4944), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518356,9 +524043,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, @@ -518370,30 +524059,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [185026] = 5, + [187911] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5035), 1, + STATE(5095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(4954), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 32, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4956), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518405,9 +524093,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, @@ -518418,39 +524108,31 @@ 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, - [185081] = 8, + [187966] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1101), 1, - sym__string_literal_start, - STATE(5036), 1, + STATE(5096), 1, sym_heredoc_body, - STATE(5040), 1, - aux_sym_chained_string_repeat1, - STATE(5652), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(4958), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 29, - sym__start_of_brace_block, + ACTIONS(4960), 30, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -518461,8 +524143,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, @@ -518474,29 +524159,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [185142] = 5, + [188021] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5037), 1, + STATE(5097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(4962), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 32, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4964), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518508,9 +524193,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, @@ -518521,32 +524208,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [185197] = 5, + [188076] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5038), 1, + STATE(5098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 9, + ACTIONS(4914), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 31, - sym__start_of_brace_block, + ACTIONS(4916), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518558,9 +524243,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, @@ -518571,21 +524258,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [185252] = 5, + [188131] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5039), 1, + ACTIONS(2997), 1, + sym__string_literal_start, + ACTIONS(8037), 1, + anon_sym_COLON, + STATE(5099), 1, sym_heredoc_body, + STATE(5380), 1, + aux_sym_chained_string_repeat1, + STATE(5973), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 9, + ACTIONS(195), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -518595,8 +524288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 31, - sym__start_of_brace_block, + ACTIONS(173), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518608,7 +524300,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, @@ -518621,38 +524312,31 @@ 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, - [185307] = 7, + [188194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8013), 1, - sym__string_literal_start, - STATE(5652), 1, - sym_string, + STATE(5100), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5040), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(4950), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 29, - sym__start_of_brace_block, + ACTIONS(4952), 30, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -518663,8 +524347,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, @@ -518676,93 +524363,80 @@ static const uint16_t ts_small_parse_table[] = { 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, - [185366] = 15, + [188249] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8018), 1, - anon_sym_DASH_GT, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(8029), 1, - sym__start_of_tuple_type, - ACTIONS(8031), 1, - sym__start_of_named_tuple_type, - STATE(5041), 1, + STATE(5101), 1, sym_heredoc_body, - STATE(7822), 1, - sym__type, - STATE(7824), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, - sym_self, - sym_underscore_type, - STATE(7867), 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(4628), 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, + ACTIONS(4966), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4968), 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_COMMA, - anon_sym_DOT, - anon_sym_end, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_PIPE, - 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, - [185441] = 7, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [188304] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8033), 1, - anon_sym_PIPE, - STATE(5042), 1, + STATE(5102), 1, sym_heredoc_body, - STATE(5072), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(4918), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 30, + ACTIONS(4920), 30, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -518789,35 +524463,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185500] = 9, + [188359] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, - STATE(5043), 1, + STATE(5103), 1, sym_heredoc_body, - STATE(6227), 1, - sym_do_end_block, - STATE(6381), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 9, + ACTIONS(4926), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 27, + ACTIONS(4928), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518829,8 +524497,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, @@ -518845,33 +524516,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185563] = 9, + [188414] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, - STATE(5044), 1, + STATE(5104), 1, sym_heredoc_body, - STATE(6227), 1, - sym_do_end_block, - STATE(6381), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 9, + ACTIONS(4910), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 27, + ACTIONS(4912), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518883,8 +524547,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, @@ -518899,153 +524566,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185626] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(8029), 1, - sym__start_of_tuple_type, - ACTIONS(8031), 1, - sym__start_of_named_tuple_type, - ACTIONS(8037), 1, - anon_sym_DASH_GT, - STATE(5045), 1, - sym_heredoc_body, - STATE(7816), 1, - sym__type, - STATE(7824), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8027), 2, - sym_self, - sym_underscore_type, - STATE(7867), 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(4656), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [185701] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(8029), 1, - sym__start_of_tuple_type, - ACTIONS(8031), 1, - sym__start_of_named_tuple_type, - ACTIONS(8040), 1, - anon_sym_DASH_GT, - STATE(5046), 1, - sym_heredoc_body, - STATE(7817), 1, - sym__type, - STATE(7824), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8027), 2, - sym_self, - sym_underscore_type, - STATE(7867), 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(4678), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [185776] = 9, + [188469] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, - STATE(5047), 1, + STATE(5105), 1, sym_heredoc_body, - STATE(6264), 1, - sym_do_end_block, - STATE(6266), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 9, + ACTIONS(4930), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 27, + ACTIONS(4932), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -519057,8 +524597,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, @@ -519073,21 +524616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185839] = 8, + [188524] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(8043), 1, - anon_sym_DASH_GT, - STATE(5048), 1, + STATE(5106), 1, sym_heredoc_body, - STATE(10600), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(4934), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -519097,8 +524635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 28, - sym__line_break, + ACTIONS(4936), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -519110,8 +524647,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, @@ -519123,36 +524663,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_then, - [185900] = 8, + [188579] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1101), 1, - sym__string_literal_start, - STATE(5036), 1, - aux_sym_chained_string_repeat1, - STATE(5049), 1, + STATE(5107), 1, sym_heredoc_body, - STATE(5652), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(4859), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(4861), 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, @@ -519165,6 +524700,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, @@ -519176,319 +524712,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, - [185961] = 21, + [188634] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5050), 1, + STATE(5108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(5168), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(5170), 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(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [186048] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, + sym__string_literal_start, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5051), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7562), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6459), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [186139] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, + anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7576), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7578), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5052), 1, + anon_sym_do, + [188689] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(5164), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(5166), 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(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6461), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [186230] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, + sym__string_literal_start, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5053), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7562), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6469), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [186321] = 10, + 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, + [188744] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - STATE(5054), 1, - sym_heredoc_body, + ACTIONS(8039), 1, + sym__string_literal_start, + STATE(5833), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + STATE(5110), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 25, + anon_sym_AMP_STAR, + ACTIONS(5660), 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, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + sym__binary_slash, + sym__binary_double_slash, + 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, @@ -519498,50 +524863,55 @@ 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, - [186386] = 8, + anon_sym_then, + [188803] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7987), 1, + anon_sym_PIPE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(5055), 1, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + STATE(5056), 1, + aux_sym_union_type_repeat1, + STATE(5111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(4896), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 29, + ACTIONS(4898), 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_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, @@ -519551,50 +524921,53 @@ 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_else, - anon_sym_when, - anon_sym_in, - [186447] = 8, + [188870] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7987), 1, + anon_sym_PIPE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, STATE(5056), 1, + aux_sym_union_type_repeat1, + STATE(5112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(4877), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 29, + ACTIONS(4879), 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_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, @@ -519604,296 +524977,265 @@ 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_else, - anon_sym_when, - anon_sym_in, - [186508] = 12, + [188937] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - STATE(5057), 1, + ACTIONS(8033), 1, + anon_sym_PIPE, + STATE(5113), 1, sym_heredoc_body, + STATE(5114), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7586), 4, + ACTIONS(4881), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4883), 29, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 19, - sym_binary_ampersand, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [186577] = 21, + [188996] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7558), 1, + ACTIONS(8042), 1, anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5058), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + STATE(5114), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(4875), 29, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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_else, - anon_sym_when, - anon_sym_in, - [186664] = 17, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [189053] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7558), 1, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7861), 1, + anon_sym_QMARK, + ACTIONS(8033), 1, anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5059), 1, + STATE(5113), 1, + aux_sym_union_type_repeat1, + STATE(5115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(4888), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(4890), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 13, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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_QMARK, + 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_else, - anon_sym_when, - anon_sym_in, - [186743] = 13, + [189120] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7853), 1, + anon_sym_LBRACK, + ACTIONS(7855), 1, anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5060), 1, + ACTIONS(7857), 1, + anon_sym_STAR, + ACTIONS(7861), 1, + anon_sym_QMARK, + ACTIONS(8033), 1, + anon_sym_PIPE, + STATE(5113), 1, + aux_sym_union_type_repeat1, + STATE(5116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7586), 4, + ACTIONS(4892), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4894), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5963), 18, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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_STAR_STAR, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [186814] = 11, + [189187] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - STATE(5061), 1, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, + STATE(5117), 1, sym_heredoc_body, + STATE(6385), 1, + sym_do_end_block, + STATE(6386), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7586), 4, + ACTIONS(5671), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5669), 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(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 21, - sym_binary_ampersand, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -519903,411 +525245,313 @@ 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, - [186881] = 15, + [189250] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5062), 1, + ACTIONS(7542), 1, + anon_sym_COLON, + STATE(5118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7586), 4, + ACTIONS(195), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(173), 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(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 17, - 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, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [186956] = 19, + anon_sym_do, + anon_sym_then, + [189307] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, + ACTIONS(8047), 1, + anon_sym_COMMA, + ACTIONS(8049), 1, anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7558), 1, + ACTIONS(8057), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(8059), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(8063), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(7590), 1, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, sym_binary_ampersand, - STATE(5063), 1, + STATE(5119), 1, sym_heredoc_body, + STATE(5123), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(8071), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(8055), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(8065), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(8083), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 11, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - 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, - [187039] = 20, + ACTIONS(5750), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [189402] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5064), 1, + ACTIONS(8047), 1, + anon_sym_COMMA, + STATE(5120), 1, sym_heredoc_body, + STATE(5123), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(5794), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(5750), 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, - ACTIONS(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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, - anon_sym_when, - anon_sym_in, - [187124] = 21, + anon_sym_do, + anon_sym_then, + [189461] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, + ACTIONS(8049), 1, anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7558), 1, + ACTIONS(8057), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(8059), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(8063), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(7576), 1, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(8077), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, sym_binary_ampersand, - STATE(5065), 1, + ACTIONS(8087), 1, + anon_sym_COMMA, + STATE(5051), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(8071), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(8055), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(8065), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(8083), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [187211] = 23, + ACTIONS(5856), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [189556] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5066), 1, + ACTIONS(8087), 1, + anon_sym_COMMA, + STATE(5051), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(5860), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + anon_sym_AMP_STAR, + ACTIONS(5856), 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, - ACTIONS(7588), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6205), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [187302] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(5067), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7562), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6247), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [187393] = 7, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [189615] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7957), 1, + ACTIONS(8087), 1, anon_sym_COMMA, - STATE(5068), 1, + STATE(5123), 1, sym_heredoc_body, - STATE(5087), 1, + STATE(5141), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, @@ -520321,7 +525565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 30, + ACTIONS(5856), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -520352,20 +525596,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [187452] = 7, + [189674] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8045), 1, - sym__string_literal_start, - STATE(5486), 1, - sym_string, + ACTIONS(8000), 1, + anon_sym_COMMA, + STATE(5124), 1, + sym_heredoc_body, + STATE(5141), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5069), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -520374,8 +525617,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 29, + ACTIONS(5888), 30, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -520388,7 +525632,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, @@ -520403,31 +525646,37 @@ 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, - [187511] = 7, + [189733] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8048), 1, - anon_sym_PIPE, - STATE(5070), 1, + ACTIONS(1075), 1, + sym__start_of_brace_block, + ACTIONS(8089), 1, + anon_sym_do, + STATE(5125), 1, sym_heredoc_body, - STATE(5071), 1, - aux_sym_union_type_repeat1, + STATE(5648), 1, + sym_do_end_block, + STATE(5675), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 9, - anon_sym_RBRACK, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 29, + ACTIONS(5669), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -520438,10 +525687,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, @@ -520453,31 +525700,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, - [187570] = 6, + [189796] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8050), 1, - anon_sym_PIPE, + ACTIONS(945), 1, + sym__start_of_brace_block, + ACTIONS(7897), 1, + anon_sym_do, + STATE(5126), 1, + sym_heredoc_body, + STATE(5261), 1, + sym_do_end_block, + STATE(5262), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5071), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 9, + ACTIONS(5731), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 29, + ACTIONS(5729), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -520489,10 +525740,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, @@ -520507,29 +525756,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187627] = 6, + [189859] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8053), 1, - anon_sym_PIPE, + STATE(5127), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5072), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 30, + ACTIONS(6047), 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, @@ -520540,11 +525788,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, @@ -520558,36 +525804,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187684] = 11, + anon_sym_do, + anon_sym_then, + [189914] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, - anon_sym_LBRACK, - ACTIONS(7850), 1, - anon_sym_DOT, - ACTIONS(7852), 1, - anon_sym_STAR, - ACTIONS(7856), 1, - anon_sym_QMARK, - ACTIONS(8048), 1, - anon_sym_PIPE, - STATE(5070), 1, - aux_sym_union_type_repeat1, - STATE(5073), 1, + STATE(5128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 8, - anon_sym_RBRACK, + ACTIONS(6053), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 26, + ACTIONS(6051), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -520599,6 +525838,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, @@ -520611,25 +525851,27 @@ 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, - [187751] = 11, + anon_sym_do, + anon_sym_then, + [189969] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, + ACTIONS(7853), 1, anon_sym_LBRACK, - ACTIONS(7850), 1, + ACTIONS(7855), 1, anon_sym_DOT, - ACTIONS(7852), 1, + ACTIONS(7857), 1, anon_sym_STAR, - ACTIONS(7856), 1, + ACTIONS(7861), 1, anon_sym_QMARK, - ACTIONS(8048), 1, + ACTIONS(8033), 1, anon_sym_PIPE, - STATE(5070), 1, + STATE(5113), 1, aux_sym_union_type_repeat1, - STATE(5074), 1, + STATE(5129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -520670,31 +525912,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187818] = 8, + [190036] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3267), 1, - sym__string_literal_start, - STATE(3374), 1, - sym_string, - STATE(5075), 1, + STATE(5113), 1, + aux_sym_union_type_repeat1, + STATE(5130), 1, sym_heredoc_body, - STATE(5076), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(4873), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 29, - sym__start_of_brace_block, + ACTIONS(4875), 29, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -520706,8 +525945,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, @@ -520719,33 +525960,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [187879] = 7, + [190093] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7879), 1, - sym__string_literal_start, - STATE(3374), 1, - sym_string, + STATE(5131), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5076), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 29, + ACTIONS(5951), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -520758,6 +525995,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, @@ -520773,32 +526011,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, - [187938] = 8, + anon_sym_then, + [190148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3267), 1, - sym__string_literal_start, - STATE(3374), 1, - sym_string, - STATE(5075), 1, - aux_sym_chained_string_repeat1, - STATE(5077), 1, + STATE(5132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(5925), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -520811,6 +526045,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, @@ -520826,197 +526061,170 @@ 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, - [187999] = 5, + anon_sym_then, + [190203] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5078), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5168), 9, - anon_sym_RBRACK, + ACTIONS(8049), 1, anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8057), 1, anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(5170), 31, - sym__start_of_brace_block, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 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(8085), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - sym__string_literal_start, + ACTIONS(8091), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + STATE(5133), 1, + sym_heredoc_body, + STATE(9293), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8071), 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_COLON2, - anon_sym_do, - [188054] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, - STATE(5079), 1, - sym_heredoc_body, - STATE(6325), 1, - sym_do_end_block, - STATE(6328), 1, - sym_brace_block, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5708), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 27, - sym__start_of_index_operator, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 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(5750), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [190298] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 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(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8075), 1, anon_sym_AMP_AMP, + ACTIONS(8077), 1, anon_sym_PIPE_PIPE, - [188117] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, - STATE(5080), 1, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + ACTIONS(8093), 1, + anon_sym_COMMA, + STATE(5134), 1, sym_heredoc_body, - STATE(6329), 1, - sym_do_end_block, - STATE(6332), 1, - sym_brace_block, + STATE(9369), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 27, - sym__start_of_index_operator, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 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, - [188180] = 11, + ACTIONS(5856), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [190393] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8033), 1, - anon_sym_PIPE, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - STATE(5042), 1, - aux_sym_union_type_repeat1, - STATE(5081), 1, + STATE(5135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(6023), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 27, + ACTIONS(6021), 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, @@ -521027,9 +526235,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, @@ -521040,39 +526248,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, - [188247] = 11, + anon_sym_do, + anon_sym_then, + [190448] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8033), 1, - anon_sym_PIPE, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - STATE(5042), 1, - aux_sym_union_type_repeat1, - STATE(5082), 1, + ACTIONS(7307), 1, + anon_sym_LPAREN2, + STATE(5136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(195), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 27, + ACTIONS(173), 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, @@ -521083,9 +526286,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, @@ -521096,32 +526299,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, - [188314] = 6, + anon_sym_do, + anon_sym_then, + [190505] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8064), 1, - anon_sym_COMMA, + ACTIONS(8095), 1, + anon_sym_LPAREN2, + STATE(5137), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5083), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 30, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4902), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521132,8 +526337,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, @@ -521147,19 +526355,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, - [188371] = 6, + [190562] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8067), 1, - anon_sym_LPAREN2, - STATE(5084), 1, + STATE(5138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(5923), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -521169,9 +526373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 30, + ACTIONS(5921), 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, @@ -521182,11 +526387,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, @@ -521200,37 +526403,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188428] = 11, + anon_sym_do, + anon_sym_then, + [190617] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8033), 1, - anon_sym_PIPE, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - STATE(5042), 1, - aux_sym_union_type_repeat1, - STATE(5085), 1, + ACTIONS(2881), 1, + sym__string_literal_start, + STATE(5110), 1, + aux_sym_chained_string_repeat1, + STATE(5139), 1, sym_heredoc_body, + STATE(5833), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 7, + ACTIONS(5688), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 27, + ACTIONS(5686), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521241,9 +526441,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, @@ -521254,33 +526454,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, - [188495] = 8, + anon_sym_then, + [190678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2879), 1, - sym__string_literal_start, - STATE(5086), 1, + STATE(5140), 1, sym_heredoc_body, - STATE(5095), 1, - aux_sym_chained_string_repeat1, - STATE(5486), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5968), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(5966), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -521308,20 +526506,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, - [188556] = 7, + [190733] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7957), 1, + ACTIONS(8097), 1, anon_sym_COMMA, - STATE(5083), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5087), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + STATE(5141), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -521330,7 +526528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 30, + ACTIONS(5970), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -521361,31 +526559,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [188615] = 8, + [190790] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8069), 1, - anon_sym_DOT, - ACTIONS(8071), 1, - sym__start_of_index_operator, - STATE(5088), 1, + STATE(5142), 1, sym_heredoc_body, - STATE(5296), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(5804), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 30, + ACTIONS(5802), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521414,23 +526609,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [188676] = 9, + [190845] = 9, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(995), 1, sym__start_of_brace_block, - ACTIONS(8035), 1, + ACTIONS(7983), 1, anon_sym_do, - STATE(5089), 1, + STATE(5143), 1, sym_heredoc_body, - STATE(6333), 1, + STATE(6540), 1, sym_do_end_block, - STATE(6336), 1, + STATE(6544), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 9, + ACTIONS(5700), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -521440,7 +526635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 27, + ACTIONS(5698), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -521468,15 +526663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188739] = 5, + [190908] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5090), 1, + ACTIONS(855), 1, + anon_sym_EQ, + STATE(5144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -521485,7 +526682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 32, + ACTIONS(173), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -521500,7 +526697,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -521518,24 +526714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [188794] = 9, + [190965] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, - STATE(5091), 1, + ACTIONS(8100), 1, + sym_regex_modifier, + STATE(5145), 1, sym_heredoc_body, - STATE(6337), 1, - sym_do_end_block, - STATE(6343), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 9, - anon_sym_RBRACK, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -521544,7 +526733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 27, + ACTIONS(5995), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -521556,6 +526747,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, @@ -521569,40 +526761,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, - [188857] = 11, + anon_sym_do, + anon_sym_then, + [191022] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8033), 1, - anon_sym_PIPE, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - STATE(5042), 1, - aux_sym_union_type_repeat1, - STATE(5092), 1, + ACTIONS(8102), 1, + sym_regex_modifier, + STATE(5146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + ACTIONS(6031), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 27, + ACTIONS(6029), 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, @@ -521613,9 +526798,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, @@ -521626,39 +526811,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, - [188924] = 11, + anon_sym_do, + anon_sym_then, + [191079] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8033), 1, - anon_sym_PIPE, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(8104), 1, + anon_sym_LPAREN, + ACTIONS(8106), 1, anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - STATE(5042), 1, - aux_sym_union_type_repeat1, - STATE(5093), 1, + STATE(5147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4892), 7, + ACTIONS(6043), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4894), 27, + ACTIONS(6039), 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, @@ -521669,9 +526850,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, @@ -521682,21 +526863,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, - [188991] = 7, + anon_sym_do, + anon_sym_then, + [191138] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7957), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5094), 1, + ACTIONS(8104), 1, + anon_sym_LPAREN, + STATE(5148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -521705,7 +526887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 30, + ACTIONS(6039), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -521720,6 +526902,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, @@ -521736,21 +526919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [189050] = 8, + [191195] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2879), 1, - sym__string_literal_start, - STATE(5069), 1, - aux_sym_chained_string_repeat1, - STATE(5095), 1, + ACTIONS(8108), 1, + anon_sym_LPAREN, + STATE(5149), 1, sym_heredoc_body, - STATE(5486), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -521759,8 +526938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 29, + ACTIONS(6061), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -521788,89 +526968,101 @@ 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, - [189111] = 6, + [191252] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5042), 1, - aux_sym_union_type_repeat1, - STATE(5096), 1, + ACTIONS(8000), 1, + anon_sym_COMMA, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5070), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4875), 30, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 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, - [189168] = 11, + ACTIONS(5750), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [191347] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, - anon_sym_LBRACK, - ACTIONS(7850), 1, - anon_sym_DOT, - ACTIONS(7852), 1, - anon_sym_STAR, - ACTIONS(7856), 1, - anon_sym_QMARK, - ACTIONS(8048), 1, - anon_sym_PIPE, - STATE(5070), 1, + STATE(5056), 1, aux_sym_union_type_repeat1, - STATE(5097), 1, + STATE(5151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 8, - anon_sym_RBRACK, + ACTIONS(4873), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4936), 26, + ACTIONS(4875), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521881,8 +527073,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, @@ -521893,18 +527088,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, - [189235] = 5, + [191404] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5098), 1, + STATE(5152), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(5816), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -521913,7 +527108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 32, + ACTIONS(5814), 32, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -521927,8 +527122,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_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -521946,36 +527141,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [189290] = 11, + [191459] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, - anon_sym_LBRACK, - ACTIONS(7850), 1, - anon_sym_DOT, - ACTIONS(7852), 1, - anon_sym_STAR, - ACTIONS(7856), 1, - anon_sym_QMARK, - ACTIONS(8048), 1, - anon_sym_PIPE, - STATE(5070), 1, - aux_sym_union_type_repeat1, - STATE(5099), 1, + ACTIONS(8110), 1, + anon_sym_of, + STATE(5153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 8, - anon_sym_RBRACK, + ACTIONS(5830), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 26, + ACTIONS(5826), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -521987,6 +527174,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, @@ -521999,25 +527187,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, - [189357] = 8, + anon_sym_do, + anon_sym_then, + [191516] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - STATE(5100), 1, + ACTIONS(8112), 1, + sym_regex_modifier, + STATE(5154), 1, sym_heredoc_body, - STATE(5490), 1, - sym_do_end_block, - STATE(5582), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 9, - anon_sym_RBRACK, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -522026,7 +527211,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 28, + ACTIONS(5832), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -522038,6 +527225,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, @@ -522051,67 +527239,67 @@ static const uint16_t ts_small_parse_table[] = { 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, - [189418] = 21, + anon_sym_then, + [191573] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, + ACTIONS(6520), 1, anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - STATE(5101), 1, + STATE(5155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 9, + ACTIONS(6518), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -522121,286 +527309,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [189505] = 6, + [191660] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7382), 1, - anon_sym_COLON, - STATE(5102), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 8, - anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(173), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(7406), 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, - [189562] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7961), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7969), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7973), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7983), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7985), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(8073), 1, - anon_sym_COMMA, - STATE(5103), 1, + STATE(5156), 1, sym_heredoc_body, - STATE(5107), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [189657] = 7, + ACTIONS(6083), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [191751] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8073), 1, - anon_sym_COMMA, - STATE(5104), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5157), 1, sym_heredoc_body, - STATE(5107), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5737), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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, - anon_sym_do, - anon_sym_then, - [189716] = 25, + ACTIONS(6085), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [191842] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7961), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7969), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7973), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7983), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7985), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(8075), 1, - anon_sym_COMMA, - STATE(5105), 1, + STATE(5158), 1, sym_heredoc_body, - STATE(5108), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [189811] = 7, + ACTIONS(6095), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [191933] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8075), 1, - anon_sym_COMMA, - STATE(5106), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + STATE(5159), 1, sym_heredoc_body, - STATE(5108), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5811), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6125), 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_SEMI, + 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, @@ -522410,49 +527562,50 @@ 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, - [189870] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [191998] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8075), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5107), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + STATE(5160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6129), 29, sym_binary_plus, sym_binary_minus, sym_binary_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_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, @@ -522462,49 +527615,50 @@ 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, - [189929] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192059] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8077), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5108), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + STATE(5161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6133), 29, sym_binary_plus, sym_binary_minus, sym_binary_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_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, @@ -522514,23 +527668,80 @@ 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, + anon_sym_when, + anon_sym_in, + [192120] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + STATE(5162), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7601), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 19, + sym_binary_ampersand, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + 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_then, - [189988] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192189] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(855), 1, - anon_sym_EQ, - STATE(5109), 1, + ACTIONS(8114), 1, + sym_regex_modifier, + STATE(5163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -522539,7 +527750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 31, + ACTIONS(5838), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -522571,287 +527782,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [190045] = 25, + [192246] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(6143), 1, anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7969), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7973), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(8079), 1, - anon_sym_COMMA, - STATE(5110), 1, + STATE(5164), 1, sym_heredoc_body, - STATE(5114), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5737), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [190140] = 7, + ACTIONS(6141), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192333] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8079), 1, - anon_sym_COMMA, - STATE(5111), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5165), 1, sym_heredoc_body, - STATE(5114), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5737), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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(6145), 13, + anon_sym_RPAREN, + 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_end, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [190199] = 25, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192412] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(8081), 1, - anon_sym_COMMA, - STATE(5112), 1, + STATE(5166), 1, sym_heredoc_body, - STATE(5116), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5811), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [190294] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8081), 1, - anon_sym_COMMA, - STATE(5113), 1, - sym_heredoc_body, - STATE(5116), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5876), 8, + ACTIONS(6151), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5811), 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, + ACTIONS(6149), 18, + 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_do, - anon_sym_then, - [190353] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192483] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8081), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5114), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + STATE(5167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5811), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 21, + sym_binary_ampersand, + 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, @@ -522861,178 +528018,346 @@ 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, - [190412] = 8, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192550] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1871), 1, - anon_sym_COLON, - ACTIONS(7376), 1, - anon_sym_COLON_COLON, - STATE(4492), 1, - aux_sym_constant_repeat1, - STATE(5115), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4857), 28, - sym__start_of_index_operator, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 17, + anon_sym_RPAREN, + 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_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_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190473] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192625] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8083), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5116), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5866), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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(6171), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, 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, + [192708] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5170), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6175), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [190532] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192793] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5117), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5006), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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(6361), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192880] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5172), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7595), 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, - [190587] = 6, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6459), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [192971] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8085), 1, - sym_regex_modifier, - STATE(5118), 1, + ACTIONS(8116), 1, + anon_sym_of, + STATE(5173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -523041,7 +528366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 31, + ACTIONS(5844), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -523073,33 +528398,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [190644] = 9, + [193028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2997), 1, - sym__string_literal_start, - ACTIONS(8087), 1, - anon_sym_COLON, - STATE(5119), 1, + STATE(5174), 1, sym_heredoc_body, - STATE(5259), 1, - aux_sym_chained_string_repeat1, - STATE(5795), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, - anon_sym_RBRACK, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(5850), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523111,6 +528430,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, @@ -523124,81 +528444,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190707] = 6, + anon_sym_do, + anon_sym_then, + [193083] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8089), 1, - sym_regex_modifier, - STATE(5120), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5926), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7617), 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(6491), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [193174] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + sym_binary_ampersand, + STATE(5176), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7595), 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, - [190764] = 7, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6373), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [193265] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8091), 1, - anon_sym_LPAREN, - ACTIONS(8093), 1, - anon_sym_DOT, - STATE(5121), 1, + STATE(5177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(5864), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 31, + ACTIONS(5862), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -523230,80 +528634,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [190823] = 6, + [193320] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8091), 1, - anon_sym_LPAREN, - STATE(5122), 1, + ACTIONS(8000), 1, + anon_sym_COMMA, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5124), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5886), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5856), 5, + 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, - [190880] = 6, + [193415] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8095), 1, - anon_sym_LPAREN, - STATE(5123), 1, + ACTIONS(7987), 1, + anon_sym_PIPE, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, + anon_sym_DOT, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + STATE(5056), 1, + aux_sym_union_type_repeat1, + STATE(5179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(4859), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4861), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -523314,9 +528745,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, @@ -523327,31 +528758,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, - anon_sym_then, - [190937] = 5, + [193482] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5124), 1, + ACTIONS(8118), 1, + anon_sym_of, + STATE(5180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 10, - anon_sym_RBRACK, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 30, + ACTIONS(5873), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523363,11 +528793,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, @@ -523379,25 +528807,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, - [190992] = 8, + anon_sym_do, + anon_sym_then, + [193539] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - STATE(5125), 1, + ACTIONS(8120), 1, + anon_sym_of, + STATE(5181), 1, sym_heredoc_body, - STATE(5492), 1, - sym_do_end_block, - STATE(5493), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 9, - anon_sym_RBRACK, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -523406,7 +528830,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 28, + ACTIONS(5744), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523418,6 +528844,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, @@ -523431,25 +528858,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, - [191053] = 8, + anon_sym_then, + [193596] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(8097), 1, - anon_sym_DASH_GT, - STATE(5126), 1, + STATE(5182), 1, sym_heredoc_body, - STATE(10535), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -523459,10 +528880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 28, + ACTIONS(5881), 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, @@ -523473,6 +528894,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, @@ -523488,22 +528911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [191114] = 8, + anon_sym_then, + [193651] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - STATE(5127), 1, + ACTIONS(8122), 1, + anon_sym_LPAREN, + STATE(5183), 1, sym_heredoc_body, - STATE(5494), 1, - sym_do_end_block, - STATE(5495), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 9, - anon_sym_RBRACK, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -523512,7 +528931,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 28, + ACTIONS(5901), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523524,6 +528945,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, @@ -523537,107 +528959,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_do, - [191175] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7957), 1, - anon_sym_COMMA, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5087), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5128), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7993), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5737), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, anon_sym_do, anon_sym_then, - [191270] = 9, + [193708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - ACTIONS(8099), 1, - anon_sym_do, - STATE(5129), 1, + STATE(5184), 1, sym_heredoc_body, - STATE(5575), 1, - sym_do_end_block, - STATE(5594), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 9, - anon_sym_RBRACK, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 27, + ACTIONS(5913), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523649,6 +528995,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, @@ -523662,36 +529009,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, - [191333] = 9, + anon_sym_do, + anon_sym_then, + [193763] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - ACTIONS(8099), 1, - anon_sym_do, - STATE(5130), 1, + STATE(5185), 1, sym_heredoc_body, - STATE(5575), 1, - sym_do_end_block, - STATE(5594), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 9, - anon_sym_RBRACK, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 27, + ACTIONS(5917), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523703,6 +529045,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, @@ -523716,25 +529059,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, - [191396] = 8, + anon_sym_do, + anon_sym_then, + [193818] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - STATE(5131), 1, + ACTIONS(3267), 1, + sym__string_literal_start, + STATE(3374), 1, + sym_string, + STATE(5186), 1, sym_heredoc_body, - STATE(5496), 1, - sym_do_end_block, - STATE(5505), 1, - sym_brace_block, + STATE(5187), 1, + aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 9, - anon_sym_RBRACK, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -523743,7 +529086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 28, + ACTIONS(5686), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523768,30 +529112,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, - [191457] = 5, + [193879] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5132), 1, - sym_heredoc_body, + ACTIONS(7796), 1, + sym__string_literal_start, + STATE(3374), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4922), 10, - anon_sym_RBRACK, + STATE(5187), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4924), 30, + ACTIONS(5660), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523803,11 +529151,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, @@ -523819,25 +529164,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, - [191512] = 8, + anon_sym_COLON2, + anon_sym_do, + [193938] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - STATE(5133), 1, + ACTIONS(3267), 1, + sym__string_literal_start, + STATE(3374), 1, + sym_string, + STATE(5186), 1, + aux_sym_chained_string_repeat1, + STATE(5188), 1, sym_heredoc_body, - STATE(5515), 1, - sym_do_end_block, - STATE(5531), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 9, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -523846,7 +529191,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 28, + ACTIONS(173), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523871,20 +529217,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, - [191573] = 5, + [193999] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5134), 1, + STATE(5189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 10, - anon_sym_RBRACK, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -523894,7 +529239,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 30, + ACTIONS(6069), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523906,11 +529253,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, @@ -523922,29 +529267,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, - [191628] = 5, + anon_sym_do, + anon_sym_then, + [194054] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5135), 1, + ACTIONS(8124), 1, + anon_sym_EQ, + STATE(5190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 10, - anon_sym_RBRACK, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 30, + ACTIONS(5937), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523956,11 +529304,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, @@ -523972,39 +529318,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, - [191683] = 11, + anon_sym_do, + anon_sym_then, + [194111] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7848), 1, - anon_sym_LBRACK, - ACTIONS(7850), 1, - anon_sym_DOT, - ACTIONS(7852), 1, - anon_sym_STAR, - ACTIONS(7856), 1, - anon_sym_QMARK, - ACTIONS(8048), 1, - anon_sym_PIPE, - STATE(5070), 1, - aux_sym_union_type_repeat1, - STATE(5136), 1, + ACTIONS(8126), 1, + anon_sym_of, + STATE(5191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 8, - anon_sym_RBRACK, + ACTIONS(5964), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 26, + ACTIONS(5960), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524016,6 +529355,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, @@ -524028,31 +529368,33 @@ 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, - [191750] = 6, + anon_sym_do, + anon_sym_then, + [194168] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5070), 1, - aux_sym_union_type_repeat1, - STATE(5137), 1, + ACTIONS(8128), 1, + anon_sym_of, + STATE(5192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 10, - anon_sym_RBRACK, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 29, + ACTIONS(5981), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524064,10 +529406,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, @@ -524079,19 +529420,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, - [191807] = 5, + anon_sym_do, + anon_sym_then, + [194225] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5138), 1, + STATE(5193), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 10, - anon_sym_RBRACK, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524101,7 +529442,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 30, + ACTIONS(6017), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524113,11 +529456,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, @@ -524129,29 +529470,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, - [191862] = 5, + anon_sym_do, + anon_sym_then, + [194280] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5139), 1, + ACTIONS(8000), 1, + anon_sym_COMMA, + STATE(5124), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 10, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 30, + ACTIONS(5856), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524163,11 +529509,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, @@ -524179,19 +529522,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, - [191917] = 5, + anon_sym_do, + anon_sym_then, + [194339] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5140), 1, + STATE(5195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 10, - anon_sym_RBRACK, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524201,7 +529544,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4928), 30, + ACTIONS(6055), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524213,11 +529558,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, @@ -524229,27 +529572,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [191972] = 5, + anon_sym_do, + anon_sym_then, + [194394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5141), 1, + STATE(5196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 32, + ACTIONS(5796), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -524263,7 +529608,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, @@ -524282,16 +529626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [192027] = 5, + [194449] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5142), 1, + STATE(5197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 10, - anon_sym_RBRACK, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524301,7 +529644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4908), 30, + ACTIONS(5806), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524313,11 +529658,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, @@ -524329,19 +529672,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, - [192082] = 5, + anon_sym_do, + anon_sym_then, + [194504] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5143), 1, + STATE(5198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 10, - anon_sym_RBRACK, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524351,7 +529694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4932), 30, + ACTIONS(5894), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524363,11 +529708,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, @@ -524379,19 +529722,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, - [192137] = 5, + anon_sym_do, + anon_sym_then, + [194559] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5144), 1, + STATE(5199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 10, - anon_sym_RBRACK, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524401,7 +529744,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 30, + ACTIONS(6013), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524413,11 +529758,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, @@ -524429,19 +529772,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, - [192192] = 5, + anon_sym_do, + anon_sym_then, + [194614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5145), 1, + STATE(5200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 10, - anon_sym_RBRACK, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524451,7 +529794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 30, + ACTIONS(5947), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524463,11 +529808,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, @@ -524479,19 +529822,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, - [192247] = 5, + anon_sym_do, + anon_sym_then, + [194669] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5146), 1, + STATE(5201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 10, - anon_sym_RBRACK, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524501,7 +529844,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 30, + ACTIONS(5810), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524513,11 +529858,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, @@ -524529,31 +529872,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [192302] = 7, + anon_sym_do, + anon_sym_then, + [194724] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7957), 1, - anon_sym_COMMA, - STATE(5094), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5147), 1, + STATE(5202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 30, + ACTIONS(6025), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -524568,6 +529909,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, @@ -524584,15 +529926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [192361] = 5, + [194779] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5148), 1, + STATE(5203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524601,7 +529943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 31, + ACTIONS(5909), 32, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -524628,87 +529970,80 @@ 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, - [192415] = 23, + [194834] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5149), 1, + ACTIONS(1099), 1, + sym__string_literal_start, + STATE(5204), 1, sym_heredoc_body, + STATE(5215), 1, + aux_sym_chained_string_repeat1, + STATE(5754), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(5688), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(5686), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6508), 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, - [192505] = 5, + [194895] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5150), 1, + ACTIONS(1099), 1, + sym__string_literal_start, + STATE(5204), 1, + aux_sym_chained_string_repeat1, + STATE(5205), 1, sym_heredoc_body, + STATE(5754), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524717,10 +530052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 31, - sym__line_break, + ACTIONS(173), 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, @@ -524731,7 +530066,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, @@ -524748,16 +530082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [192559] = 5, + [194956] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5151), 1, + STATE(5206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524766,7 +530099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 31, + ACTIONS(6035), 32, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -524793,136 +530126,211 @@ 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, - [192613] = 23, + [195011] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, + STATE(5207), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5671), 9, anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, anon_sym_DOT, - ACTIONS(7967), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7983), 1, + ACTIONS(5669), 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(7985), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + anon_sym_do, + anon_sym_then, + [195066] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(7587), 1, + anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, sym_binary_ampersand, - STATE(5152), 1, + STATE(5208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6247), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [192703] = 5, + ACTIONS(6253), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [195153] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5153), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + ACTIONS(8130), 1, + anon_sym_COMMA, + STATE(5209), 1, sym_heredoc_body, + STATE(5213), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6249), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5750), 5, + 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, - [192757] = 5, + [195248] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5154), 1, + ACTIONS(8130), 1, + anon_sym_COMMA, + STATE(5210), 1, sym_heredoc_body, + STATE(5213), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -524931,7 +530339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 31, + ACTIONS(5750), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -524946,7 +530354,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, @@ -524963,64 +530370,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [192811] = 5, + [195307] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5155), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + ACTIONS(8132), 1, + anon_sym_COMMA, + STATE(5211), 1, sym_heredoc_body, + STATE(5214), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6257), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5856), 5, + 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, - [192865] = 5, + [195402] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5156), 1, + ACTIONS(8132), 1, + anon_sym_COMMA, + STATE(5212), 1, sym_heredoc_body, + STATE(5214), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525029,7 +530461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 31, + ACTIONS(5856), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -525044,7 +530476,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, @@ -525061,15 +530492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [192919] = 5, + [195461] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5157), 1, + ACTIONS(8132), 1, + anon_sym_COMMA, + STATE(5141), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525078,7 +530513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 31, + ACTIONS(5856), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -525093,7 +530528,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, @@ -525110,15 +530544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [192973] = 5, + [195520] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5158), 1, + ACTIONS(8134), 1, + anon_sym_COMMA, + STATE(5141), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525127,7 +530565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 31, + ACTIONS(5888), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -525142,7 +530580,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, @@ -525159,15 +530596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [193027] = 5, + [195579] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5159), 1, - sym_heredoc_body, + ACTIONS(8136), 1, + sym__string_literal_start, + STATE(5754), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + STATE(5215), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525176,10 +530618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 31, - sym__line_break, + 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, @@ -525190,7 +530632,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, @@ -525207,25 +530648,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193081] = 5, + [195638] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5160), 1, + STATE(5216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 31, + ACTIONS(5818), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -525257,15 +530698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [193135] = 5, + [195693] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5161), 1, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, + STATE(5217), 1, sym_heredoc_body, + STATE(5902), 1, + sym_do_end_block, + STATE(5903), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(5731), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525274,9 +530724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5729), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -525288,7 +530736,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, @@ -525302,19 +530749,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, - [193189] = 5, + [195756] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5162), 1, + ACTIONS(8000), 1, + anon_sym_COMMA, + STATE(5070), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525323,7 +530773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 31, + ACTIONS(5750), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -525338,7 +530788,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, @@ -525355,24 +530804,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [193243] = 5, + [195815] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5163), 1, + STATE(5219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(5868), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 31, + ACTIONS(5866), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -525404,15 +530854,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [193297] = 5, + [195870] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5164), 1, + ACTIONS(1075), 1, + sym__start_of_brace_block, + STATE(5220), 1, sym_heredoc_body, + STATE(6205), 1, + sym_do_end_block, + STATE(6206), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525421,9 +530877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 31, - sym__line_break, + ACTIONS(5715), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -525434,8 +530890,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, anon_sym_CARET, @@ -525448,30 +530902,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_then, - [193351] = 5, + anon_sym_do, + [195930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5165), 1, + STATE(5221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(6071), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 31, - sym__line_break, + ACTIONS(6069), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -525484,7 +530938,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, @@ -525498,23 +530951,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, - anon_sym_then, - [193405] = 7, + [195984] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8101), 1, - anon_sym_COMMA, - STATE(5166), 1, + ACTIONS(893), 1, + anon_sym_EQ, + STATE(5222), 1, sym_heredoc_body, - STATE(5184), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 9, + ACTIONS(195), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -525524,7 +530975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + ACTIONS(173), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -525537,6 +530988,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, @@ -525553,21 +531005,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [193463] = 8, + [196040] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - STATE(5167), 1, - sym_heredoc_body, - STATE(5844), 1, - sym_do_end_block, - STATE(5847), 1, - sym_brace_block, + ACTIONS(8139), 1, + sym__string_literal_start, + STATE(5973), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + STATE(5223), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525576,9 +531028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 28, + ACTIONS(5660), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -525602,34 +531053,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, - [193523] = 8, + [196098] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8103), 1, - anon_sym_DOT, - ACTIONS(8105), 1, - sym__start_of_index_operator, - STATE(5168), 1, + STATE(5224), 1, sym_heredoc_body, - STATE(5732), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5816), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 28, + ACTIONS(5814), 30, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -525640,6 +531087,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, @@ -525657,23 +531105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [193583] = 9, + [196152] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, - STATE(5169), 1, + STATE(5225), 1, sym_heredoc_body, - STATE(6754), 1, - sym_brace_block, - STATE(6911), 1, - sym_do_end_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525682,9 +531122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 27, + ACTIONS(6369), 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, @@ -525695,6 +531136,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, @@ -525710,21 +531152,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [193645] = 8, + anon_sym_do, + anon_sym_then, + [196206] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, + ACTIONS(1075), 1, sym__start_of_brace_block, - STATE(5170), 1, + ACTIONS(8089), 1, + anon_sym_do, + STATE(5226), 1, sym_heredoc_body, - STATE(5865), 1, + STATE(5648), 1, sym_do_end_block, - STATE(5866), 1, + STATE(5675), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525733,7 +531179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 28, + ACTIONS(5729), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -525761,33 +531207,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [193705] = 8, + [196268] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - STATE(5171), 1, + STATE(5227), 1, sym_heredoc_body, - STATE(5867), 1, - sym_do_end_block, - STATE(5868), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6019), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 28, + 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, @@ -525811,122 +531252,298 @@ static const uint16_t ts_small_parse_table[] = { 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, - [193765] = 8, + [196322] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - STATE(5172), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5228), 1, sym_heredoc_body, - STATE(5869), 1, - sym_do_end_block, - STATE(5870), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5719), 28, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6489), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [196412] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5229), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8065), 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(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6509), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_do, - [193825] = 8, + anon_sym_then, + [196502] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - STATE(5173), 1, + ACTIONS(5794), 1, + anon_sym_RBRACK, + ACTIONS(8142), 1, + anon_sym_COMMA, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + STATE(5230), 1, sym_heredoc_body, - STATE(5872), 1, - sym_do_end_block, - STATE(5873), 1, - sym_brace_block, + STATE(5234), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8150), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5719), 28, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [196598] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5860), 1, + anon_sym_RBRACK, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8182), 1, + anon_sym_COMMA, + STATE(5231), 1, + sym_heredoc_body, + STATE(5235), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8160), 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, - [193885] = 5, + ACTIONS(8176), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8178), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [196694] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5174), 1, + ACTIONS(8142), 1, + anon_sym_COMMA, + STATE(5232), 1, sym_heredoc_body, + STATE(5234), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(5794), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -525935,8 +531552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 31, - sym__line_break, + ACTIONS(5750), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -525949,8 +531565,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, @@ -525963,19 +531577,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, - [193939] = 5, + [196752] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5175), 1, + ACTIONS(8182), 1, + anon_sym_COMMA, + STATE(5233), 1, sym_heredoc_body, + STATE(5235), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 9, + ACTIONS(5860), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -525985,7 +531603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 30, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -525998,7 +531616,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, @@ -526014,17 +531631,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [193993] = 5, + [196810] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5176), 1, + ACTIONS(8182), 1, + anon_sym_COMMA, + STATE(5234), 1, sym_heredoc_body, + STATE(5341), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(5860), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -526033,8 +531654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 31, - sym__line_break, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526047,8 +531667,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, @@ -526061,23 +531679,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, - [194047] = 7, + [196868] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8109), 1, + ACTIONS(8184), 1, anon_sym_COMMA, - STATE(5083), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5177), 1, + STATE(5235), 1, sym_heredoc_body, + STATE(5341), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5892), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -526086,8 +531705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 29, - sym__line_break, + ACTIONS(5888), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526100,7 +531718,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, @@ -526113,33 +531730,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_do, - [194105] = 7, + [196926] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8111), 1, - sym__string_literal_start, - STATE(5795), 1, - sym_string, + STATE(5236), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5178), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 9, + ACTIONS(5671), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 27, + ACTIONS(5669), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -526167,32 +531782,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [194163] = 8, + anon_sym_do, + [196980] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1953), 1, - anon_sym_COLON, - ACTIONS(7592), 1, - anon_sym_COLON_COLON, - STATE(4645), 1, - aux_sym_constant_repeat1, - STATE(5179), 1, + STATE(5237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 8, + ACTIONS(5820), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4857), 28, + ACTIONS(5818), 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, @@ -526215,31 +531827,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [194223] = 5, + anon_sym_do, + [197034] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5180), 1, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, + anon_sym_DOT, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + ACTIONS(8186), 1, + anon_sym_PIPE, + STATE(5238), 1, sym_heredoc_body, + STATE(5472), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(4896), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_EQ, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 30, - sym__line_break, + ACTIONS(4898), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -526250,10 +531873,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_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -526264,31 +531885,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_then, - [194277] = 5, + [197100] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5181), 1, + STATE(5239), 1, sym_heredoc_body, + STATE(5472), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 9, - anon_sym_RBRACK, + ACTIONS(4873), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 30, - sym__start_of_brace_block, + ACTIONS(4875), 29, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -526299,9 +531920,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LPAREN, + 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, @@ -526313,31 +531935,105 @@ static const uint16_t ts_small_parse_table[] = { 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, - [194331] = 5, + [197156] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5182), 1, + ACTIONS(8190), 1, + anon_sym_COMMA, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, + anon_sym_QMARK, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8222), 1, + anon_sym_then, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(358), 1, + sym__terminator, + STATE(5240), 1, sym_heredoc_body, + STATE(9494), 1, + aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, - anon_sym_DOT_DOT, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8228), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [197254] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6987), 1, + sym__start_of_index_operator, + ACTIONS(8232), 1, anon_sym_DOT, + ACTIONS(8234), 1, + anon_sym_EQ, + STATE(3568), 1, + sym__implicit_index_operator, + STATE(5241), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5721), 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(6461), 31, - sym__line_break, + ACTIONS(5719), 28, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -526348,7 +532044,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, @@ -526364,31 +532059,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_then, - [194385] = 7, + [197316] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8114), 1, - anon_sym_COMMA, - STATE(5183), 1, + STATE(5242), 1, sym_heredoc_body, - STATE(5194), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 9, + ACTIONS(5820), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(5818), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526401,6 +532093,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, @@ -526417,20 +532110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [194443] = 7, + [197370] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8114), 1, - anon_sym_COMMA, - STATE(5184), 1, + STATE(5243), 1, sym_heredoc_body, - STATE(5282), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 9, - anon_sym_RBRACK, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -526439,7 +532127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(6522), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526452,6 +532141,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, @@ -526464,38 +532155,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, anon_sym_do, - [194501] = 9, + anon_sym_then, + [197424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3097), 1, - sym__string_literal_start, - ACTIONS(8116), 1, - anon_sym_COLON, - STATE(5185), 1, + STATE(5244), 1, sym_heredoc_body, - STATE(5551), 1, - aux_sym_chained_string_repeat1, - STATE(6582), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5824), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(5822), 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, @@ -526519,27 +532204,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, - [194563] = 5, + anon_sym_do, + [197478] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5186), 1, + STATE(5245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(6011), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 31, - sym__line_break, + ACTIONS(6009), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526552,7 +532240,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, @@ -526566,145 +532253,164 @@ static const uint16_t ts_small_parse_table[] = { 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, - [194617] = 23, + [197532] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(8049), 1, anon_sym_DOT_DOT, - ACTIONS(7961), 1, + ACTIONS(8051), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(8057), 1, anon_sym_PIPE, - ACTIONS(7969), 1, + ACTIONS(8059), 1, anon_sym_CARET, - ACTIONS(7973), 1, + ACTIONS(8063), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(7983), 1, + ACTIONS(8073), 1, anon_sym_QMARK, - ACTIONS(7985), 1, + ACTIONS(8075), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, + ACTIONS(8077), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + ACTIONS(8079), 1, sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(8085), 1, sym_binary_ampersand, - STATE(5187), 1, + STATE(5246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(8071), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(8055), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + ACTIONS(8065), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(8083), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5934), 6, + ACTIONS(6227), 6, sym__line_break, sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, anon_sym_do, anon_sym_then, - [194707] = 5, + [197622] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5188), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5862), 30, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6261), 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_COLON, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [194761] = 5, + anon_sym_then, + [197712] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5189), 1, + STATE(5248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 9, + ACTIONS(5945), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 30, + ACTIONS(5943), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526729,97 +532435,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, - [194815] = 26, + [197766] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5860), 1, - anon_sym_RBRACK, - ACTIONS(8101), 1, - anon_sym_COMMA, - ACTIONS(8118), 1, + ACTIONS(8049), 1, anon_sym_DOT_DOT, - ACTIONS(8120), 1, + ACTIONS(8051), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(8126), 1, + ACTIONS(8057), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8059), 1, anon_sym_CARET, - ACTIONS(8132), 1, + ACTIONS(8063), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(8142), 1, + ACTIONS(8073), 1, anon_sym_QMARK, - ACTIONS(8144), 1, + ACTIONS(8075), 1, anon_sym_AMP_AMP, - ACTIONS(8146), 1, + ACTIONS(8077), 1, anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(8079), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8085), 1, sym_binary_ampersand, - STATE(5184), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5190), 1, + STATE(5249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8130), 2, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8136), 2, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, + ACTIONS(8071), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8124), 3, + ACTIONS(8055), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8134), 4, + ACTIONS(8065), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8083), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [194911] = 8, + ACTIONS(5970), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [197856] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(8156), 1, - anon_sym_DASH_GT, - STATE(5191), 1, + STATE(5250), 1, sym_heredoc_body, - STATE(10666), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 10, + ACTIONS(6057), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -526830,7 +532526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 26, + ACTIONS(6055), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -526842,6 +532539,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, @@ -526857,29 +532555,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [194971] = 6, + anon_sym_do, + [197910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8158), 1, - sym_regex_modifier, - STATE(5192), 1, + STATE(5251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 9, - anon_sym_RBRACK, + ACTIONS(4930), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 29, - sym__start_of_brace_block, + ACTIONS(4932), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -526890,8 +532587,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, @@ -526903,35 +532603,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [195027] = 7, + [197964] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8160), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5193), 1, + STATE(5252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(4934), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 29, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4936), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -526942,8 +532636,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, @@ -526957,32 +532654,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [195085] = 7, + [198018] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8162), 1, - anon_sym_COMMA, - STATE(5194), 1, + STATE(5253), 1, sym_heredoc_body, - STATE(5282), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 9, - anon_sym_RBRACK, + ACTIONS(4900), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, - sym__start_of_brace_block, + ACTIONS(4902), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -526993,7 +532685,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, @@ -527005,34 +532701,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, - [195143] = 7, + [198072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8164), 1, - anon_sym_PIPE, - STATE(5195), 1, + STATE(5254), 1, sym_heredoc_body, - STATE(5196), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4880), 8, + ACTIONS(5798), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4882), 29, + ACTIONS(5796), 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, @@ -527043,10 +532735,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, @@ -527058,31 +532748,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, - [195201] = 6, + anon_sym_do, + [198126] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8166), 1, - anon_sym_PIPE, + STATE(5255), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5196), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4873), 8, + ACTIONS(5979), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 29, + ACTIONS(5977), 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, @@ -527093,10 +532784,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, @@ -527108,37 +532797,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [195257] = 11, + anon_sym_do, + [198180] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - ACTIONS(8164), 1, + ACTIONS(8057), 1, anon_sym_PIPE, - STATE(5195), 1, - aux_sym_union_type_repeat1, - STATE(5197), 1, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + ACTIONS(8236), 1, + anon_sym_COMMA, + STATE(5256), 1, sym_heredoc_body, + STATE(5354), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4888), 7, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5750), 4, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [198274] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1947), 1, + anon_sym_COLON, + ACTIONS(7659), 1, + anon_sym_COLON_COLON, + STATE(4802), 1, + aux_sym_constant_repeat1, + STATE(5257), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4855), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4890), 26, + ACTIONS(4857), 28, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -527163,37 +532918,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, - [195323] = 11, + [198334] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - ACTIONS(8164), 1, - anon_sym_PIPE, - STATE(5195), 1, - aux_sym_union_type_repeat1, - STATE(5198), 1, + ACTIONS(3107), 1, + sym__string_literal_start, + ACTIONS(8238), 1, + anon_sym_COLON, + STATE(5258), 1, sym_heredoc_body, + STATE(5835), 1, + aux_sym_chained_string_repeat1, + STATE(6657), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4896), 7, + ACTIONS(195), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4898), 26, + ACTIONS(173), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -527218,17 +532972,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, - [195389] = 5, + [198396] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5199), 1, + ACTIONS(5794), 1, + anon_sym_RBRACK, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8240), 1, + anon_sym_COMMA, + STATE(5259), 1, sym_heredoc_body, + STATE(5487), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8178), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [198492] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8236), 1, + anon_sym_COMMA, + STATE(5260), 1, + sym_heredoc_body, + STATE(5354), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -527237,7 +533066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 31, + ACTIONS(5750), 29, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -527252,7 +533081,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, @@ -527268,85 +533096,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [195443] = 15, + [198550] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(8029), 1, - sym__start_of_tuple_type, - ACTIONS(8031), 1, - sym__start_of_named_tuple_type, - ACTIONS(8169), 1, - anon_sym_LPAREN, - ACTIONS(8171), 1, - anon_sym_DASH_GT, - STATE(5200), 1, + STATE(5261), 1, sym_heredoc_body, - STATE(7824), 1, - sym_constant, - STATE(7908), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, - sym_self, - sym_underscore_type, - STATE(7867), 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(4628), 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, + ACTIONS(5989), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_forall, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5987), 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_else, - [195517] = 5, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [198604] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5201), 1, + STATE(5262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(5989), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 31, - sym__line_break, + ACTIONS(5987), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -527359,7 +533177,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, @@ -527373,98 +533190,100 @@ static const uint16_t ts_small_parse_table[] = { 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, - [195571] = 23, + [198658] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(5860), 1, + anon_sym_RBRACK, + ACTIONS(8144), 1, anon_sym_DOT_DOT, - ACTIONS(7961), 1, + ACTIONS(8146), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(7969), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(7973), 1, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(7983), 1, + ACTIONS(8168), 1, anon_sym_QMARK, - ACTIONS(7985), 1, + ACTIONS(8170), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, + ACTIONS(8172), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + ACTIONS(8174), 1, sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(8180), 1, sym_binary_ampersand, - STATE(5202), 1, + ACTIONS(8242), 1, + anon_sym_COMMA, + STATE(5263), 1, sym_heredoc_body, + STATE(5496), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8150), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + ACTIONS(8160), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6459), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [195661] = 6, + [198754] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8173), 1, - anon_sym_of, - STATE(5203), 1, + STATE(5264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 9, + ACTIONS(5993), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 29, + ACTIONS(5991), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -527494,214 +533313,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [195717] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(8029), 1, - sym__start_of_tuple_type, - ACTIONS(8031), 1, - sym__start_of_named_tuple_type, - ACTIONS(8169), 1, - anon_sym_LPAREN, - ACTIONS(8171), 1, - anon_sym_DASH_GT, - STATE(5204), 1, - sym_heredoc_body, - STATE(7824), 1, - sym_constant, - STATE(7905), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8027), 2, - sym_self, - sym_underscore_type, - STATE(7867), 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(4656), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [195791] = 15, + [198808] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(8029), 1, - sym__start_of_tuple_type, - ACTIONS(8031), 1, - sym__start_of_named_tuple_type, - ACTIONS(8169), 1, - anon_sym_LPAREN, - ACTIONS(8171), 1, - anon_sym_DASH_GT, - STATE(5205), 1, + STATE(5265), 1, sym_heredoc_body, - STATE(7824), 1, - sym_constant, - STATE(7906), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, - sym_self, - sym_underscore_type, - STATE(7867), 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(4678), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [195865] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(5808), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, anon_sym_DOT, - ACTIONS(7967), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5206), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(5806), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6461), 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_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [195955] = 6, + [198862] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8175), 1, - sym_regex_modifier, - STATE(5207), 1, + STATE(5266), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 9, - anon_sym_RBRACK, + ACTIONS(4954), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 29, - sym__start_of_brace_block, + ACTIONS(4956), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -527712,8 +533393,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, @@ -527725,24 +533409,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, - [196011] = 7, + [198916] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8177), 1, - anon_sym_COMMA, - STATE(5208), 1, + STATE(5267), 1, sym_heredoc_body, - STATE(5230), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 9, - anon_sym_RBRACK, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -527751,7 +533428,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + ACTIONS(5970), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -527764,6 +533442,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, @@ -527776,31 +533456,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, - [196069] = 6, + anon_sym_then, + [198970] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8179), 1, - anon_sym_of, - STATE(5209), 1, + STATE(5268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 9, + ACTIONS(5896), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 29, + ACTIONS(5894), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -527830,25 +533509,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [196125] = 5, + [199024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5210), 1, + STATE(5269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(4958), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 31, - sym__start_of_brace_block, + ACTIONS(4960), 30, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -527861,9 +533540,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, @@ -527874,20 +533555,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, - [196179] = 5, + [199078] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5211), 1, + ACTIONS(8244), 1, + anon_sym_COMMA, + STATE(5141), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -527896,7 +533579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 31, + ACTIONS(5888), 29, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -527911,7 +533594,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, @@ -527927,83 +533609,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [196233] = 23, + [199136] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(8246), 1, anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + ACTIONS(8248), 1, + anon_sym_EQ, + ACTIONS(8250), 1, sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5212), 1, + STATE(5271), 1, sym_heredoc_body, + STATE(5528), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(5721), 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(5719), 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, + 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(7977), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [199198] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5272), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6015), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(6013), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6469), 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_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [196323] = 5, + [199252] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5213), 1, + STATE(5273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -528012,7 +533728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 31, + ACTIONS(173), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -528044,15 +533760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196377] = 5, + [199306] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5214), 1, + STATE(5274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -528061,7 +533777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 31, + ACTIONS(6075), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -528093,20 +533809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196431] = 7, + [199360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8177), 1, - anon_sym_COMMA, - STATE(5215), 1, + STATE(5275), 1, sym_heredoc_body, - STATE(5232), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 9, - anon_sym_RBRACK, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -528115,7 +533826,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(6079), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -528128,6 +533840,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, @@ -528140,19 +533854,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, - [196489] = 5, + anon_sym_then, + [199414] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5216), 1, + STATE(5276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -528161,7 +533875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 31, + ACTIONS(6179), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -528193,25 +533907,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196543] = 5, + [199468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5217), 1, + STATE(5277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, + ACTIONS(5949), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 31, - sym__line_break, + ACTIONS(5947), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -528224,7 +533939,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, @@ -528238,31 +533952,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_do, - anon_sym_then, - [196597] = 5, + [199522] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5218), 1, + STATE(5278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + ACTIONS(4962), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4964), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -528273,9 +533987,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, @@ -528289,17 +534005,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, - [196651] = 5, + [199576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5219), 1, + STATE(5279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -528308,7 +534022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 31, + ACTIONS(6233), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -528340,15 +534054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196705] = 5, + [199630] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5220), 1, + STATE(5280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -528357,7 +534071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 31, + ACTIONS(6241), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -528389,27 +534103,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196759] = 5, + [199684] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5221), 1, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8079), 1, + sym__start_of_index_operator, + STATE(5281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 31, + ACTIONS(6245), 30, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -528438,44 +534154,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196813] = 10, + [199742] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(7979), 1, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(7989), 1, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, sym__start_of_index_operator, - STATE(5222), 1, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7981), 2, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7993), 4, + ACTIONS(8055), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6253), 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, + [199828] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5283), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5812), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 24, - sym__line_break, + anon_sym_AMP_STAR, + ACTIONS(5810), 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_SEMI, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -528487,42 +534262,39 @@ 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, - anon_sym_then, - [196877] = 8, + [199882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7989), 1, - sym__start_of_index_operator, - STATE(5223), 1, + STATE(5284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6265), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 28, + ACTIONS(6263), 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, @@ -528539,42 +534311,39 @@ 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, - [196937] = 8, + [199936] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7989), 1, - sym__start_of_index_operator, - STATE(5224), 1, + STATE(5285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6273), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 28, + ACTIONS(6271), 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, @@ -528591,259 +534360,217 @@ 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, - [196997] = 12, + [199990] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7989), 1, - sym__start_of_index_operator, - STATE(5225), 1, + STATE(5286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7991), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7993), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(6277), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 18, + anon_sym_AMP_STAR, + ACTIONS(6275), 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, - [197065] = 21, + [200044] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5226), 1, + STATE(5287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(6027), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(6025), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 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_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [197151] = 17, + [200098] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5227), 1, + STATE(5288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(143), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(145), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 12, - 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, - [197229] = 13, + [200152] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5228), 1, + STATE(5289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7991), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7993), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(6281), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 17, + anon_sym_AMP_STAR, + ACTIONS(6279), 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, - [197299] = 5, + [200206] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5229), 1, + STATE(5290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(6285), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -528852,7 +534579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 31, + ACTIONS(6283), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -528884,19 +534611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [197353] = 7, + [200260] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8177), 1, - anon_sym_COMMA, - STATE(5230), 1, + STATE(5291), 1, sym_heredoc_body, - STATE(5282), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 9, + ACTIONS(5911), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -528906,7 +534629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(5909), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -528919,6 +534642,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, @@ -528930,50 +534654,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, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [197411] = 11, + [200314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7989), 1, - sym__start_of_index_operator, - STATE(5231), 1, + STATE(5292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7991), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7993), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5969), 6, + ACTIONS(6037), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 20, - sym__line_break, + anon_sym_AMP_STAR, + ACTIONS(6035), 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, - anon_sym_SEMI, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -528985,24 +534702,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_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [197477] = 7, + [200368] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8177), 1, - anon_sym_COMMA, - STATE(5232), 1, + ACTIONS(7505), 1, + anon_sym_LPAREN2, + STATE(5293), 1, sym_heredoc_body, - STATE(5282), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 9, + ACTIONS(195), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -529012,7 +534729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, + ACTIONS(173), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -529025,6 +534742,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, @@ -529041,86 +534759,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [197535] = 15, + [200424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5233), 1, + STATE(5294), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7991), 4, + ACTIONS(6299), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6297), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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, - [197609] = 5, + [200478] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5234), 1, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8079), 1, + sym__start_of_index_operator, + STATE(5295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 31, + ACTIONS(6301), 30, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529149,29 +534859,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [197663] = 6, + [200536] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8181), 1, - anon_sym_LPAREN, - STATE(5235), 1, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8079), 1, + sym__start_of_index_operator, + STATE(5296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 9, - anon_sym_RBRACK, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 29, + ACTIONS(6305), 30, + sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529182,6 +534892,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, @@ -529195,82 +534906,74 @@ static const uint16_t ts_small_parse_table[] = { 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, - [197719] = 19, + anon_sym_then, + [200594] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + ACTIONS(8186), 1, anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5236), 1, + STATE(5297), 1, sym_heredoc_body, + STATE(5472), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(4970), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(4972), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 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_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_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, - [197801] = 5, + [200660] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5237), 1, + STATE(5298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529279,7 +534982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 31, + ACTIONS(5719), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -529311,91 +535014,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [197855] = 20, + [200714] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, + STATE(5299), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4914), 9, anon_sym_DOT_DOT, - ACTIONS(7963), 1, anon_sym_DOT, - ACTIONS(7967), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7989), 1, + ACTIONS(4916), 30, sym__start_of_index_operator, - ACTIONS(7995), 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(5238), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7971), 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(7977), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [200768] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5300), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6355), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(6353), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 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, - [197939] = 5, + [200822] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5239), 1, + ACTIONS(8252), 1, + sym_regex_modifier, + STATE(5301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4950), 9, + ACTIONS(5997), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4952), 30, + 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, @@ -529406,11 +535145,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, @@ -529422,17 +535158,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, - [197993] = 5, + anon_sym_do, + [200878] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5240), 1, + STATE(5302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529441,7 +535179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 31, + ACTIONS(5698), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -529473,15 +535211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198047] = 5, + [200932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5241), 1, + STATE(5303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529490,7 +535228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 31, + ACTIONS(6389), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -529522,15 +535260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198101] = 5, + [200986] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5242), 1, + STATE(5304), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529539,7 +535277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 31, + ACTIONS(6389), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -529571,15 +535309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198155] = 5, + [201040] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5243), 1, + STATE(5305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529588,7 +535326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 31, + ACTIONS(6397), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -529620,15 +535358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198209] = 5, + [201094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5244), 1, + STATE(5306), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6415), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529637,7 +535375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 31, + ACTIONS(6413), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -529669,15 +535407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198263] = 5, + [201148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5245), 1, + STATE(5307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529686,7 +535424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 31, + ACTIONS(6417), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -529718,87 +535456,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198317] = 26, + [201202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5876), 1, - anon_sym_RBRACK, - ACTIONS(8114), 1, - anon_sym_COMMA, - ACTIONS(8118), 1, + STATE(5308), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6423), 8, anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, anon_sym_DOT, - ACTIONS(8126), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8128), 1, - anon_sym_CARET, - ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8142), 1, - anon_sym_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(6421), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(8154), 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(5194), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5246), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8130), 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(8136), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 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(8124), 3, + anon_sym_then, + [201256] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5309), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6427), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, 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(8150), 4, + anon_sym_AMP_STAR, + ACTIONS(6425), 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(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [198413] = 6, + 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, + [201310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8183), 1, - anon_sym_EQ, - STATE(5247), 1, + STATE(5310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 9, + ACTIONS(5911), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -529808,7 +535572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 29, + ACTIONS(5909), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -529837,90 +535601,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [198469] = 27, + [201364] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8187), 1, - anon_sym_COMMA, - ACTIONS(8189), 1, + STATE(5311), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5696), 8, anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, anon_sym_DOT, - ACTIONS(8197), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, anon_sym_EQ_EQ, - ACTIONS(8209), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8213), 1, + ACTIONS(5694), 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(8215), 1, anon_sym_AMP_AMP, - ACTIONS(8217), 1, anon_sym_PIPE_PIPE, - ACTIONS(8219), 1, + anon_sym_do, anon_sym_then, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(347), 1, - sym__terminator, - STATE(5248), 1, + [201418] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5312), 1, sym_heredoc_body, - STATE(9442), 1, - aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(5696), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5694), 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, - ACTIONS(8201), 2, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8207), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [201472] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5313), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6439), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(6437), 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(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [198567] = 6, + 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, + [201526] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8229), 1, - anon_sym_of, - STATE(5249), 1, + STATE(5314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 9, - anon_sym_RBRACK, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529929,7 +535767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 29, + ACTIONS(6437), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -529942,6 +535781,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, @@ -529955,22 +535795,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, - [198623] = 6, + anon_sym_then, + [201580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8231), 1, - anon_sym_of, - STATE(5250), 1, + STATE(5315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 9, - anon_sym_RBRACK, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -529979,7 +535816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 29, + ACTIONS(5715), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -529992,6 +535830,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, @@ -530005,19 +535844,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, - [198679] = 5, + anon_sym_then, + [201634] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5251), 1, + STATE(5316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530026,7 +535865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 31, + ACTIONS(5715), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -530058,15 +535897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198733] = 5, + [201688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5252), 1, + STATE(5317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530075,7 +535914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 31, + ACTIONS(6469), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -530107,15 +535946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198787] = 5, + [201742] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5253), 1, + STATE(5318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530124,7 +535963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 31, + ACTIONS(6469), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -530156,23 +535995,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198841] = 9, + [201796] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, + STATE(5319), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6487), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6485), 31, + sym__line_break, sym__start_of_brace_block, - ACTIONS(8107), 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, - STATE(5254), 1, + anon_sym_then, + [201850] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8254), 1, + anon_sym_COMMA, + STATE(5320), 1, sym_heredoc_body, - STATE(6673), 1, - sym_brace_block, - STATE(6677), 1, - sym_do_end_block, + STATE(5329), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(5794), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530181,9 +536066,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 27, + ACTIONS(5750), 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, @@ -530194,7 +536079,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, @@ -530207,29 +536091,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, - [198903] = 5, + anon_sym_do, + [201908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5255), 1, + STATE(5321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4958), 9, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4960), 30, + ACTIONS(6514), 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, @@ -530240,11 +536126,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, @@ -530258,88 +536142,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [198957] = 25, + anon_sym_do, + anon_sym_then, + [201962] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(6520), 1, anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(8057), 1, anon_sym_PIPE, - ACTIONS(7969), 1, + ACTIONS(8059), 1, anon_sym_CARET, - ACTIONS(7973), 1, + ACTIONS(8063), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, + ACTIONS(8075), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, + ACTIONS(8077), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + ACTIONS(8079), 1, sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(8085), 1, sym_binary_ampersand, - ACTIONS(8109), 1, - anon_sym_COMMA, - STATE(5193), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5256), 1, + STATE(5322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(8071), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(8055), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5811), 4, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - ACTIONS(7975), 4, + ACTIONS(8065), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(8083), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [199051] = 7, + ACTIONS(6518), 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, + [202048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8109), 1, - anon_sym_COMMA, - STATE(5193), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5257), 1, + STATE(5323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530348,7 +536226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 29, + ACTIONS(5832), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -530363,6 +536241,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, @@ -530378,15 +536257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [199109] = 5, + anon_sym_then, + [202102] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5258), 1, + ACTIONS(8256), 1, + sym_regex_modifier, + STATE(5324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6031), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530395,8 +536278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 31, - sym__line_break, + ACTIONS(6029), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -530409,7 +536291,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, @@ -530423,26 +536304,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, - [199163] = 8, + [202158] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2997), 1, - sym__string_literal_start, - STATE(5178), 1, - aux_sym_chained_string_repeat1, - STATE(5259), 1, + STATE(5325), 1, sym_heredoc_body, - STATE(5795), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 9, - anon_sym_RBRACK, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530451,7 +536325,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 27, + ACTIONS(6529), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -530463,6 +536339,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, @@ -530476,18 +536353,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, - [199223] = 5, + anon_sym_do, + anon_sym_then, + [202212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5260), 1, + STATE(5326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(6535), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530496,7 +536374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 31, + ACTIONS(6533), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -530528,15 +536406,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [199277] = 5, + [202266] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5261), 1, + ACTIONS(8254), 1, + anon_sym_COMMA, + STATE(5327), 1, sym_heredoc_body, + STATE(5330), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(5860), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530545,8 +536428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 31, - sym__line_break, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -530559,8 +536441,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, @@ -530573,19 +536453,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, - [199331] = 5, + [202324] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5262), 1, + STATE(5328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530594,7 +536474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 31, + ACTIONS(6537), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -530626,15 +536506,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [199385] = 5, + [202378] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5263), 1, + ACTIONS(8254), 1, + anon_sym_COMMA, + STATE(5329), 1, sym_heredoc_body, + STATE(5341), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(5860), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530643,8 +536528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 31, - sym__line_break, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -530657,8 +536541,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, @@ -530671,19 +536553,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, - [199439] = 5, + [202436] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5264), 1, + ACTIONS(8254), 1, + anon_sym_COMMA, + STATE(5330), 1, sym_heredoc_body, + STATE(5341), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5892), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530692,8 +536579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 31, - sym__line_break, + ACTIONS(5888), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -530706,8 +536592,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, @@ -530720,19 +536604,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, - [199493] = 5, + [202494] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5265), 1, + ACTIONS(8258), 1, + anon_sym_of, + STATE(5331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(5830), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530741,8 +536628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 31, - sym__line_break, + ACTIONS(5826), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -530755,7 +536641,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, @@ -530769,19 +536654,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, - [199547] = 5, + [202550] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5266), 1, + STATE(5332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530790,7 +536675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 31, + ACTIONS(5838), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -530822,27 +536707,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [199601] = 5, + [202604] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5267), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + ACTIONS(8260), 1, + anon_sym_COMMA, + STATE(5270), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4900), 9, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5856), 4, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [202698] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8262), 1, + sym_regex_modifier, + STATE(5334), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5834), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4902), 30, + ACTIONS(5832), 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, @@ -530853,11 +536809,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, @@ -530869,17 +536822,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, - [199655] = 5, + anon_sym_do, + [202754] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5268), 1, + ACTIONS(8260), 1, + anon_sym_COMMA, + STATE(5270), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530888,7 +536847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 31, + ACTIONS(5856), 29, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -530903,6 +536862,53 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_do, + [202812] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5336), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5923), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5921), 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, @@ -530916,25 +536922,69 @@ static const uint16_t ts_small_parse_table[] = { 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, - [199709] = 8, + [202866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + STATE(5337), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5968), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5966), 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(8043), 1, - anon_sym_DASH_GT, - STATE(5269), 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, + [202920] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5338), 1, sym_heredoc_body, - STATE(10600), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5804), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -530944,8 +536994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 27, - sym__line_break, + ACTIONS(5802), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -530957,7 +537007,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, @@ -530970,27 +537020,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, - [199769] = 5, + anon_sym_do, + [202974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5270), 1, + STATE(5339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(5868), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 31, - sym__line_break, + ACTIONS(5866), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -531003,7 +537056,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, @@ -531017,19 +537069,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, - [199823] = 5, + [203028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5271), 1, + STATE(5340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(6037), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531038,8 +537091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 31, - sym__line_break, + ACTIONS(6035), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -531052,7 +537104,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, @@ -531066,19 +537117,73 @@ static const uint16_t ts_small_parse_table[] = { 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, - [199877] = 5, + [203082] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5272), 1, + ACTIONS(8264), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(5341), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5970), 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, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [203138] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8267), 1, + sym_regex_modifier, + STATE(5342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(5840), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531087,8 +537192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 31, - sym__line_break, + ACTIONS(5838), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -531101,7 +537205,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, @@ -531115,19 +537218,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, - [199931] = 5, + [203194] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5273), 1, + ACTIONS(8269), 1, + anon_sym_of, + STATE(5343), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(5848), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531136,8 +537242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 31, - sym__line_break, + ACTIONS(5844), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -531150,7 +537255,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, @@ -531164,19 +537268,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, - [199985] = 5, + [203250] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5274), 1, + STATE(5344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(4624), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531185,8 +537290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 31, - sym__line_break, + ACTIONS(4622), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -531199,7 +537303,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -531213,19 +537317,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, - [200039] = 5, + [203304] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5275), 1, + STATE(5345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531234,7 +537338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 31, + ACTIONS(6541), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -531266,18 +537370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200093] = 6, + [203358] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(893), 1, - anon_sym_EQ, - STATE(5276), 1, + STATE(5346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, - anon_sym_RBRACK, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531286,7 +537387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(6545), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -531299,6 +537401,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, @@ -531312,19 +537415,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, - [200149] = 5, + anon_sym_then, + [203412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5277), 1, + STATE(5347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531333,7 +537436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 31, + ACTIONS(6549), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -531365,27 +537468,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200203] = 5, + [203466] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5278), 1, + ACTIONS(8271), 1, + anon_sym_LPAREN, + ACTIONS(8273), 1, + anon_sym_DOT, + STATE(5348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4962), 9, + ACTIONS(6043), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4964), 30, + ACTIONS(6039), 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, @@ -531396,11 +537502,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, @@ -531412,17 +537515,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, - [200257] = 5, + anon_sym_do, + [203524] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5279), 1, + STATE(5349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531431,7 +537536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 31, + ACTIONS(6553), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -531463,15 +537568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200311] = 5, + [203578] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5280), 1, + STATE(5350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531480,10 +537585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 31, + ACTIONS(6561), 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, @@ -531494,7 +537599,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, @@ -531507,32 +537612,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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [200365] = 5, + anon_sym_then, + [203632] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5281), 1, + ACTIONS(8275), 1, + anon_sym_of, + STATE(5351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4954), 9, + ACTIONS(5877), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4956), 30, + ACTIONS(5873), 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, @@ -531543,11 +537650,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, @@ -531559,20 +537663,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, - [200419] = 6, + anon_sym_do, + [203688] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8233), 1, - anon_sym_COMMA, + ACTIONS(8277), 1, + anon_sym_of, + STATE(5352), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5282), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 9, + ACTIONS(5748), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -531582,7 +537687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 28, + ACTIONS(5744), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -531595,6 +537700,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, @@ -531611,17 +537717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [200475] = 6, + [203744] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7514), 1, - anon_sym_LPAREN2, - STATE(5283), 1, + ACTIONS(8279), 1, + anon_sym_LPAREN, + STATE(5353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, + ACTIONS(5905), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -531631,7 +537737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(5901), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -531661,15 +537767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [200531] = 5, + [203800] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5284), 1, + ACTIONS(8260), 1, + anon_sym_COMMA, + STATE(5141), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531678,7 +537788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 31, + ACTIONS(5856), 29, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -531693,7 +537803,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, @@ -531709,28 +537818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [200585] = 5, + [203858] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5285), 1, + STATE(5355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(4946), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4948), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -531741,9 +537849,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, @@ -531757,29 +537867,29 @@ 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, - [200639] = 5, + [203912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5286), 1, + ACTIONS(8271), 1, + anon_sym_LPAREN, + STATE(5356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4914), 9, + ACTIONS(6043), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4916), 30, + ACTIONS(6039), 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, @@ -531790,11 +537900,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, @@ -531806,29 +537913,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, - [200693] = 5, + anon_sym_do, + [203968] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5287), 1, + ACTIONS(8281), 1, + anon_sym_LPAREN, + STATE(5357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4918), 9, + ACTIONS(6065), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4920), 30, + ACTIONS(6061), 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, @@ -531839,11 +537950,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, @@ -531855,30 +537963,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [200747] = 6, + anon_sym_do, + [204024] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8236), 1, - sym_regex_modifier, - STATE(5288), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 9, - anon_sym_RBRACK, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6083), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [204114] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8049), 1, anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5359), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6085), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [204204] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(8031), 1, + anon_sym_DASH_GT, + STATE(5360), 1, + sym_heredoc_body, + STATE(10543), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5020), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 29, - sym__start_of_brace_block, + ACTIONS(5022), 27, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -531890,7 +538138,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, @@ -531903,19 +538151,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, - [200803] = 5, + [204264] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5289), 1, + STATE(5361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -531924,7 +538170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 31, + ACTIONS(6091), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -531956,15 +538202,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200857] = 5, + [204318] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5290), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 9, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6095), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [204408] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8283), 1, + anon_sym_EQ, + STATE(5363), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5939), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -531974,7 +538289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 30, + ACTIONS(5937), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -532003,17 +538318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [200911] = 5, + [204464] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5291), 1, + STATE(5364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532022,7 +538336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 31, + ACTIONS(6097), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532054,15 +538368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200965] = 5, + [204518] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5292), 1, + STATE(5365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532071,7 +538385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 31, + ACTIONS(6097), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532103,15 +538417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201019] = 5, + [204572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5293), 1, + STATE(5366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532120,7 +538434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 31, + ACTIONS(6101), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532152,15 +538466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201073] = 5, + [204626] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5294), 1, + STATE(5367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532169,7 +538483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 31, + ACTIONS(6105), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532201,15 +538515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201127] = 5, + [204680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5295), 1, + STATE(5368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532218,7 +538532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 31, + ACTIONS(6109), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532250,15 +538564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201181] = 5, + [204734] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5296), 1, + STATE(5369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532267,7 +538581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 31, + ACTIONS(6113), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532299,18 +538613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201235] = 6, + [204788] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8238), 1, - anon_sym_of, - STATE(5297), 1, + STATE(5370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 9, - anon_sym_RBRACK, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532319,7 +538630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 29, + ACTIONS(6117), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -532332,6 +538644,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, @@ -532345,22 +538658,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, - [201291] = 6, + anon_sym_then, + [204842] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8240), 1, - sym_regex_modifier, - STATE(5298), 1, + STATE(5371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 9, - anon_sym_RBRACK, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532369,7 +538679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 29, + ACTIONS(6121), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -532382,6 +538693,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, @@ -532395,44 +538707,48 @@ static const uint16_t ts_small_parse_table[] = { 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, - [201347] = 7, + anon_sym_then, + [204896] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8242), 1, - anon_sym_LPAREN, - ACTIONS(8244), 1, + ACTIONS(8053), 1, anon_sym_DOT, - STATE(5299), 1, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8079), 1, + sym__start_of_index_operator, + STATE(5372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, - anon_sym_RBRACK, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 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(5886), 29, + ACTIONS(6125), 24, + 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, @@ -532444,45 +538760,47 @@ 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, - [201405] = 6, + anon_sym_then, + [204960] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8242), 1, - anon_sym_LPAREN, - STATE(5300), 1, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8079), 1, + sym__start_of_index_operator, + STATE(5373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 9, - anon_sym_RBRACK, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 29, + ACTIONS(6129), 28, + 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, @@ -532494,45 +538812,47 @@ 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, - [201461] = 6, + anon_sym_then, + [205020] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8246), 1, - anon_sym_LPAREN, - STATE(5301), 1, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8079), 1, + sym__start_of_index_operator, + STATE(5374), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 9, - anon_sym_RBRACK, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 29, + ACTIONS(6133), 28, + 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, @@ -532544,200 +538864,289 @@ 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, - [201517] = 5, + anon_sym_then, + [205080] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5302), 1, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8079), 1, + sym__start_of_index_operator, + STATE(5375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4926), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4928), 30, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 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(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 18, + sym__line_break, + sym__start_of_brace_block, + sym_binary_ampersand, + 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [201571] = 5, + anon_sym_do, + anon_sym_then, + [205148] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5303), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4906), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4908), 30, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 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(6141), 8, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_QMARK, + anon_sym_do, + anon_sym_then, + [205234] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5377), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8065), 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(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [201625] = 5, + anon_sym_do, + anon_sym_then, + [205312] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5304), 1, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4930), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4932), 30, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 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(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 17, + sym__line_break, + sym__start_of_brace_block, + 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [201679] = 11, + anon_sym_do, + anon_sym_then, + [205382] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - ACTIONS(8164), 1, - anon_sym_PIPE, - STATE(5195), 1, - aux_sym_union_type_repeat1, - STATE(5305), 1, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8079), 1, + sym__start_of_index_operator, + STATE(5379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4934), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4936), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 20, + sym__line_break, + sym__start_of_brace_block, + sym_binary_ampersand, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -532749,30 +539158,37 @@ 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, - [201745] = 5, + anon_sym_do, + anon_sym_then, + [205448] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5306), 1, + ACTIONS(2997), 1, + sym__string_literal_start, + STATE(5223), 1, + aux_sym_chained_string_repeat1, + STATE(5380), 1, sym_heredoc_body, + STATE(5973), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4938), 9, + ACTIONS(5688), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4940), 30, + ACTIONS(5686), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -532783,11 +539199,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, @@ -532799,66 +539212,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [201799] = 5, + [205508] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5307), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6051), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6171), 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, + [205590] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5382), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6175), 9, + 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, - [201853] = 5, + [205674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5308), 1, + STATE(5383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532867,7 +539359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 31, + ACTIONS(6183), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532899,15 +539391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201907] = 5, + [205728] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5309), 1, + STATE(5384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532916,7 +539408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 31, + ACTIONS(6183), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532948,15 +539440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201961] = 5, + [205782] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5310), 1, + STATE(5385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -532965,7 +539457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 31, + ACTIONS(6183), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -532997,15 +539489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202015] = 5, + [205836] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5311), 1, + STATE(5386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533014,7 +539506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 31, + ACTIONS(6183), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533046,15 +539538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202069] = 5, + [205890] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5312), 1, + STATE(5387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533063,7 +539555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 31, + ACTIONS(6187), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533095,15 +539587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202123] = 5, + [205944] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5313), 1, + STATE(5388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533112,7 +539604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 31, + ACTIONS(6187), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533144,15 +539636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202177] = 5, + [205998] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5314), 1, + STATE(5389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533161,7 +539653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 31, + ACTIONS(6187), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533193,15 +539685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202231] = 5, + [206052] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5315), 1, + STATE(5390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533210,7 +539702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 31, + ACTIONS(6187), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533242,15 +539734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202285] = 5, + [206106] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5316), 1, + STATE(5391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533259,7 +539751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 31, + ACTIONS(6191), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533291,21 +539783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202339] = 8, + [206160] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1947), 1, - anon_sym_COLON, - ACTIONS(6233), 1, - anon_sym_COLON_COLON, - STATE(2623), 1, - aux_sym_constant_repeat1, - STATE(5317), 1, + ACTIONS(8285), 1, + anon_sym_of, + STATE(5392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4855), 9, + ACTIONS(5964), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533314,8 +539803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(4857), 27, + ACTIONS(5960), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -533339,97 +539828,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, - [202399] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5860), 1, - anon_sym_RBRACK, - ACTIONS(8118), 1, - anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, - anon_sym_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_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - ACTIONS(8177), 1, - anon_sym_COMMA, - STATE(5230), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5318), 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(5737), 3, - sym__start_of_brace_block, - anon_sym_RBRACK_QMARK, 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(8150), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8152), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [202495] = 9, + [206216] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3323), 1, - sym__string_literal_start, - ACTIONS(8248), 1, - anon_sym_COLON, - STATE(3989), 1, - sym_string, - STATE(5319), 1, + STATE(5393), 1, sym_heredoc_body, - STATE(5581), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533438,8 +539850,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(173), 26, + ACTIONS(6195), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -533451,6 +539864,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, @@ -533466,27 +539880,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [202557] = 5, + anon_sym_do, + anon_sym_then, + [206270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5320), 1, + STATE(5394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4942), 9, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4944), 30, + ACTIONS(6199), 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, @@ -533497,11 +539913,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, @@ -533515,27 +539929,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [202611] = 5, + anon_sym_do, + anon_sym_then, + [206324] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5321), 1, + STATE(5395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4946), 9, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4948), 30, + ACTIONS(6203), 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, @@ -533546,11 +539962,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, @@ -533564,37 +539978,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [202665] = 11, + anon_sym_do, + anon_sym_then, + [206378] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - ACTIONS(8164), 1, - anon_sym_PIPE, - STATE(5195), 1, - aux_sym_union_type_repeat1, - STATE(5322), 1, + STATE(5396), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4966), 7, + ACTIONS(6209), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4968), 26, + ACTIONS(6207), 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, @@ -533605,6 +540011,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, @@ -533617,29 +540024,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, - [202731] = 5, + anon_sym_do, + anon_sym_then, + [206432] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5323), 1, + STATE(5397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4970), 9, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4972), 30, + ACTIONS(6211), 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, @@ -533650,11 +540060,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, @@ -533668,15 +540076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [202785] = 5, + anon_sym_do, + anon_sym_then, + [206486] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5324), 1, + STATE(5398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533685,7 +540095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 31, + ACTIONS(6215), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533717,15 +540127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202839] = 5, + [206540] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5325), 1, + STATE(5399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533734,7 +540144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 31, + ACTIONS(6219), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533766,15 +540176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202893] = 5, + [206594] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5326), 1, + ACTIONS(8287), 1, + anon_sym_of, + STATE(5400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(5985), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533783,8 +540196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 31, - sym__line_break, + ACTIONS(5981), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -533797,7 +540209,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, @@ -533811,19 +540222,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, - [202947] = 5, + [206650] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5327), 1, + ACTIONS(7668), 1, + anon_sym_COLON, + STATE(5401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(195), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533832,8 +540246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 31, - sym__line_break, + ACTIONS(173), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -533846,7 +540259,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, @@ -533860,19 +540272,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, - [203001] = 5, + [206706] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5328), 1, + STATE(5402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533881,7 +540293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 31, + ACTIONS(6223), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -533913,27 +540325,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [203055] = 5, + [206760] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5329), 1, + STATE(5403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4974), 9, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4976), 30, + ACTIONS(6237), 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, @@ -533944,11 +540356,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, @@ -533962,15 +540372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [203109] = 5, + anon_sym_do, + anon_sym_then, + [206814] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5330), 1, + STATE(5404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4910), 9, + ACTIONS(4950), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -533980,7 +540392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4912), 30, + ACTIONS(4952), 30, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -534011,15 +540423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [203163] = 5, + [206868] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5331), 1, + STATE(5405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534028,7 +540440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 31, + ACTIONS(6433), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -534060,96 +540472,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [203217] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - ACTIONS(8250), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5332), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5737), 4, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7993), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [203311] = 5, + [206922] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5333), 1, + ACTIONS(1951), 1, + anon_sym_COLON, + ACTIONS(6073), 1, + anon_sym_COLON_COLON, + STATE(2676), 1, + aux_sym_constant_repeat1, + STATE(5406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 10, - anon_sym_RBRACK, + ACTIONS(4855), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 29, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(4857), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -534173,20 +540520,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, - anon_sym_do, - [203365] = 5, + [206982] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5334), 1, + STATE(5407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534195,7 +540541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 31, + ACTIONS(6309), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -534227,114 +540573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [203419] = 5, + [207036] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5335), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4922), 9, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4924), 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, - 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, - [203473] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7644), 1, - anon_sym_COLON, - STATE(5336), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(195), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(173), 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, - [203529] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5337), 1, + STATE(5408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534343,7 +540590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 31, + ACTIONS(6313), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -534375,78 +540622,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [203583] = 7, + [207090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8250), 1, - anon_sym_COMMA, - STATE(5177), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5338), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5860), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5737), 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__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, - anon_sym_do, - [203641] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5339), 1, + STATE(5409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(4966), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4968), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534457,9 +540653,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, @@ -534473,163 +540671,167 @@ 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, - [203695] = 23, + [207144] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(5860), 1, + anon_sym_RBRACK, + ACTIONS(8144), 1, anon_sym_DOT_DOT, - ACTIONS(7961), 1, + ACTIONS(8146), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(7969), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(7973), 1, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(7983), 1, + ACTIONS(8168), 1, anon_sym_QMARK, - ACTIONS(7985), 1, + ACTIONS(8170), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, + ACTIONS(8172), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + ACTIONS(8174), 1, sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(8180), 1, sym_binary_ampersand, - STATE(5340), 1, + ACTIONS(8254), 1, + anon_sym_COMMA, + STATE(5330), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8150), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + ACTIONS(8160), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6309), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [203785] = 23, + [207240] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, + ACTIONS(5794), 1, + anon_sym_RBRACK, + ACTIONS(8144), 1, anon_sym_DOT_DOT, - ACTIONS(7961), 1, + ACTIONS(8146), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(7967), 1, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(7969), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(7973), 1, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(7983), 1, + ACTIONS(8168), 1, anon_sym_QMARK, - ACTIONS(7985), 1, + ACTIONS(8170), 1, anon_sym_AMP_AMP, - ACTIONS(7987), 1, + ACTIONS(8172), 1, anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + ACTIONS(8174), 1, sym__start_of_index_operator, - ACTIONS(7995), 1, + ACTIONS(8180), 1, sym_binary_ampersand, - STATE(5341), 1, + ACTIONS(8254), 1, + anon_sym_COMMA, + STATE(5329), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7977), 2, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8150), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + ACTIONS(8160), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7993), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6311), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [203875] = 5, + [207336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5342), 1, + STATE(5412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(4918), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4920), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534640,9 +540842,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, @@ -534656,28 +540860,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, - [203929] = 5, + [207390] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5343), 1, + STATE(5413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(4910), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 31, - sym__line_break, + ACTIONS(4912), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534688,10 +540891,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, @@ -534702,20 +540906,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_then, - [203983] = 5, + [207444] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5344), 1, + STATE(5414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534724,7 +540926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 31, + ACTIONS(6317), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -534756,15 +540958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204037] = 5, + [207498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5345), 1, + STATE(5415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534773,7 +540975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 31, + ACTIONS(6321), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -534805,15 +541007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204091] = 5, + [207552] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5346), 1, + STATE(5416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534822,7 +541024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 31, + ACTIONS(6325), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -534854,15 +541056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204145] = 5, + [207606] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5347), 1, + STATE(5417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534871,7 +541073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 31, + ACTIONS(6325), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -534903,15 +541105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204199] = 5, + [207660] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5348), 1, + STATE(5418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534920,7 +541122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 31, + ACTIONS(6329), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -534952,15 +541154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204253] = 5, + [207714] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5349), 1, + STATE(5419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -534969,7 +541171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 31, + ACTIONS(6333), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535001,15 +541203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204307] = 5, + [207768] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5350), 1, + STATE(5420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535018,7 +541220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 31, + ACTIONS(6337), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535050,15 +541252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204361] = 5, + [207822] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5351), 1, + STATE(5421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535067,7 +541269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 31, + ACTIONS(6341), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535099,15 +541301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204415] = 5, + [207876] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5352), 1, + STATE(5422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535116,7 +541318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 31, + ACTIONS(6345), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535148,15 +541350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204469] = 5, + [207930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5353), 1, + STATE(5423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535165,7 +541367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 31, + ACTIONS(6349), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535197,15 +541399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204523] = 5, + [207984] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5354), 1, + STATE(5424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535214,7 +541416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 31, + ACTIONS(6357), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535246,15 +541448,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204577] = 5, + [208038] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5355), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6361), 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, + [208124] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5426), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535263,7 +541530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 31, + ACTIONS(6375), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535295,25 +541562,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204631] = 5, + [208178] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5356), 1, + STATE(5427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(5852), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 31, - sym__line_break, + ACTIONS(5850), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -535326,7 +541594,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, @@ -535340,19 +541607,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, - [204685] = 5, + [208232] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5357), 1, + STATE(5428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535361,7 +541628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 31, + ACTIONS(6381), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535393,15 +541660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204739] = 5, + [208286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5358), 1, + STATE(5429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535410,7 +541677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 31, + ACTIONS(6385), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535442,15 +541709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204793] = 5, + [208340] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5359), 1, + STATE(5430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535459,7 +541726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 31, + ACTIONS(6393), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535491,94 +541758,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204847] = 21, + [208394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, + STATE(5431), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6403), 8, anon_sym_DOT_DOT, - ACTIONS(7963), 1, anon_sym_DOT, - ACTIONS(7967), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, anon_sym_EQ_EQ, - ACTIONS(7979), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, + ACTIONS(6401), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(7995), 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(5360), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7971), 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(7977), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [208448] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5432), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6407), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, + anon_sym_AMP_STAR, + ACTIONS(6405), 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(7991), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [208502] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5433), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6411), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6409), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 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, - [204933] = 7, + [208556] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, + STATE(5434), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5020), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT, - ACTIONS(7989), 1, + anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5022), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - STATE(5361), 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, + anon_sym_do, + [208610] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(6431), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 30, + ACTIONS(6429), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -535607,15 +542003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204991] = 5, + [208664] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5362), 1, + STATE(5436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535624,7 +542020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 31, + ACTIONS(6441), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535656,27 +542052,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205045] = 5, + [208718] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5363), 1, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, + anon_sym_DOT, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + ACTIONS(8186), 1, + anon_sym_PIPE, + STATE(5437), 1, sym_heredoc_body, + STATE(5472), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(4922), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4924), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -535687,7 +542093,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, @@ -535700,20 +542105,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, - anon_sym_do, - anon_sym_then, - [205099] = 5, + [208784] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5364), 1, + STATE(5438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535722,7 +542124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 31, + ACTIONS(6449), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535754,15 +542156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205153] = 5, + [208838] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5365), 1, + STATE(5439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535771,7 +542173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 31, + ACTIONS(6453), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535803,150 +542205,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205207] = 21, + [208892] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5366), 1, + STATE(5440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(4859), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(4861), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 8, - sym__line_break, - sym__start_of_brace_block, - 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_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [205293] = 26, + [208946] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5876), 1, - anon_sym_RBRACK, - ACTIONS(8118), 1, + ACTIONS(8049), 1, anon_sym_DOT_DOT, - ACTIONS(8120), 1, + ACTIONS(8051), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(8126), 1, + ACTIONS(8057), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8059), 1, anon_sym_CARET, - ACTIONS(8132), 1, + ACTIONS(8063), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(8142), 1, + ACTIONS(8073), 1, anon_sym_QMARK, - ACTIONS(8144), 1, + ACTIONS(8075), 1, anon_sym_AMP_AMP, - ACTIONS(8146), 1, + ACTIONS(8077), 1, anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(8079), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8085), 1, sym_binary_ampersand, - ACTIONS(8177), 1, - anon_sym_COMMA, - STATE(5232), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5367), 1, + STATE(5441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8130), 2, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8136), 2, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, + ACTIONS(8071), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8124), 3, + ACTIONS(8055), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8134), 4, + ACTIONS(8065), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8083), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [205389] = 5, + ACTIONS(6459), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [209036] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5368), 1, + STATE(5442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -535955,7 +542338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6125), 31, + ACTIONS(6461), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -535987,15 +542370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205443] = 5, + [209090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5369), 1, + STATE(5443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536004,7 +542387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 31, + ACTIONS(6465), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -536036,15 +542419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205497] = 5, + [209144] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5370), 1, + STATE(5444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536053,7 +542436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 31, + ACTIONS(5729), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -536085,15 +542468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205551] = 5, + [209198] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5371), 1, + STATE(5445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(6475), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536102,7 +542485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 31, + ACTIONS(6473), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -536134,16 +542517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205605] = 5, + [209252] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5372), 1, + STATE(5446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 9, - anon_sym_RBRACK, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536152,7 +542534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 30, + ACTIONS(6477), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -536165,7 +542548,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536179,19 +542562,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, - [205659] = 5, + anon_sym_then, + [209306] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5373), 1, + STATE(5447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536200,7 +542583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 31, + ACTIONS(6481), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -536232,15 +542615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205713] = 5, + [209360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5374), 1, + STATE(5448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536249,10 +542632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 31, - sym__line_break, + ACTIONS(5170), 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, @@ -536263,7 +542646,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, @@ -536276,69 +542659,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [205767] = 5, + [209414] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5375), 1, + ACTIONS(8049), 1, + anon_sym_DOT_DOT, + ACTIONS(8051), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8063), 1, + anon_sym_EQ_EQ, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8073), 1, + anon_sym_QMARK, + ACTIONS(8075), 1, + anon_sym_AMP_AMP, + ACTIONS(8077), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8067), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8055), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(145), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(8065), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8083), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6491), 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, - [205821] = 5, + [209504] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5376), 1, + STATE(5450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536347,7 +542748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 31, + ACTIONS(6493), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -536379,15 +542780,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205875] = 5, + [209558] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5377), 1, + STATE(5451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536396,7 +542797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 31, + ACTIONS(6497), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -536428,15 +542829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205929] = 5, + [209612] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5378), 1, + STATE(5452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(6503), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536445,7 +542846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 31, + ACTIONS(6501), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -536477,23 +542878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205983] = 9, + [209666] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - ACTIONS(8252), 1, - anon_sym_do, - STATE(5379), 1, + STATE(5453), 1, sym_heredoc_body, - STATE(6017), 1, - sym_brace_block, - STATE(6210), 1, - sym_do_end_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536502,9 +542895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 27, + ACTIONS(6505), 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, @@ -536515,6 +542909,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, @@ -536530,34 +542925,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [206045] = 9, + anon_sym_do, + anon_sym_then, + [209720] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - ACTIONS(8252), 1, - anon_sym_do, - STATE(5380), 1, + STATE(5454), 1, sym_heredoc_body, - STATE(6017), 1, - sym_brace_block, - STATE(6210), 1, - sym_do_end_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(5864), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 27, + ACTIONS(5862), 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, @@ -536581,82 +542972,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, - [206107] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5381), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7993), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6332), 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, - [206193] = 5, + [209774] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5382), 1, + STATE(5455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536665,7 +542993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 31, + ACTIONS(6565), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -536697,15 +543025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [206247] = 5, + [209828] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5383), 1, + STATE(5456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(4620), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536714,8 +543043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 31, - sym__line_break, + ACTIONS(4618), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -536728,7 +543056,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536742,20 +543070,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, - [206301] = 5, + [209882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5384), 1, + STATE(5457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 9, - anon_sym_RBRACK, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -536764,7 +543091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 30, + ACTIONS(6229), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -536777,7 +543105,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, @@ -536791,32 +543119,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_do, - [206355] = 5, + anon_sym_then, + [209936] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5385), 1, + STATE(5458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 30, + ACTIONS(6267), 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, @@ -536827,9 +543154,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, @@ -536844,32 +543171,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [206409] = 9, + anon_sym_then, + [209990] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, - STATE(5386), 1, + STATE(5459), 1, sym_heredoc_body, - STATE(6876), 1, - sym_do_end_block, - STATE(6877), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(4938), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 27, + ACTIONS(4940), 30, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -536882,8 +543203,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, @@ -536897,99 +543221,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [206471] = 26, + [210044] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5860), 1, - anon_sym_RBRACK, - ACTIONS(8118), 1, + ACTIONS(8049), 1, anon_sym_DOT_DOT, - ACTIONS(8120), 1, + ACTIONS(8051), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, + ACTIONS(8053), 1, anon_sym_DOT, - ACTIONS(8126), 1, + ACTIONS(8057), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8059), 1, anon_sym_CARET, - ACTIONS(8132), 1, + ACTIONS(8063), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + ACTIONS(8069), 1, anon_sym_AMP_STAR, - ACTIONS(8142), 1, + ACTIONS(8073), 1, anon_sym_QMARK, - ACTIONS(8144), 1, + ACTIONS(8075), 1, anon_sym_AMP_AMP, - ACTIONS(8146), 1, + ACTIONS(8077), 1, anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(8079), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8085), 1, sym_binary_ampersand, - ACTIONS(8254), 1, - anon_sym_COMMA, - STATE(5387), 1, + STATE(5460), 1, sym_heredoc_body, - STATE(5397), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8130), 2, + ACTIONS(8061), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8136), 2, + ACTIONS(8067), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, + ACTIONS(8071), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8124), 3, + ACTIONS(8055), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8134), 4, + ACTIONS(8065), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + ACTIONS(8081), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8083), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [206567] = 7, + ACTIONS(6373), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [210134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7989), 1, - sym__start_of_index_operator, - STATE(5388), 1, + STATE(5461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6259), 8, anon_sym_DOT_DOT, + anon_sym_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, + 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, @@ -537018,99 +543337,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [206625] = 26, + [210188] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5876), 1, - anon_sym_RBRACK, - ACTIONS(8118), 1, + STATE(5462), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6367), 8, anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, anon_sym_DOT, - ACTIONS(8126), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8128), 1, - anon_sym_CARET, - ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8142), 1, - anon_sym_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(6365), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(8154), 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(8256), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, - STATE(5389), 1, - sym_heredoc_body, - STATE(5398), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8130), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8136), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 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(8124), 3, + anon_sym_then, + [210242] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5463), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5883), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, 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(8150), 4, + anon_sym_AMP_STAR, + ACTIONS(5881), 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(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [206721] = 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, + [210296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7989), 1, - sym__start_of_index_operator, - STATE(5390), 1, + STATE(5464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(6559), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 30, + ACTIONS(6557), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537139,23 +543484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [206779] = 9, + [210350] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, - STATE(5391), 1, + STATE(5465), 1, sym_heredoc_body, - STATE(6882), 1, - sym_do_end_block, - STATE(6883), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -537164,9 +543501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 27, + ACTIONS(6249), 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, @@ -537177,6 +543515,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, @@ -537192,26 +543531,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [206841] = 5, + anon_sym_do, + anon_sym_then, + [210404] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5392), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(8289), 1, + anon_sym_DASH_GT, + STATE(5466), 1, sym_heredoc_body, + STATE(10729), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(5020), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5022), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -537223,8 +543570,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, @@ -537237,31 +543582,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, - anon_sym_then, - [206895] = 5, + [210464] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5393), 1, + STATE(5467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(4926), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4928), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537272,9 +543616,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, @@ -537288,24 +543634,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, - [206949] = 8, + [210518] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2997), 1, + ACTIONS(3363), 1, sym__string_literal_start, - STATE(5259), 1, - aux_sym_chained_string_repeat1, - STATE(5394), 1, - sym_heredoc_body, - STATE(5795), 1, + ACTIONS(8291), 1, + anon_sym_COLON, + STATE(3970), 1, sym_string, + STATE(5468), 1, + sym_heredoc_body, + STATE(5582), 1, + aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, ACTIONS(195), 9, - anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -537314,7 +543659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + anon_sym_COLON2, + ACTIONS(173), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -537339,23 +543685,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, - [207009] = 7, + [210580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8254), 1, - anon_sym_COMMA, - STATE(5395), 1, + STATE(5469), 1, sym_heredoc_body, - STATE(5397), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 9, - anon_sym_RBRACK, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -537364,7 +543704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + ACTIONS(6445), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -537377,57 +543718,8 @@ 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_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_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, - [207067] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8256), 1, + anon_sym_SEMI, anon_sym_COMMA, - STATE(5396), 1, - sym_heredoc_body, - STATE(5398), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5876), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5811), 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, @@ -537440,35 +543732,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_do, - [207125] = 7, + anon_sym_then, + [210634] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8256), 1, - anon_sym_COMMA, - STATE(5282), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5397), 1, + STATE(5470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 9, - anon_sym_RBRACK, + ACTIONS(4974), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, - sym__start_of_brace_block, + ACTIONS(4976), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537479,7 +543767,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, @@ -537491,24 +543783,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, - [207183] = 7, + [210688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8258), 1, - anon_sym_COMMA, - STATE(5282), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5398), 1, + STATE(5471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 9, - anon_sym_RBRACK, + ACTIONS(6289), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -537517,7 +543802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, + ACTIONS(6287), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -537530,6 +543816,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, @@ -537542,36 +543830,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, anon_sym_do, - [207241] = 9, + anon_sym_then, + [210742] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, - STATE(5399), 1, + ACTIONS(8186), 1, + anon_sym_PIPE, + STATE(5472), 1, sym_heredoc_body, - STATE(6673), 1, - sym_brace_block, - STATE(6677), 1, - sym_do_end_block, + STATE(5475), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(4881), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 27, + ACTIONS(4883), 29, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -537584,8 +543868,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, @@ -537599,15 +543885,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [207303] = 5, + [210800] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5400), 1, + ACTIONS(8240), 1, + anon_sym_COMMA, + STATE(5473), 1, sym_heredoc_body, + STATE(5487), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(5794), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -537616,8 +543907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 31, - sym__line_break, + ACTIONS(5750), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -537630,8 +543920,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, @@ -537644,19 +543932,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, - [207357] = 5, + [210858] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5401), 1, + ACTIONS(1075), 1, + sym__start_of_brace_block, + STATE(5474), 1, sym_heredoc_body, + STATE(6166), 1, + sym_do_end_block, + STATE(6167), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -537665,10 +543959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5698), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537679,7 +543972,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, @@ -537696,36 +543988,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [207411] = 11, + [210918] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8056), 1, - anon_sym_LBRACK, - ACTIONS(8058), 1, - anon_sym_DOT, - ACTIONS(8060), 1, - anon_sym_STAR, - ACTIONS(8062), 1, - anon_sym_QMARK, - ACTIONS(8164), 1, + ACTIONS(8293), 1, anon_sym_PIPE, - STATE(5195), 1, - aux_sym_union_type_repeat1, - STATE(5402), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4884), 7, + STATE(5475), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4873), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4886), 26, + ACTIONS(4875), 29, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -537738,8 +544021,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, @@ -537750,29 +544035,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, - [207477] = 6, + [210974] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5195), 1, - aux_sym_union_type_repeat1, - STATE(5403), 1, + ACTIONS(1075), 1, + sym__start_of_brace_block, + STATE(5476), 1, sym_heredoc_body, + STATE(6201), 1, + sym_do_end_block, + STATE(6202), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4873), 9, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4875), 29, + ACTIONS(5694), 28, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -537785,10 +544074,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, @@ -537802,15 +544089,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [207533] = 5, + anon_sym_do, + [211034] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5404), 1, + ACTIONS(1075), 1, + sym__start_of_brace_block, + STATE(5477), 1, sym_heredoc_body, + STATE(6203), 1, + sym_do_end_block, + STATE(6204), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -537819,10 +544113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5694), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537833,7 +544126,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, @@ -537850,28 +544142,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [207587] = 5, + [211094] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5405), 1, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, + anon_sym_DOT, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + ACTIONS(8186), 1, + anon_sym_PIPE, + STATE(5472), 1, + aux_sym_union_type_repeat1, + STATE(5478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(4888), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4890), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537882,7 +544183,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, @@ -537895,28 +544195,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, - [207641] = 9, + [211160] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, + ACTIONS(1075), 1, sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, - STATE(5406), 1, + STATE(5479), 1, sym_heredoc_body, - STATE(6884), 1, + STATE(6207), 1, sym_do_end_block, - STATE(6889), 1, + STATE(6208), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -537925,7 +544220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 27, + ACTIONS(5715), 28, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -537953,27 +544248,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [207703] = 5, + anon_sym_do, + [211220] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5407), 1, + ACTIONS(7992), 1, + anon_sym_LBRACK, + ACTIONS(7994), 1, + anon_sym_DOT, + ACTIONS(7996), 1, + anon_sym_STAR, + ACTIONS(7998), 1, + anon_sym_QMARK, + ACTIONS(8186), 1, + anon_sym_PIPE, + STATE(5472), 1, + aux_sym_union_type_repeat1, + STATE(5480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(4892), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, + anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4894), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537984,7 +544290,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, @@ -537997,31 +544302,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_do, - anon_sym_then, - [207757] = 5, + [211286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5408), 1, + STATE(5481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(4859), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 31, + ACTIONS(4861), 30, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -538036,6 +544338,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, @@ -538049,17 +544352,75 @@ 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, - [207811] = 5, + [211340] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5409), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(8021), 1, + sym__start_of_tuple_type, + ACTIONS(8023), 1, + sym__start_of_named_tuple_type, + ACTIONS(8296), 1, + anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_DASH_GT, + STATE(5482), 1, + sym_heredoc_body, + STATE(7864), 1, + sym_constant, + STATE(7932), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8019), 2, + sym_self, + sym_underscore_type, + STATE(7902), 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(4656), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [211414] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538068,7 +544429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 31, + ACTIONS(6085), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -538100,15 +544461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [207865] = 5, + [211468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5410), 1, + STATE(5484), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(5164), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538117,10 +544478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 31, - sym__line_break, + ACTIONS(5166), 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, @@ -538131,7 +544492,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, @@ -538144,20 +544505,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, - anon_sym_then, - [207919] = 5, + [211522] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5411), 1, + ACTIONS(8242), 1, + anon_sym_COMMA, + STATE(5485), 1, sym_heredoc_body, + STATE(5496), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5860), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538166,8 +544532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 31, - sym__line_break, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -538180,8 +544545,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, @@ -538194,19 +544557,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, - anon_sym_then, - [207973] = 5, + [211580] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5412), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(8021), 1, + sym__start_of_tuple_type, + ACTIONS(8023), 1, + sym__start_of_named_tuple_type, + ACTIONS(8296), 1, + anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_DASH_GT, + STATE(5486), 1, sym_heredoc_body, + STATE(7864), 1, + sym_constant, + STATE(7928), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(8019), 2, + sym_self, + sym_underscore_type, + STATE(7902), 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(4678), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [211654] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8242), 1, + anon_sym_COMMA, + STATE(5341), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5487), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5860), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538215,8 +544642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 31, - sym__line_break, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -538229,8 +544655,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, @@ -538243,98 +544667,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, - anon_sym_then, - [208027] = 23, + [211712] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5413), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(8021), 1, + sym__start_of_tuple_type, + ACTIONS(8023), 1, + sym__start_of_named_tuple_type, + ACTIONS(8296), 1, + anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_DASH_GT, + STATE(5488), 1, sym_heredoc_body, + STATE(7864), 1, + sym_constant, + STATE(7929), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7993), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6205), 6, + ACTIONS(8019), 2, + sym_self, + sym_underscore_type, + STATE(7902), 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(4628), 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_do, - anon_sym_then, - [208117] = 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [211786] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5414), 1, + STATE(5489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(4942), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4944), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538345,9 +544761,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, @@ -538361,29 +544779,32 @@ 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, - [208171] = 5, + [211840] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5415), 1, + ACTIONS(8300), 1, + anon_sym_DOT, + ACTIONS(8302), 1, + anon_sym_EQ, + ACTIONS(8304), 1, + sym__start_of_index_operator, + STATE(5490), 1, sym_heredoc_body, + STATE(5647), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 31, + ACTIONS(5719), 28, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538410,27 +544831,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, - [208225] = 5, + [211902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5416), 1, + STATE(5491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5915), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 31, - sym__line_break, + ACTIONS(5913), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -538443,7 +544864,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, @@ -538457,29 +544877,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, - anon_sym_then, - [208279] = 5, + [211956] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5417), 1, + STATE(5492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(5919), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 31, - sym__line_break, + ACTIONS(5917), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -538492,7 +544913,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, @@ -538506,29 +544926,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, - anon_sym_then, - [208333] = 5, + [212010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5418), 1, + STATE(5493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(6049), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 31, - sym__line_break, + ACTIONS(6047), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -538541,7 +544962,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, @@ -538555,29 +544975,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, - anon_sym_then, - [208387] = 5, + [212064] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5419), 1, + STATE(5494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(6053), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 31, - sym__line_break, + ACTIONS(6051), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -538590,7 +545011,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, @@ -538604,19 +545024,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, - anon_sym_then, - [208441] = 5, + [212118] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5420), 1, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, + STATE(5495), 1, sym_heredoc_body, + STATE(6385), 1, + sym_do_end_block, + STATE(6386), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538625,10 +545053,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5729), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538639,7 +545066,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, @@ -538655,17 +545081,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, - [208495] = 5, + [212180] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5421), 1, + ACTIONS(8306), 1, + anon_sym_COMMA, + STATE(5341), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(5892), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538674,8 +545103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 31, - sym__line_break, + ACTIONS(5888), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -538688,8 +545116,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, @@ -538702,31 +545128,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, - anon_sym_then, - [208549] = 6, + [212238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8260), 1, - anon_sym_of, - STATE(5422), 1, + STATE(5497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 9, + ACTIONS(5953), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 29, + ACTIONS(5951), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -538756,15 +545181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208605] = 5, + [212292] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5423), 1, + STATE(5498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538773,9 +545198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 31, + ACTIONS(5170), 31, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -538787,6 +545211,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, @@ -538800,32 +545225,32 @@ 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, - [208659] = 5, + [212346] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5424), 1, + STATE(5499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(4906), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4908), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538836,9 +545261,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, @@ -538852,17 +545279,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, - [208713] = 5, + [212400] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5425), 1, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, + STATE(5500), 1, sym_heredoc_body, + STATE(6787), 1, + sym_do_end_block, + STATE(6788), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538871,10 +545304,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6223), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5698), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538885,7 +545317,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, @@ -538901,17 +545332,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_then, - [208767] = 5, + [212462] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5426), 1, + ACTIONS(2997), 1, + sym__string_literal_start, + STATE(5380), 1, + aux_sym_chained_string_repeat1, + STATE(5501), 1, sym_heredoc_body, + STATE(5973), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(195), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538920,9 +545356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(173), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -538934,7 +545368,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, @@ -538948,19 +545381,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, - [208821] = 5, + [212522] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5427), 1, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, + STATE(5502), 1, sym_heredoc_body, + STATE(6835), 1, + sym_do_end_block, + STATE(6836), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -538969,10 +545409,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5694), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538983,7 +545422,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, @@ -538999,25 +545437,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, - [208875] = 9, + [212584] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, + ACTIONS(1125), 1, sym__start_of_brace_block, - ACTIONS(8107), 1, + ACTIONS(8045), 1, anon_sym_do, - STATE(5428), 1, + STATE(5503), 1, sym_heredoc_body, - STATE(6890), 1, + STATE(6837), 1, sym_do_end_block, - STATE(6891), 1, + STATE(6838), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -539026,7 +545462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 27, + ACTIONS(5694), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -539054,15 +545490,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [208937] = 5, + [212646] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5429), 1, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, + STATE(5504), 1, sym_heredoc_body, + STATE(6847), 1, + sym_do_end_block, + STATE(6848), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -539071,10 +545515,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5715), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -539085,7 +545528,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, @@ -539101,17 +545543,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, - [208991] = 5, + [212708] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5430), 1, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, + STATE(5505), 1, sym_heredoc_body, + STATE(6853), 1, + sym_do_end_block, + STATE(6855), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -539120,10 +545568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5715), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -539134,7 +545581,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, @@ -539150,94 +545596,75 @@ 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, - [209045] = 23, + [212770] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7959), 1, - anon_sym_DOT_DOT, - ACTIONS(7961), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7963), 1, - anon_sym_DOT, - ACTIONS(7967), 1, - anon_sym_PIPE, - ACTIONS(7969), 1, - anon_sym_CARET, - ACTIONS(7973), 1, - anon_sym_EQ_EQ, - ACTIONS(7979), 1, - anon_sym_AMP_STAR, - ACTIONS(7983), 1, - anon_sym_QMARK, - ACTIONS(7985), 1, - anon_sym_AMP_AMP, - ACTIONS(7987), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7989), 1, - sym__start_of_index_operator, - ACTIONS(7995), 1, - sym_binary_ampersand, - STATE(5431), 1, + STATE(5506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7971), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7977), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7981), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7965), 3, + ACTIONS(5927), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7975), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7991), 4, + anon_sym_AMP_STAR, + ACTIONS(5925), 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(7993), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6506), 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_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [209135] = 5, + [212824] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5432), 1, + STATE(5507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6023), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 31, - sym__line_break, + ACTIONS(6021), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -539250,7 +545677,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, @@ -539264,19 +545690,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, - [209189] = 5, + [212878] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5433), 1, + STATE(5508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(5164), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -539285,9 +545711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 31, + ACTIONS(5166), 31, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -539299,6 +545724,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, @@ -539312,32 +545738,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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [212932] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8053), 1, + anon_sym_DOT, + ACTIONS(8057), 1, + anon_sym_PIPE, + ACTIONS(8059), 1, + anon_sym_CARET, + ACTIONS(8069), 1, + anon_sym_AMP_STAR, + ACTIONS(8079), 1, + sym__start_of_index_operator, + ACTIONS(8085), 1, + sym_binary_ampersand, + STATE(5509), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8061), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8071), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8081), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8083), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 16, + sym__line_break, + sym__start_of_brace_block, + 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [209243] = 5, + [213006] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5434), 1, + STATE(5510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(5868), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 31, - sym__line_break, + ACTIONS(5866), 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, @@ -539348,7 +545834,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, @@ -539365,27 +545850,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [209297] = 5, + [213059] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5435), 1, + STATE(5511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 31, + ACTIONS(6069), 29, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -539413,17 +545897,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, - [209351] = 5, + [213112] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5436), 1, + ACTIONS(8308), 1, + anon_sym_COMMA, + STATE(5512), 1, sym_heredoc_body, + STATE(5809), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -539432,10 +545919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 31, - sym__line_break, + ACTIONS(5888), 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, @@ -539446,8 +545933,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, @@ -539463,224 +545948,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [209405] = 24, + [213169] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5939), 1, - anon_sym_RBRACK, - ACTIONS(8118), 1, - anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, + ACTIONS(7017), 1, anon_sym_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_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - STATE(5437), 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(5934), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8150), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8152), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [209496] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8262), 1, + ACTIONS(8310), 1, anon_sym_COMMA, - ACTIONS(8264), 1, + ACTIONS(8312), 1, anon_sym_DOT_DOT, - ACTIONS(8266), 1, + ACTIONS(8314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(8318), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8320), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8324), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8330), 1, anon_sym_AMP_STAR, - ACTIONS(8288), 1, + ACTIONS(8334), 1, anon_sym_QMARK, - ACTIONS(8290), 1, + ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8338), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8344), 1, sym_binary_ampersand, - STATE(5438), 1, + STATE(5513), 1, sym_heredoc_body, - STATE(5744), 1, + STATE(5604), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, + ACTIONS(5856), 3, sym__start_of_brace_block, - sym__end_of_with_expression, + anon_sym_COLON2, anon_sym_do, - ACTIONS(8270), 3, + ACTIONS(8316), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8280), 4, + ACTIONS(8326), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [209589] = 15, + [213262] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, - anon_sym_LPAREN, - ACTIONS(8304), 1, - anon_sym_DASH_GT, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, - anon_sym_COLON_COLON, - ACTIONS(8315), 1, - sym__start_of_tuple_type, - ACTIONS(8317), 1, - sym__start_of_named_tuple_type, - STATE(5439), 1, - sym_heredoc_body, - STATE(7889), 1, - sym_constant, - STATE(7914), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8313), 2, - sym_self, - sym_underscore_type, - STATE(7926), 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(4678), 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, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [209662] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8319), 1, - anon_sym_COMMA, - STATE(5440), 1, + STATE(5514), 1, sym_heredoc_body, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, + ACTIONS(6047), 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, @@ -539691,6 +546048,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, @@ -539705,29 +546063,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, - [209719] = 5, + [213315] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5441), 1, + STATE(5515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, - anon_sym_RBRACK, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(6051), 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, @@ -539751,31 +546109,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_do, - [209772] = 5, + [213368] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5442), 1, + STATE(5516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 9, - anon_sym_RBRACK, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 29, + ACTIONS(5951), 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, @@ -539799,19 +546157,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, - [209825] = 5, + [213421] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5443), 1, + STATE(5517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 9, + ACTIONS(6087), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -539821,7 +546178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 29, + ACTIONS(6085), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -539851,27 +546208,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [209878] = 5, + [213474] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5444), 1, + ACTIONS(8346), 1, + anon_sym_DOT, + ACTIONS(8348), 1, + anon_sym_EQ, + ACTIONS(8350), 1, + sym__start_of_index_operator, + STATE(5518), 1, sym_heredoc_body, + STATE(5887), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 9, + ACTIONS(5721), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5719), 26, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -539898,20 +546260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [209931] = 7, + [213535] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8321), 1, - anon_sym_COMMA, - STATE(5445), 1, + STATE(5519), 1, sym_heredoc_body, - STATE(5657), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5721), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -539920,10 +546278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(5719), 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, @@ -539934,6 +546291,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, @@ -539946,76 +546304,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, - [209988] = 15, + [213588] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(7286), 1, - sym__start_of_tuple_type, - ACTIONS(7288), 1, - sym__start_of_named_tuple_type, - ACTIONS(7378), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_DASH_GT, - STATE(5446), 1, - sym_heredoc_body, - STATE(7728), 1, - sym_constant, - STATE(7773), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7284), 2, - sym_self, - sym_underscore_type, - STATE(7758), 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(4722), 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, - [210061] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5447), 1, + STATE(5520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 9, + ACTIONS(6093), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -540025,7 +546326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 29, + ACTIONS(6091), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -540055,15 +546356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210114] = 5, + [213641] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5448), 1, + STATE(5521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 9, + ACTIONS(6265), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -540073,7 +546374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 29, + ACTIONS(6263), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -540103,27 +546404,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210167] = 5, + [213694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5449), 1, + STATE(5522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 9, - anon_sym_RBRACK, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 29, + 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, @@ -540147,20 +546449,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, - [210220] = 5, + [213747] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5450), 1, + ACTIONS(7663), 1, + anon_sym_LPAREN2, + STATE(5523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 9, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -540169,9 +546471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 29, + ACTIONS(173), 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, @@ -540195,23 +546498,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, - [210273] = 7, + [213802] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8321), 1, - anon_sym_COMMA, - STATE(5451), 1, + STATE(5524), 1, sym_heredoc_body, - STATE(5487), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5696), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -540220,10 +546519,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + 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, @@ -540234,6 +546532,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, @@ -540246,18 +546545,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, - [210330] = 5, + [213855] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5452), 1, + STATE(5525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 9, + ACTIONS(6439), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -540267,7 +546567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 29, + ACTIONS(6437), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -540297,15 +546597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210383] = 5, + [213908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5453), 1, + STATE(5526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 9, + ACTIONS(6439), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -540315,7 +546615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 29, + ACTIONS(6437), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -540345,15 +546645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210436] = 5, + [213961] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5454), 1, + STATE(5527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 9, + ACTIONS(6273), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -540363,7 +546663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 29, + ACTIONS(6271), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -540393,27 +546693,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210489] = 5, + [214014] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5455), 1, + STATE(5528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 9, - anon_sym_RBRACK, + ACTIONS(6023), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 29, + ACTIONS(6021), 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, @@ -540437,23 +546738,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, - [210542] = 7, + [214067] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8323), 1, - anon_sym_COMMA, - STATE(5451), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5456), 1, + STATE(5529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5717), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -540462,10 +546759,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + ACTIONS(5715), 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, @@ -540476,6 +546772,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, @@ -540488,18 +546785,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, - [210599] = 5, + [214120] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5457), 1, + STATE(5530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 9, + ACTIONS(6277), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -540509,7 +546807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 29, + ACTIONS(6275), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -540539,82 +546837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210652] = 24, + [214173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8118), 1, - anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, - anon_sym_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_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - ACTIONS(8325), 1, - anon_sym_RBRACK, - STATE(5458), 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(6311), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8150), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8152), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [210743] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5459), 1, + STATE(5531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 9, + ACTIONS(6524), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -540624,7 +546855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 29, + ACTIONS(6522), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -540654,17 +546885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210796] = 6, + [214226] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8327), 1, - anon_sym_of, - STATE(5460), 1, + STATE(5532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(5717), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -540673,10 +546903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 29, + ACTIONS(5715), 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, @@ -540700,155 +546929,69 @@ static const uint16_t ts_small_parse_table[] = { 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, - [210851] = 25, + [214279] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - ACTIONS(8329), 1, - anon_sym_COMMA, - STATE(5461), 1, + STATE(5533), 1, sym_heredoc_body, - STATE(9535), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_do, - ACTIONS(7138), 3, + ACTIONS(6471), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(6469), 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(7164), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [210944] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - ACTIONS(8331), 1, - anon_sym_COMMA, - STATE(5462), 1, - sym_heredoc_body, - STATE(9536), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7144), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_do, - ACTIONS(7138), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [211037] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [214332] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5463), 1, + ACTIONS(8352), 1, + sym_regex_modifier, + STATE(5534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 9, - anon_sym_RBRACK, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -540857,8 +547000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 29, - sym__start_of_brace_block, + ACTIONS(5832), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -540870,6 +547013,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, @@ -540883,19 +547027,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, - [211090] = 5, + anon_sym_then, + [214387] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5464), 1, + STATE(5535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 9, + ACTIONS(6471), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -540905,7 +547048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 29, + ACTIONS(6469), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -540935,18 +547078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211143] = 6, + [214440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8333), 1, - anon_sym_COMMA, + STATE(5536), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5465), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(6487), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -540955,8 +547096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 28, - sym__line_break, + ACTIONS(6485), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -540968,7 +547109,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, @@ -540981,18 +547122,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, - [211198] = 5, + anon_sym_do, + [214493] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5466), 1, + STATE(5537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 9, + ACTIONS(6319), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541002,7 +547144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 29, + ACTIONS(6317), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541032,29 +547174,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211251] = 7, + [214546] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8336), 1, - anon_sym_LPAREN, - ACTIONS(8338), 1, - anon_sym_DOT, - STATE(5467), 1, + ACTIONS(8354), 1, + anon_sym_COMMA, + STATE(5538), 1, sym_heredoc_body, + STATE(5809), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(5860), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 29, - sym__line_break, + ACTIONS(5856), 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, @@ -541065,8 +547209,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, @@ -541081,34 +547223,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [211308] = 8, + anon_sym_do, + [214603] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(8340), 1, - anon_sym_DASH_GT, - STATE(5468), 1, + STATE(5539), 1, sym_heredoc_body, - STATE(10184), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6516), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 26, + ACTIONS(6514), 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, @@ -541119,6 +547255,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, @@ -541131,19 +547268,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, - [211367] = 6, + anon_sym_do, + [214656] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8336), 1, - anon_sym_LPAREN, - STATE(5469), 1, + STATE(5540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(5834), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -541152,8 +547290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 29, - sym__line_break, + ACTIONS(5832), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -541165,7 +547303,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, @@ -541179,18 +547316,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, - [211422] = 5, + anon_sym_do, + [214709] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5470), 1, + STATE(5541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 9, + ACTIONS(143), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541200,7 +547338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 29, + ACTIONS(145), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541230,17 +547368,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211475] = 6, + [214762] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8342), 1, - anon_sym_of, - STATE(5471), 1, + ACTIONS(8356), 1, + sym_regex_modifier, + STATE(5542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -541249,10 +547387,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 29, - sym__start_of_brace_block, + ACTIONS(5838), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541263,6 +547400,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, @@ -541278,16 +547416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [211530] = 5, + anon_sym_then, + [214817] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5472), 1, + STATE(5543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 9, + ACTIONS(6281), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541297,7 +547435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 29, + ACTIONS(6279), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541327,15 +547465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211583] = 5, + [214870] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5473), 1, + STATE(5544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 9, + ACTIONS(5731), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541345,7 +547483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 29, + ACTIONS(5729), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541375,15 +547513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211636] = 5, + [214923] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5474), 1, + STATE(5545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 9, + ACTIONS(6531), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541393,7 +547531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 29, + ACTIONS(6529), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541423,29 +547561,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211689] = 7, + [214976] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_DOT, - ACTIONS(8148), 1, - sym__start_of_index_operator, - STATE(5475), 1, + STATE(5546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 8, + ACTIONS(6535), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 28, + ACTIONS(6533), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541473,80 +547609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211746] = 21, + [215029] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_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(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - STATE(5476), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6405), 2, - 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_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(8150), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8152), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6403), 6, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_do, - [211831] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5477), 1, + ACTIONS(7939), 1, + anon_sym_COLON, + STATE(5547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 9, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -541555,9 +547628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 29, + ACTIONS(173), 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, @@ -541581,19 +547655,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, - [211884] = 5, + [215084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5478), 1, + STATE(5548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 9, + ACTIONS(6539), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541603,7 +547676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 29, + ACTIONS(6537), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541633,16 +547706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211937] = 5, + [215137] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5479), 1, + STATE(5549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 9, - anon_sym_RBRACK, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -541651,8 +547723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 29, - sym__start_of_brace_block, + ACTIONS(4622), 30, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -541664,6 +547736,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541677,19 +547751,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, - [211990] = 5, + anon_sym_then, + [215190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5480), 1, + STATE(5550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 9, + ACTIONS(5840), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541699,7 +547772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 29, + ACTIONS(5838), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541729,17 +547802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212043] = 6, + [215243] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8344), 1, - anon_sym_LPAREN, - STATE(5481), 1, + STATE(5551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(6371), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -541748,10 +547820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 29, + 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, @@ -541775,67 +547846,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, - [212098] = 6, + [215296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8346), 1, - anon_sym_LPAREN, - STATE(5482), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5858), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5854), 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, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [212153] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5483), 1, + STATE(5552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 9, + ACTIONS(6285), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541845,7 +547868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 29, + ACTIONS(6283), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541875,15 +547898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212206] = 5, + [215349] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5484), 1, + STATE(5553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 9, + ACTIONS(6543), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541893,7 +547916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 29, + ACTIONS(6541), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541923,15 +547946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212259] = 5, + [215402] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5485), 1, + STATE(5554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 9, + ACTIONS(6463), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -541941,7 +547964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 29, + ACTIONS(6461), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -541971,112 +547994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212312] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5486), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5783), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5781), 30, - 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__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, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [212365] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8348), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(5487), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5934), 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, - [212420] = 5, + [215455] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5488), 1, + STATE(5555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 9, + ACTIONS(6547), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -542086,7 +548012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 29, + ACTIONS(6545), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -542116,15 +548042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212473] = 5, + [215508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5489), 1, + STATE(5556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 9, + ACTIONS(6551), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -542134,7 +548060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 29, + ACTIONS(6549), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -542164,15 +548090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212526] = 5, + [215561] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5490), 1, + STATE(5557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 9, + ACTIONS(6555), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -542182,7 +548108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 29, + ACTIONS(6553), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -542212,32 +548138,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212579] = 8, + [215614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3097), 1, - sym__string_literal_start, - STATE(5491), 1, + STATE(5558), 1, sym_heredoc_body, - STATE(5551), 1, - aux_sym_chained_string_repeat1, - STATE(6582), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(5850), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -542248,6 +548169,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, @@ -542263,27 +548185,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [212638] = 5, + anon_sym_then, + [215667] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5492), 1, + STATE(5559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 9, - anon_sym_RBRACK, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, + ACTIONS(5669), 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, @@ -542307,30 +548231,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [212691] = 5, + [215720] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5493), 1, + STATE(5560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 9, - anon_sym_RBRACK, + ACTIONS(5864), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, - sym__start_of_brace_block, + ACTIONS(5862), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -542342,6 +548265,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, @@ -542355,31 +548279,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_do, - [212744] = 5, + anon_sym_then, + [215773] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5494), 1, + STATE(5561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 9, - anon_sym_RBRACK, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, + ACTIONS(5818), 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, @@ -542403,19 +548327,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, - [212797] = 5, + [215826] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5495), 1, + STATE(5562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 9, + ACTIONS(6563), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -542425,7 +548348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, + ACTIONS(6561), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -542455,27 +548378,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212850] = 5, + [215879] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5496), 1, + STATE(5563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 9, - anon_sym_RBRACK, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, + ACTIONS(5818), 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, @@ -542499,20 +548423,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, - [212903] = 5, + [215932] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5497), 1, + ACTIONS(3363), 1, + sym__string_literal_start, + STATE(3970), 1, + sym_string, + STATE(5564), 1, sym_heredoc_body, + STATE(5582), 1, + aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 9, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -542521,8 +548449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 29, - sym__start_of_brace_block, + ACTIONS(173), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -542547,86 +548474,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, - [212956] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8118), 1, - anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, - anon_sym_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_QMARK, - ACTIONS(8144), 1, anon_sym_AMP_AMP, - ACTIONS(8146), 1, anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - ACTIONS(8351), 1, - anon_sym_RBRACK, - STATE(5498), 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(6205), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8150), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8152), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [213047] = 5, + anon_sym_COLON2, + [215991] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5499), 1, + STATE(5565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 9, + ACTIONS(195), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -542636,7 +548495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 29, + ACTIONS(173), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -542666,191 +548525,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213100] = 5, + [216044] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5500), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6221), 9, - anon_sym_RBRACK, + ACTIONS(8144), 1, anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8152), 1, anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(6219), 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, + ACTIONS(8168), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8170), 1, anon_sym_AMP_AMP, + ACTIONS(8172), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [213153] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5501), 1, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8358), 1, + anon_sym_RBRACK, + STATE(5566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5947), 29, + ACTIONS(6489), 4, sym__start_of_brace_block, - sym__start_of_index_operator, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 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, - [213206] = 25, + [216135] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8353), 1, - anon_sym_COMMA, - ACTIONS(8355), 1, + ACTIONS(8144), 1, anon_sym_DOT_DOT, - ACTIONS(8357), 1, + ACTIONS(8146), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(8377), 1, + ACTIONS(8168), 1, anon_sym_QMARK, - ACTIONS(8379), 1, + ACTIONS(8170), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, + ACTIONS(8172), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, sym_binary_ampersand, - STATE(5502), 1, + ACTIONS(8360), 1, + anon_sym_RBRACK, + STATE(5567), 1, sym_heredoc_body, - STATE(5527), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8359), 3, + ACTIONS(8150), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, + ACTIONS(6509), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8160), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [213299] = 5, + [216226] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5503), 1, + STATE(5568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 9, - anon_sym_RBRACK, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 29, + ACTIONS(5822), 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, @@ -542874,19 +548704,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, - [213352] = 5, + [216279] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5504), 1, + STATE(5569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 9, + ACTIONS(6099), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -542896,7 +548725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 29, + ACTIONS(6097), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -542926,27 +548755,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213405] = 5, + [216332] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5505), 1, + STATE(5570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 9, - anon_sym_RBRACK, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, + ACTIONS(6009), 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, @@ -542970,19 +548800,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, - [213458] = 5, + [216385] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5506), 1, + STATE(5571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 9, + ACTIONS(6269), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -542992,7 +548821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(145), 29, + ACTIONS(6267), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543022,15 +548851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213511] = 5, + [216438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5507), 1, + STATE(5572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 9, + ACTIONS(6099), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -543040,7 +548869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 29, + ACTIONS(6097), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543070,15 +548899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213564] = 5, + [216491] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5508), 1, + STATE(5573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 9, + ACTIONS(6103), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -543088,7 +548917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 29, + ACTIONS(6101), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543118,19 +548947,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213617] = 7, + [216544] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8353), 1, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, + anon_sym_QMARK, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + ACTIONS(8362), 1, anon_sym_COMMA, - STATE(5509), 1, + STATE(5574), 1, sym_heredoc_body, - STATE(5527), 1, + STATE(5619), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5856), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_then, + ACTIONS(8198), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8228), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [216637] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5575), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6107), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -543139,7 +549033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + ACTIONS(6105), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543152,6 +549046,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, @@ -543164,19 +549059,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, - [213674] = 5, + [216690] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5510), 1, + STATE(5576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 9, + ACTIONS(6111), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -543186,7 +549081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 29, + ACTIONS(6109), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543216,15 +549111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213727] = 5, + [216743] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5511), 1, + STATE(5577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 9, + ACTIONS(6115), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -543234,7 +549129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 29, + ACTIONS(6113), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543264,15 +549159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213780] = 5, + [216796] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5512), 1, + STATE(5578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 9, + ACTIONS(6119), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -543282,7 +549177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 29, + ACTIONS(6117), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543312,17 +549207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213833] = 6, + [216849] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8389), 1, - anon_sym_EQ, - STATE(5513), 1, + STATE(5579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(6123), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -543331,10 +549225,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 29, + ACTIONS(6121), 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, @@ -543358,18 +549251,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, - [213888] = 5, + [216902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5514), 1, + STATE(5580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 9, + ACTIONS(6081), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -543379,7 +549273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 29, + ACTIONS(6079), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543409,15 +549303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213941] = 5, + [216955] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5515), 1, + STATE(5581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 9, + ACTIONS(6435), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -543427,7 +549321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, + ACTIONS(6433), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543457,17 +549351,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213994] = 6, + [217008] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8391), 1, - anon_sym_of, - STATE(5516), 1, + ACTIONS(3363), 1, + sym__string_literal_start, + STATE(3970), 1, + sym_string, + STATE(5582), 1, sym_heredoc_body, + STATE(5601), 1, + aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -543476,10 +549374,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 29, - sym__start_of_brace_block, + ACTIONS(5686), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543505,18 +549401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [214049] = 6, + anon_sym_COLON2, + [217067] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8393), 1, - anon_sym_of, - STATE(5517), 1, + STATE(5583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(6185), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -543525,10 +549420,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 29, + ACTIONS(6183), 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, @@ -543552,218 +549446,115 @@ static const uint16_t ts_small_parse_table[] = { 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, - [214104] = 21, + [217120] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_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(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - STATE(5518), 1, + STATE(5584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6109), 2, + ACTIONS(6185), 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_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, 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(8150), 4, + anon_sym_AMP_STAR, + ACTIONS(6183), 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(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 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, - [214189] = 25, + [217173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, - anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - ACTIONS(8395), 1, - anon_sym_COMMA, - STATE(5519), 1, + STATE(5585), 1, sym_heredoc_body, - STATE(9622), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7144), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7150), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - ACTIONS(7138), 3, + ACTIONS(6185), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7162), 4, + anon_sym_AMP_STAR, + ACTIONS(6183), 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(7164), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [214282] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(7134), 1, - anon_sym_DOT_DOT, - ACTIONS(7136), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7140), 1, - anon_sym_PIPE, - ACTIONS(7142), 1, anon_sym_CARET, - ACTIONS(7146), 1, - anon_sym_EQ_EQ, - ACTIONS(7152), 1, - anon_sym_AMP_STAR, - ACTIONS(7156), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_AMP_AMP, - ACTIONS(7160), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7166), 1, - sym_binary_ampersand, - ACTIONS(8397), 1, - anon_sym_COMMA, - STATE(5520), 1, - sym_heredoc_body, - STATE(9590), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7144), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7150), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7154), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - ACTIONS(7138), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7148), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7162), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7164), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [214375] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [217226] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5521), 1, + STATE(5586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 9, + ACTIONS(6185), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -543773,7 +549564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 29, + ACTIONS(6183), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -543803,85 +549594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214428] = 25, + [217279] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - ACTIONS(8399), 1, - anon_sym_COMMA, - STATE(5522), 1, - sym_heredoc_body, - STATE(5530), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8359), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [214521] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7810), 1, - anon_sym_COLON, - STATE(5523), 1, + STATE(5587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6189), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -543890,8 +549612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, - sym__line_break, + ACTIONS(6187), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -543903,7 +549625,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, @@ -543917,32 +549638,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_then, - [214576] = 7, + anon_sym_do, + [217332] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_DOT, - ACTIONS(8148), 1, - sym__start_of_index_operator, - STATE(5524), 1, + STATE(5588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 8, + ACTIONS(6189), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 28, + ACTIONS(6187), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543970,19 +549690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214633] = 7, + [217385] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8399), 1, - anon_sym_COMMA, - STATE(5525), 1, + STATE(5589), 1, sym_heredoc_body, - STATE(5530), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6189), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -543991,7 +549708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(6187), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544004,6 +549721,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, @@ -544016,91 +549734,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, - [214690] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8189), 1, - anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - ACTIONS(8401), 1, - anon_sym_COMMA, - STATE(5526), 1, - sym_heredoc_body, - STATE(5630), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_then, - ACTIONS(8195), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8225), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [214783] = 7, + [217438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8399), 1, - anon_sym_COMMA, - STATE(5527), 1, + STATE(5590), 1, sym_heredoc_body, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6189), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544109,7 +549756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(6187), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544122,6 +549769,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, @@ -544134,19 +549782,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, - [214840] = 5, + [217491] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5528), 1, + STATE(5591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 9, + ACTIONS(6193), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -544156,7 +549804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 29, + ACTIONS(6191), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544186,17 +549834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214893] = 6, + [217544] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8403), 1, - sym_regex_modifier, - STATE(5529), 1, + STATE(5592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6181), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544205,8 +549852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 29, - sym__line_break, + ACTIONS(6179), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -544218,7 +549865,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, @@ -544232,22 +549878,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_then, - [214948] = 7, + anon_sym_do, + [217597] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8405), 1, - anon_sym_COMMA, - STATE(5530), 1, + ACTIONS(7661), 1, + anon_sym_LPAREN2, + STATE(5593), 1, sym_heredoc_body, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544256,8 +549901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, - sym__start_of_brace_block, + ACTIONS(173), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -544269,6 +549914,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, @@ -544283,66 +549930,154 @@ 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, - [215005] = 5, + anon_sym_then, + [217652] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5531), 1, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8364), 1, + anon_sym_RBRACK, + STATE(5594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5987), 29, + ACTIONS(6227), 4, sym__start_of_brace_block, - sym__start_of_index_operator, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [217743] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8366), 1, + anon_sym_RBRACK, + STATE(5595), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8166), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 4, + sym__start_of_brace_block, + anon_sym_COMMA, anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [215058] = 5, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8178), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [217834] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5532), 1, + ACTIONS(8310), 1, + anon_sym_COMMA, + STATE(5596), 1, sym_heredoc_body, + STATE(5603), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 9, - anon_sym_RBRACK, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544351,7 +550086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 29, + ACTIONS(5750), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544364,7 +550099,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, @@ -544377,19 +550111,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, - [215111] = 5, + [217891] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5533), 1, + STATE(5597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 9, + ACTIONS(6197), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -544399,7 +550133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 29, + ACTIONS(6195), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544429,15 +550163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215164] = 5, + [217944] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5534), 1, + STATE(5598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 9, + ACTIONS(6201), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -544447,7 +550181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 29, + ACTIONS(6199), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544477,29 +550211,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215217] = 7, + [217997] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_DOT, - ACTIONS(8148), 1, - sym__start_of_index_operator, - STATE(5535), 1, + ACTIONS(7849), 1, + anon_sym_COLON, + STATE(5599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 8, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 28, - sym__start_of_brace_block, + ACTIONS(173), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -544510,6 +550243,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, @@ -544523,20 +550257,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, - [215274] = 5, + anon_sym_then, + [218052] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5536), 1, + ACTIONS(8310), 1, + anon_sym_COMMA, + STATE(5600), 1, sym_heredoc_body, + STATE(5604), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544545,7 +550281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 29, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544558,7 +550294,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, @@ -544571,20 +550306,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_COLON2, anon_sym_do, - [215327] = 5, + [218109] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5537), 1, - sym_heredoc_body, + ACTIONS(8368), 1, + sym__string_literal_start, + STATE(3970), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 9, - anon_sym_RBRACK, + STATE(5601), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544593,8 +550332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 29, - sym__start_of_brace_block, + ACTIONS(5660), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -544619,19 +550357,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, - [215380] = 5, + anon_sym_COLON2, + [218166] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5538), 1, + STATE(5602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 9, + ACTIONS(6205), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -544641,7 +550378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 29, + ACTIONS(6203), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544671,16 +550408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215433] = 5, + [218219] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5539), 1, + ACTIONS(8310), 1, + anon_sym_COMMA, + STATE(5603), 1, sym_heredoc_body, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544689,7 +550429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 29, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544702,7 +550442,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, @@ -544715,20 +550454,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, - [215486] = 5, + [218276] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5540), 1, + ACTIONS(8310), 1, + anon_sym_COMMA, + STATE(5604), 1, sym_heredoc_body, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 9, - anon_sym_RBRACK, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544737,7 +550479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 29, + ACTIONS(5888), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544750,7 +550492,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, @@ -544763,86 +550504,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, - [215539] = 24, + [218333] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8118), 1, - anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, - anon_sym_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_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - ACTIONS(8407), 1, - anon_sym_RBRACK, - STATE(5541), 1, + STATE(5605), 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, + ACTIONS(6209), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6506), 4, + anon_sym_AMP_STAR, + ACTIONS(6207), 29, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [215630] = 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, + [218386] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5542), 1, + STATE(5606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(5975), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -544851,8 +550574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 30, - sym__line_break, + ACTIONS(5970), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -544864,8 +550587,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -544879,85 +550600,115 @@ static const uint16_t ts_small_parse_table[] = { 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, - [215683] = 24, + anon_sym_do, + [218439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8118), 1, + STATE(5607), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6213), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, anon_sym_DOT, - ACTIONS(8126), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8128), 1, - anon_sym_CARET, - ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8142), 1, - anon_sym_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(6211), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(8154), 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(8409), 1, - anon_sym_RBRACK, - STATE(5543), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8130), 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(8136), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8124), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [218492] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5608), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6217), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6508), 4, + anon_sym_AMP_STAR, + ACTIONS(6215), 29, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [215774] = 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, + [218545] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5544), 1, + STATE(5609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 9, + ACTIONS(6221), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -544967,7 +550718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 29, + ACTIONS(6219), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -544997,27 +550748,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215827] = 5, + [218598] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5545), 1, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(8371), 1, + anon_sym_DASH_GT, + STATE(5610), 1, sym_heredoc_body, + STATE(10344), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 9, - anon_sym_RBRACK, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 29, - sym__start_of_brace_block, + ACTIONS(5022), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545028,7 +550785,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, @@ -545041,19 +550797,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, - [215880] = 5, + [218657] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5546), 1, + STATE(5611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 9, + ACTIONS(6299), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -545063,7 +550817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 29, + ACTIONS(6297), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -545093,83 +550847,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215933] = 25, + [218710] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - ACTIONS(8411), 1, - anon_sym_COMMA, - STATE(5547), 1, + STATE(5612), 1, sym_heredoc_body, - STATE(5723), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8359), 3, + ACTIONS(6225), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + anon_sym_AMP_STAR, + ACTIONS(6223), 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(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [216026] = 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, + [218763] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5548), 1, + STATE(5613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 9, + ACTIONS(6239), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -545179,7 +550913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 29, + ACTIONS(6237), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -545209,15 +550943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216079] = 5, + [218816] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5549), 1, + STATE(5614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 9, + ACTIONS(5168), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -545227,8 +550961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 29, - sym__start_of_brace_block, + ACTIONS(5170), 29, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -545240,6 +550973,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, @@ -545252,81 +550986,70 @@ 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, - [216132] = 12, + [218869] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8413), 1, - sym_identifier, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(8423), 1, - sym_identifier_method_call, - ACTIONS(8425), 1, - sym_self, - STATE(5550), 1, + STATE(5615), 1, sym_heredoc_body, - STATE(8275), 1, - sym__operator_token, - STATE(12233), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8415), 10, + ACTIONS(5945), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(8417), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5943), 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_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, - [216199] = 8, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [218922] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3097), 1, - sym__string_literal_start, - STATE(5551), 1, + ACTIONS(8373), 1, + anon_sym_of, + STATE(5616), 1, sym_heredoc_body, - STATE(5578), 1, - aux_sym_chained_string_repeat1, - STATE(6582), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -545335,9 +551058,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 27, + ACTIONS(5844), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545348,6 +551071,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, @@ -545363,16 +551087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [216258] = 5, + anon_sym_then, + [218977] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5552), 1, + STATE(5617), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 9, - anon_sym_RBRACK, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -545381,9 +551105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 29, + ACTIONS(4618), 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, @@ -545394,6 +551119,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -545407,20 +551133,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, - [216311] = 5, + [219030] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5553), 1, + ACTIONS(8375), 1, + anon_sym_of, + STATE(5618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 9, - anon_sym_RBRACK, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -545429,8 +551155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 29, - sym__start_of_brace_block, + ACTIONS(5744), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -545442,6 +551168,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, @@ -545455,20 +551182,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, - [216364] = 5, + anon_sym_then, + [219085] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5554), 1, + ACTIONS(8362), 1, + anon_sym_COMMA, + STATE(5619), 1, sym_heredoc_body, + STATE(5742), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 9, - anon_sym_RBRACK, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -545477,8 +551206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 29, - sym__start_of_brace_block, + ACTIONS(5888), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -545490,7 +551219,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, @@ -545503,19 +551232,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, - [216417] = 5, + anon_sym_then, + [219142] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5555), 1, + STATE(5620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 9, + ACTIONS(5164), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -545525,8 +551253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 29, - sym__start_of_brace_block, + ACTIONS(5166), 29, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -545538,6 +551265,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, @@ -545550,21 +551278,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, - [216470] = 5, + [219195] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5556), 1, + ACTIONS(8377), 1, + anon_sym_of, + STATE(5621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 9, - anon_sym_RBRACK, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -545573,8 +551302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 29, - sym__start_of_brace_block, + ACTIONS(5981), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -545586,6 +551315,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, @@ -545599,89 +551329,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_do, - [216523] = 25, + anon_sym_then, + [219250] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8189), 1, - anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, + ACTIONS(8174), 1, sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - ACTIONS(8401), 1, - anon_sym_COMMA, - STATE(5557), 1, + STATE(5622), 1, sym_heredoc_body, - STATE(5648), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_then, - ACTIONS(8195), 3, + ACTIONS(6303), 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(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(6301), 28, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [216616] = 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, + [219307] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7628), 1, - anon_sym_LPAREN2, - STATE(5558), 1, + ACTIONS(8379), 1, + sym_regex_modifier, + STATE(5623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -545690,7 +551401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(5995), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -545720,84 +551431,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [216671] = 15, + [219362] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(7286), 1, - sym__start_of_tuple_type, - ACTIONS(7288), 1, - sym__start_of_named_tuple_type, - ACTIONS(7378), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_DASH_GT, - STATE(5559), 1, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8174), 1, + sym__start_of_index_operator, + STATE(5624), 1, sym_heredoc_body, - STATE(7728), 1, - sym_constant, - STATE(7774), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, - sym_self, - sym_underscore_type, - STATE(7758), 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(4700), 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, - [216744] = 5, + ACTIONS(6307), 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(6305), 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, + 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, + [219419] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5560), 1, + STATE(5625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 9, - anon_sym_RBRACK, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 29, - sym__start_of_brace_block, + ACTIONS(6017), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -545809,6 +551512,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, @@ -545822,20 +551526,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, - [216797] = 5, + anon_sym_then, + [219472] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5561), 1, + ACTIONS(7949), 1, + anon_sym_COLON, + STATE(5626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 9, - anon_sym_RBRACK, + ACTIONS(195), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -545844,7 +551548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 29, + anon_sym_COLON2, + ACTIONS(173), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -545870,21 +551575,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, - [216850] = 6, + [219527] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8427), 1, + ACTIONS(8381), 1, sym_regex_modifier, - STATE(5562), 1, + STATE(5627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(6031), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -545893,7 +551597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 29, + ACTIONS(6029), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -545923,26 +551627,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [216905] = 5, + [219582] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5563), 1, + STATE(5628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 9, + ACTIONS(4859), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 29, - sym__start_of_brace_block, + ACTIONS(4861), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -545956,6 +551660,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, @@ -545970,25 +551675,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [216958] = 5, + [219635] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5564), 1, + STATE(5629), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 30, + ACTIONS(6047), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -546014,31 +551719,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_then, - [217011] = 5, + [219688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5565), 1, + STATE(5630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 9, - anon_sym_RBRACK, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 29, - sym__start_of_brace_block, + ACTIONS(6051), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -546050,6 +551754,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, @@ -546063,33 +551768,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, - [217064] = 6, + anon_sym_then, + [219741] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1115), 1, - anon_sym_EQ, - STATE(5566), 1, + STATE(5631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, - sym__start_of_brace_block, + ACTIONS(5951), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -546100,6 +551802,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, @@ -546115,16 +551818,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [217119] = 5, + anon_sym_then, + [219794] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5567), 1, + ACTIONS(8362), 1, + anon_sym_COMMA, + STATE(5632), 1, sym_heredoc_body, + STATE(5742), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -546133,10 +551840,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 30, - sym__start_of_brace_block, + ACTIONS(5856), 28, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -546147,8 +551853,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -546163,27 +551868,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [217172] = 5, + anon_sym_then, + [219851] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5568), 1, + STATE(5633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 9, - anon_sym_RBRACK, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 29, - sym__start_of_brace_block, + ACTIONS(5925), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -546195,6 +551900,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, @@ -546208,20 +551914,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_then, + [219904] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8354), 1, + anon_sym_COMMA, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(5634), 1, + sym_heredoc_body, + STATE(5649), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5856), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_do, - [217225] = 5, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [219997] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5569), 1, + ACTIONS(8354), 1, + anon_sym_COMMA, + STATE(5635), 1, sym_heredoc_body, + STATE(5649), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -546230,9 +552006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 29, + ACTIONS(5856), 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, @@ -546243,7 +552020,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, @@ -546256,19 +552032,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, - [217278] = 5, + [220054] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5570), 1, + STATE(5636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 9, + ACTIONS(6323), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -546278,7 +552053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 29, + ACTIONS(6321), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -546308,15 +552083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217331] = 5, + [220107] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5571), 1, + STATE(5637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 9, + ACTIONS(6327), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -546326,7 +552101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 29, + ACTIONS(6325), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -546356,15 +552131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217384] = 5, + [220160] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5572), 1, + STATE(5638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 9, + ACTIONS(6327), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -546374,7 +552149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 29, + ACTIONS(6325), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -546404,15 +552179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217437] = 5, + [220213] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5573), 1, + STATE(5639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 9, + ACTIONS(6331), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -546422,7 +552197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 29, + ACTIONS(6329), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -546452,21 +552227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217490] = 8, + [220266] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3323), 1, - sym__string_literal_start, - STATE(3989), 1, - sym_string, - STATE(5574), 1, + STATE(5640), 1, sym_heredoc_body, - STATE(5581), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6335), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -546475,7 +552245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(6333), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -546500,18 +552271,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, - [217549] = 5, + anon_sym_do, + [220319] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5575), 1, + STATE(5641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 9, + ACTIONS(6339), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -546521,7 +552293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 29, + ACTIONS(6337), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -546551,15 +552323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217602] = 5, + [220372] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5576), 1, + STATE(5642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 9, + ACTIONS(6343), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -546569,7 +552341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 29, + ACTIONS(6341), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -546599,28 +552371,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217655] = 6, + [220425] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8429), 1, - sym_regex_modifier, - STATE(5577), 1, + STATE(5643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(5979), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 29, - sym__line_break, + ACTIONS(5977), 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, @@ -546631,7 +552403,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, @@ -546647,21 +552418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [217710] = 7, + anon_sym_do, + [220478] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8431), 1, - sym__string_literal_start, - STATE(6582), 1, - sym_string, + STATE(5644), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5578), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(6347), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -546670,9 +552437,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 27, + ACTIONS(6345), 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, @@ -546696,17 +552463,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, - [217767] = 5, + anon_sym_do, + [220531] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5579), 1, + STATE(5645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 9, + ACTIONS(6351), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -546716,7 +552485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 29, + ACTIONS(6349), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -546746,15 +552515,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217820] = 5, + [220584] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5580), 1, + STATE(5646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(6359), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -546763,8 +552533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 30, - sym__line_break, + ACTIONS(6357), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -546776,7 +552546,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, @@ -546789,35 +552558,31 @@ 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, - [217873] = 8, + anon_sym_do, + [220637] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3323), 1, - sym__string_literal_start, - STATE(3989), 1, - sym_string, - STATE(5581), 1, + STATE(5647), 1, sym_heredoc_body, - STATE(5614), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5638), 8, + ACTIONS(6023), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5636), 27, + ACTIONS(6021), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -546829,6 +552594,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, @@ -546844,28 +552610,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [217932] = 5, + anon_sym_then, + [220690] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5582), 1, + STATE(5648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 9, - anon_sym_RBRACK, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 29, + 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, @@ -546889,21 +552656,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, - [217985] = 6, + [220743] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(763), 1, - anon_sym_EQ, - STATE(5583), 1, + ACTIONS(8421), 1, + anon_sym_COMMA, + STATE(5649), 1, sym_heredoc_body, + STATE(5809), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -546912,9 +552680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, - sym__line_break, + ACTIONS(5888), 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, @@ -546925,8 +552694,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, @@ -546941,18 +552708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [218040] = 6, + anon_sym_do, + [220800] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8434), 1, - sym_regex_modifier, - STATE(5584), 1, + STATE(5650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(6377), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -546961,10 +552727,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 29, + ACTIONS(6375), 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, @@ -546988,18 +552753,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, - [218095] = 5, + [220853] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5585), 1, + STATE(5651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 9, + ACTIONS(6355), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -547009,7 +552775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 29, + ACTIONS(6353), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -547021,7 +552788,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, @@ -547034,21 +552800,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, - [218148] = 5, + anon_sym_do, + [220906] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5586), 1, + ACTIONS(8308), 1, + anon_sym_COMMA, + STATE(5652), 1, sym_heredoc_body, + STATE(5681), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 9, - anon_sym_RBRACK, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547057,9 +552826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 29, + ACTIONS(5750), 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, @@ -547070,7 +552840,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, @@ -547083,21 +552852,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, - [218201] = 6, + [220963] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8436), 1, - sym_regex_modifier, - STATE(5587), 1, + STATE(5653), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(6383), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547106,10 +552873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 29, + ACTIONS(6381), 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, @@ -547133,20 +552899,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, - [218256] = 6, + [221016] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8438), 1, - anon_sym_of, - STATE(5588), 1, + STATE(5654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(6387), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547155,8 +552921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 29, - sym__line_break, + ACTIONS(6385), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -547168,7 +552934,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, @@ -547182,33 +552947,205 @@ static const uint16_t ts_small_parse_table[] = { 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, - [218311] = 7, + anon_sym_do, + [221069] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8423), 1, + anon_sym_LPAREN, + ACTIONS(8425), 1, + anon_sym_DASH_GT, + ACTIONS(8428), 1, + anon_sym_typeof, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(8436), 1, + sym__start_of_tuple_type, + ACTIONS(8438), 1, + sym__start_of_named_tuple_type, + STATE(5655), 1, + sym_heredoc_body, + STATE(7937), 1, + sym__type, + STATE(7947), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8434), 2, + sym_self, + sym_underscore_type, + STATE(7971), 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(4656), 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, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [221142] = 15, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8423), 1, + anon_sym_LPAREN, + ACTIONS(8428), 1, + anon_sym_typeof, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(8436), 1, + sym__start_of_tuple_type, + ACTIONS(8438), 1, + sym__start_of_named_tuple_type, ACTIONS(8440), 1, + anon_sym_DASH_GT, + STATE(5656), 1, + sym_heredoc_body, + STATE(7947), 1, + sym_constant, + STATE(7950), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8434), 2, + sym_self, + sym_underscore_type, + STATE(7971), 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(4678), 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, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [221215] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(8442), 1, + ACTIONS(8428), 1, + anon_sym_typeof, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(8436), 1, + sym__start_of_tuple_type, + ACTIONS(8438), 1, + sym__start_of_named_tuple_type, + ACTIONS(8443), 1, + anon_sym_DASH_GT, + STATE(5657), 1, + sym_heredoc_body, + STATE(7931), 1, + sym__type, + STATE(7947), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8434), 2, + sym_self, + sym_underscore_type, + STATE(7971), 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(4628), 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, - STATE(5589), 1, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [221288] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, + ACTIONS(6395), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 29, + 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, @@ -547232,30 +553169,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_do, - [218368] = 5, + [221341] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5590), 1, + ACTIONS(8446), 1, + anon_sym_LPAREN, + ACTIONS(8448), 1, + anon_sym_DOT, + STATE(5659), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 30, - sym__start_of_brace_block, + ACTIONS(6039), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -547266,6 +553206,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, @@ -547278,22 +553219,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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [218421] = 6, + anon_sym_then, + [221398] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8440), 1, + ACTIONS(8446), 1, anon_sym_LPAREN, - STATE(5591), 1, + STATE(5660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547302,10 +553242,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 29, - sym__start_of_brace_block, + ACTIONS(6039), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -547316,6 +553255,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, @@ -547331,18 +553271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [218476] = 6, + anon_sym_then, + [221453] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8444), 1, - anon_sym_LPAREN, - STATE(5592), 1, + STATE(5661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6403), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547351,10 +553290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 29, + ACTIONS(6401), 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, @@ -547378,20 +553316,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, - [218531] = 6, + [221506] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8446), 1, - anon_sym_of, - STATE(5593), 1, + ACTIONS(8450), 1, + anon_sym_LPAREN, + STATE(5662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547400,7 +553339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 29, + ACTIONS(6061), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -547430,15 +553369,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [218586] = 5, + [221561] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5594), 1, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, + anon_sym_QMARK, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + ACTIONS(8362), 1, + anon_sym_COMMA, + STATE(5632), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5663), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_then, + ACTIONS(8198), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8228), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [221654] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 9, + ACTIONS(6407), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -547448,7 +553455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 29, + ACTIONS(6405), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -547478,17 +553485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218639] = 6, + [221707] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8448), 1, - anon_sym_EQ, - STATE(5595), 1, + STATE(5665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(6411), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547497,8 +553503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 29, - sym__line_break, + ACTIONS(6409), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -547510,7 +553516,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, @@ -547524,20 +553529,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, - [218694] = 6, + anon_sym_do, + [221760] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8450), 1, - anon_sym_of, - STATE(5596), 1, + STATE(5666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(6243), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547546,8 +553551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 29, - sym__line_break, + ACTIONS(6241), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -547559,7 +553564,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, @@ -547573,18 +553577,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, - [218749] = 5, + anon_sym_do, + [221813] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5597), 1, + STATE(5667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 9, + ACTIONS(6431), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -547594,7 +553599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 29, + ACTIONS(6429), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -547624,17 +553629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218802] = 6, + [221866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7524), 1, - anon_sym_LPAREN2, - STATE(5598), 1, + STATE(5668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6443), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -547643,10 +553647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(6441), 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, @@ -547670,86 +553673,77 @@ static const uint16_t ts_small_parse_table[] = { 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, - [218857] = 25, + [221919] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8262), 1, - anon_sym_COMMA, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(5599), 1, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(7264), 1, + sym__start_of_tuple_type, + ACTIONS(7266), 1, + sym__start_of_named_tuple_type, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_GT, + STATE(5669), 1, sym_heredoc_body, - STATE(5688), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(7734), 1, + sym_constant, + STATE(7823), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [218950] = 5, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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(4700), 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, + [221992] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5600), 1, + STATE(5670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 9, + ACTIONS(6451), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -547759,7 +553753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 29, + ACTIONS(6449), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -547778,90 +553772,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_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, - [219003] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_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(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - STATE(5601), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6334), 2, - 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_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(8150), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8152), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6332), 6, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_EQ_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, - [219088] = 5, + [222045] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5602), 1, + STATE(5671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 9, + ACTIONS(6455), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -547871,7 +553801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 29, + ACTIONS(6453), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -547901,15 +553831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219141] = 5, + [222098] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5603), 1, + STATE(5672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 9, + ACTIONS(6467), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -547919,7 +553849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 29, + ACTIONS(6465), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -547949,87 +553879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219194] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - ACTIONS(8452), 1, - anon_sym_COMMA, - STATE(5604), 1, - sym_heredoc_body, - STATE(5750), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [219287] = 7, + [222151] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8452), 1, - anon_sym_COMMA, - STATE(5605), 1, + STATE(5673), 1, sym_heredoc_body, - STATE(5750), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6475), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -548038,10 +553897,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + ACTIONS(6473), 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, @@ -548052,6 +553910,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, @@ -548064,33 +553923,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_do, - [219344] = 8, + [222204] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8454), 1, - anon_sym_DOT, - ACTIONS(8456), 1, - sym__start_of_index_operator, - STATE(5606), 1, + STATE(5674), 1, sym_heredoc_body, - STATE(6013), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(6479), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 28, - sym__line_break, + ACTIONS(6477), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548101,7 +553958,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, @@ -548115,99 +553971,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [219403] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - ACTIONS(8458), 1, - anon_sym_COMMA, - STATE(5607), 1, - sym_heredoc_body, - STATE(5610), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, anon_sym_do, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [219496] = 7, + [222257] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8458), 1, - anon_sym_COMMA, - STATE(5608), 1, + STATE(5675), 1, sym_heredoc_body, - STATE(5610), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(5987), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548221,6 +554007,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, @@ -548236,77 +554023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219553] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8302), 1, - anon_sym_LPAREN, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, - anon_sym_COLON_COLON, - ACTIONS(8315), 1, - sym__start_of_tuple_type, - ACTIONS(8317), 1, - sym__start_of_named_tuple_type, - ACTIONS(8460), 1, - anon_sym_DASH_GT, - STATE(5609), 1, - sym_heredoc_body, - STATE(7889), 1, - sym_constant, - STATE(7893), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8313), 2, - sym_self, - sym_underscore_type, - STATE(7926), 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(4656), 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, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [219626] = 7, + [222310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8463), 1, - anon_sym_COMMA, - STATE(5487), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5610), 1, + STATE(5676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6483), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -548315,10 +554041,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, + ACTIONS(6481), 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, @@ -548329,6 +554054,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, @@ -548341,18 +554067,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, - [219683] = 5, + [222363] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5611), 1, + STATE(5677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 9, + ACTIONS(6495), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -548362,7 +554089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 29, + ACTIONS(6493), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -548392,26 +554119,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219736] = 5, + [222416] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5612), 1, + STATE(5678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 9, - anon_sym_RBRACK, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 29, - sym__start_of_brace_block, + ACTIONS(5881), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -548423,6 +554150,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, @@ -548436,31 +554164,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_do, - [219789] = 5, + anon_sym_then, + [222469] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5613), 1, + STATE(5679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 9, - anon_sym_RBRACK, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 29, + 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, @@ -548484,24 +554212,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, - [219842] = 7, + [222522] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8465), 1, - sym__string_literal_start, - STATE(3989), 1, - sym_string, + ACTIONS(8308), 1, + anon_sym_COMMA, + STATE(5512), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5680), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5614), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5653), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -548510,8 +554236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5651), 27, + ACTIONS(5856), 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, @@ -548522,7 +554250,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, @@ -548537,17 +554264,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [219899] = 5, + anon_sym_do, + [222579] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5615), 1, + ACTIONS(8308), 1, + anon_sym_COMMA, + STATE(5681), 1, sym_heredoc_body, + STATE(5809), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -548556,9 +554286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 29, + ACTIONS(5856), 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, @@ -548569,7 +554300,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, @@ -548582,20 +554312,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, - [219952] = 5, + [222636] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5616), 1, + ACTIONS(8452), 1, + anon_sym_LPAREN, + STATE(5682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 9, - anon_sym_RBRACK, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -548604,8 +554334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 29, - sym__start_of_brace_block, + ACTIONS(5901), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -548617,6 +554347,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, @@ -548630,30 +554361,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [220005] = 5, + anon_sym_then, + [222691] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5617), 1, + STATE(5683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 9, - anon_sym_RBRACK, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 29, - sym__start_of_brace_block, + ACTIONS(5913), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -548665,6 +554395,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, @@ -548678,19 +554409,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, - [220058] = 5, + anon_sym_then, + [222744] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5618), 1, + STATE(5684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 9, + ACTIONS(6499), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -548700,7 +554430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 29, + ACTIONS(6497), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -548730,15 +554460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220111] = 5, + [222797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5619), 1, + STATE(5685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 9, + ACTIONS(6503), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -548748,7 +554478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 29, + ACTIONS(6501), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -548778,15 +554508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220164] = 5, + [222850] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5620), 1, + STATE(5686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 9, + ACTIONS(6507), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -548796,7 +554526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 29, + ACTIONS(6505), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -548826,86 +554556,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220217] = 24, + [222903] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8118), 1, - anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, - anon_sym_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_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - ACTIONS(8468), 1, - anon_sym_RBRACK, - STATE(5621), 1, + STATE(5687), 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, + ACTIONS(6567), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6247), 4, + anon_sym_AMP_STAR, + ACTIONS(6565), 29, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [220308] = 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, + [222956] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8262), 1, - anon_sym_COMMA, - STATE(5622), 1, - sym_heredoc_body, STATE(5688), 1, - aux_sym_argument_list_no_parens_repeat1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6259), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -548914,10 +554622,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + ACTIONS(6257), 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, @@ -548928,6 +554635,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, @@ -548940,90 +554648,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, anon_sym_do, - [220365] = 25, + [223009] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - ACTIONS(8470), 1, - anon_sym_COMMA, - STATE(5623), 1, + ACTIONS(8454), 1, + sym_identifier, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(8464), 1, + sym_identifier_method_call, + ACTIONS(8466), 1, + sym_self, + STATE(5689), 1, sym_heredoc_body, - STATE(5629), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(7919), 1, + sym__operator_token, + STATE(12034), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(8270), 3, + ACTIONS(8456), 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(8280), 4, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8458), 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(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [220458] = 7, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [223076] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8470), 1, - anon_sym_COMMA, - STATE(5624), 1, + STATE(5690), 1, sym_heredoc_body, - STATE(5629), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6367), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549032,10 +554725,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + 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, @@ -549046,6 +554738,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, @@ -549058,224 +554751,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, - [220515] = 25, + [223129] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - ACTIONS(8472), 1, - anon_sym_COMMA, - STATE(5625), 1, + STATE(5691), 1, sym_heredoc_body, - STATE(5631), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [220608] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8118), 1, + ACTIONS(6559), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8120), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, anon_sym_DOT, - ACTIONS(8126), 1, + anon_sym_LT, 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_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - ACTIONS(8474), 1, - anon_sym_RBRACK, - STATE(5626), 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(6459), 4, + anon_sym_AMP_STAR, + ACTIONS(6557), 29, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [220699] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6463), 1, - anon_sym_RBRACK, - ACTIONS(8118), 1, - anon_sym_DOT_DOT, - ACTIONS(8120), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, - anon_sym_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_QMARK, - ACTIONS(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - STATE(5627), 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_BANG_EQ, 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(6461), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8150), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8152), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [220790] = 7, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [223182] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8472), 1, - anon_sym_COMMA, - STATE(5628), 1, + STATE(5692), 1, sym_heredoc_body, - STATE(5631), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6251), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549284,10 +554821,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(6249), 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, @@ -549298,6 +554834,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, @@ -549310,22 +554847,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, - [220847] = 7, + [223235] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8472), 1, - anon_sym_COMMA, - STATE(5487), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5629), 1, + STATE(5693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6447), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549334,10 +554869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(6445), 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, @@ -549348,6 +554882,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, @@ -549360,22 +554895,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, - [220904] = 7, + [223288] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8401), 1, - anon_sym_COMMA, - STATE(5465), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5630), 1, + STATE(5694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6289), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549384,8 +554917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, - sym__line_break, + ACTIONS(6287), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -549397,7 +554930,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, @@ -549410,22 +554943,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, - [220961] = 7, + anon_sym_do, + [223341] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8476), 1, - anon_sym_COMMA, - STATE(5487), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5631), 1, + STATE(5695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6077), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549434,10 +554965,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, + ACTIONS(6075), 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, @@ -549448,6 +554978,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, @@ -549460,22 +554991,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, - [221018] = 7, + [223394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8401), 1, - anon_sym_COMMA, - STATE(5630), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5632), 1, + STATE(5696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6235), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549484,8 +555013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, - sym__line_break, + ACTIONS(6233), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -549497,7 +555026,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, @@ -549510,30 +555039,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_then, - [221075] = 5, + anon_sym_do, + [223447] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5633), 1, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8174), 1, + sym__start_of_index_operator, + STATE(5697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 8, + ACTIONS(6247), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 30, + ACTIONS(6245), 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, @@ -549544,7 +555076,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -549558,22 +555089,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, - [221128] = 7, + [223504] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8411), 1, - anon_sym_COMMA, - STATE(5634), 1, + STATE(5698), 1, sym_heredoc_body, - STATE(5723), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549582,8 +555110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, - sym__start_of_brace_block, + ACTIONS(6035), 30, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -549595,6 +555123,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, @@ -549606,22 +555136,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, - [221185] = 6, + anon_sym_then, + [223557] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8478), 1, - anon_sym_of, - STATE(5635), 1, + STATE(5699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549630,9 +555158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 29, - sym__line_break, + ACTIONS(5909), 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, @@ -549643,7 +555172,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, @@ -549656,88 +555184,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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [221240] = 24, + anon_sym_do, + [223610] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8118), 1, + ACTIONS(8383), 1, anon_sym_DOT_DOT, - ACTIONS(8120), 1, + ACTIONS(8385), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8126), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8132), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8142), 1, + ACTIONS(8407), 1, anon_sym_QMARK, - ACTIONS(8144), 1, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(8146), 1, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - ACTIONS(8480), 1, - anon_sym_RBRACK, - STATE(5636), 1, + ACTIONS(8468), 1, + anon_sym_COMMA, + STATE(5700), 1, sym_heredoc_body, + STATE(5705), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8130), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8136), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8124), 3, + ACTIONS(5750), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6469), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(8134), 4, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [221331] = 6, + [223703] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8482), 1, - anon_sym_LPAREN, - STATE(5637), 1, + ACTIONS(8468), 1, + anon_sym_COMMA, + STATE(5701), 1, sym_heredoc_body, + STATE(5705), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -549746,9 +555278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 29, - sym__line_break, + ACTIONS(5750), 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, @@ -549759,8 +555292,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, @@ -549775,45 +555306,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [221386] = 10, + anon_sym_do, + [223760] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8138), 1, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8148), 1, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, sym__start_of_index_operator, - STATE(5638), 1, + ACTIONS(8419), 1, + sym_binary_ampersand, + ACTIONS(8470), 1, + anon_sym_COMMA, + STATE(5702), 1, sym_heredoc_body, + STATE(5706), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8140), 2, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8152), 4, + ACTIONS(5856), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6528), 7, - anon_sym_RBRACK, + [223853] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8470), 1, + anon_sym_COMMA, + STATE(5703), 1, + sym_heredoc_body, + STATE(5706), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5860), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 22, + anon_sym_AMP_STAR, + ACTIONS(5856), 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_COMMA, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -549824,47 +555420,104 @@ 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, - [221449] = 8, + [223910] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_DOT, - ACTIONS(8148), 1, - sym__start_of_index_operator, - STATE(5639), 1, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(7264), 1, + sym__start_of_tuple_type, + ACTIONS(7266), 1, + sym__start_of_named_tuple_type, + ACTIONS(7524), 1, + anon_sym_LPAREN, + ACTIONS(7526), 1, + anon_sym_DASH_GT, + STATE(5704), 1, + sym_heredoc_body, + STATE(7734), 1, + sym_constant, + STATE(7825), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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(4722), 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, + [223983] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8470), 1, + anon_sym_COMMA, + STATE(5705), 1, sym_heredoc_body, + STATE(5809), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8140), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 8, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 26, + ACTIONS(5856), 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_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -549875,47 +555528,46 @@ 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, - [221508] = 8, + [224040] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_DOT, - ACTIONS(8148), 1, - sym__start_of_index_operator, - STATE(5640), 1, + ACTIONS(8472), 1, + anon_sym_COMMA, + STATE(5706), 1, sym_heredoc_body, + STATE(5809), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8140), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 8, - anon_sym_RBRACK, + ACTIONS(5892), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 26, + ACTIONS(5888), 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_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -549926,266 +555578,240 @@ 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, - [221567] = 12, + [224097] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_DOT, - ACTIONS(8138), 1, - anon_sym_AMP_STAR, - ACTIONS(8148), 1, - sym__start_of_index_operator, - STATE(5641), 1, + STATE(5707), 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(8150), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8152), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 7, + ACTIONS(5700), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 16, + anon_sym_AMP_STAR, + ACTIONS(5698), 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, - [221634] = 21, + [224150] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_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(8144), 1, - anon_sym_AMP_AMP, - ACTIONS(8146), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - STATE(5642), 1, - sym_heredoc_body, + ACTIONS(8474), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 2, - anon_sym_RBRACK, + STATE(5708), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 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_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, 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(8150), 4, + anon_sym_AMP_STAR, + ACTIONS(5970), 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(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 6, - sym__start_of_brace_block, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_do, - [221719] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_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(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, - sym_binary_ampersand, - STATE(5643), 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(8134), 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(8150), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + [224205] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5709), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6391), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6389), 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(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5961), 5, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5959), 10, - 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, - [221796] = 13, + [224258] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(8138), 1, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(8148), 1, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8180), 1, sym_binary_ampersand, - STATE(5644), 1, + STATE(5710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8130), 2, + ACTIONS(6520), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8140), 2, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8150), 4, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 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(5963), 15, + ACTIONS(6518), 6, 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, - [221865] = 5, + [224343] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5645), 1, + STATE(5711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 9, - anon_sym_RBRACK, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 29, - sym__start_of_brace_block, + ACTIONS(5669), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -550197,6 +555823,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, @@ -550210,30 +555837,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [221918] = 6, + anon_sym_then, + [224396] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8484), 1, - anon_sym_of, - STATE(5646), 1, + STATE(5712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 29, + ACTIONS(5818), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -550263,16 +555888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [221973] = 5, + [224449] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5647), 1, + ACTIONS(1171), 1, + anon_sym_EQ, + STATE(5713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 9, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -550281,7 +555907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 29, + ACTIONS(173), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -550307,23 +555933,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_COLON2, anon_sym_do, - [222026] = 7, + [224504] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8401), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8310), 1, anon_sym_COMMA, - STATE(5465), 1, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5603), 1, aux_sym_argument_list_no_parens_repeat1, - STATE(5648), 1, + STATE(5714), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [224597] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6391), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -550332,8 +556023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, - sym__line_break, + ACTIONS(6389), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -550345,7 +556036,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, @@ -550358,21 +556049,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, - [222083] = 6, + anon_sym_do, + [224650] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8486), 1, - anon_sym_COMMA, + STATE(5716), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5649), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(6415), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -550381,7 +556071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 28, + ACTIONS(6413), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -550394,6 +556084,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, @@ -550406,21 +556097,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, - [222138] = 6, + [224703] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8489), 1, - anon_sym_of, - STATE(5650), 1, + ACTIONS(8477), 1, + anon_sym_EQ, + STATE(5717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -550429,8 +556120,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 29, - sym__line_break, + ACTIONS(5937), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -550442,7 +556133,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, @@ -550458,16 +556148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [222193] = 5, + anon_sym_COLON2, + anon_sym_do, + [224758] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5651), 1, + STATE(5718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 9, + ACTIONS(6419), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -550477,7 +556168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 29, + ACTIONS(6417), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -550507,27 +556198,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [222246] = 5, + [224811] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5652), 1, + STATE(5719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 30, - sym__start_of_brace_block, + ACTIONS(5818), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -550538,7 +556229,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, @@ -550554,97 +556245,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [222299] = 25, + anon_sym_then, + [224864] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(7123), 1, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(8355), 1, + ACTIONS(7049), 1, + sym_binary_ampersand, + ACTIONS(8479), 1, + anon_sym_COMMA, + STATE(5720), 1, + sym_heredoc_body, + STATE(9570), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_do, + ACTIONS(7019), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [224957] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7013), 1, anon_sym_DOT_DOT, - ACTIONS(8357), 1, + ACTIONS(7015), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(7023), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(7027), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(7033), 1, anon_sym_AMP_STAR, - ACTIONS(8377), 1, + ACTIONS(7037), 1, anon_sym_QMARK, - ACTIONS(8379), 1, + ACTIONS(7039), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, + ACTIONS(7041), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, sym_binary_ampersand, - ACTIONS(8491), 1, + ACTIONS(8481), 1, anon_sym_COMMA, - STATE(5653), 1, + STATE(5721), 1, sym_heredoc_body, - STATE(5726), 1, + STATE(9571), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(7025), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(7031), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(7035), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, + ACTIONS(5856), 3, sym__start_of_brace_block, - anon_sym_COLON2, + anon_sym_RBRACE, anon_sym_do, - ACTIONS(8359), 3, + ACTIONS(7019), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, + ACTIONS(7029), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(7045), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(7047), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [222392] = 6, + [225050] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7941), 1, - anon_sym_COLON, - STATE(5654), 1, + STATE(5722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(173), 28, - sym__start_of_brace_block, + ACTIONS(5822), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -550656,6 +556413,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, @@ -550671,26 +556429,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [222447] = 5, + anon_sym_then, + [225103] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5655), 1, + STATE(5723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 9, - anon_sym_RBRACK, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 29, + ACTIONS(5917), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -550702,7 +556461,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, @@ -550715,91 +556474,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, - [222500] = 24, + anon_sym_then, + [225156] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8118), 1, + ACTIONS(8144), 1, anon_sym_DOT_DOT, - ACTIONS(8120), 1, + ACTIONS(8146), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8122), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(8126), 1, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(8132), 1, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(8142), 1, + ACTIONS(8168), 1, anon_sym_QMARK, - ACTIONS(8144), 1, + ACTIONS(8170), 1, anon_sym_AMP_AMP, - ACTIONS(8146), 1, + ACTIONS(8172), 1, anon_sym_PIPE_PIPE, - ACTIONS(8148), 1, + ACTIONS(8174), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8180), 1, sym_binary_ampersand, - ACTIONS(8493), 1, + ACTIONS(8483), 1, anon_sym_RBRACK, - STATE(5656), 1, + STATE(5724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8130), 2, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8136), 2, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8124), 3, + ACTIONS(8150), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6309), 4, + ACTIONS(6083), 4, sym__start_of_brace_block, anon_sym_COMMA, anon_sym_RBRACK_QMARK, anon_sym_do, - ACTIONS(8134), 4, + ACTIONS(8160), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [222591] = 7, + [225247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8495), 1, - anon_sym_COMMA, - STATE(5487), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5657), 1, + STATE(5725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -550808,7 +556562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, + ACTIONS(6035), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -550822,6 +556576,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, @@ -550833,19 +556588,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [222648] = 5, + [225300] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5658), 1, + ACTIONS(6087), 1, + anon_sym_RBRACK, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + STATE(5726), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6085), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8178), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [225391] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 9, + ACTIONS(6423), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -550855,7 +556678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 29, + ACTIONS(6421), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -550885,44 +556708,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [222701] = 11, + [225444] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_DOT, - ACTIONS(8138), 1, - anon_sym_AMP_STAR, - ACTIONS(8148), 1, - sym__start_of_index_operator, - STATE(5659), 1, + STATE(5728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8140), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8150), 4, + ACTIONS(4620), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(4618), 30, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 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(5967), 18, - sym__start_of_brace_block, - sym_binary_ampersand, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550934,45 +556751,116 @@ 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, - [222766] = 7, + anon_sym_then, + [225497] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8491), 1, - anon_sym_COMMA, - STATE(5660), 1, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8485), 1, + anon_sym_RBRACK, + STATE(5729), 1, sym_heredoc_body, - STATE(5726), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(6095), 4, sym__start_of_brace_block, - sym__start_of_index_operator, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 4, sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [225588] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8174), 1, + sym__start_of_index_operator, + STATE(5730), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8166), 2, sym__binary_double_star, - sym_binary_ampersand, + anon_sym_AMP_STAR_STAR, + ACTIONS(8178), 4, + sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6127), 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(6125), 22, + sym__start_of_brace_block, + 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, @@ -550983,39 +556871,42 @@ 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, - [222823] = 5, + [225651] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5661), 1, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8174), 1, + sym__start_of_index_operator, + STATE(5731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 9, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 29, + ACTIONS(6129), 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, @@ -551031,40 +556922,42 @@ 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, - [222876] = 6, + [225710] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1133), 1, - anon_sym_EQ, - STATE(5662), 1, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8174), 1, + sym__start_of_index_operator, + STATE(5732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(6133), 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, @@ -551080,100 +556973,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [222931] = 25, + [225769] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8319), 1, - anon_sym_COMMA, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(5663), 1, + ACTIONS(8174), 1, + sym__start_of_index_operator, + STATE(5733), 1, sym_heredoc_body, - STATE(5749), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8359), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [223024] = 5, + ACTIONS(6139), 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(6137), 16, + sym__start_of_brace_block, + 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, + anon_sym_do, + [225836] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5664), 1, + STATE(5734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 9, - anon_sym_RBRACK, + ACTIONS(6011), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6223), 29, - sym__start_of_brace_block, + ACTIONS(6009), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -551185,6 +557064,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, @@ -551198,216 +557078,282 @@ static const uint16_t ts_small_parse_table[] = { 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, - [223077] = 25, + anon_sym_then, + [225889] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8319), 1, - anon_sym_COMMA, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, + ACTIONS(8170), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, + ACTIONS(8172), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, sym_binary_ampersand, - STATE(5440), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5665), 1, + STATE(5735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(6143), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8359), 3, + ACTIONS(8150), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, + ACTIONS(8160), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [223170] = 15, + ACTIONS(6141), 6, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_do, + [225974] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(8126), 1, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(8138), 1, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(8148), 1, + ACTIONS(8174), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8180), 1, sym_binary_ampersand, - STATE(5666), 1, + STATE(5736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8130), 2, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8140), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8150), 4, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 6, + ACTIONS(6147), 5, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5971), 14, + ACTIONS(6145), 10, sym__start_of_brace_block, 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, anon_sym_do, - [223243] = 5, + [226051] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5667), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(8487), 1, + sym_identifier, + ACTIONS(8493), 1, + sym_identifier_method_call, + ACTIONS(8495), 1, + sym_self, + STATE(5737), 1, sym_heredoc_body, + STATE(8051), 1, + sym__operator_token, + STATE(11688), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8489), 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(6352), 29, - sym__start_of_brace_block, + ACTIONS(8491), 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, + [226118] = 13, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8174), 1, sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + STATE(5738), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6151), 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(6149), 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, - [223296] = 6, + [226187] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8497), 1, - anon_sym_EQ, - STATE(5668), 1, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8174), 1, + sym__start_of_index_operator, + STATE(5739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5831), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6165), 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(6163), 18, + sym__start_of_brace_block, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551419,141 +557365,143 @@ 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, - [223351] = 5, + [226252] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5669), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6358), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8148), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8152), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(6356), 29, - sym__start_of_brace_block, + ACTIONS(8174), 1, sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + STATE(5740), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6169), 6, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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, - [223404] = 25, + [226325] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, sym_binary_ampersand, - ACTIONS(8499), 1, - anon_sym_COMMA, - STATE(5670), 1, + STATE(5741), 1, sym_heredoc_body, - STATE(5674), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(6173), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8359), 3, + ACTIONS(8150), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, + ACTIONS(8160), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [223497] = 7, + ACTIONS(6171), 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, + [226406] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8499), 1, + ACTIONS(8497), 1, anon_sym_COMMA, - STATE(5671), 1, - sym_heredoc_body, - STATE(5674), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + STATE(5742), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -551562,8 +557510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, - sym__start_of_brace_block, + ACTIONS(5970), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -551575,6 +557523,7 @@ 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, @@ -551589,89 +557538,81 @@ 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, - [223554] = 25, + anon_sym_then, + [226461] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(8148), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, + ACTIONS(8152), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(8154), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(8158), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8164), 1, anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, + ACTIONS(8170), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, sym_binary_ampersand, - ACTIONS(8501), 1, - anon_sym_COMMA, - STATE(5672), 1, + STATE(5743), 1, sym_heredoc_body, - STATE(5675), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(6177), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8166), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8359), 3, + ACTIONS(8150), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, + ACTIONS(8160), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8178), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [223647] = 7, + ACTIONS(6175), 7, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_do, + [226544] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8501), 1, - anon_sym_COMMA, - STATE(5673), 1, + ACTIONS(1023), 1, + anon_sym_EQ, + STATE(5744), 1, sym_heredoc_body, - STATE(5675), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -551680,9 +557621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(173), 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, @@ -551693,6 +557635,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, @@ -551707,21 +557650,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, - [223704] = 7, + [226599] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8501), 1, - anon_sym_COMMA, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5674), 1, + ACTIONS(8500), 1, + sym_regex_modifier, + STATE(5745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -551730,9 +557670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 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, @@ -551743,6 +557684,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, @@ -551757,69 +557699,86 @@ 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, - [223761] = 7, + [226654] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8503), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + ACTIONS(8502), 1, anon_sym_COMMA, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5675), 1, + STATE(5746), 1, sym_heredoc_body, + STATE(5756), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8316), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5866), 28, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8342), 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, - anon_sym_do, - [223818] = 6, + [226747] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8505), 1, + ACTIONS(8504), 1, sym_regex_modifier, - STATE(5676), 1, + STATE(5747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6031), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -551828,9 +557787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 29, - sym__line_break, + ACTIONS(6029), 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, @@ -551841,7 +557801,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, @@ -551857,28 +557816,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [223873] = 5, + anon_sym_do, + [226802] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5677), 1, + ACTIONS(8506), 1, + anon_sym_LPAREN, + ACTIONS(8508), 1, + anon_sym_DOT, + STATE(5748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 9, - anon_sym_RBRACK, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 29, + ACTIONS(6039), 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, @@ -551902,20 +557864,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, - [223926] = 5, + [226859] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5678), 1, + ACTIONS(8506), 1, + anon_sym_LPAREN, + STATE(5749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 9, - anon_sym_RBRACK, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -551924,9 +557886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 29, + ACTIONS(6039), 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, @@ -551950,20 +557913,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, - [223979] = 5, + [226914] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5679), 1, + ACTIONS(8510), 1, + anon_sym_LPAREN, + STATE(5750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 9, - anon_sym_RBRACK, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -551972,9 +557935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 29, + ACTIONS(6061), 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, @@ -551998,201 +557962,204 @@ static const uint16_t ts_small_parse_table[] = { 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, - [224032] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(8507), 1, - sym_identifier, - ACTIONS(8513), 1, - sym_identifier_method_call, - ACTIONS(8515), 1, - sym_self, - STATE(2032), 1, - sym__operator_token, - STATE(5680), 1, - sym_heredoc_body, - STATE(11916), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8509), 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(8511), 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, - [224099] = 19, + [226969] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, + ACTIONS(8308), 1, + anon_sym_COMMA, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8126), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8132), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8148), 1, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8419), 1, sym_binary_ampersand, STATE(5681), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5977), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8130), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8136), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8124), 3, + ACTIONS(5750), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8134), 4, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 8, - sym__start_of_brace_block, + [227062] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8502), 1, anon_sym_COMMA, + STATE(5752), 1, + sym_heredoc_body, + STATE(5756), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5794), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5750), 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, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [224180] = 20, + [227119] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(8126), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8320), 1, anon_sym_CARET, - ACTIONS(8132), 1, + ACTIONS(8324), 1, anon_sym_EQ_EQ, - ACTIONS(8138), 1, + ACTIONS(8330), 1, anon_sym_AMP_STAR, - ACTIONS(8144), 1, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8148), 1, - sym__start_of_index_operator, - ACTIONS(8154), 1, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, sym_binary_ampersand, - STATE(5682), 1, + ACTIONS(8512), 1, + anon_sym_COMMA, + STATE(5753), 1, sym_heredoc_body, + STATE(5757), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5981), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8130), 2, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8136), 2, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8140), 2, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8124), 3, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8316), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8134), 4, + ACTIONS(8326), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8150), 4, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8152), 4, + ACTIONS(8342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 7, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_do, - [224263] = 6, + [227212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8517), 1, - anon_sym_of, - STATE(5683), 1, + STATE(5754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(5816), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -552201,7 +558168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 29, + ACTIONS(5814), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -552215,6 +558182,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, @@ -552231,30 +558199,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224318] = 8, + [227265] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7193), 1, - sym__start_of_index_operator, - ACTIONS(8519), 1, - anon_sym_DOT, - STATE(3769), 1, - sym__implicit_index_operator, - STATE(5684), 1, + ACTIONS(8512), 1, + anon_sym_COMMA, + STATE(5755), 1, sym_heredoc_body, + STATE(5757), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(5860), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 28, + ACTIONS(5856), 28, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552265,7 +558233,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, @@ -552282,15 +558249,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_do, - [224377] = 5, + [227322] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5685), 1, + ACTIONS(8512), 1, + anon_sym_COMMA, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -552299,10 +558270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 30, + ACTIONS(5856), 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, @@ -552313,7 +558283,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, @@ -552325,24 +558294,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_COLON2, anon_sym_do, - [224430] = 7, + [227379] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8262), 1, + ACTIONS(8514), 1, anon_sym_COMMA, - STATE(5686), 1, - sym_heredoc_body, - STATE(5744), 1, + STATE(5708), 1, aux_sym_argument_list_no_parens_repeat1, + STATE(5757), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -552351,10 +558320,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(5888), 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, @@ -552379,27 +558347,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, - [224487] = 5, + [227436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5687), 1, + STATE(5758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 9, - anon_sym_RBRACK, + ACTIONS(5945), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 29, - sym__start_of_brace_block, + ACTIONS(5943), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -552411,6 +558380,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, @@ -552424,23 +558394,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, - [224540] = 7, + anon_sym_then, + [227489] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8262), 1, + ACTIONS(5975), 1, + anon_sym_RBRACK, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + STATE(5759), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5970), 4, + sym__start_of_brace_block, anon_sym_COMMA, - STATE(5487), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5688), 1, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8178), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [227580] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8516), 1, + anon_sym_of, + STATE(5760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -552449,7 +558483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(5826), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -552463,6 +558497,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, @@ -552478,27 +558513,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224597] = 5, + [227635] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5689), 1, + ACTIONS(8518), 1, + sym_regex_modifier, + STATE(5761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 10, - anon_sym_RBRACK, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 28, + ACTIONS(5832), 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, @@ -552511,7 +558548,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, @@ -552523,81 +558559,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, - [224650] = 5, + anon_sym_do, + [227690] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5690), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(8520), 1, + sym_identifier, + ACTIONS(8526), 1, + sym_identifier_method_call, + ACTIONS(8528), 1, + sym_self, + STATE(5762), 1, sym_heredoc_body, + STATE(8304), 1, + sym__operator_token, + STATE(11023), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8522), 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(6071), 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, + ACTIONS(8524), 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, - [224703] = 8, + [227757] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8521), 1, - anon_sym_DOT, - ACTIONS(8523), 1, - sym__start_of_index_operator, - STATE(5691), 1, + ACTIONS(8530), 1, + sym_regex_modifier, + STATE(5763), 1, sym_heredoc_body, - STATE(6095), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(5840), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 28, + ACTIONS(5838), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -552625,16 +558666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224762] = 5, + [227812] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5692), 1, + ACTIONS(8532), 1, + anon_sym_of, + STATE(5764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 9, - anon_sym_RBRACK, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -552643,9 +558685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 29, + ACTIONS(5844), 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, @@ -552669,31 +558712,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_do, - [224815] = 5, + [227867] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5693), 1, + STATE(5765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 9, - anon_sym_RBRACK, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 29, + ACTIONS(5850), 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, @@ -552717,30 +558760,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [224868] = 5, + [227920] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5694), 1, + STATE(5766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 9, - anon_sym_RBRACK, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 29, - sym__start_of_brace_block, + ACTIONS(6055), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -552752,6 +558794,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, @@ -552765,30 +558808,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [224921] = 5, + anon_sym_then, + [227973] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5695), 1, + STATE(5767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 9, - anon_sym_RBRACK, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 29, - sym__start_of_brace_block, + ACTIONS(5022), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -552800,6 +558842,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, @@ -552813,19 +558856,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, - [224974] = 5, + anon_sym_then, + [228026] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5696), 1, + STATE(5768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 9, + ACTIONS(6311), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -552835,7 +558877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 29, + ACTIONS(6309), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -552865,26 +558907,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [225027] = 6, + [228079] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7943), 1, - anon_sym_COLON, - STATE(5697), 1, + STATE(5769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5864), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, + ACTIONS(5862), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -552914,27 +558955,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [225082] = 5, + [228132] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5698), 1, + ACTIONS(8308), 1, + anon_sym_COMMA, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(5512), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 9, - anon_sym_RBRACK, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5856), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [228225] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5771), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5923), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 29, + ACTIONS(5921), 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, @@ -552958,30 +559068,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [225135] = 5, + [228278] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5699), 1, + STATE(5772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 9, - anon_sym_RBRACK, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 29, - sym__start_of_brace_block, + ACTIONS(5796), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -552993,6 +559102,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, @@ -553006,20 +559116,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_then, + [228331] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + ACTIONS(8534), 1, + anon_sym_COMMA, + STATE(5773), 1, + sym_heredoc_body, + STATE(5777), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_COLON2, anon_sym_do, - [225188] = 5, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [228424] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5700), 1, + ACTIONS(8534), 1, + anon_sym_COMMA, + STATE(5774), 1, sym_heredoc_body, + STATE(5777), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 9, - anon_sym_RBRACK, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553028,7 +559208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 29, + ACTIONS(5750), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -553041,7 +559221,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, @@ -553054,20 +559233,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, - [225241] = 5, + [228481] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5701), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + ACTIONS(8536), 1, + anon_sym_COMMA, + STATE(5775), 1, sym_heredoc_body, + STATE(5778), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 9, - anon_sym_RBRACK, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [228574] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8536), 1, + anon_sym_COMMA, + STATE(5776), 1, + sym_heredoc_body, + STATE(5778), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553076,7 +559326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 29, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -553089,7 +559339,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, @@ -553102,20 +559351,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, - [225294] = 5, + [228631] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5702), 1, + ACTIONS(8536), 1, + anon_sym_COMMA, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553124,7 +559376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 29, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -553137,7 +559389,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, @@ -553150,37 +559401,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, - [225347] = 8, + [228688] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(8538), 1, anon_sym_COMMA, - ACTIONS(8340), 1, - anon_sym_DASH_GT, - STATE(5703), 1, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5778), 1, sym_heredoc_body, - STATE(10184), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 26, + ACTIONS(5888), 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, @@ -553205,26 +559453,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [225406] = 5, + anon_sym_COLON2, + anon_sym_do, + [228745] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5704), 1, + STATE(5779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 9, - anon_sym_RBRACK, + ACTIONS(5808), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 29, - sym__start_of_brace_block, + ACTIONS(5806), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553236,6 +559486,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, @@ -553249,19 +559500,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, - [225459] = 5, + anon_sym_then, + [228798] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5705), 1, + ACTIONS(763), 1, + anon_sym_EQ, + STATE(5780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553270,7 +559522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 30, + ACTIONS(173), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -553284,7 +559536,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -553301,15 +559552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [225512] = 5, + [228853] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5706), 1, + STATE(5781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 9, + ACTIONS(6315), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -553319,7 +559570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 29, + ACTIONS(6313), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -553349,17 +559600,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [225565] = 6, + [228906] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8525), 1, - sym_regex_modifier, - STATE(5707), 1, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + ACTIONS(8540), 1, + anon_sym_COMMA, + STATE(5782), 1, + sym_heredoc_body, + STATE(9695), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + ACTIONS(7019), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [228999] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8542), 1, + anon_sym_of, + STATE(5783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553368,10 +559687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 29, - sym__start_of_brace_block, + ACTIONS(5826), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553382,6 +559700,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, @@ -553397,16 +559716,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_then, + [229054] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7013), 1, + anon_sym_DOT_DOT, + ACTIONS(7015), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7021), 1, + anon_sym_PIPE, + ACTIONS(7023), 1, + anon_sym_CARET, + ACTIONS(7027), 1, + anon_sym_EQ_EQ, + ACTIONS(7033), 1, + anon_sym_AMP_STAR, + ACTIONS(7037), 1, + anon_sym_QMARK, + ACTIONS(7039), 1, + anon_sym_AMP_AMP, + ACTIONS(7041), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(7049), 1, + sym_binary_ampersand, + ACTIONS(8544), 1, + anon_sym_COMMA, + STATE(5784), 1, + sym_heredoc_body, + STATE(9680), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7025), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7031), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7035), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, anon_sym_do, - [225620] = 5, + ACTIONS(7019), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7029), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7045), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7047), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [229147] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5708), 1, + STATE(5785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 9, + ACTIONS(6427), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -553416,7 +559803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 29, + ACTIONS(6425), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -553446,64 +559833,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [225673] = 5, + [229200] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5709), 1, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + STATE(5786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6363), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, anon_sym_LT, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5006), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6361), 6, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_do, + [229285] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8546), 1, + anon_sym_RBRACK, + STATE(5787), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8156), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8162), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6459), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8160), 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, - [225726] = 5, + ACTIONS(8176), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8178), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [229376] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5710), 1, + ACTIONS(8548), 1, + anon_sym_of, + STATE(5788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 9, - anon_sym_RBRACK, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553512,8 +559983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 29, - sym__start_of_brace_block, + ACTIONS(5873), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553525,6 +559996,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, @@ -553538,20 +560010,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, + [229431] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8550), 1, + anon_sym_RBRACK, + STATE(5789), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6491), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, anon_sym_do, - [225779] = 5, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8178), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [229522] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5711), 1, + ACTIONS(8552), 1, + anon_sym_EQ, + STATE(5790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 9, - anon_sym_RBRACK, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553560,8 +560099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 29, - sym__start_of_brace_block, + ACTIONS(5937), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553573,6 +560112,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, @@ -553586,20 +560126,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, - [225832] = 5, + anon_sym_then, + [229577] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5712), 1, + ACTIONS(8554), 1, + anon_sym_of, + STATE(5791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 9, - anon_sym_RBRACK, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553608,8 +560148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 29, - sym__start_of_brace_block, + ACTIONS(5960), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553621,6 +560161,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, @@ -553634,20 +560175,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_then, + [229632] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + ACTIONS(8556), 1, + anon_sym_COMMA, + STATE(5792), 1, + sym_heredoc_body, + STATE(5796), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_do, - [225885] = 5, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [229725] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5713), 1, + ACTIONS(8556), 1, + anon_sym_COMMA, + STATE(5793), 1, sym_heredoc_body, + STATE(5796), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 9, - anon_sym_RBRACK, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553656,9 +560267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 29, + ACTIONS(5750), 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, @@ -553669,7 +560281,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, @@ -553682,20 +560293,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, - [225938] = 5, + [229782] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5714), 1, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + ACTIONS(8558), 1, + anon_sym_COMMA, + STATE(5794), 1, sym_heredoc_body, + STATE(5797), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 9, - anon_sym_RBRACK, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5856), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [229875] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8558), 1, + anon_sym_COMMA, + STATE(5795), 1, + sym_heredoc_body, + STATE(5797), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553704,9 +560385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 29, + ACTIONS(5856), 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, @@ -553717,7 +560399,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, @@ -553730,20 +560411,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, - [225991] = 5, + [229932] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5715), 1, + ACTIONS(8558), 1, + anon_sym_COMMA, + STATE(5796), 1, sym_heredoc_body, + STATE(5809), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553752,9 +560435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 29, + ACTIONS(5856), 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, @@ -553765,7 +560449,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, @@ -553778,20 +560461,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, - [226044] = 5, + [229989] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5716), 1, + ACTIONS(8560), 1, + anon_sym_COMMA, + STATE(5797), 1, sym_heredoc_body, + STATE(5809), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 9, - anon_sym_RBRACK, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553800,9 +560485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 29, + ACTIONS(5888), 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, @@ -553813,7 +560499,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, @@ -553826,19 +560511,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, - [226097] = 5, + [230046] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5717), 1, + STATE(5798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 9, + ACTIONS(6231), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -553848,7 +560532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6125), 29, + ACTIONS(6229), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -553878,16 +560562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [226150] = 5, + [230099] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5718), 1, + ACTIONS(8562), 1, + anon_sym_of, + STATE(5799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 9, - anon_sym_RBRACK, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553896,9 +560581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 29, + ACTIONS(5873), 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, @@ -553922,30 +560608,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [226203] = 5, + [230154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5719), 1, + STATE(5800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 9, - anon_sym_RBRACK, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 29, - sym__start_of_brace_block, + ACTIONS(5894), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553957,6 +560642,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, @@ -553970,20 +560656,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, - [226256] = 5, + anon_sym_then, + [230207] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5720), 1, + ACTIONS(8564), 1, + anon_sym_of, + STATE(5801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 9, - anon_sym_RBRACK, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -553992,9 +560678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 29, + ACTIONS(5744), 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, @@ -554018,30 +560705,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [226309] = 6, + [230262] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8527), 1, - sym_regex_modifier, - STATE(5721), 1, + STATE(5802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 29, + ACTIONS(5881), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -554071,26 +560756,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [226364] = 5, + [230315] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5722), 1, + STATE(5803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 9, - anon_sym_RBRACK, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 29, - sym__start_of_brace_block, + ACTIONS(6013), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554102,6 +560787,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, @@ -554115,33 +560801,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [226417] = 7, + anon_sym_then, + [230368] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8491), 1, - anon_sym_COMMA, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5723), 1, + STATE(5804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, - sym__start_of_brace_block, + ACTIONS(5947), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554153,6 +560835,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, @@ -554167,83 +560851,75 @@ 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, - [226474] = 12, + anon_sym_then, + [230421] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(8529), 1, - sym_identifier, - ACTIONS(8535), 1, - sym_identifier_method_call, - ACTIONS(8537), 1, - sym_self, - STATE(5724), 1, + ACTIONS(8566), 1, + anon_sym_LPAREN, + STATE(5805), 1, sym_heredoc_body, - STATE(8053), 1, - sym__operator_token, - STATE(12026), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 10, + ACTIONS(5905), 8, + anon_sym_DOT_DOT, + anon_sym_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(8533), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5901), 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_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, - [226541] = 6, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [230476] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8539), 1, - anon_sym_of, - STATE(5725), 1, + STATE(5806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(5915), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 29, + ACTIONS(5913), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -554273,30 +560949,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [226596] = 7, + [230529] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8541), 1, - anon_sym_COMMA, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5726), 1, + STATE(5807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5919), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, + ACTIONS(5917), 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, @@ -554307,6 +560981,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, @@ -554321,97 +560996,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, - [226653] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - ACTIONS(8323), 1, - anon_sym_COMMA, - STATE(5451), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5727), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5737), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [226746] = 5, + [230582] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5728), 1, + STATE(5808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 9, - anon_sym_RBRACK, + ACTIONS(5968), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 29, + ACTIONS(5966), 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, @@ -554435,20 +561042,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, - [226799] = 5, + [230635] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5729), 1, - sym_heredoc_body, + ACTIONS(8568), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 9, - anon_sym_RBRACK, + STATE(5809), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -554457,9 +561065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 29, + ACTIONS(5970), 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, @@ -554470,7 +561079,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, @@ -554483,32 +561091,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [226852] = 7, + [230690] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8401), 1, - anon_sym_COMMA, - STATE(5648), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5730), 1, + STATE(5810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, + ACTIONS(5810), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -554522,6 +561126,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, @@ -554537,27 +561142,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [226909] = 5, + [230743] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5731), 1, + ACTIONS(8144), 1, + anon_sym_DOT_DOT, + ACTIONS(8146), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8168), 1, + anon_sym_QMARK, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + ACTIONS(8571), 1, + anon_sym_RBRACK, + STATE(5811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 9, - anon_sym_RBRACK, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6373), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8178), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [230834] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5812), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 29, + 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, @@ -554581,20 +561254,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, - [226962] = 5, + [230887] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5732), 1, + ACTIONS(8573), 1, + anon_sym_EQ, + STATE(5813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 9, - anon_sym_RBRACK, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -554603,9 +561276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 29, + 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, @@ -554629,30 +561303,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [227015] = 5, + [230942] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5733), 1, + STATE(5814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 9, - anon_sym_RBRACK, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 29, - sym__start_of_brace_block, + ACTIONS(6025), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554664,6 +561337,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, @@ -554677,88 +561351,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, - [227068] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - ACTIONS(8321), 1, - anon_sym_COMMA, - STATE(5657), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5734), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5811), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [227161] = 5, + anon_sym_then, + [230995] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5735), 1, + ACTIONS(8575), 1, + anon_sym_of, + STATE(5815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 9, - anon_sym_RBRACK, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -554767,9 +561373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 29, + ACTIONS(5960), 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, @@ -554793,33 +561400,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, anon_sym_do, - [227214] = 12, + [231050] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(8543), 1, + ACTIONS(8577), 1, sym_identifier, - ACTIONS(8549), 1, + ACTIONS(8583), 1, sym_identifier_method_call, - ACTIONS(8551), 1, + ACTIONS(8585), 1, sym_self, - STATE(5736), 1, - sym_heredoc_body, - STATE(7872), 1, + STATE(2052), 1, sym__operator_token, - STATE(10929), 1, + STATE(5816), 1, + sym_heredoc_body, + STATE(10945), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8545), 10, + ACTIONS(8579), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -554830,7 +561436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(8547), 21, + ACTIONS(8581), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -554852,27 +561458,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [227281] = 5, + [231117] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5737), 1, + ACTIONS(8587), 1, + anon_sym_of, + STATE(5817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 29, - sym__line_break, + ACTIONS(5981), 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, @@ -554883,7 +561491,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, @@ -554899,17 +561506,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [227334] = 5, + anon_sym_do, + [231172] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5738), 1, + ACTIONS(3107), 1, + sym__string_literal_start, + STATE(5818), 1, sym_heredoc_body, + STATE(5835), 1, + aux_sym_chained_string_repeat1, + STATE(6657), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 9, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -554918,9 +561530,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 29, - sym__start_of_brace_block, + ACTIONS(173), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -554944,19 +561556,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, - [227387] = 5, + [231231] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5739), 1, + STATE(5819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 9, + ACTIONS(6399), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -554966,7 +561576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 29, + ACTIONS(6397), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -554996,19 +561606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [227440] = 7, + [231284] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8319), 1, - anon_sym_COMMA, - STATE(5740), 1, + STATE(5820), 1, sym_heredoc_body, - STATE(5749), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555017,8 +561623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 28, - sym__start_of_brace_block, + ACTIONS(5909), 30, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555030,6 +561636,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, @@ -555041,79 +561649,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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [227497] = 15, + anon_sym_then, + [231337] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, - anon_sym_LPAREN, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, - anon_sym_COLON_COLON, - ACTIONS(8315), 1, - sym__start_of_tuple_type, - ACTIONS(8317), 1, - sym__start_of_named_tuple_type, - ACTIONS(8553), 1, - anon_sym_DASH_GT, - STATE(5741), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + ACTIONS(8589), 1, + anon_sym_COMMA, + STATE(5821), 1, sym_heredoc_body, - STATE(7889), 1, - sym_constant, - STATE(7891), 1, - sym__type, + STATE(5825), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, - sym_self, - sym_underscore_type, - STATE(7926), 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(4628), 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, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [227570] = 5, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [231430] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5742), 1, + ACTIONS(8589), 1, + anon_sym_COMMA, + STATE(5822), 1, sym_heredoc_body, + STATE(5825), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 9, - anon_sym_RBRACK, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555122,7 +561743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 29, + ACTIONS(5750), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -555135,7 +561756,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, @@ -555148,20 +561768,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, - [227623] = 5, + [231487] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5743), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + ACTIONS(8591), 1, + anon_sym_COMMA, + STATE(5823), 1, sym_heredoc_body, + STATE(5826), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 9, - anon_sym_RBRACK, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [231580] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8591), 1, + anon_sym_COMMA, + STATE(5824), 1, + sym_heredoc_body, + STATE(5826), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555170,7 +561861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 29, + ACTIONS(5856), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -555183,7 +561874,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, @@ -555196,23 +561886,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, - [227676] = 7, + [231637] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8262), 1, + ACTIONS(8591), 1, anon_sym_COMMA, - STATE(5487), 1, + STATE(5708), 1, aux_sym_argument_list_no_parens_repeat1, - STATE(5744), 1, + STATE(5825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555221,10 +561911,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 28, + ACTIONS(5856), 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, @@ -555249,17 +561938,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, - [227733] = 5, + [231694] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5745), 1, + ACTIONS(8593), 1, + anon_sym_COMMA, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 9, - anon_sym_RBRACK, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555268,7 +561961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 29, + ACTIONS(5888), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -555281,7 +561974,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, @@ -555294,23 +561986,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, - [227786] = 7, + [231751] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8319), 1, + ACTIONS(8362), 1, anon_sym_COMMA, - STATE(5440), 1, + STATE(5632), 1, aux_sym_argument_list_no_parens_repeat1, - STATE(5746), 1, + STATE(5827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555319,8 +562011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, - sym__start_of_brace_block, + ACTIONS(5750), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555332,6 +562024,7 @@ 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, @@ -555346,18 +562039,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_then, + [231808] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + ACTIONS(8595), 1, + anon_sym_COMMA, + STATE(5538), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5828), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5750), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_do, - [227843] = 5, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [231901] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5747), 1, + ACTIONS(8595), 1, + anon_sym_COMMA, + STATE(5538), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 9, - anon_sym_RBRACK, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555366,9 +562129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 29, + ACTIONS(5750), 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, @@ -555379,7 +562143,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, @@ -555392,31 +562155,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_do, - [227896] = 5, + [231958] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5748), 1, + STATE(5830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 9, - anon_sym_RBRACK, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 29, + 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, @@ -555440,34 +562203,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_do, - [227949] = 7, + [232011] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8319), 1, - anon_sym_COMMA, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5749), 1, + STATE(5831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(5804), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, + ACTIONS(5802), 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, @@ -555478,6 +562238,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, @@ -555492,21 +562253,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, - [228006] = 7, + [232064] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8458), 1, - anon_sym_COMMA, - STATE(5487), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5750), 1, - sym_heredoc_body, + ACTIONS(8597), 1, + sym__string_literal_start, + STATE(6657), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + STATE(5832), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555515,8 +562276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 28, - sym__start_of_brace_block, + ACTIONS(5660), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -555529,6 +562289,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, @@ -555543,209 +562304,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [228063] = 26, + [232121] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8556), 1, - anon_sym_RBRACE, - ACTIONS(8558), 1, - anon_sym_COMMA, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - STATE(5751), 1, + STATE(5833), 1, sym_heredoc_body, - STATE(10407), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(5816), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [228157] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8373), 1, anon_sym_AMP_STAR, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(5752), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8383), 4, + ACTIONS(5814), 30, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 14, - sym__start_of_brace_block, + 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, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [228229] = 26, + anon_sym_then, + [232174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8562), 1, - anon_sym_RBRACE, - ACTIONS(8564), 1, - anon_sym_COMMA, - STATE(5753), 1, + STATE(5834), 1, sym_heredoc_body, - STATE(10398), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(5979), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(5977), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [228323] = 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, + [232227] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5754), 1, + ACTIONS(3107), 1, + sym__string_literal_start, + STATE(5832), 1, + aux_sym_chained_string_repeat1, + STATE(5835), 1, sym_heredoc_body, + STATE(6657), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(5688), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -555754,8 +562423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, - sym__start_of_brace_block, + ACTIONS(5686), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -555783,25 +562451,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [228375] = 5, + [232286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5755), 1, + STATE(5836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 29, + ACTIONS(6055), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -555831,71 +562499,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [228427] = 5, + [232339] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5756), 1, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(8154), 1, + anon_sym_CARET, + ACTIONS(8158), 1, + anon_sym_EQ_EQ, + ACTIONS(8164), 1, + anon_sym_AMP_STAR, + ACTIONS(8170), 1, + anon_sym_AMP_AMP, + ACTIONS(8172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8174), 1, + sym__start_of_index_operator, + ACTIONS(8180), 1, + sym_binary_ampersand, + STATE(5837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(6255), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8156), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8162), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8166), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8150), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6103), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8160), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8176), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8178), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6253), 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_RBRACK_QMARK, anon_sym_do, - [228479] = 5, + [232424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5757), 1, + STATE(5838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(5989), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 29, + ACTIONS(5987), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -555925,94 +562611,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [228531] = 27, + [232477] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8570), 1, - anon_sym_RPAREN, - ACTIONS(8572), 1, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(8371), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(5758), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11496), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [228627] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5759), 1, + STATE(5839), 1, sym_heredoc_body, + STATE(10344), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 29, - sym__start_of_brace_block, + ACTIONS(5022), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -556025,7 +562648,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, @@ -556040,86 +562662,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [228679] = 19, + [232536] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(5760), 1, + STATE(5840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(5989), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + anon_sym_AMP_STAR, + ACTIONS(5987), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 8, - 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_COLON2, - anon_sym_do, - [228759] = 5, + anon_sym_then, + [232589] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5761), 1, + STATE(5841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(5798), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 29, + ACTIONS(5796), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -556149,27 +562758,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [228811] = 5, + [232642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5762), 1, + STATE(5842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(5993), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 29, - sym__start_of_brace_block, + ACTIONS(5991), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -556180,6 +562789,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, @@ -556195,29 +562805,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [228863] = 7, + anon_sym_then, + [232695] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8294), 1, - sym__start_of_index_operator, - STATE(5763), 1, + STATE(5843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(5808), 9, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 28, + ACTIONS(5806), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -556245,89 +562854,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [228919] = 21, + [232748] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(5764), 1, + STATE(5844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(5896), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + anon_sym_AMP_STAR, + ACTIONS(5894), 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(8298), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 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, - [229003] = 5, + [232801] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5765), 1, + STATE(5845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(5020), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 29, - sym__line_break, + ACTIONS(5022), 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, @@ -556338,7 +562934,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, @@ -556354,16 +562949,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [229055] = 5, + anon_sym_do, + [232854] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5766), 1, + ACTIONS(8362), 1, + anon_sym_COMMA, + STATE(5619), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -556372,10 +562971,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 29, - sym__start_of_brace_block, + ACTIONS(5856), 28, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -556386,7 +562984,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, @@ -556401,25 +562999,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [229107] = 5, + anon_sym_then, + [232911] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5767), 1, + STATE(5847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 29, + ACTIONS(6013), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -556449,24 +563048,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [229159] = 5, + [232964] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5768), 1, + STATE(5848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 29, + ACTIONS(5947), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -556496,24 +563096,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [229211] = 5, + [233017] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5769), 1, + STATE(5849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, + ACTIONS(5812), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(145), 29, + ACTIONS(5810), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -556543,24 +563144,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [229263] = 5, + [233070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5770), 1, + STATE(5850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 29, + ACTIONS(6025), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -556590,15 +563192,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [229315] = 5, + [233123] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5771), 1, + STATE(5851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(5696), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -556607,10 +563210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 29, + 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, @@ -556634,18 +563236,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, - [229367] = 5, + [233176] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5772), 1, + STATE(5852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -556654,9 +563257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 29, - sym__line_break, + ACTIONS(4622), 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, @@ -556667,7 +563271,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -556683,16 +563287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [229419] = 5, + anon_sym_do, + [233229] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5773), 1, + STATE(5853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(6077), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -556701,10 +563305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 29, - sym__start_of_brace_block, + ACTIONS(6075), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -556715,6 +563318,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, @@ -556730,97 +563334,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [229471] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8594), 1, - anon_sym_RBRACE, - ACTIONS(8596), 1, - anon_sym_COMMA, - STATE(5774), 1, - sym_heredoc_body, - STATE(10466), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [229565] = 7, + anon_sym_then, + [233281] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8294), 1, - sym__start_of_index_operator, - STATE(5775), 1, + STATE(5854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6289), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 28, + ACTIONS(6287), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -556848,29 +563382,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [229621] = 7, + [233333] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8294), 1, - sym__start_of_index_operator, - STATE(5776), 1, + ACTIONS(8600), 1, + anon_sym_COMMA, + STATE(5855), 1, sym_heredoc_body, + STATE(5864), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(5794), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 28, - sym__start_of_brace_block, - sym__end_of_with_expression, + ACTIONS(5750), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -556881,7 +563416,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, @@ -556894,87 +563428,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, - [229677] = 27, + [233389] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8598), 1, - anon_sym_RPAREN, - STATE(5777), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11772), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [229773] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5778), 1, + STATE(5856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -556983,7 +563448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 29, + ACTIONS(6453), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -557013,15 +563478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [229825] = 5, + [233441] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5779), 1, + STATE(5857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557030,7 +563495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 29, + ACTIONS(6514), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -557060,15 +563525,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [229877] = 5, + [233493] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5780), 1, + STATE(5858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(6037), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557077,8 +563543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 29, - sym__line_break, + ACTIONS(6035), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557090,7 +563555,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, @@ -557103,31 +563567,32 @@ 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, - [229929] = 5, + [233545] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5781), 1, + STATE(5859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(5852), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 29, - sym__start_of_brace_block, + ACTIONS(5850), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557151,80 +563616,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, - [229981] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(5782), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5979), 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, - [230063] = 5, + [233597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5783), 1, + STATE(5860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557233,7 +563636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 29, + ACTIONS(5729), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -557263,15 +563666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [230115] = 5, + [233649] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5784), 1, + STATE(5861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557280,10 +563683,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 29, - sym__start_of_brace_block, + ACTIONS(6461), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557294,6 +563696,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, @@ -557309,28 +563712,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [230167] = 5, + anon_sym_then, + [233701] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5785), 1, + STATE(5862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5864), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 29, - sym__start_of_brace_block, + ACTIONS(5862), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557354,18 +563757,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, - [230219] = 5, + [233753] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5786), 1, + ACTIONS(8600), 1, + anon_sym_COMMA, + STATE(5863), 1, sym_heredoc_body, + STATE(5878), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5860), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557374,10 +563782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 29, - sym__start_of_brace_block, + ACTIONS(5856), 26, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557388,7 +563794,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, @@ -557401,18 +563806,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, - [230271] = 5, + [233809] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5787), 1, + ACTIONS(8600), 1, + anon_sym_COMMA, + STATE(5864), 1, sym_heredoc_body, + STATE(5931), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(5860), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557421,10 +563831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 29, - sym__start_of_brace_block, + ACTIONS(5856), 26, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557435,7 +563843,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, @@ -557448,18 +563855,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, - [230323] = 5, + [233865] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5788), 1, + STATE(5865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557468,10 +563875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 29, - sym__start_of_brace_block, + ACTIONS(6465), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557482,6 +563888,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, @@ -557497,16 +563904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [230375] = 5, + anon_sym_then, + [233917] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5789), 1, + STATE(5866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(6475), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557515,10 +563922,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 29, - sym__start_of_brace_block, + ACTIONS(6473), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557529,6 +563935,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, @@ -557544,16 +563951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [230427] = 5, + anon_sym_then, + [233969] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5790), 1, + STATE(5867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(6277), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557562,10 +563969,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 29, - sym__start_of_brace_block, + ACTIONS(6275), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557576,6 +563982,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, @@ -557591,16 +563998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [230479] = 5, + anon_sym_then, + [234021] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5791), 1, + STATE(5868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557609,10 +564016,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 29, - sym__start_of_brace_block, + ACTIONS(6477), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557623,6 +564029,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, @@ -557638,16 +564045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [230531] = 5, + anon_sym_then, + [234073] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5792), 1, + STATE(5869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557656,7 +564063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 29, + ACTIONS(6369), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -557686,83 +564093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [230583] = 26, + [234125] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8600), 1, - anon_sym_RBRACE, - ACTIONS(8602), 1, - anon_sym_COMMA, - STATE(5793), 1, - sym_heredoc_body, - STATE(10557), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [230677] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5794), 1, + STATE(5870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557771,7 +564110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 29, + ACTIONS(6481), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -557801,16 +564140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [230729] = 5, + [234177] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5795), 1, + STATE(5871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 9, - anon_sym_RBRACK, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557819,7 +564157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 28, + ACTIONS(6493), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557831,7 +564170,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, @@ -557845,87 +564184,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, - [230781] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8604), 1, - anon_sym_RPAREN, - STATE(5796), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(12004), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [230877] = 5, + anon_sym_then, + [234229] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5797), 1, + STATE(5872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557934,7 +564204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 29, + ACTIONS(6497), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -557964,15 +564234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [230929] = 5, + [234281] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5798), 1, + STATE(5873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(6503), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -557981,10 +564251,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 29, - sym__start_of_brace_block, + ACTIONS(6501), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557995,6 +564264,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, @@ -558010,16 +564280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [230981] = 5, + anon_sym_then, + [234333] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5799), 1, + STATE(5874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -558028,10 +564298,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 29, - sym__start_of_brace_block, + ACTIONS(6505), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558042,6 +564311,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, @@ -558057,96 +564327,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [231033] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5811), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(5876), 1, - anon_sym_RBRACK, - ACTIONS(8606), 1, - anon_sym_COMMA, - ACTIONS(8608), 1, - anon_sym_DOT_DOT, - ACTIONS(8610), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, - anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8632), 1, - anon_sym_QMARK, - ACTIONS(8634), 1, - anon_sym_AMP_AMP, - ACTIONS(8636), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(5800), 1, - sym_heredoc_body, - STATE(6200), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8626), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8624), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8640), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8642), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [231127] = 5, + anon_sym_then, + [234385] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5801), 1, + STATE(5875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(5883), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 29, - sym__start_of_brace_block, + ACTIONS(5881), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558170,30 +564372,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, - [231179] = 5, + [234437] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5802), 1, + STATE(5876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(5915), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 29, - sym__start_of_brace_block, + ACTIONS(5913), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558217,30 +564419,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, - [231231] = 5, + [234489] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5803), 1, + STATE(5877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(5919), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 29, - sym__start_of_brace_block, + ACTIONS(5917), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558264,18 +564466,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, - [231283] = 5, + [234541] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5804), 1, + ACTIONS(8600), 1, + anon_sym_COMMA, + STATE(5878), 1, sym_heredoc_body, + STATE(5931), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(5892), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -558284,10 +564491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 29, - sym__start_of_brace_block, + ACTIONS(5888), 26, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558298,7 +564503,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, @@ -558311,18 +564515,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, - [231335] = 5, + [234597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5805), 1, + STATE(5879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -558331,7 +564535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 29, + ACTIONS(6565), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -558361,15 +564565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [231387] = 5, + [234649] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5806), 1, + STATE(5880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -558378,10 +564582,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 29, - sym__start_of_brace_block, + ACTIONS(145), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558392,6 +564595,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, @@ -558407,16 +564611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [231439] = 5, + anon_sym_then, + [234701] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5807), 1, + STATE(5881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -558425,10 +564629,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 29, - sym__start_of_brace_block, + ACTIONS(6279), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558439,6 +564642,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, @@ -558454,28 +564658,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [231491] = 5, + anon_sym_then, + [234753] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5808), 1, + STATE(5882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6049), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 29, - sym__start_of_brace_block, + ACTIONS(6047), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558499,30 +564703,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, - [231543] = 5, + [234805] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5809), 1, + STATE(5883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(6053), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 29, - sym__start_of_brace_block, + ACTIONS(6051), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558546,30 +564750,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, - [231595] = 5, + [234857] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5810), 1, + STATE(5884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(5953), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 29, - sym__start_of_brace_block, + ACTIONS(5951), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558593,81 +564797,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, - anon_sym_do, - [231647] = 21, + [234909] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(5811), 1, + STATE(5885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(5927), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + anon_sym_AMP_STAR, + ACTIONS(5925), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 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_do, - [231731] = 5, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [234961] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5812), 1, + STATE(5886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -558676,10 +564864,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 29, - sym__start_of_brace_block, + ACTIONS(6229), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558690,6 +564877,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, @@ -558705,28 +564893,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [231783] = 5, + anon_sym_then, + [235013] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5813), 1, + STATE(5887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6023), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 29, - sym__start_of_brace_block, + ACTIONS(6021), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558750,30 +564938,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, - [231835] = 5, + [235065] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5814), 1, + STATE(5888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(6071), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 29, - sym__start_of_brace_block, + ACTIONS(6069), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558797,30 +564985,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, - [231887] = 5, + [235117] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5815), 1, + STATE(5889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(6019), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 29, - sym__start_of_brace_block, + ACTIONS(6017), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558844,30 +565032,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, - [231939] = 5, + [235169] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5816), 1, + STATE(5890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(5671), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 29, - sym__start_of_brace_block, + ACTIONS(5669), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -558891,98 +565079,124 @@ static const uint16_t ts_small_parse_table[] = { 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, - [231991] = 26, + [235221] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + STATE(5891), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5820), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, anon_sym_DOT, - ACTIONS(7396), 1, + anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(5818), 27, sym__start_of_index_operator, - ACTIONS(7424), 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(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8646), 1, - anon_sym_RBRACE, - ACTIONS(8648), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - STATE(5817), 1, - sym_heredoc_body, - STATE(10662), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [235273] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5892), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5820), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(5818), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [232085] = 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, + [235325] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5818), 1, + STATE(5893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(5824), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 29, - sym__start_of_brace_block, + ACTIONS(5822), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559006,30 +565220,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, - [232137] = 5, + [235377] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5819), 1, + STATE(5894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(6011), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 29, - sym__start_of_brace_block, + ACTIONS(6009), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559053,30 +565267,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, - [232189] = 5, + [235429] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5820), 1, + STATE(5895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(5945), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 29, - sym__start_of_brace_block, + ACTIONS(5943), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559100,18 +565314,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, - [232241] = 5, + [235481] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5821), 1, + STATE(5896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -559120,10 +565334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 29, - sym__start_of_brace_block, + ACTIONS(5832), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559134,6 +565347,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, @@ -559149,16 +565363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [232293] = 5, + anon_sym_then, + [235533] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5822), 1, + STATE(5897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -559167,7 +565381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6121), 29, + ACTIONS(6267), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -559197,96 +565411,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [232345] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8650), 1, - anon_sym_RPAREN, - STATE(5823), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11715), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [232441] = 5, + [235585] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5824), 1, + STATE(5898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(6057), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 29, - sym__start_of_brace_block, + ACTIONS(6055), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559310,28 +565455,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [232493] = 5, + [235637] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5825), 1, + STATE(5899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, + ACTIONS(5798), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 29, - sym__line_break, + ACTIONS(5796), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559343,7 +565489,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, @@ -559357,18 +565502,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, - [232545] = 5, + [235689] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5826), 1, + STATE(5900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(6285), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -559377,10 +565522,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6443), 29, - sym__start_of_brace_block, + ACTIONS(6283), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559391,6 +565535,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, @@ -559406,26 +565551,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [232597] = 5, + anon_sym_then, + [235741] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5827), 1, + STATE(5901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, + ACTIONS(5979), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6125), 29, - sym__line_break, + ACTIONS(5977), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559437,7 +565583,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, @@ -559451,28 +565596,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [232649] = 5, + [235793] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5828), 1, + STATE(5902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(5989), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 29, - sym__line_break, + ACTIONS(5987), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559484,7 +565630,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, @@ -559498,28 +565643,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [232701] = 5, + [235845] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5829), 1, + STATE(5903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5989), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6419), 29, - sym__line_break, + ACTIONS(5987), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559531,7 +565677,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, @@ -559545,30 +565690,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, - [232753] = 5, + [235897] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5830), 1, + STATE(5904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(5993), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 29, - sym__start_of_brace_block, + ACTIONS(5991), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559592,28 +565737,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [232805] = 5, + [235949] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5831), 1, + STATE(5905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, + ACTIONS(5808), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 29, - sym__line_break, + ACTIONS(5806), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559625,7 +565771,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, @@ -559639,28 +565784,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [232857] = 5, + [236001] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5832), 1, + STATE(5906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(5896), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 29, - sym__line_break, + ACTIONS(5894), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559672,7 +565818,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, @@ -559686,28 +565831,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [232909] = 5, + [236053] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5833), 1, + STATE(5907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(6015), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 29, - sym__line_break, + ACTIONS(6013), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559719,7 +565865,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, @@ -559733,30 +565878,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, - [232961] = 5, + [236105] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5834), 1, + STATE(5908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(5949), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 29, - sym__start_of_brace_block, + ACTIONS(5947), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559780,28 +565925,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [233013] = 5, + [236157] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5835), 1, + STATE(5909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(5812), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 29, - sym__line_break, + ACTIONS(5810), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559813,7 +565959,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, @@ -559827,31 +565972,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [233065] = 6, + [236209] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8652), 1, - anon_sym_COMMA, + STATE(5910), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5836), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 9, + ACTIONS(6027), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 26, + ACTIONS(6025), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -559863,6 +566006,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, @@ -559878,145 +566022,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [233119] = 23, + [236261] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, + ACTIONS(6520), 1, anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8318), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8320), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8324), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8330), 1, anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, + ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8338), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8344), 1, sym_binary_ampersand, - STATE(5837), 1, + STATE(5911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(8316), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6459), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(8280), 4, + ACTIONS(8326), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [233207] = 23, + ACTIONS(6518), 6, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + anon_sym_do, + [236345] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, + ACTIONS(5856), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(5860), 1, + anon_sym_RBRACK, + ACTIONS(8600), 1, + anon_sym_COMMA, + ACTIONS(8602), 1, anon_sym_DOT_DOT, - ACTIONS(8266), 1, + ACTIONS(8604), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(8610), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8612), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8288), 1, + ACTIONS(8626), 1, anon_sym_QMARK, - ACTIONS(8290), 1, + ACTIONS(8628), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8630), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, + ACTIONS(8632), 1, sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8638), 1, sym_binary_ampersand, - STATE(5838), 1, + STATE(5878), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(8608), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6461), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(8280), 4, + ACTIONS(8618), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [233295] = 5, + [236439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5839), 1, + STATE(5913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -560025,7 +566170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 29, + ACTIONS(6257), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -560055,15 +566200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [233347] = 5, + [236491] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5840), 1, + STATE(5914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -560072,10 +566217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 29, - sym__start_of_brace_block, + ACTIONS(6365), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -560086,6 +566230,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, @@ -560101,16 +566246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [233399] = 5, + anon_sym_then, + [236543] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5841), 1, + STATE(5915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6559), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -560119,10 +566264,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 29, - sym__start_of_brace_block, + ACTIONS(6557), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -560133,6 +566277,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, @@ -560148,81 +566293,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [233451] = 23, + anon_sym_then, + [236595] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, anon_sym_DOT_DOT, - ACTIONS(8266), 1, + ACTIONS(8314), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(8318), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8320), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8324), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8330), 1, anon_sym_AMP_STAR, - ACTIONS(8288), 1, + ACTIONS(8334), 1, anon_sym_QMARK, - ACTIONS(8290), 1, + ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8338), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5916), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6083), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [236683] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, sym_binary_ampersand, - STATE(5842), 1, + STATE(5917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(8316), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6469), 4, + ACTIONS(6085), 4, sym__start_of_brace_block, - sym__end_of_with_expression, anon_sym_COMMA, + anon_sym_COLON2, anon_sym_do, - ACTIONS(8280), 4, + ACTIONS(8326), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [233539] = 5, + [236771] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5843), 1, + STATE(5918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -560231,7 +566441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 29, + ACTIONS(6249), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -560261,84 +566471,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [233591] = 5, + [236823] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5844), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6474), 29, + ACTIONS(6095), 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(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8342), 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, - [233643] = 5, + [236911] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5845), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + STATE(5920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6443), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6125), 22, + 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, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -560350,107 +566583,41 @@ 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, - [233695] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8655), 1, - anon_sym_RPAREN, - STATE(5846), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11775), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [233791] = 5, + anon_sym_COLON2, + anon_sym_do, + [236973] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5847), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(5921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 29, + ACTIONS(6129), 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, @@ -560466,38 +566633,41 @@ 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, - [233843] = 5, + [237031] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5848), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + STATE(5922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 29, + ACTIONS(6133), 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, @@ -560513,230 +566683,279 @@ 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, - [233895] = 5, + [237089] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5849), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + STATE(5923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6486), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 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, - [233947] = 5, + [237155] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5850), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6502), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6141), 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, - [233999] = 5, + [237239] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5851), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6514), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6145), 10, + 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, - [234051] = 5, + [237315] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5852), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6518), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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, - [234103] = 5, + [237383] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5853), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + STATE(5927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6522), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 18, + sym__start_of_brace_block, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -560748,99 +566967,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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [234155] = 10, + [237447] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8294), 1, + ACTIONS(7043), 1, sym__start_of_index_operator, - STATE(5854), 1, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8286), 2, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8298), 4, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6169), 5, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 22, + ACTIONS(6167), 14, 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_ampersand, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + [237519] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5929), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6171), 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, - [234217] = 8, + [237599] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(8294), 1, + ACTIONS(7043), 1, sym__start_of_index_operator, - STATE(5855), 1, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8286), 2, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6175), 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, + [237681] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8640), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(5931), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 26, - sym__start_of_brace_block, - sym__end_of_with_expression, + ACTIONS(5970), 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_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -560851,45 +567195,42 @@ 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, - [234275] = 8, + [237735] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8294), 1, - sym__start_of_index_operator, - STATE(5856), 1, + STATE(5932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6299), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 26, - sym__start_of_brace_block, - sym__end_of_with_expression, + ACTIONS(6297), 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, @@ -560901,279 +567242,201 @@ 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, - [234333] = 12, + anon_sym_then, + [237787] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8294), 1, - sym__start_of_index_operator, - STATE(5857), 1, + STATE(5933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8296), 4, + ACTIONS(6447), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6445), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 16, - sym__start_of_brace_block, - sym__end_of_with_expression, - 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, - [234399] = 21, + anon_sym_then, + [237839] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(6363), 1, anon_sym_DOT_DOT, - ACTIONS(8268), 1, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8318), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8320), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8324), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8330), 1, anon_sym_AMP_STAR, - ACTIONS(8290), 1, + ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8338), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8344), 1, sym_binary_ampersand, - STATE(5858), 1, + STATE(5934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(8316), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8280), 4, + ACTIONS(8326), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 6, + ACTIONS(6361), 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, - [234483] = 17, + [237923] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8294), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(5859), 1, + STATE(5935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(6303), 7, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + anon_sym_AMP_STAR, + ACTIONS(6301), 28, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 10, - 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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [234559] = 13, + anon_sym_then, + [237979] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(5860), 1, + STATE(5936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(6531), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 15, - sym__start_of_brace_block, - 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, - anon_sym_do, - [234627] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8284), 1, anon_sym_AMP_STAR, - ACTIONS(8294), 1, + ACTIONS(6529), 29, + sym__line_break, sym__start_of_index_operator, - STATE(5861), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8296), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 18, - sym__start_of_brace_block, - sym__end_of_with_expression, - sym_binary_ampersand, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -561185,199 +567448,244 @@ 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, - [234691] = 15, + anon_sym_then, + [238031] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(5862), 1, + STATE(5937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8296), 4, + ACTIONS(6289), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6287), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 14, - 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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [234763] = 19, + anon_sym_then, + [238083] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(8268), 1, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8320), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8324), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8330), 1, anon_sym_AMP_STAR, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, sym_binary_ampersand, - STATE(5863), 1, + STATE(5938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(8316), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8280), 4, + ACTIONS(6459), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8326), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 8, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [234843] = 20, + [238171] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(8268), 1, + ACTIONS(7017), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8320), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8324), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8330), 1, anon_sym_AMP_STAR, - ACTIONS(8290), 1, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, anon_sym_AMP_AMP, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, sym_binary_ampersand, - STATE(5864), 1, + STATE(5939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8332), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(8316), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8280), 4, + ACTIONS(6491), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8326), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 7, - sym__start_of_brace_block, - sym__end_of_with_expression, + [238259] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5940), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6535), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6533), 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, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [234925] = 5, + anon_sym_then, + [238311] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5865), 1, + STATE(5941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561386,10 +567694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, - sym__start_of_brace_block, + ACTIONS(6537), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561400,6 +567707,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, @@ -561415,16 +567723,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [234977] = 5, + anon_sym_then, + [238363] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5866), 1, + STATE(5942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561433,10 +567741,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, - sym__start_of_brace_block, + ACTIONS(5838), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561447,6 +567754,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, @@ -561462,16 +567770,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_then, + [238415] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5943), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6373), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, anon_sym_do, - [235029] = 5, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [238503] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5867), 1, + STATE(5944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561480,8 +567853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, - sym__start_of_brace_block, + ACTIONS(5170), 29, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -561494,6 +567866,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, @@ -561506,31 +567879,32 @@ 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, - [235081] = 5, + [238555] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5868), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(5945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6305), 28, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561541,6 +567915,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, @@ -561556,16 +567931,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [235133] = 5, + anon_sym_then, + [238611] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5869), 1, + STATE(5946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561574,10 +567949,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, - sym__start_of_brace_block, + ACTIONS(6433), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561588,6 +567962,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, @@ -561603,16 +567978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [235185] = 5, + anon_sym_then, + [238663] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5870), 1, + STATE(5947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561621,10 +567996,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, - sym__start_of_brace_block, + ACTIONS(6541), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561635,6 +568009,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, @@ -561650,84 +568025,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [235237] = 26, + anon_sym_then, + [238715] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8192), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8194), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8200), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8202), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8206), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8216), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8218), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8220), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8230), 1, sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8657), 1, - anon_sym_RBRACE, - ACTIONS(8659), 1, - anon_sym_COMMA, - STATE(5871), 1, + STATE(5948), 1, sym_heredoc_body, - STATE(10081), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8214), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8198), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8208), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8228), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [235331] = 5, + ACTIONS(8643), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [238803] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5872), 1, + STATE(5949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(4624), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561736,10 +568109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, - sym__start_of_brace_block, + ACTIONS(4622), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561750,6 +568121,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -561763,30 +568135,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, - [235383] = 5, + [238855] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5873), 1, + STATE(5950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(5020), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, - sym__start_of_brace_block, + ACTIONS(5022), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561810,18 +568182,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, - [235435] = 5, + [238907] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5874), 1, + ACTIONS(983), 1, + anon_sym_EQ, + STATE(5951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(195), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561830,10 +568205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 29, - sym__start_of_brace_block, + ACTIONS(173), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561857,87 +568230,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, - [235487] = 27, + [238961] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8661), 1, - anon_sym_RPAREN, - STATE(5875), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11371), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [235583] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5876), 1, + STATE(5952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561946,10 +568250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 29, - sym__start_of_brace_block, + ACTIONS(6545), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561960,6 +568263,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, @@ -561975,16 +568279,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [235635] = 5, + anon_sym_then, + [239013] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5877), 1, + ACTIONS(7851), 1, + anon_sym_LPAREN2, + STATE(5953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(195), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -561993,10 +568300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 29, - sym__start_of_brace_block, + ACTIONS(173), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562020,18 +568325,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, - [235687] = 5, + [239067] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5878), 1, + STATE(5954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562040,10 +568345,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 29, - sym__start_of_brace_block, + ACTIONS(6549), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562054,6 +568358,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, @@ -562069,16 +568374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [235739] = 5, + anon_sym_then, + [239119] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5879), 1, + ACTIONS(8645), 1, + sym_regex_modifier, + STATE(5955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(5997), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562087,10 +568395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 29, - sym__start_of_brace_block, + ACTIONS(5995), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562114,18 +568420,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, - [235791] = 5, + [239173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5880), 1, + STATE(5956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562134,7 +568440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 29, + ACTIONS(6553), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -562164,15 +568470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [235843] = 5, + [239225] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5881), 1, + ACTIONS(8647), 1, + sym_regex_modifier, + STATE(5957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(6031), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562181,10 +568490,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 29, - sym__start_of_brace_block, + ACTIONS(6029), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562208,30 +568515,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, - anon_sym_do, - [235895] = 5, + [239279] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5882), 1, + ACTIONS(8649), 1, + anon_sym_LPAREN, + ACTIONS(8651), 1, + anon_sym_DOT, + STATE(5958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(6043), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 29, - sym__start_of_brace_block, + ACTIONS(6039), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562255,18 +568564,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, - [235947] = 5, + [239335] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5883), 1, + STATE(5959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(5164), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562275,8 +568584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 29, - sym__start_of_brace_block, + ACTIONS(5166), 29, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -562289,6 +568597,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, @@ -562301,19 +568610,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, - [235999] = 5, + [239387] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5884), 1, + ACTIONS(8649), 1, + anon_sym_LPAREN, + STATE(5960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(6043), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562322,10 +568634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 29, - sym__start_of_brace_block, + ACTIONS(6039), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562349,18 +568659,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, - [236051] = 5, + [239441] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5885), 1, + ACTIONS(8653), 1, + anon_sym_LPAREN, + STATE(5961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6065), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562369,10 +568682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 29, - sym__start_of_brace_block, + ACTIONS(6061), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562396,65 +568707,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, - anon_sym_do, - [236103] = 5, + [239495] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5886), 1, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, + anon_sym_QMARK, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(5962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5955), 29, + ACTIONS(6489), 4, sym__line_break, - sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 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, + [239583] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, + anon_sym_QMARK, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(5963), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6509), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(8208), 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, - [236155] = 5, + ACTIONS(8226), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8228), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [239671] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5887), 1, + STATE(5964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(4620), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562463,10 +568858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 29, - sym__start_of_brace_block, + ACTIONS(4618), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562477,6 +568870,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -562490,18 +568884,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, - [236207] = 5, + [239723] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5888), 1, + STATE(5965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562510,10 +568904,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 29, - sym__start_of_brace_block, + ACTIONS(6561), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562524,6 +568917,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, @@ -562539,110 +568933,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [236259] = 5, + anon_sym_then, + [239775] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5889), 1, + ACTIONS(5750), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(5794), 1, + anon_sym_RBRACK, + ACTIONS(8600), 1, + anon_sym_COMMA, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(5864), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6047), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [239869] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, + anon_sym_QMARK, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(5967), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6227), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8226), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8228), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [239957] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, anon_sym_QMARK, + ACTIONS(8218), 1, anon_sym_AMP_AMP, + ACTIONS(8220), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [236311] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5890), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(5968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6510), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6261), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [240045] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, + anon_sym_QMARK, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(5969), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5970), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8226), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8228), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [240133] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8428), 1, + anon_sym_typeof, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(8436), 1, + sym__start_of_tuple_type, + ACTIONS(8438), 1, + sym__start_of_named_tuple_type, + ACTIONS(8655), 1, + anon_sym_LPAREN, + ACTIONS(8657), 1, + anon_sym_DASH_GT, + STATE(5970), 1, + sym_heredoc_body, + STATE(7947), 1, + sym_constant, + STATE(8018), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8434), 2, + sym_self, + sym_underscore_type, + STATE(7971), 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(4656), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [236363] = 5, + [240205] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5891), 1, + ACTIONS(8428), 1, + anon_sym_typeof, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(8436), 1, + sym__start_of_tuple_type, + ACTIONS(8438), 1, + sym__start_of_named_tuple_type, + ACTIONS(8655), 1, + anon_sym_LPAREN, + ACTIONS(8657), 1, + anon_sym_DASH_GT, + STATE(5971), 1, sym_heredoc_body, + STATE(7947), 1, + sym_constant, + STATE(8026), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(8434), 2, + sym_self, + sym_underscore_type, + STATE(7971), 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(4678), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [240277] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8428), 1, + anon_sym_typeof, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(8436), 1, + sym__start_of_tuple_type, + ACTIONS(8438), 1, + sym__start_of_named_tuple_type, + ACTIONS(8655), 1, + anon_sym_LPAREN, + ACTIONS(8657), 1, + anon_sym_DASH_GT, + STATE(5972), 1, + sym_heredoc_body, + STATE(7947), 1, + sym_constant, + STATE(8028), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8434), 2, + sym_self, + sym_underscore_type, + STATE(7971), 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(4628), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [240349] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5973), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5816), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562651,10 +569386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 29, - sym__start_of_brace_block, + ACTIONS(5814), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562665,6 +569398,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, @@ -562678,133 +569412,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, - anon_sym_do, - [236415] = 26, + [240401] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8663), 1, + ACTIONS(8659), 1, anon_sym_RBRACE, - ACTIONS(8665), 1, + ACTIONS(8661), 1, anon_sym_COMMA, - STATE(5892), 1, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + STATE(5974), 1, sym_heredoc_body, - STATE(10320), 1, + STATE(10175), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [236509] = 5, + [240495] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5893), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8669), 1, + anon_sym_RPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(5975), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(10953), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, - anon_sym_DOT_DOT, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [240591] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7017), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5976), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6051), 29, + ACTIONS(6489), 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(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [240679] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5977), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8328), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6509), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8326), 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, - [236561] = 5, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [240767] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5894), 1, + ACTIONS(8693), 1, + anon_sym_of, + STATE(5978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(5830), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562813,10 +569702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 29, - sym__start_of_brace_block, + ACTIONS(5826), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -562840,87 +569727,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, + [240821] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, anon_sym_AMP_AMP, + ACTIONS(8338), 1, anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5979), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6227), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, anon_sym_do, - [236613] = 27, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [240909] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8667), 1, - anon_sym_RPAREN, - STATE(5895), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5980), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(12077), 1, - sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [236709] = 5, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [240997] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5896), 1, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8312), 1, + anon_sym_DOT_DOT, + ACTIONS(8314), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8334), 1, + anon_sym_QMARK, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 9, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5970), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [241085] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8695), 1, + sym_regex_modifier, + STATE(5982), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5834), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -562930,7 +569945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 28, + ACTIONS(5832), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -562942,7 +569957,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -562959,15 +569973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [236761] = 5, + [241139] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5897), 1, + STATE(5983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(5923), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -562976,7 +569990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 29, + ACTIONS(5921), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -563006,15 +570020,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [236813] = 5, + [241191] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5898), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(7017), 1, + anon_sym_DOT, + ACTIONS(7043), 1, + sym__start_of_index_operator, + ACTIONS(8318), 1, + anon_sym_PIPE, + ACTIONS(8320), 1, + anon_sym_CARET, + ACTIONS(8324), 1, + anon_sym_EQ_EQ, + ACTIONS(8330), 1, + anon_sym_AMP_STAR, + ACTIONS(8336), 1, + anon_sym_AMP_AMP, + ACTIONS(8338), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8344), 1, + sym_binary_ampersand, + STATE(5984), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8322), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8328), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8332), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8316), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8326), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6253), 6, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + anon_sym_do, + [241275] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8697), 1, + sym_regex_modifier, + STATE(5985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(5840), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -563023,8 +570103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 29, - sym__line_break, + ACTIONS(5838), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -563036,7 +570115,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, @@ -563050,18 +570128,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_then, - [236865] = 5, + [241329] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5899), 1, + ACTIONS(8699), 1, + anon_sym_of, + STATE(5986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(5848), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -563070,8 +570151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 29, - sym__line_break, + ACTIONS(5844), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -563083,7 +570163,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, @@ -563097,31 +570176,166 @@ static const uint16_t ts_small_parse_table[] = { 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, - [236917] = 7, + [241383] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8701), 1, + anon_sym_RBRACE, + ACTIONS(8703), 1, + anon_sym_COMMA, + STATE(5987), 1, + sym_heredoc_body, + STATE(10525), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [241477] = 27, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8705), 1, + anon_sym_RPAREN, + STATE(5988), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11888), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [241573] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(5900), 1, + STATE(5989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(5968), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 28, + ACTIONS(5966), 29, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -563149,15 +570363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [236973] = 5, + [241625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5901), 1, + STATE(5990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -563166,10 +570380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 29, - sym__start_of_brace_block, + ACTIONS(5970), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -563180,6 +570393,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, @@ -563195,63 +570409,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237025] = 5, + anon_sym_then, + [241677] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5902), 1, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + ACTIONS(8707), 1, + anon_sym_COMMA, + ACTIONS(8709), 1, + anon_sym_RBRACK, + ACTIONS(8711), 1, + anon_sym_RBRACK_QMARK, + STATE(5991), 1, sym_heredoc_body, + STATE(9851), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6063), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [241771] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8713), 1, + anon_sym_RBRACE, + ACTIONS(8715), 1, + anon_sym_COMMA, + STATE(5992), 1, + sym_heredoc_body, + STATE(10339), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 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, - [237077] = 5, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [241865] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5903), 1, + STATE(5993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(5804), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -563260,10 +570563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 29, - sym__start_of_brace_block, + ACTIONS(5802), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -563274,6 +570576,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, @@ -563289,16 +570592,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237129] = 5, + anon_sym_then, + [241917] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5904), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8717), 1, + anon_sym_RPAREN, + STATE(5994), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(10994), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [242013] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(5868), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -563307,10 +570679,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 29, - sym__start_of_brace_block, + ACTIONS(5866), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -563321,6 +570692,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, @@ -563336,251 +570708,838 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237181] = 5, + anon_sym_then, + [242065] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5905), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8719), 1, + anon_sym_RBRACE, + ACTIONS(8721), 1, + anon_sym_COMMA, + STATE(5996), 1, sym_heredoc_body, + STATE(10284), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6071), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [242159] = 27, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8723), 1, + anon_sym_RPAREN, + STATE(5997), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11427), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [242255] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [237233] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5906), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(5998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6075), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(8725), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + [242343] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [237285] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5907), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8727), 1, + anon_sym_RBRACE, + ACTIONS(8729), 1, + anon_sym_COMMA, + STATE(5999), 1, sym_heredoc_body, + STATE(10107), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6079), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [242437] = 27, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8731), 1, + anon_sym_RPAREN, + STATE(6000), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11830), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [242533] = 27, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8733), 1, + anon_sym_RPAREN, + STATE(6001), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11519), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [242629] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [237337] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5908), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8735), 1, + anon_sym_RBRACE, + ACTIONS(8737), 1, + anon_sym_COMMA, + STATE(6002), 1, sym_heredoc_body, + STATE(10447), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6083), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [242723] = 27, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8739), 1, + anon_sym_RPAREN, + STATE(6003), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11132), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [242819] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [237389] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5909), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8741), 1, + anon_sym_RBRACE, + ACTIONS(8743), 1, + anon_sym_COMMA, + STATE(6004), 1, sym_heredoc_body, + STATE(10155), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6087), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [242913] = 27, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8745), 1, + anon_sym_RPAREN, + STATE(6005), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(12184), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [243009] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8747), 1, + anon_sym_RBRACE, + ACTIONS(8749), 1, + anon_sym_COMMA, + STATE(6006), 1, + sym_heredoc_body, + STATE(10352), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 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, - [237441] = 5, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [243103] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5910), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8751), 1, + anon_sym_RPAREN, + STATE(6007), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11414), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [243199] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8753), 1, + anon_sym_of, + STATE(6008), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5877), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -563589,10 +571548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 29, - sym__start_of_brace_block, + ACTIONS(5873), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -563616,223 +571573,271 @@ static const uint16_t ts_small_parse_table[] = { 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, - [237493] = 5, + [243253] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5911), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8755), 1, + anon_sym_RBRACE, + ACTIONS(8757), 1, + anon_sym_COMMA, + STATE(6009), 1, sym_heredoc_body, + STATE(10478), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6095), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [237545] = 5, + [243347] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5912), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8759), 1, + anon_sym_RPAREN, + STATE(6010), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11765), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6099), 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, - [237597] = 21, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [243443] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(8268), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8290), 1, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(5913), 1, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8761), 1, + anon_sym_RBRACE, + ACTIONS(8763), 1, + anon_sym_COMMA, + STATE(6011), 1, sym_heredoc_body, + STATE(10704), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8280), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 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, - [237681] = 27, + [243537] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8669), 1, + ACTIONS(8765), 1, anon_sym_RPAREN, - STATE(5914), 1, + STATE(6012), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(10925), 1, + STATE(12363), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -563845,250 +571850,292 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [237777] = 5, + [243633] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5915), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6113), 8, - anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6111), 29, - sym__start_of_brace_block, + ACTIONS(7406), 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(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [237829] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5916), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8767), 1, + anon_sym_RBRACE, + ACTIONS(8769), 1, + anon_sym_COMMA, + STATE(6013), 1, sym_heredoc_body, + STATE(10310), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6117), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [237881] = 5, + [243727] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5917), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8771), 1, + anon_sym_RPAREN, + STATE(6014), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11443), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, - anon_sym_DOT_DOT, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [243823] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6121), 29, - sym__start_of_brace_block, + ACTIONS(7406), 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(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [237933] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5918), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8773), 1, + anon_sym_RBRACE, + ACTIONS(8775), 1, + anon_sym_COMMA, + STATE(6015), 1, sym_heredoc_body, + STATE(10125), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6125), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [237985] = 5, + [243917] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5919), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8777), 1, + anon_sym_RPAREN, + STATE(6016), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11306), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6129), 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, - [238037] = 5, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [244013] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5920), 1, + ACTIONS(8779), 1, + anon_sym_of, + STATE(6017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(5748), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -564097,10 +572144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 29, - sym__start_of_brace_block, + ACTIONS(5744), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -564124,160 +572169,134 @@ static const uint16_t ts_small_parse_table[] = { 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, - [238089] = 5, + [244067] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5921), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6139), 8, - anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6137), 29, - sym__start_of_brace_block, + ACTIONS(7406), 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(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [238141] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5922), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8781), 1, + anon_sym_RBRACE, + ACTIONS(8783), 1, + anon_sym_COMMA, + STATE(6018), 1, sym_heredoc_body, + STATE(10311), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6141), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [238193] = 27, + [244161] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8671), 1, + ACTIONS(8785), 1, anon_sym_RPAREN, - STATE(5923), 1, + STATE(6019), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11027), 1, + STATE(12010), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -564290,111 +572309,131 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [238289] = 6, + [244257] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8673), 1, - anon_sym_of, - STATE(5924), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8787), 1, + anon_sym_RBRACE, + ACTIONS(8789), 1, + anon_sym_COMMA, + STATE(6020), 1, sym_heredoc_body, + STATE(10418), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5785), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [238343] = 27, + [244351] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8675), 1, + ACTIONS(8791), 1, anon_sym_RPAREN, - STATE(5925), 1, + STATE(6021), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11121), 1, + STATE(10989), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -564407,15 +572446,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [238439] = 5, + [244447] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5926), 1, + STATE(6022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -564424,7 +572463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 29, + ACTIONS(173), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -564454,109 +572493,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [238491] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5927), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6155), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6153), 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, - [238543] = 5, + [244499] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5928), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8793), 1, + anon_sym_RPAREN, + STATE(6023), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11107), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6157), 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, - [238595] = 5, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [244595] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5929), 1, + ACTIONS(8795), 1, + anon_sym_LPAREN, + STATE(6024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(5905), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -564565,10 +572582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 29, - sym__start_of_brace_block, + ACTIONS(5901), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -564592,113 +572607,135 @@ static const uint16_t ts_small_parse_table[] = { 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, - [238647] = 5, + [244649] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5930), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(8797), 1, + anon_sym_RPAREN, + STATE(6025), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11201), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6534), 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, - [238699] = 27, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [244745] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8677), 1, + ACTIONS(8799), 1, anon_sym_RPAREN, - STATE(5931), 1, + STATE(6026), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11200), 1, + STATE(11311), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -564711,15 +572748,18 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [238795] = 5, + [244841] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5932), 1, + ACTIONS(8801), 1, + anon_sym_EQ, + STATE(6027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, + ACTIONS(5939), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -564728,10 +572768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 29, - sym__start_of_brace_block, + ACTIONS(5937), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -564755,66 +572793,66 @@ static const uint16_t ts_small_parse_table[] = { 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, - [238847] = 27, + [244895] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8679), 1, + ACTIONS(8803), 1, anon_sym_RPAREN, - STATE(5933), 1, + STATE(6028), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11271), 1, + STATE(11363), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -564827,63 +572865,63 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [238943] = 27, + [244991] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8681), 1, + ACTIONS(8805), 1, anon_sym_RPAREN, - STATE(5934), 1, + STATE(6029), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11362), 1, + STATE(11424), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -564896,63 +572934,63 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [239039] = 27, + [245087] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8683), 1, + ACTIONS(8807), 1, anon_sym_RPAREN, - STATE(5935), 1, + STATE(6030), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11408), 1, + STATE(11478), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -564965,63 +573003,63 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [239135] = 27, + [245183] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8685), 1, + ACTIONS(8809), 1, anon_sym_RPAREN, - STATE(5936), 1, + STATE(6031), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11459), 1, + STATE(11538), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -565034,17 +573072,17 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [239231] = 6, + [245279] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8687), 1, - sym_regex_modifier, - STATE(5937), 1, + ACTIONS(8811), 1, + anon_sym_of, + STATE(6032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 9, + ACTIONS(5964), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -565054,7 +573092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 27, + ACTIONS(5960), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565082,15 +573120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [239285] = 5, + [245333] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5938), 1, + ACTIONS(8813), 1, + anon_sym_of, + STATE(6033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(5985), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -565099,10 +573140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 29, - sym__start_of_brace_block, + ACTIONS(5981), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565126,18 +573165,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, - [239337] = 5, + [245387] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5939), 1, + STATE(6034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -565146,10 +573185,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 29, - sym__start_of_brace_block, + ACTIONS(6085), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565160,6 +573198,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, @@ -565175,28 +573214,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239389] = 5, + anon_sym_then, + [245439] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5940), 1, + ACTIONS(8304), 1, + sym__start_of_index_operator, + ACTIONS(8815), 1, + anon_sym_DOT, + ACTIONS(8817), 1, + anon_sym_EQ, + STATE(5647), 1, + sym__implicit_index_operator, + STATE(6035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(5719), 26, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565207,7 +573251,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, @@ -565222,16 +573266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239441] = 5, + [245499] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5941), 1, + STATE(6036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -565240,10 +573283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 29, - sym__start_of_brace_block, + ACTIONS(5719), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565254,6 +573296,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, @@ -565269,16 +573312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239493] = 5, + anon_sym_then, + [245551] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5942), 1, + STATE(6037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6081), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -565287,10 +573330,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 29, - sym__start_of_brace_block, + ACTIONS(6079), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565301,6 +573343,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, @@ -565316,81 +573359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239545] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(5943), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6205), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [239633] = 5, + anon_sym_then, + [245603] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5944), 1, + STATE(6038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -565399,10 +573377,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 29, - sym__start_of_brace_block, + ACTIONS(6353), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565413,6 +573390,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, @@ -565428,16 +573406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239685] = 5, + anon_sym_then, + [245655] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5945), 1, + STATE(6039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -565446,10 +573424,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 29, - sym__start_of_brace_block, + ACTIONS(6091), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565460,6 +573437,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, @@ -565475,526 +573453,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239737] = 5, + anon_sym_then, + [245707] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5946), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6217), 8, + ACTIONS(8383), 1, anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8391), 1, anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(6215), 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, + ACTIONS(8407), 1, anon_sym_QMARK, + ACTIONS(8409), 1, anon_sym_AMP_AMP, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [239789] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5947), 1, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6219), 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, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8405), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [239841] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5948), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6225), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8389), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6223), 29, + ACTIONS(6489), 4, sym__start_of_brace_block, - sym__start_of_index_operator, sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8417), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [245795] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 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(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, anon_sym_QMARK, + ACTIONS(8409), 1, anon_sym_AMP_AMP, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [239893] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5949), 1, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8389), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5947), 29, + ACTIONS(6509), 4, sym__start_of_brace_block, - sym__start_of_index_operator, sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8417), 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, - [239945] = 5, + [245883] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5950), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6231), 8, + ACTIONS(6520), 1, anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8200), 1, anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(6229), 29, - sym__start_of_brace_block, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 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(8230), 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(6042), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8214), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [239997] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5951), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6540), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6538), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6518), 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, - [240049] = 5, + anon_sym_then, + [245967] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5952), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6237), 8, + ACTIONS(8192), 1, anon_sym_DOT_DOT, + ACTIONS(8194), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8200), 1, anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(6235), 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, + ACTIONS(8216), 1, anon_sym_QMARK, + ACTIONS(8218), 1, anon_sym_AMP_AMP, + ACTIONS(8220), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [240101] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5953), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(6043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6239), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6083), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [246055] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8192), 1, + anon_sym_DOT_DOT, + ACTIONS(8194), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 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(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8216), 1, anon_sym_QMARK, + ACTIONS(8218), 1, anon_sym_AMP_AMP, + ACTIONS(8220), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [240153] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5954), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(6044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6243), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6085), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 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, - [240205] = 23, + [246143] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, + ACTIONS(8192), 1, anon_sym_DOT_DOT, - ACTIONS(8266), 1, + ACTIONS(8194), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(8200), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8202), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8206), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(8288), 1, + ACTIONS(8216), 1, anon_sym_QMARK, - ACTIONS(8290), 1, + ACTIONS(8218), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8220), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8230), 1, sym_binary_ampersand, - STATE(5955), 1, + STATE(6045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8214), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(8198), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6247), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, + ACTIONS(6095), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_do, - ACTIONS(8280), 4, + anon_sym_then, + ACTIONS(8208), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8228), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [240293] = 5, + [246231] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5956), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(6046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8228), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6249), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6125), 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, @@ -566006,42 +573890,45 @@ 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, - [240345] = 5, + anon_sym_then, + [246293] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5957), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(6047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6129), 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, @@ -566053,42 +573940,45 @@ 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, - [240397] = 5, + anon_sym_then, + [246351] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5958), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(6048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6133), 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, @@ -566100,161 +573990,137 @@ 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, - [240449] = 5, + anon_sym_then, + [246409] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5959), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(6049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6261), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 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, - [240501] = 5, + anon_sym_then, + [246475] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5960), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6267), 8, + ACTIONS(6143), 1, anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8200), 1, anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(6265), 29, - sym__start_of_brace_block, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 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(8230), 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(6050), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8214), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [240553] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5961), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6271), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6269), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6141), 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, - [240605] = 5, + anon_sym_then, + [246559] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5962), 1, + STATE(6051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(5911), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -566263,10 +574129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 29, - sym__start_of_brace_block, + ACTIONS(5909), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -566289,88 +574153,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [240657] = 5, + [246611] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5963), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(6052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6277), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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_do, - [240709] = 5, + anon_sym_then, + [246679] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5964), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(6053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6281), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 18, + sym__line_break, + sym_binary_ampersand, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -566382,269 +574262,324 @@ 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, - [240761] = 5, + anon_sym_then, + [246743] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5965), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6287), 8, - anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8200), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(6285), 29, - sym__start_of_brace_block, + ACTIONS(8224), 1, sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(6054), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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_do, - [240813] = 5, + anon_sym_then, + [246815] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5966), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(6055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6289), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6171), 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_do, - [240865] = 5, + anon_sym_then, + [246895] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5967), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(6056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6165), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6175), 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, - [240917] = 6, + [246977] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8689), 1, - sym_regex_modifier, - STATE(5968), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(6057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5797), 27, - sym__start_of_index_operator, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6361), 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_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [240971] = 21, + anon_sym_then, + [247061] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, + ACTIONS(8192), 1, anon_sym_DOT_DOT, - ACTIONS(7121), 1, + ACTIONS(8194), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8361), 1, + ACTIONS(8200), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(8202), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(8206), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(8379), 1, + ACTIONS(8216), 1, + anon_sym_QMARK, + ACTIONS(8218), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, + ACTIONS(8220), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, sym_binary_ampersand, - STATE(5969), 1, + STATE(6058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8214), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(8198), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, + ACTIONS(6459), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(8208), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8228), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6107), 6, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - anon_sym_do, - [241055] = 6, + [247149] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(983), 1, - anon_sym_EQ, - STATE(5970), 1, + ACTIONS(8037), 1, + anon_sym_COLON, + STATE(6059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -566687,148 +574622,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [241109] = 23, + [247203] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, + ACTIONS(8192), 1, anon_sym_DOT_DOT, - ACTIONS(8357), 1, + ACTIONS(8194), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(8202), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(8206), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(8377), 1, + ACTIONS(8216), 1, anon_sym_QMARK, - ACTIONS(8379), 1, + ACTIONS(8218), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, + ACTIONS(8220), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, sym_binary_ampersand, - STATE(5971), 1, + STATE(6060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8214), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(8198), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6309), 4, - sym__start_of_brace_block, + ACTIONS(6491), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8369), 4, + anon_sym_then, + ACTIONS(8208), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8228), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [241197] = 23, + [247291] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, + ACTIONS(8192), 1, anon_sym_DOT_DOT, - ACTIONS(8357), 1, + ACTIONS(8194), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(8202), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(8206), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(8377), 1, + ACTIONS(8216), 1, anon_sym_QMARK, - ACTIONS(8379), 1, + ACTIONS(8218), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, + ACTIONS(8220), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, sym_binary_ampersand, - STATE(5972), 1, + STATE(6061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8210), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8214), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(8198), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6311), 4, - sym__start_of_brace_block, + ACTIONS(6373), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8369), 4, + anon_sym_then, + ACTIONS(8208), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8228), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [241285] = 6, + [247379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8691), 1, - anon_sym_of, - STATE(5973), 1, + STATE(6062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 9, - anon_sym_RBRACK, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -566837,8 +574769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 27, + ACTIONS(6433), 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, @@ -566862,213 +574796,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, - [241339] = 23, + anon_sym_do, + [247431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(5974), 1, + STATE(6063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(6099), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6506), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + anon_sym_AMP_STAR, + ACTIONS(6097), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [241427] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 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(8379), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(5975), 1, + anon_sym_then, + [247483] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(6099), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6508), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + anon_sym_AMP_STAR, + ACTIONS(6097), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [241515] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(5976), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8365), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5934), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [241603] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [247535] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5977), 1, + STATE(6065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -567077,7 +574910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 29, + ACTIONS(6101), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -567107,28 +574940,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [241655] = 7, + [247587] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(5978), 1, + STATE(6066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6107), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 28, + ACTIONS(6105), 29, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -567156,28 +574987,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [241711] = 7, + [247639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(5979), 1, + STATE(6067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(6111), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 28, + ACTIONS(6109), 29, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -567205,80 +575034,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [241767] = 23, + [247691] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8189), 1, - anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(5980), 1, + STATE(6068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(6115), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6506), 4, + anon_sym_AMP_STAR, + ACTIONS(6113), 29, sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [241855] = 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, + [247743] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5981), 1, + STATE(6069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -567287,7 +575098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6324), 29, + ACTIONS(6117), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -567317,26 +575128,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [241907] = 5, + [247795] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5982), 1, + STATE(6070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 10, - anon_sym_RBRACK, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 27, + ACTIONS(6121), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -567348,6 +575158,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, @@ -567361,303 +575172,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [241959] = 21, + anon_sym_then, + [247847] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, + ACTIONS(8383), 1, anon_sym_DOT_DOT, - ACTIONS(8193), 1, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8197), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8199), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8203), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(8209), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8215), 1, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(8217), 1, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8227), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - STATE(5983), 1, + STATE(6071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8207), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8205), 4, + ACTIONS(6227), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6332), 6, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_then, - [242043] = 23, + [247935] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8189), 1, + ACTIONS(8383), 1, anon_sym_DOT_DOT, - ACTIONS(8191), 1, + ACTIONS(8385), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8197), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8199), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8203), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(8209), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8213), 1, + ACTIONS(8407), 1, anon_sym_QMARK, - ACTIONS(8215), 1, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(8217), 1, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8227), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - STATE(5984), 1, + STATE(6072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8207), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6459), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(6261), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, + anon_sym_do, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [242131] = 23, + [248023] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8189), 1, + STATE(6073), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6185), 8, anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, anon_sym_DOT, - ACTIONS(8197), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, anon_sym_EQ_EQ, - ACTIONS(8209), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, + ACTIONS(6183), 29, + sym__line_break, sym__start_of_index_operator, - ACTIONS(8227), 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(5985), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8201), 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(8207), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [248075] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6074), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6185), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6461), 4, + anon_sym_AMP_STAR, + ACTIONS(6183), 29, sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [242219] = 23, + 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, + [248127] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8189), 1, + ACTIONS(8383), 1, anon_sym_DOT_DOT, - ACTIONS(8191), 1, + ACTIONS(8385), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8197), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8199), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8203), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(8209), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8213), 1, + ACTIONS(8407), 1, anon_sym_QMARK, - ACTIONS(8215), 1, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(8217), 1, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8227), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - STATE(5986), 1, + STATE(6075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8207), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6469), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(5970), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, + anon_sym_do, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [242307] = 10, + [248215] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(5987), 1, + STATE(6076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8225), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6185), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 22, + anon_sym_AMP_STAR, + ACTIONS(6183), 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, @@ -567670,40 +575506,37 @@ 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, - [242369] = 8, + [248267] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(5988), 1, + STATE(6077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6185), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 26, + ACTIONS(6183), 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, @@ -567720,40 +575553,37 @@ 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, - [242427] = 8, + [248319] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(5989), 1, + STATE(6078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6189), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 26, + ACTIONS(6187), 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, @@ -567770,73 +575600,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_then, - [242485] = 12, + [248371] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(5990), 1, + STATE(6079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8223), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8225), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(6189), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 16, + anon_sym_AMP_STAR, + ACTIONS(6187), 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, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_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, - [242551] = 5, + [248423] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5991), 1, + STATE(6080), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -567845,7 +575669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 29, + ACTIONS(6187), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -567875,220 +575699,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [242603] = 21, + [248475] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(5992), 1, + STATE(6081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(6189), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(6187), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 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_then, - [242687] = 17, + [248527] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(5993), 1, + STATE(6082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(6193), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(6191), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 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, - [242763] = 13, + [248579] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(5994), 1, + STATE(6083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8223), 4, + ACTIONS(6197), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6195), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5963), 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, - [242831] = 11, + [248631] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(5995), 1, + STATE(6084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8223), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8225), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5969), 6, + ACTIONS(6201), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 18, + anon_sym_AMP_STAR, + ACTIONS(6199), 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, @@ -568101,199 +575882,114 @@ 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, - [242895] = 15, + [248683] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(5996), 1, + STATE(6085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8223), 4, + ACTIONS(6205), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6203), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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, - [242967] = 19, + [248735] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(5997), 1, + STATE(6086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(6209), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(6207), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 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, - [243047] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(5998), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8201), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8207), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8223), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8225), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5979), 7, - sym__line_break, - 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_then, - [243129] = 5, + [248787] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5999), 1, + STATE(6087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -568302,7 +575998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 29, + ACTIONS(6211), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -568332,80 +576028,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [243181] = 23, + [248839] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8189), 1, - anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(6000), 1, + STATE(6088), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(6217), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6508), 4, + anon_sym_AMP_STAR, + ACTIONS(6215), 29, sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [243269] = 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, + [248891] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6001), 1, + STATE(6089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -568414,10 +576092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 29, - sym__start_of_brace_block, + ACTIONS(6219), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -568428,6 +576105,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, @@ -568443,274 +576121,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [243321] = 23, + anon_sym_then, + [248943] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8189), 1, - anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(6002), 1, + STATE(6090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(4859), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(4861), 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, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(8693), 4, - sym__line_break, - anon_sym_SEMI, anon_sym_COMMA, - anon_sym_then, - [243409] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(6003), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8201), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8207), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8223), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8225), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6107), 6, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_then, - [243493] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8189), 1, - anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8213), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8215), 1, anon_sym_AMP_AMP, - ACTIONS(8217), 1, anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(6004), 1, + [248995] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(6225), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6205), 4, + anon_sym_AMP_STAR, + ACTIONS(6223), 29, sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [243581] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8189), 1, - anon_sym_DOT_DOT, - ACTIONS(8191), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(6005), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8201), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8207), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6247), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8223), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8225), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [243669] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [249047] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6006), 1, + STATE(6092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -568719,7 +576233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 29, + ACTIONS(6237), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -568749,15 +576263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [243721] = 5, + [249099] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6007), 1, + STATE(6093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -568766,10 +576280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 29, - sym__start_of_brace_block, + ACTIONS(6179), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -568780,6 +576293,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, @@ -568795,16 +576309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [243773] = 5, + anon_sym_then, + [249151] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6008), 1, + STATE(6094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -568813,7 +576327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 29, + ACTIONS(5698), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -568843,15 +576357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [243825] = 5, + [249203] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6009), 1, + STATE(6095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -568860,7 +576374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 29, + ACTIONS(6389), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -568890,15 +576404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [243877] = 5, + [249255] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6010), 1, + STATE(6096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -568907,7 +576421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 29, + ACTIONS(6389), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -568937,15 +576451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [243929] = 5, + [249307] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6011), 1, + STATE(6097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -568954,7 +576468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 29, + ACTIONS(6397), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -568984,15 +576498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [243981] = 5, + [249359] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6012), 1, + STATE(6098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(6415), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569001,7 +576515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 29, + ACTIONS(6413), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -569031,15 +576545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [244033] = 5, + [249411] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6013), 1, + STATE(6099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569048,9 +576562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 29, - sym__line_break, + ACTIONS(5719), 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, @@ -569061,7 +576576,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, @@ -569077,16 +576591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244085] = 5, + anon_sym_do, + [249463] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6014), 1, + STATE(6100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569095,7 +576609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(145), 29, + ACTIONS(6417), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -569125,15 +576639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [244137] = 5, + [249515] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6015), 1, + STATE(6101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569142,7 +576656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 29, + ACTIONS(6421), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -569172,15 +576686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [244189] = 5, + [249567] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6016), 1, + STATE(6102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569189,7 +576703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 29, + ACTIONS(6425), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -569219,15 +576733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [244241] = 5, + [249619] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6017), 1, + STATE(6103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569236,7 +576750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 29, + ACTIONS(173), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -569266,78 +576780,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [244293] = 21, + [249671] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, + STATE(6104), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6077), 8, anon_sym_DOT_DOT, - ACTIONS(7121), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8361), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8379), 1, + ACTIONS(6075), 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, - ACTIONS(8381), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(6018), 1, + anon_sym_do, + [249723] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(6081), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6079), 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, - ACTIONS(8371), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [249775] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6106), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6181), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + anon_sym_AMP_STAR, + ACTIONS(6179), 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(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 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, - [244377] = 5, + [249827] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6019), 1, + STATE(6107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569346,9 +576938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 29, - sym__line_break, + ACTIONS(6233), 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, @@ -569359,7 +576952,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, @@ -569375,16 +576967,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244429] = 5, + anon_sym_do, + [249879] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6020), 1, + STATE(6108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569393,9 +576985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, - sym__line_break, + 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, @@ -569406,7 +576999,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, @@ -569422,81 +577014,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244481] = 23, + anon_sym_do, + [249931] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(7123), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8355), 1, + STATE(6109), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8377), 1, + ACTIONS(6245), 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, + 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(8379), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, anon_sym_PIPE_PIPE, + anon_sym_do, + [249987] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, sym_binary_ampersand, - STATE(6021), 1, + STATE(6110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6205), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8369), 4, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [244569] = 5, + ACTIONS(6253), 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, + [250071] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6022), 1, + STATE(6111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(6265), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569505,7 +577144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 29, + ACTIONS(6263), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -569535,18 +577174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [244621] = 6, + [250123] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7846), 1, - anon_sym_LPAREN2, - STATE(6023), 1, + STATE(6112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, - anon_sym_RBRACK, + ACTIONS(6273), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569555,8 +577191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(6271), 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, @@ -569580,18 +577218,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, - [244675] = 5, + anon_sym_do, + [250175] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6024), 1, + STATE(6113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6277), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569600,9 +577238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, - sym__line_break, + ACTIONS(6275), 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, @@ -569613,7 +577252,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, @@ -569629,16 +577267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244727] = 5, + anon_sym_do, + [250227] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6025), 1, + STATE(6114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569647,9 +577285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, - sym__line_break, + ACTIONS(145), 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, @@ -569660,7 +577299,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, @@ -569676,16 +577314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244779] = 5, + anon_sym_do, + [250279] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6026), 1, + STATE(6115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569694,7 +577332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 29, + ACTIONS(6279), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -569724,15 +577362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [244831] = 5, + [250331] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6027), 1, + STATE(6116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(6285), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569741,9 +577379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 29, - sym__line_break, + ACTIONS(6283), 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, @@ -569754,7 +577393,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, @@ -569770,16 +577408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244883] = 5, + anon_sym_do, + [250383] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6028), 1, + STATE(6117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569788,7 +577426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 29, + ACTIONS(6309), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -569818,15 +577456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [244935] = 5, + [250435] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6029), 1, + STATE(6118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569835,7 +577473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 29, + ACTIONS(6313), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -569865,15 +577503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [244987] = 5, + [250487] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6030), 1, + STATE(6119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -569882,9 +577520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, - sym__line_break, + 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, @@ -569895,7 +577534,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, @@ -569911,27 +577549,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245039] = 5, + anon_sym_do, + [250539] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6031), 1, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8413), 1, + sym__start_of_index_operator, + STATE(6120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6301), 28, + sym__start_of_brace_block, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -569942,7 +577583,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, @@ -569958,92 +577598,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245091] = 23, + anon_sym_do, + [250595] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(7123), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(6032), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6247), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [245179] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6033), 1, + STATE(6121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(6307), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6305), 28, + sym__start_of_brace_block, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -570054,7 +577632,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, @@ -570070,16 +577647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245231] = 5, + anon_sym_do, + [250651] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6034), 1, + STATE(6122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570088,9 +577665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, - sym__line_break, + ACTIONS(6085), 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, @@ -570101,7 +577679,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, @@ -570117,79 +577694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245283] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(6035), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6332), 6, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, anon_sym_do, - [245367] = 5, + [250703] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6036), 1, + STATE(6123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570198,9 +577712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 29, - sym__line_break, + ACTIONS(6353), 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, @@ -570211,7 +577726,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, @@ -570227,16 +577741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245419] = 5, + anon_sym_do, + [250755] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6037), 1, + STATE(6124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570245,9 +577759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 29, - sym__line_break, + ACTIONS(5698), 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, @@ -570258,7 +577773,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, @@ -570274,16 +577788,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245471] = 5, + anon_sym_do, + [250807] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6038), 1, + STATE(6125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570292,9 +577806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 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, @@ -570305,7 +577820,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, @@ -570321,16 +577835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245523] = 5, + anon_sym_do, + [250859] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6039), 1, + STATE(6126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570339,9 +577853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 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, @@ -570352,7 +577867,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, @@ -570368,16 +577882,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245575] = 5, + anon_sym_do, + [250911] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6040), 1, + STATE(6127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570386,9 +577900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 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, @@ -570399,7 +577914,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, @@ -570415,19 +577929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245627] = 6, + anon_sym_do, + [250963] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8695), 1, - sym_regex_modifier, - STATE(6041), 1, + STATE(6128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 9, - anon_sym_RBRACK, + ACTIONS(6415), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570436,8 +577947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 27, + ACTIONS(6413), 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, @@ -570461,28 +577974,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [245681] = 5, + anon_sym_do, + [251015] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6042), 1, + STATE(6129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 9, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4861), 28, + ACTIONS(6417), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -570497,7 +578010,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, @@ -570511,15 +578023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [245733] = 5, + anon_sym_do, + [251067] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6043), 1, + STATE(6130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570528,9 +578041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 29, - sym__line_break, + ACTIONS(6421), 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, @@ -570541,7 +578055,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, @@ -570557,16 +578070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245785] = 5, + anon_sym_do, + [251119] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6044), 1, + STATE(6131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6427), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570575,9 +578088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 29, - sym__line_break, + ACTIONS(6425), 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, @@ -570588,7 +578102,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, @@ -570604,16 +578117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245837] = 5, + anon_sym_do, + [251171] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6045), 1, + STATE(6132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570622,7 +578135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 29, + ACTIONS(6317), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -570652,15 +578165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [245889] = 5, + [251223] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6046), 1, + STATE(6133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570669,9 +578182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 29, - sym__line_break, + 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, @@ -570682,7 +578196,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, @@ -570698,16 +578211,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245941] = 5, + anon_sym_do, + [251275] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6047), 1, + STATE(6134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570716,9 +578229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 29, - sym__line_break, + 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, @@ -570729,7 +578243,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, @@ -570745,84 +578258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245993] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8697), 1, - anon_sym_RBRACE, - ACTIONS(8699), 1, - anon_sym_COMMA, - STATE(6048), 1, - sym_heredoc_body, - STATE(10137), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [246087] = 5, + anon_sym_do, + [251327] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6049), 1, + STATE(6135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570831,9 +578276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 29, - sym__line_break, + ACTIONS(6437), 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, @@ -570844,7 +578290,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, @@ -570860,16 +578305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246139] = 5, + anon_sym_do, + [251379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6050), 1, + STATE(6136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570878,9 +578323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 29, - sym__line_break, + ACTIONS(6437), 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, @@ -570891,7 +578337,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, @@ -570907,16 +578352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246191] = 5, + anon_sym_do, + [251431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6051), 1, + STATE(6137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570925,10 +578370,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 29, - sym__start_of_brace_block, + ACTIONS(5694), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -570939,6 +578383,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, @@ -570954,16 +578399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [246243] = 5, + anon_sym_then, + [251483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6052), 1, + STATE(6138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -570972,9 +578417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 29, - sym__line_break, + ACTIONS(5715), 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, @@ -570985,7 +578431,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, @@ -571001,16 +578446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246295] = 5, + anon_sym_do, + [251535] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6053), 1, + STATE(6139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571019,9 +578464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 29, - sym__line_break, + ACTIONS(5715), 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, @@ -571032,7 +578478,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, @@ -571048,16 +578493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246347] = 5, + anon_sym_do, + [251587] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6054), 1, + STATE(6140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571066,9 +578511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5991), 29, - sym__line_break, + ACTIONS(6469), 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, @@ -571079,7 +578525,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, @@ -571095,16 +578540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246399] = 5, + anon_sym_do, + [251639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6055), 1, + STATE(6141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571113,9 +578558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 29, - sym__line_break, + ACTIONS(6469), 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, @@ -571126,7 +578572,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, @@ -571142,16 +578587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246451] = 5, + anon_sym_do, + [251691] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6056), 1, + STATE(6142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571160,9 +578605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 29, - sym__line_break, + ACTIONS(6485), 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, @@ -571173,7 +578619,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, @@ -571189,16 +578634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246503] = 5, + anon_sym_do, + [251743] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6057), 1, + STATE(6143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(6516), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571207,9 +578652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 29, - sym__line_break, + ACTIONS(6514), 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, @@ -571220,7 +578666,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, @@ -571236,132 +578681,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246555] = 5, + anon_sym_do, + [251795] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6058), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8389), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6435), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8417), 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(6518), 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_then, - [246607] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8701), 1, - anon_sym_RPAREN, - STATE(6059), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11164), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [246703] = 5, + anon_sym_do, + [251879] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6060), 1, + STATE(6145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571370,7 +578762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 29, + ACTIONS(5832), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -571400,15 +578792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [246755] = 5, + [251931] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6061), 1, + STATE(6146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571417,9 +578809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 29, - sym__line_break, + ACTIONS(6529), 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, @@ -571430,7 +578823,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, @@ -571446,16 +578838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246807] = 5, + anon_sym_do, + [251983] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6062), 1, + STATE(6147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6535), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571464,9 +578856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 29, - sym__line_break, + ACTIONS(6533), 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, @@ -571477,7 +578870,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, @@ -571493,16 +578885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246859] = 5, + anon_sym_do, + [252035] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6063), 1, + STATE(6148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, + ACTIONS(6539), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571511,9 +578903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 29, - sym__line_break, + ACTIONS(6537), 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, @@ -571524,7 +578917,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, @@ -571540,84 +578932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246911] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(6064), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(8703), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [246999] = 6, + anon_sym_do, + [252087] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8705), 1, - anon_sym_of, - STATE(6065), 1, + STATE(6149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 9, - anon_sym_RBRACK, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571626,8 +578950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 27, + ACTIONS(5838), 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, @@ -571651,18 +578977,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, - [247053] = 5, + anon_sym_do, + [252139] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6066), 1, + STATE(6150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571671,7 +578997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 29, + ACTIONS(5694), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -571701,15 +579027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247105] = 5, + [252191] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6067), 1, + STATE(6151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6543), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571718,9 +579044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 29, - sym__line_break, + ACTIONS(6541), 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, @@ -571731,7 +579058,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, @@ -571747,17 +579073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [247157] = 5, + anon_sym_do, + [252243] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6068), 1, + STATE(6152), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4624), 9, - anon_sym_RBRACK, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571766,8 +579091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4622), 28, + ACTIONS(6545), 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, @@ -571778,7 +579105,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -571792,18 +579118,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, - [247209] = 5, + anon_sym_do, + [252295] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6069), 1, + STATE(6153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571812,9 +579138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 29, - sym__line_break, + ACTIONS(6549), 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, @@ -571825,7 +579152,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, @@ -571841,16 +579167,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [247261] = 5, + anon_sym_do, + [252347] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6070), 1, + STATE(6154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571859,7 +579185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 29, + ACTIONS(6553), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -571872,7 +579199,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, @@ -571885,19 +579211,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, - [247313] = 5, + anon_sym_do, + [252399] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6071), 1, + STATE(6155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571906,9 +579232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 29, - sym__line_break, + ACTIONS(6561), 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, @@ -571919,7 +579246,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, @@ -571935,16 +579261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [247365] = 5, + anon_sym_do, + [252451] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6072), 1, + STATE(6156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -571953,9 +579279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 29, - sym__line_break, + ACTIONS(6522), 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, @@ -571966,7 +579293,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, @@ -571982,63 +579308,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [247417] = 5, + anon_sym_do, + [252503] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6073), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + ACTIONS(8701), 1, + anon_sym_RBRACE, + ACTIONS(8819), 1, + anon_sym_COMMA, + STATE(6157), 1, sym_heredoc_body, + STATE(10141), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + [252597] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6158), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6083), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [252685] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, anon_sym_QMARK, + ACTIONS(8409), 1, anon_sym_AMP_AMP, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - anon_sym_then, - [247469] = 5, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6159), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6085), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [252773] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6074), 1, + STATE(6160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572047,7 +579524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 29, + ACTIONS(6522), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -572077,15 +579554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247521] = 5, + [252825] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6075), 1, + STATE(6161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572094,7 +579571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 29, + ACTIONS(6321), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -572124,15 +579601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247573] = 5, + [252877] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6076), 1, + STATE(6162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572141,7 +579618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 29, + ACTIONS(6325), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -572171,15 +579648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247625] = 5, + [252929] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6077), 1, + STATE(6163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572188,9 +579665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 29, - sym__line_break, + ACTIONS(6091), 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, @@ -572201,7 +579679,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, @@ -572217,146 +579694,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [247677] = 23, + anon_sym_do, + [252981] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, + ACTIONS(8383), 1, anon_sym_DOT_DOT, - ACTIONS(8266), 1, + ACTIONS(8385), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8272), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8274), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8278), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(8284), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8288), 1, + ACTIONS(8407), 1, anon_sym_QMARK, - ACTIONS(8290), 1, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8300), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - STATE(6078), 1, + STATE(6164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6309), 4, + ACTIONS(6095), 4, sym__start_of_brace_block, sym__end_of_with_expression, anon_sym_COMMA, anon_sym_do, - ACTIONS(8280), 4, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [247765] = 23, + [253069] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(6079), 1, + STATE(6165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(6327), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6311), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, + anon_sym_AMP_STAR, + ACTIONS(6325), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [247853] = 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, + [253121] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6080), 1, + STATE(6166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572365,9 +579824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 29, - sym__line_break, + ACTIONS(6097), 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, @@ -572378,7 +579838,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, @@ -572394,19 +579853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [247905] = 6, + anon_sym_do, + [253173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8707), 1, - sym_regex_modifier, - STATE(6081), 1, + STATE(6167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 9, - anon_sym_RBRACK, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572415,8 +579871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 27, + ACTIONS(6097), 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, @@ -572440,32 +579898,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, - [247959] = 7, + anon_sym_do, + [253225] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8709), 1, - anon_sym_LPAREN, - ACTIONS(8711), 1, - anon_sym_DOT, - STATE(6082), 1, + STATE(6168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, - anon_sym_RBRACK, + ACTIONS(6103), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 27, + ACTIONS(6101), 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, @@ -572489,21 +579945,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, - [248015] = 6, + anon_sym_do, + [253277] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8709), 1, - anon_sym_LPAREN, - STATE(6083), 1, + STATE(6169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 9, - anon_sym_RBRACK, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572512,8 +579965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 27, + ACTIONS(6105), 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, @@ -572537,21 +579992,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, - [248069] = 6, + anon_sym_do, + [253329] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8713), 1, - anon_sym_LPAREN, - STATE(6084), 1, + STATE(6170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 9, - anon_sym_RBRACK, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572560,8 +580012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 27, + ACTIONS(6109), 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, @@ -572585,155 +580039,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, - [248123] = 26, + anon_sym_do, + [253381] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8697), 1, - anon_sym_RBRACE, - ACTIONS(8715), 1, - anon_sym_COMMA, - STATE(6085), 1, + STATE(6171), 1, sym_heredoc_body, - STATE(10041), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(6331), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6329), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [248217] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8717), 1, - anon_sym_RPAREN, - STATE(6086), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(12176), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [248313] = 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, + [253433] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6087), 1, + STATE(6172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572742,9 +580106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 29, - sym__line_break, + ACTIONS(6113), 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, @@ -572755,7 +580120,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, @@ -572771,19 +580135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [248365] = 6, + anon_sym_do, + [253485] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8719), 1, - anon_sym_of, - STATE(6088), 1, + STATE(6173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 9, - anon_sym_RBRACK, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572792,8 +580153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 27, + ACTIONS(6117), 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, @@ -572817,18 +580180,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, - [248419] = 5, + anon_sym_do, + [253537] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6089), 1, + STATE(6174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572837,9 +580200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 29, - sym__line_break, + ACTIONS(6121), 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, @@ -572850,7 +580214,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, @@ -572866,38 +580229,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [248471] = 5, + anon_sym_do, + [253589] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6090), 1, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8413), 1, + sym__start_of_index_operator, + STATE(6175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6075), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6125), 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_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -572909,20 +580278,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_then, - [248523] = 5, + anon_sym_do, + [253651] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6091), 1, + STATE(6176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -572931,7 +580299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 29, + ACTIONS(6333), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -572961,37 +580329,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [248575] = 5, + [253703] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6092), 1, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8413), 1, + sym__start_of_index_operator, + STATE(6177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6129), 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, @@ -573003,42 +580375,45 @@ 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, - [248627] = 5, + anon_sym_do, + [253761] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6093), 1, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8413), 1, + sym__start_of_index_operator, + STATE(6178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6133), 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, @@ -573050,115 +580425,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_then, - [248679] = 6, + anon_sym_do, + [253819] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8721), 1, - anon_sym_LPAREN, - STATE(6094), 1, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8413), 1, + sym__start_of_index_operator, + STATE(6179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5825), 27, - sym__start_of_index_operator, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8417), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 16, + sym__start_of_brace_block, + 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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [248733] = 5, + anon_sym_do, + [253885] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6095), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, + anon_sym_AMP_STAR, + ACTIONS(8218), 1, + anon_sym_AMP_AMP, + ACTIONS(8220), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, + sym_binary_ampersand, + STATE(6180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8204), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8210), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8214), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8198), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6372), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8228), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6253), 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, - [248785] = 5, + anon_sym_then, + [253969] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6096), 1, + STATE(6181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573167,7 +580563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 29, + ACTIONS(6337), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -573197,15 +580593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [248837] = 5, + [254021] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6097), 1, + STATE(6182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573214,10 +580610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 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, @@ -573228,6 +580623,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, @@ -573243,16 +580639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [248889] = 5, + anon_sym_then, + [254073] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6098), 1, + STATE(6183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573261,7 +580657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 29, + ACTIONS(6345), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -573291,15 +580687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [248941] = 5, + [254125] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6099), 1, + STATE(6184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573308,7 +580704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 29, + ACTIONS(6349), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -573338,15 +580734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [248993] = 5, + [254177] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6100), 1, + STATE(6185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573355,7 +580751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 29, + ACTIONS(6357), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -573385,16 +580781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [249045] = 5, + [254229] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6101), 1, + STATE(6186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 9, - anon_sym_RBRACK, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573403,7 +580798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 28, + ACTIONS(6233), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -573415,6 +580811,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, @@ -573427,20 +580824,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, - [249097] = 5, + anon_sym_then, + [254281] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6102), 1, + STATE(6187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573449,7 +580845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 29, + ACTIONS(6241), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -573479,26 +580875,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [249149] = 5, + [254333] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6103), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(6188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6223), 29, + ACTIONS(6245), 28, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -573526,131 +580924,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [249201] = 5, + [254389] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6104), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8389), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5947), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8417), 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(6141), 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, + [254473] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6190), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8399), 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(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 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_then, - [249253] = 5, + anon_sym_do, + [254549] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6105), 1, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6229), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8417), 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(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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, - [249305] = 5, + anon_sym_do, + [254617] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6106), 1, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8413), 1, + sym__start_of_index_operator, + STATE(6192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6474), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8417), 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(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 18, + sym__start_of_brace_block, + sym__end_of_with_expression, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -573662,171 +581150,154 @@ 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, - [249357] = 26, + anon_sym_do, + [254681] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5737), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(5860), 1, - anon_sym_RBRACK, - ACTIONS(8606), 1, - anon_sym_COMMA, - ACTIONS(8608), 1, - anon_sym_DOT_DOT, - ACTIONS(8610), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, - anon_sym_QMARK, - ACTIONS(8634), 1, - anon_sym_AMP_AMP, - ACTIONS(8636), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - STATE(6107), 1, + STATE(6193), 1, sym_heredoc_body, - STATE(6148), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8620), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8624), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [249451] = 26, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 14, + sym__start_of_brace_block, + 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, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [254753] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8608), 1, + ACTIONS(6173), 1, anon_sym_DOT_DOT, - ACTIONS(8610), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, - anon_sym_QMARK, - ACTIONS(8634), 1, - anon_sym_AMP_AMP, - ACTIONS(8636), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - ACTIONS(8723), 1, - anon_sym_COMMA, - ACTIONS(8725), 1, - anon_sym_RBRACK, - ACTIONS(8727), 1, - anon_sym_RBRACK_QMARK, - STATE(6108), 1, + STATE(6194), 1, sym_heredoc_body, - STATE(9783), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8620), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [249545] = 7, + ACTIONS(6171), 8, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [254833] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8606), 1, - anon_sym_COMMA, - STATE(6109), 1, + ACTIONS(8821), 1, + anon_sym_DOT, + ACTIONS(8823), 1, + anon_sym_EQ, + ACTIONS(8825), 1, + sym__start_of_index_operator, + STATE(6195), 1, sym_heredoc_body, - STATE(6148), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(6361), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 9, - anon_sym_RBRACK, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 26, - sym__start_of_index_operator, + ACTIONS(5719), 26, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -573837,6 +581308,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, @@ -573849,18 +581321,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, - [249601] = 5, + [254893] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6110), 1, + STATE(6196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573869,10 +581340,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 29, - sym__start_of_brace_block, + ACTIONS(6375), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -573883,6 +581353,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, @@ -573898,16 +581369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [249653] = 5, + anon_sym_then, + [254945] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6111), 1, + STATE(6197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573916,10 +581387,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 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, @@ -573930,6 +581400,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, @@ -573945,16 +581416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [249705] = 5, + anon_sym_then, + [254997] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6112), 1, + STATE(6198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -573963,7 +581434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 29, + ACTIONS(6385), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -573993,83 +581464,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [249757] = 26, + [255049] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6177), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8729), 1, - anon_sym_RBRACE, - ACTIONS(8731), 1, - anon_sym_COMMA, - STATE(6113), 1, + STATE(6199), 1, sym_heredoc_body, - STATE(10526), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [249851] = 5, + ACTIONS(6175), 7, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_do, + [255131] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6114), 1, + STATE(6200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574078,7 +581543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 29, + ACTIONS(6393), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -574108,15 +581573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [249903] = 5, + [255183] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6115), 1, + STATE(6201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574125,9 +581590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 29, - sym__line_break, + ACTIONS(6183), 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, @@ -574138,7 +581604,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, @@ -574154,16 +581619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [249955] = 5, + anon_sym_do, + [255235] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6116), 1, + STATE(6202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574172,9 +581637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 29, - sym__line_break, + ACTIONS(6183), 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, @@ -574185,7 +581651,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, @@ -574201,16 +581666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [250007] = 5, + anon_sym_do, + [255287] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6117), 1, + STATE(6203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574219,9 +581684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 29, - sym__line_break, + ACTIONS(6183), 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, @@ -574232,7 +581698,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, @@ -574248,16 +581713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [250059] = 5, + anon_sym_do, + [255339] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6118), 1, + STATE(6204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574266,9 +581731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 29, - sym__line_break, + ACTIONS(6183), 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, @@ -574279,7 +581745,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, @@ -574295,81 +581760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [250111] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(6119), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6459), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, anon_sym_do, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [250199] = 5, + [255391] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6120), 1, + STATE(6205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574378,9 +581778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 29, - sym__line_break, + ACTIONS(6187), 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, @@ -574391,7 +581792,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, @@ -574407,16 +581807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [250251] = 5, + anon_sym_do, + [255443] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6121), 1, + STATE(6206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574425,9 +581825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 29, - sym__line_break, + ACTIONS(6187), 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, @@ -574438,7 +581839,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, @@ -574454,81 +581854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [250303] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(6122), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6461), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, anon_sym_do, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [250391] = 5, + [255495] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6123), 1, + STATE(6207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574537,7 +581872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 29, + ACTIONS(6187), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -574567,80 +581902,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250443] = 23, + [255547] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(6124), 1, + STATE(6208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, + ACTIONS(6189), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6506), 4, + anon_sym_AMP_STAR, + ACTIONS(6187), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8298), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [250531] = 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, + [255599] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6125), 1, + STATE(6209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(6193), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574649,9 +581966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6478), 29, - sym__line_break, + ACTIONS(6191), 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, @@ -574662,7 +581980,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, @@ -574678,150 +581995,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [250583] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, - anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(6126), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8276), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8282), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6508), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, anon_sym_do, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [250671] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8733), 1, - anon_sym_RPAREN, - STATE(6127), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11767), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [250767] = 5, + [255651] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6128), 1, + STATE(6210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574830,9 +582013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 29, - sym__line_break, + 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, @@ -574843,7 +582027,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, @@ -574859,19 +582042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [250819] = 6, + anon_sym_do, + [255703] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8735), 1, - anon_sym_EQ, - STATE(6129), 1, + STATE(6211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 9, - anon_sym_RBRACK, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574880,8 +582060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 27, + ACTIONS(6199), 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, @@ -574905,81 +582087,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, - [250873] = 21, + anon_sym_do, + [255755] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(6130), 1, + STATE(6212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(6205), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(6203), 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(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6403), 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_then, - [250957] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [255807] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6131), 1, + STATE(6213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -574988,9 +582154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 29, - sym__line_break, + 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, @@ -575001,7 +582168,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, @@ -575017,16 +582183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251009] = 5, + anon_sym_do, + [255859] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6132), 1, + STATE(6214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, + ACTIONS(6209), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575035,9 +582201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6243), 29, - sym__line_break, + ACTIONS(6207), 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, @@ -575048,7 +582215,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, @@ -575064,16 +582230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251061] = 5, + anon_sym_do, + [255911] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6133), 1, + STATE(6215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(6213), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575082,9 +582248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 29, - sym__line_break, + ACTIONS(6211), 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, @@ -575095,7 +582262,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, @@ -575111,16 +582277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251113] = 5, + anon_sym_do, + [255963] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6134), 1, + STATE(6216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575129,9 +582295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 29, - sym__line_break, + ACTIONS(6215), 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, @@ -575142,7 +582309,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, @@ -575158,147 +582324,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251165] = 23, + anon_sym_do, + [256015] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8189), 1, - anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8197), 1, - anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, - anon_sym_EQ_EQ, - ACTIONS(8209), 1, - anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8227), 1, - sym_binary_ampersand, - STATE(6135), 1, + STATE(6217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8201), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8207), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + ACTIONS(6221), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5934), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(6219), 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(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [251253] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8264), 1, - anon_sym_DOT_DOT, - ACTIONS(8266), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8268), 1, - anon_sym_DOT, - ACTIONS(8272), 1, - anon_sym_PIPE, - ACTIONS(8274), 1, anon_sym_CARET, - ACTIONS(8278), 1, - anon_sym_EQ_EQ, - ACTIONS(8284), 1, - anon_sym_AMP_STAR, - ACTIONS(8288), 1, - anon_sym_QMARK, - ACTIONS(8290), 1, - anon_sym_AMP_AMP, - ACTIONS(8292), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8294), 1, - sym__start_of_index_operator, - ACTIONS(8300), 1, - sym_binary_ampersand, - STATE(6136), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8276), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8282), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8286), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8270), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5934), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(8280), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8296), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8298), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [251341] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [256067] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6137), 1, + STATE(6218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 9, - anon_sym_RBRACK, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575307,8 +582389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 28, + ACTIONS(6223), 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, @@ -575331,20 +582415,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, - [251393] = 5, + anon_sym_do, + [256119] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6138), 1, + STATE(6219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575353,9 +582436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 29, - sym__line_break, + 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, @@ -575366,7 +582450,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, @@ -575382,16 +582465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251445] = 5, + anon_sym_do, + [256171] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6139), 1, + STATE(6220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575400,7 +582483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 29, + ACTIONS(6437), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -575430,15 +582513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [251497] = 5, + [256223] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6140), 1, + STATE(6221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575447,7 +582530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 29, + ACTIONS(6437), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -575477,15 +582560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [251549] = 5, + [256275] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6141), 1, + STATE(6222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575494,9 +582577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 29, - sym__line_break, + ACTIONS(5970), 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, @@ -575507,7 +582591,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, @@ -575523,16 +582606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251601] = 5, + anon_sym_do, + [256327] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6142), 1, + STATE(6223), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575541,7 +582624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 29, + ACTIONS(6369), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575554,7 +582638,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, @@ -575567,22 +582650,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, - [251653] = 6, + anon_sym_do, + [256379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8737), 1, - anon_sym_of, - STATE(6143), 1, + STATE(6224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 9, - anon_sym_RBRACK, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575591,8 +582671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 27, + ACTIONS(6309), 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, @@ -575616,23 +582698,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, - [251707] = 7, + anon_sym_do, + [256431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8606), 1, - anon_sym_COMMA, - STATE(6144), 1, + STATE(6225), 1, sym_heredoc_body, - STATE(6200), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 9, - anon_sym_RBRACK, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575641,8 +582718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 26, + ACTIONS(6313), 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, @@ -575653,6 +582732,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, @@ -575665,21 +582745,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, - [251763] = 6, + anon_sym_do, + [256483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8087), 1, - anon_sym_COLON, - STATE(6145), 1, + STATE(6226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, - anon_sym_RBRACK, + ACTIONS(6265), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575688,7 +582765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(6263), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -575700,6 +582778,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, @@ -575713,18 +582792,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, - [251817] = 5, + anon_sym_then, + [256535] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6146), 1, + STATE(6227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575733,7 +582812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 29, + ACTIONS(6317), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -575763,15 +582842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [251869] = 5, + [256587] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6147), 1, + STATE(6228), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575780,9 +582859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 29, - sym__line_break, + ACTIONS(6321), 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, @@ -575793,7 +582873,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, @@ -575809,21 +582888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251921] = 7, + anon_sym_do, + [256639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8606), 1, - anon_sym_COMMA, - STATE(5836), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6148), 1, + STATE(6229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 9, - anon_sym_RBRACK, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575832,8 +582906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 26, + ACTIONS(6325), 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, @@ -575844,6 +582920,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, @@ -575856,101 +582933,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [251977] = 26, + anon_sym_do, + [256691] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8739), 1, - anon_sym_RBRACE, - ACTIONS(8741), 1, - anon_sym_COMMA, - STATE(6149), 1, + STATE(6230), 1, sym_heredoc_body, - STATE(10579), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(6327), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6325), 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(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [252071] = 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [256743] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8743), 1, - anon_sym_DOT, - ACTIONS(8745), 1, - sym__start_of_index_operator, - STATE(6150), 1, + STATE(6231), 1, sym_heredoc_body, - STATE(6301), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, - anon_sym_RBRACK, + ACTIONS(6331), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 26, + ACTIONS(6329), 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, @@ -575974,18 +583027,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, - [252129] = 5, + anon_sym_do, + [256795] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6151), 1, + STATE(6232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -575994,9 +583047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 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, @@ -576007,7 +583061,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, @@ -576023,88 +583076,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [252181] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8747), 1, - anon_sym_RPAREN, - STATE(6152), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11494), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [252277] = 6, + anon_sym_do, + [256847] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8749), 1, - anon_sym_of, - STATE(6153), 1, + STATE(6233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 9, - anon_sym_RBRACK, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576113,8 +583094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 27, + ACTIONS(6337), 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, @@ -576138,18 +583121,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, - [252331] = 5, + anon_sym_do, + [256899] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6154), 1, + STATE(6234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576158,9 +583141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 29, - sym__line_break, + 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, @@ -576171,7 +583155,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, @@ -576187,16 +583170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [252383] = 5, + anon_sym_do, + [256951] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6155), 1, + STATE(6235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576205,9 +583188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 29, - sym__line_break, + ACTIONS(6345), 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, @@ -576218,7 +583202,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, @@ -576234,16 +583217,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [252435] = 5, + anon_sym_do, + [257003] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6156), 1, + STATE(6236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576252,9 +583235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 29, - sym__line_break, + ACTIONS(6349), 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, @@ -576265,7 +583249,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, @@ -576281,73 +583264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [252487] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, - anon_sym_COLON_COLON, - ACTIONS(8315), 1, - sym__start_of_tuple_type, - ACTIONS(8317), 1, - sym__start_of_named_tuple_type, - ACTIONS(8751), 1, - anon_sym_LPAREN, - ACTIONS(8753), 1, - anon_sym_DASH_GT, - STATE(6157), 1, - sym_heredoc_body, - STATE(7889), 1, - sym_constant, - STATE(7978), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8313), 2, - sym_self, - sym_underscore_type, - STATE(7926), 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(4628), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [252559] = 5, + anon_sym_do, + [257055] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6158), 1, + STATE(6237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576356,9 +583282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 29, - sym__line_break, + 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, @@ -576369,7 +583296,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, @@ -576385,328 +583311,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [252611] = 26, + anon_sym_do, + [257107] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6363), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8755), 1, - anon_sym_RBRACE, - ACTIONS(8757), 1, - anon_sym_COMMA, - STATE(6159), 1, + STATE(6238), 1, sym_heredoc_body, - STATE(10115), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [252705] = 15, + ACTIONS(6361), 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, + [257191] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, - anon_sym_COLON_COLON, - ACTIONS(8315), 1, - sym__start_of_tuple_type, - ACTIONS(8317), 1, - sym__start_of_named_tuple_type, - ACTIONS(8751), 1, - anon_sym_LPAREN, - ACTIONS(8753), 1, - anon_sym_DASH_GT, - STATE(6160), 1, + STATE(6239), 1, sym_heredoc_body, - STATE(7889), 1, - sym_constant, - STATE(8000), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, - sym_self, - sym_underscore_type, - STATE(7926), 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(4656), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [252777] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8189), 1, + ACTIONS(6377), 8, anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, anon_sym_DOT, - ACTIONS(8197), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, anon_sym_EQ_EQ, - ACTIONS(8209), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, + ACTIONS(6375), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(8227), 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(6161), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8201), 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(8207), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [257243] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6240), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6383), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6309), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + ACTIONS(6381), 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(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [252865] = 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_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [257295] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, - anon_sym_COLON_COLON, - ACTIONS(8315), 1, - sym__start_of_tuple_type, - ACTIONS(8317), 1, - sym__start_of_named_tuple_type, - ACTIONS(8751), 1, - anon_sym_LPAREN, - ACTIONS(8753), 1, - anon_sym_DASH_GT, - STATE(6162), 1, + STATE(6241), 1, sym_heredoc_body, - STATE(7889), 1, - sym_constant, - STATE(7970), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, - sym_self, - sym_underscore_type, - STATE(7926), 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(4678), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [252937] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8189), 1, + ACTIONS(5717), 8, anon_sym_DOT_DOT, - ACTIONS(8191), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8193), 1, anon_sym_DOT, - ACTIONS(8197), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8199), 1, - anon_sym_CARET, - ACTIONS(8203), 1, anon_sym_EQ_EQ, - ACTIONS(8209), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8213), 1, - anon_sym_QMARK, - ACTIONS(8215), 1, - anon_sym_AMP_AMP, - ACTIONS(8217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8221), 1, + ACTIONS(5715), 29, + sym__line_break, sym__start_of_index_operator, - ACTIONS(8227), 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(6163), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8201), 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(8207), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8211), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8195), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [257347] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6242), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6387), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6311), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(8205), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8223), 4, + anon_sym_AMP_STAR, + 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, sym_binary_wrapping_minus, - ACTIONS(8225), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [253025] = 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, + [257399] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6164), 1, + STATE(6243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576715,9 +583580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 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, @@ -576728,7 +583594,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, @@ -576744,81 +583609,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253077] = 23, + anon_sym_do, + [257451] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8355), 1, - anon_sym_DOT_DOT, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8377), 1, - anon_sym_QMARK, - ACTIONS(8379), 1, - anon_sym_AMP_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(6165), 1, + STATE(6244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8371), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(6403), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6469), 4, + anon_sym_AMP_STAR, + ACTIONS(6401), 29, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 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(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [253165] = 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, + [257503] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6166), 1, + STATE(6245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576827,9 +583674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 29, - sym__line_break, + ACTIONS(6405), 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, @@ -576840,7 +583688,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, @@ -576856,16 +583703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253217] = 5, + anon_sym_do, + [257555] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6167), 1, + STATE(6246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576874,9 +583721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 29, - sym__line_break, + ACTIONS(6409), 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, @@ -576887,7 +583735,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, @@ -576903,16 +583750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253269] = 5, + anon_sym_do, + [257607] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6168), 1, + STATE(6247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(6273), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576921,7 +583768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 29, + ACTIONS(6271), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -576951,15 +583798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [253321] = 5, + [257659] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6169), 1, + STATE(6248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6431), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -576968,9 +583815,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 29, - sym__line_break, + ACTIONS(6429), 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, @@ -576981,7 +583829,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, @@ -576997,27 +583844,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253373] = 5, + anon_sym_do, + [257711] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6170), 1, + ACTIONS(7323), 1, + sym__start_of_index_operator, + ACTIONS(8827), 1, + anon_sym_DOT, + ACTIONS(8829), 1, + anon_sym_EQ, + STATE(4013), 1, + sym__implicit_index_operator, + STATE(6249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(5719), 26, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -577028,7 +583880,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, @@ -577044,16 +583895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253425] = 5, + anon_sym_COLON2, + [257771] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6171), 1, + STATE(6250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577062,7 +583913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 29, + ACTIONS(6401), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -577092,15 +583943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [253477] = 5, + [257823] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6172), 1, + STATE(6251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577109,7 +583960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 29, + ACTIONS(6405), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -577139,15 +583990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [253529] = 5, + [257875] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6173), 1, + STATE(6252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577156,7 +584007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 29, + ACTIONS(6409), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -577186,42 +584037,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [253581] = 10, + [257927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - STATE(6174), 1, + STATE(6253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6431), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 22, - sym__start_of_brace_block, + anon_sym_AMP_STAR, + ACTIONS(6429), 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, @@ -577233,88 +584079,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, - [253643] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8759), 1, - anon_sym_RBRACE, - ACTIONS(8761), 1, - anon_sym_COMMA, - STATE(6175), 1, - sym_heredoc_body, - STATE(10155), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [253737] = 5, + anon_sym_then, + [257979] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6176), 1, + STATE(6254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577323,7 +584101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 29, + ACTIONS(5715), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -577353,36 +584131,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [253789] = 8, + [258031] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - STATE(6177), 1, + STATE(6255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6443), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 26, + ACTIONS(6441), 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, @@ -577398,20 +584173,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, - [253847] = 5, + [258083] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6178), 1, + STATE(6256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577420,9 +584195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 29, - sym__line_break, + ACTIONS(6449), 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, @@ -577433,7 +584209,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, @@ -577449,85 +584224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253899] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8763), 1, - anon_sym_RPAREN, - STATE(6179), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(10902), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [253995] = 5, + anon_sym_do, + [258135] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6180), 1, + STATE(6257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577536,9 +584242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 29, - sym__line_break, + ACTIONS(6453), 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, @@ -577549,7 +584256,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, @@ -577565,16 +584271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254047] = 5, + anon_sym_do, + [258187] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6181), 1, + STATE(6258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577583,7 +584289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 29, + ACTIONS(6441), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -577613,15 +584319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [254099] = 5, + [258239] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6182), 1, + STATE(6259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577630,7 +584336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 29, + ACTIONS(6469), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -577660,15 +584366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [254151] = 5, + [258291] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6183), 1, + STATE(6260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577677,7 +584383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 29, + ACTIONS(6449), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -577707,83 +584413,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [254203] = 26, + [258343] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8383), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8385), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8407), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8413), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8419), 1, sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8765), 1, - anon_sym_RBRACE, - ACTIONS(8767), 1, - anon_sym_COMMA, - STATE(6184), 1, + STATE(6261), 1, sym_heredoc_body, - STATE(10128), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(6459), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [254297] = 5, + [258431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6185), 1, + STATE(6262), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6463), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6461), 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, + [258483] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577792,7 +584542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 29, + ACTIONS(6465), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -577822,15 +584572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [254349] = 5, + [258535] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6186), 1, + STATE(6264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6475), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577839,9 +584589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 29, - sym__line_break, + ACTIONS(6473), 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, @@ -577852,7 +584603,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, @@ -577868,16 +584618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254401] = 5, + anon_sym_do, + [258587] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6187), 1, + STATE(6265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(6479), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577886,9 +584636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 29, - sym__line_break, + ACTIONS(6477), 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, @@ -577899,7 +584650,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, @@ -577915,16 +584665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254453] = 5, + anon_sym_do, + [258639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6188), 1, + STATE(6266), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6483), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577933,9 +584683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 29, - sym__line_break, + ACTIONS(6481), 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, @@ -577946,7 +584697,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, @@ -577962,16 +584712,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254505] = 5, + anon_sym_do, + [258691] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6189), 1, + ACTIONS(8383), 1, + anon_sym_DOT_DOT, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, + anon_sym_DOT, + ACTIONS(8391), 1, + anon_sym_PIPE, + ACTIONS(8393), 1, + anon_sym_CARET, + ACTIONS(8397), 1, + anon_sym_EQ_EQ, + ACTIONS(8403), 1, + anon_sym_AMP_STAR, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, + anon_sym_AMP_AMP, + ACTIONS(8411), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, + sym_binary_ampersand, + STATE(6267), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8395), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8401), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8405), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8389), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6491), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8399), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8415), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8417), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [258779] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -577980,9 +584795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6149), 29, - sym__line_break, + ACTIONS(6493), 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, @@ -577993,7 +584809,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, @@ -578009,16 +584824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254557] = 5, + anon_sym_do, + [258831] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6190), 1, + STATE(6269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578027,9 +584842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 29, - sym__line_break, + ACTIONS(6497), 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, @@ -578040,7 +584856,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, @@ -578056,37 +584871,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254609] = 8, + anon_sym_do, + [258883] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - STATE(6191), 1, + STATE(6270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6503), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 26, + ACTIONS(6501), 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, @@ -578102,20 +584914,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, - [254667] = 5, + [258935] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6192), 1, + STATE(6271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578124,9 +584936,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 29, - sym__line_break, + ACTIONS(6505), 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, @@ -578137,7 +584950,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, @@ -578153,84 +584965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254719] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - ACTIONS(8769), 1, - anon_sym_RBRACE, - ACTIONS(8771), 1, - anon_sym_COMMA, - STATE(6193), 1, - sym_heredoc_body, - STATE(10316), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [254813] = 5, + anon_sym_do, + [258987] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6194), 1, + STATE(6272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578239,9 +584983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 29, - sym__line_break, + ACTIONS(6565), 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, @@ -578252,7 +584997,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, @@ -578268,16 +585012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254865] = 5, + anon_sym_do, + [259039] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6195), 1, + STATE(6273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578286,7 +585030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 29, + ACTIONS(6469), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -578316,138 +585060,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [254917] = 12, + [259091] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - STATE(6196), 1, + STATE(6274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8383), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8385), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(6231), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 16, + anon_sym_AMP_STAR, + ACTIONS(6229), 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_COLON2, anon_sym_do, - [254983] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(8773), 1, - anon_sym_RPAREN, - STATE(6197), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11229), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [255079] = 5, + [259143] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6198), 1, + STATE(6275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578456,9 +585124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 29, - sym__line_break, + ACTIONS(6267), 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, @@ -578469,7 +585138,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, @@ -578485,84 +585153,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [255131] = 21, + anon_sym_do, + [259195] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(8383), 1, anon_sym_DOT_DOT, - ACTIONS(7121), 1, + ACTIONS(8385), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8387), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8361), 1, + ACTIONS(8391), 1, anon_sym_PIPE, - ACTIONS(8363), 1, + ACTIONS(8393), 1, anon_sym_CARET, - ACTIONS(8367), 1, + ACTIONS(8397), 1, anon_sym_EQ_EQ, - ACTIONS(8373), 1, + ACTIONS(8403), 1, anon_sym_AMP_STAR, - ACTIONS(8379), 1, + ACTIONS(8407), 1, + anon_sym_QMARK, + ACTIONS(8409), 1, anon_sym_AMP_AMP, - ACTIONS(8381), 1, + ACTIONS(8411), 1, anon_sym_PIPE_PIPE, - ACTIONS(8387), 1, + ACTIONS(8413), 1, + sym__start_of_index_operator, + ACTIONS(8419), 1, sym_binary_ampersand, - STATE(6199), 1, + STATE(6276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(8395), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8371), 2, + ACTIONS(8401), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8375), 2, + ACTIONS(8405), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8359), 3, + ACTIONS(8389), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, + ACTIONS(6373), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8399), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + ACTIONS(8415), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8417), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5951), 6, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - anon_sym_do, - [255215] = 7, + [259283] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8606), 1, - anon_sym_COMMA, - STATE(5836), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6200), 1, + STATE(6277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 9, - anon_sym_RBRACK, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578571,8 +585236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 26, + ACTIONS(6257), 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, @@ -578583,6 +585250,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, @@ -578595,18 +585263,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, - [255271] = 5, + anon_sym_do, + [259335] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6201), 1, + STATE(6278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578615,9 +585283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6305), 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, @@ -578628,7 +585297,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, @@ -578644,75 +585312,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [255323] = 17, + anon_sym_do, + [259387] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8361), 1, - anon_sym_PIPE, - ACTIONS(8363), 1, - anon_sym_CARET, - ACTIONS(8367), 1, - anon_sym_EQ_EQ, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - ACTIONS(8387), 1, - sym_binary_ampersand, - STATE(6202), 1, + STATE(6279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(6559), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8369), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8383), 4, + anon_sym_AMP_STAR, + ACTIONS(6557), 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(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 10, - 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, - [255399] = 5, + [259439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6203), 1, + STATE(6280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578721,7 +585377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 29, + ACTIONS(6249), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -578751,15 +585407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [255451] = 5, + [259491] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6204), 1, + STATE(6281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578768,7 +585424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 29, + ACTIONS(6445), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -578798,15 +585454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [255503] = 5, + [259543] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6205), 1, + STATE(6282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -578815,10 +585471,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 29, - sym__start_of_brace_block, + ACTIONS(6485), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -578829,6 +585484,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, @@ -578844,119 +585500,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [255555] = 13, + anon_sym_then, + [259595] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8373), 1, + ACTIONS(8200), 1, + anon_sym_PIPE, + ACTIONS(8202), 1, + anon_sym_CARET, + ACTIONS(8206), 1, + anon_sym_EQ_EQ, + ACTIONS(8212), 1, anon_sym_AMP_STAR, - ACTIONS(8387), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8230), 1, sym_binary_ampersand, - STATE(6206), 1, + STATE(6283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8365), 2, + ACTIONS(8204), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8375), 2, + ACTIONS(8214), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8383), 4, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8208), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8226), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, + ACTIONS(8228), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5963), 15, - sym__start_of_brace_block, + ACTIONS(6145), 10, + 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_COLON2, - anon_sym_do, - [255623] = 27, + anon_sym_then, + [259671] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(8775), 1, - anon_sym_RPAREN, - STATE(6207), 1, + STATE(6284), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11417), 1, + STATE(11371), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -578969,43 +585627,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [255719] = 11, + [259764] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7121), 1, - anon_sym_DOT, - ACTIONS(7123), 1, - sym__start_of_index_operator, - ACTIONS(8373), 1, - anon_sym_AMP_STAR, - STATE(6208), 1, + STATE(6285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8375), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8383), 4, + ACTIONS(6359), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6357), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8385), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 18, - sym__start_of_brace_block, - sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -579017,20 +585668,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_COLON2, - anon_sym_do, - [255783] = 5, + [259815] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6209), 1, + STATE(6286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6377), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -579039,10 +585691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 29, - sym__start_of_brace_block, + ACTIONS(6375), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -579066,18 +585716,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, - [255835] = 5, + [259866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6210), 1, + STATE(6287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(5168), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -579086,10 +585736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 29, - sym__start_of_brace_block, + ACTIONS(5170), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -579100,6 +585748,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, @@ -579115,81 +585764,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [255887] = 24, + anon_sym_COLON2, + [259917] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(508), 1, + STATE(255), 1, sym__terminator, - STATE(6211), 1, + STATE(6288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [255976] = 5, + [260006] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6212), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8853), 1, + anon_sym_QMARK, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(308), 1, + sym__terminator, + STATE(6289), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8845), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8859), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [260095] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 9, + ACTIONS(6383), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -579199,7 +585913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 27, + ACTIONS(6381), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -579227,75 +585941,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256027] = 19, + [260146] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, - anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6213), 1, + STATE(6291), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5977), 2, + ACTIONS(6387), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8626), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + anon_sym_AMP_STAR, + ACTIONS(6385), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 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, - [256106] = 5, + [260197] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6214), 1, + STATE(6292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 9, + ACTIONS(6395), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -579305,7 +586005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 27, + ACTIONS(6393), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -579333,83 +586033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256157] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8811), 1, - anon_sym_RPAREN, - ACTIONS(8813), 1, - anon_sym_COMMA, - STATE(6215), 1, - sym_heredoc_body, - STATE(10549), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [256248] = 6, + [260248] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8815), 1, - sym_regex_modifier, - STATE(6216), 1, + STATE(6293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6403), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -579418,9 +586051,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 27, + ACTIONS(6401), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -579444,148 +586076,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, - [256301] = 25, + [260299] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(8817), 1, - anon_sym_COMMA, - ACTIONS(8819), 1, - anon_sym_RBRACK, - STATE(6217), 1, + STATE(526), 1, + sym__terminator, + STATE(6294), 1, sym_heredoc_body, - STATE(10562), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [256392] = 24, + [260388] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8608), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8610), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8634), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(8823), 1, - anon_sym_RBRACK, - STATE(6218), 1, + STATE(531), 1, + sym__terminator, + STATE(6295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8620), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8821), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8614), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [256481] = 5, + [260477] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6219), 1, + STATE(6296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 9, + ACTIONS(6407), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -579595,7 +586227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 27, + ACTIONS(6405), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -579623,17 +586255,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256532] = 6, + [260528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8825), 1, - anon_sym_LPAREN, - STATE(6220), 1, + STATE(6297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5829), 8, + ACTIONS(6411), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -579642,9 +586273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5825), 27, + ACTIONS(6409), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -579668,148 +586298,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256585] = 25, + [260579] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + STATE(6298), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5164), 8, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, anon_sym_DOT, - ACTIONS(7396), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(5166), 28, sym__start_of_index_operator, - ACTIONS(7424), 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(8827), 1, - anon_sym_RPAREN, - ACTIONS(8829), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + sym__string_literal_start, anon_sym_COMMA, - STATE(6221), 1, - sym_heredoc_body, - STATE(10386), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [260630] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6299), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6431), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + anon_sym_AMP_STAR, + ACTIONS(6429), 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(7420), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [260681] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6300), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(10977), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [260774] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6301), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(10979), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [260867] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6302), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11224), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [260960] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6303), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6443), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6441), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [256676] = 9, + 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, + [261011] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8831), 1, - sym_identifier, - ACTIONS(8833), 1, - anon_sym_LBRACK, - STATE(1975), 1, - sym__operator_token, - STATE(6222), 1, + STATE(6304), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8835), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7886), 10, + ACTIONS(6451), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_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(7888), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6449), 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_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, - [256735] = 8, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [261062] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8456), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - anon_sym_DOT, - STATE(6013), 1, - sym__implicit_index_operator, - STATE(6223), 1, + STATE(6305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(6455), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 26, - sym__line_break, + ACTIONS(6453), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -579820,7 +586716,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, @@ -579833,84 +586729,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256792] = 25, + [261113] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(5856), 1, + sym__end_of_with_expression, + ACTIONS(8865), 1, + anon_sym_COMMA, + ACTIONS(8867), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8869), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8891), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8893), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8903), 1, sym_binary_ampersand, - ACTIONS(8839), 1, - anon_sym_COMMA, - ACTIONS(8841), 1, - anon_sym_RBRACK, - STATE(6224), 1, + STATE(6306), 1, sym_heredoc_body, - STATE(10110), 1, - aux_sym_array_repeat1, + STATE(6354), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [256883] = 5, + [261204] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6225), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 9, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8634), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8636), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6151), 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(6149), 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, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [261271] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6308), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -579919,8 +586869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 27, + ACTIONS(6035), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -579943,19 +586894,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, - [256934] = 5, + [261322] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6226), 1, + STATE(6309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 9, + ACTIONS(6467), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -579965,7 +586916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 27, + ACTIONS(6465), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -579993,15 +586944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256985] = 5, + [261373] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6227), 1, + STATE(6310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 9, + ACTIONS(6475), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -580011,7 +586962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 27, + ACTIONS(6473), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580039,17 +586990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257036] = 6, + [261424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8067), 1, - anon_sym_LPAREN2, - STATE(6228), 1, + STATE(6311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6479), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -580058,9 +587008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(6477), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -580084,17 +587033,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, - [257089] = 5, + [261475] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6229), 1, + STATE(6312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 9, + ACTIONS(6483), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -580104,7 +587054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6059), 27, + ACTIONS(6481), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580132,344 +587082,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257140] = 24, + [261526] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8825), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(296), 1, - sym__terminator, - STATE(6230), 1, + ACTIONS(8905), 1, + anon_sym_DOT, + ACTIONS(8907), 1, + anon_sym_EQ, + STATE(6313), 1, sym_heredoc_body, + STATE(6361), 1, + sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(5721), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(5719), 25, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [257229] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 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(7414), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8843), 1, - anon_sym_RPAREN, - ACTIONS(8845), 1, - anon_sym_COMMA, - STATE(6231), 1, + [261585] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6314), 1, sym_heredoc_body, - STATE(10602), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(6495), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6493), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [257320] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 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(7414), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8847), 1, - anon_sym_RPAREN, - ACTIONS(8849), 1, - anon_sym_COMMA, - STATE(6232), 1, + [261636] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6315), 1, sym_heredoc_body, - STATE(10603), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(6499), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6497), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [257411] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 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(7414), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8851), 1, - anon_sym_RPAREN, - ACTIONS(8853), 1, - anon_sym_COMMA, - STATE(6233), 1, + [261687] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6316), 1, sym_heredoc_body, - STATE(10234), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(6503), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6501), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [257502] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8855), 1, - anon_sym_RPAREN, - ACTIONS(8857), 1, - anon_sym_COMMA, - STATE(6234), 1, - sym_heredoc_body, - STATE(10254), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [257593] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [261738] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6235), 1, + STATE(6317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 9, + ACTIONS(6507), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -580479,7 +587288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 27, + ACTIONS(6505), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580507,15 +587316,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257644] = 5, + [261789] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6236), 1, + STATE(6318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 9, + ACTIONS(6567), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -580525,7 +587334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 27, + ACTIONS(6565), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580553,16 +587362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257695] = 5, + [261840] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6237), 1, + ACTIONS(8909), 1, + anon_sym_COMMA, + STATE(6319), 1, sym_heredoc_body, + STATE(6539), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 9, - anon_sym_RBRACK, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -580571,7 +587383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6173), 27, + ACTIONS(5888), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580583,7 +587395,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, @@ -580596,84 +587407,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, - [257746] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8859), 1, - anon_sym_RPAREN, - ACTIONS(8861), 1, - anon_sym_COMMA, - STATE(6238), 1, - sym_heredoc_body, - STATE(10397), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [257837] = 5, + anon_sym_COLON2, + [261895] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6239), 1, + STATE(6320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6105), 9, + ACTIONS(6259), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -580683,7 +587428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6103), 27, + ACTIONS(6257), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580711,15 +587456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257888] = 5, + [261946] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6240), 1, + STATE(6321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 9, + ACTIONS(6367), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -580729,7 +587474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 27, + ACTIONS(6365), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580757,15 +587502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257939] = 5, + [261997] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6241), 1, + STATE(6322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 9, + ACTIONS(6559), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -580775,7 +587520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 27, + ACTIONS(6557), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580803,15 +587548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257990] = 5, + [262048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6242), 1, + STATE(6323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6057), 9, + ACTIONS(6251), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -580821,7 +587566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6055), 27, + ACTIONS(6249), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -580849,17 +587594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258041] = 6, + [262099] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8863), 1, - anon_sym_of, - STATE(6243), 1, + STATE(6324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6447), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -580868,9 +587612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 27, + ACTIONS(6445), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -580894,19 +587637,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, - [258094] = 6, + [262150] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8865), 1, - anon_sym_of, - STATE(6244), 1, + STATE(6325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(6289), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -580915,9 +587658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 27, + ACTIONS(6287), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -580941,68 +587683,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, - [258147] = 6, + [262201] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8867), 1, - anon_sym_of, - STATE(6245), 1, + ACTIONS(8485), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6095), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5843), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [262290] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8853), 1, + anon_sym_QMARK, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(233), 1, + sym__terminator, + STATE(6327), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8845), 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, - [258200] = 7, + ACTIONS(8859), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [262379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8869), 1, - anon_sym_COMMA, - STATE(6246), 1, + STATE(6328), 1, sym_heredoc_body, - STATE(6452), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6299), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -581011,7 +587834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 26, + ACTIONS(6297), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -581023,6 +587846,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, @@ -581035,18 +587859,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_COLON2, - [258255] = 5, + [262430] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6247), 1, + STATE(6329), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 9, + ACTIONS(6077), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -581056,7 +587880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 27, + ACTIONS(6075), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -581084,129 +587908,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258306] = 25, + [262481] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5811), 1, - anon_sym_COLON2, - ACTIONS(7392), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8869), 1, - anon_sym_COMMA, - ACTIONS(8871), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8873), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8879), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8883), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8889), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8893), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8895), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8897), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6248), 1, + STATE(309), 1, + sym__terminator, + STATE(6330), 1, sym_heredoc_body, - STATE(6463), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8881), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8887), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8901), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258397] = 6, + [262570] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8905), 1, - anon_sym_of, - STATE(6249), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8632), 1, + sym__start_of_index_operator, + STATE(6331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8634), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8636), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 7, + anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + ACTIONS(6163), 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, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [262633] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(5843), 27, - sym__line_break, + ACTIONS(8632), 1, sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6332), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 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(6169), 6, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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, - [258450] = 5, + [262704] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6250), 1, + ACTIONS(8865), 1, + anon_sym_COMMA, + STATE(6333), 1, sym_heredoc_body, + STATE(6354), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -581215,8 +588102,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 27, + ACTIONS(5856), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -581227,7 +588115,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, @@ -581240,19 +588127,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, - [258501] = 5, + [262759] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6251), 1, + ACTIONS(8865), 1, + anon_sym_COMMA, + STATE(6334), 1, sym_heredoc_body, + STATE(6372), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -581261,8 +588150,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 27, + ACTIONS(5856), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -581273,7 +588163,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, @@ -581286,29 +588175,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, - [258552] = 5, + [262814] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6252), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8632), 1, + sym__start_of_index_operator, + STATE(6335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 9, + ACTIONS(6303), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 27, - sym__start_of_index_operator, + ACTIONS(6301), 26, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -581335,26 +588225,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258603] = 5, + [262869] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6253), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8911), 1, + anon_sym_RPAREN, + ACTIONS(8913), 1, + anon_sym_COMMA, + STATE(6336), 1, sym_heredoc_body, + STATE(10385), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 9, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [262960] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8632), 1, + sym__start_of_index_operator, + STATE(6337), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6307), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 27, - sym__start_of_index_operator, + ACTIONS(6305), 26, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -581381,82 +588339,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258654] = 24, + [263015] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8468), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, - anon_sym_DOT_DOT, - ACTIONS(8610), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(8610), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(8612), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, - anon_sym_QMARK, - ACTIONS(8634), 1, - anon_sym_AMP_AMP, - ACTIONS(8636), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, + ACTIONS(8632), 1, sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(8638), 1, sym_binary_ampersand, - STATE(6254), 1, + STATE(6338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6247), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, + ACTIONS(6173), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(8608), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(8618), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258743] = 6, + ACTIONS(6171), 6, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [263094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8248), 1, - anon_sym_COLON, - STATE(6255), 1, + STATE(6339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, + ACTIONS(4620), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -581465,9 +588416,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_COLON2, - ACTIONS(173), 26, + ACTIONS(4618), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -581478,6 +588429,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -581493,146 +588445,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258796] = 25, + [263145] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8610), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8612), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8628), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8632), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8638), 1, sym_binary_ampersand, - ACTIONS(8907), 1, - anon_sym_COMMA, - ACTIONS(8909), 1, - anon_sym_RBRACK, - STATE(6256), 1, + STATE(6340), 1, sym_heredoc_body, - STATE(10403), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(6177), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8608), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8618), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258887] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8474), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, - anon_sym_DOT_DOT, - ACTIONS(8610), 1, + ACTIONS(6175), 5, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, - anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8632), 1, anon_sym_QMARK, - ACTIONS(8634), 1, - anon_sym_AMP_AMP, - ACTIONS(8636), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6257), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6459), 2, - anon_sym_COMMA, anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8626), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8624), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8640), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8642), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [258976] = 5, + anon_sym_PIPE_PIPE, + [263226] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6258), 1, + STATE(6341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6295), 9, + ACTIONS(6093), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -581642,7 +588524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 27, + ACTIONS(6091), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -581670,15 +588552,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259027] = 5, + [263277] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6259), 1, + STATE(6342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5168), 8, + ACTIONS(6355), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -581687,7 +588570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5170), 28, + ACTIONS(6353), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -581699,7 +588582,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, @@ -581713,84 +588595,66 @@ static const uint16_t ts_small_parse_table[] = { 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, - [259078] = 25, + [263328] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8911), 1, - anon_sym_COMMA, - ACTIONS(8913), 1, - anon_sym_RBRACK, - STATE(6260), 1, + ACTIONS(8915), 1, + anon_sym_of, + STATE(6343), 1, sym_heredoc_body, - STATE(10329), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(5848), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(5844), 27, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [259169] = 5, + 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, + [263381] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6261), 1, + STATE(6344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5160), 8, + ACTIONS(6371), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -581799,7 +588663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5162), 28, + ACTIONS(6369), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -581811,7 +588675,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, @@ -581825,29 +588688,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_COLON2, - [259220] = 5, + [263432] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6262), 1, + STATE(6345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 9, - anon_sym_RBRACK, + ACTIONS(6019), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 27, + ACTIONS(6017), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -581871,18 +588735,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, - [259271] = 5, + [263483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6263), 1, + STATE(6346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 9, + ACTIONS(5700), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -581892,7 +588755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 27, + ACTIONS(5698), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -581920,15 +588783,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259322] = 5, + [263534] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6264), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6347), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11995), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [263627] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 9, + ACTIONS(6391), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -581938,7 +588868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 27, + ACTIONS(6389), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -581966,15 +588896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259373] = 5, + [263678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6265), 1, + STATE(6349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 9, + ACTIONS(6235), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -581984,7 +588914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 27, + ACTIONS(6233), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -582012,15 +588942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259424] = 5, + [263729] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6266), 1, + STATE(6350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 9, + ACTIONS(6391), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -582030,7 +588960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 27, + ACTIONS(6389), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -582058,15 +588988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259475] = 5, + [263780] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6267), 1, + STATE(6351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 9, + ACTIONS(6415), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -582076,7 +589006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 27, + ACTIONS(6413), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -582104,15 +589034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259526] = 5, + [263831] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6268), 1, + STATE(6352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 9, + ACTIONS(6419), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -582122,7 +589052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 27, + ACTIONS(6417), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -582150,15 +589080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259577] = 5, + [263882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6269), 1, + STATE(6353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 9, + ACTIONS(6423), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -582168,7 +589098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 27, + ACTIONS(6421), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -582196,16 +589126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259628] = 5, + [263933] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6270), 1, + ACTIONS(8865), 1, + anon_sym_COMMA, + STATE(6354), 1, sym_heredoc_body, + STATE(6372), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 9, - anon_sym_RBRACK, + ACTIONS(5892), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -582214,8 +589147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 27, + ACTIONS(5888), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582226,7 +589160,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, @@ -582239,94 +589172,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259679] = 24, + [263988] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6463), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, - anon_sym_DOT_DOT, - ACTIONS(8610), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, - anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8632), 1, - anon_sym_QMARK, - ACTIONS(8634), 1, - anon_sym_AMP_AMP, - ACTIONS(8636), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6271), 1, + ACTIONS(8909), 1, + anon_sym_COMMA, + STATE(6319), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6461), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8626), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(5860), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + anon_sym_AMP_STAR, + ACTIONS(5856), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [259768] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [264043] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6272), 1, + STATE(6356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 9, - anon_sym_RBRACK, + ACTIONS(6049), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 27, + ACTIONS(6047), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582350,29 +589266,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259819] = 5, + [264094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6273), 1, + STATE(6357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 9, - anon_sym_RBRACK, + ACTIONS(6053), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 27, + ACTIONS(6051), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582396,29 +589312,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259870] = 5, + [264145] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6274), 1, + STATE(6358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 9, - anon_sym_RBRACK, + ACTIONS(5953), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 27, + ACTIONS(5951), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582442,29 +589358,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259921] = 5, + [264196] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6275), 1, + STATE(6359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 9, - anon_sym_RBRACK, + ACTIONS(5927), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 27, + ACTIONS(5925), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582488,18 +589404,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, - [259972] = 5, + [264247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6276), 1, + STATE(6360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 9, + ACTIONS(6427), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -582509,7 +589424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 27, + ACTIONS(6425), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -582537,26 +589452,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260023] = 5, + [264298] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6277), 1, + STATE(6361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6524), 9, - anon_sym_RBRACK, + ACTIONS(6023), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 27, + ACTIONS(6021), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582580,19 +589496,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, - [260074] = 5, + [264349] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6278), 1, + ACTIONS(8909), 1, + anon_sym_COMMA, + STATE(6362), 1, sym_heredoc_body, + STATE(6539), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 9, - anon_sym_RBRACK, + ACTIONS(5860), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -582601,7 +589519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 27, + ACTIONS(5856), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -582613,7 +589531,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, @@ -582626,19 +589543,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, - [260125] = 5, + anon_sym_COLON2, + [264404] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6279), 1, + ACTIONS(8917), 1, + anon_sym_of, + STATE(6363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 9, - anon_sym_RBRACK, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -582647,8 +589565,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 27, + ACTIONS(5844), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582672,31 +589591,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, - [260176] = 7, + [264457] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8638), 1, - sym__start_of_index_operator, - STATE(6280), 1, + ACTIONS(8919), 1, + anon_sym_of, + STATE(6364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 8, - anon_sym_RBRACK, + ACTIONS(5748), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 26, + ACTIONS(5744), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582720,19 +589638,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, - [260231] = 5, + [264510] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6281), 1, + ACTIONS(8921), 1, + anon_sym_of, + STATE(6365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 9, - anon_sym_RBRACK, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -582741,8 +589659,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6395), 27, + ACTIONS(5981), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582766,19 +589685,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, - [260282] = 5, + [264563] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6282), 1, + ACTIONS(8291), 1, + anon_sym_COLON, + STATE(6366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6401), 9, - anon_sym_RBRACK, + ACTIONS(195), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -582787,7 +589706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6399), 27, + anon_sym_COLON2, + ACTIONS(173), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -582812,355 +589732,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260333] = 25, + [264616] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8915), 1, - anon_sym_RPAREN, - ACTIONS(8917), 1, - anon_sym_COMMA, - STATE(6283), 1, + STATE(6367), 1, sym_heredoc_body, - STATE(10368), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(5808), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(5806), 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(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [260424] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8919), 1, - anon_sym_COMMA, - ACTIONS(8921), 1, - anon_sym_RBRACK, - STATE(6284), 1, - sym_heredoc_body, - STATE(10228), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [260515] = 21, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [264667] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(8610), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(8612), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8634), 1, + ACTIONS(8628), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(8630), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, + ACTIONS(8632), 1, sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(8638), 1, sym_binary_ampersand, - STATE(6285), 1, + STATE(6368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6405), 2, + ACTIONS(6363), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8620), 2, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(8608), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6403), 4, + ACTIONS(6361), 4, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_RBRACK_QMARK, - ACTIONS(8624), 4, + ACTIONS(8618), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [260598] = 25, + [264750] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, ACTIONS(8923), 1, - anon_sym_RPAREN, - ACTIONS(8925), 1, - anon_sym_COMMA, - STATE(6286), 1, + sym_regex_modifier, + STATE(6369), 1, sym_heredoc_body, - STATE(10370), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(5834), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(5832), 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(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [260689] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(471), 1, - sym__terminator, - STATE(6287), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [260778] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [264803] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6288), 1, + STATE(6370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5004), 9, + ACTIONS(6269), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, - anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5006), 27, + ACTIONS(6267), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -583184,28 +589932,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260829] = 6, + [264854] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8927), 1, - sym_regex_modifier, - STATE(6289), 1, + STATE(6371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, + ACTIONS(5671), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 27, + ACTIONS(5669), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583233,345 +589981,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260882] = 25, + [264905] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5737), 1, - sym__end_of_with_expression, - ACTIONS(8929), 1, + ACTIONS(8925), 1, anon_sym_COMMA, - ACTIONS(8931), 1, - anon_sym_DOT_DOT, - ACTIONS(8933), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, - anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8955), 1, - anon_sym_QMARK, - ACTIONS(8957), 1, - anon_sym_AMP_AMP, - ACTIONS(8959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6290), 1, - sym_heredoc_body, - STATE(6593), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8963), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [260973] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, + STATE(6372), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, anon_sym_DOT, - ACTIONS(7396), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8969), 1, - anon_sym_COMMA, - ACTIONS(8971), 1, - anon_sym_RBRACK, - STATE(6291), 1, - sym_heredoc_body, - STATE(10481), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [261064] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(5970), 26, sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8973), 1, - anon_sym_COMMA, - ACTIONS(8975), 1, - anon_sym_RBRACK, - STATE(6292), 1, - sym_heredoc_body, - STATE(10232), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [261155] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8977), 1, - anon_sym_COMMA, - ACTIONS(8979), 1, - anon_sym_RBRACK, - STATE(6293), 1, - sym_heredoc_body, - STATE(10185), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [261246] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7414), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8981), 1, - anon_sym_COMMA, - ACTIONS(8983), 1, - anon_sym_RBRACK, - STATE(6294), 1, - sym_heredoc_body, - STATE(10690), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [261337] = 5, + [264958] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6295), 1, + STATE(6373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 9, + ACTIONS(6319), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -583581,7 +590046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 27, + ACTIONS(6317), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -583609,276 +590074,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [261388] = 25, + [265009] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8985), 1, - anon_sym_COMMA, - ACTIONS(8987), 1, - anon_sym_RBRACK, - STATE(6296), 1, + STATE(6374), 1, sym_heredoc_body, - STATE(10237), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(5820), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(5818), 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(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [261479] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8989), 1, - sym_identifier, - ACTIONS(8991), 1, - anon_sym_LBRACK, - STATE(1959), 1, - sym__operator_token, - STATE(6297), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8993), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7714), 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(7716), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + 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, - [261538] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8995), 1, - anon_sym_RPAREN, - ACTIONS(8997), 1, - anon_sym_COMMA, - STATE(6298), 1, - sym_heredoc_body, - STATE(10105), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [261629] = 25, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [265060] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(8999), 1, + ACTIONS(8928), 1, anon_sym_COMMA, - ACTIONS(9001), 1, + ACTIONS(8930), 1, anon_sym_RBRACK, - STATE(6299), 1, + STATE(6375), 1, sym_heredoc_body, - STATE(10250), 1, + STATE(10181), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [261720] = 6, + [265151] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9003), 1, - anon_sym_of, - STATE(6300), 1, + STATE(6376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(5820), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 27, - sym__line_break, + ACTIONS(5818), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -583889,7 +590217,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, @@ -583904,26 +590232,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [261773] = 5, + [265202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6301), 1, + STATE(6377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 9, - anon_sym_RBRACK, + ACTIONS(5824), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 27, + ACTIONS(5822), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -583947,1191 +590276,678 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [261824] = 9, + [265253] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_LBRACK, - STATE(1966), 1, - sym__operator_token, - STATE(6302), 1, + STATE(6378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9009), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7792), 10, + ACTIONS(6011), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7794), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6009), 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, - [261883] = 9, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [265304] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9007), 1, - anon_sym_LBRACK, - ACTIONS(9011), 1, - sym_identifier, - STATE(1966), 1, - sym__operator_token, - STATE(6303), 1, + STATE(6379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9009), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7792), 10, + ACTIONS(5020), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7794), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5022), 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, - [261942] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, anon_sym_QMARK, - ACTIONS(7414), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9013), 1, - anon_sym_COMMA, - ACTIONS(9015), 1, - anon_sym_RBRACK, - STATE(6304), 1, + [265355] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6380), 1, sym_heredoc_body, - STATE(10256), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(5945), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + 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, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262033] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 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(8801), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(252), 1, - sym__terminator, - STATE(6305), 1, + [265406] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8932), 1, + anon_sym_of, + STATE(6381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(5877), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(5873), 27, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262122] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 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(8801), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(293), 1, - sym__terminator, - STATE(6306), 1, + [265459] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8934), 1, + sym_identifier, + ACTIONS(8936), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym__operator_token, + STATE(6382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8938), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7752), 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(8791), 4, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(7754), 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(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [262211] = 24, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [265518] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8610), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8612), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8628), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8630), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, sym_binary_ampersand, - STATE(474), 1, - sym__terminator, - STATE(6307), 1, + STATE(6383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(6520), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8608), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(6518), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + ACTIONS(8618), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262300] = 24, + [265601] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(475), 1, - sym__terminator, - STATE(6308), 1, + STATE(6384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(5979), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(5977), 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(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262389] = 9, + 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, + [265652] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9017), 1, - sym_identifier, - ACTIONS(9019), 1, - anon_sym_LBRACK, - STATE(1973), 1, - sym__operator_token, - STATE(6309), 1, + STATE(6385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9021), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7780), 10, + ACTIONS(5989), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7782), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5987), 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, - [262448] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6310), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11259), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [262541] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6311), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11286), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [262634] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6312), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11777), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [262727] = 9, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [265703] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8989), 1, - sym_identifier, - ACTIONS(9023), 1, - anon_sym_LBRACK, - STATE(1959), 1, - sym__operator_token, - STATE(6313), 1, + STATE(6386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8993), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7714), 10, + ACTIONS(5989), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7716), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5987), 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, - [262786] = 9, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [265754] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9025), 1, - sym_identifier, - ACTIONS(9027), 1, - anon_sym_LBRACK, - STATE(1960), 1, - sym__operator_token, - STATE(6314), 1, + STATE(6387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9029), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7695), 10, + ACTIONS(5993), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7697), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5991), 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, - [262845] = 24, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [265805] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(231), 1, - sym__terminator, - STATE(6315), 1, + ACTIONS(8940), 1, + anon_sym_RPAREN, + ACTIONS(8942), 1, + anon_sym_COMMA, + STATE(6388), 1, sym_heredoc_body, + STATE(10233), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262934] = 24, + [265896] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(275), 1, - sym__terminator, - STATE(6316), 1, + ACTIONS(8944), 1, + anon_sym_of, + STATE(6389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(5748), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(5744), 27, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263023] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(498), 1, - sym__terminator, - STATE(6317), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [263112] = 24, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [265949] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(499), 1, - sym__terminator, - STATE(6318), 1, + ACTIONS(8946), 1, + anon_sym_RPAREN, + ACTIONS(8948), 1, + anon_sym_COMMA, + STATE(6390), 1, sym_heredoc_body, + STATE(10235), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263201] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6319), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(10901), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [263294] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6320), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(10916), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [263387] = 6, + [266040] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9031), 1, - anon_sym_of, - STATE(6321), 1, + STATE(6391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(5696), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -585140,8 +590956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 27, - sym__line_break, + ACTIONS(5694), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -585153,7 +590968,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, @@ -585166,447 +590981,427 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [263440] = 26, + [266091] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6322), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11943), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [263533] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(233), 1, - sym__terminator, - STATE(6323), 1, + ACTIONS(8950), 1, + anon_sym_RPAREN, + ACTIONS(8952), 1, + anon_sym_COMMA, + STATE(6392), 1, sym_heredoc_body, + STATE(10237), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263622] = 24, + [266182] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8358), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8604), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8612), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8626), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8628), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8630), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, sym_binary_ampersand, - STATE(273), 1, - sym__terminator, - STATE(6324), 1, + STATE(6393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(6489), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8608), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8618), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263711] = 5, + [266271] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6325), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5985), 9, + ACTIONS(8360), 1, anon_sym_RBRACK, + ACTIONS(8602), 1, anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8610), 1, anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(5983), 27, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 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(8638), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + STATE(6394), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6509), 2, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8618), 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, - [263762] = 24, + ACTIONS(8634), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8636), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [266360] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8602), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8604), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8612), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8626), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8628), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8630), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, sym_binary_ampersand, - STATE(503), 1, - sym__terminator, - STATE(6326), 1, + ACTIONS(8956), 1, + anon_sym_RBRACK, + STATE(6395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8954), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8608), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8618), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263851] = 24, + [266449] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(5750), 1, + anon_sym_COLON2, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8909), 1, + anon_sym_COMMA, + ACTIONS(8958), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8980), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8982), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(504), 1, - sym__terminator, - STATE(6327), 1, + STATE(6362), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6396), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263940] = 5, + [266540] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6328), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8992), 1, + anon_sym_COMMA, + ACTIONS(8994), 1, + anon_sym_RBRACK, + STATE(6397), 1, sym_heredoc_body, + STATE(10234), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [263991] = 5, + [266631] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6329), 1, + ACTIONS(7323), 1, + sym__start_of_index_operator, + ACTIONS(8996), 1, + anon_sym_DOT, + ACTIONS(8998), 1, + anon_sym_EQ, + STATE(4013), 1, + sym__implicit_index_operator, + STATE(6398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 9, - anon_sym_RBRACK, + ACTIONS(5721), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 27, - sym__start_of_index_operator, + ACTIONS(5719), 25, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -585617,7 +591412,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, @@ -585630,198 +591424,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, - [264042] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6330), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11722), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [264135] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6331), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11734), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [264228] = 5, + anon_sym_COLON2, + [266690] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6332), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9000), 1, + anon_sym_COMMA, + ACTIONS(9002), 1, + anon_sym_RBRACK, + STATE(6399), 1, sym_heredoc_body, + STATE(10241), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [264279] = 5, + [266781] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6333), 1, + STATE(6400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 9, + ACTIONS(5696), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -585831,7 +591511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 27, + ACTIONS(5694), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -585859,148 +591539,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [264330] = 25, + [266832] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9033), 1, - anon_sym_RPAREN, - ACTIONS(9035), 1, + ACTIONS(9004), 1, anon_sym_COMMA, - STATE(6334), 1, + ACTIONS(9006), 1, + anon_sym_RBRACK, + STATE(6401), 1, sym_heredoc_body, - STATE(10413), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10248), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [264421] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6335), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11926), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [264514] = 5, + [266923] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6336), 1, + STATE(6402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 9, + ACTIONS(6439), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -586010,7 +591623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 27, + ACTIONS(6437), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -586038,26 +591651,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [264565] = 5, + [266974] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6337), 1, + ACTIONS(9008), 1, + sym_identifier, + ACTIONS(9010), 1, + anon_sym_LBRACK, + STATE(1982), 1, + sym__operator_token, + STATE(6403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 9, - anon_sym_RBRACK, + ACTIONS(9012), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7867), 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(7869), 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, + [267033] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6404), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5883), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 27, + ACTIONS(5881), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -586081,279 +591745,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [264616] = 24, + [267084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(236), 1, - sym__terminator, - STATE(6338), 1, + STATE(6405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(6439), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(6437), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [264705] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(283), 1, - sym__terminator, - STATE(6339), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [264794] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7414), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9037), 1, - anon_sym_RPAREN, - ACTIONS(9039), 1, - anon_sym_COMMA, - STATE(6340), 1, - sym_heredoc_body, - STATE(10447), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [264885] = 24, + [267135] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(507), 1, - sym__terminator, - STATE(6341), 1, + ACTIONS(9014), 1, + anon_sym_COMMA, + ACTIONS(9016), 1, + anon_sym_RBRACK, + STATE(6406), 1, sym_heredoc_body, + STATE(10256), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [264974] = 5, + [267226] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6342), 1, + STATE(6407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 9, + ACTIONS(5717), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -586363,7 +591877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6368), 27, + ACTIONS(5715), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -586391,15 +591905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [265025] = 5, + [267277] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6343), 1, + STATE(6408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 9, + ACTIONS(5717), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -586409,7 +591923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 27, + ACTIONS(5715), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -586437,458 +591951,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [265076] = 24, + [267328] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(472), 1, - sym__terminator, - STATE(6344), 1, + STATE(6409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(6471), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(6469), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265165] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6345), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(10951), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [265258] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6346), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(10954), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [265351] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 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(7414), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9041), 1, - anon_sym_RPAREN, - ACTIONS(9043), 1, - anon_sym_COMMA, - STATE(6347), 1, + [267379] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8095), 1, + anon_sym_LPAREN2, + STATE(6410), 1, sym_heredoc_body, - STATE(10363), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(195), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(173), 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(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265442] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9045), 1, - anon_sym_RPAREN, - ACTIONS(9047), 1, - anon_sym_COMMA, - STATE(6348), 1, - sym_heredoc_body, - STATE(10449), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [265533] = 25, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [267432] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9049), 1, - anon_sym_RPAREN, - ACTIONS(9051), 1, + ACTIONS(9018), 1, anon_sym_COMMA, - STATE(6349), 1, + ACTIONS(9020), 1, + anon_sym_RBRACK, + STATE(6411), 1, sym_heredoc_body, - STATE(10364), 1, + STATE(10262), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265624] = 26, + [267523] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6350), 1, + STATE(6412), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11010), 1, + STATE(11247), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -586901,563 +592177,460 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [265717] = 5, + [267616] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6351), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5993), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5991), 27, + ACTIONS(8224), 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, - [265768] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(8843), 1, - anon_sym_RPAREN, - ACTIONS(9053), 1, - anon_sym_COMMA, - STATE(6352), 1, + STATE(244), 1, + sym__terminator, + STATE(6413), 1, sym_heredoc_body, - STATE(10365), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265859] = 24, + [267705] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(238), 1, + STATE(280), 1, sym__terminator, - STATE(6353), 1, + STATE(6414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265948] = 24, + [267794] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(289), 1, - sym__terminator, - STATE(6354), 1, + ACTIONS(9022), 1, + anon_sym_LPAREN, + STATE(6415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(5905), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(5901), 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(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266037] = 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, + [267847] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(512), 1, + STATE(457), 1, sym__terminator, - STATE(6355), 1, + STATE(6416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266126] = 24, + [267936] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(513), 1, + STATE(458), 1, sym__terminator, - STATE(6356), 1, + STATE(6417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266215] = 24, + [268025] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8407), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, - anon_sym_DOT_DOT, - ACTIONS(8610), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, - anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8632), 1, - anon_sym_QMARK, - ACTIONS(8634), 1, - anon_sym_AMP_AMP, - ACTIONS(8636), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6357), 1, + STATE(6418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6506), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8626), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(5915), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + anon_sym_AMP_STAR, + ACTIONS(5913), 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(8642), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266304] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8409), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, - anon_sym_DOT_DOT, - ACTIONS(8610), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8632), 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(8634), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6358), 1, + [268076] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6508), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8626), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(5919), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + anon_sym_AMP_STAR, + ACTIONS(5917), 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(8642), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266393] = 26, + 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, + [268127] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6359), 1, + STATE(6420), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11253), 1, + STATE(11904), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -587470,61 +592643,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [266486] = 26, + [268220] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6360), 1, + STATE(6421), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11257), 1, + STATE(11906), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -587537,107 +592710,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [266579] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6361), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5997), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5995), 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, - [266630] = 26, + [268313] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6362), 1, + STATE(6422), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(10891), 1, + STATE(12102), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -587650,63 +592777,132 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [266723] = 6, + [268406] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9055), 1, - anon_sym_EQ, - STATE(6363), 1, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9008), 1, + sym_identifier, + STATE(1982), 1, + sym__operator_token, + STATE(6423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9012), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7867), 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(5831), 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__modulo_operator, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, + ACTIONS(7869), 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, + [268465] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8853), 1, anon_sym_QMARK, + ACTIONS(8855), 1, anon_sym_AMP_AMP, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - [266776] = 5, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(242), 1, + sym__terminator, + STATE(6424), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8845), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8859), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [268554] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6364), 1, + ACTIONS(1181), 1, + anon_sym_EQ, + STATE(6425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 9, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -587715,7 +592911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 27, + ACTIONS(173), 27, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -587727,7 +592924,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, @@ -587740,431 +592937,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [266827] = 24, + [268607] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(240), 1, + STATE(235), 1, sym__terminator, - STATE(6365), 1, + STATE(6426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266916] = 24, + [268696] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(298), 1, + STATE(296), 1, sym__terminator, - STATE(6366), 1, + STATE(6427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [267005] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, - anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8634), 1, - anon_sym_AMP_AMP, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6367), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5981), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8620), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 5, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_PIPE_PIPE, - [267086] = 24, + [268785] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(516), 1, + STATE(487), 1, sym__terminator, - STATE(6368), 1, + STATE(6428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [267175] = 24, + [268874] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(517), 1, + STATE(488), 1, sym__terminator, - STATE(6369), 1, + STATE(6429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [267264] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6370), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6001), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5999), 27, - sym__start_of_index_operator, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [267315] = 26, + [268963] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6371), 1, + STATE(6430), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11515), 1, + STATE(11518), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -588177,61 +593266,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [267408] = 26, + [269056] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6372), 1, + STATE(6431), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11518), 1, + STATE(11547), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -588244,107 +593333,84 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [267501] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6373), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6480), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6478), 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, - [267552] = 5, + [269149] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6374), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6432), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11831), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6297), 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, - [267603] = 5, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [269242] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6375), 1, + ACTIONS(9024), 1, + sym_regex_modifier, + STATE(6433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -588353,7 +593419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 28, + ACTIONS(5995), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -588378,86 +593444,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, - [267654] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6376), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11575), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [267747] = 5, + [269295] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6377), 1, + STATE(6434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 9, + ACTIONS(6471), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -588467,7 +593465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6490), 27, + ACTIONS(6469), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -588495,15 +593493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267798] = 5, + [269346] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6378), 1, + STATE(6435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 9, + ACTIONS(6487), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -588513,7 +593511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6235), 27, + ACTIONS(6485), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -588541,367 +593539,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267849] = 24, + [269397] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(229), 1, + STATE(246), 1, sym__terminator, - STATE(6379), 1, + STATE(6436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [267938] = 24, + [269486] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(292), 1, + STATE(283), 1, sym__terminator, - STATE(6380), 1, + STATE(6437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [268027] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6381), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6433), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6431), 27, - sym__start_of_index_operator, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [268078] = 24, + [269575] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(520), 1, + STATE(496), 1, sym__terminator, - STATE(6382), 1, + STATE(6438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268167] = 24, + [269664] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(521), 1, + STATE(497), 1, sym__terminator, - STATE(6383), 1, + STATE(6439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268256] = 26, + [269753] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6384), 1, + STATE(6440), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11797), 1, + STATE(11529), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -588914,61 +593866,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [268349] = 26, + [269846] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6385), 1, + STATE(6441), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11800), 1, + STATE(11534), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -588981,167 +593933,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [268442] = 25, + [269939] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9057), 1, - anon_sym_RPAREN, - ACTIONS(9059), 1, - anon_sym_COMMA, - STATE(6386), 1, - sym_heredoc_body, - STATE(10260), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [268533] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8632), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(239), 1, - sym__terminator, - STATE(6387), 1, + STATE(6442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268622] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6388), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6005), 9, + ACTIONS(6127), 7, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6003), 27, - sym__start_of_index_operator, + ACTIONS(6125), 20, sym_binary_plus, sym_binary_minus, sym_binary_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, @@ -589153,66 +593980,65 @@ 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, - [268673] = 26, + [270000] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6389), 1, + STATE(6443), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11844), 1, + STATE(11792), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -589225,435 +594051,321 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [268766] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9061), 1, - anon_sym_RPAREN, - ACTIONS(9063), 1, - anon_sym_COMMA, - STATE(6390), 1, - sym_heredoc_body, - STATE(10280), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [268857] = 24, + [270093] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(243), 1, + STATE(250), 1, sym__terminator, - STATE(6391), 1, + STATE(6444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268946] = 24, + [270182] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(277), 1, + STATE(295), 1, sym__terminator, - STATE(6392), 1, + STATE(6445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269035] = 24, + [270271] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(525), 1, + STATE(503), 1, sym__terminator, - STATE(6393), 1, + STATE(6446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269124] = 24, + [270360] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(526), 1, + STATE(504), 1, sym__terminator, - STATE(6394), 1, + STATE(6447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [269213] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8869), 1, - anon_sym_COMMA, - STATE(6395), 1, - sym_heredoc_body, - STATE(6463), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5876), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5811), 26, - sym__start_of_index_operator, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [269268] = 26, + [270449] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6396), 1, + STATE(6448), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12036), 1, + STATE(12050), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -589666,61 +594378,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [269361] = 26, + [270542] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6397), 1, + STATE(6449), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12046), 1, + STATE(12130), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -589733,61 +594445,110 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [269454] = 26, + [270635] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8632), 1, + sym__start_of_index_operator, + STATE(6450), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 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(6129), 24, + 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_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [270692] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6398), 1, + STATE(6451), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12091), 1, + STATE(11210), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -589800,32 +594561,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [269547] = 5, + [270785] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6399), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8632), 1, + sym__start_of_index_operator, + STATE(6452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 9, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 27, - sym__start_of_index_operator, + ACTIONS(6133), 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, @@ -589841,21 +594606,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, - [269598] = 5, + [270842] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6400), 1, + ACTIONS(9026), 1, + sym_regex_modifier, + STATE(6453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 9, - anon_sym_RBRACK, + ACTIONS(6031), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -589864,8 +594629,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 27, + ACTIONS(6029), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -589889,390 +594655,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [269649] = 24, + [270895] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(259), 1, + STATE(251), 1, sym__terminator, - STATE(6401), 1, + STATE(6454), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269738] = 24, + [270984] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(281), 1, + STATE(314), 1, sym__terminator, - STATE(6402), 1, + STATE(6455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [269827] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6403), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6291), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6289), 27, - sym__start_of_index_operator, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [269878] = 24, + [271073] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(532), 1, + STATE(511), 1, sym__terminator, - STATE(6404), 1, + STATE(6456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269967] = 24, + [271162] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(533), 1, + STATE(512), 1, sym__terminator, - STATE(6405), 1, + STATE(6457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [270056] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9065), 1, - anon_sym_RPAREN, - ACTIONS(9067), 1, - anon_sym_COMMA, - STATE(6406), 1, - sym_heredoc_body, - STATE(10493), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270147] = 5, + [271251] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6407), 1, + STATE(6458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 9, + ACTIONS(6516), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -590282,7 +594935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 27, + ACTIONS(6514), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -590310,61 +594963,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [270198] = 26, + [271302] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6408), 1, + STATE(6459), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12168), 1, + STATE(11261), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -590377,61 +595030,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [270291] = 26, + [271395] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6409), 1, + STATE(6460), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12236), 1, + STATE(11269), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -590444,61 +595097,117 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [270384] = 26, + [271488] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_DASH_GT, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9035), 1, + sym__constant_segment, + ACTIONS(9038), 1, + anon_sym_COLON_COLON, + STATE(6461), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(7924), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + STATE(7836), 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(4656), 13, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + [271559] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6410), 1, + STATE(6462), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11185), 1, + STATE(11552), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -590511,92 +595220,73 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [270477] = 25, + [271652] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9069), 1, - anon_sym_RPAREN, - ACTIONS(9071), 1, - anon_sym_COMMA, - STATE(6411), 1, + STATE(6463), 1, sym_heredoc_body, - STATE(10494), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(5834), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(5832), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270568] = 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, + [271703] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8116), 1, - anon_sym_COLON, - STATE(6412), 1, + ACTIONS(9043), 1, + anon_sym_LPAREN, + ACTIONS(9045), 1, + anon_sym_DOT, + STATE(6464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6043), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(6039), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -590624,325 +595314,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [270621] = 24, + [271758] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(248), 1, + STATE(234), 1, sym__terminator, - STATE(6413), 1, + STATE(6465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270710] = 24, + [271847] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(286), 1, + STATE(282), 1, sym__terminator, - STATE(6414), 1, + STATE(6466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [270799] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6415), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(143), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(145), 27, - sym__start_of_index_operator, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [270850] = 24, + [271936] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(537), 1, + STATE(517), 1, sym__terminator, - STATE(6416), 1, + STATE(6467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270939] = 24, + [272025] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(538), 1, + STATE(518), 1, sym__terminator, - STATE(6417), 1, + STATE(6468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [271028] = 7, + [272114] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8929), 1, - anon_sym_COMMA, - STATE(6418), 1, + STATE(6469), 1, sym_heredoc_body, - STATE(6593), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5860), 8, + ACTIONS(6531), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -590951,9 +595592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5737), 26, + ACTIONS(6529), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -590964,6 +595604,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, @@ -590976,63 +595617,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271083] = 26, + [272165] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8546), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6470), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6459), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8636), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [272254] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6419), 1, + STATE(6471), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11965), 1, + STATE(12302), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -591045,61 +595752,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [271176] = 26, + [272347] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6420), 1, + STATE(6472), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11978), 1, + STATE(12309), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -591112,61 +595819,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [271269] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6421), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6013), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6011), 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, - [271320] = 5, + [272440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6422), 1, + STATE(6473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 9, + ACTIONS(6535), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -591176,7 +595837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 27, + ACTIONS(6533), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -591204,16 +595865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271371] = 5, + [272491] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6423), 1, + ACTIONS(9043), 1, + anon_sym_LPAREN, + STATE(6474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 9, - anon_sym_RBRACK, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -591222,8 +595884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 27, + ACTIONS(6039), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -591247,64 +595910,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271422] = 26, + [272544] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6424), 1, + STATE(6475), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12253), 1, + STATE(10999), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -591317,15 +595979,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [271515] = 5, + [272637] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6425), 1, + STATE(6476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 9, + ACTIONS(6539), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -591335,7 +595997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 27, + ACTIONS(6537), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -591363,15 +596025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271566] = 5, + [272688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6426), 1, + STATE(6477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 9, + ACTIONS(5840), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -591381,7 +596043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 27, + ACTIONS(5838), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -591409,158 +596071,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271617] = 24, + [272739] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(249), 1, + STATE(236), 1, sym__terminator, - STATE(6427), 1, + STATE(6478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [271706] = 24, + [272828] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(288), 1, + STATE(277), 1, sym__terminator, - STATE(6428), 1, + STATE(6479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [271795] = 6, + [272917] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9073), 1, - anon_sym_COMMA, + STATE(6480), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6429), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, + ACTIONS(5896), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5934), 26, + ACTIONS(5894), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -591571,6 +596232,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, @@ -591585,192 +596247,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [271848] = 24, + [272968] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(543), 1, + STATE(521), 1, sym__terminator, - STATE(6430), 1, + STATE(6481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [271937] = 24, + [273057] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(544), 1, + STATE(522), 1, sym__terminator, - STATE(6431), 1, + STATE(6482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [272026] = 26, + [273146] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + STATE(6483), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6543), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6541), 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, + [273197] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6432), 1, + STATE(6484), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11439), 1, + STATE(11434), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -591783,61 +596490,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [272119] = 26, + [273290] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6433), 1, + STATE(6485), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11449), 1, + STATE(11437), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -591850,173 +596557,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [272212] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9076), 1, - anon_sym_RPAREN, - ACTIONS(9078), 1, - anon_sym_COMMA, - STATE(6434), 1, - sym_heredoc_body, - STATE(10190), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [272303] = 5, + [273383] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6435), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6307), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6305), 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, - [272354] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6436), 1, + STATE(6486), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11693), 1, + STATE(11501), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -592029,81 +596624,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [272447] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5737), 1, - anon_sym_COLON2, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8869), 1, - anon_sym_COMMA, - ACTIONS(8871), 1, - anon_sym_DOT_DOT, - ACTIONS(8873), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8893), 1, - anon_sym_QMARK, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6437), 1, - sym_heredoc_body, - STATE(6452), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [272538] = 5, + [273476] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6438), 1, + STATE(6487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 9, + ACTIONS(6547), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -592113,7 +596642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 27, + ACTIONS(6545), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -592141,369 +596670,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272589] = 24, + [273527] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(251), 1, + STATE(238), 1, sym__terminator, - STATE(6439), 1, + STATE(6488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [272678] = 24, + [273616] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(291), 1, + STATE(297), 1, sym__terminator, - STATE(6440), 1, + STATE(6489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [272767] = 24, + [273705] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(547), 1, + STATE(528), 1, sym__terminator, - STATE(6441), 1, + STATE(6490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [272856] = 24, + [273794] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(548), 1, + STATE(529), 1, sym__terminator, - STATE(6442), 1, + STATE(6491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [272945] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8638), 1, - sym__start_of_index_operator, - STATE(6443), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - 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, - anon_sym_AMP_STAR, - ACTIONS(6313), 26, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [273000] = 26, + [273883] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6444), 1, + STATE(6492), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12150), 1, + STATE(11822), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -592516,61 +596997,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [273093] = 26, + [273976] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6445), 1, + STATE(6493), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12161), 1, + STATE(11828), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -592583,63 +597064,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [273186] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8638), 1, - sym__start_of_index_operator, - STATE(6446), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6041), 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(6039), 26, - sym_binary_plus, - sym_binary_minus, - sym_binary_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, - [273241] = 5, + [274069] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6447), 1, + STATE(6494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 9, + ACTIONS(6551), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -592649,7 +597082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 27, + ACTIONS(6549), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -592677,107 +597110,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273292] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6448), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4624), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(4622), 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_LPAREN, - 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, - [273343] = 26, + [274120] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6449), 1, + STATE(6495), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(12260), 1, + STATE(11945), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -592790,16 +597177,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [273436] = 5, + [274213] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6450), 1, + STATE(6496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 9, - anon_sym_RBRACK, + ACTIONS(4624), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -592808,8 +597194,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 27, + ACTIONS(4622), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -592820,6 +597207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -592833,539 +597221,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273487] = 5, + [274264] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6451), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6421), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6419), 27, + ACTIONS(8224), 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, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 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(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8853), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8855), 1, anon_sym_AMP_AMP, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - [273538] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8869), 1, - anon_sym_COMMA, - STATE(6429), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6452), 1, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(241), 1, + sym__terminator, + STATE(6497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5811), 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, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8851), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [273593] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6453), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6037), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8835), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6035), 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(8845), 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, - [273644] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6454), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6241), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6239), 27, - sym__start_of_index_operator, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [273695] = 25, + [274353] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9080), 1, - anon_sym_RPAREN, - ACTIONS(9082), 1, - anon_sym_COMMA, - STATE(6455), 1, + STATE(299), 1, + sym__terminator, + STATE(6498), 1, sym_heredoc_body, - STATE(10538), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [273786] = 5, + [274442] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6456), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6225), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6223), 27, + ACTIONS(8224), 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, - [273837] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9084), 1, - anon_sym_RPAREN, - ACTIONS(9086), 1, - anon_sym_COMMA, - STATE(6457), 1, + STATE(535), 1, + sym__terminator, + STATE(6499), 1, sym_heredoc_body, - STATE(10540), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [273928] = 5, + [274531] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6458), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6245), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6243), 27, + ACTIONS(8224), 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, - [273979] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5939), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8610), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8634), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6459), 1, + STATE(536), 1, + sym__terminator, + STATE(6500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5934), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274068] = 26, + [274620] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6460), 1, + STATE(6501), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11919), 1, + STATE(12361), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -593378,15 +597550,149 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [274161] = 5, + [274713] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6461), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6502), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11537), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [274806] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6503), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11721), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [274899] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 9, + ACTIONS(6555), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -593396,7 +597702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 27, + ACTIONS(6553), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -593424,85 +597730,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [274212] = 25, + [274950] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + STATE(6505), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6563), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6561), 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, - ACTIONS(7392), 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, + [275001] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(231), 1, + sym__terminator, + STATE(6506), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8845), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8859), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [275090] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8853), 1, + anon_sym_QMARK, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9033), 1, - anon_sym_RPAREN, - ACTIONS(9088), 1, - anon_sym_COMMA, - STATE(6462), 1, + STATE(310), 1, + sym__terminator, + STATE(6507), 1, sym_heredoc_body, - STATE(10518), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274303] = 7, + [275179] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8869), 1, - anon_sym_COMMA, - STATE(6429), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6463), 1, + ACTIONS(9047), 1, + anon_sym_LPAREN, + STATE(6508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6065), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -593511,8 +597925,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5866), 26, + ACTIONS(6061), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -593523,6 +597938,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, @@ -593537,149 +597953,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [274358] = 25, + [275232] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9090), 1, - anon_sym_RPAREN, - ACTIONS(9092), 1, - anon_sym_COMMA, - STATE(6464), 1, + STATE(541), 1, + sym__terminator, + STATE(6509), 1, sym_heredoc_body, - STATE(10519), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274449] = 25, + [275321] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9094), 1, - anon_sym_RPAREN, - ACTIONS(9096), 1, - anon_sym_COMMA, - STATE(6465), 1, + STATE(542), 1, + sym__terminator, + STATE(6510), 1, sym_heredoc_body, - STATE(10609), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274540] = 5, + [275410] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6466), 1, + ACTIONS(9049), 1, + sym_regex_modifier, + STATE(6511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 9, - anon_sym_RBRACK, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -593688,8 +598102,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 27, + ACTIONS(5838), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -593713,141 +598128,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [274591] = 5, + [275463] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6467), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5708), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(5856), 1, + anon_sym_COLON2, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5706), 27, + ACTIONS(7406), 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, + ACTIONS(8909), 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, - [274642] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8958), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8980), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8982), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - ACTIONS(9098), 1, - anon_sym_RPAREN, - ACTIONS(9100), 1, - anon_sym_COMMA, - STATE(6468), 1, + STATE(6319), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6512), 1, sym_heredoc_body, - STATE(10635), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274733] = 6, + [275554] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6513), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11611), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [275647] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6514), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11619), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [275740] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9102), 1, - sym_regex_modifier, - STATE(6469), 1, + STATE(6515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5918), 8, + ACTIONS(6015), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5916), 27, + ACTIONS(6013), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -593875,498 +598376,597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [274786] = 21, + [275791] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8634), 1, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6470), 1, + ACTIONS(9051), 1, + anon_sym_COMMA, + ACTIONS(9053), 1, + anon_sym_RBRACK, + STATE(6516), 1, sym_heredoc_body, + STATE(10534), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6109), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8620), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6107), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - ACTIONS(8624), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274869] = 25, + [275882] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(9055), 1, + sym_identifier, + ACTIONS(9057), 1, + anon_sym_LBRACK, + STATE(1998), 1, + sym__operator_token, + STATE(6517), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9059), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7740), 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(7742), 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, + [275941] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6518), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11899), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [276034] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9104), 1, - anon_sym_RPAREN, - ACTIONS(9106), 1, - anon_sym_COMMA, - STATE(6471), 1, + STATE(245), 1, + sym__terminator, + STATE(6519), 1, sym_heredoc_body, - STATE(10521), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274960] = 25, + [276123] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9108), 1, - anon_sym_RPAREN, - ACTIONS(9110), 1, - anon_sym_COMMA, - STATE(6472), 1, + STATE(279), 1, + sym__terminator, + STATE(6520), 1, sym_heredoc_body, - STATE(10653), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275051] = 24, + [276212] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8480), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8610), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8634), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6473), 1, + STATE(546), 1, + sym__terminator, + STATE(6521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6469), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275140] = 25, + [276301] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9112), 1, - anon_sym_COMMA, - ACTIONS(9114), 1, - anon_sym_RBRACK, - STATE(6474), 1, + STATE(547), 1, + sym__terminator, + STATE(6522), 1, sym_heredoc_body, - STATE(10510), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275231] = 9, + [276390] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9023), 1, - anon_sym_LBRACK, - ACTIONS(9116), 1, - sym_identifier, - STATE(1959), 1, - sym__operator_token, - STATE(6475), 1, + ACTIONS(9061), 1, + anon_sym_of, + STATE(6523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8993), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7714), 10, + ACTIONS(5830), 8, + anon_sym_DOT_DOT, + anon_sym_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(7716), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5826), 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__modulo_operator, + anon_sym_SEMI, + 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, - [275290] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, - anon_sym_CARET, - ACTIONS(8622), 1, - anon_sym_EQ_EQ, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8634), 1, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(8636), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6476), 1, + [276443] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6524), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6334), 2, + ACTIONS(6351), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8626), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6332), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - ACTIONS(8624), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + anon_sym_AMP_STAR, + ACTIONS(6349), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275373] = 26, + 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, + [276494] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6477), 1, + STATE(6525), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11546), 1, + STATE(11526), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594379,316 +598979,277 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [275466] = 25, + [276587] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9118), 1, - anon_sym_RPAREN, - ACTIONS(9120), 1, - anon_sym_COMMA, - STATE(6478), 1, + STATE(247), 1, + sym__terminator, + STATE(6526), 1, sym_heredoc_body, - STATE(10668), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275557] = 25, + [276676] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(9122), 1, - anon_sym_COMMA, - ACTIONS(9124), 1, - anon_sym_RBRACK, - STATE(6479), 1, + STATE(284), 1, + sym__terminator, + STATE(6527), 1, sym_heredoc_body, - STATE(10063), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275648] = 25, + [276765] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - ACTIONS(8811), 1, - anon_sym_RPAREN, - ACTIONS(9126), 1, - anon_sym_COMMA, - STATE(6480), 1, + STATE(551), 1, + sym__terminator, + STATE(6528), 1, sym_heredoc_body, - STATE(10514), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275739] = 15, + [276854] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9128), 1, - anon_sym_LPAREN, - ACTIONS(9130), 1, - anon_sym_DASH_GT, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9135), 1, - sym__constant_segment, - ACTIONS(9138), 1, - anon_sym_COLON_COLON, - STATE(6481), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7883), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - STATE(7794), 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(4628), 13, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(8196), 1, anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, anon_sym_PIPE, - anon_sym_def, - sym_class_var, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8853), 1, anon_sym_QMARK, - sym_private, - sym_protected, - [275810] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6482), 1, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(552), 1, + sym__terminator, + STATE(6529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6439), 27, - sym__start_of_index_operator, + ACTIONS(8845), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [275861] = 5, + [276943] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6483), 1, + ACTIONS(9063), 1, + anon_sym_EQ, + STATE(6530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 9, - anon_sym_RBRACK, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -594697,7 +599258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5791), 27, + ACTIONS(5937), 27, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -594709,7 +599271,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, @@ -594722,29 +599284,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [275912] = 5, + [276996] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6484), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6531), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(12063), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 9, - anon_sym_RBRACK, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [277089] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6532), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(12068), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [277182] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6533), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5949), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 27, + ACTIONS(5947), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -594768,105 +599464,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [275963] = 25, + [277233] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9143), 1, + ACTIONS(9065), 1, anon_sym_RPAREN, - ACTIONS(9145), 1, + ACTIONS(9067), 1, anon_sym_COMMA, - STATE(6485), 1, + STATE(6534), 1, sym_heredoc_body, - STATE(10678), 1, - aux_sym_array_repeat1, + STATE(10588), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276054] = 15, + [277324] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9128), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9147), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(9153), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - STATE(6486), 1, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6535), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7915), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(12283), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594879,352 +599599,196 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - ACTIONS(4656), 13, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym_class_var, - anon_sym_QMARK, - sym_private, - sym_protected, - [276125] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9156), 1, - anon_sym_of, - STATE(6487), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5823), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5819), 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__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, - [276178] = 5, + [277417] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6488), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6275), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6273), 27, + ACTIONS(7406), 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, - [276229] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9158), 1, + ACTIONS(9069), 1, anon_sym_RPAREN, - ACTIONS(9160), 1, + ACTIONS(9071), 1, anon_sym_COMMA, - STATE(6489), 1, + STATE(6536), 1, sym_heredoc_body, - STATE(10436), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10590), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [276320] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8929), 1, - anon_sym_COMMA, - STATE(6490), 1, - sym_heredoc_body, - STATE(6530), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5870), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5866), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [276375] = 24, + [277508] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(254), 1, - sym__terminator, - STATE(6491), 1, + ACTIONS(9073), 1, + anon_sym_RPAREN, + ACTIONS(9075), 1, + anon_sym_COMMA, + STATE(6537), 1, sym_heredoc_body, + STATE(10591), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276464] = 9, + [277599] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9023), 1, - anon_sym_LBRACK, - ACTIONS(9162), 1, - sym_identifier, - STATE(1964), 1, - sym__operator_token, - STATE(6492), 1, + STATE(6538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9164), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7669), 10, + ACTIONS(5812), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7671), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5810), 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, - [276523] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277650] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6493), 1, - sym_heredoc_body, + ACTIONS(9077), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 9, - anon_sym_RBRACK, + STATE(6539), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -595233,7 +599797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 27, + ACTIONS(5970), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -595245,7 +599809,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, @@ -595258,18 +599821,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, - [276574] = 5, + anon_sym_COLON2, + [277703] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6494), 1, + STATE(6540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 9, + ACTIONS(6099), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -595279,7 +599842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 27, + ACTIONS(6097), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -595307,156 +599870,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [276625] = 24, + [277754] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(237), 1, + STATE(534), 1, sym__terminator, - STATE(6495), 1, + STATE(6541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276714] = 24, + [277843] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(287), 1, + STATE(540), 1, sym__terminator, - STATE(6496), 1, + STATE(6542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276803] = 5, + [277932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6497), 1, + STATE(6543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 9, - anon_sym_RBRACK, + ACTIONS(6027), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 27, + ACTIONS(6025), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -595480,18 +600044,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, - [276854] = 5, + [277983] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6498), 1, + STATE(6544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 9, + ACTIONS(6099), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -595501,7 +600064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 27, + ACTIONS(6097), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -595529,149 +600092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [276905] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9166), 1, - anon_sym_RPAREN, - ACTIONS(9168), 1, - anon_sym_COMMA, - STATE(6499), 1, - sym_heredoc_body, - STATE(10029), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [276996] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9170), 1, - anon_sym_RPAREN, - ACTIONS(9172), 1, - anon_sym_COMMA, - STATE(6500), 1, - sym_heredoc_body, - STATE(10034), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [277087] = 6, + [278034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9174), 1, - anon_sym_of, - STATE(6501), 1, + STATE(6545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6103), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -595680,8 +600110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 27, - sym__line_break, + ACTIONS(6101), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -595693,7 +600122,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, @@ -595706,83 +600135,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, - [277140] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9057), 1, - anon_sym_RPAREN, - ACTIONS(9176), 1, - anon_sym_COMMA, - STATE(6502), 1, - sym_heredoc_body, - STATE(10043), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [277231] = 5, + [278085] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6503), 1, + STATE(6546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 9, + ACTIONS(6107), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -595792,7 +600156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 27, + ACTIONS(6105), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -595820,15 +600184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [277282] = 5, + [278136] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6504), 1, + STATE(6547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 9, + ACTIONS(6111), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -595838,7 +600202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 27, + ACTIONS(6109), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -595866,15 +600230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [277333] = 5, + [278187] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6505), 1, + STATE(6548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 9, + ACTIONS(6115), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -595884,7 +600248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 27, + ACTIONS(6113), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -595912,15 +600276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [277384] = 5, + [278238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6506), 1, + STATE(6549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 9, + ACTIONS(6119), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -595930,7 +600294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 27, + ACTIONS(6117), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -595958,17 +600322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [277435] = 6, + [278289] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1023), 1, - anon_sym_EQ, - STATE(6507), 1, + STATE(6550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6123), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -595977,9 +600340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(6121), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -596003,63 +600365,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, - [277488] = 5, + [278340] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6508), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6089), 9, + ACTIONS(8550), 1, anon_sym_RBRACK, + ACTIONS(8602), 1, anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8610), 1, anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(6087), 27, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6551), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6491), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [278429] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9080), 1, + anon_sym_COMMA, + ACTIONS(9082), 1, + anon_sym_RBRACK, + STATE(6552), 1, + sym_heredoc_body, + STATE(10690), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 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, - [277539] = 5, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [278520] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6509), 1, + STATE(6553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 9, + ACTIONS(5923), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -596069,7 +600517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 27, + ACTIONS(5921), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -596097,154 +600545,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [277590] = 5, + [278571] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6510), 1, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9084), 1, + sym_identifier, + STATE(1989), 1, + sym__operator_token, + STATE(6554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8938), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7752), 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(6095), 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, + ACTIONS(7754), 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, + [278630] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5750), 1, + sym__end_of_with_expression, + ACTIONS(8865), 1, + anon_sym_COMMA, + ACTIONS(8867), 1, + anon_sym_DOT_DOT, + ACTIONS(8869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8891), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8893), 1, anon_sym_AMP_AMP, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - [277641] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6511), 1, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6334), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6099), 27, - sym__start_of_index_operator, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [278721] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9086), 1, + anon_sym_RPAREN, + ACTIONS(9088), 1, + anon_sym_COMMA, + STATE(6556), 1, + sym_heredoc_body, + STATE(10489), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [278812] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [277692] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9178), 1, - anon_sym_of, - STATE(6512), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9090), 1, + anon_sym_RPAREN, + ACTIONS(9092), 1, + anon_sym_COMMA, + STATE(6557), 1, sym_heredoc_body, + STATE(10511), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5785), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [278903] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9094), 1, + anon_sym_RPAREN, + ACTIONS(9096), 1, + anon_sym_COMMA, + STATE(6558), 1, + sym_heredoc_body, + STATE(10575), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 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, - [277745] = 5, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [278994] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6513), 1, + STATE(6559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4620), 8, + ACTIONS(6311), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -596253,9 +600877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(4618), 28, + ACTIONS(6309), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -596266,7 +600889,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -596280,19 +600902,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, - [277796] = 6, + [279045] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9180), 1, - anon_sym_of, - STATE(6514), 1, + STATE(6560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, + ACTIONS(6315), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -596301,9 +600923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5813), 27, + ACTIONS(6313), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -596327,66 +600948,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [277849] = 6, + [279096] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9182), 1, - anon_sym_EQ, - STATE(6515), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9098), 1, + anon_sym_COMMA, + ACTIONS(9100), 1, + anon_sym_RBRACK, + STATE(6561), 1, sym_heredoc_body, + STATE(10544), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5831), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + [279187] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9102), 1, + sym_identifier, + STATE(1982), 1, + sym__operator_token, + STATE(6562), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9012), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7867), 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(7869), 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, - [277902] = 6, + [279246] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9184), 1, - anon_sym_of, - STATE(6516), 1, + STATE(6563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, + ACTIONS(5968), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -596395,9 +601085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5837), 27, + ACTIONS(5966), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -596421,144 +601110,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [277955] = 25, + [279297] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9186), 1, + ACTIONS(8911), 1, + anon_sym_RPAREN, + ACTIONS(9104), 1, anon_sym_COMMA, - ACTIONS(9188), 1, - anon_sym_RBRACK, - STATE(6517), 1, + STATE(6564), 1, sym_heredoc_body, - STATE(10475), 1, - aux_sym_array_repeat1, + STATE(10549), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278046] = 5, + [279388] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6518), 1, + ACTIONS(9102), 1, + sym_identifier, + ACTIONS(9106), 1, + anon_sym_LBRACK, + STATE(1982), 1, + sym__operator_token, + STATE(6565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9012), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7867), 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(6443), 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, + ACTIONS(7869), 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, - [278097] = 8, + [279447] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9190), 1, - anon_sym_DOT, - ACTIONS(9192), 1, - sym__start_of_index_operator, - STATE(6519), 1, + STATE(6566), 1, sym_heredoc_body, - STATE(6784), 1, - sym__implicit_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(5975), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 26, - sym__end_of_with_expression, + ACTIONS(5970), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -596582,63 +601272,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [278154] = 5, + [279498] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6520), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9108), 1, + anon_sym_COMMA, + ACTIONS(9110), 1, + anon_sym_RBRACK, + STATE(6567), 1, sym_heredoc_body, + STATE(10318), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5702), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + [279589] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9008), 1, + sym_identifier, + ACTIONS(9106), 1, + anon_sym_LBRACK, + STATE(1982), 1, + sym__operator_token, + STATE(6568), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9012), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7867), 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(7869), 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, - [278205] = 5, + [279648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6521), 1, + STATE(6569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 9, + ACTIONS(6463), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -596648,7 +601409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 27, + ACTIONS(6461), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -596676,237 +601437,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [278256] = 5, + [279699] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6522), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9112), 1, + anon_sym_COMMA, + ACTIONS(9114), 1, + anon_sym_RBRACK, + STATE(6570), 1, sym_heredoc_body, + STATE(10592), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6173), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + [279790] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9116), 1, + anon_sym_DASH_GT, + ACTIONS(9119), 1, + sym__constant_segment, + ACTIONS(9122), 1, + anon_sym_COLON_COLON, + STATE(6571), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(7961), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + STATE(7836), 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(4678), 13, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + [279861] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [278307] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6523), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9125), 1, + anon_sym_RPAREN, + ACTIONS(9127), 1, + anon_sym_COMMA, + STATE(6572), 1, sym_heredoc_body, + STATE(10438), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6149), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [278358] = 24, + [279952] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(555), 1, - sym__terminator, - STATE(6524), 1, + ACTIONS(9129), 1, + anon_sym_RPAREN, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(6573), 1, sym_heredoc_body, + STATE(10441), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278447] = 24, + [280043] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(557), 1, - sym__terminator, - STATE(6525), 1, + ACTIONS(9133), 1, + anon_sym_RPAREN, + ACTIONS(9135), 1, + anon_sym_COMMA, + STATE(6574), 1, sym_heredoc_body, + STATE(10446), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278536] = 5, + [280134] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6526), 1, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9137), 1, + anon_sym_DASH_GT, + ACTIONS(9140), 1, + sym__constant_segment, + ACTIONS(9143), 1, + anon_sym_COLON_COLON, + STATE(6575), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(7940), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + STATE(7836), 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(4628), 13, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + [280205] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -596915,7 +601830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5872), 28, + ACTIONS(5909), 28, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -596944,15 +601859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [278587] = 5, + [280256] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6527), 1, + STATE(6577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 9, + ACTIONS(5804), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -596962,7 +601877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 27, + ACTIONS(5802), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -596990,61 +601905,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [278638] = 5, + [280307] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6528), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9146), 1, + anon_sym_COMMA, + ACTIONS(9148), 1, + anon_sym_RBRACK, + STATE(6578), 1, sym_heredoc_body, + STATE(10261), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6111), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [278689] = 5, + [280398] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6529), 1, + STATE(6579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 9, + ACTIONS(5868), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -597054,7 +601989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6451), 27, + ACTIONS(5866), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -597082,62 +602017,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [278740] = 6, + [280449] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9194), 1, - anon_sym_COMMA, + ACTIONS(9150), 1, + sym_identifier, + ACTIONS(9152), 1, + anon_sym_LBRACK, + STATE(2005), 1, + sym__operator_token, + STATE(6580), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6530), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5939), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9154), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7764), 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(5934), 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(7766), 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, - [278793] = 5, + [280508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6531), 1, + STATE(6581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6119), 9, + ACTIONS(6524), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -597147,7 +602085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6117), 27, + ACTIONS(6522), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -597175,153 +602113,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [278844] = 5, + [280559] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6532), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6123), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6121), 27, + ACTIONS(7406), 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, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [278895] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6533), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8911), 1, + anon_sym_RPAREN, + ACTIONS(9156), 1, + anon_sym_COMMA, + STATE(6582), 1, sym_heredoc_body, + STATE(10084), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6125), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [280650] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [278946] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6534), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9158), 1, + anon_sym_RPAREN, + ACTIONS(9160), 1, + anon_sym_COMMA, + STATE(6583), 1, sym_heredoc_body, + STATE(10092), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6461), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [278997] = 5, + [280741] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6535), 1, + STATE(6584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 9, + ACTIONS(6185), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -597331,7 +602263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 27, + ACTIONS(6183), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -597359,81 +602291,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279048] = 25, + [280792] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9197), 1, + ACTIONS(9162), 1, + anon_sym_RPAREN, + ACTIONS(9164), 1, anon_sym_COMMA, - ACTIONS(9199), 1, - anon_sym_RBRACK, - STATE(6536), 1, + STATE(6585), 1, sym_heredoc_body, - STATE(10625), 1, - aux_sym_array_repeat1, + STATE(10098), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279139] = 5, + [280883] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6537), 1, + STATE(6586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6131), 9, + ACTIONS(6185), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -597443,7 +602375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6129), 27, + ACTIONS(6183), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -597471,15 +602403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279190] = 5, + [280934] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6538), 1, + STATE(6587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 9, + ACTIONS(6185), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -597489,7 +602421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 27, + ACTIONS(6183), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -597517,16 +602449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279241] = 5, + [280985] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6539), 1, + ACTIONS(8238), 1, + anon_sym_COLON, + STATE(6588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 9, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -597535,8 +602468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 27, + ACTIONS(173), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -597560,18 +602494,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, - [279292] = 5, + [281038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6540), 1, + STATE(6589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 9, + ACTIONS(5731), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -597581,7 +602514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 27, + ACTIONS(5729), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -597609,65 +602542,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279343] = 9, + [281089] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8989), 1, - sym_identifier, - ACTIONS(9201), 1, - anon_sym_LBRACK, - STATE(1959), 1, - sym__operator_token, - STATE(6541), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9166), 1, + anon_sym_COMMA, + ACTIONS(9168), 1, + anon_sym_RBRACK, + STATE(6590), 1, sym_heredoc_body, + STATE(10474), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8993), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7714), 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(7716), 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(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 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, - [279402] = 5, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [281180] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6542), 1, + STATE(6591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 9, + ACTIONS(6185), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -597677,7 +602626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 27, + ACTIONS(6183), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -597705,219 +602654,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279453] = 5, + [281231] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6543), 1, + ACTIONS(9170), 1, + sym_identifier, + ACTIONS(9172), 1, + anon_sym_LBRACK, + STATE(1985), 1, + sym__operator_token, + STATE(6592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9174), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7776), 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(173), 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, + ACTIONS(7778), 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, + [281290] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8571), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8626), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8628), 1, anon_sym_AMP_AMP, + ACTIONS(8630), 1, anon_sym_PIPE_PIPE, - [279504] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6544), 1, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6373), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6141), 27, - sym__start_of_index_operator, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [281379] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9176), 1, + anon_sym_RPAREN, + ACTIONS(9178), 1, + anon_sym_COMMA, + STATE(6594), 1, + sym_heredoc_body, + STATE(10661), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 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, - [279555] = 25, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [281470] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9203), 1, + ACTIONS(9180), 1, anon_sym_RPAREN, - ACTIONS(9205), 1, + ACTIONS(9182), 1, anon_sym_COMMA, - STATE(6545), 1, + STATE(6595), 1, sym_heredoc_body, - STATE(10423), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10665), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279646] = 26, + [281561] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8576), 1, + ACTIONS(8675), 1, anon_sym_typeof, - ACTIONS(8578), 1, + ACTIONS(8677), 1, sym__constant_segment, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8582), 1, + ACTIONS(8681), 1, sym_identifier_method_call, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(6546), 1, + STATE(6596), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9957), 1, + STATE(9807), 1, sym__splattable_type, - STATE(10641), 1, + STATE(10101), 1, sym_named_type, - STATE(10723), 1, + STATE(10823), 1, sym__bare_type, - STATE(11521), 1, + STATE(12045), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597930,346 +602968,288 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [279739] = 26, + [281654] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6547), 1, + STATE(6597), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11687), 1, - sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [279832] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6189), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, anon_sym_DOT, - ACTIONS(7396), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(6187), 27, sym__start_of_index_operator, - ACTIONS(7424), 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(9207), 1, - anon_sym_RPAREN, - ACTIONS(9209), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - STATE(6548), 1, - sym_heredoc_body, - STATE(10036), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [279923] = 25, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [281705] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9211), 1, + ACTIONS(9184), 1, anon_sym_RPAREN, - ACTIONS(9213), 1, + ACTIONS(9186), 1, anon_sym_COMMA, - STATE(6549), 1, + STATE(6598), 1, sym_heredoc_body, - STATE(10425), 1, - aux_sym_array_repeat1, + STATE(10685), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280014] = 25, + [281796] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(1113), 1, + anon_sym_EQ, + STATE(6599), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(195), 8, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, anon_sym_DOT, - ACTIONS(7396), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(173), 27, sym__start_of_index_operator, - ACTIONS(7424), 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(9215), 1, - anon_sym_RPAREN, - ACTIONS(9217), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - STATE(6550), 1, - sym_heredoc_body, - STATE(10038), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [281849] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8865), 1, + anon_sym_COMMA, + STATE(6334), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6600), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5794), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(5750), 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(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280105] = 25, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [281904] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9219), 1, - anon_sym_RPAREN, - ACTIONS(9221), 1, + ACTIONS(9188), 1, anon_sym_COMMA, - STATE(6551), 1, + ACTIONS(9190), 1, + anon_sym_RBRACK, + STATE(6601), 1, sym_heredoc_body, - STATE(10040), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10164), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280196] = 5, + [281995] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6552), 1, + STATE(6602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 9, + ACTIONS(6189), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -598279,7 +603259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 27, + ACTIONS(6187), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -598307,16 +603287,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280247] = 5, + [282046] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9172), 1, + anon_sym_LBRACK, + ACTIONS(9192), 1, + sym_identifier, + STATE(1985), 1, + sym__operator_token, + STATE(6603), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9174), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7776), 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(7778), 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, + [282105] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6553), 1, + ACTIONS(9194), 1, + anon_sym_of, + STATE(6604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 9, - anon_sym_RBRACK, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -598325,8 +603356,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 27, + ACTIONS(5826), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -598350,20 +603382,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, - [280298] = 6, + [282158] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9223), 1, - sym_regex_modifier, - STATE(6554), 1, + STATE(6605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5928), 8, + ACTIONS(6087), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -598372,9 +603402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5926), 27, + ACTIONS(6085), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -598398,84 +603427,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, - [280351] = 25, + [282209] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9219), 1, + ACTIONS(9196), 1, anon_sym_RPAREN, - ACTIONS(9225), 1, + ACTIONS(9198), 1, anon_sym_COMMA, - STATE(6555), 1, + STATE(6606), 1, sym_heredoc_body, - STATE(10671), 1, + STATE(10199), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280442] = 5, + [282300] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6556), 1, + ACTIONS(9200), 1, + anon_sym_of, + STATE(6607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 9, - anon_sym_RBRACK, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -598484,7 +603515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 27, + ACTIONS(5960), 27, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -598496,7 +603528,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, @@ -598509,84 +603541,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, - [280493] = 24, + [282353] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8351), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8610), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8634), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6557), 1, + ACTIONS(9202), 1, + anon_sym_RPAREN, + ACTIONS(9204), 1, + anon_sym_COMMA, + STATE(6608), 1, sym_heredoc_body, + STATE(10201), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6205), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280582] = 5, + [282444] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6558), 1, + ACTIONS(9206), 1, + anon_sym_of, + STATE(6609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 9, - anon_sym_RBRACK, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -598595,8 +603628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 27, + ACTIONS(5873), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -598620,84 +603654,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, - [280633] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9227), 1, - anon_sym_RPAREN, - ACTIONS(9229), 1, - anon_sym_COMMA, - STATE(6559), 1, - sym_heredoc_body, - STATE(10673), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [280724] = 5, + [282497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6560), 1, + STATE(6610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 9, + ACTIONS(6189), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -598707,7 +603674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 27, + ACTIONS(6187), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -598735,198 +603702,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280775] = 25, + [282548] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9231), 1, - anon_sym_COMMA, - ACTIONS(9233), 1, - anon_sym_RBRACK, - STATE(6561), 1, + ACTIONS(9208), 1, + anon_sym_EQ, + STATE(6611), 1, sym_heredoc_body, - STATE(10376), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [280866] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(5939), 8, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, anon_sym_DOT, - ACTIONS(7396), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9235), 1, - anon_sym_RPAREN, - ACTIONS(9237), 1, - anon_sym_COMMA, - STATE(6562), 1, - sym_heredoc_body, - STATE(10428), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + 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(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280957] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9239), 1, - sym_identifier, - ACTIONS(9241), 1, - anon_sym_LBRACK, - STATE(1964), 1, - sym__operator_token, - STATE(6563), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9164), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7669), 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(7671), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + 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, - [281016] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [282601] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6564), 1, + ACTIONS(9210), 1, + anon_sym_of, + STATE(6612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 9, - anon_sym_RBRACK, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -598935,8 +603768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 27, + ACTIONS(5960), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -598960,85 +603794,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, - [281067] = 25, + [282654] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9033), 1, + ACTIONS(9212), 1, anon_sym_RPAREN, - ACTIONS(9243), 1, + ACTIONS(9214), 1, anon_sym_COMMA, - STATE(6565), 1, + STATE(6613), 1, sym_heredoc_body, - STATE(10567), 1, + STATE(10202), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [281158] = 5, + [282745] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6566), 1, + ACTIONS(8909), 1, + anon_sym_COMMA, + STATE(6362), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 9, - anon_sym_RBRACK, + ACTIONS(5794), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -599047,7 +603883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 27, + ACTIONS(5750), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -599059,7 +603895,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, @@ -599072,134 +603907,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, - [281209] = 6, + anon_sym_COLON2, + [282800] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1171), 1, - anon_sym_EQ, - STATE(6567), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9216), 1, + anon_sym_COMMA, + ACTIONS(9218), 1, + anon_sym_RBRACK, + STATE(6615), 1, sym_heredoc_body, + STATE(10359), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(173), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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_COLON2, - [281262] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6568), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(11232), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [281355] = 6, + [282891] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9245), 1, - anon_sym_EQ, - STATE(6569), 1, + STATE(6616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(6189), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -599208,7 +603994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 27, + ACTIONS(6187), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -599233,67 +604019,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, - [281408] = 8, + [282942] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7445), 1, - sym__start_of_index_operator, - ACTIONS(9247), 1, - anon_sym_DOT, - STATE(4316), 1, - sym__implicit_index_operator, - STATE(6570), 1, + ACTIONS(9220), 1, + sym_identifier, + ACTIONS(9222), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym__operator_token, + STATE(6617), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, - anon_sym_DOT_DOT, + ACTIONS(9224), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7788), 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(5878), 26, - sym_binary_plus, - sym_binary_minus, - sym_binary_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(7790), 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, - anon_sym_COLON2, - [281465] = 5, + [283001] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6571), 1, + STATE(6618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 9, + ACTIONS(6435), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -599303,7 +604090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 27, + ACTIONS(6433), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -599331,131 +604118,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281516] = 9, + [283052] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9017), 1, - sym_identifier, - ACTIONS(9249), 1, - anon_sym_LBRACK, - STATE(1973), 1, - sym__operator_token, - STATE(6572), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8950), 1, + anon_sym_RPAREN, + ACTIONS(9226), 1, + anon_sym_COMMA, + STATE(6619), 1, sym_heredoc_body, + STATE(10411), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9021), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7780), 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(7782), 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(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 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, - [281575] = 25, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [283143] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(8843), 1, + ACTIONS(9228), 1, anon_sym_RPAREN, - ACTIONS(9251), 1, + ACTIONS(9230), 1, anon_sym_COMMA, - STATE(6573), 1, + STATE(6620), 1, sym_heredoc_body, - STATE(10575), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10412), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [281666] = 5, + [283234] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6574), 1, + STATE(6621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 9, + ACTIONS(6193), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -599465,7 +604268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 27, + ACTIONS(6191), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -599493,360 +604296,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281717] = 5, + [283285] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6575), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5957), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5955), 27, + ACTIONS(7406), 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, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [281768] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6576), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9232), 1, + anon_sym_RPAREN, + ACTIONS(9234), 1, + anon_sym_COMMA, + STATE(6622), 1, sym_heredoc_body, + STATE(10413), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6510), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [283376] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 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(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [281819] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6577), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9236), 1, + anon_sym_RPAREN, + ACTIONS(9238), 1, + anon_sym_COMMA, + STATE(6623), 1, sym_heredoc_body, + STATE(10185), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5934), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [281870] = 25, + [283467] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9057), 1, + ACTIONS(9240), 1, anon_sym_RPAREN, - ACTIONS(9253), 1, + ACTIONS(9242), 1, anon_sym_COMMA, - STATE(6578), 1, + STATE(6624), 1, sym_heredoc_body, - STATE(10580), 1, + STATE(10312), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [281961] = 25, + [283558] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9255), 1, + ACTIONS(9244), 1, + anon_sym_RPAREN, + ACTIONS(9246), 1, anon_sym_COMMA, - ACTIONS(9257), 1, - anon_sym_RBRACK, - STATE(6579), 1, + STATE(6625), 1, sym_heredoc_body, - STATE(10183), 1, + STATE(10516), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [282052] = 25, + [283649] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9219), 1, - anon_sym_RPAREN, - ACTIONS(9259), 1, + ACTIONS(9248), 1, anon_sym_COMMA, - STATE(6580), 1, + ACTIONS(9250), 1, + anon_sym_RBRACK, + STATE(6626), 1, sym_heredoc_body, - STATE(10582), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10488), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [282143] = 9, + [283740] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9261), 1, + ACTIONS(9252), 1, sym_identifier, - ACTIONS(9263), 1, + ACTIONS(9254), 1, anon_sym_LBRACK, - STATE(1978), 1, + STATE(1999), 1, sym__operator_token, - STATE(6581), 1, + STATE(6627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9265), 2, + ACTIONS(9256), 2, sym_identifier_method_call, sym_instance_var, - ACTIONS(7683), 10, + ACTIONS(7803), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -599857,7 +604654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7685), 21, + ACTIONS(7805), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -599879,15 +604676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [282202] = 5, + [283799] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6582), 1, + STATE(6628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5783), 8, + ACTIONS(195), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -599896,9 +604694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5781), 28, + ACTIONS(173), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -599909,7 +604706,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, @@ -599923,353 +604719,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, - [282253] = 25, + [283850] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9065), 1, + ACTIONS(9073), 1, anon_sym_RPAREN, - ACTIONS(9267), 1, + ACTIONS(9258), 1, anon_sym_COMMA, - STATE(6583), 1, + STATE(6629), 1, sym_heredoc_body, - STATE(10587), 1, + STATE(10553), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [282344] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9023), 1, - anon_sym_LBRACK, - ACTIONS(9269), 1, - sym_identifier, - STATE(1960), 1, - sym__operator_token, - STATE(6584), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9029), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7695), 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(7697), 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, - [282403] = 25, + [283941] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9080), 1, + ACTIONS(9260), 1, anon_sym_RPAREN, - ACTIONS(9271), 1, + ACTIONS(9262), 1, anon_sym_COMMA, - STATE(6585), 1, + STATE(6630), 1, sym_heredoc_body, - STATE(10590), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10559), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [282494] = 9, + [284032] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9025), 1, - sym_identifier, - ACTIONS(9273), 1, - anon_sym_LBRACK, - STATE(1960), 1, - sym__operator_token, - STATE(6586), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9029), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7695), 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(7697), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, + ACTIONS(8364), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, anon_sym_PIPE, + ACTIONS(8612), 1, 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, - [282553] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9011), 1, - sym_identifier, - ACTIONS(9023), 1, - anon_sym_LBRACK, - STATE(1966), 1, - sym__operator_token, - STATE(6587), 1, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9009), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7792), 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(7794), 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(6227), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8620), 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(8624), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - [282612] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8831), 1, - sym_identifier, - ACTIONS(9275), 1, - anon_sym_LBRACK, - STATE(1975), 1, - sym__operator_token, - STATE(6588), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8835), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7886), 10, + ACTIONS(8608), 3, 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(7888), 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(8618), 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, - [282671] = 7, + ACTIONS(8634), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8636), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [284121] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8929), 1, - anon_sym_COMMA, - STATE(6490), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6589), 1, + STATE(6632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6081), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -600278,9 +604937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 26, + ACTIONS(6079), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -600291,6 +604949,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, @@ -600303,74 +604962,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [284172] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [282726] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DOT, - STATE(6590), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9264), 1, + anon_sym_COMMA, + ACTIONS(9266), 1, + anon_sym_RBRACK, + STATE(6633), 1, sym_heredoc_body, + STATE(10710), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 7, - anon_sym_DOT_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5886), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [282781] = 9, + [284263] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9281), 1, + ACTIONS(9222), 1, anon_sym_LBRACK, - STATE(1966), 1, + ACTIONS(9268), 1, + sym_identifier, + STATE(1991), 1, sym__operator_token, - STATE(6591), 1, + STATE(6634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9009), 2, + ACTIONS(9224), 2, sym_identifier_method_call, sym_instance_var, - ACTIONS(7792), 10, + ACTIONS(7788), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -600381,7 +605059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7794), 21, + ACTIONS(7790), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -600403,26 +605081,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [282840] = 6, + [284322] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9277), 1, - anon_sym_LPAREN, - STATE(6592), 1, + STATE(6635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5890), 8, + ACTIONS(6071), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5886), 27, + ACTIONS(6069), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -600450,28 +605127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282893] = 7, + [284373] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8929), 1, - anon_sym_COMMA, - STATE(6530), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6593), 1, + STATE(6636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5876), 8, + ACTIONS(6057), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5811), 26, + ACTIONS(6055), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -600484,6 +605158,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, @@ -600498,301 +605173,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282948] = 9, + [284424] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9116), 1, - sym_identifier, - ACTIONS(9201), 1, - anon_sym_LBRACK, - STATE(1959), 1, - sym__operator_token, - STATE(6594), 1, + ACTIONS(8366), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8993), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7714), 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(7716), 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(6261), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8620), 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(8624), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - [283007] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9261), 1, - sym_identifier, - ACTIONS(9283), 1, - anon_sym_LBRACK, - STATE(1978), 1, - sym__operator_token, - STATE(6595), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9265), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7683), 10, + ACTIONS(8608), 3, 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(7685), 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(8618), 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, - [283066] = 24, + ACTIONS(8634), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8636), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [284513] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8493), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8610), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8634), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6596), 1, + ACTIONS(9094), 1, + anon_sym_RPAREN, + ACTIONS(9270), 1, + anon_sym_COMMA, + STATE(6638), 1, sym_heredoc_body, + STATE(10109), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6309), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [283155] = 24, + [284604] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8325), 1, - anon_sym_RBRACK, - ACTIONS(8608), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8610), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8632), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8634), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6597), 1, + ACTIONS(9272), 1, + anon_sym_RPAREN, + ACTIONS(9274), 1, + anon_sym_COMMA, + STATE(6639), 1, sym_heredoc_body, + STATE(10116), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6311), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8620), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8624), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [283244] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9128), 1, - anon_sym_LPAREN, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9285), 1, - anon_sym_DASH_GT, - ACTIONS(9288), 1, - sym__constant_segment, - ACTIONS(9291), 1, - anon_sym_COLON_COLON, - STATE(6598), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7894), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - STATE(7794), 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(4678), 13, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym_class_var, - anon_sym_QMARK, - sym_private, - sym_protected, - [283315] = 5, + [284695] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6599), 1, + STATE(6640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 9, + ACTIONS(6197), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -600802,7 +605388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 27, + ACTIONS(6195), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -600830,15 +605416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283366] = 5, + [284746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6600), 1, + STATE(6641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 9, + ACTIONS(6201), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -600848,7 +605434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 27, + ACTIONS(6199), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -600876,400 +605462,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283417] = 9, + [284797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9017), 1, - sym_identifier, - ACTIONS(9023), 1, - anon_sym_LBRACK, - STATE(1973), 1, - sym__operator_token, - STATE(6601), 1, + STATE(6642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9021), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7780), 10, + ACTIONS(6205), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_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(7782), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6203), 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_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, - [283476] = 9, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [284848] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9023), 1, - anon_sym_LBRACK, - ACTIONS(9261), 1, - sym_identifier, - STATE(1978), 1, - sym__operator_token, - STATE(6602), 1, + STATE(6643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9265), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7683), 10, + ACTIONS(6209), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_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(7685), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6207), 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_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, - [283535] = 9, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [284899] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9023), 1, - anon_sym_LBRACK, - ACTIONS(9025), 1, - sym_identifier, - STATE(1960), 1, - sym__operator_token, - STATE(6603), 1, + STATE(6644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9029), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7695), 10, + ACTIONS(6181), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_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(7697), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6179), 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_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, - [283594] = 9, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [284950] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8831), 1, - sym_identifier, - ACTIONS(9023), 1, - anon_sym_LBRACK, - STATE(1975), 1, - sym__operator_token, - STATE(6604), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9276), 1, + anon_sym_COMMA, + ACTIONS(9278), 1, + anon_sym_RBRACK, + STATE(6645), 1, sym_heredoc_body, + STATE(10425), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8835), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7886), 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(7888), 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(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 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, - [283653] = 9, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [285041] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9023), 1, - anon_sym_LBRACK, - STATE(1966), 1, - sym__operator_token, - STATE(6605), 1, + STATE(6646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9009), 2, - sym_identifier_method_call, - sym_instance_var, - ACTIONS(7792), 10, + ACTIONS(5798), 9, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_EQ, + 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(7794), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5796), 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, - [283712] = 26, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [285092] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8578), 1, - sym__constant_segment, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8582), 1, - sym_identifier_method_call, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(6606), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9133), 1, + anon_sym_RPAREN, + ACTIONS(9280), 1, + anon_sym_COMMA, + STATE(6647), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9957), 1, - sym__splattable_type, - STATE(10641), 1, - sym_named_type, - STATE(10723), 1, - sym__bare_type, - STATE(10904), 1, - sym_type_instance_param_list, + STATE(10667), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, - sym_self, - sym_underscore_type, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - STATE(7794), 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, - [283805] = 25, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [285183] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9294), 1, + ACTIONS(9282), 1, + anon_sym_RPAREN, + ACTIONS(9284), 1, anon_sym_COMMA, - ACTIONS(9296), 1, - anon_sym_RBRACK, - STATE(6607), 1, + STATE(6648), 1, sym_heredoc_body, - STATE(10305), 1, + STATE(10689), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [283896] = 6, + [285274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9298), 1, - anon_sym_LPAREN, - STATE(6608), 1, + STATE(6649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6213), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -601278,9 +605862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5854), 27, + ACTIONS(6211), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -601304,149 +605887,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283949] = 25, + [285325] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(8811), 1, - anon_sym_RPAREN, - ACTIONS(9300), 1, - anon_sym_COMMA, - STATE(6609), 1, + STATE(6650), 1, sym_heredoc_body, - STATE(10229), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(6399), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6397), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [284040] = 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, + [285376] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9302), 1, - anon_sym_RPAREN, - ACTIONS(9304), 1, + ACTIONS(9286), 1, anon_sym_COMMA, - STATE(6610), 1, + ACTIONS(9288), 1, + anon_sym_RBRACK, + STATE(6651), 1, sym_heredoc_body, - STATE(10230), 1, + STATE(10130), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [284131] = 5, + [285467] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6611), 1, + STATE(6652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 9, + ACTIONS(6217), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -601456,7 +606020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6193), 27, + ACTIONS(6215), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -601484,81 +606048,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284182] = 25, + [285518] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + STATE(6653), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5721), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5719), 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, - ACTIONS(7392), 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, + [285569] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9065), 1, + ACTIONS(9290), 1, anon_sym_RPAREN, - ACTIONS(9306), 1, + ACTIONS(9292), 1, anon_sym_COMMA, - STATE(6612), 1, + STATE(6654), 1, sym_heredoc_body, - STATE(10231), 1, + STATE(10160), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [284273] = 5, + [285660] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6613), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9294), 1, + anon_sym_RPAREN, + ACTIONS(9296), 1, + anon_sym_COMMA, + STATE(6655), 1, + sym_heredoc_body, + STATE(10162), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [285751] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 9, + ACTIONS(6221), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -601568,7 +606244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 27, + ACTIONS(6219), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -601596,15 +606272,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284324] = 5, + [285802] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6614), 1, + STATE(6657), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5816), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5814), 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, + 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, + [285853] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 9, + ACTIONS(6243), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -601614,7 +606336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 27, + ACTIONS(6241), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -601642,42 +606364,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284375] = 10, + [285904] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(8934), 1, + sym_identifier, + ACTIONS(9298), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym__operator_token, + STATE(6659), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8938), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7752), 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(7754), 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, + [285963] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8628), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8638), 1, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9300), 1, + anon_sym_COMMA, + ACTIONS(9302), 1, + anon_sym_RBRACK, + STATE(6660), 1, + sym_heredoc_body, + STATE(10326), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [286054] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, sym__start_of_index_operator, - STATE(6615), 1, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(8950), 1, + anon_sym_RPAREN, + ACTIONS(9304), 1, + anon_sym_COMMA, + STATE(6661), 1, sym_heredoc_body, + STATE(10622), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8630), 2, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8642), 4, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6528), 7, + [286145] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6662), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6225), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 20, + anon_sym_AMP_STAR, + ACTIONS(6223), 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, @@ -601689,40 +606587,38 @@ 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, - [284436] = 8, + [286196] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8638), 1, - sym__start_of_index_operator, - STATE(6616), 1, + ACTIONS(1133), 1, + anon_sym_EQ, + STATE(6663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 8, - anon_sym_RBRACK, + ACTIONS(195), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 24, + ACTIONS(173), 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, @@ -601738,26 +606634,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_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284493] = 8, + anon_sym_COLON2, + [286249] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(8638), 1, + ACTIONS(8632), 1, sym__start_of_index_operator, - STATE(6617), 1, + STATE(6664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 8, + ACTIONS(6247), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -601766,12 +606660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 24, + ACTIONS(6245), 26, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -601787,135 +606682,219 @@ 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, - [284550] = 12, + [286304] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8638), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - STATE(6618), 1, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9306), 1, + anon_sym_RPAREN, + ACTIONS(9308), 1, + anon_sym_COMMA, + STATE(6665), 1, sym_heredoc_body, + STATE(10416), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8620), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8630), 2, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8640), 4, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 7, - anon_sym_RBRACK, + [286395] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 14, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, sym_binary_ampersand, + ACTIONS(9310), 1, + anon_sym_RPAREN, + ACTIONS(9312), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, + STATE(6666), 1, + sym_heredoc_body, + STATE(10749), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, 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, - [284615] = 21, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [286486] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(8483), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(8610), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(8612), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8634), 1, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, anon_sym_AMP_AMP, - ACTIONS(8636), 1, + ACTIONS(8630), 1, anon_sym_PIPE_PIPE, - ACTIONS(8638), 1, + ACTIONS(8632), 1, sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(8638), 1, sym_binary_ampersand, - STATE(6619), 1, + STATE(6667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8620), 2, + ACTIONS(6083), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8626), 2, + ACTIONS(8620), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8630), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8614), 3, + ACTIONS(8608), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5951), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - ACTIONS(8624), 4, + ACTIONS(8618), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [284698] = 5, + [286575] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6620), 1, + ACTIONS(9314), 1, + anon_sym_EQ, + STATE(6668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 9, - anon_sym_RBRACK, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -601924,7 +606903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 27, + ACTIONS(5937), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -601949,111 +606928,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284749] = 5, + anon_sym_COLON2, + [286628] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6621), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 9, + ACTIONS(6255), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6207), 27, - sym__start_of_index_operator, + ACTIONS(6253), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 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, + [286711] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9055), 1, + sym_identifier, + ACTIONS(9316), 1, + anon_sym_LBRACK, + STATE(1998), 1, + sym__operator_token, + STATE(6670), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9059), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7740), 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(7742), 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, + [286770] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [284800] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6622), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9318), 1, + anon_sym_RPAREN, + ACTIONS(9320), 1, + anon_sym_COMMA, + STATE(6671), 1, sym_heredoc_body, + STATE(10497), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6211), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [286861] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9073), 1, + anon_sym_RPAREN, + ACTIONS(9322), 1, + anon_sym_COMMA, + STATE(6672), 1, + sym_heredoc_body, + STATE(10630), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [286952] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [284851] = 5, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9324), 1, + anon_sym_RPAREN, + ACTIONS(9326), 1, + anon_sym_COMMA, + STATE(6673), 1, + sym_heredoc_body, + STATE(10499), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [287043] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6623), 1, + ACTIONS(9328), 1, + anon_sym_of, + STATE(6674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 9, - anon_sym_RBRACK, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -602062,7 +607260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6215), 27, + ACTIONS(5981), 27, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -602074,7 +607273,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, @@ -602087,18 +607286,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, - [284902] = 5, + [287096] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6624), 1, + STATE(6675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 9, + ACTIONS(6239), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -602108,7 +607306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6219), 27, + ACTIONS(6237), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -602136,26 +607334,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284953] = 5, + [287147] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6625), 1, + STATE(6676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 9, - anon_sym_RBRACK, + ACTIONS(5852), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 27, + ACTIONS(5850), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -602179,93 +607378,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [285004] = 25, + [287198] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9094), 1, + anon_sym_RPAREN, + ACTIONS(9330), 1, + anon_sym_COMMA, + STATE(6677), 1, + sym_heredoc_body, + STATE(10635), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [287289] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9308), 1, + ACTIONS(9133), 1, + anon_sym_RPAREN, + ACTIONS(9332), 1, anon_sym_COMMA, - ACTIONS(9310), 1, - anon_sym_RBRACK, - STATE(6626), 1, + STATE(6678), 1, sym_heredoc_body, - STATE(10321), 1, - aux_sym_array_repeat1, + STATE(10638), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285095] = 9, + [287380] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9027), 1, - anon_sym_LBRACK, - ACTIONS(9269), 1, + ACTIONS(9150), 1, sym_identifier, - STATE(1960), 1, + ACTIONS(9334), 1, + anon_sym_LBRACK, + STATE(2005), 1, sym__operator_token, - STATE(6627), 1, + STATE(6679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9029), 2, + ACTIONS(9154), 2, sym_identifier_method_call, sym_instance_var, - ACTIONS(7695), 10, + ACTIONS(7764), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -602276,7 +607540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7697), 21, + ACTIONS(7766), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -602298,282 +607562,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [285154] = 17, + [287439] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8616), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8618), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8622), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8628), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6628), 1, + ACTIONS(9162), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, + anon_sym_COMMA, + STATE(6680), 1, sym_heredoc_body, + STATE(10644), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8620), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8630), 2, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8624), 4, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8640), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5961), 5, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + [287530] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9170), 1, + sym_identifier, + STATE(1985), 1, + sym__operator_token, + STATE(6681), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9174), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7776), 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(5959), 8, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(7778), 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, + [287589] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [285229] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1181), 1, - anon_sym_EQ, - STATE(6629), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9184), 1, + anon_sym_RPAREN, + ACTIONS(9338), 1, + anon_sym_COMMA, + STATE(6682), 1, sym_heredoc_body, + STATE(10647), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(173), 27, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, + [287680] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9192), 1, + sym_identifier, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(1985), 1, + sym__operator_token, + STATE(6683), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9174), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7776), 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(7778), 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, - [285282] = 5, + [287739] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6630), 1, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9220), 1, + sym_identifier, + STATE(1991), 1, + sym__operator_token, + STATE(6684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9224), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7788), 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(6043), 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, + ACTIONS(7790), 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, - [285333] = 5, + [287798] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6631), 1, + ACTIONS(9252), 1, + sym_identifier, + ACTIONS(9342), 1, + anon_sym_LBRACK, + STATE(1999), 1, + sym__operator_token, + STATE(6685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9256), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7803), 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(6047), 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, + ACTIONS(7805), 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, + [287857] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6087), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8626), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8628), 1, anon_sym_AMP_AMP, + ACTIONS(8630), 1, anon_sym_PIPE_PIPE, - [285384] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6632), 1, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6085), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5797), 27, - sym__start_of_index_operator, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 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, + [287946] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9268), 1, + sym_identifier, + ACTIONS(9344), 1, + anon_sym_LBRACK, + STATE(1991), 1, + sym__operator_token, + STATE(6687), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9224), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7788), 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(7790), 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, - [285435] = 13, + [288005] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(8628), 1, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8638), 1, + ACTIONS(8632), 1, sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6633), 1, + STATE(6688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8620), 2, + ACTIONS(8614), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8630), 2, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8640), 4, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 7, + ACTIONS(6139), 7, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -602581,7 +608047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 13, + ACTIONS(6137), 14, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -602595,215 +608062,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [285502] = 25, + [288070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - ACTIONS(9312), 1, - anon_sym_RPAREN, - ACTIONS(9314), 1, - anon_sym_COMMA, - STATE(6634), 1, + STATE(6689), 1, sym_heredoc_body, - STATE(10349), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(6231), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6229), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285593] = 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, + [288121] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9316), 1, + ACTIONS(9162), 1, anon_sym_RPAREN, - ACTIONS(9318), 1, + ACTIONS(9346), 1, anon_sym_COMMA, - STATE(6635), 1, + STATE(6690), 1, sym_heredoc_body, - STATE(10350), 1, - aux_sym_array_repeat1, + STATE(10524), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285684] = 25, + [288212] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - ACTIONS(9080), 1, + ACTIONS(9348), 1, anon_sym_RPAREN, - ACTIONS(9320), 1, + ACTIONS(9350), 1, anon_sym_COMMA, - STATE(6636), 1, + STATE(6691), 1, sym_heredoc_body, - STATE(10352), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10526), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285775] = 6, + [288303] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9322), 1, - anon_sym_of, - STATE(6637), 1, + STATE(6692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, + ACTIONS(6265), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -602812,8 +608258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5785), 27, - sym__line_break, + ACTIONS(6263), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -602825,7 +608270,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, @@ -602838,45 +608283,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [285828] = 11, + [288354] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, + ACTIONS(5975), 1, + anon_sym_RBRACK, + ACTIONS(8602), 1, + anon_sym_DOT_DOT, + ACTIONS(8604), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8606), 1, anon_sym_DOT, - ACTIONS(8628), 1, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(8638), 1, + ACTIONS(8626), 1, + anon_sym_QMARK, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, sym__start_of_index_operator, - STATE(6638), 1, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8630), 2, + ACTIONS(5970), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8640), 4, + ACTIONS(8608), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8642), 4, + ACTIONS(8636), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 7, + [288443] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6694), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6273), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 16, + anon_sym_AMP_STAR, + ACTIONS(6271), 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, @@ -602888,150 +608392,145 @@ 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, - [285891] = 25, + [288494] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5811), 1, - sym__end_of_with_expression, - ACTIONS(8929), 1, - anon_sym_COMMA, - ACTIONS(8931), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8933), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8955), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8957), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8959), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6490), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6639), 1, + ACTIONS(9184), 1, + anon_sym_RPAREN, + ACTIONS(9352), 1, + anon_sym_COMMA, + STATE(6695), 1, sym_heredoc_body, + STATE(10600), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8943), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285982] = 15, + [288585] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8612), 1, - anon_sym_DOT, - ACTIONS(8616), 1, - anon_sym_PIPE, - ACTIONS(8618), 1, - anon_sym_CARET, - ACTIONS(8628), 1, - anon_sym_AMP_STAR, - ACTIONS(8638), 1, - sym__start_of_index_operator, - ACTIONS(8644), 1, - sym_binary_ampersand, - STATE(6640), 1, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9055), 1, + sym_identifier, + STATE(1998), 1, + sym__operator_token, + STATE(6696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8620), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8630), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8640), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8642), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 6, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(9059), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7740), 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(5971), 12, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(7742), 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_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [286053] = 9, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [288644] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9023), 1, + ACTIONS(8936), 1, anon_sym_LBRACK, - ACTIONS(9239), 1, + ACTIONS(9150), 1, sym_identifier, - STATE(1964), 1, + STATE(2005), 1, sym__operator_token, - STATE(6641), 1, + STATE(6697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9164), 2, + ACTIONS(9154), 2, sym_identifier_method_call, sym_instance_var, - ACTIONS(7669), 10, + ACTIONS(7764), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -603042,7 +608541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(7671), 21, + ACTIONS(7766), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -603064,199 +608563,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [286112] = 5, + [288703] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6642), 1, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9192), 1, + sym_identifier, + STATE(1985), 1, + sym__operator_token, + STATE(6698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9174), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7776), 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(6407), 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, + ACTIONS(7778), 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, - [286163] = 5, + [288762] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6643), 1, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9252), 1, + sym_identifier, + STATE(1999), 1, + sym__operator_token, + STATE(6699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9256), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7803), 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(6352), 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, + ACTIONS(7805), 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, - [286214] = 5, + [288821] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6644), 1, + ACTIONS(8936), 1, + anon_sym_LBRACK, + ACTIONS(9268), 1, + sym_identifier, + STATE(1991), 1, + sym__operator_token, + STATE(6700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9224), 2, + sym_identifier_method_call, + sym_instance_var, + ACTIONS(7788), 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(6411), 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, + ACTIONS(7790), 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, + [288880] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [286265] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6645), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9354), 1, + anon_sym_RPAREN, + ACTIONS(9356), 1, + anon_sym_COMMA, + STATE(6701), 1, sym_heredoc_body, + STATE(10611), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6356), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [286316] = 5, + [288971] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6646), 1, + STATE(6702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 9, + ACTIONS(6277), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, @@ -603266,7 +608797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 27, + ACTIONS(6275), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -603294,72 +608825,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286367] = 5, + [289022] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6647), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9358), 1, + anon_sym_RPAREN, + ACTIONS(9360), 1, + anon_sym_COMMA, + STATE(6703), 1, sym_heredoc_body, + STATE(10680), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6364), 27, - sym__start_of_index_operator, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [286418] = 5, + [289113] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6648), 1, + STATE(6704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 9, - anon_sym_RBRACK, + ACTIONS(5864), 9, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, + anon_sym_EQ, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 27, + ACTIONS(5862), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -603383,66 +608935,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286469] = 5, + [289164] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6649), 1, + ACTIONS(8606), 1, + anon_sym_DOT, + ACTIONS(8610), 1, + anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, + anon_sym_EQ_EQ, + ACTIONS(8622), 1, + anon_sym_AMP_STAR, + ACTIONS(8628), 1, + anon_sym_AMP_AMP, + ACTIONS(8630), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8632), 1, + sym__start_of_index_operator, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 9, + ACTIONS(6143), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8620), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8608), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6324), 27, - sym__start_of_index_operator, + ACTIONS(6141), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 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, - [286520] = 6, + [289247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1191), 1, - anon_sym_EQ, - STATE(6650), 1, + STATE(6706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6323), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -603451,9 +609017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 26, + ACTIONS(6321), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -603464,6 +609029,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, @@ -603476,17 +609042,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, - [286572] = 5, + [289298] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6651), 1, + STATE(6707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6516), 8, + ACTIONS(143), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -603495,9 +609063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6514), 27, + ACTIONS(145), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -603521,64 +609088,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, - [286622] = 5, + [289349] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6652), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9362), 1, + anon_sym_RPAREN, + ACTIONS(9364), 1, + anon_sym_COMMA, + STATE(6708), 1, sym_heredoc_body, + STATE(10696), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6061), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6059), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [286672] = 6, + [289440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9324), 1, - anon_sym_EQ, - STATE(6653), 1, + STATE(6709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(6281), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -603587,9 +609175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 26, + ACTIONS(6279), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -603600,6 +609187,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, @@ -603612,130 +609200,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, - [286724] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - STATE(6654), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6526), 20, - sym__line_break, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - 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, - [286784] = 23, + [289491] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8871), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8873), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8879), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8883), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8889), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8893), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8895), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8897), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6655), 1, + ACTIONS(9366), 1, + anon_sym_RPAREN, + ACTIONS(9368), 1, + anon_sym_COMMA, + STATE(6710), 1, sym_heredoc_body, + STATE(10720), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6508), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8881), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8887), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8901), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [286870] = 5, + [289582] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6656), 1, + STATE(6711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6065), 8, + ACTIONS(6327), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -603744,9 +609287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6063), 27, + ACTIONS(6325), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -603770,17 +609312,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, - [286920] = 5, + [289633] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6657), 1, + STATE(6712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6171), 8, + ACTIONS(6327), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -603789,9 +609333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6169), 27, + ACTIONS(6325), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -603815,65 +609358,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, - [286970] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9326), 1, - sym_identifier, - STATE(4217), 1, - sym__operator_token, - STATE(6658), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9332), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9328), 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(9330), 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, - [287026] = 5, + [289684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6659), 1, + STATE(6713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6069), 8, + ACTIONS(6285), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -603882,9 +609379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6067), 27, + ACTIONS(6283), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -603908,62 +609404,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, - [287076] = 5, + [289735] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6660), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9370), 1, + anon_sym_RPAREN, + ACTIONS(9372), 1, + anon_sym_COMMA, + STATE(6714), 1, sym_heredoc_body, + STATE(10730), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6336), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [287126] = 5, + [289826] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6661), 1, + STATE(6715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6191), 8, + ACTIONS(6331), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -603972,9 +609491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6189), 27, + ACTIONS(6329), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -603998,17 +609516,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, - [287176] = 5, + [289877] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6662), 1, + STATE(6716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6073), 8, + ACTIONS(6335), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604017,9 +609537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6071), 27, + ACTIONS(6333), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -604043,107 +609562,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287226] = 5, + [289928] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6663), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6073), 8, - anon_sym_DOT_DOT, + ACTIONS(8606), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8610), 1, anon_sym_PIPE, + ACTIONS(8612), 1, + anon_sym_CARET, + ACTIONS(8616), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8622), 1, anon_sym_AMP_STAR, - ACTIONS(6071), 27, + ACTIONS(8632), 1, sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8638), 1, + sym_binary_ampersand, + STATE(6717), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8614), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8624), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8618), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8634), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8636), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6147), 5, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6145), 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, - [287276] = 5, + [290003] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6664), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + ACTIONS(9374), 1, + anon_sym_RPAREN, + ACTIONS(9376), 1, + anon_sym_COMMA, + STATE(6718), 1, sym_heredoc_body, + STATE(10070), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6195), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6193), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [287326] = 5, + [290094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6665), 1, + STATE(6719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6077), 8, + ACTIONS(6339), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604152,9 +609707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6075), 27, + ACTIONS(6337), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -604178,17 +609732,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, - [287376] = 5, + [290145] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6666), 1, + STATE(6720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6199), 8, + ACTIONS(6343), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604197,9 +609753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6197), 27, + ACTIONS(6341), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -604223,17 +609778,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, - [287426] = 5, + [290196] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6667), 1, + STATE(6721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6203), 8, + ACTIONS(6347), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604242,9 +609799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6201), 27, + ACTIONS(6345), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -604268,17 +609824,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, - [287476] = 5, + [290247] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6668), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8677), 1, + sym__constant_segment, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8681), 1, + sym_identifier_method_call, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(6722), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9807), 1, + sym__splattable_type, + STATE(10101), 1, + sym_named_type, + STATE(10823), 1, + sym__bare_type, + STATE(11377), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8683), 2, + sym_self, + sym_underscore_type, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + STATE(7836), 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, + [290340] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6025), 8, + ACTIONS(6103), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604287,7 +609911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6023), 27, + ACTIONS(6101), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -604315,15 +609939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287526] = 5, + [290390] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6669), 1, + STATE(6724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6209), 8, + ACTIONS(6269), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604332,7 +609956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6207), 27, + ACTIONS(6267), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -604360,15 +609984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287576] = 5, + [290440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6670), 1, + STATE(6725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6213), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604377,7 +610001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6211), 27, + ACTIONS(6353), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -604405,121 +610029,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287626] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, - anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8957), 1, - anon_sym_AMP_AMP, - ACTIONS(8959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6671), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6332), 4, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8963), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [287708] = 5, + [290490] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6672), 1, + ACTIONS(9378), 1, + sym_identifier, + STATE(6415), 1, + sym__operator_token, + STATE(6726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6397), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9384), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9380), 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(6395), 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(9382), 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, - [287758] = 5, + [290546] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6673), 1, + ACTIONS(9386), 1, + anon_sym_of, + STATE(6727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, + ACTIONS(5848), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604528,7 +610096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6431), 27, + ACTIONS(5844), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -604541,7 +610109,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, @@ -604556,15 +610123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287808] = 5, + [290598] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6674), 1, + STATE(6728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6437), 8, + ACTIONS(6435), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604573,7 +610140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6435), 27, + ACTIONS(6433), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -604601,150 +610168,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287858] = 5, + [290648] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6675), 1, + ACTIONS(9388), 1, + sym_identifier, + STATE(2518), 1, + sym__operator_token, + STATE(6729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6217), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9394), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9390), 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(6215), 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(9392), 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, + [290704] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - [287908] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6676), 1, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(6730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6221), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9396), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6219), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 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, - [287958] = 5, + [290790] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6677), 1, + ACTIONS(9398), 1, + sym_identifier, + STATE(3696), 1, + sym__operator_token, + STATE(6731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6433), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9404), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9400), 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(6431), 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(9402), 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, - [288008] = 5, + [290846] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6678), 1, + STATE(6732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6049), 8, + ACTIONS(5700), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604753,7 +610344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6047), 27, + ACTIONS(5698), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -604781,15 +610372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288058] = 5, + [290896] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6679), 1, + STATE(6733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6441), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604798,7 +610389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6439), 27, + ACTIONS(6389), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -604826,105 +610417,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288108] = 5, + [290946] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6680), 1, + ACTIONS(9406), 1, + sym_identifier, + STATE(3550), 1, + sym__operator_token, + STATE(6734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6225), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9412), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9408), 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(6223), 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(9410), 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, - [288158] = 5, + [291002] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6681), 1, + ACTIONS(9414), 1, + sym_identifier, + STATE(5183), 1, + sym__operator_token, + STATE(6735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6449), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9420), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9416), 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(6447), 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(9418), 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, - [288208] = 5, + [291058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6682), 1, + STATE(6736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -604933,7 +610530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5947), 27, + ACTIONS(6389), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -604961,175 +610558,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288258] = 23, + [291108] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8931), 1, + ACTIONS(8867), 1, anon_sym_DOT_DOT, - ACTIONS(8933), 1, + ACTIONS(8869), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(8955), 1, + ACTIONS(8891), 1, anon_sym_QMARK, - ACTIONS(8957), 1, + ACTIONS(8893), 1, anon_sym_AMP_AMP, - ACTIONS(8959), 1, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(8903), 1, sym_binary_ampersand, - STATE(6683), 1, + STATE(6737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6459), 2, + ACTIONS(6489), 2, sym__end_of_with_expression, anon_sym_COMMA, - ACTIONS(8943), 2, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [288344] = 5, + [291194] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6684), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6401), 8, + ACTIONS(8867), 1, anon_sym_DOT_DOT, + ACTIONS(8869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8871), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8875), 1, anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(6399), 27, + ACTIONS(8891), 1, + anon_sym_QMARK, + ACTIONS(8893), 1, + anon_sym_AMP_AMP, + ACTIONS(8895), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8897), 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(8903), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + STATE(6738), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6509), 2, + sym__end_of_with_expression, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8889), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [288394] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6685), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6421), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8873), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6419), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 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, - [288444] = 8, + [291280] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9334), 1, + ACTIONS(9422), 1, sym_identifier, - STATE(5481), 1, + STATE(5805), 1, sym__operator_token, - STATE(6686), 1, + STATE(6739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9340), 2, + ACTIONS(9428), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(9336), 10, + ACTIONS(9424), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -605140,7 +610710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(9338), 21, + ACTIONS(9426), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -605162,19 +610732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [288500] = 7, + [291336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6749), 1, - anon_sym_LPAREN2, - ACTIONS(9342), 1, - anon_sym_EQ, - STATE(6687), 1, + STATE(6740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -605183,8 +610749,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 25, + ACTIONS(6397), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -605195,6 +610762,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, @@ -605209,15 +610777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288554] = 5, + [291386] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6688), 1, + STATE(6741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6231), 8, + ACTIONS(6415), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -605226,7 +610794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6229), 27, + ACTIONS(6413), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -605254,15 +610822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288604] = 5, + [291436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6689), 1, + STATE(6742), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6425), 8, + ACTIONS(6419), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -605271,7 +610839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6423), 27, + ACTIONS(6417), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -605299,172 +610867,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288654] = 7, + [291486] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6749), 1, - anon_sym_LPAREN2, - ACTIONS(9344), 1, - anon_sym_EQ, - STATE(6690), 1, + ACTIONS(9430), 1, + sym_identifier, + STATE(3217), 1, + sym__operator_token, + STATE(6743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9436), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9432), 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(173), 25, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_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(9434), 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, + [291542] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8867), 1, + anon_sym_DOT_DOT, + ACTIONS(8869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8891), 1, anon_sym_QMARK, + ACTIONS(8893), 1, anon_sym_AMP_AMP, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - [288708] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6691), 1, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6237), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6227), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6235), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 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, - [288758] = 23, + [291628] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(8867), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8869), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8891), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8893), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8903), 1, sym_binary_ampersand, - STATE(6692), 1, + STATE(6745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(6261), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9346), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [288844] = 6, + [291714] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9348), 1, - anon_sym_of, - STATE(6693), 1, + STATE(6746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5807), 8, + ACTIONS(6423), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -605473,7 +611058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5803), 26, + ACTIONS(6421), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -605486,6 +611071,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, @@ -605500,204 +611086,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288896] = 23, + [291764] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8931), 1, + ACTIONS(8867), 1, anon_sym_DOT_DOT, - ACTIONS(8933), 1, + ACTIONS(8869), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(8955), 1, + ACTIONS(8891), 1, anon_sym_QMARK, - ACTIONS(8957), 1, + ACTIONS(8893), 1, anon_sym_AMP_AMP, - ACTIONS(8959), 1, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(8903), 1, sym_binary_ampersand, - STATE(6694), 1, + STATE(6747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5934), 2, + ACTIONS(5970), 2, sym__end_of_with_expression, anon_sym_COMMA, - ACTIONS(8943), 2, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [288982] = 23, + [291850] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8931), 1, - anon_sym_DOT_DOT, - ACTIONS(8933), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, - anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8955), 1, - anon_sym_QMARK, - ACTIONS(8957), 1, - anon_sym_AMP_AMP, - ACTIONS(8959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6695), 1, + ACTIONS(9438), 1, + sym_identifier, + STATE(4445), 1, + sym__operator_token, + STATE(6748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6461), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8943), 2, + ACTIONS(9444), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9440), 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(9442), 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(8949), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 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(8937), 3, + [291906] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6749), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6427), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + anon_sym_AMP_STAR, + ACTIONS(6425), 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(8965), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [289068] = 23, + 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, + [291956] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9035), 1, + sym__constant_segment, + ACTIONS(9038), 1, + anon_sym_COLON_COLON, + ACTIONS(9446), 1, + anon_sym_LPAREN, + ACTIONS(9448), 1, + anon_sym_DASH_GT, + STATE(6750), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8040), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + ACTIONS(4656), 12, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + STATE(7836), 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, + [292026] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9450), 1, + sym_identifier, + STATE(6024), 1, + sym__operator_token, + STATE(6751), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9456), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9452), 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(9454), 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, + [292082] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8931), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8933), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8955), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8957), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8959), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6696), 1, + STATE(6752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6469), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8943), 2, + ACTIONS(6459), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [289154] = 5, + [292168] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6697), 1, + STATE(6753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6081), 8, + ACTIONS(6467), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -605706,7 +611425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6079), 27, + ACTIONS(6465), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -605734,42 +611453,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289204] = 10, + [292218] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8961), 1, - sym__start_of_index_operator, - STATE(6698), 1, + STATE(6754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6475), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 20, + anon_sym_AMP_STAR, + ACTIONS(6473), 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, @@ -605781,44 +611494,89 @@ 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, - [289264] = 8, + [292268] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(6699), 1, + ACTIONS(9458), 1, + sym_identifier, + STATE(3621), 1, + sym__operator_token, + STATE(6755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8797), 2, - sym__binary_double_star, + ACTIONS(9464), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9460), 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(9462), 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, - ACTIONS(6556), 7, + [292324] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6756), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6479), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 24, - sym__line_break, + ACTIONS(6477), 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, @@ -605829,39 +611587,36 @@ 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, - [289320] = 8, + [292374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8961), 1, - sym__start_of_index_operator, - STATE(6700), 1, + STATE(6757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6483), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 24, + ACTIONS(6481), 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, @@ -605877,18 +611632,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, - [289376] = 5, + [292424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6701), 1, + STATE(6758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6241), 8, + ACTIONS(6443), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -605897,7 +611653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6239), 27, + ACTIONS(6441), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -605925,15 +611681,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289426] = 5, + [292474] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6702), 1, + ACTIONS(9466), 1, + sym_identifier, + STATE(5353), 1, + sym__operator_token, + STATE(6759), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9472), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9468), 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(9470), 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, + [292530] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6457), 8, + ACTIONS(6463), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -605942,7 +611746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6455), 27, + ACTIONS(6461), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -605970,112 +611774,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289476] = 12, + [292580] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8795), 1, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - STATE(6703), 1, + ACTIONS(8853), 1, + anon_sym_QMARK, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(6761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, + ACTIONS(6373), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8797), 2, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8805), 4, + ACTIONS(8835), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8845), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 6, - anon_sym_DOT_DOT, - anon_sym_LT, + [292666] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9119), 1, + sym__constant_segment, + ACTIONS(9122), 1, + anon_sym_COLON_COLON, + ACTIONS(9446), 1, + anon_sym_LPAREN, + ACTIONS(9448), 1, + anon_sym_DASH_GT, + STATE(6762), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8042), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + ACTIONS(4678), 12, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_STAR, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 14, - sym__line_break, - sym_binary_ampersand, + anon_sym_def, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + STATE(7836), 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, + [292736] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9140), 1, + sym__constant_segment, + ACTIONS(9143), 1, + anon_sym_COLON_COLON, + ACTIONS(9446), 1, + anon_sym_LPAREN, + ACTIONS(9448), 1, + anon_sym_DASH_GT, + STATE(6763), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8015), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + ACTIONS(4628), 12, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + STATE(7836), 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, + [292806] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 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(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8853), 1, anon_sym_QMARK, + ACTIONS(8855), 1, anon_sym_AMP_AMP, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - [289540] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6704), 1, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(6764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6245), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6083), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6243), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8845), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, + [292892] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(6765), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6518), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8845), 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, - [289590] = 5, + ACTIONS(8859), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [292974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6705), 1, + STATE(6766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6467), 8, + ACTIONS(6451), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606084,7 +612088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6465), 27, + ACTIONS(6449), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606112,15 +612116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289640] = 5, + [293024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6706), 1, + STATE(6767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6251), 8, + ACTIONS(6495), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606129,7 +612133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6249), 27, + ACTIONS(6493), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606157,15 +612161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289690] = 5, + [293074] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6707), 1, + STATE(6768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6255), 8, + ACTIONS(5911), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606174,9 +612178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6253), 27, + ACTIONS(5909), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -606202,15 +612205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289740] = 5, + anon_sym_COLON2, + [293124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6708), 1, + STATE(6769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6259), 8, + ACTIONS(6499), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606219,7 +612223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6257), 27, + ACTIONS(6497), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606247,15 +612251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289790] = 5, + [293174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6709), 1, + STATE(6770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6263), 8, + ACTIONS(6503), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606264,7 +612268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6261), 27, + ACTIONS(6501), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606292,36 +612296,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289840] = 8, + [293224] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8961), 1, - sym__start_of_index_operator, - STATE(6710), 1, + STATE(6771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(195), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 24, + ACTIONS(173), 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, @@ -606337,70 +612337,82 @@ 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, - [289896] = 12, + [293274] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - STATE(6711), 1, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(6772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8943), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8953), 2, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8963), 4, + ACTIONS(9474), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 14, - sym__end_of_with_expression, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - [289960] = 5, + [293360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6712), 1, + STATE(6773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6085), 8, + ACTIONS(5721), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606409,7 +612421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6083), 27, + ACTIONS(5719), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606437,139 +612449,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290010] = 21, + [293410] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8957), 1, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8959), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6713), 1, + STATE(6774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8943), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(8954), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5951), 4, - sym__end_of_with_expression, - anon_sym_COMMA, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [293496] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8831), 1, + anon_sym_DOT_DOT, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8947), 4, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(6775), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6085), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [290092] = 23, + [293582] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6714), 1, + STATE(6776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9350), 2, + ACTIONS(9476), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [290178] = 5, + [293668] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6715), 1, + STATE(6777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6342), 8, + ACTIONS(6087), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606578,7 +612655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6340), 27, + ACTIONS(6085), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606606,153 +612683,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290228] = 17, + [293718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, - anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6716), 1, + STATE(6778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, + ACTIONS(6077), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + anon_sym_AMP_STAR, + ACTIONS(6075), 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(8965), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 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, - [290302] = 13, + [293768] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6717), 1, + STATE(6779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8963), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(6081), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 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, - [290368] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8951), 1, anon_sym_AMP_STAR, - ACTIONS(8961), 1, + ACTIONS(6079), 27, sym__start_of_index_operator, - STATE(6718), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8963), 4, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 16, - sym__end_of_with_expression, - sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -606764,81 +612769,82 @@ 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, - [290430] = 23, + [293818] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8931), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8933), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8955), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8957), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8959), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6719), 1, + STATE(6780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6506), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8943), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(9478), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [290516] = 5, + [293904] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6720), 1, + STATE(6781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6267), 8, + ACTIONS(6093), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606847,7 +612853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6265), 27, + ACTIONS(6091), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606875,15 +612881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290566] = 5, + [293954] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6721), 1, + STATE(6782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6271), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606892,7 +612898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6269), 27, + ACTIONS(5694), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606920,15 +612926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290616] = 5, + [294004] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6722), 1, + STATE(6783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6275), 8, + ACTIONS(5696), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606937,7 +612943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6273), 27, + ACTIONS(5694), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -606965,15 +612971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290666] = 5, + [294054] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6723), 1, + STATE(6784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6279), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -606982,7 +612988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6277), 27, + ACTIONS(6437), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607010,133 +613016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290716] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, - anon_sym_CARET, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6724), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8963), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [290786] = 23, + [294104] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(6725), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9352), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7394), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7422), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [290872] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6726), 1, + STATE(6785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6283), 8, + ACTIONS(6507), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607145,7 +613033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6281), 27, + ACTIONS(6505), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607173,182 +613061,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290922] = 19, + [294154] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, - anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8961), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6727), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8963), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5975), 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, - [291000] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5981), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(8833), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8957), 1, + ACTIONS(8853), 1, + anon_sym_QMARK, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6728), 1, + STATE(6786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8943), 2, + ACTIONS(6095), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 5, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [291080] = 8, + [294240] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9354), 1, - sym_identifier, - STATE(6220), 1, - sym__operator_token, - STATE(6729), 1, + STATE(6787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9360), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9356), 10, + ACTIONS(6099), 8, + anon_sym_DOT_DOT, + anon_sym_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(9358), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6097), 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, - [291136] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [294290] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6730), 1, + STATE(6788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6287), 8, + ACTIONS(6099), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607357,7 +613186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6285), 27, + ACTIONS(6097), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607385,15 +613214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291186] = 5, + [294340] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6731), 1, + STATE(6789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5712), 8, + ACTIONS(6439), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607402,7 +613231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5710), 27, + ACTIONS(6437), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607430,15 +613259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291236] = 5, + [294390] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6732), 1, + STATE(6790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6089), 8, + ACTIONS(5923), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607447,7 +613276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6087), 27, + ACTIONS(5921), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607475,15 +613304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291286] = 5, + [294440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6733), 1, + STATE(6791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6291), 8, + ACTIONS(6107), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607492,7 +613321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6289), 27, + ACTIONS(6105), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607520,15 +613349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291336] = 5, + [294490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6734), 1, + STATE(6792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6093), 8, + ACTIONS(6111), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607537,7 +613366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6091), 27, + ACTIONS(6109), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607565,15 +613394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291386] = 5, + [294540] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6735), 1, + STATE(6793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6532), 8, + ACTIONS(5717), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607582,7 +613411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6530), 27, + ACTIONS(5715), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607610,15 +613439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291436] = 5, + [294590] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6736), 1, + STATE(6794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6115), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607627,7 +613456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5955), 27, + ACTIONS(6113), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607655,200 +613484,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291486] = 23, + [294640] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(6737), 1, + STATE(6795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6247), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(5717), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(5715), 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(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [291572] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8957), 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(8959), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6738), 1, + [294690] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(6471), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6107), 4, + anon_sym_AMP_STAR, + ACTIONS(6469), 27, + sym__start_of_index_operator, sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8963), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [291654] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8957), 1, - anon_sym_AMP_AMP, - ACTIONS(8959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6739), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8943), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6403), 4, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [291736] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [294740] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6740), 1, + STATE(6797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6097), 8, + ACTIONS(6181), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607857,7 +613591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6095), 27, + ACTIONS(6179), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607885,15 +613619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291786] = 5, + [294790] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6741), 1, + STATE(6798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6463), 8, + ACTIONS(6471), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607902,7 +613636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6461), 27, + ACTIONS(6469), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607930,15 +613664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291836] = 5, + [294840] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6742), 1, + ACTIONS(1191), 1, + anon_sym_EQ, + STATE(6799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6520), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607947,7 +613683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6518), 27, + ACTIONS(173), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -607960,7 +613696,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, @@ -607975,15 +613710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291886] = 5, + [294892] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6743), 1, + STATE(6800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6101), 8, + ACTIONS(6119), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -607992,7 +613727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6099), 27, + ACTIONS(6117), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -608020,15 +613755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291936] = 5, + [294942] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6744), 1, + STATE(6801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6512), 8, + ACTIONS(6123), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -608037,7 +613772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6510), 27, + ACTIONS(6121), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -608065,37 +613800,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291986] = 5, + [294992] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6745), 1, + ACTIONS(9480), 1, + sym_identifier, + STATE(2868), 1, + sym__operator_token, + STATE(6802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9486), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9482), 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(6443), 27, + ACTIONS(9484), 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, + [295048] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + STATE(6803), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6125), 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, @@ -608106,230 +613895,294 @@ 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, - [292036] = 23, + [295108] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8893), 1, + anon_sym_AMP_AMP, + ACTIONS(8895), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6804), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6518), 4, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8901), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [295190] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8867), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8869), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8891), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8893), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8903), 1, sym_binary_ampersand, - STATE(6746), 1, + STATE(6805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(6083), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9362), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [292122] = 23, + [295276] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8931), 1, + ACTIONS(8867), 1, anon_sym_DOT_DOT, - ACTIONS(8933), 1, + ACTIONS(8869), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(8955), 1, + ACTIONS(8891), 1, anon_sym_QMARK, - ACTIONS(8957), 1, + ACTIONS(8893), 1, anon_sym_AMP_AMP, - ACTIONS(8959), 1, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(8903), 1, sym_binary_ampersand, - STATE(6747), 1, + STATE(6806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6205), 2, + ACTIONS(6085), 2, sym__end_of_with_expression, anon_sym_COMMA, - ACTIONS(8943), 2, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [292208] = 23, + [295362] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8931), 1, + ACTIONS(8867), 1, anon_sym_DOT_DOT, - ACTIONS(8933), 1, + ACTIONS(8869), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8939), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(8941), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(8945), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(8955), 1, + ACTIONS(8891), 1, anon_sym_QMARK, - ACTIONS(8957), 1, + ACTIONS(8893), 1, anon_sym_AMP_AMP, - ACTIONS(8959), 1, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(8967), 1, + ACTIONS(8903), 1, sym_binary_ampersand, - STATE(6748), 1, + STATE(6807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6247), 2, + ACTIONS(6095), 2, sym__end_of_with_expression, anon_sym_COMMA, - ACTIONS(8943), 2, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8947), 4, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [292294] = 5, + [295448] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6749), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(6808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6330), 8, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6328), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6129), 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, @@ -608340,84 +614193,89 @@ 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, - [292344] = 8, + [295504] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9364), 1, - sym_identifier, - STATE(2783), 1, - sym__operator_token, - STATE(6750), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(6809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9370), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9366), 10, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8901), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 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(9368), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6125), 20, + sym__end_of_with_expression, + 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_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, - [292400] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [295564] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6751), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(6810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6113), 8, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6111), 27, - sym__start_of_index_operator, + ACTIONS(6129), 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, @@ -608433,36 +614291,39 @@ 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, - [292450] = 5, + [295620] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6752), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(6811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6001), 8, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5999), 27, - sym__start_of_index_operator, + ACTIONS(6133), 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, @@ -608478,86 +614339,96 @@ 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, - [292500] = 5, + [295676] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6753), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(6812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5939), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5934), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 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, - [292550] = 5, + [295740] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6754), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + STATE(6813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6133), 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, @@ -608568,192 +614439,217 @@ 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, - [292600] = 21, + [295796] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, + ACTIONS(6143), 1, anon_sym_DOT_DOT, - ACTIONS(8193), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8783), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(8801), 1, + ACTIONS(8893), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8895), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, sym_binary_ampersand, - STATE(6755), 1, + STATE(6814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6332), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(6141), 4, + sym__end_of_with_expression, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(8791), 4, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [292682] = 5, + [295878] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6756), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6480), 8, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6478), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6145), 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, - [292732] = 6, + [295952] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9372), 1, - anon_sym_of, - STATE(6757), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5841), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5837), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 13, + 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, - [292784] = 5, + [296018] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6758), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(6817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6492), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6490), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 16, + sym__end_of_with_expression, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -608765,214 +614661,305 @@ 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, - [292834] = 5, + [296080] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6759), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6119), 8, - anon_sym_DOT_DOT, + ACTIONS(8871), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8875), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(6117), 27, + ACTIONS(8897), 1, sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6818), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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, - [292884] = 5, + [296150] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6760), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6453), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6451), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6171), 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, + [296228] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8893), 1, + anon_sym_AMP_AMP, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6820), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8899), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8901), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6175), 5, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292934] = 8, + [296308] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9374), 1, - sym_identifier, - STATE(5637), 1, - sym__operator_token, - STATE(6761), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + STATE(6821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9380), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9376), 10, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8859), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 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(9378), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6137), 14, + sym__line_break, + sym_binary_ampersand, + anon_sym_SEMI, + 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, - [292990] = 17, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [296372] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8783), 1, + ACTIONS(8875), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8877), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(8809), 1, + ACTIONS(8893), 1, + anon_sym_AMP_AMP, + ACTIONS(8895), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, sym_binary_ampersand, - STATE(6762), 1, + STATE(6822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8797), 2, + ACTIONS(8885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, - anon_sym_DOT_DOT, + ACTIONS(8873), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(6361), 4, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8883), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8901), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 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, - [293064] = 5, + [296454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6763), 1, + STATE(6823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6346), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -608981,7 +614968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6344), 27, + ACTIONS(6233), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609009,164 +614996,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293114] = 5, + [296504] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6764), 1, + ACTIONS(8867), 1, + anon_sym_DOT_DOT, + ACTIONS(8869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8891), 1, + anon_sym_QMARK, + ACTIONS(8893), 1, + anon_sym_AMP_AMP, + ACTIONS(8895), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6824), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6151), 8, + ACTIONS(6459), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8901), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [296590] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8867), 1, anon_sym_DOT_DOT, + ACTIONS(8869), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8871), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(8875), 1, anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8887), 1, anon_sym_AMP_STAR, - ACTIONS(6149), 27, + ACTIONS(8891), 1, + anon_sym_QMARK, + ACTIONS(8893), 1, + anon_sym_AMP_AMP, + ACTIONS(8895), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8897), 1, sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6825), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6491), 2, sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8901), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [296676] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8867), 1, + anon_sym_DOT_DOT, + ACTIONS(8869), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8891), 1, + anon_sym_QMARK, + ACTIONS(8893), 1, + anon_sym_AMP_AMP, + ACTIONS(8895), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6826), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6373), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8879), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8885), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8883), 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, - [293164] = 13, + ACTIONS(8899), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8901), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [296762] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8795), 1, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8809), 1, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6765), 1, + STATE(6827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8797), 2, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, + ACTIONS(8835), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 13, + ACTIONS(6141), 4, sym__line_break, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + anon_sym_QMARK, + ACTIONS(8845), 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, - [293230] = 11, + ACTIONS(8859), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [296844] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8795), 1, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - STATE(6766), 1, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(6828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8797), 2, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8805), 4, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8845), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 16, + ACTIONS(6145), 8, 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, - [293292] = 5, + [296918] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6767), 1, + STATE(6829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6500), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609175,7 +615320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6498), 27, + ACTIONS(6241), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609203,127 +615348,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293342] = 5, + [296968] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6768), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(6830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6123), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6121), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 13, + 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, - [293392] = 5, + [297034] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6769), 1, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + STATE(6831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6127), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6125), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8861), 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, - [293442] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6770), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6131), 8, + ACTIONS(6165), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6129), 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, + ACTIONS(6163), 16, + sym__line_break, 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, @@ -609334,53 +615449,52 @@ 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, - [293492] = 15, + [297096] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6771), 1, + STATE(6832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, + ACTIONS(6169), 5, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5971), 12, + ACTIONS(6167), 12, sym__line_break, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, @@ -609393,137 +615507,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293562] = 19, + [297166] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, + ACTIONS(6173), 1, anon_sym_DOT_DOT, - ACTIONS(8193), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6772), 1, + STATE(6833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 6, + ACTIONS(6171), 6, sym__line_break, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293640] = 23, + [297244] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6177), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6773), 1, + STATE(6834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8821), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [293726] = 5, + ACTIONS(6175), 5, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [297324] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6774), 1, + STATE(6835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6135), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609532,7 +615643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6133), 27, + ACTIONS(6183), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609560,15 +615671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293776] = 5, + [297374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6775), 1, + STATE(6836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6139), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609577,7 +615688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6137), 27, + ACTIONS(6183), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609605,17 +615716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293826] = 6, + [297424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9382), 1, - anon_sym_of, - STATE(6776), 1, + STATE(6837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5847), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609624,7 +615733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5843), 26, + ACTIONS(6183), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609637,6 +615746,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, @@ -609651,15 +615761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293878] = 5, + [297474] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6777), 1, + STATE(6838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6143), 8, + ACTIONS(6185), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609668,7 +615778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6141), 27, + ACTIONS(6183), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609696,17 +615806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293928] = 6, + [297524] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9384), 1, - anon_sym_EQ, - STATE(6778), 1, + STATE(6839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5833), 8, + ACTIONS(5968), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609715,8 +615823,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5831), 26, + ACTIONS(5966), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -609727,6 +615836,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, @@ -609741,26 +615851,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [293980] = 5, + [297574] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6779), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(6840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6413), 8, + ACTIONS(6247), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6411), 27, - sym__start_of_index_operator, + ACTIONS(6245), 26, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -609787,15 +615898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294030] = 5, + [297628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6780), 1, + STATE(6841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5997), 8, + ACTIONS(5975), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609804,7 +615915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5995), 27, + ACTIONS(5970), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609832,15 +615943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294080] = 5, + [297678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6781), 1, + STATE(6842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6524), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609849,7 +615960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 27, + ACTIONS(6522), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609877,63 +615988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294130] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9386), 1, - sym_identifier, - STATE(5030), 1, - sym__operator_token, - STATE(6782), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9392), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9388), 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(9390), 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, - [294186] = 5, + [297728] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6783), 1, + STATE(6843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6005), 8, + ACTIONS(6567), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609942,7 +616005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6003), 27, + ACTIONS(6565), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -609970,15 +616033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294236] = 5, + [297778] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6784), 1, + STATE(6844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6374), 8, + ACTIONS(6487), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -609987,7 +616050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6372), 27, + ACTIONS(6485), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -610015,63 +616078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294286] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9394), 1, - sym_identifier, - STATE(2474), 1, - sym__operator_token, - STATE(6785), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9400), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9396), 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(9398), 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, - [294342] = 5, + [297828] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6786), 1, + ACTIONS(9488), 1, + anon_sym_of, + STATE(6845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6389), 8, + ACTIONS(5830), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -610080,7 +616097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6387), 27, + ACTIONS(5826), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -610093,7 +616110,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, @@ -610108,90 +616124,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294392] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8871), 1, - anon_sym_DOT_DOT, - ACTIONS(8873), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8893), 1, - anon_sym_QMARK, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6787), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5934), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [294478] = 7, + [297880] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8961), 1, - sym__start_of_index_operator, - STATE(6788), 1, + STATE(6846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6315), 7, + ACTIONS(6516), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6313), 26, + ACTIONS(6514), 27, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -610218,15 +616169,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294532] = 5, + [297930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6789), 1, + STATE(6847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6354), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -610235,7 +616186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6352), 27, + ACTIONS(6187), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -610263,78 +616214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294582] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8931), 1, - anon_sym_DOT_DOT, - ACTIONS(8933), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, - anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8955), 1, - anon_sym_QMARK, - ACTIONS(8957), 1, - anon_sym_AMP_AMP, - ACTIONS(8959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6790), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6508), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8963), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [294668] = 5, + [297980] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6791), 1, + STATE(6848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 8, + ACTIONS(6189), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -610343,7 +616231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6356), 27, + ACTIONS(6187), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -610371,76 +616259,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294718] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9402), 1, - sym_identifier, - STATE(6094), 1, - sym__operator_token, - STATE(6792), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9408), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9404), 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(9406), 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, - [294774] = 7, + [298030] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8961), 1, - sym__start_of_index_operator, - STATE(6793), 1, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + ACTIONS(9490), 1, + anon_sym_EQ, + STATE(6849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6041), 7, + ACTIONS(195), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6039), 26, - sym__end_of_with_expression, + ACTIONS(173), 25, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -610451,7 +616292,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, @@ -610466,15 +616306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294828] = 5, + [298084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6794), 1, + STATE(6850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6009), 8, + ACTIONS(5834), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -610483,7 +616323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6007), 27, + ACTIONS(5832), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -610511,15 +616351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294878] = 5, + [298134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6795), 1, + STATE(6851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6393), 8, + ACTIONS(6265), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -610528,7 +616368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6391), 27, + ACTIONS(6263), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -610556,291 +616396,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294928] = 21, + [298184] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6796), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6332), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [295010] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8871), 1, + ACTIONS(8831), 1, anon_sym_DOT_DOT, - ACTIONS(8873), 1, + ACTIONS(8833), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8879), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8883), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8889), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8893), 1, + ACTIONS(8853), 1, anon_sym_QMARK, - ACTIONS(8895), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8897), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6797), 1, + STATE(6852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6459), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8881), 2, + ACTIONS(6491), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8887), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8901), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [295096] = 23, + [298270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8871), 1, - anon_sym_DOT_DOT, - ACTIONS(8873), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8893), 1, - anon_sym_QMARK, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6798), 1, + STATE(6853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6461), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [295182] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8871), 1, + ACTIONS(6189), 8, anon_sym_DOT_DOT, - ACTIONS(8873), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, + anon_sym_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8893), 1, - anon_sym_QMARK, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6799), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6469), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + anon_sym_AMP_STAR, + ACTIONS(6187), 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(8901), 4, sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [295268] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - STATE(6800), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8891), 2, sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8901), 4, - sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6528), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6526), 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, @@ -610852,39 +616500,36 @@ 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, - [295328] = 8, + [298320] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(6801), 1, + STATE(6854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(5804), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 24, + ACTIONS(5802), 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, @@ -610900,39 +616545,36 @@ 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, - [295384] = 8, + [298370] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - STATE(6802), 1, + STATE(6855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(6189), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6554), 24, + ACTIONS(6187), 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, @@ -610948,270 +616590,87 @@ 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, - [295440] = 12, + [298420] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - STATE(6803), 1, + STATE(6856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(6193), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [295504] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, anon_sym_AMP_STAR, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6804), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5951), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + ACTIONS(6191), 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(8901), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [295586] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6805), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8881), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8885), 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(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5959), 8, - 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_COLON2, - [295660] = 13, + [298470] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6806), 1, + ACTIONS(9492), 1, + anon_sym_of, + STATE(6857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(5877), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 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, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [295726] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8889), 1, anon_sym_AMP_STAR, - STATE(6807), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8899), 4, + ACTIONS(5873), 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(8901), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5967), 16, - sym_binary_ampersand, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -611222,219 +616681,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_COLON2, - [295788] = 15, + [298522] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6808), 1, + STATE(6858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [295858] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5977), 1, + ACTIONS(6197), 8, anon_sym_DOT_DOT, - ACTIONS(7392), 1, anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8877), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6809), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + anon_sym_AMP_STAR, + ACTIONS(6195), 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(8901), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 6, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [295936] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6810), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8881), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8887), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5979), 5, - 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, - [296016] = 8, + [298572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - STATE(6811), 1, + STATE(6859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6201), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 24, - sym__line_break, + ACTIONS(6199), 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, @@ -611445,18 +616771,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, - [296072] = 5, + [298622] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6812), 1, + STATE(6860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6013), 8, + ACTIONS(6205), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -611465,7 +616792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6011), 27, + ACTIONS(6203), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -611493,438 +616820,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296122] = 21, + [298672] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6813), 1, + STATE(6861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(6209), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6107), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + anon_sym_AMP_STAR, + ACTIONS(6207), 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(8901), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [296204] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8931), 1, - anon_sym_DOT_DOT, - ACTIONS(8933), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - anon_sym_PIPE, - ACTIONS(8941), 1, anon_sym_CARET, - ACTIONS(8945), 1, - anon_sym_EQ_EQ, - ACTIONS(8951), 1, - anon_sym_AMP_STAR, - ACTIONS(8955), 1, - anon_sym_QMARK, - ACTIONS(8957), 1, - anon_sym_AMP_AMP, - ACTIONS(8959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6814), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6309), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8943), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8949), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8963), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8965), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [296290] = 15, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [298722] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9135), 1, - sym__constant_segment, - ACTIONS(9138), 1, - anon_sym_COLON_COLON, - ACTIONS(9410), 1, - anon_sym_LPAREN, - ACTIONS(9412), 1, - anon_sym_DASH_GT, - STATE(6815), 1, + STATE(6862), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7984), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - ACTIONS(4628), 12, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym_class_var, - anon_sym_QMARK, - sym_private, - sym_protected, - STATE(7794), 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, - [296360] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8931), 1, + ACTIONS(6273), 8, anon_sym_DOT_DOT, - ACTIONS(8933), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8935), 1, anon_sym_DOT, - ACTIONS(8939), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8941), 1, - anon_sym_CARET, - ACTIONS(8945), 1, anon_sym_EQ_EQ, - ACTIONS(8951), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8955), 1, - anon_sym_QMARK, - ACTIONS(8957), 1, - anon_sym_AMP_AMP, - ACTIONS(8959), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8961), 1, + ACTIONS(6271), 27, sym__start_of_index_operator, - ACTIONS(8967), 1, - sym_binary_ampersand, - STATE(6816), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6311), 2, sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8943), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8949), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8953), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8937), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8947), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8963), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8965), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [296446] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8871), 1, - anon_sym_DOT_DOT, - ACTIONS(8873), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8893), 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(8895), 1, anon_sym_AMP_AMP, - ACTIONS(8897), 1, anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6817), 1, + [298772] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6205), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(6213), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + anon_sym_AMP_STAR, + ACTIONS(6211), 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(8901), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [296532] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8871), 1, - anon_sym_DOT_DOT, - ACTIONS(8873), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8893), 1, - anon_sym_QMARK, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6818), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6247), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8881), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8887), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8899), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8901), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [296618] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9150), 1, - sym__constant_segment, - ACTIONS(9153), 1, - anon_sym_COLON_COLON, - ACTIONS(9410), 1, - anon_sym_LPAREN, - ACTIONS(9412), 1, - anon_sym_DASH_GT, - STATE(6819), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7975), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - ACTIONS(4656), 12, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym_class_var, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - sym_private, - sym_protected, - STATE(7794), 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, - [296688] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [298822] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6820), 1, + STATE(6864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(143), 8, + ACTIONS(6217), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -611933,7 +616972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(145), 27, + ACTIONS(6215), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -611961,70 +617000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296738] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9288), 1, - sym__constant_segment, - ACTIONS(9291), 1, - anon_sym_COLON_COLON, - ACTIONS(9410), 1, - anon_sym_LPAREN, - ACTIONS(9412), 1, - anon_sym_DASH_GT, - STATE(6821), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7976), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - ACTIONS(4678), 12, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym_class_var, - anon_sym_QMARK, - sym_private, - sym_protected, - STATE(7794), 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, - [296808] = 5, + [298872] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6822), 1, + STATE(6865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6409), 8, + ACTIONS(6221), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612033,7 +617017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6407), 27, + ACTIONS(6219), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612061,15 +617045,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296858] = 5, + [298922] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6823), 1, + ACTIONS(9494), 1, + anon_sym_of, + STATE(6866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6017), 8, + ACTIONS(5748), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612078,7 +617064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6015), 27, + ACTIONS(5744), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612091,7 +617077,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, @@ -612106,15 +617091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296908] = 5, + [298974] = 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(6524), 8, + ACTIONS(6225), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612123,7 +617108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6522), 27, + ACTIONS(6223), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612151,78 +617136,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296958] = 23, + [299024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, - anon_sym_PIPE, - ACTIONS(7398), 1, - anon_sym_CARET, - ACTIONS(7402), 1, - anon_sym_EQ_EQ, - ACTIONS(7408), 1, - anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, - sym_binary_ampersand, - STATE(6825), 1, + STATE(6868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9414), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(6277), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + anon_sym_AMP_STAR, + ACTIONS(6275), 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(7422), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [297044] = 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, + [299074] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6826), 1, + STATE(6869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6350), 8, + ACTIONS(5868), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612231,7 +617198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6348), 27, + ACTIONS(5866), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612259,15 +617226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297094] = 5, + [299124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6827), 1, + STATE(6870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6548), 8, + ACTIONS(6531), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612276,7 +617243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6546), 27, + ACTIONS(6529), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612304,76 +617271,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297144] = 21, + [299174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(8877), 1, - anon_sym_PIPE, - ACTIONS(8879), 1, - anon_sym_CARET, - ACTIONS(8883), 1, - anon_sym_EQ_EQ, - ACTIONS(8889), 1, - anon_sym_AMP_STAR, - ACTIONS(8895), 1, - anon_sym_AMP_AMP, - ACTIONS(8897), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, - sym_binary_ampersand, - STATE(6828), 1, + STATE(6871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8881), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8887), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(6239), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6403), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(8885), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + anon_sym_AMP_STAR, + ACTIONS(6237), 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(8901), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [297226] = 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, + [299224] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6829), 1, + STATE(6872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6021), 8, + ACTIONS(5731), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612382,7 +617333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6019), 27, + ACTIONS(5729), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612410,15 +617361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297276] = 5, + [299274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6830), 1, + STATE(6873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(143), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612427,7 +617378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6360), 27, + ACTIONS(145), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612455,15 +617406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297326] = 5, + [299324] = 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(6295), 8, + ACTIONS(6281), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612472,7 +617423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6293), 27, + ACTIONS(6279), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612500,124 +617451,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297376] = 21, + [299374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(6832), 1, + STATE(6875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(6285), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6107), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(6283), 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(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [297458] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9416), 1, - sym_identifier, - STATE(3180), 1, - sym__operator_token, - STATE(6833), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9422), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9418), 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(9420), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + 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, - [297514] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [299424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6834), 1, + STATE(6876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6488), 8, + ACTIONS(6259), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612626,7 +617513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6486), 27, + ACTIONS(6257), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612654,78 +617541,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297564] = 23, + [299474] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(6835), 1, + STATE(6877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6459), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(6371), 8, + anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + anon_sym_AMP_STAR, + ACTIONS(6369), 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(8807), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [297650] = 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, + [299524] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6836), 1, + STATE(6878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5799), 8, + ACTIONS(6455), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612734,7 +617603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5797), 27, + ACTIONS(6453), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612762,15 +617631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297700] = 5, + [299574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6837), 1, + STATE(6879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6155), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612779,7 +617648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6153), 27, + ACTIONS(6365), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612807,15 +617676,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297750] = 5, + [299624] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6838), 1, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + ACTIONS(9496), 1, + anon_sym_EQ, + STATE(6880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6552), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612824,9 +617697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6550), 27, + ACTIONS(173), 25, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -612837,7 +617709,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, @@ -612852,17 +617723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297800] = 6, + [299678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9424), 1, - anon_sym_of, - STATE(6839), 1, + STATE(6881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5823), 8, + ACTIONS(6559), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612871,7 +617740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5819), 26, + ACTIONS(6557), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612884,6 +617753,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, @@ -612898,15 +617768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297852] = 5, + [299728] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6840), 1, + STATE(6882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6159), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612915,7 +617785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6157), 27, + ACTIONS(6229), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612943,15 +617813,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297902] = 5, + [299778] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6841), 1, + ACTIONS(9498), 1, + sym_identifier, + STATE(4246), 1, + sym__operator_token, + STATE(6883), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9504), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9500), 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(9502), 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, + [299834] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6163), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -612960,7 +617878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6161), 27, + ACTIONS(6297), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -612988,15 +617906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297952] = 5, + [299884] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6842), 1, + STATE(6885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6029), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613005,7 +617923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6027), 27, + ACTIONS(6249), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613033,60 +617951,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298002] = 5, + [299934] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6843), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(6886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6307), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9506), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(7418), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6305), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7444), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [300020] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8958), 1, + anon_sym_DOT_DOT, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 1, anon_sym_CARET, + ACTIONS(8970), 1, + anon_sym_EQ_EQ, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8980), 1, + anon_sym_QMARK, + ACTIONS(8982), 1, + anon_sym_AMP_AMP, + ACTIONS(8984), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6887), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6227), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8986), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8988), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [300106] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8958), 1, + anon_sym_DOT_DOT, + ACTIONS(8960), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 1, + anon_sym_CARET, + ACTIONS(8970), 1, + anon_sym_EQ_EQ, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8980), 1, anon_sym_QMARK, + ACTIONS(8982), 1, anon_sym_AMP_AMP, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - [298052] = 5, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6888), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6261), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8974), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8986), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8988), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [300192] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6844), 1, + STATE(6889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613095,9 +618157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6415), 27, + ACTIONS(6035), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -613123,141 +618184,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298102] = 23, + anon_sym_COLON2, + [300242] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8871), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(8873), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(8879), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(8883), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(8889), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(8893), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(8895), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(8897), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6845), 1, + STATE(6890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6309), 2, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9508), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8881), 2, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [300328] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(6891), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8887), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(9510), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8901), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298188] = 23, + [300414] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(1215), 1, + anon_sym_EQ, + STATE(6892), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(195), 8, + anon_sym_DOT_DOT, anon_sym_DOT, - ACTIONS(7418), 1, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(173), 26, sym__start_of_index_operator, - ACTIONS(8871), 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_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [300466] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9512), 1, + anon_sym_EQ, + STATE(6893), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5939), 8, anon_sym_DOT_DOT, - ACTIONS(8873), 1, + anon_sym_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5937), 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, - ACTIONS(8877), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [300518] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8958), 1, + anon_sym_DOT_DOT, + ACTIONS(8960), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(8879), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(8883), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(8889), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(8893), 1, + ACTIONS(8980), 1, anon_sym_QMARK, - ACTIONS(8895), 1, + ACTIONS(8982), 1, anon_sym_AMP_AMP, - ACTIONS(8897), 1, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(6846), 1, + STATE(6894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6311), 2, + ACTIONS(5970), 2, anon_sym_COMMA, anon_sym_COLON2, - ACTIONS(8881), 2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8887), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8901), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298274] = 5, + [300604] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6847), 1, + STATE(6895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6504), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613266,7 +618483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6502), 27, + ACTIONS(6309), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613294,25 +618511,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298324] = 5, + [300654] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6848), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(6896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5688), 8, + ACTIONS(6303), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5686), 27, - sym__start_of_index_operator, + ACTIONS(6301), 26, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -613339,15 +618558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298374] = 5, + [300708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6849), 1, + STATE(6897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6167), 8, + ACTIONS(6315), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613356,7 +618575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6165), 27, + ACTIONS(6313), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613384,15 +618603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298424] = 5, + [300758] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6850), 1, + STATE(6898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6147), 8, + ACTIONS(6447), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613401,7 +618620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6145), 27, + ACTIONS(6445), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613429,15 +618648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298474] = 5, + [300808] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6851), 1, + STATE(6899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(6289), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613446,7 +618665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 27, + ACTIONS(6287), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613474,174 +618693,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298524] = 8, + [300858] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9426), 1, - sym_identifier, - STATE(3548), 1, - sym__operator_token, - STATE(6852), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(6900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9432), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9428), 10, + ACTIONS(6307), 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(9430), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6305), 26, + 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, - [298580] = 23, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [300912] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(8196), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(8224), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8837), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8839), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8843), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8849), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8855), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8857), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8863), 1, sym_binary_ampersand, - STATE(6853), 1, + STATE(6901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6461), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(8841), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8847), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8851), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8835), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(6361), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8845), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8859), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8861), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298666] = 8, + [300994] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9434), 1, - sym_identifier, - STATE(4529), 1, - sym__operator_token, - STATE(6854), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9440), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9436), 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(9438), 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, - [298722] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6855), 1, + STATE(6902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6033), 8, + ACTIONS(6535), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613650,7 +618818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6031), 27, + ACTIONS(6533), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613678,29 +618846,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298772] = 8, + [301044] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9192), 1, - sym__start_of_index_operator, - ACTIONS(9442), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, anon_sym_DOT, - STATE(6784), 1, - sym__implicit_index_operator, - STATE(6856), 1, + ACTIONS(8875), 1, + anon_sym_PIPE, + ACTIONS(8877), 1, + anon_sym_CARET, + ACTIONS(8881), 1, + anon_sym_EQ_EQ, + ACTIONS(8887), 1, + anon_sym_AMP_STAR, + ACTIONS(8893), 1, + anon_sym_AMP_AMP, + ACTIONS(8895), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(8903), 1, + sym_binary_ampersand, + STATE(6903), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8879), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8885), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8889), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8873), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6253), 4, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8883), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8899), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8901), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [301126] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(6539), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 25, + ACTIONS(6537), 27, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -613712,6 +618937,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, @@ -613726,15 +618952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298828] = 5, + [301176] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6857), 1, + STATE(6905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5840), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613743,7 +618969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 27, + ACTIONS(5838), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613771,15 +618997,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298878] = 5, + [301226] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6858), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(8196), 1, + anon_sym_DOT, + ACTIONS(8224), 1, + sym__start_of_index_operator, + ACTIONS(8837), 1, + anon_sym_PIPE, + ACTIONS(8839), 1, + anon_sym_CARET, + ACTIONS(8843), 1, + anon_sym_EQ_EQ, + ACTIONS(8849), 1, + anon_sym_AMP_STAR, + ACTIONS(8855), 1, + anon_sym_AMP_AMP, + ACTIONS(8857), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8863), 1, + sym_binary_ampersand, + STATE(6906), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8841), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8847), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8851), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8835), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6253), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8845), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8859), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8861), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [301308] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9514), 1, + anon_sym_EQ, + STATE(6907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613788,7 +619077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 27, + ACTIONS(5937), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613801,7 +619090,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, @@ -613816,15 +619104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298928] = 5, + [301360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6859), 1, + STATE(6908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6385), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613833,7 +619121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6383), 27, + ACTIONS(6317), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613861,78 +619149,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298978] = 23, + [301410] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, + ACTIONS(8958), 1, anon_sym_DOT_DOT, - ACTIONS(8779), 1, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(8799), 1, + ACTIONS(8980), 1, anon_sym_QMARK, - ACTIONS(8801), 1, + ACTIONS(8982), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(6860), 1, + STATE(6909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6205), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, + ACTIONS(6489), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299064] = 5, + [301496] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6861), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8958), 1, + anon_sym_DOT_DOT, + ACTIONS(8960), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 1, + anon_sym_CARET, + ACTIONS(8970), 1, + anon_sym_EQ_EQ, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8980), 1, + anon_sym_QMARK, + ACTIONS(8982), 1, + anon_sym_AMP_AMP, + ACTIONS(8984), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6053), 8, + ACTIONS(6509), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8974), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8986), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8988), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [301582] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6911), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613941,7 +619292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6051), 27, + ACTIONS(6321), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -613969,15 +619320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [299114] = 5, + [301632] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6862), 1, + STATE(6912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -613986,7 +619337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6364), 27, + ACTIONS(6325), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -614014,15 +619365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [299164] = 5, + [301682] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6863), 1, + STATE(6913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6536), 8, + ACTIONS(6327), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -614031,7 +619382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6534), 27, + ACTIONS(6325), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -614059,63 +619410,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [299214] = 8, + [301732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9444), 1, - sym_identifier, - STATE(3577), 1, - sym__operator_token, - STATE(6864), 1, + STATE(6914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9450), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9446), 10, + ACTIONS(6543), 8, + anon_sym_DOT_DOT, + anon_sym_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(9448), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6541), 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, - [299270] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [301782] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6865), 1, + STATE(6915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5704), 8, + ACTIONS(6547), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -614124,7 +619472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5702), 27, + ACTIONS(6545), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -614152,268 +619500,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [299320] = 21, + [301832] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, + anon_sym_DOT_DOT, + ACTIONS(7416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7420), 1, + anon_sym_PIPE, + ACTIONS(7422), 1, + anon_sym_CARET, + ACTIONS(7426), 1, + anon_sym_EQ_EQ, + ACTIONS(7432), 1, + anon_sym_AMP_STAR, + ACTIONS(7436), 1, + anon_sym_QMARK, + ACTIONS(7438), 1, + anon_sym_AMP_AMP, + ACTIONS(7440), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7446), 1, + sym_binary_ampersand, + STATE(6916), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7424), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7430), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7434), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9516), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7418), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7428), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7442), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7444), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [301918] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, + ACTIONS(6520), 1, anon_sym_DOT_DOT, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8783), 1, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(8801), 1, + ACTIONS(8982), 1, anon_sym_AMP_AMP, - ACTIONS(8803), 1, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(6866), 1, + STATE(6917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6403), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(6518), 4, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(8791), 4, + anon_sym_COLON2, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299402] = 23, + [302000] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8871), 1, + ACTIONS(8958), 1, anon_sym_DOT_DOT, - ACTIONS(8873), 1, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8877), 1, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(8879), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(8883), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(8889), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(8893), 1, + ACTIONS(8980), 1, anon_sym_QMARK, - ACTIONS(8895), 1, + ACTIONS(8982), 1, anon_sym_AMP_AMP, - ACTIONS(8897), 1, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - ACTIONS(8903), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(6867), 1, + STATE(6918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6506), 2, + ACTIONS(6083), 2, anon_sym_COMMA, anon_sym_COLON2, - ACTIONS(8881), 2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8887), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8891), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8875), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8885), 4, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8899), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8901), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299488] = 5, + [302086] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6868), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8958), 1, + anon_sym_DOT_DOT, + ACTIONS(8960), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 1, + anon_sym_CARET, + ACTIONS(8970), 1, + anon_sym_EQ_EQ, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8980), 1, + anon_sym_QMARK, + ACTIONS(8982), 1, + anon_sym_AMP_AMP, + ACTIONS(8984), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6370), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6085), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8974), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6368), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [302172] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8958), 1, + anon_sym_DOT_DOT, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 1, anon_sym_CARET, + ACTIONS(8970), 1, + anon_sym_EQ_EQ, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8980), 1, + anon_sym_QMARK, + ACTIONS(8982), 1, + anon_sym_AMP_AMP, + ACTIONS(8984), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6920), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6095), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8972), 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, - [299538] = 23, + ACTIONS(8986), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8988), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [302258] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6869), 1, + STATE(6921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9452), 2, + ACTIONS(9518), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299624] = 5, + [302344] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6870), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + STATE(6922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6326), 8, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8988), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 6, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6324), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6125), 20, sym_binary_plus, sym_binary_minus, sym_binary_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, @@ -614425,36 +619922,39 @@ 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, - [299674] = 5, + anon_sym_COLON2, + [302404] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6871), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + STATE(6923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 8, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 7, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5706), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6129), 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, @@ -614470,23 +619970,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, - [299724] = 7, + anon_sym_COLON2, + [302460] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - STATE(6872), 1, + STATE(6924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6381), 7, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -614494,14 +619997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6379), 26, - sym__end_of_with_expression, + ACTIONS(6133), 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, @@ -614517,253 +620018,269 @@ 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, - [299778] = 5, + anon_sym_COLON2, + [302516] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6873), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + STATE(6925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6175), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6173), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6139), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 14, + 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, - [299828] = 20, + anon_sym_COLON2, + [302580] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, + ACTIONS(6143), 1, anon_sym_DOT_DOT, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8783), 1, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(8785), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(8789), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(8795), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(8801), 1, + ACTIONS(8982), 1, anon_sym_AMP_AMP, - ACTIONS(8809), 1, + ACTIONS(8984), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(6874), 1, + STATE(6926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8787), 2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8793), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8791), 4, + ACTIONS(6141), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8805), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8807), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5979), 5, - sym__line_break, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [299908] = 23, + [302662] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(6875), 1, + STATE(6927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9454), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299994] = 5, + ACTIONS(6145), 8, + 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, + [302736] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6876), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6151), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6149), 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_AMP_AMP, anon_sym_PIPE_PIPE, - [300044] = 5, + anon_sym_COLON2, + [302802] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6877), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + STATE(6929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6165), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6163), 16, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -614775,217 +620292,193 @@ 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, - [300094] = 5, + anon_sym_COLON2, + [302864] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6878), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 1, + anon_sym_CARET, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5872), 27, - sym__start_of_index_operator, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [300144] = 23, + [302934] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(6173), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, - anon_sym_AMP_AMP, - ACTIONS(7416), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(6879), 1, + STATE(6931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9456), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300230] = 5, + ACTIONS(6171), 6, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [303012] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6880), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6057), 8, + ACTIONS(6177), 1, anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8964), 1, anon_sym_PIPE, + ACTIONS(8966), 1, + anon_sym_CARET, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(6055), 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, + ACTIONS(8982), 1, + anon_sym_AMP_AMP, + ACTIONS(8990), 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(6932), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8978), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [300280] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6881), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6175), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8962), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6173), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6175), 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, - [300330] = 5, + anon_sym_COLON2, + [303092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6882), 1, + STATE(6933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -614994,7 +620487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5983), 27, + ACTIONS(6329), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -615022,105 +620515,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [300380] = 5, + [303142] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6883), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 1, + anon_sym_CARET, + ACTIONS(8970), 1, + anon_sym_EQ_EQ, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8982), 1, + anon_sym_AMP_AMP, + ACTIONS(8984), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5985), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8974), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5983), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6361), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [303224] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8958), 1, + anon_sym_DOT_DOT, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 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(8970), 1, + anon_sym_EQ_EQ, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8980), 1, anon_sym_QMARK, + ACTIONS(8982), 1, anon_sym_AMP_AMP, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - [300430] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6884), 1, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6459), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8974), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5987), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 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, - [300480] = 5, + [303310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6885), 1, + STATE(6936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615129,7 +620656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 27, + ACTIONS(6333), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -615157,169 +620684,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [300530] = 23, + [303360] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8958), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(8964), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(8966), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(8980), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(8982), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(8990), 1, sym_binary_ampersand, - STATE(6886), 1, + STATE(6937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(6491), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(8974), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(8978), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9458), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(8962), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(8972), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(8988), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300616] = 5, + [303446] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6887), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6105), 8, - anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6103), 27, + ACTIONS(7406), 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(8958), 1, + anon_sym_DOT_DOT, + ACTIONS(8960), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8964), 1, + anon_sym_PIPE, + ACTIONS(8966), 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(8970), 1, + anon_sym_EQ_EQ, + ACTIONS(8976), 1, + anon_sym_AMP_STAR, + ACTIONS(8980), 1, anon_sym_QMARK, + ACTIONS(8982), 1, anon_sym_AMP_AMP, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - [300666] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9460), 1, - anon_sym_of, - STATE(6888), 1, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5789), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(6373), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8974), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5785), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 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, - [300718] = 5, + [303532] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6889), 1, + ACTIONS(6730), 1, + anon_sym_LPAREN2, + ACTIONS(9520), 1, + anon_sym_EQ, + STATE(6939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(195), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615328,9 +620831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 27, + ACTIONS(173), 25, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -615341,7 +620843,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, @@ -615356,15 +620857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [300768] = 5, + [303586] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6890), 1, + STATE(6940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5989), 8, + ACTIONS(6551), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615373,7 +620874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5987), 27, + ACTIONS(6549), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -615401,105 +620902,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [300818] = 5, + [303636] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6891), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5989), 8, + ACTIONS(6255), 1, anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - anon_sym_LT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(8964), 1, anon_sym_PIPE, + ACTIONS(8966), 1, + anon_sym_CARET, + ACTIONS(8970), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8976), 1, anon_sym_AMP_STAR, - ACTIONS(5987), 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(8982), 1, anon_sym_AMP_AMP, + ACTIONS(8984), 1, anon_sym_PIPE_PIPE, - [300868] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6892), 1, + ACTIONS(8990), 1, + sym_binary_ampersand, + STATE(6941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5993), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8968), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8974), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8978), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8962), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5991), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6253), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + ACTIONS(8972), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8986), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8988), 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, - [300918] = 5, + [303718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6893), 1, + STATE(6942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5721), 8, + ACTIONS(6555), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615508,7 +620980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5719), 27, + ACTIONS(6553), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -615536,15 +621008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [300968] = 5, + [303768] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6894), 1, + STATE(6943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615553,7 +621025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 27, + ACTIONS(6337), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -615581,19 +621053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301018] = 7, + [303818] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6749), 1, - anon_sym_LPAREN2, - ACTIONS(9462), 1, - anon_sym_EQ, - STATE(6895), 1, + STATE(6944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615602,8 +621070,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 25, + ACTIONS(6341), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -615614,6 +621083,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, @@ -615628,61 +621098,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301072] = 6, + [303868] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9464), 1, - anon_sym_of, - STATE(6896), 1, + ACTIONS(9522), 1, + sym_identifier, + STATE(5682), 1, + sym__operator_token, + STATE(6945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5817), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(9528), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(9524), 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(5813), 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(9526), 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, - [301124] = 5, + [303924] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6897), 1, + STATE(6946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6299), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615691,7 +621163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6297), 27, + ACTIONS(6345), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -615719,15 +621191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301174] = 5, + [303974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6898), 1, + STATE(6947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6540), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615736,7 +621208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6538), 27, + ACTIONS(6349), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -615764,15 +621236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301224] = 5, + [304024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6899), 1, + STATE(6948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6037), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615781,7 +621253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6035), 27, + ACTIONS(6357), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -615809,15 +621281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301274] = 5, + [304074] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6900), 1, + STATE(6949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5864), 8, + ACTIONS(6563), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -615826,8 +621298,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5862), 27, + ACTIONS(6561), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -615853,190 +621326,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [301324] = 23, + [304124] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8221), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(8777), 1, - anon_sym_DOT_DOT, - ACTIONS(8779), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8799), 1, - anon_sym_QMARK, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(6901), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6469), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [301410] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9466), 1, - sym_identifier, - STATE(5235), 1, - sym__operator_token, - STATE(6902), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9472), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9468), 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(9470), 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, - [301466] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7388), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(7390), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6903), 1, + STATE(6950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9474), 2, - anon_sym_RBRACE, + ACTIONS(9530), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7394), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301552] = 5, + [304210] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6904), 1, + STATE(6951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6496), 8, + ACTIONS(6377), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616045,7 +621406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6494), 27, + ACTIONS(6375), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -616073,63 +621434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301602] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9476), 1, - sym_identifier, - STATE(3411), 1, - sym__operator_token, - STATE(6905), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9482), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(9478), 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(9480), 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, - [301658] = 5, + [304260] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6906), 1, + ACTIONS(9532), 1, + anon_sym_of, + STATE(6952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6338), 8, + ACTIONS(5964), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616138,7 +621453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6336), 27, + ACTIONS(5960), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -616151,7 +621466,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, @@ -616166,15 +621480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301708] = 5, + [304312] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6907), 1, + STATE(6953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6429), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616183,7 +621497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6427), 27, + ACTIONS(6381), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -616211,29 +621525,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301758] = 8, + [304362] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7445), 1, - sym__start_of_index_operator, - ACTIONS(9484), 1, - anon_sym_DOT, - STATE(4316), 1, - sym__implicit_index_operator, - STATE(6908), 1, + STATE(6954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 7, + ACTIONS(6387), 8, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5878), 25, + ACTIONS(6385), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -616244,6 +621555,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, @@ -616258,77 +621570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [301814] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(8193), 1, - anon_sym_DOT, - ACTIONS(8221), 1, - sym__start_of_index_operator, - ACTIONS(8783), 1, - anon_sym_PIPE, - ACTIONS(8785), 1, - anon_sym_CARET, - ACTIONS(8789), 1, - anon_sym_EQ_EQ, - ACTIONS(8795), 1, - anon_sym_AMP_STAR, - ACTIONS(8801), 1, - anon_sym_AMP_AMP, - ACTIONS(8803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8809), 1, - sym_binary_ampersand, - STATE(6909), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8787), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8797), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8781), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5951), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8791), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8805), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8807), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [301896] = 5, + [304412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6910), 1, + STATE(6955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6045), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616337,7 +621587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6043), 27, + ACTIONS(6393), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -616365,15 +621615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301946] = 5, + [304462] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6911), 1, + STATE(6956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6476), 8, + ACTIONS(6403), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616382,7 +621632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6474), 27, + ACTIONS(6401), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -616410,15 +621660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [301996] = 5, + [304512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6912), 1, + STATE(6957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6303), 8, + ACTIONS(6407), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616427,7 +621677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6301), 27, + ACTIONS(6405), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -616455,15 +621705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [302046] = 5, + [304562] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6913), 1, + STATE(6958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6484), 8, + ACTIONS(6411), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616472,7 +621722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6482), 27, + ACTIONS(6409), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -616500,15 +621750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [302096] = 5, + [304612] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6914), 1, + ACTIONS(9534), 1, + anon_sym_of, + STATE(6959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616517,7 +621769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6320), 27, + ACTIONS(5981), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -616530,7 +621782,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, @@ -616545,17 +621796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [302146] = 6, + [304664] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1229), 1, - anon_sym_EQ, - STATE(6915), 1, + STATE(6960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(195), 8, + ACTIONS(6431), 8, anon_sym_DOT_DOT, anon_sym_DOT, anon_sym_LT, @@ -616564,8 +621813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(173), 26, + ACTIONS(6429), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -616576,6 +621826,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, @@ -616590,646 +621841,749 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [302198] = 5, + [304714] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6916), 1, + ACTIONS(9536), 1, + sym_identifier, + ACTIONS(9538), 1, + sym_identifier_method_call, + STATE(2048), 1, + sym__operator_token, + STATE(6961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5793), 8, - anon_sym_DOT_DOT, - anon_sym_DOT, + ACTIONS(8579), 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(5791), 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(8581), 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, - [302248] = 21, + [304769] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, + ACTIONS(6363), 1, anon_sym_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(6917), 1, + STATE(6962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6403), 3, - sym__end_of_with_expression, + ACTIONS(6361), 3, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(9486), 3, + anon_sym_COLON2, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302329] = 23, + [304850] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9542), 1, - anon_sym_COLON2, - ACTIONS(9548), 1, + ACTIONS(9596), 1, + sym__end_of_with_expression, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6918), 1, + STATE(6963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302414] = 23, + [304935] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + STATE(6964), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9588), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6135), 7, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(9490), 1, - anon_sym_CARET, - ACTIONS(9494), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(6133), 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, anon_sym_AMP_AMP, - ACTIONS(9506), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, - sym_binary_ampersand, - ACTIONS(9550), 1, + [304990] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, + ACTIONS(9574), 1, + anon_sym_PIPE, + ACTIONS(9576), 1, + anon_sym_CARET, + ACTIONS(9580), 1, + anon_sym_EQ_EQ, + ACTIONS(9586), 1, + anon_sym_AMP_STAR, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9556), 1, + ACTIONS(9592), 1, + anon_sym_AMP_AMP, + ACTIONS(9594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9602), 1, + sym_binary_ampersand, + ACTIONS(9604), 1, sym__end_of_with_expression, - STATE(6919), 1, + STATE(6965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302499] = 23, + [305075] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9558), 1, - sym__end_of_with_expression, - STATE(6920), 1, + ACTIONS(9606), 1, + anon_sym_RBRACE, + STATE(6966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302584] = 23, + [305160] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9560), 1, + ACTIONS(9608), 1, sym__end_of_with_expression, - STATE(6921), 1, + STATE(6967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302669] = 23, + [305245] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9586), 1, + anon_sym_AMP_STAR, + STATE(6968), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9578), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9588), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9598), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9600), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6139), 6, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6137), 13, + sym__end_of_with_expression, + sym_binary_ampersand, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 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, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [305308] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9562), 1, - anon_sym_COLON2, - STATE(6922), 1, + ACTIONS(9610), 1, + anon_sym_RBRACE, + STATE(6969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302754] = 23, + [305393] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9564), 1, - anon_sym_RBRACE, - STATE(6923), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9618), 1, + anon_sym_COLON2, + STATE(6970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302839] = 21, + [305478] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, + ACTIONS(6143), 1, anon_sym_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6924), 1, + STATE(6971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5951), 3, + ACTIONS(6141), 3, sym__end_of_with_expression, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302920] = 23, + [305559] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9566), 1, - anon_sym_COLON2, - STATE(6925), 1, + ACTIONS(9620), 1, + sym__end_of_with_expression, + STATE(6972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303005] = 11, + [305644] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9532), 1, + ACTIONS(9542), 1, + anon_sym_PIPE, + ACTIONS(9544), 1, + anon_sym_CARET, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - STATE(6926), 1, + ACTIONS(9566), 1, + sym_binary_ampersand, + STATE(6973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9534), 2, + ACTIONS(9546), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, + ACTIONS(6169), 5, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 15, - sym_binary_ampersand, + ACTIONS(6167), 11, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -617240,876 +622594,725 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [303066] = 23, + [305713] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_DOT, - ACTIONS(8961), 1, - sym__start_of_index_operator, - ACTIONS(9488), 1, - anon_sym_PIPE, - ACTIONS(9490), 1, - anon_sym_CARET, - ACTIONS(9494), 1, - anon_sym_EQ_EQ, - ACTIONS(9500), 1, - anon_sym_AMP_STAR, - ACTIONS(9504), 1, - anon_sym_AMP_AMP, - ACTIONS(9506), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, - sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9568), 1, - sym__end_of_with_expression, - STATE(6927), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9492), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9498), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(9496), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9508), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9510), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [303151] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9570), 1, - anon_sym_RBRACE, - STATE(6928), 1, + ACTIONS(9622), 1, + sym__end_of_with_expression, + STATE(6974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303236] = 23, + [305798] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9572), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9624), 1, anon_sym_COLON2, - STATE(6929), 1, + STATE(6975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303321] = 23, + [305883] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6692), 1, - anon_sym_COMMA, - ACTIONS(7388), 1, - anon_sym_DOT_DOT, - ACTIONS(7390), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(7398), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(7402), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(7408), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(7412), 1, - anon_sym_QMARK, - ACTIONS(7414), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(7416), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7424), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(6930), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9626), 1, + anon_sym_COLON2, + STATE(6976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7400), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7406), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7410), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7394), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7404), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7420), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7422), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303406] = 23, + [305968] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9574), 1, - anon_sym_COLON2, - STATE(6931), 1, + ACTIONS(9628), 1, + sym__end_of_with_expression, + STATE(6977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303491] = 15, + [306053] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9532), 1, - anon_sym_AMP_STAR, ACTIONS(9548), 1, - sym_binary_ampersand, - STATE(6932), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9524), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9534), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9544), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9546), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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, + ACTIONS(9554), 1, + anon_sym_AMP_STAR, + ACTIONS(9558), 1, anon_sym_AMP_AMP, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [303560] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9566), 1, + sym_binary_ampersand, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, - anon_sym_PIPE, - ACTIONS(9522), 1, - anon_sym_CARET, - ACTIONS(9526), 1, - anon_sym_EQ_EQ, - ACTIONS(9532), 1, - anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9616), 1, anon_sym_QMARK, - ACTIONS(9538), 1, - anon_sym_AMP_AMP, - ACTIONS(9540), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, - sym_binary_ampersand, - ACTIONS(9576), 1, + ACTIONS(9630), 1, anon_sym_COLON2, - STATE(6933), 1, + STATE(6978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303645] = 17, + [306138] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(6083), 1, + sym__end_of_with_expression, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9512), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, + anon_sym_AMP_AMP, + ACTIONS(9594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6934), 1, + STATE(6979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9502), 2, + ACTIONS(9584), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, - anon_sym_DOT_DOT, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 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, - [303718] = 23, + [306223] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9578), 1, - anon_sym_COLON2, - STATE(6935), 1, + ACTIONS(9632), 1, + anon_sym_RPAREN, + STATE(6980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303803] = 23, + [306308] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6459), 1, - sym__end_of_with_expression, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - STATE(6936), 1, + ACTIONS(9634), 1, + sym__end_of_with_expression, + STATE(6981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303888] = 23, + [306393] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9580), 1, - anon_sym_COLON2, - STATE(6937), 1, + ACTIONS(9636), 1, + sym__end_of_with_expression, + STATE(6982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303973] = 23, + [306478] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(6459), 1, + anon_sym_COLON2, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9582), 1, - anon_sym_RBRACE, - STATE(6938), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + STATE(6983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304058] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9584), 1, - sym_identifier, - ACTIONS(9586), 1, - sym_identifier_method_call, - STATE(6939), 1, - sym_heredoc_body, - STATE(8204), 1, - sym__operator_token, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8531), 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(8533), 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, - [304113] = 13, + [306563] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9500), 1, + ACTIONS(9574), 1, + anon_sym_PIPE, + ACTIONS(9576), 1, + anon_sym_CARET, + ACTIONS(9580), 1, + anon_sym_EQ_EQ, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6940), 1, + STATE(6984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9508), 4, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9582), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5963), 12, + ACTIONS(6145), 7, 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, - [304178] = 11, + [306636] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - STATE(6941), 1, + ACTIONS(9602), 1, + sym_binary_ampersand, + STATE(6985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9502), 2, + ACTIONS(9578), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5969), 6, + ACTIONS(6151), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5967), 15, + ACTIONS(6149), 12, 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, @@ -618119,1767 +623322,1819 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [304239] = 23, + [306701] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9588), 1, + ACTIONS(9638), 1, sym__end_of_with_expression, - STATE(6942), 1, + STATE(6986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304324] = 15, + [306786] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(6085), 1, + sym__end_of_with_expression, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9500), 1, + ACTIONS(9580), 1, + anon_sym_EQ_EQ, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9512), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, + anon_sym_AMP_AMP, + ACTIONS(9594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6943), 1, + STATE(6987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9502), 2, + ACTIONS(9584), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9508), 4, + ACTIONS(9572), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9582), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5973), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5971), 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, - [304393] = 19, + [306871] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9512), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, + anon_sym_AMP_AMP, + ACTIONS(9594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6944), 1, + ACTIONS(9640), 1, + sym__end_of_with_expression, + STATE(6988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 5, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [304470] = 19, + [306956] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5977), 1, + ACTIONS(6255), 1, anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9548), 1, + ACTIONS(9558), 1, + anon_sym_AMP_AMP, + ACTIONS(9560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(6945), 1, + STATE(6989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(6253), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5975), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [304547] = 21, + [307037] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5953), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9520), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9538), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6946), 1, + ACTIONS(9642), 1, + sym__end_of_with_expression, + STATE(6990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5951), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304628] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9590), 1, - sym_identifier, - ACTIONS(9592), 1, - sym_identifier_method_call, - STATE(6947), 1, - sym_heredoc_body, - STATE(7831), 1, - sym__operator_token, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8545), 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(8547), 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, - [304683] = 21, + [307122] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9520), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9538), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6948), 1, + ACTIONS(9644), 1, + sym__end_of_with_expression, + STATE(6991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6107), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304764] = 23, + [307207] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9594), 1, + ACTIONS(9646), 1, sym__end_of_with_expression, - STATE(6949), 1, + STATE(6992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304849] = 20, + [307292] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, - anon_sym_PIPE, - ACTIONS(9490), 1, - anon_sym_CARET, - ACTIONS(9494), 1, - anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, - anon_sym_AMP_AMP, - ACTIONS(9512), 1, - sym_binary_ampersand, - STATE(6950), 1, + STATE(6993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9498), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9598), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9600), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 6, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5979), 4, + ACTIONS(6163), 15, sym__end_of_with_expression, + sym_binary_ampersand, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - ACTIONS(9496), 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(9508), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9510), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [304928] = 23, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [307353] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(8021), 1, + sym__start_of_tuple_type, + ACTIONS(8023), 1, + sym__start_of_named_tuple_type, + ACTIONS(8296), 1, + anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_DASH_GT, + STATE(6994), 1, + sym_heredoc_body, + STATE(7864), 1, + sym_constant, + STATE(7962), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8019), 2, + sym_self, + sym_underscore_type, + ACTIONS(4700), 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(7902), 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, + [307422] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, - anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, - anon_sym_AMP_AMP, - ACTIONS(9506), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9596), 1, - sym__end_of_with_expression, - STATE(6951), 1, + STATE(6995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(9496), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305013] = 23, + ACTIONS(6169), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6167), 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, + [307491] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6469), 1, - sym__end_of_with_expression, - ACTIONS(8935), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, - anon_sym_AMP_AMP, - ACTIONS(9506), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - STATE(6952), 1, + STATE(6996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305098] = 23, + ACTIONS(6171), 5, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [307568] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9648), 1, + sym_identifier, + ACTIONS(9650), 1, + sym_identifier_method_call, + STATE(6997), 1, + sym_heredoc_body, + STATE(8305), 1, + sym__operator_token, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8522), 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(8524), 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, + [307623] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(6173), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, - anon_sym_AMP_AMP, - ACTIONS(9506), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9598), 1, - sym__end_of_with_expression, - STATE(6953), 1, + STATE(6998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305183] = 20, + ACTIONS(6171), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [307700] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5981), 1, + ACTIONS(6177), 1, anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6954), 1, + STATE(6999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5979), 4, + ACTIONS(6175), 4, + sym__end_of_with_expression, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305262] = 17, + [307779] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(6491), 1, + anon_sym_COLON2, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9548), 1, + ACTIONS(9558), 1, + anon_sym_AMP_AMP, + ACTIONS(9560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(6955), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + STATE(7000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9534), 2, + ACTIONS(9552), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5961), 4, - anon_sym_DOT_DOT, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5959), 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, - [305335] = 23, + [307864] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9600), 1, - anon_sym_RBRACE, - STATE(6956), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9652), 1, + anon_sym_COLON2, + STATE(7001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305420] = 23, + [307949] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(6177), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9602), 1, - anon_sym_RPAREN, - STATE(6957), 1, + STATE(7002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(6175), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305505] = 23, + [308028] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9604), 1, - anon_sym_COLON2, - STATE(6958), 1, + STATE(7003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(6518), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305590] = 23, + [308109] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9606), 1, - anon_sym_COLON2, - STATE(6959), 1, + ACTIONS(9654), 1, + anon_sym_RBRACE, + STATE(7004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305675] = 23, + [308194] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(6373), 1, + sym__end_of_with_expression, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9608), 1, - anon_sym_COLON2, - STATE(6960), 1, + STATE(7005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305760] = 23, + [308279] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(6095), 1, + sym__end_of_with_expression, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9610), 1, - anon_sym_COLON2, - STATE(6961), 1, + STATE(7006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305845] = 21, + [308364] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6405), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(6373), 1, + anon_sym_COLON2, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(6962), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + STATE(7007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6403), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305926] = 23, + [308449] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9612), 1, - sym__end_of_with_expression, - STATE(6963), 1, + ACTIONS(8663), 1, + anon_sym_EQ_GT, + STATE(7008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306011] = 23, + [308534] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9614), 1, - anon_sym_COLON2, - STATE(6964), 1, + ACTIONS(9656), 1, + anon_sym_RBRACE, + STATE(7009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306096] = 23, + [308619] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, ACTIONS(9616), 1, - sym__end_of_with_expression, - STATE(6965), 1, + anon_sym_QMARK, + ACTIONS(9658), 1, + anon_sym_COLON2, + STATE(7010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306181] = 21, + [308704] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6109), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(7603), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - STATE(6966), 1, + ACTIONS(9660), 1, + anon_sym_RBRACE, + STATE(7011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6107), 3, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(9486), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306262] = 21, + [308789] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9520), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9538), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6967), 1, + ACTIONS(9662), 1, + sym__end_of_with_expression, + STATE(7012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6332), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306343] = 23, + [308874] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, + ACTIONS(9616), 1, anon_sym_QMARK, - ACTIONS(9618), 1, - sym__end_of_with_expression, - STATE(6968), 1, + ACTIONS(9664), 1, + anon_sym_COLON2, + STATE(7013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306428] = 23, + [308959] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6205), 1, - sym__end_of_with_expression, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, + ACTIONS(9616), 1, anon_sym_QMARK, - STATE(6969), 1, + ACTIONS(9666), 1, + anon_sym_COLON2, + STATE(7014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306513] = 23, + [309044] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6205), 1, - anon_sym_COLON2, - ACTIONS(7392), 1, + ACTIONS(6255), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - STATE(6970), 1, + STATE(7015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(6253), 3, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306598] = 8, + [309125] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - STATE(6971), 1, + STATE(7016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, + ACTIONS(6135), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -619887,7 +625142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6542), 23, + ACTIONS(6133), 23, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -619911,92 +625166,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [306653] = 8, + [309180] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - STATE(6972), 1, + ACTIONS(9542), 1, + anon_sym_PIPE, + ACTIONS(9544), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_EQ_EQ, + ACTIONS(9554), 1, + anon_sym_AMP_STAR, + ACTIONS(9558), 1, + anon_sym_AMP_AMP, + ACTIONS(9560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9566), 1, + sym_binary_ampersand, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9668), 1, + anon_sym_COLON2, + STATE(7017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9502), 2, + ACTIONS(9546), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9552), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6544), 7, - anon_sym_DOT_DOT, + ACTIONS(9540), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6542), 23, - sym__end_of_with_expression, + ACTIONS(9550), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(9564), 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, - [306708] = 10, + [309265] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - STATE(6973), 1, + STATE(7018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9534), 2, + ACTIONS(9546), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9546), 4, + ACTIONS(9562), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6528), 6, + ACTIONS(6139), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 19, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, + ACTIONS(6137), 13, 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, @@ -620007,272 +625279,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [306767] = 23, + [309328] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, + ACTIONS(9616), 1, anon_sym_QMARK, - ACTIONS(9620), 1, - sym__end_of_with_expression, - STATE(6974), 1, + ACTIONS(9670), 1, + anon_sym_COLON2, + STATE(7019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306852] = 8, + [309413] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(6083), 1, + anon_sym_COLON2, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - STATE(6975), 1, + ACTIONS(9542), 1, + anon_sym_PIPE, + ACTIONS(9544), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_EQ_EQ, + ACTIONS(9554), 1, + anon_sym_AMP_STAR, + ACTIONS(9558), 1, + anon_sym_AMP_AMP, + ACTIONS(9560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9566), 1, + sym_binary_ampersand, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + STATE(7020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9502), 2, + ACTIONS(9546), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9552), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, - anon_sym_DOT_DOT, + ACTIONS(9540), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6554), 23, - sym__end_of_with_expression, + ACTIONS(9550), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(9564), 4, sym__binary_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_DOT_DOT_DOT, + [309498] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6520), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(9574), 1, + anon_sym_PIPE, + ACTIONS(9576), 1, anon_sym_CARET, + ACTIONS(9580), 1, + anon_sym_EQ_EQ, + ACTIONS(9586), 1, + anon_sym_AMP_STAR, + ACTIONS(9592), 1, + anon_sym_AMP_AMP, + ACTIONS(9594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9602), 1, + sym_binary_ampersand, + STATE(7021), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(9588), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6518), 3, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9572), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9582), 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, - [306907] = 23, + ACTIONS(9598), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9600), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [309579] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9622), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9672), 1, anon_sym_COLON2, - STATE(6976), 1, + STATE(7022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306992] = 23, + [309664] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(6491), 1, + sym__end_of_with_expression, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9624), 1, - anon_sym_COLON2, - STATE(6977), 1, + STATE(7023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307077] = 8, + [309749] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - STATE(6978), 1, + ACTIONS(9554), 1, + anon_sym_AMP_STAR, + STATE(7024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6556), 7, + ACTIONS(9564), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6127), 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(6554), 23, + ACTIONS(6125), 19, 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, @@ -620287,572 +625636,540 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [307132] = 23, + [309808] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, + ACTIONS(9616), 1, anon_sym_QMARK, - ACTIONS(9626), 1, - sym__end_of_with_expression, - STATE(6979), 1, + ACTIONS(9674), 1, + anon_sym_COLON2, + STATE(7025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307217] = 8, + [309893] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9628), 1, - sym_identifier, - ACTIONS(9630), 1, - sym_identifier_method_call, - STATE(2025), 1, - sym__operator_token, - STATE(6980), 1, + ACTIONS(6459), 1, + sym__end_of_with_expression, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, + anon_sym_PIPE, + ACTIONS(9576), 1, + anon_sym_CARET, + ACTIONS(9580), 1, + anon_sym_EQ_EQ, + ACTIONS(9586), 1, + anon_sym_AMP_STAR, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, + anon_sym_AMP_AMP, + ACTIONS(9594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9602), 1, + sym_binary_ampersand, + STATE(7026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8509), 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(8511), 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(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(9588), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9572), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9582), 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, - [307272] = 23, + ACTIONS(9598), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9600), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [309978] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(6143), 1, + anon_sym_DOT_DOT, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9632), 1, - anon_sym_COLON2, - STATE(6981), 1, + STATE(7027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(6141), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307357] = 23, + [310059] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9634), 1, - anon_sym_RBRACE, - STATE(6982), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9676), 1, + anon_sym_COLON2, + STATE(7028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307442] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(8029), 1, - sym__start_of_tuple_type, - ACTIONS(8031), 1, - sym__start_of_named_tuple_type, - ACTIONS(8169), 1, - anon_sym_LPAREN, - ACTIONS(8171), 1, - anon_sym_DASH_GT, - STATE(6983), 1, - sym_heredoc_body, - STATE(7824), 1, - sym_constant, - STATE(7888), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8027), 2, - sym_self, - sym_underscore_type, - ACTIONS(4700), 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(7867), 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, - [307511] = 23, + [310144] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6459), 1, - anon_sym_COLON2, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(6984), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9678), 1, + anon_sym_COLON2, + STATE(7029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307596] = 12, + [310229] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9532), 1, + ACTIONS(9542), 1, + anon_sym_PIPE, + ACTIONS(9544), 1, + anon_sym_CARET, + ACTIONS(9548), 1, + anon_sym_EQ_EQ, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - STATE(6985), 1, + ACTIONS(9558), 1, + anon_sym_AMP_AMP, + ACTIONS(9560), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9566), 1, + sym_binary_ampersand, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9680), 1, + anon_sym_COLON2, + STATE(7030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9534), 2, + ACTIONS(9552), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9544), 4, + ACTIONS(9540), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9550), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6558), 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, - [307659] = 23, + [310314] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9636), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9682), 1, anon_sym_COLON2, - STATE(6986), 1, + STATE(7031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307744] = 23, + [310399] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9638), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9684), 1, anon_sym_COLON2, - STATE(6987), 1, + STATE(7032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307829] = 12, + [310484] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - STATE(6988), 1, + STATE(7033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9508), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6560), 6, + ACTIONS(6127), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6558), 13, + ACTIONS(6125), 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, @@ -620862,224 +626179,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [307892] = 15, + [310543] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(8029), 1, - sym__start_of_tuple_type, - ACTIONS(8031), 1, - sym__start_of_named_tuple_type, - ACTIONS(8169), 1, - anon_sym_LPAREN, - ACTIONS(8171), 1, - anon_sym_DASH_GT, - STATE(6989), 1, + ACTIONS(8871), 1, + anon_sym_DOT, + ACTIONS(8897), 1, + sym__start_of_index_operator, + STATE(7034), 1, sym_heredoc_body, - STATE(7824), 1, - sym_constant, - STATE(7907), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, - sym_self, - sym_underscore_type, - ACTIONS(4722), 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(7867), 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, - [307961] = 23, + ACTIONS(9588), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6131), 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(6129), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [310598] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6461), 1, + ACTIONS(6085), 1, anon_sym_COLON2, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(6990), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + STATE(7035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308046] = 23, + [310683] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6247), 1, - sym__end_of_with_expression, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, + ACTIONS(9616), 1, anon_sym_QMARK, - STATE(6991), 1, + ACTIONS(9686), 1, + anon_sym_COLON2, + STATE(7036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308131] = 13, + [310768] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9688), 1, + sym_identifier, + ACTIONS(9690), 1, + sym_identifier_method_call, + STATE(7037), 1, + sym_heredoc_body, + STATE(7872), 1, + sym__operator_token, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8456), 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(8458), 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, + [310823] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9532), 1, - anon_sym_AMP_STAR, + ACTIONS(9542), 1, + anon_sym_PIPE, + ACTIONS(9544), 1, + anon_sym_CARET, ACTIONS(9548), 1, + anon_sym_EQ_EQ, + ACTIONS(9554), 1, + anon_sym_AMP_STAR, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(6992), 1, + STATE(7038), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9546), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9556), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6147), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9550), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9562), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9564), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6145), 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, + [310896] = 13, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(9554), 1, + anon_sym_AMP_STAR, + ACTIONS(9566), 1, + sym_binary_ampersand, + STATE(7039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5965), 6, + ACTIONS(6151), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5963), 12, + ACTIONS(6149), 12, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_BANG_EQ, @@ -621092,1000 +626505,1096 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [308196] = 23, + [310961] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6247), 1, - anon_sym_COLON2, - ACTIONS(7392), 1, + ACTIONS(6704), 1, + anon_sym_COMMA, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(7414), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(7416), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(7420), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7422), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7426), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7432), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7436), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7438), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7440), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7446), 1, sym_binary_ampersand, - STATE(6993), 1, + STATE(7040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7424), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7430), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7434), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7418), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7428), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7442), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7444), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308281] = 8, + [311046] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9640), 1, - sym_identifier, - ACTIONS(9642), 1, - sym_identifier_method_call, - STATE(6994), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(9554), 1, + anon_sym_AMP_STAR, + STATE(7041), 1, sym_heredoc_body, - STATE(8264), 1, - sym__operator_token, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8415), 10, + ACTIONS(9556), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9562), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9564), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6165), 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(8417), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6163), 15, + sym_binary_ampersand, + 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, - [308336] = 23, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [311107] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6461), 1, - sym__end_of_with_expression, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, + ACTIONS(9616), 1, anon_sym_QMARK, - STATE(6995), 1, + ACTIONS(9692), 1, + anon_sym_COLON2, + STATE(7042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308421] = 23, + [311192] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9644), 1, - anon_sym_COLON2, - STATE(6996), 1, + ACTIONS(9694), 1, + anon_sym_RBRACE, + STATE(7043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308506] = 23, + [311277] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, - anon_sym_PIPE, - ACTIONS(9490), 1, - anon_sym_CARET, - ACTIONS(9494), 1, - anon_sym_EQ_EQ, - ACTIONS(9500), 1, - anon_sym_AMP_STAR, - ACTIONS(9504), 1, - anon_sym_AMP_AMP, - ACTIONS(9506), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, - sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9646), 1, - sym__end_of_with_expression, - STATE(6997), 1, + STATE(7044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9498), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(6131), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + anon_sym_AMP_STAR, + ACTIONS(6129), 23, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308591] = 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, + anon_sym_COLON2, + [311332] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(9568), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(9570), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(9590), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9648), 1, - anon_sym_COLON2, - STATE(6998), 1, + ACTIONS(9696), 1, + sym__end_of_with_expression, + STATE(7045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308676] = 10, + [311417] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(6363), 1, + anon_sym_DOT_DOT, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9500), 1, + ACTIONS(9574), 1, + anon_sym_PIPE, + ACTIONS(9576), 1, + anon_sym_CARET, + ACTIONS(9580), 1, + anon_sym_EQ_EQ, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - STATE(6999), 1, + ACTIONS(9592), 1, + anon_sym_AMP_AMP, + ACTIONS(9594), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9602), 1, + sym_binary_ampersand, + STATE(7046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9502), 2, + ACTIONS(9578), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9584), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9510), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6528), 6, - anon_sym_DOT_DOT, + ACTIONS(6361), 3, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9572), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6526), 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, + ACTIONS(9582), 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, - [308735] = 23, + ACTIONS(9598), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9600), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [311498] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, - anon_sym_DOT_DOT, - ACTIONS(9516), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, - anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9650), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9698), 1, anon_sym_COLON2, - STATE(7000), 1, + STATE(7047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308820] = 21, + [311583] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6334), 1, - anon_sym_DOT_DOT, - ACTIONS(8935), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - STATE(7001), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9700), 1, + anon_sym_COLON2, + STATE(7048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6332), 3, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308901] = 23, + [311668] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(6095), 1, + anon_sym_COLON2, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9550), 1, + ACTIONS(9612), 1, anon_sym_DOT_DOT, - ACTIONS(9552), 1, + ACTIONS(9614), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, + ACTIONS(9616), 1, anon_sym_QMARK, - ACTIONS(9652), 1, - sym__end_of_with_expression, - STATE(7002), 1, + STATE(7049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [308986] = 23, + [311753] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(8560), 1, - anon_sym_EQ_GT, - STATE(7003), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9702), 1, + anon_sym_COLON2, + STATE(7050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [309071] = 23, + [311838] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, + ACTIONS(7404), 1, anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9542), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(9544), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(9548), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(9554), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(9558), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(9560), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(9566), 1, sym_binary_ampersand, - ACTIONS(9654), 1, - anon_sym_RBRACE, - STATE(7004), 1, + ACTIONS(9612), 1, + anon_sym_DOT_DOT, + ACTIONS(9614), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9616), 1, + anon_sym_QMARK, + ACTIONS(9704), 1, + anon_sym_COLON2, + STATE(7051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(9546), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(9552), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(9556), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(9540), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(9550), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(9562), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(9564), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [309156] = 23, + [311923] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9706), 1, + sym_identifier, + ACTIONS(9708), 1, + sym_identifier_method_call, + STATE(7052), 1, + sym_heredoc_body, + STATE(8187), 1, + sym__operator_token, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8489), 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(8491), 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, + [311978] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, + ACTIONS(8871), 1, anon_sym_DOT, - ACTIONS(8961), 1, + ACTIONS(8897), 1, sym__start_of_index_operator, - ACTIONS(9488), 1, + ACTIONS(9568), 1, + anon_sym_DOT_DOT, + ACTIONS(9570), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9574), 1, anon_sym_PIPE, - ACTIONS(9490), 1, + ACTIONS(9576), 1, anon_sym_CARET, - ACTIONS(9494), 1, + ACTIONS(9580), 1, anon_sym_EQ_EQ, - ACTIONS(9500), 1, + ACTIONS(9586), 1, anon_sym_AMP_STAR, - ACTIONS(9504), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9592), 1, anon_sym_AMP_AMP, - ACTIONS(9506), 1, + ACTIONS(9594), 1, anon_sym_PIPE_PIPE, - ACTIONS(9512), 1, + ACTIONS(9602), 1, sym_binary_ampersand, - ACTIONS(9550), 1, - anon_sym_DOT_DOT, - ACTIONS(9552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9554), 1, - anon_sym_QMARK, - ACTIONS(9656), 1, + ACTIONS(9710), 1, sym__end_of_with_expression, - STATE(7005), 1, + STATE(7053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9492), 2, + ACTIONS(9578), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9498), 2, + ACTIONS(9584), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9502), 2, + ACTIONS(9588), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9486), 3, + ACTIONS(9572), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9496), 4, + ACTIONS(9582), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9508), 4, + ACTIONS(9598), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9510), 4, + ACTIONS(9600), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [309241] = 23, + [312063] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(8021), 1, + sym__start_of_tuple_type, + ACTIONS(8023), 1, + sym__start_of_named_tuple_type, + ACTIONS(8296), 1, + anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_DASH_GT, + STATE(7054), 1, + sym_heredoc_body, + STATE(7864), 1, + sym_constant, + STATE(7955), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8019), 2, + sym_self, + sym_underscore_type, + ACTIONS(4722), 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(7902), 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, + [312132] = 22, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9658), 1, - anon_sym_COLON2, - STATE(7006), 1, + ACTIONS(9712), 1, + anon_sym_DOT, + STATE(7055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [309326] = 23, + [312214] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6469), 1, - anon_sym_COLON2, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - STATE(7007), 1, + ACTIONS(9714), 1, + anon_sym_DOT, + STATE(7056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [309411] = 23, + [312296] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(9514), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(9516), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9520), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(9522), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(9526), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(9532), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(9536), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(9538), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(9540), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(9548), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9660), 1, - anon_sym_COLON2, - STATE(7008), 1, + ACTIONS(9716), 1, + anon_sym_DOT, + STATE(7057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9524), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9530), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9534), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9518), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9528), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9544), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9546), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [309496] = 16, + [312378] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4676), 1, + ACTIONS(4654), 1, anon_sym_EQ, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9718), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7009), 1, + STATE(7058), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(8304), 1, + STATE(8292), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4678), 9, + ACTIONS(4656), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -622095,7 +627604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622108,146 +627617,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309566] = 16, + [312448] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4676), 1, - anon_sym_EQ, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9668), 1, - anon_sym_DASH_GT, - STATE(7010), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(8248), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - ACTIONS(4678), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_STAR, + ACTIONS(7406), 1, + sym__start_of_index_operator, + ACTIONS(7579), 1, + anon_sym_DOT_DOT, + ACTIONS(7581), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7587), 1, anon_sym_PIPE, + ACTIONS(7589), 1, + anon_sym_CARET, + ACTIONS(7593), 1, + anon_sym_EQ_EQ, + ACTIONS(7599), 1, + anon_sym_AMP_STAR, + ACTIONS(7603), 1, anon_sym_QMARK, - STATE(7794), 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, - [309636] = 16, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4654), 1, - anon_sym_EQ, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7011), 1, + ACTIONS(7605), 1, + anon_sym_AMP_AMP, + ACTIONS(7607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7619), 1, + sym_binary_ampersand, + ACTIONS(9723), 1, + anon_sym_DOT, + STATE(7059), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(8302), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - ACTIONS(4656), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - STATE(7794), 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, - [309706] = 16, + ACTIONS(7591), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7597), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7601), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7595), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7615), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7617), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [312530] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4626), 1, + ACTIONS(4676), 1, anon_sym_EQ, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7012), 1, + STATE(7060), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(8298), 1, + STATE(8338), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4628), 9, + ACTIONS(4678), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -622257,7 +627718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622270,38 +627731,38 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309776] = 16, + [312600] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4626), 1, + ACTIONS(4654), 1, anon_sym_EQ, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9671), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, anon_sym_DASH_GT, - STATE(7013), 1, + STATE(7061), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(8246), 1, + STATE(8346), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4628), 9, + ACTIONS(4656), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -622311,7 +627772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622324,518 +627785,506 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309846] = 22, + [312670] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, + ACTIONS(7404), 1, + anon_sym_DOT, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9674), 1, - anon_sym_DOT, - STATE(7014), 1, + STATE(7062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [309928] = 22, + [312752] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9676), 1, + ACTIONS(9729), 1, anon_sym_DOT, - STATE(7015), 1, + STATE(7063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [310010] = 22, + [312834] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(9678), 1, - anon_sym_DOT, - STATE(7016), 1, + ACTIONS(4626), 1, + anon_sym_EQ, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9731), 1, + anon_sym_DASH_GT, + STATE(7064), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8313), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [310092] = 22, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + ACTIONS(4628), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_STAR, anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(9680), 1, - anon_sym_DOT, - STATE(7017), 1, + STATE(7836), 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, + [312904] = 16, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4626), 1, + anon_sym_EQ, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + STATE(7065), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8339), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [310174] = 22, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + ACTIONS(4628), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + STATE(7836), 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, + [312974] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9682), 1, + ACTIONS(9734), 1, anon_sym_DOT, - STATE(7018), 1, + STATE(7066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [310256] = 22, + [313056] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9684), 1, + ACTIONS(9736), 1, anon_sym_DOT, - STATE(7019), 1, + STATE(7067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [310338] = 22, + [313138] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9686), 1, + ACTIONS(9738), 1, anon_sym_DOT, - STATE(7020), 1, + STATE(7068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [310420] = 22, + [313220] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9688), 1, + ACTIONS(9740), 1, anon_sym_DOT, - STATE(7021), 1, + STATE(7069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [310502] = 16, + [313302] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4654), 1, + ACTIONS(4676), 1, anon_sym_EQ, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9690), 1, + ACTIONS(9742), 1, anon_sym_DASH_GT, - STATE(7022), 1, + STATE(7070), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(8247), 1, + STATE(8307), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4656), 9, + ACTIONS(4678), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -622845,7 +628294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622858,233 +628307,158 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310572] = 22, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - STATE(7023), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [310654] = 22, + [313372] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, + ACTIONS(7406), 1, sym__start_of_index_operator, - ACTIONS(7550), 1, + ACTIONS(7579), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7581), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, + ACTIONS(7587), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7589), 1, anon_sym_CARET, - ACTIONS(7564), 1, + ACTIONS(7593), 1, anon_sym_EQ_EQ, - ACTIONS(7570), 1, + ACTIONS(7599), 1, anon_sym_AMP_STAR, - ACTIONS(7574), 1, + ACTIONS(7603), 1, anon_sym_QMARK, - ACTIONS(7576), 1, + ACTIONS(7605), 1, anon_sym_AMP_AMP, - ACTIONS(7578), 1, + ACTIONS(7607), 1, anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, + ACTIONS(7619), 1, sym_binary_ampersand, - ACTIONS(9693), 1, + ACTIONS(9745), 1, anon_sym_DOT, - STATE(7024), 1, + STATE(7071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, + ACTIONS(7591), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7568), 2, + ACTIONS(7597), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, + ACTIONS(7601), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, + ACTIONS(7585), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7566), 4, + ACTIONS(7595), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7586), 4, + ACTIONS(7615), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7588), 4, + ACTIONS(7617), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [310736] = 22, + [313454] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7418), 1, - sym__start_of_index_operator, - ACTIONS(7550), 1, - anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_CARET, - ACTIONS(7564), 1, - anon_sym_EQ_EQ, - ACTIONS(7570), 1, - anon_sym_AMP_STAR, - ACTIONS(7574), 1, - anon_sym_QMARK, - ACTIONS(7576), 1, - anon_sym_AMP_AMP, - ACTIONS(7578), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7590), 1, - sym_binary_ampersand, - ACTIONS(9695), 1, - anon_sym_DOT, - STATE(7025), 1, + ACTIONS(8428), 1, + anon_sym_typeof, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(8436), 1, + sym__start_of_tuple_type, + ACTIONS(8438), 1, + sym__start_of_named_tuple_type, + ACTIONS(8655), 1, + anon_sym_LPAREN, + ACTIONS(8657), 1, + anon_sym_DASH_GT, + STATE(7072), 1, sym_heredoc_body, + STATE(7947), 1, + sym_constant, + STATE(8046), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7562), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7568), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7572), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7556), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7566), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7586), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7588), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [310818] = 22, + ACTIONS(8434), 2, + sym_self, + sym_underscore_type, + ACTIONS(4722), 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, + STATE(7971), 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, + [313521] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9697), 1, - sym_identifier, - ACTIONS(9699), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(9749), 1, anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9705), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - STATE(282), 1, - sym__terminator, - STATE(7026), 1, + STATE(7073), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(8341), 1, sym_constant, - STATE(8281), 1, + STATE(8359), 1, sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, - sym_splat_type, - STATE(10045), 1, - sym_proc_type, - STATE(10176), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1381), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(9711), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + ACTIONS(4656), 9, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623097,36 +628471,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310899] = 15, + [313588] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8307), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(8309), 1, + ACTIONS(8430), 1, sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(8751), 1, + ACTIONS(8655), 1, anon_sym_LPAREN, - ACTIONS(8753), 1, + ACTIONS(8657), 1, anon_sym_DASH_GT, - STATE(7027), 1, + STATE(7074), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(7947), 1, sym_constant, - STATE(7979), 1, + STATE(8010), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - ACTIONS(4722), 9, + ACTIONS(4700), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -623136,7 +628510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_forall, - STATE(7926), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623149,36 +628523,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310966] = 15, + [313655] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9707), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9717), 1, + ACTIONS(9764), 1, anon_sym_DASH_GT, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7028), 1, + STATE(7075), 1, sym_heredoc_body, - STATE(8279), 1, - sym_constant, - STATE(8286), 1, + STATE(8340), 1, sym__type, + STATE(8341), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - ACTIONS(4628), 9, + ACTIONS(4678), 9, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -623188,7 +628562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(8354), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623201,46 +628575,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311033] = 15, + [313722] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8307), 1, + ACTIONS(9747), 1, + anon_sym_LPAREN, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(8309), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(8751), 1, - anon_sym_LPAREN, - ACTIONS(8753), 1, + ACTIONS(9767), 1, anon_sym_DASH_GT, - STATE(7029), 1, + STATE(7076), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(8341), 1, sym_constant, - STATE(7990), 1, + STATE(8342), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - ACTIONS(4700), 9, + ACTIONS(4628), 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_DOT, anon_sym_end, - anon_sym_forall, - STATE(7926), 12, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623253,46 +628627,53 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311100] = 15, + [313789] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - ACTIONS(9724), 1, + ACTIONS(9770), 1, + sym_identifier, + ACTIONS(9772), 1, anon_sym_DASH_GT, - STATE(7030), 1, + ACTIONS(9774), 1, + anon_sym_STAR, + ACTIONS(9776), 1, + anon_sym_typeof, + STATE(292), 1, + sym__terminator, + STATE(7077), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(8341), 1, sym_constant, - STATE(8296), 1, + STATE(8345), 1, sym__type, + STATE(9519), 1, + sym__splattable_type, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10333), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, - sym_self, - sym_underscore_type, - ACTIONS(4656), 9, + ACTIONS(1381), 2, sym__line_break, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - STATE(8354), 12, + ACTIONS(9778), 2, + sym_self, + sym_underscore_type, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623305,46 +628686,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311167] = 15, + [313870] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9707), 1, + ACTIONS(9782), 1, + anon_sym_DASH_GT, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - ACTIONS(9727), 1, - anon_sym_DASH_GT, - STATE(7031), 1, + STATE(7078), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(8365), 1, sym_constant, - STATE(8297), 1, + STATE(8548), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - ACTIONS(4678), 9, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4678), 8, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT, - anon_sym_end, anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(8354), 12, + anon_sym_do, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623357,45 +628737,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311234] = 15, + [313936] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - ACTIONS(9730), 1, - anon_sym_LPAREN, - ACTIONS(9732), 1, + ACTIONS(9797), 1, anon_sym_DASH_GT, - STATE(7032), 1, + STATE(7079), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(8365), 1, sym_constant, - STATE(8683), 1, + STATE(8559), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - ACTIONS(4678), 8, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4628), 8, + sym__start_of_brace_block, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT, - anon_sym_end, anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(8354), 12, + anon_sym_do, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623408,33 +628788,33 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311300] = 15, + [314002] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - ACTIONS(9730), 1, + ACTIONS(9800), 1, anon_sym_LPAREN, - ACTIONS(9732), 1, + ACTIONS(9802), 1, anon_sym_DASH_GT, - STATE(7033), 1, + STATE(7080), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(8341), 1, sym_constant, - STATE(8567), 1, + STATE(8671), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, ACTIONS(4628), 8, @@ -623446,7 +628826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(8354), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623459,36 +628839,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311366] = 15, + [314068] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - ACTIONS(9730), 1, + ACTIONS(9800), 1, anon_sym_LPAREN, - ACTIONS(9732), 1, + ACTIONS(9802), 1, anon_sym_DASH_GT, - STATE(7034), 1, + STATE(7081), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(8341), 1, sym_constant, - STATE(8677), 1, + STATE(8669), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - ACTIONS(4656), 8, + ACTIONS(4678), 8, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -623497,7 +628877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - STATE(8354), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623510,45 +628890,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311432] = 15, + [314134] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9736), 1, - anon_sym_DASH_GT, - ACTIONS(9739), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - STATE(7035), 1, + ACTIONS(9800), 1, + anon_sym_LPAREN, + ACTIONS(9802), 1, + anon_sym_DASH_GT, + STATE(7082), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8341), 1, sym_constant, - STATE(8542), 1, + STATE(8673), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, ACTIONS(4656), 8, - sym__start_of_brace_block, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT, + anon_sym_end, anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - anon_sym_do, - STATE(8598), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623561,36 +628941,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311498] = 15, + [314200] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9751), 1, + ACTIONS(9804), 1, anon_sym_DASH_GT, - STATE(7036), 1, + STATE(7083), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(8456), 1, + STATE(8367), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - ACTIONS(4678), 8, + ACTIONS(4656), 8, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -623599,7 +628979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_do, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623612,45 +628992,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311564] = 15, + [314266] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, - anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9754), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9446), 1, + anon_sym_LPAREN, + ACTIONS(9448), 1, anon_sym_DASH_GT, - STATE(7037), 1, + ACTIONS(9807), 1, + sym__constant_segment, + ACTIONS(9810), 1, + anon_sym_COLON_COLON, + STATE(7084), 1, sym_heredoc_body, - STATE(8355), 1, - sym__type, - STATE(8399), 1, + STATE(7817), 1, sym_constant, + STATE(8039), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4628), 8, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - STATE(8598), 12, + ACTIONS(4722), 7, + anon_sym_SEMI, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_def, + sym_class_var, + sym_private, + sym_protected, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623663,36 +629042,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311630] = 15, + [314331] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9757), 1, + ACTIONS(9813), 1, anon_sym_LPAREN, - ACTIONS(9759), 1, + ACTIONS(9815), 1, anon_sym_DASH_GT, - STATE(7038), 1, + STATE(7085), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(9042), 1, + STATE(9176), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - ACTIONS(4628), 7, + ACTIONS(4678), 7, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_DOT, @@ -623700,7 +629079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_do, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623713,36 +629092,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311695] = 15, + [314396] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9757), 1, + ACTIONS(9813), 1, anon_sym_LPAREN, - ACTIONS(9759), 1, + ACTIONS(9815), 1, anon_sym_DASH_GT, - STATE(7039), 1, + STATE(7086), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(8945), 1, + STATE(9180), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - ACTIONS(4656), 7, + ACTIONS(4628), 7, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_DOT, @@ -623750,7 +629129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_do, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623763,36 +629142,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311760] = 15, + [314461] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9410), 1, + ACTIONS(9446), 1, anon_sym_LPAREN, - ACTIONS(9412), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9761), 1, + ACTIONS(9817), 1, sym__constant_segment, - ACTIONS(9764), 1, + ACTIONS(9820), 1, anon_sym_COLON_COLON, - STATE(7040), 1, + STATE(7087), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7972), 1, + STATE(8033), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4722), 7, + ACTIONS(4700), 7, anon_sym_SEMI, anon_sym_end, anon_sym_AT_LBRACK, @@ -623800,7 +629179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_var, sym_private, sym_protected, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623813,36 +629192,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311825] = 15, + [314526] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9757), 1, + ACTIONS(9813), 1, anon_sym_LPAREN, - ACTIONS(9759), 1, + ACTIONS(9815), 1, anon_sym_DASH_GT, - STATE(7041), 1, + STATE(7088), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(8948), 1, + STATE(8970), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - ACTIONS(4678), 7, + ACTIONS(4656), 7, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_DOT, @@ -623850,7 +629229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_do, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623863,44 +629242,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311890] = 15, + [314591] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8586), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9410), 1, - anon_sym_LPAREN, - ACTIONS(9412), 1, - anon_sym_DASH_GT, - ACTIONS(9767), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9770), 1, - anon_sym_COLON_COLON, - STATE(7042), 1, + STATE(7089), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7997), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11250), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4700), 7, - anon_sym_SEMI, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_def, - sym_class_var, - sym_private, - sym_protected, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623913,46 +629294,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311955] = 19, + [314662] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7043), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9376), 1, + STATE(3177), 1, sym__splattable_type, - STATE(12199), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4059), 1, sym__bare_type, + STATE(7090), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623965,46 +629346,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312026] = 19, + [314733] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(3323), 1, sym__constant_segment, ACTIONS(5553), 1, - anon_sym_LPAREN, - ACTIONS(5558), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(5137), 1, sym_constant, - STATE(5085), 1, + STATE(5179), 1, sym__type, - STATE(5703), 1, + STATE(5839), 1, sym__splattable_type, - STATE(6042), 1, + STATE(6090), 1, sym_splat_type, - STATE(6288), 1, + STATE(6379), 1, sym_proc_type, - STATE(6733), 1, + STATE(6879), 1, sym__bare_type, - STATE(7044), 1, + STATE(7091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624017,46 +629398,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312097] = 19, + [314804] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, - anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, + ACTIONS(2899), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(5250), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_typeof, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7045), 1, - sym_heredoc_body, - STATE(8279), 1, + ACTIONS(9831), 1, + anon_sym_DASH_GT, + ACTIONS(9833), 1, + anon_sym_STAR, + STATE(2575), 1, sym_constant, - STATE(8281), 1, + STATE(2581), 1, sym__type, - STATE(9443), 1, + STATE(2816), 1, sym__splattable_type, - STATE(9555), 1, + STATE(3139), 1, sym_splat_type, - STATE(10045), 1, + STATE(3287), 1, sym_proc_type, - STATE(10107), 1, + STATE(3358), 1, sym__bare_type, + STATE(7092), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624069,46 +629450,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312168] = 19, + [314875] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, - anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, + ACTIONS(2899), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(5250), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, + anon_sym_typeof, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7046), 1, - sym_heredoc_body, - STATE(8279), 1, + ACTIONS(9831), 1, + anon_sym_DASH_GT, + ACTIONS(9833), 1, + anon_sym_STAR, + STATE(2575), 1, sym_constant, - STATE(8281), 1, + STATE(2581), 1, sym__type, - STATE(9443), 1, + STATE(2816), 1, sym__splattable_type, - STATE(9555), 1, + STATE(3139), 1, sym_splat_type, - STATE(10045), 1, - sym_proc_type, - STATE(10632), 1, + STATE(3253), 1, sym__bare_type, + STATE(3287), 1, + sym_proc_type, + STATE(7093), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624121,46 +629502,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312239] = 19, + [314946] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2899), 1, + sym__constant_segment, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5255), 1, + anon_sym_typeof, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7047), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9831), 1, + anon_sym_DASH_GT, + ACTIONS(9833), 1, + anon_sym_STAR, + STATE(2575), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2581), 1, sym__type, - STATE(9624), 1, + STATE(2816), 1, sym__splattable_type, - STATE(11942), 1, + STATE(3139), 1, + sym_splat_type, + STATE(3287), 1, + sym_proc_type, + STATE(3445), 1, sym__bare_type, + STATE(7094), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624173,46 +629554,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312310] = 19, + [315017] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2899), 1, + sym__constant_segment, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5255), 1, + anon_sym_typeof, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7048), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9831), 1, + anon_sym_DASH_GT, + ACTIONS(9833), 1, + anon_sym_STAR, + STATE(2575), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2581), 1, sym__type, - STATE(9624), 1, + STATE(2816), 1, sym__splattable_type, - STATE(11888), 1, + STATE(3139), 1, + sym_splat_type, + STATE(3287), 1, + sym_proc_type, + STATE(3505), 1, sym__bare_type, + STATE(7095), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624225,46 +629606,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312381] = 19, + [315088] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(2899), 1, sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5255), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9831), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9833), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(2575), 1, sym_constant, - STATE(2382), 1, + STATE(2581), 1, sym__type, - STATE(2468), 1, + STATE(2816), 1, sym__splattable_type, - STATE(2548), 1, + STATE(3139), 1, sym_splat_type, - STATE(2769), 1, + STATE(3287), 1, sym_proc_type, - STATE(3044), 1, + STATE(3514), 1, sym__bare_type, - STATE(7049), 1, + STATE(7096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624277,46 +629658,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312452] = 19, + [315159] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(2899), 1, + sym__constant_segment, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5255), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9831), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9833), 1, anon_sym_STAR, - STATE(7050), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(2575), 1, sym_constant, - STATE(8514), 1, + STATE(2581), 1, sym__type, - STATE(9642), 1, + STATE(2816), 1, sym__splattable_type, - STATE(9705), 1, + STATE(3139), 1, sym_splat_type, - STATE(9838), 1, - sym__bare_type, - STATE(10775), 1, + STATE(3287), 1, sym_proc_type, + STATE(3555), 1, + sym__bare_type, + STATE(7097), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624329,46 +629710,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312523] = 19, + [315230] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2899), 1, + sym__constant_segment, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5255), 1, + anon_sym_typeof, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7051), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9831), 1, + anon_sym_DASH_GT, + ACTIONS(9833), 1, + anon_sym_STAR, + STATE(2575), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2581), 1, sym__type, - STATE(9376), 1, + STATE(2816), 1, sym__splattable_type, - STATE(10332), 1, + STATE(3139), 1, + sym_splat_type, + STATE(3287), 1, + sym_proc_type, + STATE(3563), 1, sym__bare_type, + STATE(7098), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624381,46 +629762,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312594] = 19, + [315301] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2899), 1, + sym__constant_segment, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5255), 1, + anon_sym_typeof, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7052), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9831), 1, + anon_sym_DASH_GT, + ACTIONS(9833), 1, + anon_sym_STAR, + STATE(2575), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2581), 1, sym__type, - STATE(9624), 1, + STATE(2816), 1, sym__splattable_type, - STATE(12310), 1, + STATE(3139), 1, + sym_splat_type, + STATE(3287), 1, + sym_proc_type, + STATE(3340), 1, sym__bare_type, + STATE(7099), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624433,46 +629814,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312665] = 19, + [315372] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2899), 1, + sym__constant_segment, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5255), 1, + anon_sym_typeof, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7053), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9831), 1, + anon_sym_DASH_GT, + ACTIONS(9833), 1, + anon_sym_STAR, + STATE(2575), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2581), 1, sym__type, - STATE(9624), 1, + STATE(2816), 1, sym__splattable_type, - STATE(12313), 1, + STATE(3139), 1, + sym_splat_type, + STATE(3287), 1, + sym_proc_type, + STATE(3354), 1, sym__bare_type, + STATE(7100), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624485,46 +629866,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312736] = 19, + [315443] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(3191), 1, sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(3004), 1, sym_constant, - STATE(2382), 1, + STATE(3013), 1, sym__type, - STATE(2470), 1, + STATE(3483), 1, sym__splattable_type, - STATE(2548), 1, + STATE(3772), 1, sym_splat_type, - STATE(2769), 1, + STATE(4141), 1, sym_proc_type, - STATE(2853), 1, + STATE(4573), 1, sym__bare_type, - STATE(7054), 1, + STATE(7101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624537,46 +629918,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312807] = 19, + [315514] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, + anon_sym_COLON_COLON, + ACTIONS(5325), 1, + sym__start_of_tuple_type, + ACTIONS(5327), 1, + sym__start_of_named_tuple_type, + ACTIONS(5336), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9823), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9825), 1, anon_sym_STAR, - ACTIONS(8580), 1, + STATE(2891), 1, + sym_constant, + STATE(2892), 1, + sym__type, + STATE(3177), 1, + sym__splattable_type, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4109), 1, + sym__bare_type, + STATE(7102), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5323), 2, + sym_self, + sym_underscore_type, + STATE(3148), 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, + [315585] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7055), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9376), 1, + STATE(5360), 1, sym__splattable_type, - STATE(12263), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5913), 1, sym__bare_type, + STATE(7103), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624589,46 +630022,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312878] = 19, + [315656] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(7278), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(7280), 1, + ACTIONS(8430), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9787), 1, + ACTIONS(9845), 1, anon_sym_STAR, - STATE(7056), 1, + STATE(7104), 1, sym_heredoc_body, - STATE(7728), 1, + STATE(7947), 1, sym_constant, - STATE(7730), 1, + STATE(7958), 1, sym__type, - STATE(7858), 1, + STATE(8308), 1, sym__splattable_type, - STATE(7901), 1, + STATE(8353), 1, sym_splat_type, - STATE(7945), 1, + STATE(8396), 1, sym__bare_type, - STATE(7995), 1, + STATE(8609), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624641,46 +630074,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312949] = 19, + [315727] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(1347), 1, sym__constant_segment, - ACTIONS(5225), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5319), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9825), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(2891), 1, sym_constant, - STATE(2382), 1, + STATE(2892), 1, sym__type, - STATE(2470), 1, + STATE(3177), 1, sym__splattable_type, - STATE(2548), 1, + STATE(3572), 1, sym_splat_type, - STATE(2769), 1, + STATE(3597), 1, sym_proc_type, - STATE(2785), 1, + STATE(4154), 1, sym__bare_type, - STATE(7057), 1, + STATE(7105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624693,46 +630126,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313020] = 19, + [315798] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8021), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(8023), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9791), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(7058), 1, + STATE(7106), 1, sym_heredoc_body, - STATE(7803), 1, - sym__type, - STATE(7824), 1, + STATE(8365), 1, sym_constant, - STATE(8093), 1, + STATE(8571), 1, + sym__type, + STATE(9640), 1, sym__splattable_type, - STATE(8245), 1, + STATE(9810), 1, sym_splat_type, - STATE(8312), 1, - sym_proc_type, - STATE(8536), 1, + STATE(9818), 1, sym__bare_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624745,46 +630178,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313091] = 19, + [315869] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, - anon_sym_typeof, - ACTIONS(5358), 1, - anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(3119), 1, - sym_constant, - STATE(3120), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(484), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(3376), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(3750), 1, + STATE(2126), 1, sym_splat_type, - STATE(4130), 1, + STATE(2146), 1, sym_proc_type, - STATE(4399), 1, - sym__bare_type, - STATE(7059), 1, + STATE(7107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624797,46 +630230,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313162] = 19, + [315940] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5225), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(3222), 1, sym_constant, - STATE(2382), 1, + STATE(3233), 1, sym__type, - STATE(2470), 1, + STATE(3836), 1, sym__splattable_type, - STATE(2548), 1, + STATE(4207), 1, sym_splat_type, - STATE(2769), 1, + STATE(4417), 1, sym_proc_type, - STATE(3044), 1, + STATE(4850), 1, sym__bare_type, - STATE(7060), 1, + STATE(7108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624849,46 +630282,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313233] = 19, + [316011] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9791), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(7061), 1, - sym_heredoc_body, - STATE(7803), 1, - sym__type, - STATE(7824), 1, + STATE(3222), 1, sym_constant, - STATE(8093), 1, + STATE(3233), 1, + sym__type, + STATE(3836), 1, sym__splattable_type, - STATE(8245), 1, + STATE(4207), 1, sym_splat_type, - STATE(8312), 1, + STATE(4417), 1, sym_proc_type, - STATE(8332), 1, + STATE(4614), 1, sym__bare_type, + STATE(7109), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624901,46 +630334,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313304] = 19, + [316082] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5225), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(3222), 1, sym_constant, - STATE(2382), 1, + STATE(3233), 1, sym__type, - STATE(2470), 1, + STATE(3836), 1, sym__splattable_type, - STATE(2548), 1, + STATE(4207), 1, sym_splat_type, - STATE(2769), 1, + STATE(4417), 1, sym_proc_type, - STATE(3028), 1, + STATE(4688), 1, sym__bare_type, - STATE(7062), 1, + STATE(7110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624953,46 +630386,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313375] = 19, + [316153] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5225), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(3222), 1, sym_constant, - STATE(2382), 1, + STATE(3233), 1, sym__type, - STATE(2470), 1, + STATE(3836), 1, sym__splattable_type, - STATE(2548), 1, + STATE(4207), 1, sym_splat_type, - STATE(2769), 1, + STATE(4417), 1, sym_proc_type, - STATE(3057), 1, + STATE(4718), 1, sym__bare_type, - STATE(7063), 1, + STATE(7111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625005,46 +630438,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313446] = 19, + [316224] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, - anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9787), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(7064), 1, - sym_heredoc_body, - STATE(7728), 1, + STATE(3222), 1, sym_constant, - STATE(7730), 1, + STATE(3233), 1, sym__type, - STATE(7858), 1, + STATE(3836), 1, sym__splattable_type, - STATE(7901), 1, + STATE(4207), 1, sym_splat_type, - STATE(7951), 1, - sym__bare_type, - STATE(7995), 1, + STATE(4417), 1, sym_proc_type, + STATE(4721), 1, + sym__bare_type, + STATE(7112), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625057,46 +630490,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313517] = 19, + [316295] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, - anon_sym_DASH_GT, - ACTIONS(9787), 1, - anon_sym_STAR, - STATE(7065), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7113), 1, sym_heredoc_body, - STATE(7728), 1, + STATE(7817), 1, sym_constant, - STATE(7730), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(7858), 1, + STATE(9518), 1, sym__splattable_type, - STATE(7901), 1, - sym_splat_type, - STATE(7937), 1, + STATE(10171), 1, sym__bare_type, - STATE(7995), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625109,46 +630542,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313588] = 19, + [316366] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5395), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(3222), 1, sym_constant, - STATE(3120), 1, + STATE(3233), 1, sym__type, - STATE(3376), 1, + STATE(3836), 1, sym__splattable_type, - STATE(3750), 1, + STATE(4207), 1, sym_splat_type, - STATE(4130), 1, + STATE(4417), 1, sym_proc_type, - STATE(4267), 1, + STATE(4735), 1, sym__bare_type, - STATE(7066), 1, + STATE(7114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625161,46 +630594,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313659] = 19, + [316437] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(7115), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2382), 1, + STATE(8571), 1, sym__type, - STATE(2468), 1, + STATE(9640), 1, sym__splattable_type, - STATE(2548), 1, + STATE(9714), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(2769), 1, + STATE(10767), 1, sym_proc_type, - STATE(2853), 1, - sym__bare_type, - STATE(7067), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625213,46 +630646,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313730] = 19, + [316508] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5225), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(3222), 1, sym_constant, - STATE(2382), 1, + STATE(3233), 1, sym__type, - STATE(2470), 1, + STATE(3836), 1, sym__splattable_type, - STATE(2548), 1, + STATE(4207), 1, sym_splat_type, - STATE(2769), 1, + STATE(4417), 1, sym_proc_type, - STATE(2844), 1, + STATE(4737), 1, sym__bare_type, - STATE(7068), 1, + STATE(7116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625265,46 +630698,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313801] = 19, + [316579] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5225), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(3222), 1, sym_constant, - STATE(2382), 1, + STATE(3233), 1, sym__type, - STATE(2470), 1, + STATE(3836), 1, sym__splattable_type, - STATE(2548), 1, + STATE(4207), 1, sym_splat_type, - STATE(2769), 1, + STATE(4417), 1, sym_proc_type, - STATE(2845), 1, + STATE(4752), 1, sym__bare_type, - STATE(7069), 1, + STATE(7117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625317,46 +630750,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313872] = 19, + [316650] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, - anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9787), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(7070), 1, - sym_heredoc_body, - STATE(7728), 1, + STATE(3222), 1, sym_constant, - STATE(7730), 1, + STATE(3233), 1, sym__type, - STATE(7858), 1, + STATE(3836), 1, sym__splattable_type, - STATE(7901), 1, + STATE(4207), 1, sym_splat_type, - STATE(7947), 1, - sym__bare_type, - STATE(7995), 1, + STATE(4417), 1, sym_proc_type, + STATE(4760), 1, + sym__bare_type, + STATE(7118), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625369,46 +630802,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313943] = 19, + [316721] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, - anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, - anon_sym_DASH_GT, - ACTIONS(9779), 1, - anon_sym_STAR, - STATE(2374), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7119), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2382), 1, - sym__type, - STATE(2470), 1, - sym__splattable_type, - STATE(2548), 1, + STATE(8013), 1, sym_splat_type, - STATE(2769), 1, + STATE(8201), 1, sym_proc_type, - STATE(2971), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12178), 1, sym__bare_type, - STATE(7071), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625421,46 +630854,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314014] = 19, + [316792] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(7278), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(7280), 1, + ACTIONS(8430), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9787), 1, + ACTIONS(9845), 1, anon_sym_STAR, - STATE(7072), 1, + STATE(7120), 1, sym_heredoc_body, - STATE(7728), 1, + STATE(7947), 1, sym_constant, - STATE(7730), 1, + STATE(7958), 1, sym__type, - STATE(7858), 1, + STATE(8308), 1, sym__splattable_type, - STATE(7901), 1, + STATE(8353), 1, sym_splat_type, - STATE(7944), 1, - sym__bare_type, - STATE(7995), 1, + STATE(8609), 1, sym_proc_type, + STATE(8859), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625473,46 +630906,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314085] = 19, + [316863] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(1347), 1, sym__constant_segment, - ACTIONS(5225), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5319), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9825), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(2891), 1, sym_constant, - STATE(2382), 1, + STATE(2892), 1, sym__type, - STATE(2470), 1, + STATE(3177), 1, sym__splattable_type, - STATE(2548), 1, + STATE(3572), 1, sym_splat_type, - STATE(2769), 1, + STATE(3597), 1, sym_proc_type, - STATE(3011), 1, + STATE(4157), 1, sym__bare_type, - STATE(7073), 1, + STATE(7121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625525,46 +630958,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314156] = 19, + [316934] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, - anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(5418), 1, + anon_sym_typeof, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, anon_sym_DASH_GT, - ACTIONS(9787), 1, + ACTIONS(9871), 1, anon_sym_STAR, - STATE(7074), 1, - sym_heredoc_body, - STATE(7728), 1, + STATE(4129), 1, sym_constant, - STATE(7730), 1, + STATE(4131), 1, sym__type, - STATE(7858), 1, + STATE(4810), 1, sym__splattable_type, - STATE(7901), 1, + STATE(4938), 1, sym_splat_type, - STATE(7956), 1, - sym__bare_type, - STATE(7995), 1, + STATE(5071), 1, sym_proc_type, + STATE(5399), 1, + sym__bare_type, + STATE(7122), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625577,46 +631010,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314227] = 19, + [317005] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3251), 1, + sym__constant_segment, + ACTIONS(5418), 1, + anon_sym_typeof, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7075), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, + anon_sym_DASH_GT, + ACTIONS(9871), 1, + anon_sym_STAR, + STATE(4129), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4131), 1, sym__type, - STATE(9833), 1, + STATE(4810), 1, sym__splattable_type, - STATE(10784), 1, + STATE(4938), 1, + sym_splat_type, + STATE(5071), 1, + sym_proc_type, + STATE(5190), 1, sym__bare_type, + STATE(7123), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625629,46 +631062,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314298] = 19, + [317076] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, - anon_sym_typeof, - ACTIONS(5358), 1, - anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(4650), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(4652), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(9873), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9875), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9877), 1, anon_sym_STAR, - STATE(3119), 1, - sym_constant, - STATE(3120), 1, + ACTIONS(9879), 1, + anon_sym_typeof, + ACTIONS(9881), 1, + sym__constant_segment, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(2025), 1, + sym_constant, + STATE(2055), 1, sym__splattable_type, - STATE(4130), 1, - sym_proc_type, - STATE(4399), 1, + STATE(2065), 1, sym__bare_type, - STATE(7076), 1, + STATE(2070), 1, + sym_splat_type, + STATE(2081), 1, + sym_proc_type, + STATE(7124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(9885), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(2038), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625681,46 +631114,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314369] = 19, + [317147] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5418), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9869), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9871), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(4129), 1, sym_constant, - STATE(3120), 1, + STATE(4131), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(4810), 1, sym__splattable_type, - STATE(4130), 1, + STATE(4938), 1, + sym_splat_type, + STATE(5071), 1, sym_proc_type, - STATE(4894), 1, + STATE(5433), 1, sym__bare_type, - STATE(7077), 1, + STATE(7125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625733,46 +631166,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314440] = 19, + [317218] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5418), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9869), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9871), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(4129), 1, sym_constant, - STATE(3120), 1, + STATE(4131), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(4810), 1, sym__splattable_type, - STATE(4130), 1, + STATE(4938), 1, + sym_splat_type, + STATE(5071), 1, sym_proc_type, - STATE(4448), 1, + STATE(5450), 1, sym__bare_type, - STATE(7078), 1, + STATE(7126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625785,46 +631218,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314511] = 19, + [317289] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(9128), 1, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9797), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9799), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(7079), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7881), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(509), 1, sym__bare_type, - STATE(7896), 1, + STATE(2075), 1, sym__type, - STATE(7967), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8250), 1, - sym__splattable_type, + STATE(7127), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625837,46 +631270,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314582] = 19, + [317360] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, - anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(5528), 1, + anon_sym_typeof, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, + ACTIONS(5538), 1, + anon_sym_LPAREN, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9787), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(7080), 1, - sym_heredoc_body, - STATE(7728), 1, + STATE(4959), 1, sym_constant, - STATE(7730), 1, + STATE(4960), 1, sym__type, - STATE(7858), 1, + STATE(5466), 1, sym__splattable_type, - STATE(7901), 1, + STATE(5628), 1, sym_splat_type, - STATE(7995), 1, + STATE(5950), 1, sym_proc_type, - STATE(8148), 1, + STATE(6656), 1, sym__bare_type, + STATE(7128), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625889,46 +631322,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314653] = 19, + [317431] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(4959), 1, sym_constant, - STATE(3120), 1, + STATE(4960), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(5466), 1, sym__splattable_type, - STATE(4130), 1, + STATE(5628), 1, + sym_splat_type, + STATE(5950), 1, sym_proc_type, - STATE(4468), 1, + STATE(6027), 1, sym__bare_type, - STATE(7081), 1, + STATE(7129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625941,46 +631374,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314724] = 19, + [317502] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(4959), 1, sym_constant, - STATE(3120), 1, + STATE(4960), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(5466), 1, sym__splattable_type, - STATE(4130), 1, + STATE(5628), 1, + sym_splat_type, + STATE(5950), 1, sym_proc_type, - STATE(4471), 1, + STATE(6297), 1, sym__bare_type, - STATE(7082), 1, + STATE(7130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625993,46 +631426,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314795] = 19, + [317573] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(4959), 1, sym_constant, - STATE(3120), 1, + STATE(4960), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(5466), 1, sym__splattable_type, - STATE(4130), 1, + STATE(5628), 1, + sym_splat_type, + STATE(5950), 1, sym_proc_type, - STATE(4499), 1, + STATE(6314), 1, sym__bare_type, - STATE(7083), 1, + STATE(7131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626045,46 +631478,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314866] = 19, + [317644] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(4959), 1, sym_constant, - STATE(3120), 1, + STATE(4960), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(5466), 1, sym__splattable_type, - STATE(4130), 1, + STATE(5628), 1, + sym_splat_type, + STATE(5950), 1, sym_proc_type, - STATE(4500), 1, + STATE(6317), 1, sym__bare_type, - STATE(7084), 1, + STATE(7132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626097,46 +631530,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314937] = 19, + [317715] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(4959), 1, sym_constant, - STATE(3120), 1, + STATE(4960), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(5466), 1, sym__splattable_type, - STATE(4130), 1, + STATE(5628), 1, + sym_splat_type, + STATE(5950), 1, sym_proc_type, - STATE(4510), 1, + STATE(6320), 1, sym__bare_type, - STATE(7085), 1, + STATE(7133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626149,46 +631582,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315008] = 19, + [317786] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(9747), 1, + anon_sym_LPAREN, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, - anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9772), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9774), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(7134), 1, + sym_heredoc_body, + STATE(8341), 1, sym_constant, - STATE(3120), 1, + STATE(8345), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(9519), 1, sym__splattable_type, - STATE(4130), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, sym_proc_type, - STATE(4512), 1, + STATE(10513), 1, sym__bare_type, - STATE(7086), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626201,46 +631634,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315079] = 19, + [317857] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(3191), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, - anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(3004), 1, sym_constant, - STATE(4680), 1, + STATE(3013), 1, sym__type, - STATE(5048), 1, + STATE(3483), 1, sym__splattable_type, - STATE(5180), 1, + STATE(3772), 1, sym_splat_type, - STATE(5737), 1, + STATE(4141), 1, sym_proc_type, - STATE(6118), 1, + STATE(4382), 1, sym__bare_type, - STATE(7087), 1, + STATE(7135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626253,46 +631686,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315150] = 19, + [317928] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(4959), 1, sym_constant, - STATE(4680), 1, + STATE(4960), 1, sym__type, - STATE(5048), 1, + STATE(5466), 1, sym__splattable_type, - STATE(5180), 1, + STATE(5628), 1, sym_splat_type, - STATE(5595), 1, - sym__bare_type, - STATE(5737), 1, + STATE(5950), 1, sym_proc_type, - STATE(7088), 1, + STATE(6321), 1, + sym__bare_type, + STATE(7136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626305,46 +631738,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315221] = 19, + [317999] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(4959), 1, sym_constant, - STATE(4680), 1, + STATE(4960), 1, sym__type, - STATE(5048), 1, + STATE(5466), 1, sym__splattable_type, - STATE(5180), 1, + STATE(5628), 1, sym_splat_type, - STATE(5737), 1, + STATE(5950), 1, sym_proc_type, - STATE(5843), 1, + STATE(6324), 1, sym__bare_type, - STATE(7089), 1, + STATE(7137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626357,46 +631790,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315292] = 19, + [318070] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9889), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(4959), 1, sym_constant, - STATE(4680), 1, + STATE(4960), 1, sym__type, - STATE(5048), 1, + STATE(5466), 1, sym__splattable_type, - STATE(5180), 1, + STATE(5628), 1, sym_splat_type, - STATE(5737), 1, + STATE(5950), 1, sym_proc_type, - STATE(6098), 1, + STATE(6325), 1, sym__bare_type, - STATE(7090), 1, + STATE(7138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626409,46 +631842,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315363] = 19, + [318141] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(3191), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, - anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(3004), 1, sym_constant, - STATE(4680), 1, + STATE(3013), 1, sym__type, - STATE(5048), 1, + STATE(3483), 1, sym__splattable_type, - STATE(5180), 1, + STATE(3772), 1, sym_splat_type, - STATE(5737), 1, + STATE(4141), 1, sym_proc_type, - STATE(6102), 1, + STATE(4441), 1, sym__bare_type, - STATE(7091), 1, + STATE(7139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626461,46 +631894,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315434] = 19, + [318212] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, - anon_sym_typeof, - ACTIONS(5358), 1, - anon_sym_COLON_COLON, - ACTIONS(5362), 1, - sym__start_of_tuple_type, - ACTIONS(5364), 1, - sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(3119), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7140), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3120), 1, - sym__type, - STATE(3376), 1, - sym__splattable_type, - STATE(3750), 1, + STATE(8013), 1, sym_splat_type, - STATE(4130), 1, + STATE(8201), 1, sym_proc_type, - STATE(4448), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11034), 1, sym__bare_type, - STATE(7092), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626513,46 +631946,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315505] = 19, + [318283] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, - anon_sym_typeof, - ACTIONS(5472), 1, - anon_sym_COLON_COLON, - ACTIONS(5476), 1, - sym__start_of_tuple_type, - ACTIONS(5478), 1, - sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4679), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7141), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4680), 1, - sym__type, - STATE(5048), 1, - sym__splattable_type, - STATE(5180), 1, + STATE(8013), 1, sym_splat_type, - STATE(5737), 1, + STATE(8201), 1, sym_proc_type, - STATE(6138), 1, + STATE(8301), 1, + sym__type, + STATE(9518), 1, + sym__splattable_type, + STATE(10871), 1, sym__bare_type, - STATE(7093), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626565,46 +631998,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315576] = 19, + [318354] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, - anon_sym_typeof, - ACTIONS(5472), 1, - anon_sym_COLON_COLON, - ACTIONS(5476), 1, - sym__start_of_tuple_type, - ACTIONS(5478), 1, - sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4679), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7142), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4680), 1, - sym__type, - STATE(5048), 1, - sym__splattable_type, - STATE(5180), 1, + STATE(8013), 1, sym_splat_type, - STATE(5737), 1, + STATE(8201), 1, sym_proc_type, - STATE(6140), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11440), 1, sym__bare_type, - STATE(7094), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626617,46 +632050,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315647] = 19, + [318425] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, - anon_sym_typeof, - ACTIONS(5472), 1, - anon_sym_COLON_COLON, - ACTIONS(5476), 1, - sym__start_of_tuple_type, - ACTIONS(5478), 1, - sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4679), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7143), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4680), 1, - sym__type, - STATE(5048), 1, - sym__splattable_type, - STATE(5180), 1, + STATE(8013), 1, sym_splat_type, - STATE(5737), 1, + STATE(8201), 1, sym_proc_type, - STATE(6192), 1, + STATE(8301), 1, + sym__type, + STATE(9518), 1, + sym__splattable_type, + STATE(10874), 1, sym__bare_type, - STATE(7095), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626669,46 +632102,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315718] = 19, + [318496] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5418), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9869), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9871), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(4129), 1, sym_constant, - STATE(4680), 1, + STATE(4131), 1, sym__type, - STATE(5048), 1, + STATE(4810), 1, sym__splattable_type, - STATE(5180), 1, + STATE(4938), 1, sym_splat_type, - STATE(5737), 1, + STATE(5071), 1, sym_proc_type, - STATE(6195), 1, + STATE(5453), 1, sym__bare_type, - STATE(7096), 1, + STATE(7144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626721,46 +632154,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315789] = 19, + [318567] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(5204), 1, + ACTIONS(5418), 1, anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9869), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, + ACTIONS(9871), 1, anon_sym_STAR, - STATE(2318), 1, + STATE(4129), 1, sym_constant, - STATE(2320), 1, + STATE(4131), 1, sym__type, - STATE(2384), 1, + STATE(4810), 1, sym__splattable_type, - STATE(2454), 1, + STATE(4938), 1, sym_splat_type, - STATE(2459), 1, + STATE(5071), 1, sym_proc_type, - STATE(2555), 1, + STATE(5461), 1, sym__bare_type, - STATE(7097), 1, + STATE(7145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626773,43 +632206,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315860] = 16, + [318638] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4720), 1, - anon_sym_EQ, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7098), 1, + STATE(7146), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(8280), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11379), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4722), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626822,46 +632258,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315925] = 19, + [318709] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, + ACTIONS(3279), 1, sym__constant_segment, - ACTIONS(5204), 1, + ACTIONS(5497), 1, anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(5513), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9839), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, + ACTIONS(9841), 1, anon_sym_STAR, - STATE(2318), 1, + STATE(4768), 1, sym_constant, - STATE(2320), 1, + STATE(4772), 1, sym__type, - STATE(2384), 1, + STATE(5360), 1, sym__splattable_type, - STATE(2454), 1, + STATE(5481), 1, sym_splat_type, - STATE(2459), 1, + STATE(5767), 1, sym_proc_type, - STATE(2475), 1, + STATE(5914), 1, sym__bare_type, - STATE(7099), 1, + STATE(7147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626874,46 +632310,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315996] = 19, + [318780] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, - sym__constant_segment, - ACTIONS(5204), 1, - anon_sym_typeof, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5210), 1, - sym__start_of_tuple_type, - ACTIONS(5212), 1, - sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(2318), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7148), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2320), 1, - sym__type, - STATE(2384), 1, - sym__splattable_type, - STATE(2454), 1, + STATE(8013), 1, sym_splat_type, - STATE(2459), 1, + STATE(8201), 1, sym_proc_type, - STATE(2591), 1, + STATE(8301), 1, + sym__type, + STATE(9518), 1, + sym__splattable_type, + STATE(10876), 1, sym__bare_type, - STATE(7100), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626926,46 +632362,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316067] = 19, + [318851] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(5204), 1, + ACTIONS(5418), 1, anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9869), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, + ACTIONS(9871), 1, anon_sym_STAR, - STATE(2318), 1, + STATE(4129), 1, sym_constant, - STATE(2320), 1, + STATE(4131), 1, sym__type, - STATE(2384), 1, + STATE(4810), 1, sym__splattable_type, - STATE(2454), 1, + STATE(4938), 1, sym_splat_type, - STATE(2459), 1, + STATE(5071), 1, sym_proc_type, - STATE(2613), 1, + STATE(5462), 1, sym__bare_type, - STATE(7101), 1, + STATE(7149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626978,46 +632414,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316138] = 19, + [318922] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, + ACTIONS(3279), 1, sym__constant_segment, - ACTIONS(5204), 1, + ACTIONS(5497), 1, anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(5513), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9839), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, + ACTIONS(9841), 1, anon_sym_STAR, - STATE(2318), 1, + STATE(4768), 1, sym_constant, - STATE(2320), 1, + STATE(4772), 1, sym__type, - STATE(2384), 1, + STATE(5360), 1, sym__splattable_type, - STATE(2454), 1, + STATE(5481), 1, sym_splat_type, - STATE(2459), 1, + STATE(5767), 1, sym_proc_type, - STATE(2617), 1, + STATE(6252), 1, sym__bare_type, - STATE(7102), 1, + STATE(7150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627030,46 +632466,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316209] = 19, + [318993] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, - sym__constant_segment, - ACTIONS(5204), 1, - anon_sym_typeof, - ACTIONS(5206), 1, - anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(4650), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(4652), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(9873), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9875), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, + ACTIONS(9877), 1, anon_sym_STAR, - STATE(2318), 1, - sym_constant, - STATE(2320), 1, + ACTIONS(9879), 1, + anon_sym_typeof, + ACTIONS(9881), 1, + sym__constant_segment, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, sym__type, - STATE(2384), 1, + STATE(2025), 1, + sym_constant, + STATE(2055), 1, sym__splattable_type, - STATE(2454), 1, + STATE(2061), 1, + sym__bare_type, + STATE(2070), 1, sym_splat_type, - STATE(2459), 1, + STATE(2081), 1, sym_proc_type, - STATE(2628), 1, - sym__bare_type, - STATE(7103), 1, + STATE(7151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(9885), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(2038), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627082,46 +632518,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316280] = 19, + [319064] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, - sym__constant_segment, - ACTIONS(5204), 1, - anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7152), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9518), 1, + sym__splattable_type, + STATE(10892), 1, + sym__bare_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + STATE(7836), 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, + [319135] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(2318), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7153), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2320), 1, - sym__type, - STATE(2384), 1, - sym__splattable_type, - STATE(2454), 1, + STATE(8013), 1, sym_splat_type, - STATE(2459), 1, + STATE(8201), 1, sym_proc_type, - STATE(2629), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11408), 1, sym__bare_type, - STATE(7104), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627134,46 +632622,43 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316351] = 19, + [319206] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, - sym__constant_segment, - ACTIONS(5204), 1, - anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(4720), 1, + anon_sym_EQ, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, - anon_sym_STAR, - STATE(2318), 1, - sym_constant, - STATE(2320), 1, - sym__type, - STATE(2384), 1, - sym__splattable_type, - STATE(2454), 1, - sym_splat_type, - STATE(2459), 1, - sym_proc_type, - STATE(2637), 1, - sym__bare_type, - STATE(7105), 1, + STATE(7154), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8357), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + ACTIONS(4722), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627186,46 +632671,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316422] = 19, + [319271] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5204), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(5395), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9807), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(2318), 1, + STATE(3222), 1, sym_constant, - STATE(2320), 1, + STATE(3233), 1, sym__type, - STATE(2384), 1, + STATE(3844), 1, sym__splattable_type, - STATE(2454), 1, + STATE(4207), 1, sym_splat_type, - STATE(2459), 1, + STATE(4417), 1, sym_proc_type, - STATE(2639), 1, + STATE(4850), 1, sym__bare_type, - STATE(7106), 1, + STATE(7155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627238,46 +632723,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316493] = 19, + [319342] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, - anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7107), 1, - sym_heredoc_body, - STATE(8279), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, + anon_sym_DASH_GT, + ACTIONS(9867), 1, + anon_sym_STAR, + STATE(3222), 1, sym_constant, - STATE(8281), 1, + STATE(3233), 1, sym__type, - STATE(9443), 1, + STATE(3844), 1, sym__splattable_type, - STATE(9555), 1, + STATE(4207), 1, sym_splat_type, - STATE(10045), 1, + STATE(4417), 1, sym_proc_type, - STATE(10667), 1, + STATE(4601), 1, sym__bare_type, + STATE(7156), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627290,46 +632775,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316564] = 19, + [319413] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5395), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(3222), 1, sym_constant, - STATE(3120), 1, + STATE(3233), 1, sym__type, - STATE(3376), 1, + STATE(3844), 1, sym__splattable_type, - STATE(3750), 1, + STATE(4207), 1, sym_splat_type, - STATE(4130), 1, + STATE(4417), 1, sym_proc_type, - STATE(4468), 1, + STATE(4688), 1, sym__bare_type, - STATE(7108), 1, + STATE(7157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627342,46 +632827,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316635] = 19, + [319484] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5395), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(3222), 1, sym_constant, - STATE(3120), 1, + STATE(3233), 1, sym__type, - STATE(3376), 1, + STATE(3844), 1, sym__splattable_type, - STATE(3750), 1, + STATE(4207), 1, sym_splat_type, - STATE(4130), 1, + STATE(4417), 1, sym_proc_type, - STATE(4471), 1, + STATE(4718), 1, sym__bare_type, - STATE(7109), 1, + STATE(7158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627394,43 +632879,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316706] = 16, + [319555] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4698), 1, - anon_sym_EQ, - ACTIONS(8580), 1, + ACTIONS(2582), 1, + sym__constant_segment, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(5395), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7110), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9867), 1, + anon_sym_STAR, + STATE(3222), 1, sym_constant, - STATE(8291), 1, + STATE(3233), 1, sym__type, + STATE(3844), 1, + sym__splattable_type, + STATE(4207), 1, + sym_splat_type, + STATE(4417), 1, + sym_proc_type, + STATE(4721), 1, + sym__bare_type, + STATE(7159), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - ACTIONS(4700), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(7794), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627443,46 +632931,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316771] = 19, + [319626] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9791), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(7111), 1, - sym_heredoc_body, - STATE(7803), 1, - sym__type, - STATE(7824), 1, + STATE(3222), 1, sym_constant, - STATE(8093), 1, + STATE(3233), 1, + sym__type, + STATE(3844), 1, sym__splattable_type, - STATE(8245), 1, + STATE(4207), 1, sym_splat_type, - STATE(8262), 1, - sym__bare_type, - STATE(8312), 1, + STATE(4417), 1, sym_proc_type, + STATE(4735), 1, + sym__bare_type, + STATE(7160), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627495,46 +632983,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316842] = 19, + [319697] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, - anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7112), 1, - sym_heredoc_body, - STATE(8279), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, + anon_sym_DASH_GT, + ACTIONS(9867), 1, + anon_sym_STAR, + STATE(3222), 1, sym_constant, - STATE(8281), 1, + STATE(3233), 1, sym__type, - STATE(9443), 1, + STATE(3844), 1, sym__splattable_type, - STATE(9555), 1, + STATE(4207), 1, sym_splat_type, - STATE(10045), 1, + STATE(4417), 1, sym_proc_type, - STATE(10086), 1, + STATE(4737), 1, sym__bare_type, + STATE(7161), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627547,46 +633035,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316913] = 19, + [319768] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, - anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7113), 1, - sym_heredoc_body, - STATE(8279), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, + anon_sym_DASH_GT, + ACTIONS(9867), 1, + anon_sym_STAR, + STATE(3222), 1, sym_constant, - STATE(8281), 1, + STATE(3233), 1, sym__type, - STATE(9443), 1, + STATE(3844), 1, sym__splattable_type, - STATE(9555), 1, + STATE(4207), 1, sym_splat_type, - STATE(10045), 1, + STATE(4417), 1, sym_proc_type, - STATE(10138), 1, + STATE(4752), 1, sym__bare_type, + STATE(7162), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627599,46 +633087,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316984] = 19, + [319839] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(5395), 1, + anon_sym_LPAREN, + ACTIONS(9865), 1, anon_sym_DASH_GT, - ACTIONS(9791), 1, + ACTIONS(9867), 1, anon_sym_STAR, - STATE(7114), 1, - sym_heredoc_body, - STATE(7803), 1, - sym__type, - STATE(7824), 1, + STATE(3222), 1, sym_constant, - STATE(8093), 1, + STATE(3233), 1, + sym__type, + STATE(3844), 1, sym__splattable_type, - STATE(8245), 1, + STATE(4207), 1, sym_splat_type, - STATE(8253), 1, - sym__bare_type, - STATE(8312), 1, + STATE(4417), 1, sym_proc_type, + STATE(4760), 1, + sym__bare_type, + STATE(7163), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627651,46 +633139,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317055] = 19, + [319910] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(8021), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9791), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(7115), 1, - sym_heredoc_body, - STATE(7803), 1, - sym__type, - STATE(7824), 1, + STATE(3004), 1, sym_constant, - STATE(8093), 1, + STATE(3013), 1, + sym__type, + STATE(3483), 1, sym__splattable_type, - STATE(8245), 1, + STATE(3772), 1, sym_splat_type, - STATE(8258), 1, - sym__bare_type, - STATE(8312), 1, + STATE(4141), 1, sym_proc_type, + STATE(4537), 1, + sym__bare_type, + STATE(7164), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627703,46 +633191,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317126] = 19, + [319981] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(5418), 1, + anon_sym_typeof, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, anon_sym_DASH_GT, - ACTIONS(9791), 1, + ACTIONS(9871), 1, anon_sym_STAR, - STATE(7116), 1, - sym_heredoc_body, - STATE(7803), 1, - sym__type, - STATE(7824), 1, + STATE(4129), 1, sym_constant, - STATE(8093), 1, + STATE(4131), 1, + sym__type, + STATE(4810), 1, sym__splattable_type, - STATE(8245), 1, + STATE(4938), 1, sym_splat_type, - STATE(8257), 1, - sym__bare_type, - STATE(8312), 1, + STATE(5071), 1, sym_proc_type, + STATE(5469), 1, + sym__bare_type, + STATE(7165), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627755,46 +633243,43 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317197] = 19, + [320052] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(4698), 1, + anon_sym_EQ, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9791), 1, - anon_sym_STAR, - STATE(7117), 1, + STATE(7166), 1, sym_heredoc_body, - STATE(7803), 1, - sym__type, - STATE(7824), 1, + STATE(7817), 1, sym_constant, - STATE(8093), 1, - sym__splattable_type, - STATE(8245), 1, - sym_splat_type, - STATE(8277), 1, - sym__bare_type, - STATE(8312), 1, - sym_proc_type, + STATE(8363), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + ACTIONS(4700), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627807,46 +633292,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317268] = 19, + [320117] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(5418), 1, + anon_sym_typeof, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, anon_sym_DASH_GT, - ACTIONS(9791), 1, + ACTIONS(9871), 1, anon_sym_STAR, - STATE(7118), 1, - sym_heredoc_body, - STATE(7803), 1, - sym__type, - STATE(7824), 1, + STATE(4129), 1, sym_constant, - STATE(8093), 1, + STATE(4131), 1, + sym__type, + STATE(4810), 1, sym__splattable_type, - STATE(8245), 1, + STATE(4938), 1, sym_splat_type, - STATE(8252), 1, - sym__bare_type, - STATE(8312), 1, + STATE(5071), 1, sym_proc_type, + STATE(5471), 1, + sym__bare_type, + STATE(7167), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627859,46 +633344,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317339] = 19, + [320188] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(8423), 1, + anon_sym_LPAREN, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, - anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9845), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(7168), 1, + sym_heredoc_body, + STATE(7947), 1, sym_constant, - STATE(3120), 1, + STATE(7958), 1, sym__type, - STATE(3750), 1, - sym_splat_type, - STATE(3797), 1, + STATE(8308), 1, sym__splattable_type, - STATE(4130), 1, + STATE(8353), 1, + sym_splat_type, + STATE(8609), 1, sym_proc_type, - STATE(6778), 1, + STATE(8960), 1, sym__bare_type, - STATE(7119), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627911,46 +633396,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317410] = 19, + [320259] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7120), 1, + STATE(7169), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10111), 1, + STATE(11535), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627963,46 +633448,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317481] = 19, + [320330] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3323), 1, + sym__constant_segment, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7121), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, + anon_sym_DASH_GT, + ACTIONS(9829), 1, + anon_sym_STAR, + STATE(5137), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(5179), 1, sym__type, - STATE(9376), 1, + STATE(5839), 1, sym__splattable_type, - STATE(10112), 1, + STATE(6090), 1, + sym_splat_type, + STATE(6379), 1, + sym_proc_type, + STATE(6958), 1, sym__bare_type, + STATE(7170), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628015,46 +633500,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317552] = 19, + [320401] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, + ACTIONS(3165), 1, sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(2799), 1, sym_constant, - STATE(2835), 1, + STATE(2801), 1, sym__type, - STATE(3215), 1, + STATE(3227), 1, sym__splattable_type, - STATE(3441), 1, + STATE(3378), 1, sym_splat_type, - STATE(3543), 1, + STATE(3825), 1, sym_proc_type, - STATE(3891), 1, + STATE(3983), 1, sym__bare_type, - STATE(7122), 1, + STATE(7171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628067,46 +633552,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317623] = 19, + [320472] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, + ACTIONS(3165), 1, sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(2799), 1, sym_constant, - STATE(2835), 1, + STATE(2801), 1, sym__type, - STATE(3215), 1, + STATE(3227), 1, sym__splattable_type, - STATE(3441), 1, + STATE(3378), 1, sym_splat_type, - STATE(3543), 1, - sym_proc_type, - STATE(3904), 1, + STATE(3636), 1, sym__bare_type, - STATE(7123), 1, + STATE(3825), 1, + sym_proc_type, + STATE(7172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628119,46 +633604,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317694] = 19, + [320543] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, + ACTIONS(3165), 1, sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(2799), 1, sym_constant, - STATE(2835), 1, + STATE(2801), 1, sym__type, - STATE(3215), 1, + STATE(3227), 1, sym__splattable_type, - STATE(3441), 1, + STATE(3378), 1, sym_splat_type, - STATE(3543), 1, + STATE(3825), 1, sym_proc_type, - STATE(3926), 1, + STATE(4215), 1, sym__bare_type, - STATE(7124), 1, + STATE(7173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628171,46 +633656,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317765] = 19, + [320614] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, + ACTIONS(3165), 1, sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(2799), 1, sym_constant, - STATE(2835), 1, + STATE(2801), 1, sym__type, - STATE(3215), 1, + STATE(3227), 1, sym__splattable_type, - STATE(3441), 1, + STATE(3378), 1, sym_splat_type, - STATE(3543), 1, + STATE(3825), 1, sym_proc_type, - STATE(3940), 1, + STATE(4290), 1, sym__bare_type, - STATE(7125), 1, + STATE(7174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628223,46 +633708,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317836] = 19, + [320685] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9772), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9774), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(7175), 1, + sym_heredoc_body, + STATE(8341), 1, sym_constant, - STATE(2835), 1, + STATE(8345), 1, sym__type, - STATE(3215), 1, + STATE(9519), 1, sym__splattable_type, - STATE(3441), 1, + STATE(9655), 1, sym_splat_type, - STATE(3543), 1, + STATE(10308), 1, sym_proc_type, - STATE(3943), 1, + STATE(10640), 1, sym__bare_type, - STATE(7126), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628275,46 +633760,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317907] = 19, + [320756] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, + ACTIONS(3165), 1, sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(2799), 1, sym_constant, - STATE(2835), 1, + STATE(2801), 1, sym__type, - STATE(3215), 1, + STATE(3227), 1, sym__splattable_type, - STATE(3441), 1, + STATE(3378), 1, sym_splat_type, - STATE(3543), 1, + STATE(3825), 1, sym_proc_type, - STATE(3955), 1, + STATE(4319), 1, sym__bare_type, - STATE(7127), 1, + STATE(7176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628327,46 +633812,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317978] = 19, + [320827] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, + ACTIONS(3165), 1, sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(2799), 1, sym_constant, - STATE(2835), 1, + STATE(2801), 1, sym__type, - STATE(3215), 1, + STATE(3227), 1, sym__splattable_type, - STATE(3441), 1, + STATE(3378), 1, sym_splat_type, - STATE(3543), 1, + STATE(3825), 1, sym_proc_type, - STATE(3956), 1, + STATE(3923), 1, sym__bare_type, - STATE(7128), 1, + STATE(7177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628379,46 +633864,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318049] = 19, + [320898] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(5225), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(2386), 1, sym_constant, - STATE(2835), 1, + STATE(2398), 1, sym__type, - STATE(3215), 1, + STATE(2500), 1, sym__splattable_type, - STATE(3441), 1, + STATE(2630), 1, sym_splat_type, - STATE(3543), 1, + STATE(2800), 1, sym_proc_type, - STATE(3963), 1, + STATE(3059), 1, sym__bare_type, - STATE(7129), 1, + STATE(7178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628431,46 +633916,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318120] = 19, + [320969] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, - anon_sym_DASH_GT, - ACTIONS(9811), 1, - anon_sym_STAR, - STATE(2810), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7179), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2835), 1, - sym__type, - STATE(3215), 1, - sym__splattable_type, - STATE(3441), 1, + STATE(8013), 1, sym_splat_type, - STATE(3543), 1, + STATE(8201), 1, sym_proc_type, - STATE(3965), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11987), 1, sym__bare_type, - STATE(7130), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628483,46 +633968,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318191] = 19, + [321040] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(3165), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5300), 1, + anon_sym_LPAREN, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, - anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(2799), 1, sym_constant, - STATE(3120), 1, + STATE(2801), 1, sym__type, - STATE(3376), 1, + STATE(3227), 1, sym__splattable_type, - STATE(3750), 1, + STATE(3378), 1, sym_splat_type, - STATE(4130), 1, + STATE(3825), 1, sym_proc_type, - STATE(4499), 1, + STATE(3924), 1, sym__bare_type, - STATE(7131), 1, + STATE(7180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628535,46 +634020,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318262] = 19, + [321111] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, - anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(7181), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(3120), 1, + STATE(8571), 1, sym__type, - STATE(3376), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3750), 1, + STATE(9810), 1, sym_splat_type, - STATE(4130), 1, - sym_proc_type, - STATE(4500), 1, + STATE(9989), 1, sym__bare_type, - STATE(7132), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628587,46 +634072,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318333] = 19, + [321182] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(3165), 1, + sym__constant_segment, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(7133), 1, - sym_heredoc_body, - STATE(7889), 1, + STATE(2799), 1, sym_constant, - STATE(7890), 1, + STATE(2801), 1, sym__type, - STATE(8267), 1, + STATE(3227), 1, sym__splattable_type, - STATE(8310), 1, + STATE(3378), 1, sym_splat_type, - STATE(8525), 1, - sym__bare_type, - STATE(8700), 1, + STATE(3825), 1, sym_proc_type, + STATE(3932), 1, + sym__bare_type, + STATE(7182), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628639,46 +634124,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318404] = 19, + [321253] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(3165), 1, + sym__constant_segment, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9893), 1, anon_sym_STAR, - STATE(7134), 1, - sym_heredoc_body, - STATE(7889), 1, + STATE(2799), 1, sym_constant, - STATE(7890), 1, + STATE(2801), 1, sym__type, - STATE(8267), 1, + STATE(3227), 1, sym__splattable_type, - STATE(8310), 1, + STATE(3378), 1, sym_splat_type, - STATE(8700), 1, + STATE(3825), 1, sym_proc_type, - STATE(9019), 1, + STATE(3943), 1, sym__bare_type, + STATE(7183), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628691,46 +634176,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318475] = 19, + [321324] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9815), 1, - anon_sym_STAR, - STATE(7135), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7184), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(7817), 1, sym_constant, - STATE(7890), 1, - sym__type, - STATE(8267), 1, - sym__splattable_type, - STATE(8310), 1, + STATE(8013), 1, sym_splat_type, - STATE(8700), 1, + STATE(8201), 1, sym_proc_type, - STATE(9053), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11836), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628743,46 +634228,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318546] = 19, + [321395] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9815), 1, - anon_sym_STAR, - STATE(7136), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7185), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(7817), 1, sym_constant, - STATE(7890), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(8267), 1, + STATE(9582), 1, sym__splattable_type, - STATE(8310), 1, - sym_splat_type, - STATE(8554), 1, + STATE(11838), 1, sym__bare_type, - STATE(8700), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628795,46 +634280,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318617] = 19, + [321466] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(8309), 1, + ACTIONS(8430), 1, sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9845), 1, anon_sym_STAR, - STATE(7137), 1, + STATE(7186), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(7947), 1, sym_constant, - STATE(7890), 1, + STATE(7958), 1, sym__type, - STATE(8267), 1, + STATE(8308), 1, sym__splattable_type, - STATE(8310), 1, + STATE(8353), 1, sym_splat_type, - STATE(8557), 1, + STATE(8530), 1, sym__bare_type, - STATE(8700), 1, + STATE(8609), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628847,46 +634332,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318688] = 19, + [321537] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(8309), 1, + ACTIONS(8430), 1, sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9815), 1, + ACTIONS(9845), 1, anon_sym_STAR, - STATE(7138), 1, + STATE(7187), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(7947), 1, sym_constant, - STATE(7890), 1, + STATE(7958), 1, sym__type, - STATE(8267), 1, + STATE(8308), 1, sym__splattable_type, - STATE(8310), 1, + STATE(8353), 1, sym_splat_type, - STATE(8441), 1, + STATE(8533), 1, sym__bare_type, - STATE(8700), 1, + STATE(8609), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628899,46 +634384,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318759] = 19, + [321608] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9815), 1, - anon_sym_STAR, - STATE(7139), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7188), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(7817), 1, sym_constant, - STATE(7890), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(8267), 1, + STATE(9582), 1, sym__splattable_type, - STATE(8310), 1, - sym_splat_type, - STATE(8545), 1, + STATE(11889), 1, sym__bare_type, - STATE(8700), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628951,46 +634436,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318830] = 19, + [321679] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, - anon_sym_DASH_GT, - ACTIONS(9815), 1, - anon_sym_STAR, - STATE(7140), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7189), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(7817), 1, sym_constant, - STATE(7890), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(8267), 1, + STATE(10013), 1, sym__splattable_type, - STATE(8310), 1, - sym_splat_type, - STATE(8341), 1, + STATE(10895), 1, sym__bare_type, - STATE(8700), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629003,46 +634488,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318901] = 19, + [321750] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9128), 1, + ACTIONS(9028), 1, anon_sym_LPAREN, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9797), 1, + ACTIONS(9899), 1, anon_sym_DASH_GT, - ACTIONS(9799), 1, + ACTIONS(9901), 1, anon_sym_STAR, - STATE(7141), 1, + STATE(7190), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7882), 1, + STATE(7952), 1, sym__bare_type, - STATE(7896), 1, + STATE(7959), 1, sym__type, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8250), 1, + STATE(8319), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629055,46 +634540,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318972] = 19, + [321821] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_typeof, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(9851), 1, + anon_sym_LPAREN, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9819), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(2603), 1, - sym_constant, - STATE(2604), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(461), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(2947), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(3171), 1, + STATE(2126), 1, sym_splat_type, - STATE(3438), 1, + STATE(2146), 1, sym_proc_type, - STATE(3670), 1, - sym__bare_type, - STATE(7142), 1, + STATE(7191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629107,46 +634592,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319043] = 19, + [321892] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, - anon_sym_DASH_GT, - ACTIONS(9819), 1, - anon_sym_STAR, - STATE(2603), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7192), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2604), 1, - sym__type, - STATE(2947), 1, - sym__splattable_type, - STATE(3171), 1, + STATE(8013), 1, sym_splat_type, - STATE(3438), 1, + STATE(8201), 1, sym_proc_type, - STATE(3679), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11986), 1, sym__bare_type, - STATE(7143), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629159,46 +634644,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319114] = 19, + [321963] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5280), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9819), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(2603), 1, + STATE(7193), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2604), 1, + STATE(8571), 1, sym__type, - STATE(2947), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3171), 1, + STATE(9810), 1, sym_splat_type, - STATE(3438), 1, - sym_proc_type, - STATE(3698), 1, + STATE(10002), 1, sym__bare_type, - STATE(7144), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629211,46 +634696,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319185] = 19, + [322034] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9899), 1, anon_sym_DASH_GT, - ACTIONS(9819), 1, + ACTIONS(9901), 1, anon_sym_STAR, - STATE(2603), 1, + STATE(7194), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2604), 1, + STATE(7957), 1, + sym__bare_type, + STATE(7959), 1, sym__type, - STATE(2947), 1, - sym__splattable_type, - STATE(3171), 1, + STATE(8013), 1, sym_splat_type, - STATE(3438), 1, + STATE(8201), 1, sym_proc_type, - STATE(3710), 1, - sym__bare_type, - STATE(7145), 1, - sym_heredoc_body, + STATE(8319), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629263,46 +634748,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319256] = 19, + [322105] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, - anon_sym_DASH_GT, - ACTIONS(9819), 1, - anon_sym_STAR, - STATE(2603), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7195), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2604), 1, - sym__type, - STATE(2947), 1, - sym__splattable_type, - STATE(3171), 1, + STATE(8013), 1, sym_splat_type, - STATE(3438), 1, + STATE(8201), 1, sym_proc_type, - STATE(3713), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12096), 1, sym__bare_type, - STATE(7146), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629315,46 +634800,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319327] = 19, + [322176] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5280), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9819), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(2603), 1, + STATE(7196), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2604), 1, + STATE(8571), 1, sym__type, - STATE(2947), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3171), 1, + STATE(9810), 1, sym_splat_type, - STATE(3438), 1, - sym_proc_type, - STATE(3720), 1, + STATE(10006), 1, sym__bare_type, - STATE(7147), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629367,46 +634852,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319398] = 19, + [322247] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_typeof, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(9851), 1, + anon_sym_LPAREN, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9819), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(2603), 1, - sym_constant, - STATE(2604), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(472), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(2947), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(3171), 1, + STATE(2126), 1, sym_splat_type, - STATE(3438), 1, + STATE(2146), 1, sym_proc_type, - STATE(3721), 1, - sym__bare_type, - STATE(7148), 1, + STATE(7197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629419,46 +634904,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319469] = 19, + [322318] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_typeof, - ACTIONS(5282), 1, - anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(9851), 1, + anon_sym_LPAREN, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9819), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(2603), 1, - sym_constant, - STATE(2604), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(474), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(2947), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(3171), 1, + STATE(2126), 1, sym_splat_type, - STATE(3438), 1, + STATE(2146), 1, sym_proc_type, - STATE(3730), 1, - sym__bare_type, - STATE(7149), 1, + STATE(7198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629471,46 +634956,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319540] = 19, + [322389] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, - anon_sym_DASH_GT, - ACTIONS(9819), 1, - anon_sym_STAR, - STATE(2603), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7199), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2604), 1, - sym__type, - STATE(2947), 1, - sym__splattable_type, - STATE(3171), 1, + STATE(8013), 1, sym_splat_type, - STATE(3438), 1, + STATE(8201), 1, sym_proc_type, - STATE(3734), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12161), 1, sym__bare_type, - STATE(7150), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629523,46 +635008,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319611] = 19, + [322460] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, - anon_sym_typeof, - ACTIONS(5358), 1, - anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(3119), 1, - sym_constant, - STATE(3120), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(479), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(3376), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(3750), 1, + STATE(2126), 1, sym_splat_type, - STATE(4130), 1, + STATE(2146), 1, sym_proc_type, - STATE(4510), 1, - sym__bare_type, - STATE(7151), 1, + STATE(7200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629575,46 +635060,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319682] = 19, + [322531] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(5225), 1, - anon_sym_LPAREN, - ACTIONS(5230), 1, - anon_sym_typeof, - ACTIONS(5232), 1, - anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9851), 1, + anon_sym_LPAREN, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(2374), 1, - sym_constant, - STATE(2382), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(481), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(2468), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(2548), 1, + STATE(2126), 1, sym_splat_type, - STATE(2769), 1, + STATE(2146), 1, sym_proc_type, - STATE(3028), 1, - sym__bare_type, - STATE(7152), 1, + STATE(7201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629627,46 +635112,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319753] = 19, + [322602] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4762), 1, + sym__start_of_tuple_type, + ACTIONS(4764), 1, + sym__start_of_named_tuple_type, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9855), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9857), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9859), 1, sym__constant_segment, - STATE(7153), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(482), 1, + sym__bare_type, + STATE(2075), 1, + sym__type, + STATE(2076), 1, sym_constant, - STATE(7967), 1, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(12130), 1, - sym__bare_type, + STATE(7202), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629679,46 +635164,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319824] = 19, + [322673] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, - sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9823), 1, + ACTIONS(9845), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(7203), 1, + sym_heredoc_body, + STATE(7947), 1, sym_constant, - STATE(3849), 1, + STATE(7958), 1, sym__type, - STATE(4571), 1, + STATE(8308), 1, sym__splattable_type, - STATE(4913), 1, + STATE(8353), 1, sym_splat_type, - STATE(5117), 1, - sym_proc_type, - STATE(5272), 1, + STATE(8606), 1, sym__bare_type, - STATE(7154), 1, - sym_heredoc_body, + STATE(8609), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629731,46 +635216,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319895] = 19, + [322744] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, - sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9823), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(7204), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(3849), 1, + STATE(8571), 1, sym__type, - STATE(4571), 1, + STATE(9640), 1, sym__splattable_type, - STATE(4913), 1, - sym_splat_type, - STATE(5032), 1, + STATE(9715), 1, sym__bare_type, - STATE(5117), 1, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, sym_proc_type, - STATE(7155), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629783,46 +635268,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319966] = 19, + [322815] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, - sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, - anon_sym_DASH_GT, - ACTIONS(9823), 1, - anon_sym_STAR, - STATE(3848), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7205), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3849), 1, - sym__type, - STATE(4571), 1, - sym__splattable_type, - STATE(4913), 1, + STATE(8013), 1, sym_splat_type, - STATE(5117), 1, + STATE(8201), 1, sym_proc_type, - STATE(5378), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11841), 1, sym__bare_type, - STATE(7156), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629835,46 +635320,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320037] = 19, + [322886] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, - sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, - anon_sym_DASH_GT, - ACTIONS(9823), 1, - anon_sym_STAR, - STATE(3848), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7206), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3849), 1, - sym__type, - STATE(4571), 1, - sym__splattable_type, - STATE(4913), 1, + STATE(8013), 1, sym_splat_type, - STATE(5117), 1, + STATE(8201), 1, sym_proc_type, - STATE(5414), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11909), 1, sym__bare_type, - STATE(7157), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629887,46 +635372,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320108] = 19, + [322957] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - ACTIONS(9823), 1, + ACTIONS(9905), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(4459), 1, sym_constant, - STATE(3849), 1, + STATE(4460), 1, sym__type, - STATE(4571), 1, + STATE(4969), 1, sym__splattable_type, - STATE(4913), 1, + STATE(5107), 1, sym_splat_type, - STATE(5117), 1, + STATE(5434), 1, sym_proc_type, - STATE(5424), 1, + STATE(5609), 1, sym__bare_type, - STATE(7158), 1, + STATE(7207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629939,46 +635424,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320179] = 19, + [323028] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, - sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, - anon_sym_DASH_GT, - ACTIONS(9823), 1, - anon_sym_STAR, - STATE(3848), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7208), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3849), 1, - sym__type, - STATE(4571), 1, - sym__splattable_type, - STATE(4913), 1, + STATE(8013), 1, sym_splat_type, - STATE(5117), 1, + STATE(8201), 1, sym_proc_type, - STATE(5153), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11016), 1, sym__bare_type, - STATE(7159), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629991,46 +635476,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320250] = 19, + [323099] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, - sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, - anon_sym_DASH_GT, - ACTIONS(9823), 1, - anon_sym_STAR, - STATE(3848), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7209), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3849), 1, - sym__type, - STATE(4571), 1, - sym__splattable_type, - STATE(4913), 1, + STATE(8013), 1, sym_splat_type, - STATE(5117), 1, + STATE(8201), 1, sym_proc_type, - STATE(5154), 1, + STATE(8301), 1, + sym__type, + STATE(10014), 1, + sym__splattable_type, + STATE(10937), 1, sym__bare_type, - STATE(7160), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630043,46 +635528,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320321] = 19, + [323170] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - ACTIONS(9823), 1, + ACTIONS(9905), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(4459), 1, sym_constant, - STATE(3849), 1, + STATE(4460), 1, sym__type, - STATE(4571), 1, + STATE(4969), 1, sym__splattable_type, - STATE(4913), 1, + STATE(5107), 1, sym_splat_type, - STATE(5117), 1, - sym_proc_type, - STATE(5161), 1, + STATE(5363), 1, sym__bare_type, - STATE(7161), 1, + STATE(5434), 1, + sym_proc_type, + STATE(7210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630095,46 +635580,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320392] = 19, + [323241] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - ACTIONS(9823), 1, + ACTIONS(9905), 1, anon_sym_STAR, - STATE(3848), 1, + STATE(4459), 1, sym_constant, - STATE(3849), 1, + STATE(4460), 1, sym__type, - STATE(4571), 1, + STATE(4969), 1, sym__splattable_type, - STATE(4913), 1, + STATE(5107), 1, sym_splat_type, - STATE(5117), 1, + STATE(5434), 1, sym_proc_type, - STATE(5163), 1, + STATE(5665), 1, sym__bare_type, - STATE(7162), 1, + STATE(7211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630147,46 +635632,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320463] = 19, + [323312] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, - anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(9028), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9899), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9901), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(7212), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3120), 1, + STATE(7953), 1, + sym__bare_type, + STATE(7959), 1, sym__type, - STATE(3376), 1, - sym__splattable_type, - STATE(3750), 1, + STATE(8013), 1, sym_splat_type, - STATE(4130), 1, + STATE(8201), 1, sym_proc_type, - STATE(4512), 1, - sym__bare_type, - STATE(7163), 1, - sym_heredoc_body, + STATE(8319), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630199,46 +635684,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320534] = 19, + [323383] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, - anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, - anon_sym_DASH_GT, - ACTIONS(9775), 1, - anon_sym_STAR, - STATE(5084), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7213), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(5085), 1, - sym__type, - STATE(5468), 1, - sym__splattable_type, - STATE(6042), 1, + STATE(8013), 1, sym_splat_type, - STATE(6288), 1, + STATE(8201), 1, sym_proc_type, - STATE(6829), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11635), 1, sym__bare_type, - STATE(7164), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630251,46 +635736,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320605] = 19, + [323454] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(7214), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(5085), 1, + STATE(8571), 1, sym__type, - STATE(5468), 1, + STATE(9640), 1, sym__splattable_type, - STATE(6042), 1, + STATE(9713), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(6288), 1, + STATE(10767), 1, sym_proc_type, - STATE(6515), 1, - sym__bare_type, - STATE(7165), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630303,46 +635788,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320676] = 19, + [323525] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, - anon_sym_LPAREN, - ACTIONS(5558), 1, - anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9899), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9901), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(7215), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(5085), 1, + STATE(7946), 1, + sym__bare_type, + STATE(7959), 1, sym__type, - STATE(5468), 1, - sym__splattable_type, - STATE(6042), 1, + STATE(8013), 1, sym_splat_type, - STATE(6288), 1, + STATE(8201), 1, sym_proc_type, - STATE(6775), 1, - sym__bare_type, - STATE(7166), 1, - sym_heredoc_body, + STATE(8319), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630355,46 +635840,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320747] = 19, + [323596] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, - anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, - anon_sym_DASH_GT, - ACTIONS(9775), 1, - anon_sym_STAR, - STATE(5084), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7216), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(5085), 1, - sym__type, - STATE(5468), 1, - sym__splattable_type, - STATE(6042), 1, + STATE(8013), 1, sym_splat_type, - STATE(6288), 1, + STATE(8201), 1, sym_proc_type, - STATE(6669), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11747), 1, sym__bare_type, - STATE(7167), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630407,46 +635892,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320818] = 19, + [323667] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(7217), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(5085), 1, + STATE(8571), 1, sym__type, - STATE(5468), 1, + STATE(9640), 1, sym__splattable_type, - STATE(6042), 1, + STATE(9749), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(6288), 1, + STATE(10767), 1, sym_proc_type, - STATE(6676), 1, - sym__bare_type, - STATE(7168), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630459,46 +635944,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320889] = 19, + [323738] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9905), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(4459), 1, sym_constant, - STATE(5085), 1, + STATE(4460), 1, sym__type, - STATE(5468), 1, + STATE(4969), 1, sym__splattable_type, - STATE(6042), 1, + STATE(5107), 1, sym_splat_type, - STATE(6288), 1, + STATE(5434), 1, sym_proc_type, - STATE(6706), 1, + STATE(5677), 1, sym__bare_type, - STATE(7169), 1, + STATE(7218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630511,46 +635996,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320960] = 19, + [323809] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, - anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, - anon_sym_DASH_GT, - ACTIONS(9775), 1, - anon_sym_STAR, - STATE(5084), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7219), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(5085), 1, - sym__type, - STATE(5468), 1, - sym__splattable_type, - STATE(6042), 1, + STATE(8013), 1, sym_splat_type, - STATE(6288), 1, + STATE(8201), 1, sym_proc_type, - STATE(6707), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11072), 1, sym__bare_type, - STATE(7170), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630563,46 +636048,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321031] = 19, + [323880] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(3323), 1, sym__constant_segment, ACTIONS(5553), 1, - anon_sym_LPAREN, - ACTIONS(5558), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(5137), 1, sym_constant, - STATE(5085), 1, + STATE(5179), 1, sym__type, - STATE(5468), 1, + STATE(5839), 1, sym__splattable_type, - STATE(6042), 1, + STATE(6090), 1, sym_splat_type, - STATE(6288), 1, + STATE(6379), 1, sym_proc_type, - STATE(6726), 1, + STATE(6898), 1, sym__bare_type, - STATE(7171), 1, + STATE(7220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630615,46 +636100,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321102] = 19, + [323951] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9905), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(4459), 1, sym_constant, - STATE(5085), 1, + STATE(4460), 1, sym__type, - STATE(5468), 1, + STATE(4969), 1, sym__splattable_type, - STATE(6042), 1, + STATE(5107), 1, sym_splat_type, - STATE(6288), 1, + STATE(5434), 1, sym_proc_type, - STATE(6733), 1, + STATE(5686), 1, sym__bare_type, - STATE(7172), 1, + STATE(7221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630667,46 +636152,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321173] = 19, + [324022] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9905), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(4459), 1, sym_constant, - STATE(2382), 1, + STATE(4460), 1, sym__type, - STATE(2468), 1, + STATE(4969), 1, sym__splattable_type, - STATE(2548), 1, + STATE(5107), 1, sym_splat_type, - STATE(2769), 1, + STATE(5434), 1, sym_proc_type, - STATE(3057), 1, + STATE(5688), 1, sym__bare_type, - STATE(7173), 1, + STATE(7222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630719,46 +636204,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321244] = 19, + [324093] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3263), 1, + sym__constant_segment, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5446), 1, + anon_sym_typeof, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7174), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9903), 1, + anon_sym_DASH_GT, + ACTIONS(9905), 1, + anon_sym_STAR, + STATE(4459), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4460), 1, sym__type, - STATE(9376), 1, + STATE(4969), 1, sym__splattable_type, - STATE(10177), 1, + STATE(5107), 1, + sym_splat_type, + STATE(5434), 1, + sym_proc_type, + STATE(5690), 1, sym__bare_type, + STATE(7223), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630771,46 +636256,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321315] = 19, + [324164] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(7175), 1, + STATE(7224), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(8514), 1, + STATE(8571), 1, sym__type, - STATE(9642), 1, + STATE(9640), 1, sym__splattable_type, - STATE(9705), 1, + STATE(9810), 1, sym_splat_type, - STATE(9791), 1, + STATE(9899), 1, sym__bare_type, - STATE(10775), 1, + STATE(10767), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630823,46 +636308,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321386] = 19, + [324235] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3263), 1, + sym__constant_segment, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5446), 1, + anon_sym_typeof, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7176), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9903), 1, + anon_sym_DASH_GT, + ACTIONS(9905), 1, + anon_sym_STAR, + STATE(4459), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4460), 1, sym__type, - STATE(9376), 1, + STATE(4969), 1, sym__splattable_type, - STATE(10181), 1, + STATE(5107), 1, + sym_splat_type, + STATE(5434), 1, + sym_proc_type, + STATE(5693), 1, sym__bare_type, + STATE(7225), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630875,46 +636360,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321457] = 19, + [324306] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - ACTIONS(9827), 1, + ACTIONS(9905), 1, anon_sym_STAR, - STATE(4549), 1, + STATE(4459), 1, sym_constant, - STATE(4550), 1, + STATE(4460), 1, sym__type, - STATE(5126), 1, + STATE(4969), 1, sym__splattable_type, - STATE(5385), 1, + STATE(5107), 1, sym_splat_type, - STATE(5709), 1, + STATE(5434), 1, sym_proc_type, - STATE(5883), 1, + STATE(5694), 1, sym__bare_type, - STATE(7177), 1, + STATE(7226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630927,46 +636412,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321528] = 19, + [324377] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, - sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, - anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, - anon_sym_DASH_GT, - ACTIONS(9827), 1, - anon_sym_STAR, - STATE(4549), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7227), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4550), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(5126), 1, + STATE(9582), 1, sym__splattable_type, - STATE(5385), 1, - sym_splat_type, - STATE(5513), 1, + STATE(11239), 1, sym__bare_type, - STATE(5709), 1, - sym_proc_type, - STATE(7178), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -630979,46 +636464,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321599] = 19, + [324448] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, - sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, - anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, - anon_sym_DASH_GT, - ACTIONS(9827), 1, - anon_sym_STAR, - STATE(4549), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7228), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4550), 1, - sym__type, - STATE(5126), 1, - sym__splattable_type, - STATE(5385), 1, + STATE(8013), 1, sym_splat_type, - STATE(5709), 1, + STATE(8201), 1, sym_proc_type, - STATE(5921), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11249), 1, sym__bare_type, - STATE(7179), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631031,46 +636516,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321670] = 19, + [324519] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, - sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, - anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, - anon_sym_DASH_GT, - ACTIONS(9827), 1, - anon_sym_STAR, - STATE(4549), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7229), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4550), 1, - sym__type, - STATE(5126), 1, - sym__splattable_type, - STATE(5385), 1, + STATE(8013), 1, sym_splat_type, - STATE(5709), 1, + STATE(8201), 1, sym_proc_type, - STATE(5944), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11441), 1, sym__bare_type, - STATE(7180), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631083,46 +636568,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321741] = 19, + [324590] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, - sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, - anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, - anon_sym_DASH_GT, - ACTIONS(9827), 1, - anon_sym_STAR, - STATE(4549), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7230), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4550), 1, - sym__type, - STATE(5126), 1, - sym__splattable_type, - STATE(5385), 1, + STATE(8013), 1, sym_splat_type, - STATE(5709), 1, + STATE(8201), 1, sym_proc_type, - STATE(5947), 1, + STATE(8301), 1, + sym__type, + STATE(10020), 1, + sym__splattable_type, + STATE(10797), 1, sym__bare_type, - STATE(7181), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631135,46 +636620,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321812] = 19, + [324661] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, - sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, - anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, - anon_sym_DASH_GT, - ACTIONS(9827), 1, - anon_sym_STAR, - STATE(4549), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7231), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4550), 1, - sym__type, - STATE(5126), 1, - sym__splattable_type, - STATE(5385), 1, + STATE(8013), 1, sym_splat_type, - STATE(5709), 1, + STATE(8201), 1, sym_proc_type, - STATE(5956), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11584), 1, sym__bare_type, - STATE(7182), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631187,46 +636672,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321883] = 19, + [324732] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, - sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9827), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(4549), 1, + STATE(7232), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(4550), 1, + STATE(8571), 1, sym__type, - STATE(5126), 1, + STATE(9640), 1, sym__splattable_type, - STATE(5385), 1, + STATE(9810), 1, sym_splat_type, - STATE(5709), 1, - sym_proc_type, - STATE(5957), 1, + STATE(9941), 1, sym__bare_type, - STATE(7183), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631239,46 +636724,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321954] = 19, + [324803] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, - sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, - anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, - anon_sym_DASH_GT, - ACTIONS(9827), 1, - anon_sym_STAR, - STATE(4549), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7233), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4550), 1, - sym__type, - STATE(5126), 1, - sym__splattable_type, - STATE(5385), 1, + STATE(8013), 1, sym_splat_type, - STATE(5709), 1, + STATE(8201), 1, sym_proc_type, - STATE(5964), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11671), 1, sym__bare_type, - STATE(7184), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631291,46 +636776,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322025] = 19, + [324874] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, - sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9827), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(4549), 1, + STATE(7234), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(4550), 1, + STATE(8571), 1, sym__type, - STATE(5126), 1, + STATE(9640), 1, sym__splattable_type, - STATE(5385), 1, + STATE(9810), 1, sym_splat_type, - STATE(5709), 1, - sym_proc_type, - STATE(5966), 1, + STATE(9961), 1, sym__bare_type, - STATE(7185), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631343,46 +636828,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322096] = 19, + [324945] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(497), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(7235), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2095), 1, - sym__splattable_type, - STATE(2105), 1, + STATE(8013), 1, sym_splat_type, - STATE(2112), 1, + STATE(8201), 1, sym_proc_type, - STATE(7186), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11808), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631395,46 +636880,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322167] = 19, + [325016] = 19, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4650), 1, sym__start_of_tuple_type, ACTIONS(4652), 1, sym__start_of_named_tuple_type, - ACTIONS(9843), 1, + ACTIONS(9873), 1, anon_sym_LPAREN, - ACTIONS(9845), 1, + ACTIONS(9875), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(9877), 1, anon_sym_STAR, - ACTIONS(9849), 1, + ACTIONS(9879), 1, anon_sym_typeof, - ACTIONS(9851), 1, + ACTIONS(9881), 1, sym__constant_segment, - ACTIONS(9853), 1, + ACTIONS(9883), 1, anon_sym_COLON_COLON, - STATE(1993), 1, + STATE(2016), 1, sym__type, - STATE(2002), 1, + STATE(2025), 1, sym_constant, - STATE(2027), 1, + STATE(2055), 1, sym__splattable_type, - STATE(2045), 1, + STATE(2069), 1, sym__bare_type, - STATE(2047), 1, + STATE(2070), 1, sym_splat_type, - STATE(2053), 1, + STATE(2081), 1, sym_proc_type, - STATE(7187), 1, + STATE(7236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9855), 2, + ACTIONS(9885), 2, sym_self, sym_underscore_type, - STATE(2017), 12, + STATE(2038), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631447,46 +636932,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322238] = 19, + [325087] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(7237), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2835), 1, + STATE(8571), 1, sym__type, - STATE(3201), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3441), 1, + STATE(9712), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(3543), 1, + STATE(10767), 1, sym_proc_type, - STATE(3891), 1, - sym__bare_type, - STATE(7188), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631499,46 +636984,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322309] = 19, + [325158] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5315), 1, - anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(5137), 1, sym_constant, - STATE(2835), 1, + STATE(5179), 1, sym__type, - STATE(3201), 1, + STATE(5610), 1, sym__splattable_type, - STATE(3441), 1, + STATE(6090), 1, sym_splat_type, - STATE(3543), 1, + STATE(6379), 1, sym_proc_type, - STATE(3791), 1, + STATE(6865), 1, sym__bare_type, - STATE(7189), 1, + STATE(7238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631551,46 +637036,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322380] = 19, + [325229] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, - anon_sym_DASH_GT, - ACTIONS(9811), 1, - anon_sym_STAR, - STATE(2810), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7239), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2835), 1, - sym__type, - STATE(3201), 1, - sym__splattable_type, - STATE(3441), 1, + STATE(8013), 1, sym_splat_type, - STATE(3543), 1, + STATE(8201), 1, sym_proc_type, - STATE(3926), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12324), 1, sym__bare_type, - STATE(7190), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631603,46 +637088,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322451] = 19, + [325300] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, - anon_sym_DASH_GT, - ACTIONS(9811), 1, - anon_sym_STAR, - STATE(2810), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7240), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2835), 1, - sym__type, - STATE(3201), 1, - sym__splattable_type, - STATE(3441), 1, + STATE(8013), 1, sym_splat_type, - STATE(3543), 1, + STATE(8201), 1, sym_proc_type, - STATE(3940), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12356), 1, sym__bare_type, - STATE(7191), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631655,46 +637140,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322522] = 19, + [325371] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, - anon_sym_DASH_GT, - ACTIONS(9811), 1, - anon_sym_STAR, - STATE(2810), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7241), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2835), 1, - sym__type, - STATE(3201), 1, - sym__splattable_type, - STATE(3441), 1, + STATE(8013), 1, sym_splat_type, - STATE(3543), 1, + STATE(8201), 1, sym_proc_type, - STATE(3943), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11689), 1, sym__bare_type, - STATE(7192), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631707,46 +637192,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322593] = 19, + [325442] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, - anon_sym_DASH_GT, - ACTIONS(9811), 1, - anon_sym_STAR, - STATE(2810), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7242), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2835), 1, - sym__type, - STATE(3201), 1, - sym__splattable_type, - STATE(3441), 1, + STATE(8013), 1, sym_splat_type, - STATE(3543), 1, + STATE(8201), 1, sym_proc_type, - STATE(3955), 1, + STATE(8301), 1, + sym__type, + STATE(10024), 1, + sym__splattable_type, + STATE(10921), 1, sym__bare_type, - STATE(7193), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631759,46 +637244,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322664] = 19, + [325513] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, - anon_sym_DASH_GT, - ACTIONS(9811), 1, - anon_sym_STAR, - STATE(2810), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7243), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2835), 1, - sym__type, - STATE(3201), 1, - sym__splattable_type, - STATE(3441), 1, + STATE(8013), 1, sym_splat_type, - STATE(3543), 1, + STATE(8201), 1, sym_proc_type, - STATE(3956), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12369), 1, sym__bare_type, - STATE(7194), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631811,46 +637296,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322735] = 19, + [325584] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(2810), 1, + STATE(7244), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2835), 1, + STATE(8571), 1, sym__type, - STATE(3201), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3441), 1, + STATE(9729), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(3543), 1, + STATE(10767), 1, sym_proc_type, - STATE(3963), 1, - sym__bare_type, - STATE(7195), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631863,97 +637348,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322806] = 19, + [325655] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, - anon_sym_COLON_COLON, - ACTIONS(5326), 1, - sym__start_of_tuple_type, - ACTIONS(5328), 1, - sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9811), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(2810), 1, - sym_constant, - STATE(2835), 1, - sym__type, - STATE(3201), 1, - sym__splattable_type, - STATE(3441), 1, - sym_splat_type, - STATE(3543), 1, - sym_proc_type, - STATE(3965), 1, - sym__bare_type, - STATE(7196), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5324), 2, - sym_self, - sym_underscore_type, - STATE(2850), 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, - [322877] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8576), 1, - anon_sym_typeof, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9857), 1, - sym_identifier, - ACTIONS(9859), 1, - anon_sym_RPAREN, - STATE(7197), 1, + STATE(7245), 1, sym_heredoc_body, - STATE(8641), 1, + STATE(7817), 1, sym_constant, - STATE(8642), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(10626), 1, - sym_fun_param, + STATE(9582), 1, + sym__splattable_type, + STATE(11134), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(11080), 2, - sym_fun_param_list, - sym_fun_type_param_list, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -631966,46 +637400,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322946] = 19, + [325726] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7198), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7246), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(8365), 1, sym_constant, - STATE(8281), 1, + STATE(8571), 1, sym__type, - STATE(9443), 1, + STATE(9640), 1, sym__splattable_type, - STATE(9555), 1, + STATE(9732), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(10045), 1, + STATE(10767), 1, sym_proc_type, - STATE(10297), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632018,46 +637452,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323017] = 19, + [325797] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8008), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7199), 1, + ACTIONS(9907), 1, + anon_sym_DASH_GT, + ACTIONS(9909), 1, + anon_sym_STAR, + STATE(7247), 1, sym_heredoc_body, - STATE(8279), 1, - sym_constant, - STATE(8281), 1, + STATE(7861), 1, sym__type, - STATE(9443), 1, + STATE(7864), 1, + sym_constant, + STATE(8144), 1, sym__splattable_type, - STATE(9555), 1, + STATE(8291), 1, sym_splat_type, - STATE(10045), 1, - sym_proc_type, - STATE(10299), 1, + STATE(8295), 1, sym__bare_type, + STATE(8333), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632070,46 +637504,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323088] = 19, + [325868] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, - sym__constant_segment, - ACTIONS(5254), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5256), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5262), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + STATE(7248), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2772), 1, + STATE(8571), 1, + sym__type, + STATE(9640), 1, sym__splattable_type, - STATE(2948), 1, + STATE(9768), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(3192), 1, + STATE(10767), 1, sym_proc_type, - STATE(3491), 1, - sym__bare_type, - STATE(7200), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632122,46 +637556,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323159] = 19, + [325939] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, + ACTIONS(3015), 1, sym__constant_segment, - ACTIONS(5254), 1, + ACTIONS(5279), 1, anon_sym_typeof, - ACTIONS(5256), 1, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5262), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(5264), 1, + ACTIONS(5289), 1, anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(9911), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(9913), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + STATE(2701), 1, sym_constant, - STATE(2772), 1, + STATE(2718), 1, + sym__type, + STATE(3130), 1, sym__splattable_type, - STATE(2948), 1, + STATE(3331), 1, sym_splat_type, - STATE(3187), 1, - sym__bare_type, - STATE(3192), 1, + STATE(3589), 1, sym_proc_type, - STATE(7201), 1, + STATE(5717), 1, + sym__bare_type, + STATE(7249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632174,46 +637608,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323230] = 19, + [326010] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5254), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5256), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5262), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(5264), 1, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + STATE(5137), 1, sym_constant, - STATE(2772), 1, + STATE(5179), 1, + sym__type, + STATE(5610), 1, sym__splattable_type, - STATE(2948), 1, + STATE(6090), 1, sym_splat_type, - STATE(3192), 1, + STATE(6379), 1, sym_proc_type, - STATE(3334), 1, + STATE(6611), 1, sym__bare_type, - STATE(7202), 1, + STATE(7250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632226,46 +637660,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323301] = 19, + [326081] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, - sym__constant_segment, - ACTIONS(5254), 1, - anon_sym_typeof, - ACTIONS(5256), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 1, - sym__start_of_tuple_type, - ACTIONS(5262), 1, - sym__start_of_named_tuple_type, - ACTIONS(5264), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7251), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2772), 1, - sym__splattable_type, - STATE(2948), 1, + STATE(8013), 1, sym_splat_type, - STATE(3192), 1, + STATE(8201), 1, sym_proc_type, - STATE(3378), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11025), 1, sym__bare_type, - STATE(7203), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632278,46 +637712,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323372] = 19, + [326152] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, - sym__constant_segment, - ACTIONS(5254), 1, - anon_sym_typeof, - ACTIONS(5256), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 1, - sym__start_of_tuple_type, - ACTIONS(5262), 1, - sym__start_of_named_tuple_type, - ACTIONS(5264), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7252), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2772), 1, - sym__splattable_type, - STATE(2948), 1, + STATE(8013), 1, sym_splat_type, - STATE(3192), 1, + STATE(8201), 1, sym_proc_type, - STATE(3388), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11029), 1, sym__bare_type, - STATE(7204), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632330,46 +637764,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323443] = 19, + [326223] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5254), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5256), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5262), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(5264), 1, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + STATE(5137), 1, sym_constant, - STATE(2772), 1, + STATE(5179), 1, + sym__type, + STATE(5610), 1, sym__splattable_type, - STATE(2948), 1, + STATE(6090), 1, sym_splat_type, - STATE(3192), 1, + STATE(6379), 1, sym_proc_type, - STATE(3413), 1, + STATE(6958), 1, sym__bare_type, - STATE(7205), 1, + STATE(7253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632382,46 +637816,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323514] = 19, + [326294] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, - sym__constant_segment, - ACTIONS(5254), 1, - anon_sym_typeof, - ACTIONS(5256), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 1, - sym__start_of_tuple_type, - ACTIONS(5262), 1, - sym__start_of_named_tuple_type, - ACTIONS(5264), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7254), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2772), 1, - sym__splattable_type, - STATE(2948), 1, + STATE(8013), 1, sym_splat_type, - STATE(3192), 1, + STATE(8201), 1, sym_proc_type, - STATE(3414), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11136), 1, sym__bare_type, - STATE(7206), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632434,46 +637868,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323585] = 19, + [326365] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, - sym__constant_segment, - ACTIONS(5254), 1, - anon_sym_typeof, - ACTIONS(5256), 1, - anon_sym_COLON_COLON, - ACTIONS(5260), 1, - sym__start_of_tuple_type, - ACTIONS(5262), 1, - sym__start_of_named_tuple_type, - ACTIONS(5264), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7255), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2772), 1, - sym__splattable_type, - STATE(2948), 1, + STATE(8013), 1, sym_splat_type, - STATE(3192), 1, + STATE(8201), 1, sym_proc_type, - STATE(3424), 1, + STATE(8301), 1, + sym__type, + STATE(10025), 1, + sym__splattable_type, + STATE(10754), 1, sym__bare_type, - STATE(7207), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632486,46 +637920,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323656] = 19, + [326436] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5254), 1, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(5256), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(5262), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(2496), 1, - sym__type, - STATE(2529), 1, + STATE(2386), 1, sym_constant, - STATE(2772), 1, + STATE(2398), 1, + sym__type, + STATE(2583), 1, sym__splattable_type, - STATE(2948), 1, + STATE(2630), 1, sym_splat_type, - STATE(3192), 1, + STATE(2800), 1, sym_proc_type, - STATE(3428), 1, + STATE(3033), 1, sym__bare_type, - STATE(7208), 1, + STATE(7256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632538,46 +637972,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323727] = 19, + [326507] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9703), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - STATE(7209), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7257), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8281), 1, - sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, + STATE(8013), 1, sym_splat_type, - STATE(10045), 1, + STATE(8201), 1, sym_proc_type, - STATE(10306), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11357), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632590,46 +638024,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323798] = 19, + [326578] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, - anon_sym_DASH_GT, - ACTIONS(9833), 1, - anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - STATE(562), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + ACTIONS(9793), 1, + sym__start_of_tuple_type, + ACTIONS(9795), 1, + sym__start_of_named_tuple_type, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7258), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2095), 1, + STATE(8571), 1, + sym__type, + STATE(9640), 1, sym__splattable_type, - STATE(2105), 1, + STATE(9780), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(2112), 1, + STATE(10767), 1, sym_proc_type, - STATE(7210), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632642,46 +638076,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323869] = 19, + [326649] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7211), 1, + STATE(7259), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(10800), 1, + STATE(10462), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632694,46 +638128,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323940] = 19, + [326720] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(3323), 1, + sym__constant_segment, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, + anon_sym_COLON_COLON, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(9829), 1, anon_sym_STAR, - ACTIONS(9835), 1, - anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(563), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(5137), 1, sym_constant, - STATE(2095), 1, + STATE(5179), 1, + sym__type, + STATE(5610), 1, sym__splattable_type, - STATE(2105), 1, + STATE(6090), 1, sym_splat_type, - STATE(2112), 1, + STATE(6379), 1, sym_proc_type, - STATE(7212), 1, + STATE(6767), 1, + sym__bare_type, + STATE(7260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632746,46 +638180,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324011] = 19, + [326791] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4650), 1, - sym__start_of_tuple_type, - ACTIONS(4652), 1, - sym__start_of_named_tuple_type, - ACTIONS(9843), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9845), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9849), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9851), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9853), 1, - anon_sym_COLON_COLON, - STATE(1993), 1, - sym__type, - STATE(2002), 1, + STATE(7261), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2027), 1, - sym__splattable_type, - STATE(2039), 1, - sym__bare_type, - STATE(2047), 1, + STATE(8013), 1, sym_splat_type, - STATE(2053), 1, + STATE(8201), 1, sym_proc_type, - STATE(7213), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11495), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9855), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2017), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632798,46 +638232,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324082] = 19, + [326862] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7214), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7262), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8571), 1, sym__type, - STATE(9376), 1, + STATE(9640), 1, sym__splattable_type, - STATE(10858), 1, + STATE(9785), 1, sym__bare_type, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632850,46 +638284,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324153] = 19, + [326933] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7215), 1, + STATE(7263), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11171), 1, + STATE(11687), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632902,46 +638336,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324224] = 19, + [327004] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(3220), 1, + STATE(5137), 1, sym_constant, - STATE(3228), 1, + STATE(5179), 1, sym__type, - STATE(3598), 1, + STATE(5610), 1, sym__splattable_type, - STATE(3928), 1, + STATE(6090), 1, sym_splat_type, - STATE(4276), 1, + STATE(6379), 1, sym_proc_type, - STATE(4833), 1, + STATE(6785), 1, sym__bare_type, - STATE(7216), 1, + STATE(7264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -632954,46 +638388,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324295] = 19, + [327075] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(3220), 1, + STATE(7265), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(3228), 1, + STATE(8571), 1, sym__type, - STATE(3598), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3928), 1, + STATE(9810), 1, sym_splat_type, - STATE(4276), 1, - sym_proc_type, - STATE(4573), 1, + STATE(9850), 1, sym__bare_type, - STATE(7217), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633006,46 +638440,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324366] = 19, + [327146] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(3220), 1, + STATE(5137), 1, sym_constant, - STATE(3228), 1, + STATE(5179), 1, sym__type, - STATE(3598), 1, + STATE(5610), 1, sym__splattable_type, - STATE(3928), 1, + STATE(6090), 1, sym_splat_type, - STATE(4276), 1, + STATE(6379), 1, sym_proc_type, - STATE(4741), 1, + STATE(6876), 1, sym__bare_type, - STATE(7218), 1, + STATE(7266), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633058,46 +638492,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324437] = 19, + [327217] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - sym__start_of_tuple_type, - ACTIONS(5389), 1, - sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(3220), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7267), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3228), 1, - sym__type, - STATE(3598), 1, - sym__splattable_type, - STATE(3928), 1, + STATE(8013), 1, sym_splat_type, - STATE(4276), 1, + STATE(8201), 1, sym_proc_type, - STATE(4551), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12087), 1, sym__bare_type, - STATE(7219), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633110,46 +638544,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324508] = 19, + [327288] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - sym__start_of_tuple_type, - ACTIONS(5389), 1, - sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(3220), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7268), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3228), 1, - sym__type, - STATE(3598), 1, - sym__splattable_type, - STATE(3928), 1, + STATE(8013), 1, sym_splat_type, - STATE(4276), 1, + STATE(8201), 1, sym_proc_type, - STATE(4559), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12090), 1, sym__bare_type, - STATE(7220), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633162,46 +638596,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324579] = 19, + [327359] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(7251), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9915), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9917), 1, anon_sym_STAR, - STATE(3220), 1, + STATE(7269), 1, + sym_heredoc_body, + STATE(7734), 1, sym_constant, - STATE(3228), 1, + STATE(7737), 1, sym__type, - STATE(3598), 1, + STATE(7911), 1, sym__splattable_type, - STATE(3928), 1, + STATE(7941), 1, sym_splat_type, - STATE(4276), 1, - sym_proc_type, - STATE(4633), 1, + STATE(7985), 1, sym__bare_type, - STATE(7221), 1, - sym_heredoc_body, + STATE(8036), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633214,46 +638648,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324650] = 19, + [327430] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(4650), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(4652), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(9873), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9875), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9877), 1, anon_sym_STAR, - STATE(3220), 1, - sym_constant, - STATE(3228), 1, + ACTIONS(9879), 1, + anon_sym_typeof, + ACTIONS(9881), 1, + sym__constant_segment, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, sym__type, - STATE(3598), 1, + STATE(2025), 1, + sym_constant, + STATE(2055), 1, sym__splattable_type, - STATE(3928), 1, + STATE(2067), 1, + sym__bare_type, + STATE(2070), 1, sym_splat_type, - STATE(4276), 1, + STATE(2081), 1, sym_proc_type, - STATE(4634), 1, - sym__bare_type, - STATE(7222), 1, + STATE(7270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9885), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(2038), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633266,46 +638700,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324721] = 19, + [327501] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - sym__start_of_tuple_type, - ACTIONS(5389), 1, - sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(3220), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7271), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3228), 1, - sym__type, - STATE(3598), 1, - sym__splattable_type, - STATE(3928), 1, + STATE(8013), 1, sym_splat_type, - STATE(4276), 1, + STATE(8201), 1, sym_proc_type, - STATE(4659), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12199), 1, sym__bare_type, - STATE(7223), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633318,46 +638752,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324792] = 19, + [327572] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - sym__start_of_tuple_type, - ACTIONS(5389), 1, - sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(3220), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7272), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3228), 1, - sym__type, - STATE(3598), 1, - sym__splattable_type, - STATE(3928), 1, + STATE(8013), 1, sym_splat_type, - STATE(4276), 1, + STATE(8201), 1, sym_proc_type, - STATE(4682), 1, + STATE(8301), 1, + sym__type, + STATE(10029), 1, + sym__splattable_type, + STATE(10928), 1, sym__bare_type, - STATE(7224), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633370,46 +638804,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324863] = 19, + [327643] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4650), 1, - sym__start_of_tuple_type, - ACTIONS(4652), 1, - sym__start_of_named_tuple_type, - ACTIONS(9843), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9845), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9849), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9851), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9853), 1, - anon_sym_COLON_COLON, - STATE(1993), 1, - sym__type, - STATE(2002), 1, + STATE(7273), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2027), 1, - sym__splattable_type, - STATE(2041), 1, - sym__bare_type, - STATE(2047), 1, + STATE(8013), 1, sym_splat_type, - STATE(2053), 1, + STATE(8201), 1, sym_proc_type, - STATE(7225), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12371), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9855), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2017), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633422,46 +638856,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324934] = 19, + [327714] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, - anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(7274), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(4680), 1, + STATE(8571), 1, sym__type, - STATE(5180), 1, - sym_splat_type, - STATE(5269), 1, + STATE(9640), 1, sym__splattable_type, - STATE(5737), 1, - sym_proc_type, - STATE(6118), 1, + STATE(9810), 1, + sym_splat_type, + STATE(9860), 1, sym__bare_type, - STATE(7226), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633474,46 +638908,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325005] = 19, + [327785] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, + ACTIONS(3191), 1, sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9871), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(4891), 1, + STATE(3004), 1, sym_constant, - STATE(4893), 1, + STATE(3013), 1, sym__type, - STATE(5191), 1, + STATE(3483), 1, sym__splattable_type, - STATE(5689), 1, + STATE(3772), 1, sym_splat_type, - STATE(5982), 1, + STATE(4141), 1, sym_proc_type, - STATE(6447), 1, + STATE(4368), 1, sym__bare_type, - STATE(7227), 1, + STATE(7275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633526,46 +638960,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325076] = 19, + [327856] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, - sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, - anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, - anon_sym_DASH_GT, - ACTIONS(9871), 1, - anon_sym_STAR, - STATE(4891), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7276), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4893), 1, - sym__type, - STATE(5191), 1, - sym__splattable_type, - STATE(5689), 1, + STATE(8013), 1, sym_splat_type, - STATE(5982), 1, + STATE(8201), 1, sym_proc_type, - STATE(6129), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(10983), 1, sym__bare_type, - STATE(7228), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633578,46 +639012,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325147] = 19, + [327927] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, - sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9871), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(4891), 1, + STATE(7277), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(4893), 1, + STATE(8571), 1, sym__type, - STATE(5191), 1, + STATE(9640), 1, sym__splattable_type, - STATE(5689), 1, + STATE(9810), 1, sym_splat_type, - STATE(5982), 1, - sym_proc_type, - STATE(6540), 1, + STATE(9861), 1, sym__bare_type, - STATE(7229), 1, + STATE(10767), 1, + sym_proc_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9791), 2, + sym_self, + sym_underscore_type, + STATE(8761), 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, + [327998] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7278), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11010), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633630,46 +639116,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325218] = 19, + [328069] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(5225), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9871), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(4891), 1, + STATE(2386), 1, sym_constant, - STATE(4893), 1, + STATE(2398), 1, sym__type, - STATE(5191), 1, + STATE(2583), 1, sym__splattable_type, - STATE(5689), 1, + STATE(2630), 1, sym_splat_type, - STATE(5982), 1, + STATE(2800), 1, sym_proc_type, - STATE(6621), 1, + STATE(2859), 1, sym__bare_type, - STATE(7230), 1, + STATE(7279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633682,46 +639168,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325289] = 19, + [328140] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, - sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9871), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(4891), 1, + STATE(7280), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(4893), 1, + STATE(8571), 1, sym__type, - STATE(5191), 1, + STATE(9640), 1, sym__splattable_type, - STATE(5689), 1, + STATE(9810), 1, sym_splat_type, - STATE(5982), 1, - sym_proc_type, - STATE(6624), 1, + STATE(9911), 1, sym__bare_type, - STATE(7231), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633734,46 +639220,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325360] = 19, + [328211] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5524), 1, - anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9871), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(4891), 1, + STATE(5137), 1, sym_constant, - STATE(4893), 1, + STATE(5179), 1, sym__type, - STATE(5191), 1, + STATE(5610), 1, sym__splattable_type, - STATE(5689), 1, + STATE(6090), 1, sym_splat_type, - STATE(5982), 1, + STATE(6379), 1, sym_proc_type, - STATE(6241), 1, + STATE(6879), 1, sym__bare_type, - STATE(7232), 1, + STATE(7281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633786,46 +639272,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325431] = 19, + [328282] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, - sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, - anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, - anon_sym_DASH_GT, - ACTIONS(9871), 1, - anon_sym_STAR, - STATE(4891), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7282), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4893), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(5191), 1, + STATE(9582), 1, sym__splattable_type, - STATE(5689), 1, + STATE(11366), 1, + sym__bare_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + STATE(7836), 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, + [328353] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7283), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, sym_splat_type, - STATE(5982), 1, + STATE(8201), 1, sym_proc_type, - STATE(6252), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11367), 1, sym__bare_type, - STATE(7233), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633838,46 +639376,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325502] = 19, + [328424] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, - sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, - anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, - anon_sym_DASH_GT, - ACTIONS(9871), 1, - anon_sym_STAR, - STATE(4891), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7284), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4893), 1, - sym__type, - STATE(5191), 1, - sym__splattable_type, - STATE(5689), 1, + STATE(8013), 1, sym_splat_type, - STATE(5982), 1, + STATE(8201), 1, sym_proc_type, - STATE(6236), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11417), 1, sym__bare_type, - STATE(7234), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633890,46 +639428,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325573] = 19, + [328495] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, - sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, - anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, - anon_sym_DASH_GT, - ACTIONS(9871), 1, - anon_sym_STAR, - STATE(4891), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7285), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4893), 1, - sym__type, - STATE(5191), 1, - sym__splattable_type, - STATE(5689), 1, + STATE(8013), 1, sym_splat_type, - STATE(5982), 1, + STATE(8201), 1, sym_proc_type, - STATE(6403), 1, + STATE(8301), 1, + sym__type, + STATE(10030), 1, + sym__splattable_type, + STATE(10926), 1, sym__bare_type, - STATE(7235), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633942,46 +639480,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325644] = 19, + [328566] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - sym__start_of_tuple_type, - ACTIONS(5389), 1, - sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(3220), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7286), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3228), 1, - sym__type, - STATE(3611), 1, - sym__splattable_type, - STATE(3928), 1, + STATE(8013), 1, sym_splat_type, - STATE(4276), 1, + STATE(8201), 1, sym_proc_type, - STATE(4833), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11454), 1, sym__bare_type, - STATE(7236), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -633994,46 +639532,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325715] = 19, + [328637] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(3220), 1, + STATE(7287), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(3228), 1, + STATE(8571), 1, sym__type, - STATE(3611), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3928), 1, + STATE(9810), 1, sym_splat_type, - STATE(4276), 1, - sym_proc_type, - STATE(4539), 1, + STATE(9920), 1, sym__bare_type, - STATE(7237), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634046,46 +639584,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325786] = 19, + [328708] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - sym__start_of_tuple_type, - ACTIONS(5389), 1, - sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(3220), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7288), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3228), 1, - sym__type, - STATE(3611), 1, - sym__splattable_type, - STATE(3928), 1, + STATE(8013), 1, sym_splat_type, - STATE(4276), 1, + STATE(8201), 1, sym_proc_type, - STATE(4741), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11492), 1, sym__bare_type, - STATE(7238), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634098,46 +639636,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325857] = 19, + [328779] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(3220), 1, + STATE(7289), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(3228), 1, + STATE(8571), 1, sym__type, - STATE(3611), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3928), 1, + STATE(9810), 1, sym_splat_type, - STATE(4276), 1, - sym_proc_type, - STATE(4551), 1, + STATE(9924), 1, sym__bare_type, - STATE(7239), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634150,46 +639688,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325928] = 19, + [328850] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(8008), 1, + anon_sym_LPAREN, + ACTIONS(8013), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9907), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9909), 1, anon_sym_STAR, - STATE(3220), 1, - sym_constant, - STATE(3228), 1, + STATE(7290), 1, + sym_heredoc_body, + STATE(7861), 1, sym__type, - STATE(3611), 1, + STATE(7864), 1, + sym_constant, + STATE(8144), 1, sym__splattable_type, - STATE(3928), 1, + STATE(8291), 1, sym_splat_type, - STATE(4276), 1, + STATE(8333), 1, sym_proc_type, - STATE(4559), 1, + STATE(8451), 1, sym__bare_type, - STATE(7240), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634202,46 +639740,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325999] = 19, + [328921] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - sym__start_of_tuple_type, - ACTIONS(5389), 1, - sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(3220), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7291), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3228), 1, - sym__type, - STATE(3611), 1, - sym__splattable_type, - STATE(3928), 1, + STATE(8013), 1, sym_splat_type, - STATE(4276), 1, + STATE(8201), 1, sym_proc_type, - STATE(4633), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11506), 1, sym__bare_type, - STATE(7241), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634254,46 +639792,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326070] = 19, + [328992] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, - anon_sym_typeof, - ACTIONS(5383), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(3220), 1, - sym_constant, - STATE(3228), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(452), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(3611), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(3928), 1, + STATE(2126), 1, sym_splat_type, - STATE(4276), 1, + STATE(2146), 1, sym_proc_type, - STATE(4634), 1, - sym__bare_type, - STATE(7242), 1, + STATE(7292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634306,46 +639844,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326141] = 19, + [329063] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(3220), 1, + STATE(5137), 1, sym_constant, - STATE(3228), 1, + STATE(5179), 1, sym__type, - STATE(3611), 1, + STATE(5610), 1, sym__splattable_type, - STATE(3928), 1, + STATE(6090), 1, sym_splat_type, - STATE(4276), 1, + STATE(6379), 1, sym_proc_type, - STATE(4659), 1, + STATE(6898), 1, sym__bare_type, - STATE(7243), 1, + STATE(7293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634358,46 +639896,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326212] = 19, + [329134] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, - sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9867), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(3220), 1, + STATE(7294), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(3228), 1, + STATE(8571), 1, sym__type, - STATE(3611), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3928), 1, + STATE(9810), 1, sym_splat_type, - STATE(4276), 1, - sym_proc_type, - STATE(4682), 1, + STATE(9954), 1, sym__bare_type, - STATE(7244), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634410,46 +639948,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326283] = 19, + [329205] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, - anon_sym_typeof, - ACTIONS(5472), 1, - anon_sym_COLON_COLON, - ACTIONS(5476), 1, - sym__start_of_tuple_type, - ACTIONS(5478), 1, - sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4679), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7295), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4680), 1, - sym__type, - STATE(5180), 1, + STATE(8013), 1, sym_splat_type, - STATE(5269), 1, - sym__splattable_type, - STATE(5737), 1, + STATE(8201), 1, sym_proc_type, - STATE(6363), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11691), 1, sym__bare_type, - STATE(7245), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634462,46 +640000,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326354] = 19, + [329276] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, - anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, - anon_sym_DASH_GT, - ACTIONS(9779), 1, - anon_sym_STAR, - STATE(2374), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7296), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2382), 1, - sym__type, - STATE(2468), 1, - sym__splattable_type, - STATE(2548), 1, + STATE(8013), 1, sym_splat_type, - STATE(2769), 1, + STATE(8201), 1, sym_proc_type, - STATE(2918), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11695), 1, sym__bare_type, - STATE(7246), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634514,46 +640052,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326425] = 19, + [329347] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9875), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(2839), 1, + STATE(5137), 1, sym_constant, - STATE(2840), 1, + STATE(5179), 1, sym__type, - STATE(3233), 1, + STATE(5610), 1, sym__splattable_type, - STATE(3505), 1, + STATE(6090), 1, sym_splat_type, - STATE(3584), 1, + STATE(6379), 1, sym_proc_type, - STATE(4021), 1, + STATE(6899), 1, sym__bare_type, - STATE(7247), 1, + STATE(7297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634566,46 +640104,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326496] = 19, + [329418] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, - sym__constant_segment, - ACTIONS(5300), 1, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9875), 1, + ACTIONS(9845), 1, anon_sym_STAR, - STATE(2839), 1, + STATE(7298), 1, + sym_heredoc_body, + STATE(7947), 1, sym_constant, - STATE(2840), 1, + STATE(7958), 1, sym__type, - STATE(3233), 1, + STATE(8308), 1, sym__splattable_type, - STATE(3505), 1, + STATE(8353), 1, sym_splat_type, - STATE(3549), 1, + STATE(8538), 1, sym__bare_type, - STATE(3584), 1, + STATE(8609), 1, sym_proc_type, - STATE(7248), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634618,46 +640156,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326567] = 19, + [329489] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, - sym__constant_segment, - ACTIONS(5300), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, - anon_sym_DASH_GT, - ACTIONS(9875), 1, - anon_sym_STAR, - STATE(2839), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7299), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2840), 1, - sym__type, - STATE(3233), 1, - sym__splattable_type, - STATE(3505), 1, + STATE(8013), 1, sym_splat_type, - STATE(3584), 1, + STATE(8201), 1, sym_proc_type, - STATE(4067), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11774), 1, sym__bare_type, - STATE(7249), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634670,46 +640208,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326638] = 19, + [329560] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, - sym__constant_segment, - ACTIONS(5300), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, - anon_sym_DASH_GT, - ACTIONS(9875), 1, - anon_sym_STAR, - STATE(2839), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7300), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2840), 1, - sym__type, - STATE(3233), 1, - sym__splattable_type, - STATE(3505), 1, + STATE(8013), 1, sym_splat_type, - STATE(3584), 1, + STATE(8201), 1, sym_proc_type, - STATE(4080), 1, + STATE(8301), 1, + sym__type, + STATE(10032), 1, + sym__splattable_type, + STATE(10842), 1, sym__bare_type, - STATE(7250), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634722,46 +640260,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326709] = 19, + [329631] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5300), 1, + ACTIONS(5225), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9875), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(2839), 1, + STATE(2386), 1, sym_constant, - STATE(2840), 1, + STATE(2398), 1, sym__type, - STATE(3233), 1, + STATE(2583), 1, sym__splattable_type, - STATE(3505), 1, + STATE(2630), 1, sym_splat_type, - STATE(3584), 1, + STATE(2800), 1, sym_proc_type, - STATE(4083), 1, + STATE(3104), 1, sym__bare_type, - STATE(7251), 1, + STATE(7301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634774,46 +640312,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326780] = 19, + [329702] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, - sym__constant_segment, - ACTIONS(5300), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, - anon_sym_DASH_GT, - ACTIONS(9875), 1, - anon_sym_STAR, - STATE(2839), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7302), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2840), 1, - sym__type, - STATE(3233), 1, - sym__splattable_type, - STATE(3505), 1, + STATE(8013), 1, sym_splat_type, - STATE(3584), 1, + STATE(8201), 1, sym_proc_type, - STATE(4090), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11861), 1, sym__bare_type, - STATE(7252), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634826,46 +640364,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326851] = 19, + [329773] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, - sym__constant_segment, - ACTIONS(5300), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9875), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(2839), 1, + STATE(7303), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2840), 1, + STATE(8571), 1, sym__type, - STATE(3233), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3505), 1, + STATE(9810), 1, sym_splat_type, - STATE(3584), 1, - sym_proc_type, - STATE(4091), 1, + STATE(9992), 1, sym__bare_type, - STATE(7253), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634878,46 +640416,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326922] = 19, + [329844] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, - sym__constant_segment, - ACTIONS(5300), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, - anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, - anon_sym_DASH_GT, - ACTIONS(9875), 1, - anon_sym_STAR, - STATE(2839), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7304), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2840), 1, - sym__type, - STATE(3233), 1, - sym__splattable_type, - STATE(3505), 1, + STATE(8013), 1, sym_splat_type, - STATE(3584), 1, + STATE(8201), 1, sym_proc_type, - STATE(4099), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11920), 1, sym__bare_type, - STATE(7254), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634930,46 +640468,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326993] = 19, + [329915] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, - sym__constant_segment, - ACTIONS(5300), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9875), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(2839), 1, + STATE(7305), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(2840), 1, + STATE(8571), 1, sym__type, - STATE(3233), 1, + STATE(9640), 1, sym__splattable_type, - STATE(3505), 1, + STATE(9810), 1, sym_splat_type, - STATE(3584), 1, - sym_proc_type, - STATE(4101), 1, + STATE(9997), 1, sym__bare_type, - STATE(7255), 1, - sym_heredoc_body, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -634982,46 +640520,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327064] = 19, + [329986] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, - anon_sym_typeof, - ACTIONS(5447), 1, - anon_sym_COLON_COLON, - ACTIONS(5451), 1, - sym__start_of_tuple_type, - ACTIONS(5453), 1, - sym__start_of_named_tuple_type, - ACTIONS(5455), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9879), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4271), 1, - sym__type, - STATE(4535), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7306), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4918), 1, - sym__splattable_type, - STATE(5031), 1, + STATE(8013), 1, sym_splat_type, - STATE(5333), 1, + STATE(8201), 1, sym_proc_type, - STATE(5556), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11952), 1, sym__bare_type, - STATE(7256), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635034,46 +640572,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327135] = 19, + [330057] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5447), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5451), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5453), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5455), 1, - anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9879), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(4271), 1, - sym__type, - STATE(4535), 1, + STATE(7307), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(4918), 1, + STATE(8571), 1, + sym__type, + STATE(9640), 1, sym__splattable_type, - STATE(5031), 1, + STATE(9810), 1, sym_splat_type, - STATE(5247), 1, + STATE(10036), 1, sym__bare_type, - STATE(5333), 1, + STATE(10767), 1, sym_proc_type, - STATE(7257), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635086,98 +640624,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327206] = 19, + [330128] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, - anon_sym_typeof, - ACTIONS(5447), 1, - anon_sym_COLON_COLON, - ACTIONS(5451), 1, - sym__start_of_tuple_type, - ACTIONS(5453), 1, - sym__start_of_named_tuple_type, - ACTIONS(5455), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9879), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4271), 1, - sym__type, - STATE(4535), 1, - sym_constant, - STATE(4918), 1, - sym__splattable_type, - STATE(5031), 1, - sym_splat_type, - STATE(5333), 1, - sym_proc_type, - STATE(5720), 1, - sym__bare_type, - STATE(7258), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5449), 2, - sym_self, - sym_underscore_type, - STATE(4577), 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, - [327277] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, - anon_sym_typeof, - ACTIONS(5447), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5451), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5453), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(5455), 1, - anon_sym_LPAREN, - ACTIONS(9877), 1, - anon_sym_DASH_GT, - ACTIONS(9879), 1, - anon_sym_STAR, - STATE(4271), 1, - sym__type, - STATE(4535), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7308), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4918), 1, - sym__splattable_type, - STATE(5031), 1, + STATE(8013), 1, sym_splat_type, - STATE(5333), 1, + STATE(8201), 1, sym_proc_type, - STATE(5488), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12345), 1, sym__bare_type, - STATE(7259), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635190,46 +640676,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327348] = 19, + [330199] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, - anon_sym_typeof, - ACTIONS(5447), 1, - anon_sym_COLON_COLON, - ACTIONS(5451), 1, - sym__start_of_tuple_type, - ACTIONS(5453), 1, - sym__start_of_named_tuple_type, - ACTIONS(5455), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9879), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4271), 1, - sym__type, - STATE(4535), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7309), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4918), 1, - sym__splattable_type, - STATE(5031), 1, + STATE(8013), 1, sym_splat_type, - STATE(5333), 1, + STATE(8201), 1, sym_proc_type, - STATE(5500), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12346), 1, sym__bare_type, - STATE(7260), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635242,46 +640728,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327419] = 19, + [330270] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, + ACTIONS(8008), 1, + anon_sym_LPAREN, + ACTIONS(8013), 1, anon_sym_typeof, - ACTIONS(5447), 1, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(5451), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(5453), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(5455), 1, - anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(9907), 1, anon_sym_DASH_GT, - ACTIONS(9879), 1, + ACTIONS(9909), 1, anon_sym_STAR, - STATE(4271), 1, + STATE(7310), 1, + sym_heredoc_body, + STATE(7861), 1, sym__type, - STATE(4535), 1, + STATE(7864), 1, sym_constant, - STATE(4918), 1, + STATE(8144), 1, sym__splattable_type, - STATE(5031), 1, + STATE(8291), 1, sym_splat_type, - STATE(5333), 1, + STATE(8333), 1, sym_proc_type, - STATE(5510), 1, + STATE(8507), 1, sym__bare_type, - STATE(7261), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635294,46 +640780,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327490] = 19, + [330341] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5445), 1, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(5447), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(5451), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(5453), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(5455), 1, - anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9879), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(4271), 1, - sym__type, - STATE(4535), 1, + STATE(2386), 1, sym_constant, - STATE(4918), 1, + STATE(2398), 1, + sym__type, + STATE(2583), 1, sym__splattable_type, - STATE(5031), 1, + STATE(2630), 1, sym_splat_type, - STATE(5333), 1, + STATE(2800), 1, sym_proc_type, - STATE(5511), 1, + STATE(3059), 1, sym__bare_type, - STATE(7262), 1, + STATE(7311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635346,46 +640832,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327561] = 19, + [330412] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, - anon_sym_typeof, - ACTIONS(5447), 1, - anon_sym_COLON_COLON, - ACTIONS(5451), 1, - sym__start_of_tuple_type, - ACTIONS(5453), 1, - sym__start_of_named_tuple_type, - ACTIONS(5455), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9879), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4271), 1, - sym__type, - STATE(4535), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7312), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4918), 1, - sym__splattable_type, - STATE(5031), 1, + STATE(8013), 1, sym_splat_type, - STATE(5333), 1, + STATE(8201), 1, sym_proc_type, - STATE(5534), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12365), 1, sym__bare_type, - STATE(7263), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635398,46 +640884,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327632] = 19, + [330483] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, - anon_sym_typeof, - ACTIONS(5447), 1, - anon_sym_COLON_COLON, - ACTIONS(5451), 1, - sym__start_of_tuple_type, - ACTIONS(5453), 1, - sym__start_of_named_tuple_type, - ACTIONS(5455), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9879), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4271), 1, - sym__type, - STATE(4535), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7313), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4918), 1, - sym__splattable_type, - STATE(5031), 1, + STATE(8013), 1, sym_splat_type, - STATE(5333), 1, + STATE(8201), 1, sym_proc_type, - STATE(5536), 1, + STATE(8301), 1, + sym__type, + STATE(10035), 1, + sym__splattable_type, + STATE(10893), 1, sym__bare_type, - STATE(7264), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635450,46 +640936,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327703] = 19, + [330554] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5275), 1, + ACTIONS(5225), 1, anon_sym_LPAREN, - ACTIONS(5280), 1, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9819), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(2603), 1, + STATE(2386), 1, sym_constant, - STATE(2604), 1, + STATE(2398), 1, sym__type, - STATE(2947), 1, + STATE(2583), 1, sym__splattable_type, - STATE(3171), 1, + STATE(2630), 1, sym_splat_type, - STATE(3438), 1, + STATE(2800), 1, sym_proc_type, - STATE(5668), 1, + STATE(3106), 1, sym__bare_type, - STATE(7265), 1, + STATE(7314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635502,46 +640988,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327774] = 19, + [330625] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, - anon_sym_typeof, - ACTIONS(5472), 1, - anon_sym_COLON_COLON, - ACTIONS(5476), 1, - sym__start_of_tuple_type, - ACTIONS(5478), 1, - sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4679), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7315), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4680), 1, - sym__type, - STATE(5180), 1, + STATE(8013), 1, sym_splat_type, - STATE(5269), 1, - sym__splattable_type, - STATE(5737), 1, + STATE(8201), 1, sym_proc_type, - STATE(5843), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11580), 1, sym__bare_type, - STATE(7266), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635554,46 +641040,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327845] = 19, + [330696] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(7267), 1, + STATE(7316), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(8514), 1, + STATE(8571), 1, sym__type, - STATE(9642), 1, + STATE(9640), 1, sym__splattable_type, STATE(9705), 1, - sym_splat_type, - STATE(9835), 1, sym__bare_type, - STATE(10775), 1, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635606,46 +641092,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327916] = 19, + [330767] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7268), 1, + STATE(7317), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11947), 1, + STATE(11476), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635658,46 +641144,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327987] = 19, + [330838] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7269), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7318), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8571), 1, sym__type, - STATE(9624), 1, + STATE(9640), 1, sym__splattable_type, - STATE(11960), 1, + STATE(9706), 1, sym__bare_type, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635710,46 +641196,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328058] = 19, + [330909] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7270), 1, + STATE(7319), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11784), 1, + STATE(11870), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635762,98 +641248,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328129] = 19, + [330980] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(7251), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(7256), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(7258), 1, sym__constant_segment, - STATE(7271), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9924), 1, - sym__splattable_type, - STATE(10886), 1, - sym__bare_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - STATE(7794), 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, - [328200] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(9128), 1, - anon_sym_LPAREN, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9797), 1, + ACTIONS(9915), 1, anon_sym_DASH_GT, - ACTIONS(9799), 1, + ACTIONS(9917), 1, anon_sym_STAR, - STATE(7272), 1, + STATE(7320), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7734), 1, sym_constant, - STATE(7896), 1, + STATE(7737), 1, sym__type, - STATE(7898), 1, - sym__bare_type, - STATE(7967), 1, + STATE(7911), 1, + sym__splattable_type, + STATE(7941), 1, sym_splat_type, - STATE(8177), 1, + STATE(8036), 1, sym_proc_type, - STATE(8250), 1, - sym__splattable_type, + STATE(8184), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635866,46 +641300,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328271] = 19, + [331051] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, + anon_sym_typeof, + ACTIONS(5232), 1, + anon_sym_COLON_COLON, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, - anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(9897), 1, anon_sym_STAR, - ACTIONS(9835), 1, - anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(453), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(2386), 1, sym_constant, - STATE(2095), 1, + STATE(2398), 1, + sym__type, + STATE(2500), 1, sym__splattable_type, - STATE(2105), 1, + STATE(2630), 1, sym_splat_type, - STATE(2112), 1, + STATE(2800), 1, sym_proc_type, - STATE(7273), 1, + STATE(3092), 1, + sym__bare_type, + STATE(7321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635918,46 +641352,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328342] = 19, + [331122] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(7251), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7274), 1, + ACTIONS(9915), 1, + anon_sym_DASH_GT, + ACTIONS(9917), 1, + anon_sym_STAR, + STATE(7322), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7734), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(7737), 1, sym__type, - STATE(9624), 1, + STATE(7911), 1, sym__splattable_type, - STATE(11430), 1, + STATE(7941), 1, + sym_splat_type, + STATE(7980), 1, sym__bare_type, + STATE(8036), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -635970,46 +641404,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328413] = 19, + [331193] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(7275), 1, + STATE(7323), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(8514), 1, + STATE(8571), 1, sym__type, - STATE(9642), 1, + STATE(9640), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9747), 1, + STATE(9716), 1, sym__bare_type, - STATE(10775), 1, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636022,46 +641456,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328484] = 19, + [331264] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9128), 1, - anon_sym_LPAREN, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9797), 1, - anon_sym_DASH_GT, - ACTIONS(9799), 1, - anon_sym_STAR, - STATE(7276), 1, + STATE(7324), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7880), 1, - sym__bare_type, - STATE(7896), 1, - sym__type, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8250), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, sym__splattable_type, + STATE(11169), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636074,46 +641508,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328555] = 19, + [331335] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7277), 1, + STATE(7325), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11129), 1, + STATE(11172), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636126,46 +641560,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328626] = 19, + [331406] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(7251), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(7256), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(7258), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9915), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9917), 1, anon_sym_STAR, - STATE(7278), 1, + STATE(7326), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7734), 1, sym_constant, - STATE(8514), 1, + STATE(7737), 1, sym__type, - STATE(9642), 1, + STATE(7911), 1, sym__splattable_type, - STATE(9705), 1, + STATE(7941), 1, sym_splat_type, - STATE(9832), 1, + STATE(7990), 1, sym__bare_type, - STATE(10775), 1, + STATE(8036), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636178,46 +641612,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328697] = 19, + [331477] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, + anon_sym_typeof, + ACTIONS(5232), 1, + anon_sym_COLON_COLON, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, - anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(9897), 1, anon_sym_STAR, - ACTIONS(9835), 1, - anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(460), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(2386), 1, sym_constant, - STATE(2095), 1, + STATE(2398), 1, + sym__type, + STATE(2500), 1, sym__splattable_type, - STATE(2105), 1, + STATE(2630), 1, sym_splat_type, - STATE(2112), 1, + STATE(2800), 1, sym_proc_type, - STATE(7279), 1, + STATE(3106), 1, + sym__bare_type, + STATE(7327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636230,46 +641664,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328768] = 19, + [331548] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, + anon_sym_typeof, + ACTIONS(5232), 1, + anon_sym_COLON_COLON, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, - anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(9897), 1, anon_sym_STAR, - ACTIONS(9835), 1, - anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(461), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(2386), 1, sym_constant, - STATE(2095), 1, + STATE(2398), 1, + sym__type, + STATE(2500), 1, sym__splattable_type, - STATE(2105), 1, + STATE(2630), 1, sym_splat_type, - STATE(2112), 1, + STATE(2800), 1, sym_proc_type, - STATE(7280), 1, + STATE(3010), 1, + sym__bare_type, + STATE(7328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636282,46 +641716,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328839] = 19, + [331619] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7281), 1, + STATE(7329), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11615), 1, + STATE(11444), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636334,98 +641768,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328910] = 19, + [331690] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9835), 1, - anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - STATE(464), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, - sym_constant, - STATE(2095), 1, - sym__splattable_type, - STATE(2105), 1, - sym_splat_type, - STATE(2112), 1, - sym_proc_type, - STATE(7282), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9841), 2, - sym_self, - sym_underscore_type, - STATE(2084), 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, - [328981] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, - anon_sym_LPAREN, - ACTIONS(9831), 1, - anon_sym_DASH_GT, - ACTIONS(9833), 1, - anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(465), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(7330), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2095), 1, - sym__splattable_type, - STATE(2105), 1, + STATE(8013), 1, sym_splat_type, - STATE(2112), 1, + STATE(8201), 1, sym_proc_type, - STATE(7283), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(10039), 1, + sym__splattable_type, + STATE(10830), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636438,46 +641820,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329052] = 19, + [331761] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, + anon_sym_typeof, + ACTIONS(5232), 1, + anon_sym_COLON_COLON, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, - anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(9897), 1, anon_sym_STAR, - ACTIONS(9835), 1, - anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(466), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(2386), 1, sym_constant, - STATE(2095), 1, + STATE(2398), 1, + sym__type, + STATE(2583), 1, sym__splattable_type, - STATE(2105), 1, + STATE(2630), 1, sym_splat_type, - STATE(2112), 1, + STATE(2800), 1, sym_proc_type, - STATE(7284), 1, + STATE(3010), 1, + sym__bare_type, + STATE(7331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636490,46 +641872,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329123] = 19, + [331832] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, - anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9795), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(3119), 1, + STATE(2386), 1, sym_constant, - STATE(3120), 1, + STATE(2398), 1, sym__type, - STATE(3376), 1, + STATE(2583), 1, sym__splattable_type, - STATE(3750), 1, + STATE(2630), 1, sym_splat_type, - STATE(4130), 1, + STATE(2800), 1, sym_proc_type, - STATE(6569), 1, + STATE(3012), 1, sym__bare_type, - STATE(7285), 1, + STATE(7332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636542,46 +641924,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329194] = 19, + [331903] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, - anon_sym_typeof, - ACTIONS(5472), 1, - anon_sym_COLON_COLON, - ACTIONS(5476), 1, - sym__start_of_tuple_type, - ACTIONS(5478), 1, - sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4679), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7333), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4680), 1, - sym__type, - STATE(5180), 1, + STATE(8013), 1, sym_splat_type, - STATE(5269), 1, - sym__splattable_type, - STATE(5737), 1, + STATE(8201), 1, sym_proc_type, - STATE(6098), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11723), 1, sym__bare_type, - STATE(7286), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636594,46 +641976,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329265] = 19, + [331974] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, - anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(7334), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(4680), 1, + STATE(8571), 1, sym__type, - STATE(5180), 1, - sym_splat_type, - STATE(5269), 1, + STATE(9640), 1, sym__splattable_type, - STATE(5737), 1, - sym_proc_type, - STATE(6102), 1, + STATE(9719), 1, sym__bare_type, - STATE(7287), 1, - sym_heredoc_body, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636646,46 +642028,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329336] = 19, + [332045] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, - anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, - anon_sym_DASH_GT, - ACTIONS(9779), 1, - anon_sym_STAR, - STATE(2374), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7335), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2382), 1, - sym__type, - STATE(2468), 1, - sym__splattable_type, - STATE(2548), 1, + STATE(8013), 1, sym_splat_type, - STATE(2769), 1, + STATE(8201), 1, sym_proc_type, - STATE(2844), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11855), 1, sym__bare_type, - STATE(7288), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636698,46 +642080,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329407] = 19, + [332116] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7289), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7336), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8571), 1, sym__type, - STATE(9624), 1, + STATE(9640), 1, sym__splattable_type, - STATE(11533), 1, + STATE(9720), 1, sym__bare_type, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636750,46 +642132,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329478] = 19, + [332187] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(7251), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(7256), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9915), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9917), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(7337), 1, + sym_heredoc_body, + STATE(7734), 1, sym_constant, - STATE(2382), 1, + STATE(7737), 1, sym__type, - STATE(2468), 1, + STATE(7911), 1, sym__splattable_type, - STATE(2548), 1, + STATE(7941), 1, sym_splat_type, - STATE(2769), 1, - sym_proc_type, - STATE(2845), 1, + STATE(8001), 1, sym__bare_type, - STATE(7290), 1, - sym_heredoc_body, + STATE(8036), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636802,46 +642184,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329549] = 19, + [332258] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, - anon_sym_DASH_GT, - ACTIONS(9787), 1, - anon_sym_STAR, - STATE(7291), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7338), 1, sym_heredoc_body, - STATE(7728), 1, + STATE(7817), 1, sym_constant, - STATE(7730), 1, - sym__type, - STATE(7858), 1, - sym__splattable_type, - STATE(7901), 1, + STATE(8013), 1, sym_splat_type, - STATE(7995), 1, + STATE(8201), 1, sym_proc_type, - STATE(8178), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11916), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636854,46 +642236,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329620] = 19, + [332329] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7292), 1, + STATE(7339), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10439), 1, + STATE(11109), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636906,46 +642288,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329691] = 19, + [332400] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, - anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(2386), 1, sym_constant, - STATE(4680), 1, + STATE(2398), 1, sym__type, - STATE(5180), 1, - sym_splat_type, - STATE(5269), 1, + STATE(2583), 1, sym__splattable_type, - STATE(5737), 1, + STATE(2630), 1, + sym_splat_type, + STATE(2800), 1, sym_proc_type, - STATE(6138), 1, + STATE(3092), 1, sym__bare_type, - STATE(7293), 1, + STATE(7340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -636958,46 +642340,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329762] = 19, + [332471] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, - anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(7341), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(4680), 1, + STATE(8571), 1, sym__type, - STATE(5180), 1, - sym_splat_type, - STATE(5269), 1, + STATE(9640), 1, sym__splattable_type, - STATE(5737), 1, - sym_proc_type, - STATE(6140), 1, + STATE(9733), 1, sym__bare_type, - STATE(7294), 1, - sym_heredoc_body, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637010,46 +642392,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329833] = 19, + [332542] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, - anon_sym_typeof, - ACTIONS(5472), 1, - anon_sym_COLON_COLON, - ACTIONS(5476), 1, - sym__start_of_tuple_type, - ACTIONS(5478), 1, - sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(8673), 1, anon_sym_STAR, - STATE(4679), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7342), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(4680), 1, - sym__type, - STATE(5180), 1, + STATE(8013), 1, sym_splat_type, - STATE(5269), 1, - sym__splattable_type, - STATE(5737), 1, + STATE(8201), 1, sym_proc_type, - STATE(6192), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11203), 1, sym__bare_type, - STATE(7295), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637062,46 +642444,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329904] = 19, + [332613] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9703), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - STATE(7296), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7343), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8281), 1, - sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, + STATE(8013), 1, sym_splat_type, - STATE(10045), 1, + STATE(8201), 1, sym_proc_type, - STATE(10500), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11205), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637114,46 +642496,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329975] = 19, + [332684] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, - sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(7251), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, - anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9915), 1, anon_sym_DASH_GT, - ACTIONS(9803), 1, + ACTIONS(9917), 1, anon_sym_STAR, - STATE(4679), 1, + STATE(7344), 1, + sym_heredoc_body, + STATE(7734), 1, sym_constant, - STATE(4680), 1, + STATE(7737), 1, sym__type, - STATE(5180), 1, - sym_splat_type, - STATE(5269), 1, + STATE(7911), 1, sym__splattable_type, - STATE(5737), 1, - sym_proc_type, - STATE(6195), 1, + STATE(7941), 1, + sym_splat_type, + STATE(7991), 1, sym__bare_type, - STATE(7297), 1, - sym_heredoc_body, + STATE(8036), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637166,46 +642548,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330046] = 19, + [332755] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(7298), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(2386), 1, sym_constant, - STATE(8514), 1, + STATE(2398), 1, sym__type, - STATE(9642), 1, + STATE(2583), 1, sym__splattable_type, - STATE(9705), 1, + STATE(2630), 1, sym_splat_type, - STATE(9793), 1, - sym__bare_type, - STATE(10775), 1, + STATE(2800), 1, sym_proc_type, + STATE(3035), 1, + sym__bare_type, + STATE(7345), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637218,46 +642600,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330117] = 19, + [332826] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7299), 1, + STATE(7346), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11008), 1, + STATE(11317), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637270,46 +642652,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330188] = 19, + [332897] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7300), 1, + STATE(7347), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10040), 1, sym__splattable_type, - STATE(11011), 1, + STATE(10922), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637322,46 +642704,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330259] = 19, + [332968] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(7251), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7301), 1, + ACTIONS(9915), 1, + anon_sym_DASH_GT, + ACTIONS(9917), 1, + anon_sym_STAR, + STATE(7348), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7734), 1, sym_constant, - STATE(7967), 1, + STATE(7737), 1, + sym__type, + STATE(7911), 1, + sym__splattable_type, + STATE(7941), 1, sym_splat_type, - STATE(8177), 1, + STATE(7988), 1, + sym__bare_type, + STATE(8036), 1, sym_proc_type, - STATE(8271), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7262), 2, + sym_self, + sym_underscore_type, + STATE(7805), 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, + [333039] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, + anon_sym_typeof, + ACTIONS(5232), 1, + anon_sym_COLON_COLON, + ACTIONS(5236), 1, + sym__start_of_tuple_type, + ACTIONS(5238), 1, + sym__start_of_named_tuple_type, + ACTIONS(9895), 1, + anon_sym_DASH_GT, + ACTIONS(9897), 1, + anon_sym_STAR, + STATE(2386), 1, + sym_constant, + STATE(2398), 1, sym__type, - STATE(9624), 1, + STATE(2500), 1, sym__splattable_type, - STATE(11166), 1, + STATE(2630), 1, + sym_splat_type, + STATE(2800), 1, + sym_proc_type, + STATE(3104), 1, sym__bare_type, + STATE(7349), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637374,46 +642808,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330330] = 19, + [333110] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7302), 1, + STATE(7350), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9952), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10750), 1, + STATE(11429), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637426,46 +642860,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330401] = 19, + [333181] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9128), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9133), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9797), 1, + ACTIONS(9789), 1, + anon_sym_COLON_COLON, + ACTIONS(9793), 1, + sym__start_of_tuple_type, + ACTIONS(9795), 1, + sym__start_of_named_tuple_type, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9799), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(7303), 1, + STATE(7351), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7886), 1, - sym__bare_type, - STATE(7896), 1, + STATE(8571), 1, sym__type, - STATE(7967), 1, + STATE(9640), 1, + sym__splattable_type, + STATE(9737), 1, + sym__bare_type, + STATE(9810), 1, sym_splat_type, - STATE(8177), 1, + STATE(10767), 1, sym_proc_type, - STATE(8250), 1, - sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637478,46 +642912,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330472] = 19, + [333252] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, + anon_sym_LPAREN, + ACTIONS(5230), 1, + anon_sym_typeof, + ACTIONS(5232), 1, + anon_sym_COLON_COLON, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, - anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(9897), 1, anon_sym_STAR, - ACTIONS(9835), 1, - anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(478), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(2386), 1, sym_constant, - STATE(2095), 1, + STATE(2398), 1, + sym__type, + STATE(2500), 1, sym__splattable_type, - STATE(2105), 1, + STATE(2630), 1, sym_splat_type, - STATE(2112), 1, + STATE(2800), 1, sym_proc_type, - STATE(7304), 1, + STATE(3012), 1, + sym__bare_type, + STATE(7352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637530,46 +642964,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330543] = 19, + [333323] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7305), 1, + STATE(7353), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, STATE(11499), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637582,46 +643016,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330614] = 19, + [333394] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(7306), 1, + STATE(7354), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(8514), 1, + STATE(8571), 1, sym__type, - STATE(9642), 1, + STATE(9640), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9873), 1, + STATE(9739), 1, sym__bare_type, - STATE(10775), 1, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637634,46 +643068,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330685] = 19, + [333465] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9128), 1, - anon_sym_LPAREN, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9797), 1, - anon_sym_DASH_GT, - ACTIONS(9799), 1, - anon_sym_STAR, - STATE(7307), 1, + STATE(7355), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7896), 1, - sym__type, - STATE(7897), 1, - sym__bare_type, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8250), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, sym__splattable_type, + STATE(11541), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637686,46 +643120,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330756] = 19, + [333536] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7308), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7356), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8571), 1, sym__type, - STATE(9624), 1, + STATE(9640), 1, sym__splattable_type, - STATE(11753), 1, + STATE(9758), 1, sym__bare_type, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637738,46 +643172,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330827] = 19, + [333607] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(8430), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9845), 1, anon_sym_STAR, - STATE(7309), 1, + STATE(7357), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7947), 1, sym_constant, - STATE(8514), 1, + STATE(7958), 1, sym__type, - STATE(9642), 1, + STATE(8308), 1, sym__splattable_type, - STATE(9705), 1, + STATE(8353), 1, sym_splat_type, - STATE(9922), 1, + STATE(8366), 1, sym__bare_type, - STATE(10775), 1, + STATE(8609), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637790,46 +643224,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330898] = 19, + [333678] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(485), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(7358), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2095), 1, - sym__splattable_type, - STATE(2105), 1, + STATE(8013), 1, sym_splat_type, - STATE(2112), 1, + STATE(8201), 1, sym_proc_type, - STATE(7310), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11925), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637842,46 +643276,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330969] = 19, + [333749] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7311), 1, + STATE(7359), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9582), 1, sym__splattable_type, - STATE(12247), 1, + STATE(11929), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637894,46 +643328,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331040] = 19, + [333820] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7312), 1, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7360), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8345), 1, sym__type, - STATE(9624), 1, + STATE(9519), 1, sym__splattable_type, - STATE(11876), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10479), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637946,46 +643380,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331111] = 19, + [333891] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, - anon_sym_DASH_GT, - ACTIONS(9833), 1, - anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - STATE(491), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + ACTIONS(9760), 1, + sym__start_of_tuple_type, + ACTIONS(9762), 1, + sym__start_of_named_tuple_type, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7361), 1, + sym_heredoc_body, + STATE(8341), 1, sym_constant, - STATE(2095), 1, + STATE(8345), 1, + sym__type, + STATE(9519), 1, sym__splattable_type, - STATE(2105), 1, + STATE(9655), 1, sym_splat_type, - STATE(2112), 1, + STATE(10308), 1, sym_proc_type, - STATE(7313), 1, - sym_heredoc_body, + STATE(10491), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -637998,46 +643432,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331182] = 19, + [333962] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(492), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(7362), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2095), 1, - sym__splattable_type, - STATE(2105), 1, + STATE(8013), 1, sym_splat_type, - STATE(2112), 1, + STATE(8201), 1, sym_proc_type, - STATE(7314), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(12020), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638050,46 +643484,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331253] = 19, + [334033] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(493), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(7363), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2095), 1, - sym__splattable_type, - STATE(2105), 1, + STATE(8013), 1, sym_splat_type, - STATE(2112), 1, + STATE(8201), 1, sym_proc_type, - STATE(7315), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(10041), 1, + sym__splattable_type, + STATE(10932), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638102,46 +643536,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331324] = 19, + [334104] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, - anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7316), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9919), 1, + sym_identifier, + ACTIONS(9921), 1, + anon_sym_RPAREN, + STATE(7364), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(8649), 1, sym_constant, - STATE(8281), 1, + STATE(8654), 1, sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, - sym_splat_type, - STATE(10045), 1, - sym_proc_type, - STATE(10507), 1, - sym__bare_type, + STATE(10658), 1, + sym_fun_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(11684), 2, + sym_fun_param_list, + sym_fun_type_param_list, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638154,46 +643587,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331395] = 19, + [334173] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9772), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9774), 1, anon_sym_STAR, - STATE(7317), 1, + STATE(7365), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8341), 1, sym_constant, - STATE(8514), 1, + STATE(8345), 1, sym__type, - STATE(9642), 1, + STATE(9519), 1, sym__splattable_type, - STATE(9660), 1, - sym__bare_type, - STATE(9705), 1, + STATE(9655), 1, sym_splat_type, - STATE(10775), 1, + STATE(10308), 1, sym_proc_type, + STATE(10458), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638206,46 +643639,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331466] = 19, + [334244] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7318), 1, + STATE(7366), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(12138), 1, + STATE(12112), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638258,46 +643691,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331537] = 19, + [334315] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7319), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7367), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8571), 1, sym__type, - STATE(9624), 1, + STATE(9640), 1, sym__splattable_type, - STATE(12142), 1, + STATE(9761), 1, sym__bare_type, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638310,46 +643743,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331608] = 19, + [334386] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7320), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9835), 1, + anon_sym_DASH_GT, + ACTIONS(9837), 1, + anon_sym_STAR, + STATE(3004), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(3013), 1, sym__type, - STATE(9624), 1, + STATE(3772), 1, + sym_splat_type, + STATE(3815), 1, sym__splattable_type, - STATE(11783), 1, + STATE(4141), 1, + sym_proc_type, + STATE(4499), 1, sym__bare_type, + STATE(7368), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638362,46 +643795,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331679] = 19, + [334457] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7321), 1, + STATE(7369), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9956), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10801), 1, + STATE(12260), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638414,46 +643847,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331750] = 19, + [334528] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9128), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9133), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9797), 1, + ACTIONS(9789), 1, + anon_sym_COLON_COLON, + ACTIONS(9793), 1, + sym__start_of_tuple_type, + ACTIONS(9795), 1, + sym__start_of_named_tuple_type, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9799), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(7322), 1, + STATE(7370), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7896), 1, + STATE(8571), 1, sym__type, - STATE(7910), 1, + STATE(9640), 1, + sym__splattable_type, + STATE(9763), 1, sym__bare_type, - STATE(7967), 1, + STATE(9810), 1, sym_splat_type, - STATE(8177), 1, + STATE(10767), 1, sym_proc_type, - STATE(8250), 1, - sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638466,46 +643899,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331821] = 19, + [334599] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7323), 1, + STATE(7371), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11299), 1, + STATE(12314), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638518,46 +643951,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331892] = 19, + [334670] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9772), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9774), 1, anon_sym_STAR, - STATE(7324), 1, + STATE(7372), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8341), 1, sym_constant, - STATE(8514), 1, + STATE(8345), 1, sym__type, - STATE(9642), 1, + STATE(9519), 1, sym__splattable_type, - STATE(9685), 1, - sym__bare_type, - STATE(9705), 1, + STATE(9655), 1, sym_splat_type, - STATE(10775), 1, + STATE(10308), 1, sym_proc_type, + STATE(10501), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638570,46 +644003,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331963] = 19, + [334741] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, + anon_sym_LPAREN, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, + anon_sym_COLON_COLON, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, - anon_sym_LPAREN, - ACTIONS(9831), 1, - anon_sym_DASH_GT, - ACTIONS(9833), 1, - anon_sym_STAR, ACTIONS(9835), 1, - anon_sym_typeof, + anon_sym_DASH_GT, ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(470), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + anon_sym_STAR, + STATE(3004), 1, sym_constant, - STATE(2095), 1, - sym__splattable_type, - STATE(2105), 1, + STATE(3013), 1, + sym__type, + STATE(3772), 1, sym_splat_type, - STATE(2112), 1, + STATE(3815), 1, + sym__splattable_type, + STATE(4141), 1, sym_proc_type, - STATE(7325), 1, + STATE(5029), 1, + sym__bare_type, + STATE(7373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638622,46 +644055,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332034] = 19, + [334812] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9128), 1, - anon_sym_LPAREN, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9797), 1, - anon_sym_DASH_GT, - ACTIONS(9799), 1, - anon_sym_STAR, - STATE(7326), 1, + STATE(7374), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7879), 1, - sym__bare_type, - STATE(7896), 1, - sym__type, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8250), 1, + STATE(8301), 1, + sym__type, + STATE(9582), 1, sym__splattable_type, + STATE(10975), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638674,46 +644107,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332105] = 19, + [334883] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7327), 1, + STATE(7375), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11906), 1, + STATE(10984), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638726,46 +644159,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332176] = 19, + [334954] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9772), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9774), 1, anon_sym_STAR, - STATE(7328), 1, + STATE(7376), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8341), 1, sym_constant, - STATE(8514), 1, + STATE(8345), 1, sym__type, - STATE(9642), 1, + STATE(9519), 1, sym__splattable_type, - STATE(9695), 1, - sym__bare_type, - STATE(9705), 1, + STATE(9655), 1, sym_splat_type, - STATE(10775), 1, + STATE(10308), 1, sym_proc_type, + STATE(10502), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638778,46 +644211,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332247] = 19, + [335025] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7329), 1, + STATE(7377), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(12040), 1, + STATE(10992), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638830,46 +644263,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332318] = 19, + [335096] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - ACTIONS(9783), 1, - anon_sym_STAR, - STATE(7330), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7378), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(9642), 1, + STATE(10042), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9723), 1, + STATE(10934), 1, sym__bare_type, - STATE(10775), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638882,46 +644315,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332389] = 19, + [335167] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7331), 1, + STATE(7379), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11372), 1, + STATE(11017), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638934,46 +644367,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332460] = 19, + [335238] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7332), 1, + STATE(7380), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11376), 1, + STATE(11050), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -638986,46 +644419,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332531] = 19, + [335309] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7333), 1, + STATE(7381), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10817), 1, + STATE(11064), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639038,46 +644471,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332602] = 19, + [335380] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7334), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5360), 1, sym__splattable_type, - STATE(11502), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5937), 1, sym__bare_type, + STATE(7382), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639090,46 +644523,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332673] = 19, + [335451] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4762), 1, + sym__start_of_tuple_type, + ACTIONS(4764), 1, + sym__start_of_named_tuple_type, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9855), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9857), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9859), 1, sym__constant_segment, - STATE(7335), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(514), 1, + sym__bare_type, + STATE(2075), 1, + sym__type, + STATE(2076), 1, sym_constant, - STATE(7967), 1, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9963), 1, - sym__splattable_type, - STATE(10740), 1, - sym__bare_type, + STATE(7383), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639142,46 +644575,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332744] = 19, + [335522] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7336), 1, + STATE(7384), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11817), 1, + STATE(11108), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639194,46 +644627,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332815] = 19, + [335593] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7337), 1, + STATE(7385), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(10045), 1, sym__splattable_type, - STATE(10818), 1, + STATE(10794), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639246,46 +644679,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332886] = 19, + [335664] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7338), 1, + STATE(7386), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11794), 1, + STATE(11128), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639298,46 +644731,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332957] = 19, + [335735] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(7339), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(3004), 1, sym_constant, - STATE(8514), 1, + STATE(3013), 1, sym__type, - STATE(9642), 1, - sym__splattable_type, - STATE(9705), 1, + STATE(3772), 1, sym_splat_type, - STATE(9758), 1, - sym__bare_type, - STATE(10775), 1, + STATE(3815), 1, + sym__splattable_type, + STATE(4141), 1, sym_proc_type, + STATE(4537), 1, + sym__bare_type, + STATE(7387), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639350,46 +644783,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333028] = 19, + [335806] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4650), 1, - sym__start_of_tuple_type, - ACTIONS(4652), 1, - sym__start_of_named_tuple_type, - ACTIONS(9843), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9845), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9849), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9851), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9853), 1, - anon_sym_COLON_COLON, - STATE(1993), 1, - sym__type, - STATE(2002), 1, + STATE(7388), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2027), 1, - sym__splattable_type, - STATE(2047), 1, + STATE(8013), 1, sym_splat_type, - STATE(2048), 1, - sym__bare_type, - STATE(2053), 1, + STATE(8201), 1, sym_proc_type, - STATE(7340), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(9582), 1, + sym__splattable_type, + STATE(11148), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9855), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2017), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639402,46 +644835,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333099] = 19, + [335877] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7341), 1, + STATE(7389), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11890), 1, + STATE(11158), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639454,98 +644887,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333170] = 19, + [335948] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(1347), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9825), 1, anon_sym_STAR, - STATE(7342), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(2891), 1, sym_constant, - STATE(8514), 1, + STATE(2892), 1, sym__type, - STATE(9642), 1, + STATE(3177), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9768), 1, - sym__bare_type, - STATE(10775), 1, - sym_proc_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9745), 2, - sym_self, - sym_underscore_type, - STATE(8598), 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, - [333241] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7343), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, + STATE(3572), 1, sym_splat_type, - STATE(8177), 1, + STATE(3597), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(11941), 1, + STATE(4198), 1, sym__bare_type, + STATE(7390), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639558,46 +644939,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333312] = 19, + [336019] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(7344), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(3004), 1, sym_constant, - STATE(8514), 1, + STATE(3013), 1, sym__type, - STATE(9642), 1, - sym__splattable_type, - STATE(9705), 1, + STATE(3772), 1, sym_splat_type, - STATE(9792), 1, - sym__bare_type, - STATE(10775), 1, + STATE(3815), 1, + sym__splattable_type, + STATE(4141), 1, sym_proc_type, + STATE(4382), 1, + sym__bare_type, + STATE(7391), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639610,46 +644991,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333383] = 19, + [336090] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7345), 1, + STATE(7392), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10819), 1, + STATE(11202), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639662,46 +645043,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333454] = 19, + [336161] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7346), 1, + STATE(7393), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10047), 1, sym__splattable_type, - STATE(12304), 1, + STATE(10913), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639714,46 +645095,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333525] = 19, + [336232] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7347), 1, + STATE(7394), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(12305), 1, + STATE(11238), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639766,46 +645147,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333596] = 19, + [336303] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7348), 1, + STATE(7395), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11824), 1, + STATE(11264), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639818,46 +645199,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333667] = 19, + [336374] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7349), 1, + STATE(7396), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10903), 1, + STATE(11275), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639870,46 +645251,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333738] = 19, + [336445] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7350), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9835), 1, + anon_sym_DASH_GT, + ACTIONS(9837), 1, + anon_sym_STAR, + STATE(3004), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(3013), 1, sym__type, - STATE(9967), 1, + STATE(3772), 1, + sym_splat_type, + STATE(3815), 1, sym__splattable_type, - STATE(10711), 1, + STATE(4141), 1, + sym_proc_type, + STATE(4441), 1, sym__bare_type, + STATE(7397), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639922,46 +645303,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333809] = 19, + [336516] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3323), 1, + sym__constant_segment, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7351), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, + anon_sym_DASH_GT, + ACTIONS(9829), 1, + anon_sym_STAR, + STATE(5137), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(5179), 1, sym__type, - STATE(9624), 1, + STATE(5839), 1, sym__splattable_type, - STATE(10968), 1, + STATE(6090), 1, + sym_splat_type, + STATE(6379), 1, + sym_proc_type, + STATE(6876), 1, sym__bare_type, + STATE(7398), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -639974,46 +645355,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333880] = 19, + [336587] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - ACTIONS(9783), 1, - anon_sym_STAR, - STATE(7352), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7399), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(9642), 1, + STATE(9582), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9797), 1, + STATE(11312), 1, sym__bare_type, - STATE(10775), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640026,46 +645407,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333951] = 19, + [336658] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7353), 1, + STATE(7400), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10048), 1, sym__splattable_type, - STATE(11003), 1, + STATE(10848), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640078,46 +645459,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334022] = 19, + [336729] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - ACTIONS(9783), 1, - anon_sym_STAR, - STATE(7354), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7401), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(9642), 1, + STATE(9582), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9799), 1, + STATE(11325), 1, sym__bare_type, - STATE(10775), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640130,46 +645511,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334093] = 19, + [336800] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7355), 1, + STATE(7402), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11015), 1, + STATE(11333), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640182,46 +645563,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334164] = 19, + [336871] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - ACTIONS(9783), 1, - anon_sym_STAR, - STATE(7356), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7403), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(9642), 1, + STATE(9582), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9941), 1, + STATE(11339), 1, sym__bare_type, - STATE(10775), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640234,46 +645615,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334235] = 19, + [336942] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(7357), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(3004), 1, sym_constant, - STATE(8514), 1, + STATE(3013), 1, sym__type, - STATE(9642), 1, - sym__splattable_type, - STATE(9705), 1, + STATE(3772), 1, sym_splat_type, - STATE(9834), 1, - sym__bare_type, - STATE(10775), 1, + STATE(3815), 1, + sym__splattable_type, + STATE(4141), 1, sym_proc_type, + STATE(4574), 1, + sym__bare_type, + STATE(7404), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640286,46 +645667,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334306] = 19, + [337013] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7358), 1, + STATE(7405), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11194), 1, + STATE(11365), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640338,46 +645719,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334377] = 19, + [337084] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7359), 1, + STATE(7406), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10049), 1, sym__splattable_type, - STATE(11196), 1, + STATE(10868), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640390,46 +645771,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334448] = 19, + [337155] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7360), 1, + STATE(7407), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11231), 1, + STATE(11380), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640442,46 +645823,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334519] = 19, + [337226] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7361), 1, + STATE(7408), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9971), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10779), 1, + STATE(11393), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640494,46 +645875,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334590] = 19, + [337297] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7362), 1, + STATE(7409), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11278), 1, + STATE(11398), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640546,46 +645927,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334661] = 19, + [337368] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(7363), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(3004), 1, sym_constant, - STATE(8514), 1, + STATE(3013), 1, sym__type, - STATE(9642), 1, - sym__splattable_type, - STATE(9705), 1, + STATE(3772), 1, sym_splat_type, - STATE(9845), 1, - sym__bare_type, - STATE(10775), 1, + STATE(3815), 1, + sym__splattable_type, + STATE(4141), 1, sym_proc_type, + STATE(4602), 1, + sym__bare_type, + STATE(7410), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640598,46 +645979,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334732] = 19, + [337439] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7364), 1, + STATE(7411), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10050), 1, sym__splattable_type, - STATE(11303), 1, + STATE(10897), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640650,46 +646031,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334803] = 19, + [337510] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(7365), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(3004), 1, sym_constant, - STATE(8514), 1, + STATE(3013), 1, sym__type, - STATE(9642), 1, - sym__splattable_type, - STATE(9705), 1, + STATE(3772), 1, sym_splat_type, - STATE(9846), 1, - sym__bare_type, - STATE(10775), 1, + STATE(3815), 1, + sym__splattable_type, + STATE(4141), 1, sym_proc_type, + STATE(4354), 1, + sym__bare_type, + STATE(7412), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640702,46 +646083,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334874] = 19, + [337581] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7366), 1, + STATE(7413), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10057), 1, sym__splattable_type, - STATE(11319), 1, + STATE(10910), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640754,46 +646135,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334945] = 19, + [337652] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(7367), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(3004), 1, sym_constant, - STATE(8514), 1, + STATE(3013), 1, sym__type, - STATE(9642), 1, - sym__splattable_type, - STATE(9705), 1, + STATE(3772), 1, sym_splat_type, - STATE(9867), 1, - sym__bare_type, - STATE(10775), 1, + STATE(3815), 1, + sym__splattable_type, + STATE(4141), 1, sym_proc_type, + STATE(4368), 1, + sym__bare_type, + STATE(7414), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640806,46 +646187,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335016] = 19, + [337723] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7368), 1, + STATE(7415), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10058), 1, sym__splattable_type, - STATE(11464), 1, + STATE(10924), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640858,46 +646239,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335087] = 19, + [337794] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7369), 1, + STATE(7416), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9518), 1, sym__splattable_type, - STATE(11465), 1, + STATE(10825), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640910,46 +646291,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335158] = 19, + [337865] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7370), 1, + STATE(7417), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11497), 1, + STATE(11780), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -640962,46 +646343,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335229] = 19, + [337936] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7371), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9973), 1, + STATE(5081), 1, sym__splattable_type, - STATE(10808), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(6089), 1, sym__bare_type, + STATE(7418), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641014,46 +646395,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335300] = 19, + [338007] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7372), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7419), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8571), 1, sym__type, - STATE(9624), 1, + STATE(9640), 1, sym__splattable_type, - STATE(11538), 1, + STATE(9731), 1, sym__bare_type, + STATE(9810), 1, + sym_splat_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641066,46 +646447,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335371] = 19, + [338078] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9849), 1, anon_sym_STAR, - STATE(7373), 1, + STATE(7420), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(8365), 1, sym_constant, - STATE(8514), 1, + STATE(8571), 1, sym__type, - STATE(9642), 1, + STATE(9640), 1, sym__splattable_type, - STATE(9705), 1, + STATE(9810), 1, sym_splat_type, - STATE(9877), 1, + STATE(9853), 1, sym__bare_type, - STATE(10775), 1, + STATE(10767), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641118,46 +646499,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335442] = 19, + [338149] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7374), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3177), 1, sym__splattable_type, - STATE(11568), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4200), 1, sym__bare_type, + STATE(7421), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641170,46 +646551,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335513] = 19, + [338220] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - ACTIONS(9783), 1, - anon_sym_STAR, - STATE(7375), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7422), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(9642), 1, + STATE(9518), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9880), 1, + STATE(10731), 1, sym__bare_type, - STATE(10775), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641222,46 +646603,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335584] = 19, + [338291] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7376), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5081), 1, sym__splattable_type, - STATE(11580), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5790), 1, sym__bare_type, + STATE(7423), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641274,46 +646655,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335655] = 19, + [338362] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - ACTIONS(9783), 1, - anon_sym_STAR, - STATE(7377), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7424), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(9642), 1, + STATE(9582), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9910), 1, + STATE(11858), 1, sym__bare_type, - STATE(10775), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641326,46 +646707,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335726] = 19, + [338433] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7378), 1, + STATE(7425), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9518), 1, sym__splattable_type, - STATE(11732), 1, + STATE(10430), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641378,46 +646759,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335797] = 19, + [338504] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7379), 1, + STATE(7426), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9518), 1, sym__splattable_type, - STATE(11735), 1, + STATE(10833), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641430,46 +646811,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335868] = 19, + [338575] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7380), 1, + STATE(7427), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11773), 1, + STATE(12257), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641482,46 +646863,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335939] = 19, + [338646] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7381), 1, + STATE(7428), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9976), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10807), 1, + STATE(12259), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641534,46 +646915,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336010] = 19, + [338717] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7382), 1, + STATE(7429), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11814), 1, + STATE(11902), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641586,46 +646967,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336081] = 19, + [338788] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(7383), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(2386), 1, sym_constant, - STATE(8514), 1, + STATE(2398), 1, sym__type, - STATE(9642), 1, + STATE(2500), 1, sym__splattable_type, - STATE(9705), 1, + STATE(2630), 1, sym_splat_type, - STATE(9926), 1, - sym__bare_type, - STATE(10775), 1, + STATE(2800), 1, sym_proc_type, + STATE(3033), 1, + sym__bare_type, + STATE(7430), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641638,46 +647019,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336152] = 19, + [338859] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7384), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5081), 1, sym__splattable_type, - STATE(11838), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(6252), 1, sym__bare_type, + STATE(7431), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641690,46 +647071,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336223] = 19, + [338930] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, - anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(4650), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(4652), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9873), 1, + anon_sym_LPAREN, + ACTIONS(9875), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9877), 1, anon_sym_STAR, - STATE(7385), 1, - sym_heredoc_body, - STATE(8399), 1, - sym_constant, - STATE(8514), 1, + ACTIONS(9879), 1, + anon_sym_typeof, + ACTIONS(9881), 1, + sym__constant_segment, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, sym__type, - STATE(9642), 1, + STATE(2025), 1, + sym_constant, + STATE(2055), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9927), 1, + STATE(2062), 1, sym__bare_type, - STATE(10775), 1, + STATE(2070), 1, + sym_splat_type, + STATE(2081), 1, sym_proc_type, + STATE(7432), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9885), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2038), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641742,46 +647123,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336294] = 19, + [339001] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7386), 1, + STATE(7433), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11848), 1, + STATE(11931), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641794,46 +647175,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336365] = 19, + [339072] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - ACTIONS(9783), 1, - anon_sym_STAR, - STATE(7387), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7434), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(9642), 1, + STATE(9582), 1, sym__splattable_type, - STATE(9705), 1, - sym_splat_type, - STATE(9943), 1, + STATE(11942), 1, sym__bare_type, - STATE(10775), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641846,46 +647227,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336436] = 19, + [339143] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7388), 1, + STATE(7435), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9518), 1, sym__splattable_type, - STATE(11972), 1, + STATE(10436), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641898,46 +647279,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336507] = 19, + [339214] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7389), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5081), 1, sym__splattable_type, - STATE(11974), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5871), 1, sym__bare_type, + STATE(7436), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -641950,46 +647331,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336578] = 19, + [339285] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7390), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5081), 1, sym__splattable_type, - STATE(12005), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5874), 1, sym__bare_type, + STATE(7437), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642002,46 +647383,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336649] = 19, + [339356] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7391), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9980), 1, + STATE(5081), 1, sym__splattable_type, - STATE(10749), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5913), 1, sym__bare_type, + STATE(7438), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642054,46 +647435,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336720] = 19, + [339427] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7392), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5081), 1, sym__splattable_type, - STATE(12057), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5914), 1, sym__bare_type, + STATE(7439), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642106,46 +647487,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336791] = 19, + [339498] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(3279), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9841), 1, anon_sym_STAR, - STATE(7393), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(4768), 1, sym_constant, - STATE(8514), 1, + STATE(4772), 1, sym__type, - STATE(9642), 1, + STATE(5081), 1, sym__splattable_type, - STATE(9705), 1, + STATE(5481), 1, sym_splat_type, - STATE(9948), 1, - sym__bare_type, - STATE(10775), 1, + STATE(5767), 1, sym_proc_type, + STATE(5933), 1, + sym__bare_type, + STATE(7440), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642158,46 +647539,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336862] = 19, + [339569] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7394), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5081), 1, sym__splattable_type, - STATE(12082), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5937), 1, sym__bare_type, + STATE(7441), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642210,46 +647591,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336933] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, + [339640] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(7395), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(5137), 1, sym_constant, - STATE(8514), 1, + STATE(5179), 1, sym__type, - STATE(9642), 1, + STATE(5839), 1, sym__splattable_type, - STATE(9705), 1, + STATE(6090), 1, sym_splat_type, - STATE(9953), 1, - sym__bare_type, - STATE(10775), 1, + STATE(6379), 1, sym_proc_type, + STATE(6899), 1, + sym__bare_type, + STATE(7442), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642262,46 +647643,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337004] = 19, + [339711] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5205), 1, + anon_sym_typeof, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7396), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9923), 1, + anon_sym_DASH_GT, + ACTIONS(9925), 1, + anon_sym_STAR, + STATE(2331), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2334), 1, sym__type, - STATE(9624), 1, + STATE(2388), 1, sym__splattable_type, - STATE(12100), 1, + STATE(2466), 1, + sym_splat_type, + STATE(2543), 1, + sym_proc_type, + STATE(2638), 1, sym__bare_type, + STATE(7443), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642314,46 +647695,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337075] = 19, + [339782] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(2274), 1, sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(5205), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9923), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9925), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(2331), 1, sym_constant, - STATE(5085), 1, + STATE(2334), 1, sym__type, - STATE(5703), 1, + STATE(2388), 1, sym__splattable_type, - STATE(6042), 1, + STATE(2466), 1, sym_splat_type, - STATE(6288), 1, - sym_proc_type, - STATE(6829), 1, + STATE(2536), 1, sym__bare_type, - STATE(7397), 1, + STATE(2543), 1, + sym_proc_type, + STATE(7444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642366,46 +647747,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337146] = 19, + [339853] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5205), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9923), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9925), 1, anon_sym_STAR, - STATE(7398), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(2331), 1, sym_constant, - STATE(8514), 1, + STATE(2334), 1, sym__type, - STATE(9642), 1, + STATE(2388), 1, sym__splattable_type, - STATE(9705), 1, + STATE(2466), 1, sym_splat_type, - STATE(10018), 1, - sym__bare_type, - STATE(10775), 1, + STATE(2543), 1, sym_proc_type, + STATE(2711), 1, + sym__bare_type, + STATE(7445), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642418,46 +647799,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337217] = 19, + [339924] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5205), 1, + anon_sym_typeof, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7399), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9923), 1, + anon_sym_DASH_GT, + ACTIONS(9925), 1, + anon_sym_STAR, + STATE(2331), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2334), 1, sym__type, - STATE(9624), 1, + STATE(2388), 1, sym__splattable_type, - STATE(12314), 1, + STATE(2466), 1, + sym_splat_type, + STATE(2543), 1, + sym_proc_type, + STATE(2747), 1, sym__bare_type, + STATE(7446), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642470,46 +647851,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337288] = 19, + [339995] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5205), 1, + anon_sym_typeof, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7400), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9923), 1, + anon_sym_DASH_GT, + ACTIONS(9925), 1, + anon_sym_STAR, + STATE(2331), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2334), 1, sym__type, - STATE(9624), 1, + STATE(2388), 1, sym__splattable_type, - STATE(12315), 1, + STATE(2466), 1, + sym_splat_type, + STATE(2543), 1, + sym_proc_type, + STATE(2750), 1, sym__bare_type, + STATE(7447), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642522,46 +647903,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337359] = 19, + [340066] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5471), 1, + anon_sym_typeof, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7401), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9927), 1, + anon_sym_DASH_GT, + ACTIONS(9929), 1, + anon_sym_STAR, + STATE(4776), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4777), 1, sym__type, - STATE(9624), 1, + STATE(5088), 1, sym__splattable_type, - STATE(11453), 1, + STATE(5440), 1, + sym_splat_type, + STATE(5845), 1, + sym_proc_type, + STATE(6217), 1, sym__bare_type, + STATE(7448), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642574,46 +647955,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337430] = 19, + [340137] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5205), 1, + anon_sym_typeof, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7402), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9923), 1, + anon_sym_DASH_GT, + ACTIONS(9925), 1, + anon_sym_STAR, + STATE(2331), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2334), 1, sym__type, - STATE(9982), 1, + STATE(2388), 1, sym__splattable_type, - STATE(10731), 1, + STATE(2466), 1, + sym_splat_type, + STATE(2543), 1, + sym_proc_type, + STATE(2650), 1, sym__bare_type, + STATE(7449), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642626,46 +648007,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337501] = 19, + [340208] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7403), 1, + STATE(7450), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11490), 1, + STATE(10955), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642678,46 +648059,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337572] = 19, + [340279] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5205), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9923), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9925), 1, anon_sym_STAR, - STATE(7404), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(2331), 1, sym_constant, - STATE(8514), 1, + STATE(2334), 1, sym__type, - STATE(9642), 1, + STATE(2388), 1, sym__splattable_type, - STATE(9657), 1, - sym__bare_type, - STATE(9705), 1, + STATE(2466), 1, sym_splat_type, - STATE(10775), 1, + STATE(2543), 1, sym_proc_type, + STATE(2694), 1, + sym__bare_type, + STATE(7451), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642730,46 +648111,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337643] = 19, + [340350] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5205), 1, + anon_sym_typeof, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7405), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9923), 1, + anon_sym_DASH_GT, + ACTIONS(9925), 1, + anon_sym_STAR, + STATE(2331), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2334), 1, sym__type, - STATE(9624), 1, + STATE(2388), 1, sym__splattable_type, - STATE(10939), 1, + STATE(2466), 1, + sym_splat_type, + STATE(2543), 1, + sym_proc_type, + STATE(2730), 1, sym__bare_type, + STATE(7452), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642782,46 +648163,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337714] = 19, + [340421] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5205), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9923), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9925), 1, anon_sym_STAR, - STATE(7406), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(2331), 1, sym_constant, - STATE(8514), 1, + STATE(2334), 1, sym__type, - STATE(9642), 1, + STATE(2388), 1, sym__splattable_type, - STATE(9659), 1, - sym__bare_type, - STATE(9705), 1, + STATE(2466), 1, sym_splat_type, - STATE(10775), 1, + STATE(2543), 1, sym_proc_type, + STATE(2666), 1, + sym__bare_type, + STATE(7453), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642834,46 +648215,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337785] = 19, + [340492] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7407), 1, + STATE(7454), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9990), 1, sym__splattable_type, - STATE(11240), 1, + STATE(10927), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642886,46 +648267,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337856] = 19, + [340563] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(3279), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9841), 1, anon_sym_STAR, - STATE(7408), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(4768), 1, sym_constant, - STATE(8514), 1, + STATE(4772), 1, sym__type, - STATE(9642), 1, + STATE(5360), 1, sym__splattable_type, - STATE(9668), 1, - sym__bare_type, - STATE(9705), 1, + STATE(5481), 1, sym_splat_type, - STATE(10775), 1, + STATE(5767), 1, sym_proc_type, + STATE(5871), 1, + sym__bare_type, + STATE(7455), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642938,46 +648319,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337927] = 19, + [340634] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5471), 1, + anon_sym_typeof, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7409), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9927), 1, + anon_sym_DASH_GT, + ACTIONS(9929), 1, + anon_sym_STAR, + STATE(4776), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4777), 1, sym__type, - STATE(9624), 1, + STATE(5088), 1, sym__splattable_type, - STATE(11455), 1, + STATE(5440), 1, + sym_splat_type, + STATE(5813), 1, sym__bare_type, + STATE(5845), 1, + sym_proc_type, + STATE(7456), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -642990,46 +648371,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337998] = 19, + [340705] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4762), 1, + sym__start_of_tuple_type, + ACTIONS(4764), 1, + sym__start_of_named_tuple_type, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9855), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9857), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9859), 1, sym__constant_segment, - STATE(7410), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(473), 1, + sym__bare_type, + STATE(2075), 1, + sym__type, + STATE(2076), 1, sym_constant, - STATE(7967), 1, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(11463), 1, - sym__bare_type, + STATE(7457), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643042,46 +648423,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338069] = 19, + [340776] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7411), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9835), 1, + anon_sym_DASH_GT, + ACTIONS(9837), 1, + anon_sym_STAR, + STATE(3004), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(3013), 1, sym__type, - STATE(9624), 1, + STATE(3483), 1, sym__splattable_type, - STATE(11780), 1, + STATE(3772), 1, + sym_splat_type, + STATE(4141), 1, + sym_proc_type, + STATE(4574), 1, sym__bare_type, + STATE(7458), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643094,46 +648475,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338140] = 19, + [340847] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7412), 1, + STATE(7459), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9987), 1, + STATE(9518), 1, sym__splattable_type, - STATE(10816), 1, + STATE(10784), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643146,46 +648527,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338211] = 19, + [340918] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7413), 1, + ACTIONS(9899), 1, + anon_sym_DASH_GT, + ACTIONS(9901), 1, + anon_sym_STAR, + STATE(7460), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(7934), 1, + sym__bare_type, + STATE(7959), 1, + sym__type, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, + STATE(8319), 1, sym__splattable_type, - STATE(12064), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643198,46 +648579,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338282] = 19, + [340989] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9899), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9901), 1, anon_sym_STAR, - STATE(7414), 1, + STATE(7461), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, - sym__type, - STATE(9642), 1, - sym__splattable_type, - STATE(9672), 1, + STATE(7956), 1, sym__bare_type, - STATE(9705), 1, + STATE(7959), 1, + sym__type, + STATE(8013), 1, sym_splat_type, - STATE(10775), 1, + STATE(8201), 1, sym_proc_type, + STATE(8319), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643250,46 +648631,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338353] = 19, + [341060] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4762), 1, + sym__start_of_tuple_type, + ACTIONS(4764), 1, + sym__start_of_named_tuple_type, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9855), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9857), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9859), 1, sym__constant_segment, - STATE(7415), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(454), 1, + sym__bare_type, + STATE(2075), 1, + sym__type, + STATE(2076), 1, sym_constant, - STATE(7967), 1, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(12224), 1, - sym__bare_type, + STATE(7462), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643302,98 +648683,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338424] = 19, + [341131] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9837), 1, anon_sym_STAR, - STATE(7416), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(3004), 1, sym_constant, - STATE(8514), 1, + STATE(3013), 1, sym__type, - STATE(9642), 1, + STATE(3483), 1, sym__splattable_type, - STATE(9673), 1, - sym__bare_type, - STATE(9705), 1, - sym_splat_type, - STATE(10775), 1, - sym_proc_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9745), 2, - sym_self, - sym_underscore_type, - STATE(8598), 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, - [338495] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7417), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, + STATE(3772), 1, sym_splat_type, - STATE(8177), 1, + STATE(4141), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(12275), 1, + STATE(4602), 1, sym__bare_type, + STATE(7463), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643406,46 +648735,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338566] = 19, + [341202] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5471), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9927), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9929), 1, anon_sym_STAR, - STATE(7418), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(4776), 1, sym_constant, - STATE(8514), 1, + STATE(4777), 1, sym__type, - STATE(9642), 1, + STATE(5088), 1, sym__splattable_type, - STATE(9682), 1, - sym__bare_type, - STATE(9705), 1, + STATE(5440), 1, sym_splat_type, - STATE(10775), 1, + STATE(5845), 1, sym_proc_type, + STATE(6246), 1, + sym__bare_type, + STATE(7464), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643458,46 +648787,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338637] = 19, + [341273] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7419), 1, + STATE(7465), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(11263), 1, + STATE(11078), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643510,46 +648839,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338708] = 19, + [341344] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7420), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7466), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8571), 1, sym__type, - STATE(9624), 1, + STATE(9640), 1, sym__splattable_type, - STATE(11277), 1, + STATE(9810), 1, + sym_splat_type, + STATE(9874), 1, sym__bare_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643562,46 +648891,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338779] = 19, + [341415] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(3299), 1, sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(5471), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9927), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9929), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(4776), 1, sym_constant, - STATE(5085), 1, + STATE(4777), 1, sym__type, - STATE(5703), 1, + STATE(5088), 1, sym__splattable_type, - STATE(6042), 1, + STATE(5440), 1, sym_splat_type, - STATE(6288), 1, + STATE(5845), 1, sym_proc_type, - STATE(6653), 1, + STATE(6268), 1, sym__bare_type, - STATE(7421), 1, + STATE(7467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643614,46 +648943,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338850] = 19, + [341486] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7422), 1, + ACTIONS(9899), 1, + anon_sym_DASH_GT, + ACTIONS(9901), 1, + anon_sym_STAR, + STATE(7468), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(7954), 1, + sym__bare_type, + STATE(7959), 1, + sym__type, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, + STATE(8319), 1, sym__splattable_type, - STATE(11375), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643666,46 +648995,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338921] = 19, + [341557] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7423), 1, + STATE(7469), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9988), 1, + STATE(9582), 1, sym__splattable_type, - STATE(10704), 1, + STATE(11030), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643718,46 +649047,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338992] = 19, + [341628] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7424), 1, + ACTIONS(9899), 1, + anon_sym_DASH_GT, + ACTIONS(9901), 1, + anon_sym_STAR, + STATE(7470), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(7945), 1, + sym__bare_type, + STATE(7959), 1, + sym__type, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, + STATE(8319), 1, sym__splattable_type, - STATE(11491), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643770,46 +649099,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339063] = 19, + [341699] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - ACTIONS(9783), 1, - anon_sym_STAR, - STATE(7425), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7471), 1, sym_heredoc_body, - STATE(8399), 1, + STATE(7817), 1, sym_constant, - STATE(8514), 1, + STATE(8013), 1, + sym_splat_type, + STATE(8201), 1, + sym_proc_type, + STATE(8301), 1, sym__type, - STATE(9642), 1, + STATE(9582), 1, sym__splattable_type, - STATE(9687), 1, + STATE(11214), 1, sym__bare_type, - STATE(9705), 1, - sym_splat_type, - STATE(10775), 1, - sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643822,46 +649151,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339134] = 19, + [341770] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7426), 1, + ACTIONS(9847), 1, + anon_sym_DASH_GT, + ACTIONS(9849), 1, + anon_sym_STAR, + STATE(7472), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8571), 1, sym__type, - STATE(9624), 1, + STATE(9640), 1, sym__splattable_type, - STATE(11678), 1, + STATE(9810), 1, + sym_splat_type, + STATE(9904), 1, sym__bare_type, + STATE(10767), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643874,46 +649203,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339205] = 19, + [341841] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, - anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9851), 1, + anon_sym_LPAREN, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(7427), 1, - sym_heredoc_body, - STATE(8399), 1, - sym_constant, - STATE(8514), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(477), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(9642), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(9688), 1, - sym__bare_type, - STATE(9705), 1, + STATE(2126), 1, sym_splat_type, - STATE(10775), 1, + STATE(2146), 1, sym_proc_type, + STATE(7473), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643926,46 +649255,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339276] = 19, + [341912] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(7251), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(7256), 1, + anon_sym_typeof, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7428), 1, + ACTIONS(9915), 1, + anon_sym_DASH_GT, + ACTIONS(9917), 1, + anon_sym_STAR, + STATE(7474), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7734), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(7737), 1, sym__type, - STATE(9624), 1, + STATE(7911), 1, sym__splattable_type, - STATE(11704), 1, + STATE(7941), 1, + sym_splat_type, + STATE(8036), 1, + sym_proc_type, + STATE(8211), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -643978,7 +649307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339347] = 19, + [341983] = 19, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(83), 1, @@ -643993,23 +649322,23 @@ static const uint16_t ts_small_parse_table[] = { sym__start_of_tuple_type, ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - ACTIONS(9779), 1, + ACTIONS(9897), 1, anon_sym_STAR, - STATE(2374), 1, + STATE(2386), 1, sym_constant, - STATE(2382), 1, + STATE(2398), 1, sym__type, - STATE(2468), 1, + STATE(2500), 1, sym__splattable_type, - STATE(2548), 1, + STATE(2630), 1, sym_splat_type, - STATE(2769), 1, + STATE(2800), 1, sym_proc_type, - STATE(2971), 1, + STATE(3035), 1, sym__bare_type, - STATE(7429), 1, + STATE(7475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -644017,7 +649346,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644030,46 +649359,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339418] = 19, + [342054] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, - anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9851), 1, + anon_sym_LPAREN, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9855), 1, anon_sym_STAR, - STATE(7430), 1, - sym_heredoc_body, - STATE(8399), 1, - sym_constant, - STATE(8514), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(480), 1, + sym__bare_type, + STATE(2075), 1, sym__type, - STATE(9642), 1, + STATE(2076), 1, + sym_constant, + STATE(2119), 1, sym__splattable_type, - STATE(9698), 1, - sym__bare_type, - STATE(9705), 1, + STATE(2126), 1, sym_splat_type, - STATE(10775), 1, + STATE(2146), 1, sym_proc_type, + STATE(7476), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644082,46 +649411,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339489] = 19, + [342125] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7431), 1, + STATE(7477), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9582), 1, sym__splattable_type, - STATE(12016), 1, + STATE(11282), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644134,46 +649463,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339560] = 19, + [342196] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4762), 1, + sym__start_of_tuple_type, + ACTIONS(4764), 1, + sym__start_of_named_tuple_type, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9855), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9857), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9859), 1, sym__constant_segment, - STATE(7432), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(495), 1, + sym__bare_type, + STATE(2075), 1, + sym__type, + STATE(2076), 1, sym_constant, - STATE(7967), 1, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(12027), 1, - sym__bare_type, + STATE(7478), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644186,46 +649515,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339631] = 19, + [342267] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4762), 1, + sym__start_of_tuple_type, + ACTIONS(4764), 1, + sym__start_of_named_tuple_type, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9855), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9857), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9859), 1, sym__constant_segment, - STATE(7433), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(499), 1, + sym__bare_type, + STATE(2075), 1, + sym__type, + STATE(2076), 1, sym_constant, - STATE(7967), 1, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(12081), 1, - sym__bare_type, + STATE(7479), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644238,46 +649567,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339702] = 19, + [342338] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4762), 1, + sym__start_of_tuple_type, + ACTIONS(4764), 1, + sym__start_of_named_tuple_type, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9855), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9857), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9859), 1, sym__constant_segment, - STATE(7434), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(501), 1, + sym__bare_type, + STATE(2075), 1, + sym__type, + STATE(2076), 1, sym_constant, - STATE(7967), 1, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9989), 1, - sym__splattable_type, - STATE(10849), 1, - sym__bare_type, + STATE(7480), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644290,46 +649619,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339773] = 19, + [342409] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5471), 1, + anon_sym_typeof, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7435), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9927), 1, + anon_sym_DASH_GT, + ACTIONS(9929), 1, + anon_sym_STAR, + STATE(4776), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4777), 1, sym__type, - STATE(9624), 1, + STATE(5088), 1, sym__splattable_type, - STATE(12181), 1, + STATE(5440), 1, + sym_splat_type, + STATE(5845), 1, + sym_proc_type, + STATE(6271), 1, sym__bare_type, + STATE(7481), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644342,46 +649671,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339844] = 19, + [342480] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5471), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9927), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9929), 1, anon_sym_STAR, - STATE(7436), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(4776), 1, sym_constant, - STATE(8514), 1, + STATE(4777), 1, sym__type, - STATE(9642), 1, + STATE(5088), 1, sym__splattable_type, - STATE(9701), 1, - sym__bare_type, - STATE(9705), 1, + STATE(5440), 1, sym_splat_type, - STATE(10775), 1, + STATE(5845), 1, sym_proc_type, + STATE(6277), 1, + sym__bare_type, + STATE(7482), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644394,46 +649723,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339915] = 19, + [342551] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5471), 1, + anon_sym_typeof, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7437), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9927), 1, + anon_sym_DASH_GT, + ACTIONS(9929), 1, + anon_sym_STAR, + STATE(4776), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4777), 1, sym__type, - STATE(9624), 1, + STATE(5088), 1, sym__splattable_type, - STATE(12240), 1, + STATE(5440), 1, + sym_splat_type, + STATE(5845), 1, + sym_proc_type, + STATE(6278), 1, sym__bare_type, + STATE(7483), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644446,46 +649775,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339986] = 19, + [342622] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5471), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(9927), 1, anon_sym_DASH_GT, - ACTIONS(9783), 1, + ACTIONS(9929), 1, anon_sym_STAR, - STATE(7438), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(4776), 1, sym_constant, - STATE(8514), 1, + STATE(4777), 1, sym__type, - STATE(9642), 1, + STATE(5088), 1, sym__splattable_type, - STATE(9703), 1, - sym__bare_type, - STATE(9705), 1, + STATE(5440), 1, sym_splat_type, - STATE(10775), 1, + STATE(5845), 1, sym_proc_type, + STATE(6281), 1, + sym__bare_type, + STATE(7484), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644498,46 +649827,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340057] = 19, + [342693] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5471), 1, + anon_sym_typeof, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7439), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9927), 1, + anon_sym_DASH_GT, + ACTIONS(9929), 1, + anon_sym_STAR, + STATE(4776), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4777), 1, sym__type, - STATE(9624), 1, + STATE(5088), 1, sym__splattable_type, - STATE(12269), 1, + STATE(5440), 1, + sym_splat_type, + STATE(5845), 1, + sym_proc_type, + STATE(5854), 1, sym__bare_type, + STATE(7485), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644550,46 +649879,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340128] = 19, + [342764] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7440), 1, + STATE(7486), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(9518), 1, sym__splattable_type, - STATE(10920), 1, + STATE(10341), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644602,46 +649931,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340199] = 19, + [342835] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5230), 1, + anon_sym_typeof, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7441), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9895), 1, + anon_sym_DASH_GT, + ACTIONS(9897), 1, + anon_sym_STAR, + STATE(2386), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2398), 1, sym__type, - STATE(9624), 1, + STATE(2500), 1, sym__splattable_type, - STATE(10921), 1, + STATE(2630), 1, + sym_splat_type, + STATE(2800), 1, + sym_proc_type, + STATE(3016), 1, sym__bare_type, + STATE(7487), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644654,46 +649983,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340270] = 19, + [342906] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7442), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3177), 1, sym__splattable_type, - STATE(10926), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4208), 1, sym__bare_type, + STATE(7488), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644706,46 +650035,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340341] = 19, + [342977] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7443), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9835), 1, + anon_sym_DASH_GT, + ACTIONS(9837), 1, + anon_sym_STAR, + STATE(3004), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(3013), 1, sym__type, - STATE(9990), 1, + STATE(3483), 1, sym__splattable_type, - STATE(10868), 1, + STATE(3772), 1, + sym_splat_type, + STATE(4141), 1, + sym_proc_type, + STATE(6668), 1, sym__bare_type, + STATE(7489), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644758,46 +650087,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340412] = 19, + [343048] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7444), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9835), 1, + anon_sym_DASH_GT, + ACTIONS(9837), 1, + anon_sym_STAR, + STATE(3004), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(3013), 1, sym__type, - STATE(9624), 1, + STATE(3483), 1, sym__splattable_type, - STATE(10937), 1, + STATE(3772), 1, + sym_splat_type, + STATE(4141), 1, + sym_proc_type, + STATE(4499), 1, sym__bare_type, + STATE(7490), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644810,46 +650139,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340483] = 19, + [343119] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7445), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9835), 1, + anon_sym_DASH_GT, + ACTIONS(9837), 1, + anon_sym_STAR, + STATE(3004), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(3013), 1, sym__type, - STATE(9624), 1, + STATE(3483), 1, sym__splattable_type, - STATE(10959), 1, + STATE(3772), 1, + sym_splat_type, + STATE(4141), 1, + sym_proc_type, + STATE(4354), 1, sym__bare_type, + STATE(7491), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644862,46 +650191,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340554] = 19, + [343190] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7446), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3177), 1, sym__splattable_type, - STATE(10979), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4210), 1, sym__bare_type, + STATE(7492), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644914,46 +650243,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340625] = 19, + [343261] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7447), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9835), 1, + anon_sym_DASH_GT, + ACTIONS(9837), 1, + anon_sym_STAR, + STATE(3004), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(3013), 1, sym__type, - STATE(9624), 1, + STATE(3772), 1, + sym_splat_type, + STATE(3815), 1, sym__splattable_type, - STATE(11028), 1, + STATE(4141), 1, + sym_proc_type, + STATE(6893), 1, sym__bare_type, + STATE(7493), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -644966,46 +650295,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340696] = 19, + [343332] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7448), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9993), 1, + STATE(3177), 1, sym__splattable_type, - STATE(10763), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(3969), 1, sym__bare_type, + STATE(7494), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645018,46 +650347,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340767] = 19, + [343403] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3015), 1, + sym__constant_segment, + ACTIONS(5279), 1, + anon_sym_typeof, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7449), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, + anon_sym_DASH_GT, + ACTIONS(9913), 1, + anon_sym_STAR, + STATE(2701), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2718), 1, sym__type, - STATE(9624), 1, + STATE(3130), 1, sym__splattable_type, - STATE(11049), 1, + STATE(3331), 1, + sym_splat_type, + STATE(3589), 1, + sym_proc_type, + STATE(3692), 1, sym__bare_type, + STATE(7495), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645070,46 +650399,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340838] = 19, + [343474] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3323), 1, + sym__constant_segment, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7450), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, + anon_sym_DASH_GT, + ACTIONS(9829), 1, + anon_sym_STAR, + STATE(5137), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(5179), 1, sym__type, - STATE(9624), 1, + STATE(5839), 1, sym__splattable_type, - STATE(11072), 1, + STATE(6090), 1, + sym_splat_type, + STATE(6379), 1, + sym_proc_type, + STATE(6907), 1, sym__bare_type, + STATE(7496), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645122,46 +650451,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340909] = 19, + [343545] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8675), 1, + anon_sym_typeof, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7451), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9919), 1, + sym_identifier, + ACTIONS(9931), 1, + anon_sym_RPAREN, + STATE(7497), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8649), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8654), 1, sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(11092), 1, - sym__bare_type, + STATE(10658), 1, + sym_fun_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(8683), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(12126), 2, + sym_fun_param_list, + sym_fun_type_param_list, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645174,46 +650502,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340980] = 19, + [343614] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7452), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5360), 1, sym__splattable_type, - STATE(11123), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5933), 1, sym__bare_type, + STATE(7498), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645226,46 +650554,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341051] = 19, + [343685] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7453), 1, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7499), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8345), 1, sym__type, - STATE(9995), 1, + STATE(9519), 1, sym__splattable_type, - STATE(10839), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10587), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645278,46 +650606,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341122] = 19, + [343756] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7454), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3289), 1, sym__splattable_type, - STATE(11154), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(3969), 1, sym__bare_type, + STATE(7500), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645330,46 +650658,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341193] = 19, + [343827] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7455), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3289), 1, sym__splattable_type, - STATE(11175), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(3851), 1, sym__bare_type, + STATE(7501), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645382,46 +650710,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341264] = 19, + [343898] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7456), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3289), 1, sym__splattable_type, - STATE(11180), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4109), 1, sym__bare_type, + STATE(7502), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645434,46 +650762,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341335] = 19, + [343969] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7457), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3289), 1, sym__splattable_type, - STATE(11201), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4154), 1, sym__bare_type, + STATE(7503), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645486,46 +650814,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341406] = 19, + [344040] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7458), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9996), 1, + STATE(5360), 1, sym__splattable_type, - STATE(10766), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(5874), 1, sym__bare_type, + STATE(7504), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645538,46 +650866,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341477] = 19, + [344111] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4762), 1, + sym__start_of_tuple_type, + ACTIONS(4764), 1, + sym__start_of_named_tuple_type, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9855), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9857), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9859), 1, sym__constant_segment, - STATE(7459), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(516), 1, + sym__bare_type, + STATE(2075), 1, + sym__type, + STATE(2076), 1, sym_constant, - STATE(7967), 1, + STATE(2119), 1, + sym__splattable_type, + STATE(2126), 1, sym_splat_type, - STATE(8177), 1, + STATE(2146), 1, sym_proc_type, - STATE(8271), 1, - sym__type, - STATE(9624), 1, - sym__splattable_type, - STATE(11219), 1, - sym__bare_type, + STATE(7505), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645590,46 +650918,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341548] = 19, + [344182] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7460), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5360), 1, sym__splattable_type, - STATE(11237), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(6530), 1, sym__bare_type, + STATE(7506), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645642,46 +650970,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341619] = 19, + [344253] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7461), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3289), 1, sym__splattable_type, - STATE(11243), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4157), 1, sym__bare_type, + STATE(7507), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645694,46 +651022,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341690] = 19, + [344324] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7462), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, + anon_sym_DASH_GT, + ACTIONS(9841), 1, + anon_sym_STAR, + STATE(4768), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(4772), 1, sym__type, - STATE(9624), 1, + STATE(5360), 1, sym__splattable_type, - STATE(11276), 1, + STATE(5481), 1, + sym_splat_type, + STATE(5767), 1, + sym_proc_type, + STATE(6089), 1, sym__bare_type, + STATE(7508), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645746,46 +651074,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341761] = 19, + [344395] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(4650), 1, + sym__start_of_tuple_type, + ACTIONS(4652), 1, + sym__start_of_named_tuple_type, + ACTIONS(9873), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9875), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9877), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9879), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9881), 1, sym__constant_segment, - STATE(7463), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(2016), 1, sym__type, - STATE(9997), 1, + STATE(2025), 1, + sym_constant, + STATE(2055), 1, sym__splattable_type, - STATE(10804), 1, + STATE(2068), 1, sym__bare_type, + STATE(2070), 1, + sym_splat_type, + STATE(2081), 1, + sym_proc_type, + STATE(7509), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9885), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2038), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645798,46 +651126,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341832] = 19, + [344466] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8008), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7464), 1, + ACTIONS(9907), 1, + anon_sym_DASH_GT, + ACTIONS(9909), 1, + anon_sym_STAR, + STATE(7510), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(7861), 1, sym__type, - STATE(9624), 1, + STATE(7864), 1, + sym_constant, + STATE(8144), 1, sym__splattable_type, - STATE(11293), 1, + STATE(8291), 1, + sym_splat_type, + STATE(8299), 1, sym__bare_type, + STATE(8333), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645850,46 +651178,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341903] = 19, + [344537] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7465), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3289), 1, sym__splattable_type, - STATE(11324), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4198), 1, sym__bare_type, + STATE(7511), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645902,46 +651230,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341974] = 19, + [344608] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7466), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9624), 1, + STATE(3289), 1, sym__splattable_type, - STATE(11333), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4200), 1, sym__bare_type, + STATE(7512), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -645954,46 +651282,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342045] = 19, + [344679] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7467), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(9998), 1, + STATE(3289), 1, sym__splattable_type, - STATE(10825), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4208), 1, sym__bare_type, + STATE(7513), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646006,46 +651334,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342116] = 19, + [344750] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7468), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + ACTIONS(9825), 1, + anon_sym_STAR, + STATE(2891), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2892), 1, sym__type, - STATE(10005), 1, + STATE(3289), 1, sym__splattable_type, - STATE(10843), 1, + STATE(3572), 1, + sym_splat_type, + STATE(3597), 1, + sym_proc_type, + STATE(4210), 1, sym__bare_type, + STATE(7514), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646058,46 +651386,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342187] = 19, + [344821] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7469), 1, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7515), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8345), 1, sym__type, - STATE(10006), 1, + STATE(9519), 1, sym__splattable_type, - STATE(10857), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10364), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646110,46 +651438,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342258] = 19, + [344892] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, - anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9703), 1, - anon_sym_STAR, - ACTIONS(9707), 1, + ACTIONS(3015), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(5279), 1, + anon_sym_typeof, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7470), 1, - sym_heredoc_body, - STATE(8279), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, + anon_sym_DASH_GT, + ACTIONS(9913), 1, + anon_sym_STAR, + STATE(2701), 1, sym_constant, - STATE(8281), 1, + STATE(2718), 1, sym__type, - STATE(9443), 1, + STATE(3130), 1, sym__splattable_type, - STATE(9555), 1, + STATE(3331), 1, sym_splat_type, - STATE(10045), 1, + STATE(3589), 1, sym_proc_type, - STATE(10568), 1, + STATE(3703), 1, sym__bare_type, + STATE(7516), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646162,46 +651490,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342329] = 19, + [344963] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9703), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - STATE(7471), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7517), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8281), 1, - sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, + STATE(8013), 1, sym_splat_type, - STATE(10045), 1, + STATE(8201), 1, sym_proc_type, - STATE(10569), 1, + STATE(8301), 1, + sym__type, + STATE(10016), 1, + sym__splattable_type, + STATE(10766), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646214,45 +651542,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342400] = 18, + [345034] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8576), 1, + ACTIONS(9747), 1, + anon_sym_LPAREN, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(8580), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9772), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9857), 1, - sym_identifier, - ACTIONS(9881), 1, - anon_sym_RPAREN, - STATE(7472), 1, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7518), 1, sym_heredoc_body, - STATE(8641), 1, + STATE(8341), 1, sym_constant, - STATE(8642), 1, + STATE(8345), 1, sym__type, - STATE(10626), 1, - sym_fun_param, + STATE(9519), 1, + sym__splattable_type, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10309), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8584), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(12019), 2, - sym_fun_param_list, - sym_fun_type_param_list, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646265,46 +651594,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342469] = 19, + [345105] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9703), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - STATE(7473), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7519), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8281), 1, - sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, + STATE(8013), 1, sym_splat_type, - STATE(10045), 1, + STATE(8201), 1, sym_proc_type, - STATE(10595), 1, + STATE(8301), 1, + sym__type, + STATE(10038), 1, + sym__splattable_type, + STATE(10775), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646317,46 +651646,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342540] = 19, + [345176] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, - anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, - anon_sym_DASH_GT, - ACTIONS(9775), 1, - anon_sym_STAR, - STATE(5084), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7520), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(5085), 1, - sym__type, - STATE(5703), 1, - sym__splattable_type, - STATE(6042), 1, + STATE(8013), 1, sym_splat_type, - STATE(6288), 1, + STATE(8201), 1, sym_proc_type, - STATE(6775), 1, + STATE(8301), 1, + sym__type, + STATE(10043), 1, + sym__splattable_type, + STATE(10783), 1, sym__bare_type, - STATE(7474), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646369,46 +651698,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342611] = 19, + [345247] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9703), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - STATE(7475), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7521), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8281), 1, - sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, + STATE(8013), 1, sym_splat_type, - STATE(10045), 1, + STATE(8201), 1, sym_proc_type, - STATE(10604), 1, + STATE(8301), 1, + sym__type, + STATE(10046), 1, + sym__splattable_type, + STATE(10796), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646421,46 +651750,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342682] = 19, + [345318] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9703), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - STATE(7476), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7522), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8281), 1, - sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, + STATE(8013), 1, sym_splat_type, - STATE(10045), 1, + STATE(8201), 1, sym_proc_type, - STATE(10607), 1, + STATE(8301), 1, + sym__type, + STATE(10051), 1, + sym__splattable_type, + STATE(10798), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646473,46 +651802,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342753] = 19, + [345389] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7477), 1, + STATE(7523), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10052), 1, sym__splattable_type, - STATE(11874), 1, + STATE(10799), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646525,46 +651854,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342824] = 19, + [345460] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7478), 1, + STATE(7524), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10053), 1, sym__splattable_type, - STATE(11924), 1, + STATE(10801), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646577,46 +651906,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342895] = 19, + [345531] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7479), 1, + STATE(7525), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10054), 1, sym__splattable_type, - STATE(11951), 1, + STATE(10806), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646629,46 +651958,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342966] = 19, + [345602] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7480), 1, + STATE(7526), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10055), 1, sym__splattable_type, - STATE(11959), 1, + STATE(10808), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646681,46 +652010,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343037] = 19, + [345673] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(529), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(7527), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2095), 1, - sym__splattable_type, - STATE(2105), 1, + STATE(8013), 1, sym_splat_type, - STATE(2112), 1, + STATE(8201), 1, sym_proc_type, - STATE(7481), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(10056), 1, + sym__splattable_type, + STATE(10811), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646733,46 +652062,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343108] = 19, + [345744] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7482), 1, + STATE(7528), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(10059), 1, sym__splattable_type, - STATE(10795), 1, + STATE(10812), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646785,46 +652114,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343179] = 19, + [345815] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7483), 1, + STATE(7529), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9624), 1, + STATE(10060), 1, sym__splattable_type, - STATE(12136), 1, + STATE(10814), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646837,46 +652166,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343250] = 19, + [345886] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7484), 1, + STATE(7530), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(10061), 1, sym__splattable_type, - STATE(10799), 1, + STATE(10815), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646889,46 +652218,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343321] = 19, + [345957] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4650), 1, - sym__start_of_tuple_type, - ACTIONS(4652), 1, - sym__start_of_named_tuple_type, - ACTIONS(9843), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9845), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9849), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9851), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9853), 1, - anon_sym_COLON_COLON, - STATE(1993), 1, - sym__type, - STATE(2002), 1, + STATE(7531), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2027), 1, - sym__splattable_type, - STATE(2046), 1, - sym__bare_type, - STATE(2047), 1, + STATE(8013), 1, sym_splat_type, - STATE(2053), 1, + STATE(8201), 1, sym_proc_type, - STATE(7485), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(10062), 1, + sym__splattable_type, + STATE(10816), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9855), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2017), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646941,46 +652270,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343392] = 19, + [346028] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, - anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, - anon_sym_DASH_GT, - ACTIONS(9775), 1, - anon_sym_STAR, - STATE(5084), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7532), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(5085), 1, - sym__type, - STATE(5703), 1, - sym__splattable_type, - STATE(6042), 1, + STATE(8013), 1, sym_splat_type, - STATE(6288), 1, + STATE(8201), 1, sym_proc_type, - STATE(6669), 1, + STATE(8301), 1, + sym__type, + STATE(10063), 1, + sym__splattable_type, + STATE(10817), 1, sym__bare_type, - STATE(7486), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -646993,46 +652322,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343463] = 19, + [346099] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, - anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, - anon_sym_DASH_GT, - ACTIONS(9775), 1, - anon_sym_STAR, - STATE(5084), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7533), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(5085), 1, - sym__type, - STATE(5703), 1, - sym__splattable_type, - STATE(6042), 1, + STATE(8013), 1, sym_splat_type, - STATE(6288), 1, + STATE(8201), 1, sym_proc_type, - STATE(6676), 1, + STATE(8301), 1, + sym__type, + STATE(10064), 1, + sym__splattable_type, + STATE(10818), 1, sym__bare_type, - STATE(7487), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647045,46 +652374,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343534] = 19, + [346170] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(5225), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, - anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, - anon_sym_DASH_GT, - ACTIONS(9779), 1, - anon_sym_STAR, - STATE(2374), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7534), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2382), 1, - sym__type, - STATE(2468), 1, - sym__splattable_type, - STATE(2548), 1, + STATE(8013), 1, sym_splat_type, - STATE(2769), 1, + STATE(8201), 1, sym_proc_type, - STATE(3011), 1, + STATE(8301), 1, + sym__type, + STATE(10065), 1, + sym__splattable_type, + STATE(10819), 1, sym__bare_type, - STATE(7488), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647097,46 +652426,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343605] = 19, + [346241] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9703), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - STATE(7489), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7535), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8281), 1, - sym__type, - STATE(9443), 1, - sym__splattable_type, - STATE(9555), 1, + STATE(8013), 1, sym_splat_type, - STATE(10045), 1, + STATE(8201), 1, sym_proc_type, - STATE(10358), 1, + STATE(8301), 1, + sym__type, + STATE(10066), 1, + sym__splattable_type, + STATE(10820), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647149,46 +652478,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343676] = 19, + [346312] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7490), 1, + STATE(7536), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9960), 1, + STATE(10067), 1, sym__splattable_type, - STATE(10703), 1, + STATE(10821), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647201,46 +652530,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343747] = 19, + [346383] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3015), 1, + sym__constant_segment, + ACTIONS(5279), 1, + anon_sym_typeof, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7491), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, + anon_sym_DASH_GT, + ACTIONS(9913), 1, + anon_sym_STAR, + STATE(2701), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2718), 1, sym__type, - STATE(9984), 1, + STATE(3130), 1, sym__splattable_type, - STATE(10713), 1, + STATE(3331), 1, + sym_splat_type, + STATE(3589), 1, + sym_proc_type, + STATE(3721), 1, sym__bare_type, + STATE(7537), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647253,46 +652582,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343818] = 19, + [346454] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3015), 1, + sym__constant_segment, + ACTIONS(5279), 1, + anon_sym_typeof, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7492), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, + anon_sym_DASH_GT, + ACTIONS(9913), 1, + anon_sym_STAR, + STATE(2701), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2718), 1, sym__type, - STATE(9991), 1, + STATE(3130), 1, sym__splattable_type, - STATE(10720), 1, + STATE(3331), 1, + sym_splat_type, + STATE(3589), 1, + sym_proc_type, + STATE(3736), 1, sym__bare_type, + STATE(7538), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647305,46 +652634,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343889] = 19, + [346525] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3323), 1, + sym__constant_segment, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7493), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, + anon_sym_DASH_GT, + ACTIONS(9829), 1, + anon_sym_STAR, + STATE(5137), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(5179), 1, sym__type, - STATE(9994), 1, + STATE(5839), 1, sym__splattable_type, - STATE(10732), 1, + STATE(6090), 1, + sym_splat_type, + STATE(6379), 1, + sym_proc_type, + STATE(6865), 1, sym__bare_type, + STATE(7539), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647357,46 +652686,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343960] = 19, + [346596] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7494), 1, + STATE(7540), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9999), 1, + STATE(10018), 1, sym__splattable_type, - STATE(10735), 1, + STATE(10837), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647409,46 +652738,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344031] = 19, + [346667] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7495), 1, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7541), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8345), 1, sym__type, - STATE(10000), 1, + STATE(9519), 1, sym__splattable_type, - STATE(10736), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10626), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647461,46 +652790,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344102] = 19, + [346738] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7496), 1, + STATE(7542), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(10001), 1, + STATE(10044), 1, sym__splattable_type, - STATE(10737), 1, + STATE(10846), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647513,46 +652842,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344173] = 19, + [346809] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7497), 1, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7543), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8345), 1, sym__type, - STATE(10002), 1, + STATE(9519), 1, sym__splattable_type, - STATE(10744), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10240), 1, sym__bare_type, + STATE(10308), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647565,46 +652894,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344244] = 19, + [346880] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8008), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7498), 1, + ACTIONS(9907), 1, + anon_sym_DASH_GT, + ACTIONS(9909), 1, + anon_sym_STAR, + STATE(7544), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(7861), 1, sym__type, - STATE(10003), 1, + STATE(7864), 1, + sym_constant, + STATE(8144), 1, sym__splattable_type, - STATE(10746), 1, + STATE(8291), 1, + sym_splat_type, + STATE(8320), 1, sym__bare_type, + STATE(8333), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647617,46 +652946,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344315] = 19, + [346951] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8008), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7499), 1, + ACTIONS(9907), 1, + anon_sym_DASH_GT, + ACTIONS(9909), 1, + anon_sym_STAR, + STATE(7545), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(7861), 1, sym__type, - STATE(10004), 1, + STATE(7864), 1, + sym_constant, + STATE(8144), 1, sym__splattable_type, - STATE(10751), 1, + STATE(8291), 1, + sym_splat_type, + STATE(8323), 1, sym__bare_type, + STATE(8333), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647669,46 +652998,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344386] = 19, + [347022] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7500), 1, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7546), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8345), 1, sym__type, - STATE(10007), 1, + STATE(9519), 1, sym__splattable_type, - STATE(10752), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10659), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647721,46 +653050,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344457] = 19, + [347093] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(3323), 1, sym__constant_segment, ACTIONS(5553), 1, - anon_sym_LPAREN, - ACTIONS(5558), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9829), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(5137), 1, sym_constant, - STATE(5085), 1, + STATE(5179), 1, sym__type, - STATE(5703), 1, + STATE(5839), 1, sym__splattable_type, - STATE(6042), 1, + STATE(6090), 1, sym_splat_type, - STATE(6288), 1, + STATE(6379), 1, sym_proc_type, - STATE(6706), 1, + STATE(6767), 1, sym__bare_type, - STATE(7501), 1, + STATE(7547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647773,46 +653102,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344528] = 19, + [347164] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7502), 1, + STATE(7548), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(10008), 1, + STATE(9518), 1, sym__splattable_type, - STATE(10753), 1, + STATE(11685), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647825,46 +653154,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344599] = 19, + [347235] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7503), 1, + STATE(7549), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(10009), 1, + STATE(9804), 1, sym__splattable_type, - STATE(10754), 1, + STATE(10760), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647877,46 +653206,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344670] = 19, + [347306] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3015), 1, + sym__constant_segment, + ACTIONS(5279), 1, + anon_sym_typeof, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7504), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, + anon_sym_DASH_GT, + ACTIONS(9913), 1, + anon_sym_STAR, + STATE(2701), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2718), 1, sym__type, - STATE(10010), 1, + STATE(3130), 1, sym__splattable_type, - STATE(10755), 1, + STATE(3331), 1, + sym_splat_type, + STATE(3589), 1, + sym_proc_type, + STATE(3739), 1, sym__bare_type, + STATE(7550), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647929,46 +653258,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344741] = 19, + [347377] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3015), 1, + sym__constant_segment, + ACTIONS(5279), 1, + anon_sym_typeof, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7505), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, + anon_sym_DASH_GT, + ACTIONS(9913), 1, + anon_sym_STAR, + STATE(2701), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2718), 1, sym__type, - STATE(10011), 1, + STATE(3130), 1, sym__splattable_type, - STATE(10756), 1, + STATE(3331), 1, + sym_splat_type, + STATE(3589), 1, + sym_proc_type, + STATE(3748), 1, sym__bare_type, + STATE(7551), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -647981,46 +653310,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344812] = 19, + [347448] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7506), 1, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7552), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8345), 1, sym__type, - STATE(10012), 1, + STATE(9519), 1, sym__splattable_type, - STATE(10757), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10455), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648033,46 +653362,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344883] = 19, + [347519] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8008), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7507), 1, + ACTIONS(9907), 1, + anon_sym_DASH_GT, + ACTIONS(9909), 1, + anon_sym_STAR, + STATE(7553), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(7861), 1, sym__type, - STATE(10013), 1, + STATE(7864), 1, + sym_constant, + STATE(8144), 1, sym__splattable_type, - STATE(10758), 1, + STATE(8291), 1, + sym_splat_type, + STATE(8322), 1, sym__bare_type, + STATE(8333), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648085,46 +653414,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344954] = 19, + [347590] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7508), 1, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7554), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(8345), 1, sym__type, - STATE(10014), 1, + STATE(9519), 1, sym__splattable_type, - STATE(10759), 1, + STATE(9655), 1, + sym_splat_type, + STATE(10308), 1, + sym_proc_type, + STATE(10374), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648137,46 +653466,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345025] = 19, + [347661] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3323), 1, + sym__constant_segment, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7509), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, + anon_sym_DASH_GT, + ACTIONS(9829), 1, + anon_sym_STAR, + STATE(5137), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(5179), 1, sym__type, - STATE(10015), 1, + STATE(5839), 1, sym__splattable_type, - STATE(10760), 1, + STATE(6090), 1, + sym_splat_type, + STATE(6379), 1, + sym_proc_type, + STATE(6785), 1, sym__bare_type, + STATE(7555), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648189,46 +653518,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345096] = 19, + [347732] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(3015), 1, sym__constant_segment, - ACTIONS(5553), 1, - anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(5279), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9913), 1, anon_sym_STAR, - STATE(5084), 1, + STATE(2701), 1, sym_constant, - STATE(5085), 1, + STATE(2718), 1, sym__type, - STATE(5703), 1, + STATE(3130), 1, sym__splattable_type, - STATE(6042), 1, + STATE(3331), 1, sym_splat_type, - STATE(6288), 1, + STATE(3589), 1, sym_proc_type, - STATE(6707), 1, + STATE(3749), 1, sym__bare_type, - STATE(7510), 1, + STATE(7556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648241,46 +653570,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345167] = 19, + [347803] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, + ACTIONS(3015), 1, + sym__constant_segment, + ACTIONS(5279), 1, + anon_sym_typeof, + ACTIONS(5281), 1, + anon_sym_COLON_COLON, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(4764), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(5289), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(9911), 1, anon_sym_DASH_GT, - ACTIONS(9833), 1, + ACTIONS(9913), 1, anon_sym_STAR, - ACTIONS(9835), 1, - anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(531), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + STATE(2701), 1, sym_constant, - STATE(2095), 1, + STATE(2718), 1, + sym__type, + STATE(3130), 1, sym__splattable_type, - STATE(2105), 1, + STATE(3331), 1, sym_splat_type, - STATE(2112), 1, + STATE(3589), 1, sym_proc_type, - STATE(7511), 1, + STATE(3898), 1, + sym__bare_type, + STATE(7557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648293,46 +653622,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345238] = 19, + [347874] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(3015), 1, + sym__constant_segment, + ACTIONS(5279), 1, + anon_sym_typeof, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7512), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, + anon_sym_DASH_GT, + ACTIONS(9913), 1, + anon_sym_STAR, + STATE(2701), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8177), 1, - sym_proc_type, - STATE(8271), 1, + STATE(2718), 1, sym__type, - STATE(9962), 1, + STATE(3130), 1, sym__splattable_type, - STATE(10778), 1, + STATE(3331), 1, + sym_splat_type, + STATE(3589), 1, + sym_proc_type, + STATE(3759), 1, sym__bare_type, + STATE(7558), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648345,46 +653674,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345309] = 19, + [347945] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7513), 1, + STATE(7559), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9992), 1, + STATE(9518), 1, sym__splattable_type, - STATE(10786), 1, + STATE(11823), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648397,46 +653726,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345380] = 19, + [348016] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4650), 1, - sym__start_of_tuple_type, - ACTIONS(4652), 1, - sym__start_of_named_tuple_type, - ACTIONS(9843), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9845), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(9849), 1, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9851), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9853), 1, - anon_sym_COLON_COLON, - STATE(1993), 1, - sym__type, - STATE(2002), 1, + STATE(7560), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2027), 1, - sym__splattable_type, - STATE(2037), 1, - sym__bare_type, - STATE(2047), 1, + STATE(8013), 1, sym_splat_type, - STATE(2053), 1, + STATE(8201), 1, sym_proc_type, - STATE(7514), 1, - sym_heredoc_body, + STATE(8301), 1, + sym__type, + STATE(10031), 1, + sym__splattable_type, + STATE(10853), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9855), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2017), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648449,46 +653778,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345451] = 19, + [348087] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(8008), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(8013), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9907), 1, anon_sym_DASH_GT, - ACTIONS(9775), 1, + ACTIONS(9909), 1, anon_sym_STAR, - STATE(5084), 1, - sym_constant, - STATE(5085), 1, + STATE(7561), 1, + sym_heredoc_body, + STATE(7861), 1, sym__type, - STATE(5703), 1, + STATE(7864), 1, + sym_constant, + STATE(8144), 1, sym__splattable_type, - STATE(6042), 1, + STATE(8291), 1, sym_splat_type, - STATE(6288), 1, - sym_proc_type, - STATE(6726), 1, + STATE(8294), 1, sym__bare_type, - STATE(7515), 1, - sym_heredoc_body, + STATE(8333), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648501,46 +653830,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345522] = 19, + [348158] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7516), 1, + STATE(7562), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(11778), 1, + STATE(12133), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648553,46 +653882,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345593] = 19, + [348229] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7517), 1, + STATE(7563), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9979), 1, + STATE(9518), 1, sym__splattable_type, - STATE(10702), 1, + STATE(12155), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648605,46 +653934,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345664] = 19, + [348300] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7518), 1, + STATE(7564), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12084), 1, + STATE(12170), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648657,46 +653986,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345735] = 19, + [348371] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7519), 1, + STATE(7565), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12106), 1, + STATE(12183), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648709,46 +654038,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345806] = 19, + [348442] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7520), 1, + STATE(7566), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12121), 1, + STATE(12196), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648761,46 +654090,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345877] = 19, + [348513] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7521), 1, + STATE(7567), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12134), 1, + STATE(12209), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648813,46 +654142,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345948] = 19, + [348584] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7522), 1, + STATE(7568), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12147), 1, + STATE(12222), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648865,46 +654194,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346019] = 19, + [348655] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7523), 1, + STATE(7569), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12160), 1, + STATE(12235), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648917,46 +654246,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346090] = 19, + [348726] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7524), 1, + STATE(7570), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12173), 1, + STATE(12248), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -648969,46 +654298,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346161] = 19, + [348797] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7525), 1, + STATE(7571), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12186), 1, + STATE(12261), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649021,46 +654350,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346232] = 19, + [348868] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7526), 1, + STATE(7572), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12212), 1, + STATE(12274), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649073,46 +654402,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346303] = 19, + [348939] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7527), 1, + STATE(7573), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12225), 1, + STATE(12287), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649125,46 +654454,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346374] = 19, + [349010] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7528), 1, + STATE(7574), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8177), 1, + STATE(8201), 1, sym_proc_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9376), 1, + STATE(9518), 1, sym__splattable_type, - STATE(12238), 1, + STATE(12296), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649177,46 +654506,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346445] = 19, + [349081] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, - anon_sym_DASH_GT, - ACTIONS(9833), 1, - anon_sym_STAR, - ACTIONS(9835), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(9837), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - STATE(486), 1, - sym__bare_type, - STATE(2051), 1, - sym__type, - STATE(2052), 1, + ACTIONS(9760), 1, + sym__start_of_tuple_type, + ACTIONS(9762), 1, + sym__start_of_named_tuple_type, + ACTIONS(9772), 1, + anon_sym_DASH_GT, + ACTIONS(9774), 1, + anon_sym_STAR, + STATE(7575), 1, + sym_heredoc_body, + STATE(8341), 1, sym_constant, - STATE(2095), 1, + STATE(8345), 1, + sym__type, + STATE(9519), 1, sym__splattable_type, - STATE(2105), 1, + STATE(9655), 1, sym_splat_type, - STATE(2112), 1, + STATE(10308), 1, sym_proc_type, - STATE(7529), 1, - sym_heredoc_body, + STATE(10500), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649229,44 +654558,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346516] = 18, + [349152] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9883), 1, - anon_sym_RBRACE, - ACTIONS(9885), 1, - anon_sym_STAR, - STATE(7530), 1, + ACTIONS(9933), 1, + anon_sym_RPAREN, + STATE(7576), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649279,44 +654608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346584] = 18, + [349220] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9887), 1, + ACTIONS(9935), 1, anon_sym_RBRACE, - STATE(7531), 1, + ACTIONS(9937), 1, + anon_sym_STAR, + STATE(7577), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649329,44 +654658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346652] = 18, + [349288] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9889), 1, + ACTIONS(9939), 1, anon_sym_RBRACE, - STATE(7532), 1, + STATE(7578), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649379,44 +654708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346720] = 18, + [349356] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9891), 1, + ACTIONS(9941), 1, anon_sym_RBRACE, - STATE(7533), 1, + STATE(7579), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649429,44 +654758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346788] = 18, + [349424] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9893), 1, + ACTIONS(9943), 1, anon_sym_RBRACE, - STATE(7534), 1, + STATE(7580), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649479,44 +654808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346856] = 18, + [349492] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9895), 1, - anon_sym_RBRACE, - STATE(7535), 1, + ACTIONS(9945), 1, + anon_sym_RPAREN, + STATE(7581), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649529,44 +654858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346924] = 18, + [349560] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9897), 1, - anon_sym_RBRACE, - STATE(7536), 1, + ACTIONS(9947), 1, + anon_sym_RPAREN, + STATE(7582), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649579,44 +654908,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346992] = 18, + [349628] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9899), 1, + ACTIONS(9949), 1, anon_sym_RBRACE, - STATE(7537), 1, + STATE(7583), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649629,44 +654958,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347060] = 18, + [349696] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9901), 1, + ACTIONS(9951), 1, anon_sym_RBRACE, - STATE(7538), 1, + STATE(7584), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649679,44 +655008,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347128] = 18, + [349764] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9903), 1, + ACTIONS(9953), 1, anon_sym_RBRACE, - STATE(7539), 1, + STATE(7585), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649729,44 +655058,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347196] = 18, + [349832] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9905), 1, - anon_sym_RBRACE, - STATE(7540), 1, + ACTIONS(9955), 1, + anon_sym_RPAREN, + STATE(7586), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649779,44 +655108,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347264] = 18, + [349900] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9907), 1, + ACTIONS(9957), 1, anon_sym_RBRACE, - STATE(7541), 1, + STATE(7587), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649829,44 +655158,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347332] = 18, + [349968] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9909), 1, - anon_sym_RBRACE, - STATE(7542), 1, + ACTIONS(9959), 1, + anon_sym_RPAREN, + STATE(7588), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649879,44 +655208,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347400] = 18, + [350036] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9911), 1, + ACTIONS(9961), 1, anon_sym_RBRACE, - STATE(7543), 1, + STATE(7589), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649929,44 +655258,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347468] = 18, + [350104] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9913), 1, + ACTIONS(9963), 1, anon_sym_RBRACE, - STATE(7544), 1, + STATE(7590), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -649979,44 +655308,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347536] = 18, + [350172] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9915), 1, + ACTIONS(9965), 1, anon_sym_RBRACE, - STATE(7545), 1, + STATE(7591), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650029,44 +655358,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347604] = 18, + [350240] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9917), 1, - anon_sym_RBRACE, - STATE(7546), 1, + ACTIONS(9967), 1, + anon_sym_RPAREN, + STATE(7592), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650079,44 +655408,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347672] = 18, + [350308] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9919), 1, - anon_sym_RBRACE, - STATE(7547), 1, + ACTIONS(9969), 1, + anon_sym_RPAREN, + STATE(7593), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650129,44 +655458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347740] = 18, + [350376] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9921), 1, - anon_sym_RBRACE, - STATE(7548), 1, + ACTIONS(9971), 1, + anon_sym_RPAREN, + STATE(7594), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650179,44 +655508,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347808] = 18, + [350444] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9923), 1, + ACTIONS(9973), 1, anon_sym_RBRACE, - STATE(7549), 1, + STATE(7595), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650229,44 +655558,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347876] = 18, + [350512] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9925), 1, - anon_sym_RBRACE, - STATE(7550), 1, + ACTIONS(9975), 1, + anon_sym_RPAREN, + STATE(7596), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650279,44 +655608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347944] = 18, + [350580] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9927), 1, + ACTIONS(9977), 1, anon_sym_RBRACE, - STATE(7551), 1, + STATE(7597), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650329,44 +655658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348012] = 18, + [350648] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9929), 1, + ACTIONS(9979), 1, anon_sym_RBRACE, - STATE(7552), 1, + STATE(7598), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650379,44 +655708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348080] = 18, + [350716] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9931), 1, + ACTIONS(9981), 1, anon_sym_RBRACE, - STATE(7553), 1, + STATE(7599), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650429,44 +655758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348148] = 18, + [350784] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9933), 1, - anon_sym_RPAREN, - STATE(7554), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(9983), 1, + anon_sym_RBRACE, + STATE(7600), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650479,44 +655808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348216] = 18, + [350852] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9935), 1, + ACTIONS(9985), 1, anon_sym_RPAREN, - STATE(7555), 1, + STATE(7601), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650529,44 +655858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348284] = 18, + [350920] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(9987), 1, anon_sym_RBRACE, - STATE(7556), 1, + STATE(7602), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650579,44 +655908,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348352] = 18, + [350988] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9939), 1, + ACTIONS(9989), 1, anon_sym_RPAREN, - STATE(7557), 1, + STATE(7603), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650629,44 +655958,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348420] = 18, + [351056] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9941), 1, + ACTIONS(9991), 1, anon_sym_RBRACE, - STATE(7558), 1, + STATE(7604), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650679,44 +656008,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348488] = 18, + [351124] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9943), 1, + ACTIONS(9993), 1, anon_sym_RBRACE, - STATE(7559), 1, + STATE(7605), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650729,44 +656058,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348556] = 18, + [351192] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9945), 1, + ACTIONS(9995), 1, anon_sym_RPAREN, - STATE(7560), 1, + STATE(7606), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650779,44 +656108,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348624] = 18, + [351260] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9947), 1, - anon_sym_RPAREN, - STATE(7561), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(9997), 1, + anon_sym_RBRACE, + STATE(7607), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650829,44 +656158,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348692] = 18, + [351328] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9949), 1, + ACTIONS(9999), 1, anon_sym_RPAREN, - STATE(7562), 1, + STATE(7608), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650879,44 +656208,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348760] = 18, + [351396] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9951), 1, + ACTIONS(10001), 1, anon_sym_RPAREN, - STATE(7563), 1, + STATE(7609), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650929,44 +656258,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348828] = 18, + [351464] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9953), 1, - anon_sym_RBRACE, - STATE(7564), 1, + ACTIONS(10003), 1, + anon_sym_RPAREN, + STATE(7610), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -650979,44 +656308,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348896] = 18, + [351532] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9955), 1, - anon_sym_RBRACE, - STATE(7565), 1, + ACTIONS(10005), 1, + anon_sym_RPAREN, + STATE(7611), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651029,44 +656358,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348964] = 18, + [351600] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9957), 1, + ACTIONS(10007), 1, anon_sym_RPAREN, - STATE(7566), 1, + STATE(7612), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651079,44 +656408,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349032] = 18, + [351668] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9959), 1, + ACTIONS(10009), 1, anon_sym_RPAREN, - STATE(7567), 1, + STATE(7613), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651129,44 +656458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349100] = 18, + [351736] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9961), 1, + ACTIONS(10011), 1, anon_sym_RPAREN, - STATE(7568), 1, + STATE(7614), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651179,44 +656508,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349168] = 18, + [351804] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9963), 1, - anon_sym_RBRACE, - STATE(7569), 1, + ACTIONS(10013), 1, + anon_sym_RPAREN, + STATE(7615), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651229,44 +656558,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349236] = 18, + [351872] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9965), 1, - anon_sym_RBRACE, - STATE(7570), 1, + ACTIONS(10015), 1, + anon_sym_RPAREN, + STATE(7616), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651279,44 +656608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349304] = 18, + [351940] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9967), 1, + ACTIONS(10017), 1, anon_sym_RPAREN, - STATE(7571), 1, + STATE(7617), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651329,44 +656658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349372] = 18, + [352008] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9969), 1, + ACTIONS(10019), 1, anon_sym_RPAREN, - STATE(7572), 1, + STATE(7618), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651379,44 +656708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349440] = 18, + [352076] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9971), 1, - anon_sym_RBRACE, - STATE(7573), 1, + ACTIONS(10021), 1, + anon_sym_RPAREN, + STATE(7619), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651429,44 +656758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349508] = 18, + [352144] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9973), 1, + ACTIONS(10023), 1, anon_sym_RPAREN, - STATE(7574), 1, + STATE(7620), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651479,44 +656808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349576] = 18, + [352212] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9975), 1, - anon_sym_RBRACE, - STATE(7575), 1, + ACTIONS(10025), 1, + anon_sym_RPAREN, + STATE(7621), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651529,44 +656858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349644] = 18, + [352280] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9977), 1, - anon_sym_RBRACE, - STATE(7576), 1, + ACTIONS(10027), 1, + anon_sym_RPAREN, + STATE(7622), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651579,44 +656908,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349712] = 18, + [352348] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9979), 1, + ACTIONS(10029), 1, anon_sym_RPAREN, - STATE(7577), 1, + STATE(7623), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651629,44 +656958,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349780] = 18, + [352416] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9981), 1, - anon_sym_RBRACE, - STATE(7578), 1, + ACTIONS(10031), 1, + anon_sym_RPAREN, + STATE(7624), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651679,44 +657008,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349848] = 18, + [352484] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9983), 1, + ACTIONS(10033), 1, anon_sym_RPAREN, - STATE(7579), 1, + STATE(7625), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651729,44 +657058,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349916] = 18, + [352552] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9985), 1, - anon_sym_RBRACE, - STATE(7580), 1, + ACTIONS(10035), 1, + anon_sym_RPAREN, + STATE(7626), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651779,44 +657108,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349984] = 18, + [352620] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9987), 1, - anon_sym_RBRACE, - STATE(7581), 1, + ACTIONS(10037), 1, + anon_sym_RPAREN, + STATE(7627), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651829,44 +657158,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350052] = 18, + [352688] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9989), 1, + ACTIONS(10039), 1, anon_sym_RPAREN, - STATE(7582), 1, + STATE(7628), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651879,44 +657208,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350120] = 18, + [352756] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9991), 1, + ACTIONS(10041), 1, anon_sym_RPAREN, - STATE(7583), 1, + STATE(7629), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651929,44 +657258,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350188] = 18, + [352824] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(9993), 1, - anon_sym_RBRACE, - STATE(7584), 1, + ACTIONS(10043), 1, + anon_sym_RPAREN, + STATE(7630), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -651979,44 +657308,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350256] = 18, + [352892] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9995), 1, + ACTIONS(10045), 1, anon_sym_RPAREN, - STATE(7585), 1, + STATE(7631), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652029,44 +657358,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350324] = 18, + [352960] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(9997), 1, + ACTIONS(10047), 1, anon_sym_RBRACE, - STATE(7586), 1, + STATE(7632), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652079,44 +657408,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350392] = 18, + [353028] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9999), 1, + ACTIONS(10049), 1, anon_sym_RPAREN, - STATE(7587), 1, + STATE(7633), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652129,44 +657458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350460] = 18, + [353096] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(10001), 1, + ACTIONS(10051), 1, anon_sym_RBRACE, - STATE(7588), 1, + STATE(7634), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652179,94 +657508,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350528] = 18, + [353164] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10003), 1, - anon_sym_RPAREN, - STATE(7589), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8271), 1, - sym__type, - STATE(9863), 1, - sym__splattable_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - STATE(7794), 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, - [350596] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(10005), 1, - anon_sym_RPAREN, - STATE(7590), 1, + ACTIONS(10053), 1, + anon_sym_RBRACE, + STATE(7635), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652279,44 +657558,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350664] = 18, + [353232] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10007), 1, + ACTIONS(10055), 1, anon_sym_RPAREN, - STATE(7591), 1, + STATE(7636), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652329,44 +657608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350732] = 18, + [353300] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(10009), 1, + ACTIONS(10057), 1, anon_sym_RBRACE, - STATE(7592), 1, + STATE(7637), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652379,44 +657658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350800] = 18, + [353368] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10011), 1, - anon_sym_RPAREN, - STATE(7593), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10059), 1, + anon_sym_RBRACE, + STATE(7638), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652429,44 +657708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350868] = 18, + [353436] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10013), 1, - anon_sym_RPAREN, - STATE(7594), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10061), 1, + anon_sym_RBRACE, + STATE(7639), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652479,44 +657758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350936] = 18, + [353504] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10015), 1, - anon_sym_RPAREN, - STATE(7595), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10063), 1, + anon_sym_RBRACE, + STATE(7640), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652529,44 +657808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351004] = 18, + [353572] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10017), 1, + ACTIONS(10065), 1, anon_sym_RPAREN, - STATE(7596), 1, + STATE(7641), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652579,44 +657858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351072] = 18, + [353640] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10019), 1, - anon_sym_RPAREN, - STATE(7597), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10067), 1, + anon_sym_RBRACE, + STATE(7642), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652629,44 +657908,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351140] = 18, + [353708] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10021), 1, - anon_sym_RPAREN, - STATE(7598), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10069), 1, + anon_sym_RBRACE, + STATE(7643), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652679,44 +657958,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351208] = 18, + [353776] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10023), 1, - anon_sym_RPAREN, - STATE(7599), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10071), 1, + anon_sym_RBRACE, + STATE(7644), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652729,44 +658008,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351276] = 18, + [353844] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10025), 1, - anon_sym_RPAREN, - STATE(7600), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10073), 1, + anon_sym_RBRACE, + STATE(7645), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652779,44 +658058,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351344] = 18, + [353912] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10027), 1, - anon_sym_RPAREN, - STATE(7601), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10075), 1, + anon_sym_RBRACE, + STATE(7646), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652829,44 +658108,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351412] = 18, + [353980] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10029), 1, - anon_sym_RPAREN, - STATE(7602), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10077), 1, + anon_sym_RBRACE, + STATE(7647), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652879,44 +658158,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351480] = 18, + [354048] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10031), 1, - anon_sym_RPAREN, - STATE(7603), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10079), 1, + anon_sym_RBRACE, + STATE(7648), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652929,44 +658208,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351548] = 18, + [354116] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10033), 1, - anon_sym_RPAREN, - STATE(7604), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10081), 1, + anon_sym_RBRACE, + STATE(7649), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -652979,44 +658258,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351616] = 18, + [354184] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10035), 1, - anon_sym_RPAREN, - STATE(7605), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10083), 1, + anon_sym_RBRACE, + STATE(7650), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653029,44 +658308,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351684] = 18, + [354252] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10037), 1, + ACTIONS(10085), 1, anon_sym_RPAREN, - STATE(7606), 1, + STATE(7651), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653079,44 +658358,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351752] = 18, + [354320] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10039), 1, - anon_sym_RPAREN, - STATE(7607), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10087), 1, + anon_sym_RBRACE, + STATE(7652), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653129,44 +658408,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351820] = 18, + [354388] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10041), 1, - anon_sym_RPAREN, - STATE(7608), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10089), 1, + anon_sym_RBRACE, + STATE(7653), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653179,44 +658458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351888] = 18, + [354456] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10043), 1, - anon_sym_RPAREN, - STATE(7609), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10091), 1, + anon_sym_RBRACE, + STATE(7654), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653229,44 +658508,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351956] = 18, + [354524] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10045), 1, - anon_sym_RPAREN, - STATE(7610), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10093), 1, + anon_sym_RBRACE, + STATE(7655), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653279,44 +658558,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352024] = 18, + [354592] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10047), 1, + ACTIONS(10095), 1, anon_sym_RPAREN, - STATE(7611), 1, + STATE(7656), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653329,44 +658608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352092] = 18, + [354660] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10049), 1, + ACTIONS(10097), 1, anon_sym_RPAREN, - STATE(7612), 1, + STATE(7657), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653379,44 +658658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352160] = 18, + [354728] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10051), 1, - anon_sym_RPAREN, - STATE(7613), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + ACTIONS(10099), 1, + anon_sym_RBRACE, + STATE(7658), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653429,44 +658708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352228] = 18, + [354796] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10053), 1, + ACTIONS(10101), 1, anon_sym_RPAREN, - STATE(7614), 1, + STATE(7659), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653479,44 +658758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352296] = 18, + [354864] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(8572), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(8574), 1, + ACTIONS(8673), 1, anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(10055), 1, + ACTIONS(10103), 1, anon_sym_RPAREN, - STATE(7615), 1, + STATE(7660), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653529,44 +658808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352364] = 18, + [354932] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(10057), 1, + ACTIONS(10105), 1, anon_sym_RBRACE, - STATE(7616), 1, + STATE(7661), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653579,44 +658858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352432] = 18, + [355000] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - ACTIONS(10059), 1, + ACTIONS(10107), 1, anon_sym_RBRACE, - STATE(7617), 1, + STATE(7662), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653629,44 +658908,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352500] = 18, + [355068] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - ACTIONS(10061), 1, - anon_sym_RBRACE, - STATE(7618), 1, + ACTIONS(10109), 1, + anon_sym_RPAREN, + STATE(7663), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(9863), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653679,42 +658958,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352568] = 17, + [355136] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7619), 1, + ACTIONS(10111), 1, + anon_sym_RBRACE, + STATE(7664), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10359), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653727,42 +659008,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352633] = 17, + [355204] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7620), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, + anon_sym_STAR, + STATE(7665), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8271), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(10669), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653775,42 +659056,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352698] = 17, + [355269] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7621), 1, + STATE(7666), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10694), 1, + STATE(10432), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653823,49 +659104,49 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352763] = 21, + [355334] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10063), 1, + ACTIONS(10113), 1, anon_sym_SEMI, - ACTIONS(10065), 1, + ACTIONS(10115), 1, anon_sym_end, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10119), 1, anon_sym_struct, - ACTIONS(10071), 1, + ACTIONS(10121), 1, anon_sym_enum, - ACTIONS(10073), 1, + ACTIONS(10123), 1, anon_sym_fun, - ACTIONS(10075), 1, + ACTIONS(10125), 1, anon_sym_type, - ACTIONS(10077), 1, + ACTIONS(10127), 1, anon_sym_union, - ACTIONS(10079), 1, + ACTIONS(10129), 1, anon_sym_DOLLAR, - ACTIONS(10081), 1, + ACTIONS(10131), 1, sym_private, - ACTIONS(10083), 1, + ACTIONS(10133), 1, anon_sym_alias, - STATE(7622), 1, + STATE(7667), 1, sym_heredoc_body, - STATE(7651), 1, + STATE(7697), 1, aux_sym__lib_statements_repeat1, - STATE(9836), 1, + STATE(10001), 1, sym__lib_statement, - STATE(11215), 1, + STATE(12131), 1, sym_constant, - STATE(11902), 1, + STATE(12212), 1, sym__lib_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10330), 9, + STATE(10618), 9, sym_annotation, sym_enum_def, sym_fun_def, @@ -653875,90 +659156,94 @@ static const uint16_t ts_small_parse_table[] = { sym_global_var, sym_const_assign, sym_alias, - [352836] = 17, + [355407] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - STATE(7623), 1, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10113), 1, + anon_sym_SEMI, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10119), 1, + anon_sym_struct, + ACTIONS(10121), 1, + anon_sym_enum, + ACTIONS(10123), 1, + anon_sym_fun, + ACTIONS(10125), 1, + anon_sym_type, + ACTIONS(10127), 1, + anon_sym_union, + ACTIONS(10129), 1, + anon_sym_DOLLAR, + ACTIONS(10131), 1, + sym_private, + ACTIONS(10133), 1, + anon_sym_alias, + ACTIONS(10135), 1, + anon_sym_end, + STATE(7668), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7697), 1, + aux_sym__lib_statements_repeat1, + STATE(10001), 1, + sym__lib_statement, + STATE(11021), 1, + sym__lib_statements, + STATE(12131), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8828), 1, - sym__type, - STATE(10031), 1, - sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - STATE(7794), 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, - [352901] = 17, + STATE(10618), 9, + sym_annotation, + sym_enum_def, + sym_fun_def, + sym_type_def, + sym_c_struct_def, + sym_union_def, + sym_global_var, + sym_const_assign, + sym_alias, + [355480] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7624), 1, + STATE(7669), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10200), 1, + STATE(10716), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -653971,42 +659256,40 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352966] = 17, + [355545] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9800), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9802), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - STATE(7625), 1, + STATE(7670), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8828), 1, + STATE(8703), 1, sym__type, - STATE(10346), 1, - sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + ACTIONS(4722), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654019,42 +659302,40 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353031] = 17, + [355606] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9800), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9802), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - STATE(7626), 1, + STATE(7671), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(7967), 1, - sym_splat_type, - STATE(8828), 1, + STATE(8759), 1, sym__type, - STATE(10419), 1, - sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + ACTIONS(4700), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654067,49 +659348,49 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353096] = 21, + [355667] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10063), 1, + ACTIONS(10113), 1, anon_sym_SEMI, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10119), 1, anon_sym_struct, - ACTIONS(10071), 1, + ACTIONS(10121), 1, anon_sym_enum, - ACTIONS(10073), 1, + ACTIONS(10123), 1, anon_sym_fun, - ACTIONS(10075), 1, + ACTIONS(10125), 1, anon_sym_type, - ACTIONS(10077), 1, + ACTIONS(10127), 1, anon_sym_union, - ACTIONS(10079), 1, + ACTIONS(10129), 1, anon_sym_DOLLAR, - ACTIONS(10081), 1, + ACTIONS(10131), 1, sym_private, - ACTIONS(10083), 1, + ACTIONS(10133), 1, anon_sym_alias, - ACTIONS(10085), 1, + ACTIONS(10137), 1, anon_sym_end, - STATE(7627), 1, + STATE(7672), 1, sym_heredoc_body, - STATE(7651), 1, + STATE(7697), 1, aux_sym__lib_statements_repeat1, - STATE(9836), 1, + STATE(10001), 1, sym__lib_statement, - STATE(11215), 1, - sym_constant, - STATE(12303), 1, + STATE(11941), 1, sym__lib_statements, + STATE(12131), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10330), 9, + STATE(10618), 9, sym_annotation, sym_enum_def, sym_fun_def, @@ -654119,42 +659400,42 @@ static const uint16_t ts_small_parse_table[] = { sym_global_var, sym_const_assign, sym_alias, - [353169] = 17, + [355740] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7628), 1, + STATE(7673), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10513), 1, + STATE(10403), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654167,42 +659448,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353234] = 17, + [355805] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7629), 1, + STATE(7674), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10598), 1, + STATE(10521), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654215,42 +659496,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353299] = 17, + [355870] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7630), 1, + STATE(7675), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10035), 1, + STATE(10578), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654263,42 +659544,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353364] = 17, + [355935] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7631), 1, + STATE(7676), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10624), 1, + STATE(10727), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654311,42 +659592,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353429] = 17, + [356000] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7632), 1, + STATE(7677), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(9863), 1, + STATE(10560), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654359,42 +659640,94 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353494] = 17, + [356065] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10113), 1, + anon_sym_SEMI, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10119), 1, + anon_sym_struct, + ACTIONS(10121), 1, + anon_sym_enum, + ACTIONS(10123), 1, + anon_sym_fun, + ACTIONS(10125), 1, + anon_sym_type, + ACTIONS(10127), 1, + anon_sym_union, + ACTIONS(10129), 1, + anon_sym_DOLLAR, + ACTIONS(10131), 1, + sym_private, + ACTIONS(10133), 1, + anon_sym_alias, + ACTIONS(10139), 1, + anon_sym_end, + STATE(7678), 1, + sym_heredoc_body, + STATE(7697), 1, + aux_sym__lib_statements_repeat1, + STATE(10001), 1, + sym__lib_statement, + STATE(11817), 1, + sym__lib_statements, + STATE(12131), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10618), 9, + sym_annotation, + sym_enum_def, + sym_fun_def, + sym_type_def, + sym_c_struct_def, + sym_union_def, + sym_global_var, + sym_const_assign, + sym_alias, + [356138] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7633), 1, + STATE(7679), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10188), 1, + STATE(10746), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654407,42 +659740,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353559] = 17, + [356203] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7634), 1, + STATE(7680), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10441), 1, + STATE(10079), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654455,42 +659788,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353624] = 17, + [356268] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7635), 1, + STATE(7681), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10342), 1, + STATE(10528), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654503,42 +659836,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353689] = 17, + [356333] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7636), 1, + STATE(7682), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10488), 1, + STATE(10583), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654551,42 +659884,90 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353754] = 17, + [356398] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9937), 1, + anon_sym_STAR, + STATE(7683), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(9026), 1, + sym__type, + STATE(10407), 1, + sym__splattable_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + STATE(7836), 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, + [356463] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7637), 1, + STATE(7684), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10533), 1, + STATE(10144), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654599,42 +659980,90 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353819] = 17, + [356528] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9937), 1, + anon_sym_STAR, + STATE(7685), 1, + sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(8013), 1, + sym_splat_type, + STATE(9026), 1, + sym__type, + STATE(10726), 1, + sym__splattable_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + STATE(7836), 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, + [356593] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8679), 1, + anon_sym_COLON_COLON, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7638), 1, + STATE(7686), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10593), 1, + STATE(10737), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654647,42 +660076,94 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353884] = 17, + [356658] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10113), 1, + anon_sym_SEMI, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10119), 1, + anon_sym_struct, + ACTIONS(10121), 1, + anon_sym_enum, + ACTIONS(10123), 1, + anon_sym_fun, + ACTIONS(10125), 1, + anon_sym_type, + ACTIONS(10127), 1, + anon_sym_union, + ACTIONS(10129), 1, + anon_sym_DOLLAR, + ACTIONS(10131), 1, + sym_private, + ACTIONS(10133), 1, + anon_sym_alias, + ACTIONS(10141), 1, + anon_sym_end, + STATE(7687), 1, + sym_heredoc_body, + STATE(7697), 1, + aux_sym__lib_statements_repeat1, + STATE(10001), 1, + sym__lib_statement, + STATE(11910), 1, + sym__lib_statements, + STATE(12131), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10618), 9, + sym_annotation, + sym_enum_def, + sym_fun_def, + sym_type_def, + sym_c_struct_def, + sym_union_def, + sym_global_var, + sym_const_assign, + sym_alias, + [356731] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7639), 1, + STATE(7688), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10627), 1, + STATE(10356), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654695,42 +660176,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353949] = 17, + [356796] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7640), 1, + STATE(7689), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10061), 1, + STATE(10540), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654743,42 +660224,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354014] = 17, + [356861] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8667), 1, + anon_sym_LPAREN, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8673), 1, + anon_sym_STAR, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - ACTIONS(9885), 1, - anon_sym_STAR, - STATE(7641), 1, + STATE(7690), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(8301), 1, sym__type, - STATE(10649), 1, + STATE(9918), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654791,94 +660272,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354079] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10063), 1, - anon_sym_SEMI, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10069), 1, - anon_sym_struct, - ACTIONS(10071), 1, - anon_sym_enum, - ACTIONS(10073), 1, - anon_sym_fun, - ACTIONS(10075), 1, - anon_sym_type, - ACTIONS(10077), 1, - anon_sym_union, - ACTIONS(10079), 1, - anon_sym_DOLLAR, - ACTIONS(10081), 1, - sym_private, - ACTIONS(10083), 1, - anon_sym_alias, - ACTIONS(10087), 1, - anon_sym_end, - STATE(7642), 1, - sym_heredoc_body, - STATE(7651), 1, - aux_sym__lib_statements_repeat1, - STATE(9836), 1, - sym__lib_statement, - STATE(10960), 1, - sym__lib_statements, - STATE(11215), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10330), 9, - sym_annotation, - sym_enum_def, - sym_fun_def, - sym_type_def, - sym_c_struct_def, - sym_union_def, - sym_global_var, - sym_const_assign, - sym_alias, - [354152] = 17, + [356926] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7643), 1, + STATE(7691), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10663), 1, + STATE(10486), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654891,42 +660320,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354217] = 17, + [356991] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7644), 1, + STATE(7692), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10675), 1, + STATE(10224), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -654939,92 +660368,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354282] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10063), 1, - anon_sym_SEMI, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10069), 1, - anon_sym_struct, - ACTIONS(10071), 1, - anon_sym_enum, - ACTIONS(10073), 1, - anon_sym_fun, - ACTIONS(10075), 1, - anon_sym_type, - ACTIONS(10077), 1, - anon_sym_union, - ACTIONS(10079), 1, - anon_sym_DOLLAR, - ACTIONS(10081), 1, - sym_private, - ACTIONS(10083), 1, - anon_sym_alias, - ACTIONS(10089), 1, - anon_sym_end, - STATE(7645), 1, - sym_heredoc_body, - STATE(7651), 1, - aux_sym__lib_statements_repeat1, - STATE(9836), 1, - sym__lib_statement, - STATE(11215), 1, - sym_constant, - STATE(12120), 1, - sym__lib_statements, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10330), 9, - sym_annotation, - sym_enum_def, - sym_fun_def, - sym_type_def, - sym_c_struct_def, - sym_union_def, - sym_global_var, - sym_const_assign, - sym_alias, - [354355] = 15, + [357056] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9730), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9732), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - STATE(7646), 1, + ACTIONS(9937), 1, + anon_sym_STAR, + STATE(7693), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8578), 1, + STATE(8013), 1, + sym_splat_type, + STATE(9026), 1, sym__type, + STATE(9918), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4700), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655037,94 +660416,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354416] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10063), 1, - anon_sym_SEMI, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10069), 1, - anon_sym_struct, - ACTIONS(10071), 1, - anon_sym_enum, - ACTIONS(10073), 1, - anon_sym_fun, - ACTIONS(10075), 1, - anon_sym_type, - ACTIONS(10077), 1, - anon_sym_union, - ACTIONS(10079), 1, - anon_sym_DOLLAR, - ACTIONS(10081), 1, - sym_private, - ACTIONS(10083), 1, - anon_sym_alias, - ACTIONS(10091), 1, - anon_sym_end, - STATE(7647), 1, - sym_heredoc_body, - STATE(7651), 1, - aux_sym__lib_statements_repeat1, - STATE(9836), 1, - sym__lib_statement, - STATE(11215), 1, - sym_constant, - STATE(11354), 1, - sym__lib_statements, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10330), 9, - sym_annotation, - sym_enum_def, - sym_fun_def, - sym_type_def, - sym_c_struct_def, - sym_union_def, - sym_global_var, - sym_const_assign, - sym_alias, - [354489] = 17, + [357121] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(9885), 1, + ACTIONS(9937), 1, anon_sym_STAR, - STATE(7648), 1, + STATE(7694), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(7967), 1, + STATE(8013), 1, sym_splat_type, - STATE(8828), 1, + STATE(9026), 1, sym__type, - STATE(10037), 1, + STATE(10692), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655137,49 +660464,49 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354554] = 21, + [357186] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10063), 1, + ACTIONS(10113), 1, anon_sym_SEMI, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10119), 1, anon_sym_struct, - ACTIONS(10071), 1, + ACTIONS(10121), 1, anon_sym_enum, - ACTIONS(10073), 1, + ACTIONS(10123), 1, anon_sym_fun, - ACTIONS(10075), 1, + ACTIONS(10125), 1, anon_sym_type, - ACTIONS(10077), 1, + ACTIONS(10127), 1, anon_sym_union, - ACTIONS(10079), 1, + ACTIONS(10129), 1, anon_sym_DOLLAR, - ACTIONS(10081), 1, + ACTIONS(10131), 1, sym_private, - ACTIONS(10083), 1, + ACTIONS(10133), 1, anon_sym_alias, - ACTIONS(10093), 1, + ACTIONS(10143), 1, anon_sym_end, - STATE(7649), 1, + STATE(7695), 1, sym_heredoc_body, - STATE(7651), 1, + STATE(7697), 1, aux_sym__lib_statements_repeat1, - STATE(9836), 1, + STATE(10001), 1, sym__lib_statement, - STATE(11174), 1, + STATE(11990), 1, sym__lib_statements, - STATE(11215), 1, + STATE(12131), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10330), 9, + STATE(10618), 9, sym_annotation, sym_enum_def, sym_fun_def, @@ -655189,40 +660516,42 @@ static const uint16_t ts_small_parse_table[] = { sym_global_var, sym_const_assign, sym_alias, - [354627] = 15, + [357259] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9730), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9732), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - STATE(7650), 1, + ACTIONS(9937), 1, + anon_sym_STAR, + STATE(7696), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8719), 1, + STATE(8013), 1, + sym_splat_type, + STATE(9026), 1, sym__type, + STATE(10195), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - ACTIONS(4722), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655235,96 +660564,47 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354688] = 20, + [357324] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10063), 1, + ACTIONS(10113), 1, anon_sym_SEMI, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10119), 1, anon_sym_struct, - ACTIONS(10071), 1, + ACTIONS(10121), 1, anon_sym_enum, - ACTIONS(10073), 1, + ACTIONS(10123), 1, anon_sym_fun, - ACTIONS(10075), 1, + ACTIONS(10125), 1, anon_sym_type, - ACTIONS(10077), 1, + ACTIONS(10127), 1, anon_sym_union, - ACTIONS(10079), 1, + ACTIONS(10129), 1, anon_sym_DOLLAR, - ACTIONS(10081), 1, + ACTIONS(10131), 1, sym_private, - ACTIONS(10083), 1, + ACTIONS(10133), 1, anon_sym_alias, - ACTIONS(10095), 1, + ACTIONS(10145), 1, anon_sym_end, - STATE(7651), 1, + STATE(7697), 1, sym_heredoc_body, - STATE(7652), 1, + STATE(7701), 1, aux_sym__lib_statements_repeat1, - STATE(9949), 1, - sym__lib_statement, - STATE(11215), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10330), 9, - sym_annotation, - sym_enum_def, - sym_fun_def, - sym_type_def, - sym_c_struct_def, - sym_union_def, - sym_global_var, - sym_const_assign, - sym_alias, - [354758] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10097), 1, - anon_sym_SEMI, - ACTIONS(10100), 1, - anon_sym_end, - ACTIONS(10102), 1, - anon_sym_AT_LBRACK, - ACTIONS(10105), 1, - anon_sym_struct, - ACTIONS(10108), 1, - anon_sym_enum, - ACTIONS(10111), 1, - anon_sym_fun, - ACTIONS(10114), 1, - anon_sym_type, - ACTIONS(10117), 1, - anon_sym_union, - ACTIONS(10120), 1, - anon_sym_DOLLAR, - ACTIONS(10123), 1, - sym__constant_segment, - ACTIONS(10126), 1, - anon_sym_COLON_COLON, - ACTIONS(10129), 1, - sym_private, - ACTIONS(10132), 1, - anon_sym_alias, - STATE(10547), 1, + STATE(10000), 1, sym__lib_statement, - STATE(11215), 1, + STATE(12131), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7652), 2, - sym_heredoc_body, - aux_sym__lib_statements_repeat1, - STATE(10330), 9, + STATE(10618), 9, sym_annotation, sym_enum_def, sym_fun_def, @@ -655334,64 +660614,18 @@ static const uint16_t ts_small_parse_table[] = { sym_global_var, sym_const_assign, sym_alias, - [354826] = 15, + [357394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(10147), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, - sym__start_of_tuple_type, - ACTIONS(9749), 1, - sym__start_of_named_tuple_type, - ACTIONS(9757), 1, - anon_sym_LPAREN, - ACTIONS(9759), 1, - anon_sym_DASH_GT, - STATE(7653), 1, - sym_heredoc_body, - STATE(8399), 1, - sym_constant, - STATE(8781), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4700), 2, - sym__start_of_brace_block, - anon_sym_do, - ACTIONS(9745), 2, - sym_self, - sym_underscore_type, - STATE(8598), 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, - [354886] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10135), 1, - anon_sym_COLON_COLON, - STATE(7654), 1, + STATE(7698), 2, sym_heredoc_body, - STATE(7655), 1, aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4857), 23, + ACTIONS(4840), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655415,19 +660649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [354928] = 6, + [357434] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10135), 1, + ACTIONS(10150), 1, anon_sym_COLON_COLON, - STATE(7655), 1, - sym_heredoc_body, - STATE(7660), 1, + STATE(7698), 1, aux_sym_constant_repeat1, + STATE(7699), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 23, + ACTIONS(4853), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655451,19 +660685,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [354970] = 6, + [357476] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10135), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - STATE(7656), 1, + ACTIONS(8685), 1, + sym__start_of_tuple_type, + ACTIONS(8687), 1, + sym__start_of_named_tuple_type, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + ACTIONS(10152), 1, + anon_sym_RPAREN, + ACTIONS(10154), 1, + anon_sym_DOT_DOT_DOT, + STATE(7700), 1, sym_heredoc_body, - STATE(7661), 1, + STATE(7817), 1, + sym_constant, + STATE(9110), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9041), 2, + sym_self, + sym_underscore_type, + STATE(7836), 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, + [357538] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10156), 1, + anon_sym_SEMI, + ACTIONS(10159), 1, + anon_sym_end, + ACTIONS(10161), 1, + anon_sym_AT_LBRACK, + ACTIONS(10164), 1, + anon_sym_struct, + ACTIONS(10167), 1, + anon_sym_enum, + ACTIONS(10170), 1, + anon_sym_fun, + ACTIONS(10173), 1, + anon_sym_type, + ACTIONS(10176), 1, + anon_sym_union, + ACTIONS(10179), 1, + anon_sym_DOLLAR, + ACTIONS(10182), 1, + sym__constant_segment, + ACTIONS(10185), 1, + anon_sym_COLON_COLON, + ACTIONS(10188), 1, + sym_private, + ACTIONS(10191), 1, + anon_sym_alias, + STATE(10353), 1, + sym__lib_statement, + STATE(12131), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(7701), 2, + sym_heredoc_body, + aux_sym__lib_statements_repeat1, + STATE(10618), 9, + sym_annotation, + sym_enum_def, + sym_fun_def, + sym_type_def, + sym_c_struct_def, + sym_union_def, + sym_global_var, + sym_const_assign, + sym_alias, + [357606] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10150), 1, + anon_sym_COLON_COLON, + STATE(7702), 1, + sym_heredoc_body, + STATE(7704), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 23, + ACTIONS(4857), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655487,40 +660816,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355012] = 16, + [357648] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9813), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9815), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(10137), 1, - anon_sym_RPAREN, - ACTIONS(10139), 1, - anon_sym_DOT_DOT_DOT, - STATE(7657), 1, + STATE(7703), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8365), 1, sym_constant, - STATE(9074), 1, + STATE(9049), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(4700), 2, + sym__start_of_brace_block, + anon_sym_do, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655533,85 +660861,76 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355074] = 15, + [357708] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(10150), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, - sym__start_of_tuple_type, - ACTIONS(9749), 1, - sym__start_of_named_tuple_type, - ACTIONS(9757), 1, - anon_sym_LPAREN, - ACTIONS(9759), 1, - anon_sym_DASH_GT, - STATE(7658), 1, + STATE(7698), 1, + aux_sym_constant_repeat1, + STATE(7704), 1, sym_heredoc_body, - STATE(8399), 1, - sym_constant, - STATE(8981), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4722), 2, - sym__start_of_brace_block, - anon_sym_do, - ACTIONS(9745), 2, - sym_self, - sym_underscore_type, - STATE(8598), 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, - [355134] = 16, + ACTIONS(4847), 23, + 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [357750] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - ACTIONS(10141), 1, + ACTIONS(10194), 1, anon_sym_RPAREN, - ACTIONS(10143), 1, + ACTIONS(10196), 1, anon_sym_DOT_DOT_DOT, - STATE(7659), 1, + STATE(7705), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(9074), 1, + STATE(9110), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655624,18 +660943,19 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355196] = 5, + [357812] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10145), 1, + ACTIONS(10150), 1, anon_sym_COLON_COLON, + STATE(7699), 1, + aux_sym_constant_repeat1, + STATE(7706), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7660), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4846), 23, + ACTIONS(4847), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655659,51 +660979,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355236] = 6, + [357854] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10135), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - STATE(7660), 1, - aux_sym_constant_repeat1, - STATE(7661), 1, + ACTIONS(9793), 1, + sym__start_of_tuple_type, + ACTIONS(9795), 1, + sym__start_of_named_tuple_type, + ACTIONS(9813), 1, + anon_sym_LPAREN, + ACTIONS(9815), 1, + anon_sym_DASH_GT, + STATE(7707), 1, sym_heredoc_body, + STATE(8365), 1, + sym_constant, + STATE(8820), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4853), 23, - 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [355278] = 4, + ACTIONS(4722), 2, + sym__start_of_brace_block, + anon_sym_do, + ACTIONS(9791), 2, + sym_self, + sym_underscore_type, + STATE(8761), 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, + [357914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7662), 1, + STATE(7708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4846), 24, + ACTIONS(4840), 24, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655728,36 +661057,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355315] = 14, + [357951] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, - sym__constant_segment, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, + ACTIONS(8655), 1, + anon_sym_LPAREN, + ACTIONS(8657), 1, anon_sym_DASH_GT, - STATE(2758), 1, - sym__type, - STATE(2839), 1, - sym_constant, - STATE(7663), 1, + STATE(7709), 1, sym_heredoc_body, + STATE(7947), 1, + sym_constant, + STATE(8022), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655770,36 +661099,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355371] = 14, + [358007] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5441), 1, + ACTIONS(8423), 1, anon_sym_LPAREN, - ACTIONS(5443), 1, - anon_sym_DASH_GT, - ACTIONS(5445), 1, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(5447), 1, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(5451), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(5453), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - STATE(4535), 1, - sym_constant, - STATE(4649), 1, - sym__type, - STATE(7664), 1, + ACTIONS(9843), 1, + anon_sym_DASH_GT, + STATE(7710), 1, sym_heredoc_body, + STATE(7943), 1, + sym__type, + STATE(7947), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655812,36 +661141,71 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355427] = 14, + [358063] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(10198), 1, + anon_sym_COLON_COLON, + STATE(7711), 1, + sym_heredoc_body, + STATE(7789), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4845), 10, + anon_sym_end, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_type, + anon_sym_union, + anon_sym_include, + sym_identifier, + sym_private, + anon_sym_alias, + ACTIONS(4847), 11, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_AT_LBRACK, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, + anon_sym_DOLLAR, sym__constant_segment, - ACTIONS(5225), 1, + [358105] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3191), 1, + sym__constant_segment, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(5230), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9835), 1, anon_sym_DASH_GT, - STATE(2374), 1, + STATE(3004), 1, sym_constant, - STATE(2378), 1, + STATE(3090), 1, sym__type, - STATE(7665), 1, + STATE(7712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655854,36 +661218,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355483] = 14, + [358161] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - STATE(4679), 1, + STATE(4959), 1, sym_constant, - STATE(4691), 1, + STATE(4963), 1, sym__type, - STATE(7666), 1, + STATE(7713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655896,36 +661260,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355539] = 14, + [358217] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(4650), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(4652), 1, sym__start_of_named_tuple_type, - ACTIONS(9128), 1, + ACTIONS(9873), 1, anon_sym_LPAREN, - ACTIONS(9133), 1, + ACTIONS(9875), 1, + anon_sym_DASH_GT, + ACTIONS(9879), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9881), 1, sym__constant_segment, - ACTIONS(9797), 1, - anon_sym_DASH_GT, - STATE(7667), 1, - sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7885), 1, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(2019), 1, sym__type, + STATE(2025), 1, + sym_constant, + STATE(7714), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9885), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2038), 12, sym_typeof, sym_class_type, sym_union_type, @@ -655938,78 +661302,71 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355595] = 14, + [358273] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(10198), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, - anon_sym_LPAREN, - ACTIONS(9664), 1, - anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7668), 1, + STATE(7715), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(8300), 1, - sym__type, + STATE(7790), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - STATE(7794), 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, - [355651] = 14, + ACTIONS(4845), 10, + anon_sym_end, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_type, + anon_sym_union, + anon_sym_include, + sym_identifier, + sym_private, + anon_sym_alias, + ACTIONS(4847), 11, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_AT_LBRACK, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, + anon_sym_DOLLAR, + sym__constant_segment, + [358315] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - STATE(5084), 1, + STATE(7716), 1, + sym_heredoc_body, + STATE(8365), 1, sym_constant, - STATE(5096), 1, + STATE(8423), 1, sym__type, - STATE(7669), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656022,129 +661379,61 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355707] = 14, + [358371] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, - anon_sym_LPAREN, - ACTIONS(7278), 1, - anon_sym_typeof, - ACTIONS(7280), 1, + ACTIONS(3191), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(5355), 1, + anon_sym_typeof, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, + ACTIONS(5373), 1, + anon_sym_LPAREN, + ACTIONS(5375), 1, anon_sym_DASH_GT, - STATE(7670), 1, - sym_heredoc_body, - STATE(7702), 1, - sym__type, - STATE(7728), 1, + STATE(3004), 1, sym_constant, + STATE(3272), 1, + sym__type, + STATE(7717), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(3174), 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, - [355763] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10148), 1, - anon_sym_PIPE, - STATE(7671), 1, - sym_heredoc_body, - STATE(7694), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4882), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [355803] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10150), 1, - anon_sym_COLON_COLON, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(7672), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4844), 10, - anon_sym_end, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_type, - anon_sym_union, - anon_sym_include, - sym_identifier, - sym_private, - anon_sym_alias, - ACTIONS(4846), 11, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AT_LBRACK, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - anon_sym_DOLLAR, - sym__constant_segment, - [355843] = 7, + 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, + [358427] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10153), 1, + ACTIONS(10198), 1, anon_sym_COLON_COLON, - STATE(7672), 1, + STATE(7711), 1, aux_sym_constant_repeat1, - STATE(7673), 1, + STATE(7718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4851), 10, + ACTIONS(4855), 10, anon_sym_end, anon_sym_struct, anon_sym_enum, @@ -656155,7 +661444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_private, anon_sym_alias, - ACTIONS(4853), 11, + ACTIONS(4857), 11, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -656167,36 +661456,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_top_level_fun_def_token1, anon_sym_DOLLAR, sym__constant_segment, - [355885] = 14, + [358469] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, + ACTIONS(3279), 1, sym__constant_segment, - ACTIONS(5254), 1, + ACTIONS(5493), 1, + anon_sym_LPAREN, + ACTIONS(5495), 1, + anon_sym_DASH_GT, + ACTIONS(5497), 1, anon_sym_typeof, - ACTIONS(5256), 1, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(5262), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(9861), 1, - anon_sym_DASH_GT, - STATE(2499), 1, - sym__type, - STATE(2529), 1, + STATE(4768), 1, sym_constant, - STATE(7674), 1, + STATE(4981), 1, + sym__type, + STATE(7719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656209,36 +661498,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355941] = 14, + [358525] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, + ACTIONS(2899), 1, sym__constant_segment, ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(5252), 1, - anon_sym_DASH_GT, - ACTIONS(5254), 1, + ACTIONS(5255), 1, anon_sym_typeof, - ACTIONS(5256), 1, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(5262), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - STATE(2529), 1, + ACTIONS(9831), 1, + anon_sym_DASH_GT, + STATE(2575), 1, sym_constant, - STATE(2621), 1, + STATE(2585), 1, sym__type, - STATE(7675), 1, + STATE(7720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656251,36 +661540,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355997] = 14, + [358581] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LPAREN, - ACTIONS(5379), 1, + ACTIONS(5551), 1, anon_sym_DASH_GT, - ACTIONS(5381), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - STATE(3220), 1, + STATE(5137), 1, sym_constant, - STATE(3512), 1, + STATE(5239), 1, sym__type, - STATE(7676), 1, + STATE(7721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656293,36 +661582,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356053] = 14, + [358637] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(2274), 1, sym__constant_segment, - ACTIONS(5466), 1, - anon_sym_LPAREN, - ACTIONS(5468), 1, - anon_sym_DASH_GT, - ACTIONS(5470), 1, + ACTIONS(5205), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - STATE(4679), 1, + ACTIONS(5218), 1, + anon_sym_LPAREN, + ACTIONS(5220), 1, + anon_sym_DASH_GT, + STATE(2331), 1, sym_constant, - STATE(4984), 1, + STATE(2380), 1, sym__type, - STATE(7677), 1, + STATE(7722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656335,36 +661624,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356109] = 14, + [358693] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, + ACTIONS(1347), 1, sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(5315), 1, + anon_sym_LPAREN, + ACTIONS(5317), 1, + anon_sym_DASH_GT, + ACTIONS(5319), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, - anon_sym_DASH_GT, - STATE(3220), 1, + STATE(2891), 1, sym_constant, - STATE(3250), 1, + STATE(3128), 1, sym__type, - STATE(7678), 1, + STATE(7723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656377,36 +661666,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356165] = 14, + [358749] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(9701), 1, + ACTIONS(8671), 1, anon_sym_DASH_GT, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, + ACTIONS(9033), 1, anon_sym_typeof, - STATE(7679), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7724), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7817), 1, sym_constant, - STATE(8287), 1, + STATE(8309), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656419,109 +661708,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356221] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10148), 1, - anon_sym_PIPE, - ACTIONS(10155), 1, - anon_sym_LBRACK, - ACTIONS(10157), 1, - anon_sym_DOT, - ACTIONS(10159), 1, - anon_sym_STAR, - ACTIONS(10161), 1, - anon_sym_QMARK, - STATE(7671), 1, - aux_sym_union_type_repeat1, - STATE(7680), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4886), 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, - [356269] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10153), 1, - anon_sym_COLON_COLON, - STATE(7681), 1, - sym_heredoc_body, - STATE(7683), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4855), 10, - anon_sym_end, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_type, - anon_sym_union, - anon_sym_include, - sym_identifier, - sym_private, - anon_sym_alias, - ACTIONS(4857), 11, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AT_LBRACK, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - anon_sym_DOLLAR, - sym__constant_segment, - [356311] = 14, + [358805] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8580), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, + ACTIONS(9033), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9721), 1, sym__constant_segment, - STATE(7682), 1, + ACTIONS(9725), 1, + anon_sym_LPAREN, + ACTIONS(9727), 1, + anon_sym_DASH_GT, + STATE(7725), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(7817), 1, sym_constant, - STATE(8272), 1, + STATE(8347), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656534,106 +661750,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356367] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10153), 1, - anon_sym_COLON_COLON, - STATE(7672), 1, - aux_sym_constant_repeat1, - STATE(7683), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4838), 10, - anon_sym_end, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_type, - anon_sym_union, - anon_sym_include, - sym_identifier, - sym_private, - anon_sym_alias, - ACTIONS(4840), 11, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AT_LBRACK, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - anon_sym_DOLLAR, - sym__constant_segment, - [356409] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10153), 1, - anon_sym_COLON_COLON, - STATE(7673), 1, - aux_sym_constant_repeat1, - STATE(7684), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4838), 10, - anon_sym_end, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_type, - anon_sym_union, - anon_sym_include, - sym_identifier, - sym_private, - anon_sym_alias, - ACTIONS(4840), 11, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AT_LBRACK, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - anon_sym_DOLLAR, - sym__constant_segment, - [356451] = 14, + [358861] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5558), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(5573), 1, + ACTIONS(5395), 1, anon_sym_LPAREN, - ACTIONS(5575), 1, + ACTIONS(9865), 1, anon_sym_DASH_GT, - STATE(5084), 1, - sym_constant, - STATE(5403), 1, + STATE(3179), 1, sym__type, - STATE(7685), 1, + STATE(3222), 1, + sym_constant, + STATE(7726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656646,36 +661792,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356507] = 14, + [358917] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, - anon_sym_LPAREN, - ACTIONS(9701), 1, - anon_sym_DASH_GT, - ACTIONS(9707), 1, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - STATE(7686), 1, + ACTIONS(8296), 1, + anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_DASH_GT, + STATE(7727), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7864), 1, sym_constant, - STATE(8292), 1, + STATE(7933), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656688,36 +661834,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356563] = 14, + [358973] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, + ACTIONS(3191), 1, sym__constant_segment, - ACTIONS(5200), 1, + ACTIONS(5350), 1, anon_sym_LPAREN, - ACTIONS(5202), 1, - anon_sym_DASH_GT, - ACTIONS(5204), 1, + ACTIONS(5355), 1, anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(5357), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(5361), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(5363), 1, sym__start_of_named_tuple_type, - STATE(2318), 1, + ACTIONS(9835), 1, + anon_sym_DASH_GT, + STATE(3004), 1, sym_constant, - STATE(2345), 1, + STATE(3037), 1, sym__type, - STATE(7687), 1, + STATE(7728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(5359), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(3174), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656730,36 +661876,69 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356619] = 14, + [359029] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7273), 1, + STATE(7729), 1, + sym_heredoc_body, + STATE(7770), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4875), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [359067] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3165), 1, + sym__constant_segment, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(7278), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9785), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - STATE(7688), 1, - sym_heredoc_body, - STATE(7708), 1, - sym__type, - STATE(7728), 1, + STATE(2799), 1, sym_constant, + STATE(2805), 1, + sym__type, + STATE(7730), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656772,36 +661951,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356675] = 14, + [359123] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8307), 1, - anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(8751), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9446), 1, anon_sym_LPAREN, - ACTIONS(8753), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - STATE(7689), 1, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7731), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(7817), 1, sym_constant, - STATE(7983), 1, + STATE(8047), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656814,36 +661993,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356731] = 14, + [359179] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, - anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(5334), 1, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - STATE(2810), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(2076), 1, sym_constant, - STATE(2975), 1, + STATE(2079), 1, sym__type, - STATE(7690), 1, + STATE(7732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656856,36 +662035,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356787] = 14, + [359235] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, - sym__constant_segment, - ACTIONS(5414), 1, + ACTIONS(8667), 1, anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(8671), 1, + anon_sym_DASH_GT, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, - anon_sym_DASH_GT, - STATE(3848), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + STATE(7733), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(3852), 1, + STATE(8317), 1, sym__type, - STATE(7691), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656898,36 +662077,69 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356843] = 14, + [359291] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3361), 1, - sym__constant_segment, - ACTIONS(5553), 1, + ACTIONS(10200), 1, + anon_sym_LPAREN2, + STATE(7734), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4902), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [359329] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8008), 1, anon_sym_LPAREN, - ACTIONS(5558), 1, + ACTIONS(8013), 1, anon_sym_typeof, - ACTIONS(5560), 1, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(5564), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(5566), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9773), 1, + ACTIONS(9907), 1, anon_sym_DASH_GT, - STATE(5084), 1, - sym_constant, - STATE(5093), 1, - sym__type, - STATE(7692), 1, + STATE(7735), 1, sym_heredoc_body, + STATE(7849), 1, + sym__type, + STATE(7864), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(5267), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656940,36 +662152,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356899] = 14, + [359385] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - STATE(4891), 1, + STATE(4459), 1, sym_constant, - STATE(4933), 1, + STATE(4465), 1, sym__type, - STATE(7693), 1, + STATE(7736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -656982,18 +662194,27 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [356955] = 5, + [359441] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10163), 1, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_DOT, + ACTIONS(10206), 1, + anon_sym_STAR, + ACTIONS(10208), 1, anon_sym_PIPE, + ACTIONS(10210), 1, + anon_sym_QMARK, + STATE(7737), 1, + sym_heredoc_body, + STATE(7770), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7694), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 21, + ACTIONS(4861), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -657003,48 +662224,44 @@ 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_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_forall, - anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [356993] = 14, + [359489] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, + ACTIONS(3279), 1, sym__constant_segment, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5280), 1, + ACTIONS(5497), 1, anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(5513), 1, + anon_sym_LPAREN, + ACTIONS(9839), 1, anon_sym_DASH_GT, - STATE(2603), 1, + STATE(4768), 1, sym_constant, - STATE(2609), 1, + STATE(4853), 1, sym__type, - STATE(7695), 1, + STATE(7738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657057,36 +662274,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357049] = 14, + [359545] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(3015), 1, + sym__constant_segment, + ACTIONS(5275), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, + ACTIONS(5277), 1, anon_sym_DASH_GT, - ACTIONS(9835), 1, + ACTIONS(5279), 1, anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - STATE(2052), 1, + ACTIONS(5285), 1, + sym__start_of_tuple_type, + ACTIONS(5287), 1, + sym__start_of_named_tuple_type, + STATE(2701), 1, sym_constant, - STATE(2055), 1, + STATE(2880), 1, sym__type, - STATE(7696), 1, + STATE(7739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657099,36 +662316,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357105] = 14, + [359601] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, - anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, - anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(4650), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(4652), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9873), 1, + anon_sym_LPAREN, + ACTIONS(9875), 1, anon_sym_DASH_GT, - STATE(2784), 1, + ACTIONS(9879), 1, + anon_sym_typeof, + ACTIONS(9881), 1, + sym__constant_segment, + ACTIONS(9883), 1, + anon_sym_COLON_COLON, + STATE(2018), 1, sym__type, - STATE(2810), 1, + STATE(2025), 1, sym_constant, - STATE(7697), 1, + STATE(7740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9885), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(2038), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657141,36 +662358,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357161] = 14, + [359657] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, + ACTIONS(3251), 1, + sym__constant_segment, + ACTIONS(5414), 1, anon_sym_LPAREN, - ACTIONS(9739), 1, + ACTIONS(5416), 1, + anon_sym_DASH_GT, + ACTIONS(5418), 1, anon_sym_typeof, - ACTIONS(9741), 1, - sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, - anon_sym_DASH_GT, - STATE(7698), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(4129), 1, sym_constant, - STATE(8511), 1, + STATE(4586), 1, sym__type, + STATE(7741), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657183,36 +662400,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357217] = 14, + [359713] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, + ACTIONS(3299), 1, sym__constant_segment, - ACTIONS(5529), 1, + ACTIONS(5471), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(5539), 1, + ACTIONS(5481), 1, anon_sym_LPAREN, - ACTIONS(5541), 1, + ACTIONS(5483), 1, anon_sym_DASH_GT, - STATE(4891), 1, + STATE(4776), 1, sym_constant, - STATE(5137), 1, + STATE(4984), 1, sym__type, - STATE(7699), 1, + STATE(7742), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657225,36 +662442,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357273] = 14, + [359769] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(2899), 1, + sym__constant_segment, + ACTIONS(5255), 1, + anon_sym_typeof, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(5268), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(5270), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7700), 1, - sym_heredoc_body, - STATE(7777), 1, + STATE(2575), 1, sym_constant, - STATE(8838), 1, + STATE(2725), 1, sym__type, + STATE(7743), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657267,36 +662484,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357329] = 14, + [359825] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4650), 1, + ACTIONS(3279), 1, + sym__constant_segment, + ACTIONS(5497), 1, + anon_sym_typeof, + ACTIONS(5499), 1, + anon_sym_COLON_COLON, + ACTIONS(5503), 1, sym__start_of_tuple_type, - ACTIONS(4652), 1, + ACTIONS(5505), 1, sym__start_of_named_tuple_type, - ACTIONS(9843), 1, + ACTIONS(5513), 1, anon_sym_LPAREN, - ACTIONS(9845), 1, + ACTIONS(9839), 1, anon_sym_DASH_GT, - ACTIONS(9849), 1, - anon_sym_typeof, - ACTIONS(9851), 1, - sym__constant_segment, - ACTIONS(9853), 1, - anon_sym_COLON_COLON, - STATE(2000), 1, - sym__type, - STATE(2002), 1, + STATE(4768), 1, sym_constant, - STATE(7701), 1, + STATE(4819), 1, + sym__type, + STATE(7744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9855), 2, + ACTIONS(5501), 2, sym_self, sym_underscore_type, - STATE(2017), 12, + STATE(5025), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657309,69 +662526,78 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357385] = 5, + [359881] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7671), 1, - aux_sym_union_type_repeat1, - STATE(7702), 1, + ACTIONS(2274), 1, + sym__constant_segment, + ACTIONS(5200), 1, + anon_sym_LPAREN, + ACTIONS(5205), 1, + anon_sym_typeof, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + ACTIONS(5211), 1, + sym__start_of_tuple_type, + ACTIONS(5213), 1, + sym__start_of_named_tuple_type, + ACTIONS(9923), 1, + anon_sym_DASH_GT, + STATE(2331), 1, + sym_constant, + STATE(2342), 1, + sym__type, + STATE(7745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [357423] = 14, + ACTIONS(5209), 2, + sym_self, + sym_underscore_type, + STATE(2357), 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, + [359937] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5204), 1, + ACTIONS(5377), 1, + anon_sym_LPAREN, + ACTIONS(5379), 1, + anon_sym_DASH_GT, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, - anon_sym_LPAREN, - ACTIONS(9805), 1, - anon_sym_DASH_GT, - STATE(2318), 1, + STATE(3222), 1, sym_constant, - STATE(2321), 1, + STATE(3520), 1, sym__type, - STATE(7703), 1, + STATE(7746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657384,36 +662610,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357479] = 14, + [359993] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, + ACTIONS(1347), 1, sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(5319), 1, anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(5321), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(5325), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(5327), 1, sym__start_of_named_tuple_type, - ACTIONS(5330), 1, + ACTIONS(5336), 1, anon_sym_LPAREN, - ACTIONS(5332), 1, + ACTIONS(9823), 1, anon_sym_DASH_GT, - STATE(2839), 1, - sym_constant, - STATE(2992), 1, + STATE(2786), 1, sym__type, - STATE(7704), 1, + STATE(2891), 1, + sym_constant, + STATE(7747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(5323), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(3148), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657426,36 +662652,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357535] = 14, + [360049] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, - anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9128), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(9133), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(9666), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9797), 1, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(9760), 1, + sym__start_of_tuple_type, + ACTIONS(9762), 1, + sym__start_of_named_tuple_type, + ACTIONS(9772), 1, anon_sym_DASH_GT, - STATE(7705), 1, + STATE(7748), 1, sym_heredoc_body, - STATE(7777), 1, - sym_constant, - STATE(7884), 1, + STATE(8328), 1, sym__type, + STATE(8341), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657468,36 +662694,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357591] = 14, + [360105] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8568), 1, - anon_sym_LPAREN, - ACTIONS(8572), 1, - anon_sym_DASH_GT, - ACTIONS(8580), 1, + ACTIONS(3323), 1, + sym__constant_segment, + ACTIONS(5553), 1, + anon_sym_typeof, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7706), 1, - sym_heredoc_body, - STATE(7777), 1, + ACTIONS(5563), 1, + anon_sym_LPAREN, + ACTIONS(9827), 1, + anon_sym_DASH_GT, + STATE(5137), 1, sym_constant, - STATE(8265), 1, + STATE(5151), 1, sym__type, + STATE(7749), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657510,36 +662736,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357647] = 14, + [360161] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5230), 1, + anon_sym_typeof, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9757), 1, + ACTIONS(5246), 1, anon_sym_LPAREN, - ACTIONS(9759), 1, + ACTIONS(5248), 1, anon_sym_DASH_GT, - STATE(7707), 1, - sym_heredoc_body, - STATE(8399), 1, + STATE(2386), 1, sym_constant, - STATE(8895), 1, + STATE(2471), 1, sym__type, + STATE(7750), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657552,74 +662778,78 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357703] = 10, + [360217] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10148), 1, - anon_sym_PIPE, - ACTIONS(10155), 1, - anon_sym_LBRACK, - ACTIONS(10157), 1, - anon_sym_DOT, - ACTIONS(10159), 1, - anon_sym_STAR, - ACTIONS(10161), 1, - anon_sym_QMARK, - STATE(7671), 1, - aux_sym_union_type_repeat1, - STATE(7708), 1, + ACTIONS(1347), 1, + sym__constant_segment, + ACTIONS(5319), 1, + anon_sym_typeof, + ACTIONS(5321), 1, + anon_sym_COLON_COLON, + ACTIONS(5325), 1, + sym__start_of_tuple_type, + ACTIONS(5327), 1, + sym__start_of_named_tuple_type, + ACTIONS(5336), 1, + anon_sym_LPAREN, + ACTIONS(9823), 1, + anon_sym_DASH_GT, + STATE(2827), 1, + sym__type, + STATE(2891), 1, + sym_constant, + STATE(7751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4894), 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, - [357751] = 14, + ACTIONS(5323), 2, + sym_self, + sym_underscore_type, + STATE(3148), 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, + [360273] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(9752), 1, + anon_sym_typeof, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8588), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9662), 1, + ACTIONS(9800), 1, anon_sym_LPAREN, - ACTIONS(9664), 1, + ACTIONS(9802), 1, anon_sym_DASH_GT, - ACTIONS(9666), 1, - sym__constant_segment, - STATE(7709), 1, + STATE(7752), 1, sym_heredoc_body, - STATE(7777), 1, + STATE(8341), 1, sym_constant, - STATE(9074), 1, + STATE(8676), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7794), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657632,36 +662862,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357807] = 14, + [360329] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(5225), 1, anon_sym_LPAREN, - ACTIONS(8021), 1, + ACTIONS(5230), 1, anon_sym_typeof, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(5232), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(5236), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - STATE(7710), 1, - sym_heredoc_body, - STATE(7823), 1, + STATE(2385), 1, sym__type, - STATE(7824), 1, + STATE(2386), 1, sym_constant, + STATE(7753), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657674,36 +662904,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357863] = 14, + [360385] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5352), 1, + ACTIONS(7251), 1, anon_sym_LPAREN, - ACTIONS(5354), 1, - anon_sym_DASH_GT, - ACTIONS(5356), 1, + ACTIONS(7256), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - STATE(3119), 1, + ACTIONS(9915), 1, + anon_sym_DASH_GT, + STATE(7734), 1, sym_constant, - STATE(3209), 1, - sym__type, - STATE(7711), 1, + STATE(7754), 1, sym_heredoc_body, + STATE(7783), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657716,36 +662946,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357919] = 14, + [360441] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5419), 1, + ACTIONS(5524), 1, + anon_sym_LPAREN, + ACTIONS(5526), 1, + anon_sym_DASH_GT, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5437), 1, - anon_sym_LPAREN, - ACTIONS(5439), 1, - anon_sym_DASH_GT, - STATE(3848), 1, + STATE(4959), 1, sym_constant, - STATE(4491), 1, + STATE(5130), 1, sym__type, - STATE(7712), 1, + STATE(7755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657758,36 +662988,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [357975] = 14, + [360497] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8016), 1, + ACTIONS(9747), 1, anon_sym_LPAREN, - ACTIONS(8021), 1, + ACTIONS(9752), 1, anon_sym_typeof, - ACTIONS(8023), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(9760), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(9762), 1, sym__start_of_named_tuple_type, - ACTIONS(9789), 1, + ACTIONS(9772), 1, anon_sym_DASH_GT, - STATE(7713), 1, + STATE(7756), 1, sym_heredoc_body, - STATE(7806), 1, - sym__type, - STATE(7824), 1, + STATE(8341), 1, sym_constant, + STATE(8361), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(9758), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(8374), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657800,36 +663030,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358031] = 14, + [360553] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9734), 1, - anon_sym_LPAREN, - ACTIONS(9739), 1, - anon_sym_typeof, - ACTIONS(9741), 1, + ACTIONS(3165), 1, sym__constant_segment, - ACTIONS(9743), 1, + ACTIONS(5305), 1, + anon_sym_typeof, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(9747), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(9749), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9781), 1, + ACTIONS(5332), 1, + anon_sym_LPAREN, + ACTIONS(5334), 1, anon_sym_DASH_GT, - STATE(7714), 1, - sym_heredoc_body, - STATE(8367), 1, - sym__type, - STATE(8399), 1, + STATE(2799), 1, sym_constant, + STATE(3133), 1, + sym__type, + STATE(7757), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9745), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(8598), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657842,36 +663072,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358087] = 14, + [360609] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8021), 1, - anon_sym_typeof, - ACTIONS(8023), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(5418), 1, + anon_sym_typeof, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(8029), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(8031), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(8169), 1, + ACTIONS(5428), 1, anon_sym_LPAREN, - ACTIONS(8171), 1, + ACTIONS(9869), 1, anon_sym_DASH_GT, - STATE(7715), 1, - sym_heredoc_body, - STATE(7824), 1, + STATE(4129), 1, sym_constant, - STATE(7878), 1, + STATE(4136), 1, sym__type, + STATE(7758), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8027), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(7867), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657884,7 +663114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358143] = 14, + [360665] = 14, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(83), 1, @@ -657899,13 +663129,13 @@ static const uint16_t ts_small_parse_table[] = { sym__start_of_tuple_type, ACTIONS(5238), 1, sym__start_of_named_tuple_type, - ACTIONS(9777), 1, + ACTIONS(9895), 1, anon_sym_DASH_GT, - STATE(2374), 1, + STATE(2386), 1, sym_constant, - STATE(2376), 1, + STATE(2389), 1, sym__type, - STATE(7716), 1, + STATE(7759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -657913,7 +663143,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5234), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(2425), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657926,36 +663156,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358199] = 14, + [360721] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3279), 1, + ACTIONS(3311), 1, sym__constant_segment, - ACTIONS(5470), 1, + ACTIONS(5528), 1, anon_sym_typeof, - ACTIONS(5472), 1, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - ACTIONS(5476), 1, + ACTIONS(5534), 1, sym__start_of_tuple_type, - ACTIONS(5478), 1, + ACTIONS(5536), 1, sym__start_of_named_tuple_type, - ACTIONS(5480), 1, + ACTIONS(5538), 1, anon_sym_LPAREN, - ACTIONS(9801), 1, + ACTIONS(9887), 1, anon_sym_DASH_GT, - STATE(4679), 1, + STATE(4959), 1, sym_constant, - STATE(4693), 1, + STATE(4962), 1, sym__type, - STATE(7717), 1, + STATE(7760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5474), 2, + ACTIONS(5532), 2, sym_self, sym_underscore_type, - STATE(4895), 12, + STATE(5087), 12, sym_typeof, sym_class_type, sym_union_type, @@ -657968,36 +663198,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358255] = 14, + [360777] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5485), 1, - anon_sym_LPAREN, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, + ACTIONS(5456), 1, + anon_sym_LPAREN, + ACTIONS(5458), 1, anon_sym_DASH_GT, - STATE(4549), 1, + STATE(4459), 1, sym_constant, - STATE(4554), 1, + STATE(4707), 1, sym__type, - STATE(7718), 1, + STATE(7761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658010,36 +663240,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358311] = 14, + [360833] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, + ACTIONS(3015), 1, sym__constant_segment, - ACTIONS(5490), 1, + ACTIONS(5279), 1, anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(5500), 1, + ACTIONS(5289), 1, anon_sym_LPAREN, - ACTIONS(5502), 1, + ACTIONS(9911), 1, anon_sym_DASH_GT, - STATE(4549), 1, - sym_constant, - STATE(4990), 1, + STATE(2615), 1, sym__type, - STATE(7719), 1, + STATE(2701), 1, + sym_constant, + STATE(7762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658052,36 +663282,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358367] = 14, + [360889] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, - sym__constant_segment, - ACTIONS(5275), 1, - anon_sym_LPAREN, - ACTIONS(5280), 1, - anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9817), 1, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9899), 1, anon_sym_DASH_GT, - STATE(2603), 1, + STATE(7763), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2616), 1, + STATE(7949), 1, sym__type, - STATE(7720), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658090,116 +663320,82 @@ static const uint16_t ts_small_parse_table[] = { 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, - [358423] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10148), 1, - anon_sym_PIPE, - ACTIONS(10155), 1, - anon_sym_LBRACK, - ACTIONS(10157), 1, - anon_sym_DOT, - ACTIONS(10159), 1, - anon_sym_STAR, - ACTIONS(10161), 1, - anon_sym_QMARK, - STATE(7671), 1, - aux_sym_union_type_repeat1, - STATE(7721), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4890), 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, - [358471] = 10, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [360945] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10148), 1, - anon_sym_PIPE, - ACTIONS(10155), 1, - anon_sym_LBRACK, - ACTIONS(10157), 1, - anon_sym_DOT, - ACTIONS(10159), 1, - anon_sym_STAR, - ACTIONS(10161), 1, - anon_sym_QMARK, - STATE(7671), 1, - aux_sym_union_type_repeat1, - STATE(7722), 1, + ACTIONS(9785), 1, + anon_sym_typeof, + ACTIONS(9787), 1, + sym__constant_segment, + ACTIONS(9789), 1, + anon_sym_COLON_COLON, + ACTIONS(9793), 1, + sym__start_of_tuple_type, + ACTIONS(9795), 1, + sym__start_of_named_tuple_type, + ACTIONS(9813), 1, + anon_sym_LPAREN, + ACTIONS(9815), 1, + anon_sym_DASH_GT, + STATE(7764), 1, sym_heredoc_body, + STATE(8365), 1, + sym_constant, + STATE(8991), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 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, - [358519] = 14, + ACTIONS(9791), 2, + sym_self, + sym_underscore_type, + STATE(8761), 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, + [361001] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2903), 1, + ACTIONS(3299), 1, sym__constant_segment, - ACTIONS(5254), 1, + ACTIONS(5466), 1, + anon_sym_LPAREN, + ACTIONS(5471), 1, anon_sym_typeof, - ACTIONS(5256), 1, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - ACTIONS(5260), 1, + ACTIONS(5477), 1, sym__start_of_tuple_type, - ACTIONS(5262), 1, + ACTIONS(5479), 1, sym__start_of_named_tuple_type, - ACTIONS(5264), 1, - anon_sym_LPAREN, - ACTIONS(9861), 1, + ACTIONS(9927), 1, anon_sym_DASH_GT, - STATE(2498), 1, + STATE(4621), 1, sym__type, - STATE(2529), 1, + STATE(4776), 1, sym_constant, - STATE(7723), 1, + STATE(7765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5258), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(2660), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658212,36 +663408,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358575] = 14, + [361057] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4762), 1, - sym__start_of_tuple_type, - ACTIONS(4764), 1, - sym__start_of_named_tuple_type, - ACTIONS(9829), 1, + ACTIONS(3299), 1, + sym__constant_segment, + ACTIONS(5466), 1, anon_sym_LPAREN, - ACTIONS(9831), 1, - anon_sym_DASH_GT, - ACTIONS(9835), 1, + ACTIONS(5471), 1, anon_sym_typeof, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(5473), 1, anon_sym_COLON_COLON, - STATE(2052), 1, + ACTIONS(5477), 1, + sym__start_of_tuple_type, + ACTIONS(5479), 1, + sym__start_of_named_tuple_type, + ACTIONS(9927), 1, + anon_sym_DASH_GT, + STATE(4776), 1, sym_constant, - STATE(2058), 1, + STATE(4784), 1, sym__type, - STATE(7724), 1, + STATE(7766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9841), 2, + ACTIONS(5475), 2, sym_self, sym_underscore_type, - STATE(2084), 12, + STATE(4940), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658254,36 +663450,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358631] = 14, + [361113] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3251), 1, + ACTIONS(3015), 1, sym__constant_segment, - ACTIONS(5414), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, + ACTIONS(5279), 1, anon_sym_typeof, - ACTIONS(5421), 1, + ACTIONS(5281), 1, anon_sym_COLON_COLON, - ACTIONS(5425), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5427), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9821), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9911), 1, anon_sym_DASH_GT, - STATE(3848), 1, - sym_constant, - STATE(3860), 1, + STATE(2656), 1, sym__type, - STATE(7725), 1, + STATE(2701), 1, + sym_constant, + STATE(7767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5423), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(4363), 12, + STATE(2789), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658296,36 +663492,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358687] = 14, + [361169] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2530), 1, + ACTIONS(2274), 1, sym__constant_segment, - ACTIONS(5381), 1, + ACTIONS(5200), 1, + anon_sym_LPAREN, + ACTIONS(5205), 1, anon_sym_typeof, - ACTIONS(5383), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(5387), 1, + ACTIONS(5211), 1, sym__start_of_tuple_type, - ACTIONS(5389), 1, + ACTIONS(5213), 1, sym__start_of_named_tuple_type, - ACTIONS(5395), 1, - anon_sym_LPAREN, - ACTIONS(9865), 1, + ACTIONS(9923), 1, anon_sym_DASH_GT, - STATE(3220), 1, + STATE(2331), 1, sym_constant, - STATE(3241), 1, + STATE(2339), 1, sym__type, - STATE(7726), 1, + STATE(7768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5385), 2, + ACTIONS(5209), 2, sym_self, sym_underscore_type, - STATE(3439), 12, + STATE(2357), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658338,36 +663534,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358743] = 14, + [361225] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, + ACTIONS(7251), 1, + anon_sym_LPAREN, + ACTIONS(7256), 1, anon_sym_typeof, - ACTIONS(5447), 1, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(5451), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(5453), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(5455), 1, - anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(9915), 1, anon_sym_DASH_GT, - STATE(4275), 1, + STATE(7729), 1, sym__type, - STATE(4535), 1, + STATE(7734), 1, sym_constant, - STATE(7727), 1, + STATE(7769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658380,17 +663576,19 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358799] = 5, + [361281] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10166), 1, - anon_sym_LPAREN2, - STATE(7728), 1, + ACTIONS(10208), 1, + anon_sym_PIPE, + STATE(7770), 1, sym_heredoc_body, + STATE(7781), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 22, + ACTIONS(4883), 21, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -658406,43 +663604,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_end, anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [358837] = 14, + [361321] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(5230), 1, - anon_sym_typeof, - ACTIONS(5232), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5236), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5238), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(5240), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(5242), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - STATE(2374), 1, + STATE(7771), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2398), 1, + STATE(9028), 1, sym__type, - STATE(7729), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5234), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2395), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658455,74 +663652,141 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358893] = 10, + [361377] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10148), 1, + ACTIONS(4855), 1, + anon_sym_EQ, + ACTIONS(10212), 1, + anon_sym_COLON_COLON, + STATE(7772), 1, + sym_heredoc_body, + STATE(7773), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4857), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + aux_sym_top_level_fun_def_token1, + anon_sym_STAR, anon_sym_PIPE, - ACTIONS(10155), 1, + anon_sym_def, + sym__constant_segment, + sym_class_var, + anon_sym_LPAREN2, + anon_sym_QMARK, + sym_private, + sym_protected, + [361419] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(10212), 1, + anon_sym_COLON_COLON, + STATE(7773), 1, + sym_heredoc_body, + STATE(7776), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4847), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(10157), 1, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(10159), 1, + anon_sym_end, + anon_sym_AT_LBRACK, + aux_sym_top_level_fun_def_token1, anon_sym_STAR, - ACTIONS(10161), 1, + anon_sym_PIPE, + anon_sym_def, + sym__constant_segment, + sym_class_var, + anon_sym_LPAREN2, anon_sym_QMARK, - STATE(7671), 1, - aux_sym_union_type_repeat1, - STATE(7730), 1, + sym_private, + sym_protected, + [361461] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(10212), 1, + anon_sym_COLON_COLON, + STATE(7774), 1, sym_heredoc_body, + STATE(7777), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, + ACTIONS(4847), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [358941] = 14, + anon_sym_AT_LBRACK, + aux_sym_top_level_fun_def_token1, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym__constant_segment, + sym_class_var, + anon_sym_LPAREN2, + anon_sym_QMARK, + sym_private, + sym_protected, + [361503] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(3165), 1, + sym__constant_segment, + ACTIONS(5300), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, + ACTIONS(5305), 1, anon_sym_typeof, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(5307), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(5311), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(5313), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, + ACTIONS(9891), 1, anon_sym_DASH_GT, - STATE(7731), 1, - sym_heredoc_body, - STATE(7889), 1, + STATE(2799), 1, sym_constant, - STATE(7892), 1, + STATE(2803), 1, sym__type, + STATE(7775), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(5309), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(2923), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658535,78 +663799,105 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [358997] = 14, + [361559] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8580), 1, + ACTIONS(4838), 1, + anon_sym_EQ, + ACTIONS(10214), 1, anon_sym_COLON_COLON, - ACTIONS(8586), 1, - sym__start_of_tuple_type, - ACTIONS(8588), 1, - sym__start_of_named_tuple_type, - ACTIONS(9133), 1, - anon_sym_typeof, - ACTIONS(9410), 1, - anon_sym_LPAREN, - ACTIONS(9412), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(7776), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4840), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, - ACTIONS(9666), 1, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + aux_sym_top_level_fun_def_token1, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, sym__constant_segment, - STATE(7732), 1, - sym_heredoc_body, + sym_class_var, + anon_sym_LPAREN2, + anon_sym_QMARK, + sym_private, + sym_protected, + [361599] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4851), 1, + anon_sym_EQ, + ACTIONS(10212), 1, + anon_sym_COLON_COLON, + STATE(7776), 1, + aux_sym_constant_repeat1, STATE(7777), 1, - sym_constant, - STATE(7987), 1, - sym__type, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9141), 2, - sym_self, - sym_underscore_type, - STATE(7794), 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, - [359053] = 14, + ACTIONS(4853), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + aux_sym_top_level_fun_def_token1, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym__constant_segment, + sym_class_var, + anon_sym_LPAREN2, + anon_sym_QMARK, + sym_private, + sym_protected, + [361641] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, - sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(7256), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(7264), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(7266), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(7524), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(7526), 1, anon_sym_DASH_GT, - STATE(3119), 1, + STATE(7734), 1, sym_constant, - STATE(3125), 1, - sym__type, - STATE(7733), 1, + STATE(7778), 1, sym_heredoc_body, + STATE(7822), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(7262), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(7805), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658619,36 +663910,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359109] = 14, + [361697] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(8008), 1, + anon_sym_LPAREN, + ACTIONS(8013), 1, + anon_sym_typeof, + ACTIONS(8015), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8017), 1, anon_sym_COLON_COLON, - ACTIONS(9713), 1, + ACTIONS(8021), 1, sym__start_of_tuple_type, - ACTIONS(9715), 1, + ACTIONS(8023), 1, sym__start_of_named_tuple_type, - ACTIONS(9720), 1, - anon_sym_typeof, - ACTIONS(9730), 1, - anon_sym_LPAREN, - ACTIONS(9732), 1, + ACTIONS(9907), 1, anon_sym_DASH_GT, - STATE(7734), 1, + STATE(7779), 1, sym_heredoc_body, - STATE(8279), 1, + STATE(7864), 1, sym_constant, - STATE(8569), 1, + STATE(7868), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9722), 2, + ACTIONS(8019), 2, sym_self, sym_underscore_type, - STATE(8354), 12, + STATE(7902), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658661,36 +663952,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359165] = 14, + [361753] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1347), 1, - sym__constant_segment, - ACTIONS(5315), 1, - anon_sym_LPAREN, - ACTIONS(5320), 1, - anon_sym_typeof, - ACTIONS(5322), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5326), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5328), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(9809), 1, + ACTIONS(9028), 1, + anon_sym_LPAREN, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9899), 1, anon_sym_DASH_GT, - STATE(2765), 1, - sym__type, - STATE(2810), 1, - sym_constant, - STATE(7735), 1, + STATE(7780), 1, sym_heredoc_body, + STATE(7817), 1, + sym_constant, + STATE(7951), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5324), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2850), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658703,36 +663994,145 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359221] = 14, + [361809] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10217), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(7781), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [361847] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_DOT, + ACTIONS(10206), 1, + anon_sym_STAR, + ACTIONS(10208), 1, + anon_sym_PIPE, + ACTIONS(10210), 1, + anon_sym_QMARK, + STATE(7770), 1, + aux_sym_union_type_repeat1, + STATE(7782), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4898), 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, + [361895] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_DOT, + ACTIONS(10206), 1, + anon_sym_STAR, + ACTIONS(10208), 1, + anon_sym_PIPE, + ACTIONS(10210), 1, + anon_sym_QMARK, + STATE(7770), 1, + aux_sym_union_type_repeat1, + STATE(7783), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4879), 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, + [361943] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3133), 1, + ACTIONS(3323), 1, sym__constant_segment, - ACTIONS(5280), 1, + ACTIONS(5553), 1, anon_sym_typeof, - ACTIONS(5282), 1, + ACTIONS(5555), 1, anon_sym_COLON_COLON, - ACTIONS(5286), 1, + ACTIONS(5559), 1, sym__start_of_tuple_type, - ACTIONS(5288), 1, + ACTIONS(5561), 1, sym__start_of_named_tuple_type, - ACTIONS(5290), 1, + ACTIONS(5563), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(9827), 1, anon_sym_DASH_GT, - STATE(2603), 1, - sym_constant, - STATE(2812), 1, + STATE(5112), 1, sym__type, - STATE(7736), 1, + STATE(5137), 1, + sym_constant, + STATE(7784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5284), 2, + ACTIONS(5557), 2, sym_self, sym_underscore_type, - STATE(2831), 12, + STATE(5253), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658745,36 +664145,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359277] = 14, + [361999] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3263), 1, - sym__constant_segment, - ACTIONS(5445), 1, - anon_sym_typeof, - ACTIONS(5447), 1, - anon_sym_COLON_COLON, - ACTIONS(5451), 1, + ACTIONS(4762), 1, sym__start_of_tuple_type, - ACTIONS(5453), 1, + ACTIONS(4764), 1, sym__start_of_named_tuple_type, - ACTIONS(5455), 1, + ACTIONS(9851), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(9853), 1, anon_sym_DASH_GT, - STATE(4282), 1, + ACTIONS(9857), 1, + anon_sym_typeof, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(2072), 1, sym__type, - STATE(4535), 1, + STATE(2076), 1, sym_constant, - STATE(7737), 1, + STATE(7785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5449), 2, + ACTIONS(9863), 2, sym_self, sym_underscore_type, - STATE(4577), 12, + STATE(2099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658787,36 +664187,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359333] = 14, + [362055] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, - sym__constant_segment, - ACTIONS(5204), 1, - anon_sym_typeof, - ACTIONS(5206), 1, + ACTIONS(8679), 1, anon_sym_COLON_COLON, - ACTIONS(5210), 1, + ACTIONS(8685), 1, sym__start_of_tuple_type, - ACTIONS(5212), 1, + ACTIONS(8687), 1, sym__start_of_named_tuple_type, - ACTIONS(5214), 1, + ACTIONS(9033), 1, + anon_sym_typeof, + ACTIONS(9721), 1, + sym__constant_segment, + ACTIONS(9725), 1, anon_sym_LPAREN, - ACTIONS(9805), 1, + ACTIONS(9727), 1, anon_sym_DASH_GT, - STATE(2318), 1, + STATE(7786), 1, + sym_heredoc_body, + STATE(7817), 1, sym_constant, - STATE(2326), 1, + STATE(9110), 1, sym__type, - STATE(7738), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5208), 2, + ACTIONS(9041), 2, sym_self, sym_underscore_type, - STATE(2342), 12, + STATE(7836), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658829,36 +664229,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359389] = 14, + [362111] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3311), 1, + ACTIONS(3263), 1, sym__constant_segment, - ACTIONS(5524), 1, + ACTIONS(5441), 1, anon_sym_LPAREN, - ACTIONS(5529), 1, + ACTIONS(5446), 1, anon_sym_typeof, - ACTIONS(5531), 1, + ACTIONS(5448), 1, anon_sym_COLON_COLON, - ACTIONS(5535), 1, + ACTIONS(5452), 1, sym__start_of_tuple_type, - ACTIONS(5537), 1, + ACTIONS(5454), 1, sym__start_of_named_tuple_type, - ACTIONS(9869), 1, + ACTIONS(9903), 1, anon_sym_DASH_GT, - STATE(4891), 1, + STATE(4459), 1, sym_constant, - STATE(4923), 1, + STATE(4464), 1, sym__type, - STATE(7739), 1, + STATE(7787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5533), 2, + ACTIONS(5450), 2, sym_self, sym_underscore_type, - STATE(5124), 12, + STATE(4612), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658871,36 +664271,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359445] = 14, + [362167] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3295), 1, + ACTIONS(2899), 1, sym__constant_segment, - ACTIONS(5485), 1, + ACTIONS(5250), 1, anon_sym_LPAREN, - ACTIONS(5490), 1, + ACTIONS(5255), 1, anon_sym_typeof, - ACTIONS(5492), 1, + ACTIONS(5257), 1, anon_sym_COLON_COLON, - ACTIONS(5496), 1, + ACTIONS(5261), 1, sym__start_of_tuple_type, - ACTIONS(5498), 1, + ACTIONS(5263), 1, sym__start_of_named_tuple_type, - ACTIONS(9825), 1, + ACTIONS(9831), 1, anon_sym_DASH_GT, - STATE(4549), 1, - sym_constant, - STATE(4555), 1, + STATE(2521), 1, sym__type, - STATE(7740), 1, + STATE(2575), 1, + sym_constant, + STATE(7788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5494), 2, + ACTIONS(5259), 2, sym_self, sym_underscore_type, - STATE(4988), 12, + STATE(2758), 12, sym_typeof, sym_class_type, sym_union_type, @@ -658913,141 +664313,105 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359501] = 7, + [362223] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4855), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10220), 1, anon_sym_COLON_COLON, - STATE(7741), 1, - sym_heredoc_body, - STATE(7742), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4857), 20, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - aux_sym_top_level_fun_def_token1, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym__constant_segment, - sym_class_var, - anon_sym_LPAREN2, - anon_sym_QMARK, - sym_private, - sym_protected, - [359543] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4838), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_COLON_COLON, - STATE(7742), 1, + STATE(7789), 2, sym_heredoc_body, - STATE(7745), 1, aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4840), 20, + ACTIONS(4838), 10, + anon_sym_end, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_type, + anon_sym_union, + anon_sym_include, + sym_identifier, + sym_private, + anon_sym_alias, + ACTIONS(4840), 11, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_end, anon_sym_AT_LBRACK, + anon_sym_EQ, aux_sym_top_level_fun_def_token1, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, + anon_sym_DOLLAR, sym__constant_segment, - sym_class_var, - anon_sym_LPAREN2, - anon_sym_QMARK, - sym_private, - sym_protected, - [359585] = 7, + [362263] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4838), 1, - anon_sym_EQ, - ACTIONS(10168), 1, + ACTIONS(10198), 1, anon_sym_COLON_COLON, - STATE(7743), 1, - sym_heredoc_body, - STATE(7746), 1, + STATE(7789), 1, aux_sym_constant_repeat1, + STATE(7790), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 20, + ACTIONS(4851), 10, + anon_sym_end, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_type, + anon_sym_union, + anon_sym_include, + sym_identifier, + sym_private, + anon_sym_alias, + ACTIONS(4853), 11, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_end, anon_sym_AT_LBRACK, + anon_sym_EQ, aux_sym_top_level_fun_def_token1, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, + anon_sym_DOLLAR, sym__constant_segment, - sym_class_var, - anon_sym_LPAREN2, - anon_sym_QMARK, - sym_private, - sym_protected, - [359627] = 14, + [362305] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3121), 1, + ACTIONS(3251), 1, sym__constant_segment, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(5305), 1, + ACTIONS(5418), 1, anon_sym_typeof, - ACTIONS(5307), 1, + ACTIONS(5420), 1, anon_sym_COLON_COLON, - ACTIONS(5311), 1, + ACTIONS(5424), 1, sym__start_of_tuple_type, - ACTIONS(5313), 1, + ACTIONS(5426), 1, sym__start_of_named_tuple_type, - ACTIONS(9873), 1, + ACTIONS(5428), 1, + anon_sym_LPAREN, + ACTIONS(9869), 1, anon_sym_DASH_GT, - STATE(2756), 1, - sym__type, - STATE(2839), 1, + STATE(4129), 1, sym_constant, - STATE(7744), 1, + STATE(4146), 1, + sym__type, + STATE(7791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5309), 2, + ACTIONS(5422), 2, sym_self, sym_underscore_type, - STATE(2981), 12, + STATE(4569), 12, sym_typeof, sym_class_type, sym_union_type, @@ -659060,105 +664424,112 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359683] = 6, + [362361] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4844), 1, - anon_sym_EQ, - ACTIONS(10170), 1, - anon_sym_COLON_COLON, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_DOT, + ACTIONS(10206), 1, + anon_sym_STAR, + ACTIONS(10208), 1, + anon_sym_PIPE, + ACTIONS(10210), 1, + anon_sym_QMARK, + STATE(7770), 1, + aux_sym_union_type_repeat1, + STATE(7792), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7745), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4846), 20, + ACTIONS(4890), 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_EQ_GT, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_end, - anon_sym_AT_LBRACK, - aux_sym_top_level_fun_def_token1, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [362409] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_DOT, + ACTIONS(10206), 1, anon_sym_STAR, + ACTIONS(10208), 1, anon_sym_PIPE, - anon_sym_def, - sym__constant_segment, - sym_class_var, - anon_sym_LPAREN2, + ACTIONS(10210), 1, anon_sym_QMARK, - sym_private, - sym_protected, - [359723] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4851), 1, - anon_sym_EQ, - ACTIONS(10168), 1, - anon_sym_COLON_COLON, - STATE(7745), 1, - aux_sym_constant_repeat1, - STATE(7746), 1, + STATE(7770), 1, + aux_sym_union_type_repeat1, + STATE(7793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4853), 20, + ACTIONS(4894), 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_EQ_GT, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_end, - anon_sym_AT_LBRACK, - aux_sym_top_level_fun_def_token1, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym__constant_segment, - sym_class_var, - anon_sym_LPAREN2, - anon_sym_QMARK, - sym_private, - sym_protected, - [359765] = 14, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [362457] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7278), 1, + ACTIONS(8423), 1, + anon_sym_LPAREN, + ACTIONS(8428), 1, anon_sym_typeof, - ACTIONS(7280), 1, + ACTIONS(8430), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(8432), 1, anon_sym_COLON_COLON, - ACTIONS(7286), 1, + ACTIONS(8436), 1, sym__start_of_tuple_type, - ACTIONS(7288), 1, + ACTIONS(8438), 1, sym__start_of_named_tuple_type, - ACTIONS(7378), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(9843), 1, anon_sym_DASH_GT, - STATE(7728), 1, - sym_constant, - STATE(7747), 1, + STATE(7794), 1, sym_heredoc_body, - STATE(7775), 1, + STATE(7939), 1, sym__type, + STATE(7947), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7284), 2, + ACTIONS(8434), 2, sym_self, sym_underscore_type, - STATE(7758), 12, + STATE(7971), 12, sym_typeof, sym_class_type, sym_union_type, @@ -659171,36 +664542,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359821] = 14, + [362513] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3191), 1, + ACTIONS(2582), 1, sym__constant_segment, - ACTIONS(5356), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5358), 1, + ACTIONS(5383), 1, anon_sym_COLON_COLON, - ACTIONS(5362), 1, + ACTIONS(5387), 1, sym__start_of_tuple_type, - ACTIONS(5364), 1, + ACTIONS(5389), 1, sym__start_of_named_tuple_type, - ACTIONS(5366), 1, + ACTIONS(5395), 1, anon_sym_LPAREN, - ACTIONS(9793), 1, + ACTIONS(9865), 1, anon_sym_DASH_GT, - STATE(3004), 1, - sym__type, - STATE(3119), 1, + STATE(3222), 1, sym_constant, - STATE(7748), 1, + STATE(3332), 1, + sym__type, + STATE(7795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5360), 2, + ACTIONS(5385), 2, sym_self, sym_underscore_type, - STATE(3244), 12, + STATE(3446), 12, sym_typeof, sym_class_type, sym_union_type, @@ -659213,36 +664584,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359877] = 14, + [362569] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8302), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - ACTIONS(8307), 1, + ACTIONS(9785), 1, anon_sym_typeof, - ACTIONS(8309), 1, + ACTIONS(9787), 1, sym__constant_segment, - ACTIONS(8311), 1, + ACTIONS(9789), 1, anon_sym_COLON_COLON, - ACTIONS(8315), 1, + ACTIONS(9793), 1, sym__start_of_tuple_type, - ACTIONS(8317), 1, + ACTIONS(9795), 1, sym__start_of_named_tuple_type, - ACTIONS(9813), 1, + ACTIONS(9847), 1, anon_sym_DASH_GT, - STATE(7749), 1, + STATE(7796), 1, sym_heredoc_body, - STATE(7889), 1, + STATE(8365), 1, sym_constant, - STATE(7895), 1, + STATE(8368), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8313), 2, + ACTIONS(9791), 2, sym_self, sym_underscore_type, - STATE(7926), 12, + STATE(8761), 12, sym_typeof, sym_class_type, sym_union_type, @@ -659255,57 +664626,78 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [359933] = 14, + [362625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4650), 1, - sym__start_of_tuple_type, - ACTIONS(4652), 1, - sym__start_of_named_tuple_type, - ACTIONS(9843), 1, + STATE(7797), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4838), 10, + anon_sym_end, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_type, + anon_sym_union, + anon_sym_include, + sym_identifier, + sym_private, + anon_sym_alias, + ACTIONS(4840), 12, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(9845), 1, - anon_sym_DASH_GT, - ACTIONS(9849), 1, - anon_sym_typeof, - ACTIONS(9851), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_AT_LBRACK, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, + anon_sym_DOLLAR, sym__constant_segment, - ACTIONS(9853), 1, anon_sym_COLON_COLON, - STATE(1996), 1, - sym__type, - STATE(2002), 1, - sym_constant, - STATE(7750), 1, + [362662] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9855), 2, - sym_self, - sym_underscore_type, - STATE(2017), 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, - [359989] = 4, + ACTIONS(4920), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [362697] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7751), 1, + STATE(7799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4912), 22, + ACTIONS(4916), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659328,15 +664720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360024] = 4, + [362732] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7752), 1, + STATE(7800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4976), 22, + ACTIONS(4948), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659359,15 +664751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360059] = 4, + [362767] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7753), 1, + STATE(7801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4908), 22, + ACTIONS(4952), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659390,15 +664782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360094] = 4, + [362802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7754), 1, + STATE(7802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4956), 22, + ACTIONS(4912), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659421,15 +664813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360129] = 4, + [362837] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7755), 1, + STATE(7803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4972), 22, + ACTIONS(4956), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659452,15 +664844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360164] = 4, + [362872] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7756), 1, + STATE(7804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4944), 22, + ACTIONS(4968), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659483,15 +664875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360199] = 4, + [362907] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7757), 1, + STATE(7805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4952), 22, + ACTIONS(4902), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659514,15 +664906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360234] = 4, + [362942] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7758), 1, + STATE(7806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 22, + ACTIONS(4960), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659545,47 +664937,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360269] = 5, + [362977] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7759), 1, + STATE(7807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4844), 10, - anon_sym_end, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_type, - anon_sym_union, - anon_sym_include, - sym_identifier, - sym_private, - anon_sym_alias, - ACTIONS(4846), 12, + ACTIONS(4964), 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_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_AT_LBRACK, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - anon_sym_DOLLAR, - sym__constant_segment, - anon_sym_COLON_COLON, - [360306] = 4, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [363012] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7760), 1, + STATE(7808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4932), 22, + ACTIONS(4976), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659608,15 +664999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360341] = 4, + [363047] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7761), 1, + STATE(7809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 22, + ACTIONS(4928), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659639,15 +665030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360376] = 4, + [363082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7762), 1, + STATE(7810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4940), 22, + ACTIONS(4932), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659670,17 +665061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360411] = 5, + [363117] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4844), 1, + ACTIONS(4838), 1, anon_sym_EQ, - STATE(7763), 1, + STATE(7811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4846), 21, + ACTIONS(4840), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -659702,15 +665093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [360448] = 4, + [363154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7764), 1, + STATE(7812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4964), 22, + ACTIONS(4940), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659733,15 +665124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360483] = 4, + [363189] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7765), 1, + STATE(7813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4948), 22, + ACTIONS(4936), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659764,15 +665155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360518] = 4, + [363224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7766), 1, + STATE(7814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4916), 22, + ACTIONS(4908), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659795,15 +665186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360553] = 4, + [363259] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7767), 1, + STATE(7815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4928), 22, + ACTIONS(4944), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659826,24 +665217,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360588] = 4, + [363294] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7768), 1, + ACTIONS(10223), 1, + anon_sym_COLON_COLON, + STATE(7816), 1, sym_heredoc_body, + STATE(7826), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4924), 22, + ACTIONS(4853), 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, @@ -659852,55 +665246,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_forall, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [360623] = 4, + [363332] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7769), 1, + ACTIONS(4900), 1, + anon_sym_EQ, + ACTIONS(10225), 1, + anon_sym_LPAREN2, + STATE(7817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4920), 22, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, + ACTIONS(4902), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_DOT, anon_sym_end, + anon_sym_AT_LBRACK, anon_sym_STAR, anon_sym_PIPE, - anon_sym_forall, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [360658] = 6, + sym_private, + sym_protected, + [363370] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10173), 1, + ACTIONS(10223), 1, anon_sym_COLON_COLON, - STATE(7770), 1, + STATE(7818), 1, sym_heredoc_body, - STATE(7783), 1, + STATE(7826), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4853), 19, + ACTIONS(4847), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659920,55 +665313,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_else, - [360696] = 10, + [363408] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10155), 1, - anon_sym_LBRACK, - ACTIONS(10157), 1, - anon_sym_DOT, - ACTIONS(10159), 1, - anon_sym_STAR, - ACTIONS(10161), 1, - anon_sym_QMARK, - ACTIONS(10175), 1, - anon_sym_PIPE, - STATE(7771), 1, + ACTIONS(10223), 1, + anon_sym_COLON_COLON, + STATE(7818), 1, + aux_sym_constant_repeat1, + STATE(7819), 1, sym_heredoc_body, - STATE(7776), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 15, + ACTIONS(4857), 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_DOT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, anon_sym_forall, - anon_sym_elsif, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_else, - anon_sym_when, - anon_sym_in, - [360742] = 6, + [363446] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10173), 1, + ACTIONS(10223), 1, anon_sym_COLON_COLON, - STATE(7772), 1, - sym_heredoc_body, - STATE(7778), 1, + STATE(7816), 1, aux_sym_constant_repeat1, + STATE(7820), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4857), 19, + ACTIONS(4847), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -659988,27 +665377,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_else, - [360780] = 10, + [363484] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10155), 1, + ACTIONS(10202), 1, anon_sym_LBRACK, - ACTIONS(10157), 1, + ACTIONS(10204), 1, anon_sym_DOT, - ACTIONS(10159), 1, + ACTIONS(10206), 1, anon_sym_STAR, - ACTIONS(10161), 1, + ACTIONS(10210), 1, anon_sym_QMARK, - ACTIONS(10175), 1, + ACTIONS(10227), 1, anon_sym_PIPE, - STATE(7773), 1, + STATE(7821), 1, sym_heredoc_body, - STATE(7776), 1, + STATE(7824), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4936), 15, + ACTIONS(4898), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660024,27 +665413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360826] = 10, + [363530] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10155), 1, - anon_sym_LBRACK, - ACTIONS(10157), 1, - anon_sym_DOT, - ACTIONS(10159), 1, - anon_sym_STAR, - ACTIONS(10161), 1, - anon_sym_QMARK, - ACTIONS(10175), 1, - anon_sym_PIPE, - STATE(7774), 1, + STATE(7822), 1, sym_heredoc_body, - STATE(7776), 1, + STATE(7824), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4968), 15, + ACTIONS(4875), 20, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660054,23 +665433,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, anon_sym_forall, + anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [360872] = 5, + [363566] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7775), 1, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_DOT, + ACTIONS(10206), 1, + anon_sym_STAR, + ACTIONS(10210), 1, + anon_sym_QMARK, + ACTIONS(10227), 1, + anon_sym_PIPE, + STATE(7823), 1, sym_heredoc_body, - STATE(7776), 1, + STATE(7824), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 20, + ACTIONS(4972), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660080,30 +665474,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, - anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [360908] = 6, + [363612] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10175), 1, + ACTIONS(10227), 1, anon_sym_PIPE, - STATE(7776), 1, + STATE(7824), 1, sym_heredoc_body, - STATE(7782), 1, + STATE(7827), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 19, + ACTIONS(4883), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660123,50 +665512,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360946] = 6, + [363650] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4900), 1, - anon_sym_EQ, - ACTIONS(10177), 1, - anon_sym_LPAREN2, - STATE(7777), 1, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_DOT, + ACTIONS(10206), 1, + anon_sym_STAR, + ACTIONS(10210), 1, + anon_sym_QMARK, + ACTIONS(10227), 1, + anon_sym_PIPE, + STATE(7824), 1, + aux_sym_union_type_repeat1, + STATE(7825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 19, + ACTIONS(4924), 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_EQ_GT, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - anon_sym_QMARK, - sym_private, - sym_protected, - [360984] = 6, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [363696] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10173), 1, + ACTIONS(10229), 1, anon_sym_COLON_COLON, - STATE(7778), 1, - sym_heredoc_body, - STATE(7783), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, + STATE(7826), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, ACTIONS(4840), 19, sym__line_break, sym__modifier_if_keyword, @@ -660187,27 +665579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_else, - [361022] = 10, + [363732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10155), 1, - anon_sym_LBRACK, - ACTIONS(10157), 1, - anon_sym_DOT, - ACTIONS(10159), 1, - anon_sym_STAR, - ACTIONS(10161), 1, - anon_sym_QMARK, - ACTIONS(10175), 1, + ACTIONS(10232), 1, anon_sym_PIPE, - STATE(7776), 1, - aux_sym_union_type_repeat1, - STATE(7779), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 15, + STATE(7827), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660217,33 +665600,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_forall, + anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [361068] = 10, + [363768] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10155), 1, + ACTIONS(10202), 1, anon_sym_LBRACK, - ACTIONS(10157), 1, + ACTIONS(10204), 1, anon_sym_DOT, - ACTIONS(10159), 1, + ACTIONS(10206), 1, anon_sym_STAR, - ACTIONS(10161), 1, + ACTIONS(10210), 1, anon_sym_QMARK, - ACTIONS(10175), 1, + ACTIONS(10227), 1, anon_sym_PIPE, - STATE(7776), 1, + STATE(7824), 1, aux_sym_union_type_repeat1, - STATE(7780), 1, + STATE(7828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 15, + ACTIONS(4890), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660259,50 +665646,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361114] = 6, + [363814] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10173), 1, - anon_sym_COLON_COLON, - STATE(7770), 1, - aux_sym_constant_repeat1, - STATE(7781), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4840), 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, + ACTIONS(10202), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(10204), 1, anon_sym_DOT, - anon_sym_end, + ACTIONS(10206), 1, anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_LPAREN2, + ACTIONS(10210), 1, anon_sym_QMARK, - anon_sym_else, - [361152] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10179), 1, + ACTIONS(10227), 1, anon_sym_PIPE, + STATE(7824), 1, + aux_sym_union_type_repeat1, + STATE(7829), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7782), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 19, + ACTIONS(4894), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660312,28 +665676,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_forall, - anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [361188] = 5, + [363860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10182), 1, - anon_sym_COLON_COLON, + STATE(7830), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7783), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4846), 19, + ACTIONS(4840), 20, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660350,50 +665707,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_forall, + anon_sym_COLON_COLON, anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_else, - [361224] = 5, + [363893] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4926), 1, - anon_sym_EQ, - STATE(7784), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4928), 19, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - anon_sym_QMARK, - sym_private, - sym_protected, - [361259] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4974), 1, + ACTIONS(4962), 1, anon_sym_EQ, - STATE(7785), 1, + STATE(7831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4976), 19, + ACTIONS(4964), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660413,12 +665741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361294] = 5, + [363928] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4906), 1, anon_sym_EQ, - STATE(7786), 1, + STATE(7832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -660443,17 +665771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361329] = 5, + [363963] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4918), 1, + ACTIONS(4966), 1, anon_sym_EQ, - STATE(7787), 1, + STATE(7833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4920), 19, + ACTIONS(4968), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660473,17 +665801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361364] = 5, + [363998] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4930), 1, + ACTIONS(4918), 1, anon_sym_EQ, - STATE(7788), 1, + STATE(7834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4932), 19, + ACTIONS(4920), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660503,17 +665831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361399] = 5, + [364033] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4910), 1, + ACTIONS(4926), 1, anon_sym_EQ, - STATE(7789), 1, + STATE(7835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4912), 19, + ACTIONS(4928), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660533,17 +665861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361434] = 5, + [364068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4938), 1, + ACTIONS(4900), 1, anon_sym_EQ, - STATE(7790), 1, + STATE(7836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4940), 19, + ACTIONS(4902), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660563,17 +665891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361469] = 5, + [364103] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4954), 1, + ACTIONS(4942), 1, anon_sym_EQ, - STATE(7791), 1, + STATE(7837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4956), 19, + ACTIONS(4944), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660593,17 +665921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361504] = 5, + [364138] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4942), 1, + ACTIONS(4938), 1, anon_sym_EQ, - STATE(7792), 1, + STATE(7838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4944), 19, + ACTIONS(4940), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660623,17 +665951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361539] = 5, + [364173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4950), 1, + ACTIONS(4946), 1, anon_sym_EQ, - STATE(7793), 1, + STATE(7839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4952), 19, + ACTIONS(4948), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660653,17 +665981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361574] = 5, + [364208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4900), 1, + ACTIONS(4914), 1, anon_sym_EQ, - STATE(7794), 1, + STATE(7840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 19, + ACTIONS(4916), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660683,17 +666011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361609] = 5, + [364243] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4962), 1, + ACTIONS(4974), 1, anon_sym_EQ, - STATE(7795), 1, + STATE(7841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4964), 19, + ACTIONS(4976), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660713,17 +666041,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361644] = 5, + [364278] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4914), 1, + ACTIONS(4934), 1, anon_sym_EQ, - STATE(7796), 1, + STATE(7842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4916), 19, + ACTIONS(4936), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660743,17 +666071,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361679] = 5, + [364313] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4970), 1, + ACTIONS(4910), 1, anon_sym_EQ, - STATE(7797), 1, + STATE(7843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4972), 19, + ACTIONS(4912), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660773,17 +666101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361714] = 5, + [364348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4946), 1, + ACTIONS(4958), 1, anon_sym_EQ, - STATE(7798), 1, + STATE(7844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4948), 19, + ACTIONS(4960), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660803,17 +666131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361749] = 5, + [364383] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4922), 1, + ACTIONS(4950), 1, anon_sym_EQ, - STATE(7799), 1, + STATE(7845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4924), 19, + ACTIONS(4952), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660833,46 +666161,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361784] = 4, + [364418] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7800), 1, + ACTIONS(4930), 1, + anon_sym_EQ, + STATE(7846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4846), 20, - 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, + ACTIONS(4932), 19, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_DOT, anon_sym_end, + anon_sym_AT_LBRACK, anon_sym_STAR, anon_sym_PIPE, - anon_sym_forall, + anon_sym_def, + sym__constant_segment, anon_sym_COLON_COLON, - anon_sym_LPAREN2, + sym_class_var, anon_sym_QMARK, - anon_sym_else, - [361817] = 5, + sym_private, + sym_protected, + [364453] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4958), 1, + ACTIONS(4954), 1, anon_sym_EQ, - STATE(7801), 1, + STATE(7847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 19, + ACTIONS(4956), 19, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -660892,18 +666221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [361852] = 5, + [364488] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10185), 1, + ACTIONS(10235), 1, anon_sym_COLON_COLON, + STATE(7848), 1, + sym_heredoc_body, + STATE(7865), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7802), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4846), 17, + ACTIONS(4853), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660921,27 +666251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_LPAREN2, anon_sym_QMARK, - [361886] = 10, + [364524] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, - anon_sym_LBRACK, - ACTIONS(10190), 1, - anon_sym_DOT, - ACTIONS(10192), 1, - anon_sym_STAR, - ACTIONS(10194), 1, - anon_sym_PIPE, - ACTIONS(10196), 1, - anon_sym_QMARK, - STATE(7803), 1, + STATE(7849), 1, sym_heredoc_body, - STATE(7813), 1, + STATE(7860), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 13, + ACTIONS(4875), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -660950,82 +666270,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_DOT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, anon_sym_forall, + anon_sym_QMARK, anon_sym_else, - [361930] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(10198), 1, - anon_sym_EQ, - STATE(7804), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(311), 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, - [361966] = 6, + [364558] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(10200), 1, - anon_sym_EQ, - STATE(7805), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(451), 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, - [362002] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7806), 1, + ACTIONS(10237), 1, + anon_sym_LBRACK, + ACTIONS(10239), 1, + anon_sym_DOT, + ACTIONS(10241), 1, + anon_sym_STAR, + ACTIONS(10243), 1, + anon_sym_PIPE, + ACTIONS(10245), 1, + anon_sym_QMARK, + STATE(7850), 1, sym_heredoc_body, - STATE(7813), 1, + STATE(7860), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 18, + ACTIONS(4898), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661034,58 +666309,24 @@ 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_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, - anon_sym_QMARK, anon_sym_else, - [362036] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7807), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(1201), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(733), 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, - [362070] = 6, + [364602] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(307), 1, anon_sym_COMMA, - ACTIONS(10202), 1, + ACTIONS(10247), 1, anon_sym_EQ, - STATE(7808), 1, + STATE(7851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(733), 17, + ACTIONS(451), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -661103,18 +666344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [362106] = 6, + [364638] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(10202), 1, - anon_sym_EQ, - STATE(7809), 1, + STATE(7852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, + ACTIONS(1203), 2, + anon_sym_COMMA, + anon_sym_EQ, ACTIONS(733), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, @@ -661133,49 +666373,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [362142] = 6, + [364672] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(10204), 1, - anon_sym_EQ, - STATE(7810), 1, + ACTIONS(10235), 1, + anon_sym_COLON_COLON, + STATE(7853), 1, sym_heredoc_body, + STATE(7866), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(733), 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, - [362178] = 6, + ACTIONS(4857), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_LPAREN2, + anon_sym_QMARK, + [364708] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, + ACTIONS(1203), 1, anon_sym_COMMA, - ACTIONS(10206), 1, + ACTIONS(10249), 1, anon_sym_EQ, - STATE(7811), 1, + STATE(7854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(721), 17, + ACTIONS(733), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -661193,14 +666433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [362214] = 6, + [364744] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(307), 1, anon_sym_COMMA, - ACTIONS(10208), 1, + ACTIONS(10251), 1, anon_sym_EQ, - STATE(7812), 1, + STATE(7855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -661223,23 +666463,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [362250] = 6, + [364780] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10194), 1, - anon_sym_PIPE, - STATE(7813), 1, + ACTIONS(10235), 1, + anon_sym_COLON_COLON, + STATE(7848), 1, + aux_sym_constant_repeat1, + STATE(7856), 1, sym_heredoc_body, - STATE(7815), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 17, + ACTIONS(4847), 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, @@ -661250,22 +666489,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_end, anon_sym_STAR, + anon_sym_PIPE, anon_sym_forall, + anon_sym_LPAREN2, + anon_sym_QMARK, + [364816] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10237), 1, + anon_sym_LBRACK, + ACTIONS(10239), 1, + anon_sym_DOT, + ACTIONS(10241), 1, + anon_sym_STAR, + ACTIONS(10243), 1, + anon_sym_PIPE, + ACTIONS(10245), 1, anon_sym_QMARK, + STATE(7857), 1, + sym_heredoc_body, + STATE(7860), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4890), 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_DASH_GT, + anon_sym_end, + anon_sym_forall, anon_sym_else, - [362286] = 6, + [364860] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(307), 1, anon_sym_COMMA, - ACTIONS(10210), 1, + ACTIONS(10253), 1, anon_sym_EQ, - STATE(7814), 1, + STATE(7858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(733), 17, + ACTIONS(311), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -661283,18 +666557,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [362322] = 5, + [364896] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10212), 1, - anon_sym_PIPE, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(10255), 1, + anon_sym_EQ, + STATE(7859), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7815), 2, + ACTIONS(733), 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, + [364932] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10243), 1, + anon_sym_PIPE, + STATE(7860), 1, sym_heredoc_body, + STATE(7863), 1, aux_sym_union_type_repeat1, - ACTIONS(4875), 17, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4883), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661312,27 +666617,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [362356] = 10, + [364968] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, + ACTIONS(10237), 1, anon_sym_LBRACK, - ACTIONS(10190), 1, + ACTIONS(10239), 1, anon_sym_DOT, - ACTIONS(10192), 1, + ACTIONS(10241), 1, anon_sym_STAR, - ACTIONS(10194), 1, + ACTIONS(10243), 1, anon_sym_PIPE, - ACTIONS(10196), 1, + ACTIONS(10245), 1, anon_sym_QMARK, - STATE(7813), 1, + STATE(7860), 1, aux_sym_union_type_repeat1, - STATE(7816), 1, + STATE(7861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 13, + ACTIONS(4861), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661346,56 +666651,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_forall, anon_sym_else, - [362400] = 10, + [365012] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, - anon_sym_LBRACK, - ACTIONS(10190), 1, - anon_sym_DOT, - ACTIONS(10192), 1, - anon_sym_STAR, - ACTIONS(10194), 1, - anon_sym_PIPE, - ACTIONS(10196), 1, - anon_sym_QMARK, - STATE(7813), 1, - aux_sym_union_type_repeat1, - STATE(7817), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(10257), 1, + anon_sym_EQ, + STATE(7862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 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_DASH_GT, - anon_sym_end, - anon_sym_forall, - anon_sym_else, - [362444] = 6, + ACTIONS(721), 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, + [365048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10215), 1, - anon_sym_COLON_COLON, - STATE(7818), 1, - sym_heredoc_body, - STATE(7819), 1, - aux_sym_constant_repeat1, + ACTIONS(10259), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4857), 17, + STATE(7863), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 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, @@ -661406,26 +666707,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_end, anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, - anon_sym_LPAREN2, anon_sym_QMARK, - [362480] = 6, + anon_sym_else, + [365082] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10215), 1, - anon_sym_COLON_COLON, - STATE(7802), 1, - aux_sym_constant_repeat1, - STATE(7819), 1, + ACTIONS(10262), 1, + anon_sym_LPAREN2, + STATE(7864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 17, + ACTIONS(4902), 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, @@ -661438,20 +666737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_forall, - anon_sym_LPAREN2, anon_sym_QMARK, - [362516] = 6, + anon_sym_else, + [365116] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10215), 1, + ACTIONS(10264), 1, anon_sym_COLON_COLON, - STATE(7820), 1, - sym_heredoc_body, - STATE(7821), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, + STATE(7865), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, ACTIONS(4840), 17, sym__line_break, sym__modifier_if_keyword, @@ -661470,19 +666768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_LPAREN2, anon_sym_QMARK, - [362552] = 6, + [365150] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10215), 1, + ACTIONS(10235), 1, anon_sym_COLON_COLON, - STATE(7802), 1, + STATE(7865), 1, aux_sym_constant_repeat1, - STATE(7821), 1, + STATE(7866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4853), 17, + ACTIONS(4847), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661500,27 +666798,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_LPAREN2, anon_sym_QMARK, - [362588] = 10, + [365186] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, + ACTIONS(10237), 1, anon_sym_LBRACK, - ACTIONS(10190), 1, + ACTIONS(10239), 1, anon_sym_DOT, - ACTIONS(10192), 1, + ACTIONS(10241), 1, anon_sym_STAR, - ACTIONS(10194), 1, + ACTIONS(10243), 1, anon_sym_PIPE, - ACTIONS(10196), 1, + ACTIONS(10245), 1, anon_sym_QMARK, - STATE(7813), 1, + STATE(7860), 1, aux_sym_union_type_repeat1, - STATE(7822), 1, + STATE(7867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 13, + ACTIONS(4894), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661534,51 +666832,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_forall, anon_sym_else, - [362632] = 10, + [365230] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, + ACTIONS(10237), 1, anon_sym_LBRACK, - ACTIONS(10190), 1, + ACTIONS(10239), 1, anon_sym_DOT, - ACTIONS(10192), 1, + ACTIONS(10241), 1, anon_sym_STAR, - ACTIONS(10194), 1, + ACTIONS(10243), 1, anon_sym_PIPE, - ACTIONS(10196), 1, + ACTIONS(10245), 1, anon_sym_QMARK, - STATE(7813), 1, + STATE(7860), 1, aux_sym_union_type_repeat1, - STATE(7823), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4894), 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_DASH_GT, - anon_sym_end, - anon_sym_forall, - anon_sym_else, - [362676] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10217), 1, - anon_sym_LPAREN2, - STATE(7824), 1, + STATE(7868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 18, + ACTIONS(4879), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661587,96 +666861,24 @@ 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_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, - anon_sym_QMARK, anon_sym_else, - [362710] = 4, + [365274] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7825), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4948), 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, + ACTIONS(307), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [362741] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10221), 1, - aux_sym_proc_token1, - ACTIONS(10223), 1, - anon_sym_end, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - STATE(150), 1, - sym__base_method_def, - STATE(7826), 1, - sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(10940), 1, - sym__enum_statements, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [362802] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10233), 1, + ACTIONS(10249), 1, anon_sym_EQ, - STATE(7827), 1, + STATE(7869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1155), 17, + ACTIONS(733), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -661694,17 +666896,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [362835] = 5, + [365310] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10235), 1, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(10267), 1, anon_sym_EQ, - STATE(7828), 1, + STATE(7870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1183), 17, + ACTIONS(733), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -661722,59 +666926,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [362868] = 19, + [365346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + STATE(7871), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4940), 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, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10237), 1, - aux_sym_proc_token1, - ACTIONS(10239), 1, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7829), 1, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [365377] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10269), 1, + anon_sym_LPAREN, + ACTIONS(10271), 1, + aux_sym_top_level_fun_def_token1, + ACTIONS(10273), 1, + anon_sym_forall, + STATE(7872), 1, sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(10958), 1, - sym__enum_statements, + STATE(8183), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [362929] = 5, + ACTIONS(4986), 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, + [365416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10241), 1, + STATE(7873), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4936), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [365447] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10275), 1, anon_sym_EQ, - STATE(7830), 1, + STATE(7874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1231), 17, + ACTIONS(1175), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -661792,46 +667039,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [362962] = 8, + [365480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10243), 1, - anon_sym_LPAREN, - ACTIONS(10245), 1, - aux_sym_top_level_fun_def_token1, - ACTIONS(10247), 1, + STATE(7875), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4944), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, anon_sym_forall, - STATE(7831), 1, + anon_sym_QMARK, + anon_sym_else, + [365511] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7876), 1, sym_heredoc_body, - STATE(8180), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4994), 14, + ACTIONS(4920), 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, - 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_DOT, anon_sym_end, - anon_sym_elsif, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, anon_sym_else, - anon_sym_when, - anon_sym_in, - [363001] = 4, + [365542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7832), 1, + STATE(7877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4940), 18, + ACTIONS(4956), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661850,15 +667120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [363032] = 4, + [365573] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7833), 1, + STATE(7878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4928), 18, + ACTIONS(4960), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661877,17 +667147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [363063] = 5, + [365604] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10202), 1, + ACTIONS(10277), 1, anon_sym_EQ, - STATE(7834), 1, + STATE(7879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(733), 17, + ACTIONS(799), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -661905,17 +667175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363096] = 5, + [365637] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10249), 1, + ACTIONS(10279), 1, anon_sym_EQ, - STATE(7835), 1, + STATE(7880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(861), 17, + ACTIONS(1183), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -661933,15 +667203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363129] = 4, + [365670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7836), 1, + STATE(7881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4944), 18, + ACTIONS(4964), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -661960,71 +667230,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [363160] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10251), 1, - anon_sym_EQ, - STATE(7837), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(989), 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, - [363193] = 5, + [365701] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10200), 1, - anon_sym_EQ, - STATE(7838), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, + anon_sym_SEMI, + ACTIONS(10283), 1, + aux_sym_proc_token1, + ACTIONS(10285), 1, + anon_sym_end, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + STATE(161), 1, + sym__base_method_def, + STATE(7882), 1, sym_heredoc_body, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(11814), 1, + sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(451), 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, - [363226] = 4, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [365762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7839), 1, + STATE(7883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4920), 18, + ACTIONS(4908), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -662043,17 +667299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [363257] = 5, + [365793] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10198), 1, + ACTIONS(10295), 1, anon_sym_EQ, - STATE(7840), 1, + STATE(7884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(311), 17, + ACTIONS(517), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662071,59 +667327,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363290] = 19, + [365826] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7885), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4912), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [365857] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + ACTIONS(10281), 1, anon_sym_SEMI, - ACTIONS(10225), 1, + ACTIONS(10287), 1, anon_sym_def, - ACTIONS(10227), 1, + ACTIONS(10289), 1, sym_class_var, - ACTIONS(10229), 1, + ACTIONS(10291), 1, sym_private, - ACTIONS(10231), 1, + ACTIONS(10293), 1, sym_protected, - ACTIONS(10253), 1, + ACTIONS(10297), 1, aux_sym_proc_token1, - ACTIONS(10255), 1, + ACTIONS(10299), 1, anon_sym_end, - STATE(150), 1, + STATE(161), 1, sym__base_method_def, - STATE(7841), 1, + STATE(7886), 1, sym_heredoc_body, - STATE(7933), 1, + STATE(8002), 1, aux_sym__enum_statements_repeat1, - STATE(9757), 1, + STATE(9922), 1, sym__enum_statement, - STATE(9762), 1, + STATE(9943), 1, sym_constant, - STATE(11737), 1, + STATE(12210), 1, sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, + STATE(10135), 3, sym_annotation, sym_method_def, sym_const_assign, - [363351] = 5, + [365918] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10257), 1, + STATE(7887), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4916), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [365949] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10301), 1, anon_sym_EQ, - STATE(7842), 1, + STATE(7888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1059), 17, + ACTIONS(377), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662141,17 +667451,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363384] = 5, + [365982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10259), 1, + STATE(7889), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4948), 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_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [366013] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10303), 1, anon_sym_EQ, - STATE(7843), 1, + STATE(7890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(709), 17, + ACTIONS(1059), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662169,59 +667506,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363417] = 19, + [366046] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + ACTIONS(10281), 1, anon_sym_SEMI, - ACTIONS(10225), 1, + ACTIONS(10287), 1, anon_sym_def, - ACTIONS(10227), 1, + ACTIONS(10289), 1, sym_class_var, - ACTIONS(10229), 1, + ACTIONS(10291), 1, sym_private, - ACTIONS(10231), 1, + ACTIONS(10293), 1, sym_protected, - ACTIONS(10261), 1, + ACTIONS(10305), 1, aux_sym_proc_token1, - ACTIONS(10263), 1, + ACTIONS(10307), 1, anon_sym_end, - STATE(150), 1, + STATE(161), 1, sym__base_method_def, - STATE(7844), 1, + STATE(7891), 1, sym_heredoc_body, - STATE(7933), 1, + STATE(8002), 1, aux_sym__enum_statements_repeat1, - STATE(9757), 1, + STATE(9922), 1, sym__enum_statement, - STATE(9762), 1, + STATE(9943), 1, sym_constant, - STATE(12300), 1, + STATE(11895), 1, sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, + STATE(10135), 3, sym_annotation, sym_method_def, sym_const_assign, - [363478] = 5, + [366107] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10265), 1, + ACTIONS(10309), 1, anon_sym_EQ, - STATE(7845), 1, + STATE(7892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(297), 17, + ACTIONS(1155), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662239,113 +667576,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363511] = 19, + [366140] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + ACTIONS(10281), 1, anon_sym_SEMI, - ACTIONS(10225), 1, + ACTIONS(10287), 1, anon_sym_def, - ACTIONS(10227), 1, + ACTIONS(10289), 1, sym_class_var, - ACTIONS(10229), 1, + ACTIONS(10291), 1, sym_private, - ACTIONS(10231), 1, + ACTIONS(10293), 1, sym_protected, - ACTIONS(10267), 1, + ACTIONS(10311), 1, aux_sym_proc_token1, - ACTIONS(10269), 1, + ACTIONS(10313), 1, anon_sym_end, - STATE(150), 1, + STATE(161), 1, sym__base_method_def, - STATE(7846), 1, + STATE(7893), 1, sym_heredoc_body, - STATE(7933), 1, + STATE(8002), 1, aux_sym__enum_statements_repeat1, - STATE(9757), 1, + STATE(9922), 1, sym__enum_statement, - STATE(9762), 1, + STATE(9943), 1, sym_constant, - STATE(12112), 1, + STATE(11940), 1, sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, + STATE(10135), 3, sym_annotation, sym_method_def, sym_const_assign, - [363572] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7847), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4952), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [363603] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7848), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4960), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [363634] = 5, + [366201] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10206), 1, + ACTIONS(10315), 1, anon_sym_EQ, - STATE(7849), 1, + STATE(7894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(721), 17, + ACTIONS(647), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662363,87 +667646,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363667] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7850), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5032), 6, - anon_sym_SEMI, - anon_sym_AT_LBRACK, - anon_sym_DOLLAR, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - ACTIONS(5034), 12, - anon_sym_end, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_type, - anon_sym_union, - anon_sym_def, - anon_sym_include, - sym_identifier, - sym_private, - sym_protected, - anon_sym_alias, - [363700] = 19, + [366234] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10271), 1, - aux_sym_proc_token1, - ACTIONS(10273), 1, - anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7851), 1, + ACTIONS(10317), 1, + anon_sym_EQ, + STATE(7895), 1, sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(11845), 1, - sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [363761] = 5, + ACTIONS(579), 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, + [366267] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10275), 1, + ACTIONS(10319), 1, anon_sym_EQ, - STATE(7852), 1, + STATE(7896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1121), 17, + ACTIONS(709), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662461,69 +667702,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363794] = 4, + [366300] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7853), 1, + ACTIONS(10321), 1, + anon_sym_EQ, + STATE(7897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4972), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [363825] = 4, + ACTIONS(989), 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, + [366333] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7854), 1, + ACTIONS(10323), 1, + anon_sym_EQ, + STATE(7898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4846), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, - anon_sym_QMARK, - [363856] = 4, + ACTIONS(1119), 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, + [366366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7855), 1, + STATE(7899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4976), 18, + ACTIONS(4952), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -662542,17 +667785,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [363887] = 5, + [366397] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10277), 1, + ACTIONS(10247), 1, anon_sym_EQ, - STATE(7856), 1, + STATE(7900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(377), 17, + ACTIONS(451), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662570,19 +667813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [363920] = 4, + [366430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7857), 1, + STATE(7901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4924), 18, + ACTIONS(4840), 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, @@ -662595,47 +667837,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_forall, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_else, - [363951] = 7, + [366461] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(10279), 1, - anon_sym_DASH_GT, - STATE(7858), 1, + STATE(7902), 1, sym_heredoc_body, - STATE(10421), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 15, + ACTIONS(4902), 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, - 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_DOT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, anon_sym_forall, - anon_sym_elsif, + anon_sym_QMARK, anon_sym_else, - anon_sym_when, - anon_sym_in, - [363988] = 4, + [366492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7859), 1, + STATE(7903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4912), 18, + ACTIONS(4968), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -662654,45 +667894,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [364019] = 5, + [366523] = 19, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, ACTIONS(10281), 1, - anon_sym_EQ, - STATE(7860), 1, + anon_sym_SEMI, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10325), 1, + aux_sym_proc_token1, + ACTIONS(10327), 1, + anon_sym_end, + STATE(161), 1, + sym__base_method_def, + STATE(7904), 1, sym_heredoc_body, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(11935), 1, + sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1175), 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, - [364052] = 5, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [366584] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10283), 1, + ACTIONS(10329), 1, anon_sym_EQ, - STATE(7861), 1, + STATE(7905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(647), 17, + ACTIONS(235), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662710,15 +667964,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [364085] = 4, + [366617] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7862), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, + anon_sym_SEMI, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10331), 1, + aux_sym_proc_token1, + ACTIONS(10333), 1, + anon_sym_end, + STATE(161), 1, + sym__base_method_def, + STATE(7906), 1, + sym_heredoc_body, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(11463), 1, + sym__enum_statements, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [366678] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4908), 18, + ACTIONS(4928), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -662737,17 +668033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [364116] = 5, + [366709] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10285), 1, + ACTIONS(10335), 1, anon_sym_EQ, - STATE(7863), 1, + STATE(7908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1193), 17, + ACTIONS(1217), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662765,15 +668061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [364149] = 4, + [366742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7864), 1, + STATE(7909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4956), 18, + ACTIONS(4932), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -662792,156 +668088,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [364180] = 19, + [366773] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + ACTIONS(10281), 1, anon_sym_SEMI, - ACTIONS(10225), 1, + ACTIONS(10287), 1, anon_sym_def, - ACTIONS(10227), 1, + ACTIONS(10289), 1, sym_class_var, - ACTIONS(10229), 1, + ACTIONS(10291), 1, sym_private, - ACTIONS(10231), 1, + ACTIONS(10293), 1, sym_protected, - ACTIONS(10287), 1, + ACTIONS(10337), 1, aux_sym_proc_token1, - ACTIONS(10289), 1, + ACTIONS(10339), 1, anon_sym_end, - STATE(150), 1, + STATE(161), 1, sym__base_method_def, - STATE(7865), 1, + STATE(7910), 1, sym_heredoc_body, - STATE(7933), 1, + STATE(8002), 1, aux_sym__enum_statements_repeat1, - STATE(9757), 1, + STATE(9922), 1, sym__enum_statement, - STATE(9762), 1, + STATE(9943), 1, sym_constant, - STATE(11352), 1, + STATE(11020), 1, sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, + STATE(10135), 3, sym_annotation, sym_method_def, sym_const_assign, - [364241] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10291), 1, - anon_sym_EQ, - STATE(7866), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(439), 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, - [364274] = 4, + [366834] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7867), 1, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(10341), 1, + anon_sym_DASH_GT, + STATE(7911), 1, sym_heredoc_body, + STATE(10197), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 18, + ACTIONS(5022), 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, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, - anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, - [364305] = 19, + anon_sym_when, + anon_sym_in, + [366871] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + ACTIONS(10281), 1, anon_sym_SEMI, - ACTIONS(10225), 1, + ACTIONS(10287), 1, anon_sym_def, - ACTIONS(10227), 1, + ACTIONS(10289), 1, sym_class_var, - ACTIONS(10229), 1, + ACTIONS(10291), 1, sym_private, - ACTIONS(10231), 1, - sym_protected, ACTIONS(10293), 1, + sym_protected, + ACTIONS(10343), 1, aux_sym_proc_token1, - ACTIONS(10295), 1, + ACTIONS(10345), 1, anon_sym_end, - STATE(150), 1, + STATE(161), 1, sym__base_method_def, - STATE(7868), 1, + STATE(7912), 1, sym_heredoc_body, - STATE(7933), 1, + STATE(8002), 1, aux_sym__enum_statements_repeat1, - STATE(9757), 1, + STATE(9922), 1, sym__enum_statement, - STATE(9762), 1, + STATE(9943), 1, sym_constant, - STATE(11870), 1, + STATE(11768), 1, sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, + STATE(10135), 3, sym_annotation, sym_method_def, sym_const_assign, - [364366] = 5, + [366932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10297), 1, + ACTIONS(10249), 1, anon_sym_EQ, - STATE(7869), 1, + STATE(7913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(579), 17, + ACTIONS(733), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -662959,39 +668230,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [364399] = 4, + [366965] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7870), 1, + ACTIONS(10257), 1, + anon_sym_EQ, + STATE(7914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4932), 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, + ACTIONS(721), 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, + [366998] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10347), 1, + anon_sym_EQ, + STATE(7915), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(437), 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, + [367031] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7916), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4980), 6, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, + anon_sym_AT_LBRACK, + anon_sym_DOLLAR, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + ACTIONS(4982), 12, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [364430] = 5, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_type, + anon_sym_union, + anon_sym_def, + anon_sym_include, + sym_identifier, + sym_private, + sym_protected, + anon_sym_alias, + [367064] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10299), 1, + ACTIONS(10349), 1, anon_sym_EQ, - STATE(7871), 1, + STATE(7917), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(297), 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, + [367097] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10351), 1, + anon_sym_EQ, + STATE(7918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -663014,23 +668370,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [364463] = 8, + [367130] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, + ACTIONS(10273), 1, anon_sym_forall, - ACTIONS(10301), 1, + ACTIONS(10353), 1, anon_sym_LPAREN, - ACTIONS(10303), 1, + ACTIONS(10355), 1, aux_sym_top_level_fun_def_token1, - STATE(7872), 1, + STATE(7919), 1, sym_heredoc_body, - STATE(8225), 1, + STATE(8094), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5026), 14, + ACTIONS(5002), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663045,17 +668401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364502] = 5, + [367169] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10305), 1, + ACTIONS(10253), 1, anon_sym_EQ, - STATE(7873), 1, + STATE(7920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(235), 17, + ACTIONS(311), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -663073,44 +668429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [364535] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7874), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4916), 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_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [364566] = 5, + [367202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10307), 1, + ACTIONS(10357), 1, anon_sym_EQ, - STATE(7875), 1, + STATE(7921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(799), 17, + ACTIONS(1193), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -663128,17 +668457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [364599] = 5, + [367235] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10309), 1, + ACTIONS(10359), 1, anon_sym_EQ, - STATE(7876), 1, + STATE(7922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(517), 17, + ACTIONS(861), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -663156,15 +668485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [364632] = 4, + [367268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7877), 1, + STATE(7923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4964), 18, + ACTIONS(4976), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663183,17 +668512,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [364663] = 5, + [367299] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7878), 1, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10367), 1, + anon_sym_PIPE, + ACTIONS(10369), 1, + anon_sym_QMARK, + STATE(7924), 1, sym_heredoc_body, - STATE(7902), 1, + STATE(7944), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 16, + ACTIONS(4898), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [367341] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10371), 1, + anon_sym_PIPE, + STATE(7925), 1, + sym_heredoc_body, + STATE(7927), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4883), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663206,313 +668569,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_end, anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [364695] = 18, + [367375] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10311), 1, - anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7879), 1, + STATE(7926), 1, sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(11990), 1, - sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [364753] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + ACTIONS(4618), 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, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10313), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7880), 1, - sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(11509), 1, - sym__enum_statements, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [364811] = 18, + aux_sym_top_level_fun_def_token1, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [367405] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10315), 1, - anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7881), 1, - sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(11304), 1, - sym__enum_statements, + ACTIONS(10373), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [364869] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + STATE(7927), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 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, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10317), 1, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7882), 1, - sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(11672), 1, - sym__enum_statements, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [364927] = 10, + anon_sym_STAR, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [367437] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, + ACTIONS(10237), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10239), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10241), 1, anon_sym_STAR, - ACTIONS(10325), 1, - anon_sym_PIPE, - ACTIONS(10327), 1, + ACTIONS(10245), 1, anon_sym_QMARK, - STATE(7883), 1, - sym_heredoc_body, - STATE(7899), 1, + ACTIONS(10371), 1, + anon_sym_PIPE, + STATE(7925), 1, aux_sym_union_type_repeat1, + STATE(7928), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 11, + ACTIONS(4890), 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_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [364969] = 10, + anon_sym_forall, + anon_sym_else, + [367479] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, + ACTIONS(10237), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10239), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10241), 1, anon_sym_STAR, - ACTIONS(10325), 1, - anon_sym_PIPE, - ACTIONS(10327), 1, + ACTIONS(10245), 1, anon_sym_QMARK, - STATE(7884), 1, - sym_heredoc_body, - STATE(7899), 1, + ACTIONS(10371), 1, + anon_sym_PIPE, + STATE(7925), 1, aux_sym_union_type_repeat1, + STATE(7929), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, ACTIONS(4894), 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_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [365011] = 5, + anon_sym_forall, + anon_sym_else, + [367521] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7885), 1, + ACTIONS(10273), 1, + anon_sym_forall, + ACTIONS(10376), 1, + aux_sym_top_level_fun_def_token1, + STATE(7930), 1, sym_heredoc_body, - STATE(7899), 1, - aux_sym_union_type_repeat1, + STATE(8130), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 16, + ACTIONS(5038), 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, + [367557] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10378), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(10380), 1, anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, + ACTIONS(10382), 1, anon_sym_STAR, + ACTIONS(10384), 1, anon_sym_PIPE, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, + ACTIONS(10386), 1, anon_sym_QMARK, - sym_private, - sym_protected, - [365043] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10329), 1, - anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7886), 1, + STATE(7931), 1, sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(11586), 1, - sym__enum_statements, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [365101] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10331), 1, - anon_sym_PIPE, + STATE(7938), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7887), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 15, + ACTIONS(4894), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663520,35 +668746,31 @@ 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_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_forall, - anon_sym_QMARK, - [365133] = 10, + [367599] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, + ACTIONS(10237), 1, anon_sym_LBRACK, - ACTIONS(10190), 1, + ACTIONS(10239), 1, anon_sym_DOT, - ACTIONS(10192), 1, + ACTIONS(10241), 1, anon_sym_STAR, - ACTIONS(10196), 1, + ACTIONS(10245), 1, anon_sym_QMARK, - ACTIONS(10334), 1, + ACTIONS(10371), 1, anon_sym_PIPE, - STATE(7888), 1, - sym_heredoc_body, - STATE(7902), 1, + STATE(7925), 1, aux_sym_union_type_repeat1, + STATE(7932), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4968), 11, + ACTIONS(4898), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663560,118 +668782,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_forall, anon_sym_else, - [365175] = 5, + [367641] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10336), 1, - anon_sym_LPAREN2, - STATE(7889), 1, + STATE(7925), 1, + aux_sym_union_type_repeat1, + STATE(7933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 16, + ACTIONS(4875), 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_DOT, anon_sym_end, anon_sym_STAR, anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [365207] = 10, + anon_sym_else, + [367673] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, - anon_sym_LBRACK, - ACTIONS(10340), 1, - anon_sym_DOT, - ACTIONS(10342), 1, - anon_sym_STAR, - ACTIONS(10344), 1, - anon_sym_PIPE, - ACTIONS(10346), 1, - anon_sym_QMARK, - STATE(7890), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, + anon_sym_SEMI, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10388), 1, + anon_sym_end, + STATE(161), 1, + sym__base_method_def, + STATE(7934), 1, sym_heredoc_body, - STATE(7900), 1, - aux_sym_union_type_repeat1, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(11467), 1, + sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 11, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [367731] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10273), 1, + anon_sym_forall, + ACTIONS(10390), 1, + aux_sym_top_level_fun_def_token1, + STATE(7935), 1, + sym_heredoc_body, + STATE(8085), 1, + sym_forall, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5016), 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_COMMA, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_forall, - [365249] = 10, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [367767] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, - anon_sym_LBRACK, - ACTIONS(10340), 1, - anon_sym_DOT, - ACTIONS(10342), 1, - anon_sym_STAR, - ACTIONS(10344), 1, - anon_sym_PIPE, - ACTIONS(10346), 1, - anon_sym_QMARK, - STATE(7891), 1, + ACTIONS(10273), 1, + anon_sym_forall, + ACTIONS(10392), 1, + aux_sym_top_level_fun_def_token1, + STATE(7936), 1, sym_heredoc_body, - STATE(7900), 1, - aux_sym_union_type_repeat1, + STATE(8176), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 11, + ACTIONS(4996), 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_COMMA, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_forall, - [365291] = 10, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [367803] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, + ACTIONS(10378), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10380), 1, anon_sym_DOT, - ACTIONS(10342), 1, + ACTIONS(10382), 1, anon_sym_STAR, - ACTIONS(10344), 1, + ACTIONS(10384), 1, anon_sym_PIPE, - ACTIONS(10346), 1, + ACTIONS(10386), 1, anon_sym_QMARK, - STATE(7892), 1, + STATE(7937), 1, sym_heredoc_body, - STATE(7900), 1, + STATE(7938), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4894), 11, + ACTIONS(4898), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663683,27 +668939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_end, anon_sym_forall, - [365333] = 10, + [367845] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, - anon_sym_LBRACK, - ACTIONS(10340), 1, - anon_sym_DOT, - ACTIONS(10342), 1, - anon_sym_STAR, - ACTIONS(10344), 1, + ACTIONS(10384), 1, anon_sym_PIPE, - ACTIONS(10346), 1, - anon_sym_QMARK, - STATE(7893), 1, + STATE(7938), 1, sym_heredoc_body, - STATE(7900), 1, + STATE(7942), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 11, + ACTIONS(4883), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663711,53 +668959,35 @@ 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_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_forall, - [365375] = 10, + anon_sym_QMARK, + [367879] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, + ACTIONS(10378), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10380), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10382), 1, anon_sym_STAR, - ACTIONS(10325), 1, + ACTIONS(10384), 1, anon_sym_PIPE, - ACTIONS(10327), 1, + ACTIONS(10386), 1, anon_sym_QMARK, - STATE(7894), 1, - sym_heredoc_body, - STATE(7899), 1, + STATE(7938), 1, aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4898), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [365417] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7895), 1, + STATE(7939), 1, sym_heredoc_body, - STATE(7900), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 16, + ACTIONS(4879), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663765,36 +668995,31 @@ 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_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, - anon_sym_QMARK, - [365449] = 10, + [367921] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10325), 1, + ACTIONS(10367), 1, anon_sym_PIPE, - ACTIONS(10327), 1, + ACTIONS(10369), 1, anon_sym_QMARK, - STATE(7896), 1, + STATE(7940), 1, sym_heredoc_body, - STATE(7899), 1, + STATE(7944), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 11, + ACTIONS(4894), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DASH_GT, @@ -663806,127 +669031,44 @@ static const uint16_t ts_small_parse_table[] = { sym_class_var, sym_private, sym_protected, - [365491] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10348), 1, - anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7897), 1, - sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(11861), 1, - sym__enum_statements, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [365549] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, - ACTIONS(10350), 1, - anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7898), 1, - sym_heredoc_body, - STATE(7933), 1, - aux_sym__enum_statements_repeat1, - STATE(9757), 1, - sym__enum_statement, - STATE(9762), 1, - sym_constant, - STATE(12023), 1, - sym__enum_statements, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [365607] = 6, + [367963] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10325), 1, - anon_sym_PIPE, - STATE(7899), 1, + STATE(7941), 1, sym_heredoc_body, - STATE(7916), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 15, + ACTIONS(4861), 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_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - anon_sym_QMARK, - sym_private, - sym_protected, - [365641] = 6, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [367993] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10344), 1, + ACTIONS(10394), 1, anon_sym_PIPE, - STATE(7887), 1, - aux_sym_union_type_repeat1, - STATE(7900), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 15, + STATE(7942), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -663942,418 +669084,541 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_forall, anon_sym_QMARK, - [365675] = 4, + [368025] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7901), 1, + STATE(7938), 1, + aux_sym_union_type_repeat1, + STATE(7943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 17, + ACTIONS(4875), 16, 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_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [365705] = 6, + anon_sym_QMARK, + [368057] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10334), 1, + ACTIONS(10367), 1, anon_sym_PIPE, - STATE(7902), 1, + STATE(7944), 1, sym_heredoc_body, - STATE(7904), 1, + STATE(7960), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 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, + ACTIONS(4883), 15, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT, anon_sym_end, + anon_sym_AT_LBRACK, anon_sym_STAR, - anon_sym_forall, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, anon_sym_QMARK, - anon_sym_else, - [365739] = 7, + sym_private, + sym_protected, + [368091] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, - anon_sym_forall, - ACTIONS(10352), 1, - aux_sym_top_level_fun_def_token1, - STATE(7903), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, + anon_sym_SEMI, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10397), 1, + anon_sym_end, + STATE(161), 1, + sym__base_method_def, + STATE(7945), 1, sym_heredoc_body, - STATE(8103), 1, - sym_forall, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(11258), 1, + sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4988), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [368149] = 18, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10399), 1, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [365775] = 5, + STATE(161), 1, + sym__base_method_def, + STATE(7946), 1, + sym_heredoc_body, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(12024), 1, + sym__enum_statements, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [368207] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10354), 1, - anon_sym_PIPE, + ACTIONS(10401), 1, + anon_sym_LPAREN2, + STATE(7947), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7904), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 15, + ACTIONS(4902), 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_DOT, anon_sym_end, anon_sym_STAR, + anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - anon_sym_else, - [365807] = 10, + [368239] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, - anon_sym_LBRACK, - ACTIONS(10190), 1, - anon_sym_DOT, - ACTIONS(10192), 1, - anon_sym_STAR, - ACTIONS(10196), 1, - anon_sym_QMARK, - ACTIONS(10334), 1, - anon_sym_PIPE, - STATE(7902), 1, - aux_sym_union_type_repeat1, - STATE(7905), 1, + ACTIONS(10273), 1, + anon_sym_forall, + ACTIONS(10403), 1, + aux_sym_top_level_fun_def_token1, + STATE(7948), 1, sym_heredoc_body, + STATE(8110), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 11, + ACTIONS(5010), 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, - [365849] = 10, + anon_sym_when, + anon_sym_in, + [368275] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10190), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10192), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10196), 1, - anon_sym_QMARK, - ACTIONS(10334), 1, + ACTIONS(10367), 1, anon_sym_PIPE, - STATE(7902), 1, + ACTIONS(10369), 1, + anon_sym_QMARK, + STATE(7944), 1, aux_sym_union_type_repeat1, - STATE(7906), 1, + STATE(7949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 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, + ACTIONS(4879), 11, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_forall, - anon_sym_else, - [365891] = 10, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [368317] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, + ACTIONS(10378), 1, anon_sym_LBRACK, - ACTIONS(10190), 1, + ACTIONS(10380), 1, anon_sym_DOT, - ACTIONS(10192), 1, + ACTIONS(10382), 1, anon_sym_STAR, - ACTIONS(10196), 1, - anon_sym_QMARK, - ACTIONS(10334), 1, + ACTIONS(10384), 1, anon_sym_PIPE, - STATE(7902), 1, + ACTIONS(10386), 1, + anon_sym_QMARK, + STATE(7938), 1, aux_sym_union_type_repeat1, - STATE(7907), 1, + STATE(7950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4936), 11, + ACTIONS(4890), 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, - [365933] = 10, + [368359] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10188), 1, - anon_sym_LBRACK, - ACTIONS(10190), 1, - anon_sym_DOT, - ACTIONS(10192), 1, - anon_sym_STAR, - ACTIONS(10196), 1, - anon_sym_QMARK, - ACTIONS(10334), 1, - anon_sym_PIPE, - STATE(7902), 1, + STATE(7944), 1, aux_sym_union_type_repeat1, - STATE(7908), 1, + STATE(7951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 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, + ACTIONS(4875), 16, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - anon_sym_forall, - anon_sym_else, - [365975] = 7, + anon_sym_AT_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + [368391] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, - anon_sym_forall, - ACTIONS(10357), 1, - aux_sym_top_level_fun_def_token1, - STATE(7909), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, + anon_sym_SEMI, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10405), 1, + anon_sym_end, + STATE(161), 1, + sym__base_method_def, + STATE(7952), 1, sym_heredoc_body, - STATE(8218), 1, - sym_forall, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(12011), 1, + sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5038), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [368449] = 18, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10407), 1, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [366011] = 18, + STATE(161), 1, + sym__base_method_def, + STATE(7953), 1, + sym_heredoc_body, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(11324), 1, + sym__enum_statements, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [368507] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(10067), 1, + ACTIONS(10117), 1, anon_sym_AT_LBRACK, - ACTIONS(10219), 1, + ACTIONS(10281), 1, anon_sym_SEMI, - ACTIONS(10225), 1, + ACTIONS(10287), 1, anon_sym_def, - ACTIONS(10227), 1, + ACTIONS(10289), 1, sym_class_var, - ACTIONS(10229), 1, + ACTIONS(10291), 1, sym_private, - ACTIONS(10231), 1, + ACTIONS(10293), 1, sym_protected, - ACTIONS(10359), 1, + ACTIONS(10409), 1, anon_sym_end, - STATE(150), 1, + STATE(161), 1, sym__base_method_def, - STATE(7910), 1, + STATE(7954), 1, sym_heredoc_body, - STATE(7933), 1, + STATE(8002), 1, aux_sym__enum_statements_repeat1, - STATE(9757), 1, + STATE(9922), 1, sym__enum_statement, - STATE(9762), 1, + STATE(9943), 1, sym_constant, - STATE(11537), 1, + STATE(12044), 1, sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, + STATE(10135), 3, sym_annotation, sym_method_def, sym_const_assign, - [366069] = 4, + [368565] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7911), 1, + ACTIONS(10237), 1, + anon_sym_LBRACK, + ACTIONS(10239), 1, + anon_sym_DOT, + ACTIONS(10241), 1, + anon_sym_STAR, + ACTIONS(10245), 1, + anon_sym_QMARK, + ACTIONS(10371), 1, + anon_sym_PIPE, + STATE(7925), 1, + aux_sym_union_type_repeat1, + STATE(7955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4622), 17, + ACTIONS(4924), 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_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_end, - aux_sym_top_level_fun_def_token1, anon_sym_forall, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [366099] = 7, + [368607] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, - anon_sym_forall, - ACTIONS(10361), 1, - aux_sym_top_level_fun_def_token1, - STATE(7912), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, + anon_sym_SEMI, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10411), 1, + anon_sym_end, + STATE(161), 1, + sym__base_method_def, + STATE(7956), 1, sym_heredoc_body, - STATE(8189), 1, - sym_forall, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(11119), 1, + sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5020), 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, - [366135] = 7, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [368665] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, - anon_sym_forall, - ACTIONS(10363), 1, - aux_sym_top_level_fun_def_token1, - STATE(7913), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, + anon_sym_SEMI, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10413), 1, + anon_sym_end, + STATE(161), 1, + sym__base_method_def, + STATE(7957), 1, sym_heredoc_body, - STATE(8067), 1, - sym_forall, + STATE(8002), 1, + aux_sym__enum_statements_repeat1, + STATE(9922), 1, + sym__enum_statement, + STATE(9943), 1, + sym_constant, + STATE(12136), 1, + sym__enum_statements, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4980), 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, - [366171] = 10, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [368723] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, + ACTIONS(10378), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10380), 1, anon_sym_DOT, - ACTIONS(10342), 1, + ACTIONS(10382), 1, anon_sym_STAR, - ACTIONS(10344), 1, + ACTIONS(10384), 1, anon_sym_PIPE, - ACTIONS(10346), 1, + ACTIONS(10386), 1, anon_sym_QMARK, - STATE(7900), 1, + STATE(7938), 1, aux_sym_union_type_repeat1, - STATE(7914), 1, + STATE(7958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 11, + ACTIONS(4861), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -664365,27 +669630,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_end, anon_sym_forall, - [366213] = 10, + [368765] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10325), 1, + ACTIONS(10367), 1, anon_sym_PIPE, - ACTIONS(10327), 1, + ACTIONS(10369), 1, anon_sym_QMARK, - STATE(7899), 1, + STATE(7944), 1, aux_sym_union_type_repeat1, - STATE(7915), 1, + STATE(7959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 11, + ACTIONS(4861), 11, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DASH_GT, @@ -664397,15 +669662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_class_var, sym_private, sym_protected, - [366255] = 5, + [368807] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10365), 1, + ACTIONS(10415), 1, anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7916), 2, + STATE(7960), 2, sym_heredoc_body, aux_sym_union_type_repeat1, ACTIONS(4875), 15, @@ -664424,77 +669689,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [366287] = 16, + [368839] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(803), 1, - anon_sym_do, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(10368), 1, - sym_identifier, - ACTIONS(10370), 1, - anon_sym_LPAREN, - ACTIONS(10372), 1, - aux_sym_proc_token1, - ACTIONS(10374), 1, - anon_sym_COLON_COLON, - ACTIONS(10380), 1, - sym_self, - STATE(5482), 1, - sym__global_method, - STATE(7917), 1, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10367), 1, + anon_sym_PIPE, + ACTIONS(10369), 1, + anon_sym_QMARK, + STATE(7944), 1, + aux_sym_union_type_repeat1, + STATE(7961), 1, sym_heredoc_body, - STATE(11035), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10376), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(10378), 2, - sym_instance_var, + ACTIONS(4890), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, sym_class_var, - STATE(5977), 2, - sym_do_end_block, - sym_brace_block, - [366340] = 4, + sym_private, + sym_protected, + [368881] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7918), 1, + ACTIONS(10237), 1, + anon_sym_LBRACK, + ACTIONS(10239), 1, + anon_sym_DOT, + ACTIONS(10241), 1, + anon_sym_STAR, + ACTIONS(10245), 1, + anon_sym_QMARK, + ACTIONS(10371), 1, + anon_sym_PIPE, + STATE(7925), 1, + aux_sym_union_type_repeat1, + STATE(7962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4972), 16, + ACTIONS(4972), 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_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, anon_sym_forall, - anon_sym_QMARK, - [366369] = 4, + anon_sym_else, + [368923] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7919), 1, + STATE(7963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4976), 16, + ACTIONS(4936), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -664511,15 +669778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [366398] = 4, + [368952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7920), 1, + STATE(7964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4912), 16, + ACTIONS(4968), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -664536,190 +669803,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [366427] = 16, + [368981] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1063), 1, + ACTIONS(803), 1, anon_sym_do, - ACTIONS(1077), 1, + ACTIONS(817), 1, sym__start_of_brace_block, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(10382), 1, + ACTIONS(10418), 1, sym_identifier, - ACTIONS(10384), 1, + ACTIONS(10420), 1, anon_sym_LPAREN, - ACTIONS(10386), 1, + ACTIONS(10422), 1, aux_sym_proc_token1, - ACTIONS(10388), 1, + ACTIONS(10424), 1, anon_sym_COLON_COLON, - ACTIONS(10394), 1, + ACTIONS(10430), 1, sym_self, - STATE(6608), 1, + STATE(5662), 1, sym__global_method, - STATE(7921), 1, + STATE(7965), 1, sym_heredoc_body, - STATE(11113), 1, + STATE(11082), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10390), 2, + ACTIONS(10426), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(10392), 2, + ACTIONS(10428), 2, sym_instance_var, sym_class_var, - STATE(6914), 2, + STATE(5932), 2, sym_do_end_block, sym_brace_block, - [366480] = 16, + [369034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - ACTIONS(1217), 1, - anon_sym_do, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(10396), 1, - sym_identifier, - ACTIONS(10398), 1, - anon_sym_LPAREN, - ACTIONS(10400), 1, - aux_sym_proc_token1, - ACTIONS(10402), 1, - anon_sym_COLON_COLON, - ACTIONS(10408), 1, - sym_self, - STATE(5592), 1, - sym__global_method, - STATE(7922), 1, + STATE(7966), 1, sym_heredoc_body, - STATE(11331), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10404), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(10406), 2, - sym_instance_var, - sym_class_var, - STATE(5773), 2, - sym_do_end_block, - sym_brace_block, - [366533] = 16, + ACTIONS(4920), 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, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [369063] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(239), 1, - anon_sym_do, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(10410), 1, - sym_identifier, - ACTIONS(10412), 1, - anon_sym_LPAREN, - ACTIONS(10414), 1, - aux_sym_proc_token1, - ACTIONS(10416), 1, - anon_sym_COLON_COLON, - ACTIONS(10422), 1, - sym_self, - STATE(2775), 1, - sym__global_method, - STATE(7923), 1, + STATE(7967), 1, sym_heredoc_body, - STATE(11250), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10418), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(10420), 2, - sym_instance_var, - sym_class_var, - STATE(2896), 2, - sym_do_end_block, - sym_brace_block, - [366586] = 16, + ACTIONS(4960), 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, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [369092] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, + ACTIONS(945), 1, sym__start_of_brace_block, - ACTIONS(1211), 1, + ACTIONS(1231), 1, anon_sym_do, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(10424), 1, + ACTIONS(10432), 1, sym_identifier, - ACTIONS(10426), 1, + ACTIONS(10434), 1, anon_sym_LPAREN, - ACTIONS(10428), 1, + ACTIONS(10436), 1, aux_sym_proc_token1, - ACTIONS(10430), 1, + ACTIONS(10438), 1, anon_sym_COLON_COLON, - ACTIONS(10436), 1, + ACTIONS(10444), 1, sym_self, - STATE(2483), 1, + STATE(5357), 1, sym__global_method, - STATE(7924), 1, + STATE(7968), 1, sym_heredoc_body, - STATE(11162), 1, + STATE(11586), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10432), 2, + ACTIONS(10440), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(10434), 2, + ACTIONS(10442), 2, sym_instance_var, sym_class_var, - STATE(2654), 2, + STATE(5611), 2, sym_do_end_block, sym_brace_block, - [366639] = 6, + [369145] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6686), 1, - anon_sym_COMMA, - STATE(7925), 1, + STATE(7969), 1, sym_heredoc_body, - STATE(7928), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 14, + ACTIONS(4948), 16, 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_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [366672] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [369174] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7926), 1, + STATE(7970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 16, + ACTIONS(4916), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -664736,15 +669977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [366701] = 4, + [369203] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7927), 1, + STATE(7971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4952), 16, + ACTIONS(4902), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -664761,18 +670002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [366730] = 5, + [369232] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10438), 1, + ACTIONS(10446), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7928), 2, + STATE(7972), 2, sym_heredoc_body, aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5934), 14, + ACTIONS(5970), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -664787,40 +670028,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366761] = 4, + [369263] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7929), 1, + ACTIONS(993), 1, + anon_sym_do, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(10449), 1, + sym_identifier, + ACTIONS(10451), 1, + anon_sym_LPAREN, + ACTIONS(10453), 1, + aux_sym_proc_token1, + ACTIONS(10455), 1, + anon_sym_COLON_COLON, + ACTIONS(10461), 1, + sym_self, + STATE(5961), 1, + sym__global_method, + STATE(7973), 1, sym_heredoc_body, + STATE(11504), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 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, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [366790] = 4, + ACTIONS(10457), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(10459), 2, + sym_instance_var, + sym_class_var, + STATE(6328), 2, + sym_do_end_block, + sym_brace_block, + [369316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7930), 1, + STATE(7974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4964), 16, + ACTIONS(4928), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -664837,164 +670090,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [366819] = 16, + [369345] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(993), 1, - anon_sym_do, - ACTIONS(995), 1, + ACTIONS(865), 1, sym__start_of_brace_block, - ACTIONS(8419), 1, + ACTIONS(1213), 1, + anon_sym_do, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(10441), 1, + ACTIONS(10463), 1, sym_identifier, - ACTIONS(10443), 1, + ACTIONS(10465), 1, anon_sym_LPAREN, - ACTIONS(10445), 1, + ACTIONS(10467), 1, aux_sym_proc_token1, - ACTIONS(10447), 1, + ACTIONS(10469), 1, anon_sym_COLON_COLON, - ACTIONS(10453), 1, + ACTIONS(10475), 1, sym_self, - STATE(6084), 1, + STATE(5149), 1, sym__global_method, - STATE(7931), 1, + STATE(7975), 1, sym_heredoc_body, - STATE(11457), 1, + STATE(11336), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10449), 2, + ACTIONS(10471), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(10451), 2, + ACTIONS(10473), 2, sym_instance_var, sym_class_var, - STATE(6438), 2, + STATE(5294), 2, sym_do_end_block, sym_brace_block, - [366872] = 16, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10455), 1, - anon_sym_SEMI, - ACTIONS(10458), 1, - anon_sym_end, - ACTIONS(10460), 1, - anon_sym_AT_LBRACK, - ACTIONS(10463), 1, - anon_sym_def, - ACTIONS(10466), 1, - sym__constant_segment, - ACTIONS(10469), 1, - anon_sym_COLON_COLON, - ACTIONS(10472), 1, - sym_class_var, - ACTIONS(10475), 1, - sym_private, - ACTIONS(10478), 1, - sym_protected, - STATE(150), 1, - sym__base_method_def, - STATE(9762), 1, - sym_constant, - STATE(10464), 1, - sym__enum_statement, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(7932), 2, - sym_heredoc_body, - aux_sym__enum_statements_repeat1, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [366925] = 17, + [369398] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(239), 1, + anon_sym_do, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(10067), 1, - anon_sym_AT_LBRACK, - ACTIONS(10219), 1, - anon_sym_SEMI, - ACTIONS(10225), 1, - anon_sym_def, - ACTIONS(10227), 1, - sym_class_var, - ACTIONS(10229), 1, - sym_private, - ACTIONS(10231), 1, - sym_protected, + ACTIONS(10477), 1, + sym_identifier, + ACTIONS(10479), 1, + anon_sym_LPAREN, ACTIONS(10481), 1, - anon_sym_end, - STATE(150), 1, - sym__base_method_def, - STATE(7932), 1, - aux_sym__enum_statements_repeat1, - STATE(7933), 1, + aux_sym_proc_token1, + ACTIONS(10483), 1, + anon_sym_COLON_COLON, + ACTIONS(10489), 1, + sym_self, + STATE(2788), 1, + sym__global_method, + STATE(7976), 1, sym_heredoc_body, - STATE(9762), 1, + STATE(11543), 1, sym_constant, - STATE(9942), 1, - sym__enum_statement, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10388), 3, - sym_annotation, - sym_method_def, - sym_const_assign, - [366980] = 16, + ACTIONS(10485), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(10487), 2, + sym_instance_var, + sym_class_var, + STATE(2969), 2, + sym_do_end_block, + sym_brace_block, + [369451] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, + ACTIONS(713), 1, sym__start_of_brace_block, - ACTIONS(1227), 1, + ACTIONS(1229), 1, anon_sym_do, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(10483), 1, + ACTIONS(10491), 1, sym_identifier, - ACTIONS(10485), 1, + ACTIONS(10493), 1, anon_sym_LPAREN, - ACTIONS(10487), 1, + ACTIONS(10495), 1, aux_sym_proc_token1, - ACTIONS(10489), 1, + ACTIONS(10497), 1, anon_sym_COLON_COLON, - ACTIONS(10495), 1, + ACTIONS(10503), 1, sym_self, - STATE(5301), 1, + STATE(3873), 1, sym__global_method, - STATE(7934), 1, + STATE(7977), 1, sym_heredoc_body, - STATE(11539), 1, + STATE(11545), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10491), 2, + ACTIONS(10499), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(10493), 2, + ACTIONS(10501), 2, sym_instance_var, sym_class_var, - STATE(5521), 2, + STATE(4283), 2, sym_do_end_block, sym_brace_block, - [367033] = 4, + [369504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7935), 1, + STATE(7978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4924), 16, + ACTIONS(4932), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665011,41 +670226,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [367062] = 6, + [369533] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10497), 1, - anon_sym_COMMA, - STATE(7936), 1, + STATE(7979), 1, sym_heredoc_body, - STATE(7961), 1, - aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5058), 14, + ACTIONS(4952), 16, 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_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [367095] = 6, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [369562] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, + ACTIONS(10273), 1, anon_sym_forall, - STATE(7937), 1, + STATE(7980), 1, sym_heredoc_body, - STATE(8195), 1, + STATE(8135), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, @@ -665065,81 +670278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367128] = 16, + [369595] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(521), 1, - anon_sym_do, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(10499), 1, - sym_identifier, - ACTIONS(10501), 1, - anon_sym_LPAREN, - ACTIONS(10503), 1, - aux_sym_proc_token1, ACTIONS(10505), 1, - anon_sym_COLON_COLON, - ACTIONS(10511), 1, - sym_self, - STATE(4220), 1, - sym__global_method, - STATE(7938), 1, - sym_heredoc_body, - STATE(11725), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10507), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(10509), 2, - sym_instance_var, - sym_class_var, - STATE(4413), 2, - sym_do_end_block, - sym_brace_block, - [367181] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7939), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4916), 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, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [367210] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6686), 1, - anon_sym_COMMA, - STATE(7925), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(7940), 1, + STATE(7981), 1, sym_heredoc_body, + STATE(7987), 1, + aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5737), 14, + ACTIONS(5058), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665154,118 +670305,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367243] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7941), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4920), 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, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [367272] = 16, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - ACTIONS(1219), 1, - anon_sym_do, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(10513), 1, - sym_identifier, - ACTIONS(10515), 1, - anon_sym_LPAREN, - ACTIONS(10517), 1, - aux_sym_proc_token1, - ACTIONS(10519), 1, - anon_sym_COLON_COLON, - ACTIONS(10525), 1, - sym_self, - STATE(3262), 1, - sym__global_method, - STATE(7942), 1, - sym_heredoc_body, - STATE(11373), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10521), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(10523), 2, - sym_instance_var, - sym_class_var, - STATE(3516), 2, - sym_do_end_block, - sym_brace_block, - [367325] = 16, + [369628] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, + ACTIONS(583), 1, sym__start_of_brace_block, - ACTIONS(1215), 1, + ACTIONS(1225), 1, anon_sym_do, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(10527), 1, + ACTIONS(10507), 1, sym_identifier, - ACTIONS(10529), 1, + ACTIONS(10509), 1, anon_sym_LPAREN, - ACTIONS(10531), 1, + ACTIONS(10511), 1, aux_sym_proc_token1, - ACTIONS(10533), 1, + ACTIONS(10513), 1, anon_sym_COLON_COLON, - ACTIONS(10539), 1, + ACTIONS(10519), 1, sym_self, - STATE(5123), 1, + STATE(3409), 1, sym__global_method, - STATE(7943), 1, + STATE(7982), 1, sym_heredoc_body, - STATE(11289), 1, + STATE(11294), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10535), 2, + ACTIONS(10515), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(10537), 2, + ACTIONS(10517), 2, sym_instance_var, sym_class_var, - STATE(5383), 2, + STATE(3862), 2, sym_do_end_block, sym_brace_block, - [367378] = 6, + [369681] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, - anon_sym_forall, - STATE(7944), 1, + ACTIONS(6572), 1, + anon_sym_COMMA, + STATE(7983), 1, sym_heredoc_body, - STATE(8007), 1, - sym_forall, + STATE(7984), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5077), 14, + ACTIONS(5750), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665280,19 +670369,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367411] = 6, + [369714] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, + ACTIONS(6572), 1, + anon_sym_COMMA, + STATE(7972), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(7984), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5856), 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, + [369747] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10273), 1, anon_sym_forall, - STATE(7945), 1, + STATE(7985), 1, sym_heredoc_body, - STATE(8176), 1, + STATE(8142), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5073), 14, + ACTIONS(5074), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665307,56 +670423,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367444] = 16, + [369780] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(381), 1, + ACTIONS(651), 1, anon_sym_do, - ACTIONS(395), 1, + ACTIONS(665), 1, sym__start_of_brace_block, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(10541), 1, + ACTIONS(10521), 1, sym_identifier, - ACTIONS(10543), 1, + ACTIONS(10523), 1, anon_sym_LPAREN, - ACTIONS(10545), 1, + ACTIONS(10525), 1, aux_sym_proc_token1, - ACTIONS(10547), 1, + ACTIONS(10527), 1, anon_sym_COLON_COLON, - ACTIONS(10553), 1, + ACTIONS(10533), 1, sym_self, - STATE(3561), 1, + STATE(4386), 1, sym__global_method, - STATE(7946), 1, + STATE(7986), 1, sym_heredoc_body, - STATE(11205), 1, + STATE(11462), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10549), 2, + ACTIONS(10529), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(10551), 2, + ACTIONS(10531), 2, sym_instance_var, sym_class_var, - STATE(4131), 2, + STATE(4780), 2, sym_do_end_block, sym_brace_block, - [367497] = 6, + [369833] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, - anon_sym_forall, - STATE(7947), 1, - sym_heredoc_body, - STATE(8213), 1, - sym_forall, + ACTIONS(10535), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5081), 14, + STATE(7987), 2, + sym_heredoc_body, + aux_sym_forall_repeat1, + ACTIONS(5078), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665371,19 +670486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367530] = 6, + [369864] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6686), 1, - anon_sym_COMMA, - STATE(7928), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(7948), 1, + ACTIONS(10273), 1, + anon_sym_forall, + STATE(7988), 1, sym_heredoc_body, + STATE(8171), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 14, + ACTIONS(5070), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665398,64 +670513,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367563] = 4, + [369897] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7949), 1, + ACTIONS(1123), 1, + anon_sym_do, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(10538), 1, + sym_identifier, + ACTIONS(10540), 1, + anon_sym_LPAREN, + ACTIONS(10542), 1, + aux_sym_proc_token1, + ACTIONS(10544), 1, + anon_sym_COLON_COLON, + ACTIONS(10550), 1, + sym_self, + STATE(6508), 1, + sym__global_method, + STATE(7989), 1, sym_heredoc_body, + STATE(11160), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4956), 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, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [367592] = 4, + ACTIONS(10546), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(10548), 2, + sym_instance_var, + sym_class_var, + STATE(6884), 2, + sym_do_end_block, + sym_brace_block, + [369950] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7950), 1, + ACTIONS(10273), 1, + anon_sym_forall, + STATE(7990), 1, sym_heredoc_body, + STATE(8252), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4928), 16, + ACTIONS(5066), 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_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [367621] = 6, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [369983] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, + ACTIONS(10273), 1, anon_sym_forall, - STATE(7951), 1, + STATE(7991), 1, sym_heredoc_body, - STATE(8186), 1, + STATE(8196), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, @@ -665475,52 +670604,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367654] = 16, + [370016] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, + ACTIONS(1075), 1, sym__start_of_brace_block, - ACTIONS(1213), 1, + ACTIONS(1227), 1, anon_sym_do, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(10555), 1, + ACTIONS(10552), 1, sym_identifier, - ACTIONS(10557), 1, + ACTIONS(10554), 1, anon_sym_LPAREN, - ACTIONS(10559), 1, + ACTIONS(10556), 1, aux_sym_proc_token1, - ACTIONS(10561), 1, + ACTIONS(10558), 1, anon_sym_COLON_COLON, - ACTIONS(10567), 1, + ACTIONS(10564), 1, sym_self, - STATE(3333), 1, + STATE(5750), 1, sym__global_method, - STATE(7952), 1, + STATE(7992), 1, sym_heredoc_body, - STATE(11247), 1, + STATE(11378), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10563), 2, + ACTIONS(10560), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(10565), 2, + ACTIONS(10562), 2, sym_instance_var, sym_class_var, - STATE(3608), 2, + STATE(6119), 2, sym_do_end_block, sym_brace_block, - [367707] = 4, + [370069] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7953), 1, + STATE(7993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4908), 16, + ACTIONS(4944), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665537,40 +670666,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [367736] = 4, + [370098] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7954), 1, + ACTIONS(301), 1, + sym__start_of_brace_block, + ACTIONS(1223), 1, + anon_sym_do, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(10566), 1, + sym_identifier, + ACTIONS(10568), 1, + anon_sym_LPAREN, + ACTIONS(10570), 1, + aux_sym_proc_token1, + ACTIONS(10572), 1, + anon_sym_COLON_COLON, + ACTIONS(10578), 1, + sym_self, + STATE(2576), 1, + sym__global_method, + STATE(7994), 1, sym_heredoc_body, + STATE(11209), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4932), 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, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_forall, - anon_sym_QMARK, - [367765] = 4, + ACTIONS(10574), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(10576), 2, + sym_instance_var, + sym_class_var, + STATE(2668), 2, + sym_do_end_block, + sym_brace_block, + [370151] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7955), 1, + STATE(7995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4940), 16, + ACTIONS(4912), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665587,19 +670728,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [367794] = 6, + [370180] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, - anon_sym_forall, - STATE(7956), 1, + ACTIONS(6572), 1, + anon_sym_COMMA, + STATE(7972), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(7996), 1, sym_heredoc_body, - STATE(8014), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 14, + ACTIONS(5888), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665614,15 +670755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367827] = 4, + [370213] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7957), 1, + STATE(7997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4944), 16, + ACTIONS(4976), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665639,15 +670780,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [367856] = 4, + [370242] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7958), 1, + ACTIONS(441), 1, + anon_sym_do, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(10580), 1, + sym_identifier, + ACTIONS(10582), 1, + anon_sym_LPAREN, + ACTIONS(10584), 1, + aux_sym_proc_token1, + ACTIONS(10586), 1, + anon_sym_COLON_COLON, + ACTIONS(10592), 1, + sym_self, + STATE(3702), 1, + sym__global_method, + STATE(7998), 1, sym_heredoc_body, + STATE(11252), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4948), 16, + ACTIONS(10588), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(10590), 2, + sym_instance_var, + sym_class_var, + STATE(4015), 2, + sym_do_end_block, + sym_brace_block, + [370295] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10505), 1, + anon_sym_COMMA, + STATE(7981), 1, + aux_sym_forall_repeat1, + STATE(7999), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5044), 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, + [370328] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8000), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4956), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665664,19 +670869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_forall, anon_sym_QMARK, - [367885] = 6, + [370357] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6686), 1, - anon_sym_COMMA, - STATE(7948), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(7959), 1, + ACTIONS(10273), 1, + anon_sym_forall, + STATE(8001), 1, sym_heredoc_body, + STATE(8112), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 14, + ACTIONS(5050), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665691,82 +670896,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [367918] = 16, + [370390] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + ACTIONS(10117), 1, + anon_sym_AT_LBRACK, + ACTIONS(10281), 1, + anon_sym_SEMI, + ACTIONS(10287), 1, + anon_sym_def, + ACTIONS(10289), 1, + sym_class_var, + ACTIONS(10291), 1, + sym_private, + ACTIONS(10293), 1, + sym_protected, + ACTIONS(10594), 1, + anon_sym_end, + STATE(161), 1, + sym__base_method_def, + STATE(8002), 1, + sym_heredoc_body, + STATE(8007), 1, + aux_sym__enum_statements_repeat1, + STATE(9943), 1, + sym_constant, + STATE(9963), 1, + sym__enum_statement, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [370445] = 16, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(393), 1, sym__start_of_brace_block, - ACTIONS(1225), 1, + ACTIONS(1211), 1, anon_sym_do, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(10569), 1, + ACTIONS(10596), 1, sym_identifier, - ACTIONS(10571), 1, + ACTIONS(10598), 1, anon_sym_LPAREN, - ACTIONS(10573), 1, + ACTIONS(10600), 1, aux_sym_proc_token1, - ACTIONS(10575), 1, + ACTIONS(10602), 1, anon_sym_COLON_COLON, - ACTIONS(10581), 1, + ACTIONS(10608), 1, sym_self, - STATE(3533), 1, + STATE(3215), 1, sym__global_method, - STATE(7960), 1, + STATE(8003), 1, sym_heredoc_body, - STATE(11498), 1, + STATE(11420), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10577), 2, + ACTIONS(10604), 2, sym_identifier_method_call, sym_identifier_assign, - ACTIONS(10579), 2, + ACTIONS(10606), 2, sym_instance_var, sym_class_var, - STATE(4103), 2, + STATE(3472), 2, sym_do_end_block, sym_brace_block, - [367971] = 5, + [370498] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10583), 1, - anon_sym_COMMA, + ACTIONS(521), 1, + anon_sym_do, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(10610), 1, + sym_identifier, + ACTIONS(10612), 1, + anon_sym_LPAREN, + ACTIONS(10614), 1, + aux_sym_proc_token1, + ACTIONS(10616), 1, + anon_sym_COLON_COLON, + ACTIONS(10622), 1, + sym_self, + STATE(4075), 1, + sym__global_method, + STATE(8004), 1, + sym_heredoc_body, + STATE(11738), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7961), 2, + ACTIONS(10618), 2, + sym_identifier_method_call, + sym_identifier_assign, + ACTIONS(10620), 2, + sym_instance_var, + sym_class_var, + STATE(4453), 2, + sym_do_end_block, + sym_brace_block, + [370551] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8005), 1, sym_heredoc_body, - aux_sym_forall_repeat1, - ACTIONS(5066), 14, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4908), 16, 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_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [368002] = 6, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [370580] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10497), 1, + ACTIONS(6572), 1, anon_sym_COMMA, - STATE(7936), 1, - aux_sym_forall_repeat1, - STATE(7962), 1, + STATE(7996), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(8006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5048), 14, + ACTIONS(5856), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -665781,144 +671060,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [368035] = 16, + [370613] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(651), 1, - anon_sym_do, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(8419), 1, + ACTIONS(10624), 1, + anon_sym_SEMI, + ACTIONS(10627), 1, + anon_sym_end, + ACTIONS(10629), 1, + anon_sym_AT_LBRACK, + ACTIONS(10632), 1, + anon_sym_def, + ACTIONS(10635), 1, sym__constant_segment, - ACTIONS(10586), 1, - sym_identifier, - ACTIONS(10588), 1, - anon_sym_LPAREN, - ACTIONS(10590), 1, - aux_sym_proc_token1, - ACTIONS(10592), 1, + ACTIONS(10638), 1, anon_sym_COLON_COLON, - ACTIONS(10598), 1, - sym_self, - STATE(4486), 1, - sym__global_method, - STATE(7963), 1, - sym_heredoc_body, - STATE(11415), 1, + ACTIONS(10641), 1, + sym_class_var, + ACTIONS(10644), 1, + sym_private, + ACTIONS(10647), 1, + sym_protected, + STATE(161), 1, + sym__base_method_def, + STATE(9943), 1, sym_constant, + STATE(10445), 1, + sym__enum_statement, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10594), 2, - sym_identifier_method_call, - sym_identifier_assign, - ACTIONS(10596), 2, - sym_instance_var, - sym_class_var, - STATE(4767), 2, - sym_do_end_block, - sym_brace_block, - [368088] = 5, + STATE(8007), 2, + sym_heredoc_body, + aux_sym__enum_statements_repeat1, + STATE(10135), 3, + sym_annotation, + sym_method_def, + sym_const_assign, + [370666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7964), 1, + STATE(8008), 1, sym_heredoc_body, - STATE(8099), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10600), 14, + ACTIONS(4940), 16, 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_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [368118] = 15, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [370695] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10604), 1, - anon_sym_RPAREN, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(10608), 1, + STATE(8009), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4964), 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, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, anon_sym_STAR, - ACTIONS(10610), 1, - anon_sym_AMP, - ACTIONS(10612), 1, - anon_sym_STAR_STAR, - STATE(7965), 1, + anon_sym_PIPE, + anon_sym_forall, + anon_sym_QMARK, + [370724] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10378), 1, + anon_sym_LBRACK, + ACTIONS(10380), 1, + anon_sym_DOT, + ACTIONS(10382), 1, + anon_sym_STAR, + ACTIONS(10386), 1, + anon_sym_QMARK, + ACTIONS(10650), 1, + anon_sym_PIPE, + STATE(8010), 1, sym_heredoc_body, - STATE(8738), 1, - aux_sym_param_repeat1, - STATE(9264), 1, - sym_annotation, - STATE(12276), 1, - sym_param_list, - STATE(12280), 1, - sym_block_param, + STATE(8017), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - STATE(10415), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [368168] = 15, + ACTIONS(4972), 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, + [370764] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10654), 1, + anon_sym_RPAREN, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(10608), 1, + ACTIONS(10658), 1, anon_sym_STAR, - ACTIONS(10610), 1, + ACTIONS(10660), 1, anon_sym_AMP, - ACTIONS(10612), 1, + ACTIONS(10662), 1, anon_sym_STAR_STAR, - ACTIONS(10616), 1, - anon_sym_RPAREN, - STATE(7966), 1, + STATE(8011), 1, sym_heredoc_body, - STATE(8738), 1, + STATE(8765), 1, aux_sym_param_repeat1, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(11230), 1, + STATE(11395), 1, sym_param_list, - STATE(12280), 1, + STATE(11559), 1, sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - STATE(10415), 3, + STATE(10137), 3, sym_param, sym_splat_param, sym_double_splat_param, - [368218] = 5, + [370814] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10666), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8012), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 13, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_STAR, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + [370844] = 5, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4859), 1, anon_sym_EQ, - STATE(7967), 1, + STATE(8013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -665938,108 +671262,74 @@ static const uint16_t ts_small_parse_table[] = { sym_class_var, sym_private, sym_protected, - [368248] = 5, + [370874] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10618), 1, - anon_sym_COLON_COLON, + STATE(8014), 1, + sym_heredoc_body, + STATE(8114), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7968), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4846), 13, + ACTIONS(10669), 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_DOT, - anon_sym_end, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_then, - [368278] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(10608), 1, - anon_sym_STAR, - ACTIONS(10610), 1, - anon_sym_AMP, - ACTIONS(10612), 1, - anon_sym_STAR_STAR, - ACTIONS(10621), 1, anon_sym_RPAREN, - STATE(7969), 1, - sym_heredoc_body, - STATE(8738), 1, - aux_sym_param_repeat1, - STATE(9264), 1, - sym_annotation, - STATE(11831), 1, - sym_param_list, - STATE(12280), 1, - sym_block_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - STATE(10415), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [368328] = 10, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [370904] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10342), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10346), 1, + ACTIONS(10369), 1, anon_sym_QMARK, - ACTIONS(10623), 1, + ACTIONS(10671), 1, anon_sym_PIPE, - STATE(7970), 1, + STATE(8015), 1, sym_heredoc_body, - STATE(7994), 1, + STATE(8016), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, + ACTIONS(4894), 9, anon_sym_SEMI, anon_sym_end, - anon_sym_forall, - [368368] = 5, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [370944] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10625), 1, + ACTIONS(10671), 1, anon_sym_PIPE, + STATE(8012), 1, + aux_sym_union_type_repeat1, + STATE(8016), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7971), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 13, + ACTIONS(4883), 13, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -666053,80 +671343,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, sym_private, sym_protected, - [368398] = 10, + [370976] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, + ACTIONS(10650), 1, + anon_sym_PIPE, + STATE(8017), 1, + sym_heredoc_body, + STATE(8034), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4883), 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, - ACTIONS(10321), 1, anon_sym_DOT, - ACTIONS(10323), 1, + anon_sym_end, anon_sym_STAR, - ACTIONS(10327), 1, + anon_sym_forall, + anon_sym_QMARK, + [371008] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10378), 1, + anon_sym_LBRACK, + ACTIONS(10380), 1, + anon_sym_DOT, + ACTIONS(10382), 1, + anon_sym_STAR, + ACTIONS(10386), 1, anon_sym_QMARK, - ACTIONS(10628), 1, + ACTIONS(10650), 1, anon_sym_PIPE, - STATE(7972), 1, - sym_heredoc_body, - STATE(7992), 1, + STATE(8017), 1, aux_sym_union_type_repeat1, + STATE(8018), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4936), 9, + ACTIONS(4898), 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_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [368438] = 15, + anon_sym_forall, + [371048] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + STATE(8019), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5970), 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, + [371076] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(10608), 1, + ACTIONS(10658), 1, anon_sym_STAR, - ACTIONS(10610), 1, + ACTIONS(10660), 1, anon_sym_AMP, - ACTIONS(10612), 1, + ACTIONS(10662), 1, anon_sym_STAR_STAR, - ACTIONS(10630), 1, + ACTIONS(10673), 1, anon_sym_RPAREN, - STATE(7973), 1, + STATE(8020), 1, sym_heredoc_body, - STATE(8738), 1, + STATE(8765), 1, aux_sym_param_repeat1, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(12188), 1, - sym_param_list, - STATE(12280), 1, + STATE(11559), 1, sym_block_param, + STATE(11923), 1, + sym_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - STATE(10415), 3, + STATE(10137), 3, sym_param, sym_splat_param, sym_double_splat_param, - [368488] = 4, + [371126] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7974), 1, + ACTIONS(10200), 1, + anon_sym_LPAREN2, + STATE(8021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5934), 15, + ACTIONS(10675), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666136,128 +671478,152 @@ 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, - [368516] = 10, + [371156] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, + STATE(8017), 1, + aux_sym_union_type_repeat1, + STATE(8022), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4875), 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, - ACTIONS(10321), 1, anon_sym_DOT, - ACTIONS(10323), 1, + anon_sym_end, anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(10628), 1, anon_sym_PIPE, - STATE(7975), 1, + anon_sym_forall, + anon_sym_QMARK, + [371186] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(10658), 1, + anon_sym_STAR, + ACTIONS(10660), 1, + anon_sym_AMP, + ACTIONS(10662), 1, + anon_sym_STAR_STAR, + ACTIONS(10677), 1, + anon_sym_RPAREN, + STATE(8023), 1, sym_heredoc_body, - STATE(7992), 1, - aux_sym_union_type_repeat1, + STATE(8765), 1, + aux_sym_param_repeat1, + STATE(9304), 1, + sym_annotation, + STATE(11559), 1, + sym_block_param, + STATE(12114), 1, + sym_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 9, - anon_sym_SEMI, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, + ACTIONS(10664), 2, + sym_instance_var, sym_class_var, - sym_private, - sym_protected, - [368556] = 10, + STATE(10137), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [371236] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(10628), 1, - anon_sym_PIPE, - STATE(7976), 1, + STATE(8024), 1, sym_heredoc_body, - STATE(7992), 1, - aux_sym_union_type_repeat1, + STATE(8162), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 9, + ACTIONS(10669), 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_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [368596] = 15, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [371266] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(10608), 1, + ACTIONS(10658), 1, anon_sym_STAR, - ACTIONS(10610), 1, + ACTIONS(10660), 1, anon_sym_AMP, - ACTIONS(10612), 1, + ACTIONS(10662), 1, anon_sym_STAR_STAR, - ACTIONS(10632), 1, + ACTIONS(10679), 1, anon_sym_RPAREN, - STATE(7977), 1, + STATE(8025), 1, sym_heredoc_body, - STATE(8738), 1, + STATE(8765), 1, aux_sym_param_repeat1, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(11345), 1, + STATE(11240), 1, sym_param_list, - STATE(12280), 1, + STATE(11559), 1, sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - STATE(10415), 3, + STATE(10137), 3, sym_param, sym_splat_param, sym_double_splat_param, - [368646] = 10, + [371316] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, + ACTIONS(10378), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10380), 1, anon_sym_DOT, - ACTIONS(10342), 1, + ACTIONS(10382), 1, anon_sym_STAR, - ACTIONS(10346), 1, + ACTIONS(10386), 1, anon_sym_QMARK, - ACTIONS(10623), 1, + ACTIONS(10650), 1, anon_sym_PIPE, - STATE(7978), 1, - sym_heredoc_body, - STATE(7994), 1, + STATE(8017), 1, aux_sym_union_type_repeat1, + STATE(8026), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 9, + ACTIONS(4890), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666267,27 +671633,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_forall, - [368686] = 10, + [371356] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10681), 1, + anon_sym_COLON_COLON, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8027), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4840), 13, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_then, + [371386] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, + ACTIONS(10378), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10380), 1, anon_sym_DOT, - ACTIONS(10342), 1, + ACTIONS(10382), 1, anon_sym_STAR, - ACTIONS(10346), 1, + ACTIONS(10386), 1, anon_sym_QMARK, - ACTIONS(10623), 1, + ACTIONS(10650), 1, anon_sym_PIPE, - STATE(7979), 1, - sym_heredoc_body, - STATE(7994), 1, + STATE(8017), 1, aux_sym_union_type_repeat1, + STATE(8028), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4936), 9, + ACTIONS(4894), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666297,84 +671688,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_forall, - [368726] = 5, + [371426] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10634), 1, - anon_sym_PIPE, + ACTIONS(10684), 1, + anon_sym_COLON_COLON, + STATE(8027), 1, + aux_sym_constant_repeat1, + STATE(8029), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7980), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 13, + ACTIONS(4853), 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_DASH_GT, anon_sym_DOT, anon_sym_end, + anon_sym_EQ, anon_sym_STAR, - anon_sym_forall, + anon_sym_PIPE, + anon_sym_LPAREN2, anon_sym_QMARK, - [368756] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(10608), 1, - anon_sym_STAR, - ACTIONS(10610), 1, - anon_sym_AMP, - ACTIONS(10612), 1, - anon_sym_STAR_STAR, - ACTIONS(10637), 1, - anon_sym_RPAREN, - STATE(7981), 1, - sym_heredoc_body, - STATE(8738), 1, - aux_sym_param_repeat1, - STATE(9264), 1, - sym_annotation, - STATE(11969), 1, - sym_param_list, - STATE(12280), 1, - sym_block_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - STATE(10415), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [368806] = 5, + anon_sym_then, + [371458] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10166), 1, - anon_sym_LPAREN2, - STATE(7982), 1, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + STATE(2051), 1, + sym__terminator, + STATE(8030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10639), 14, + ACTIONS(8188), 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(10686), 8, + ts_builtin_sym_end, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_end, @@ -666382,52 +671744,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [368836] = 5, + [371498] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7983), 1, + ACTIONS(10684), 1, + anon_sym_COLON_COLON, + STATE(8031), 1, sym_heredoc_body, - STATE(7994), 1, - aux_sym_union_type_repeat1, + STATE(8035), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 14, + ACTIONS(4857), 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_DASH_GT, anon_sym_DOT, anon_sym_end, + anon_sym_EQ, anon_sym_STAR, anon_sym_PIPE, - anon_sym_forall, + anon_sym_LPAREN2, anon_sym_QMARK, - [368866] = 10, + anon_sym_then, + [371530] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, + STATE(8032), 1, + sym_heredoc_body, + STATE(8099), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10696), 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, + [371560] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10327), 1, + ACTIONS(10369), 1, anon_sym_QMARK, - ACTIONS(10628), 1, + ACTIONS(10671), 1, anon_sym_PIPE, - STATE(7984), 1, - sym_heredoc_body, - STATE(7992), 1, + STATE(8016), 1, aux_sym_union_type_repeat1, + STATE(8033), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 9, + ACTIONS(4972), 9, anon_sym_SEMI, anon_sym_end, anon_sym_AT_LBRACK, @@ -666437,45 +671825,44 @@ static const uint16_t ts_small_parse_table[] = { sym_class_var, sym_private, sym_protected, - [368906] = 6, + [371600] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10641), 1, - anon_sym_COLON_COLON, - STATE(7968), 1, - aux_sym_constant_repeat1, - STATE(7985), 1, - sym_heredoc_body, + ACTIONS(10698), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 13, + STATE(8034), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 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_DASH_GT, anon_sym_DOT, anon_sym_end, - anon_sym_EQ, anon_sym_STAR, - anon_sym_PIPE, - anon_sym_LPAREN2, + anon_sym_forall, anon_sym_QMARK, - anon_sym_then, - [368938] = 6, + [371630] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10641), 1, + ACTIONS(10684), 1, anon_sym_COLON_COLON, - STATE(7986), 1, - sym_heredoc_body, - STATE(7996), 1, + STATE(8027), 1, aux_sym_constant_repeat1, + STATE(8035), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 13, + ACTIONS(4847), 13, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -666489,40 +671876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_then, - [368970] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7987), 1, - sym_heredoc_body, - STATE(7992), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4875), 14, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - anon_sym_QMARK, - sym_private, - sym_protected, - [369000] = 4, + [371662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7988), 1, + STATE(8036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5098), 15, + ACTIONS(5022), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666532,23 +671894,21 @@ 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_forall, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [369028] = 5, + [371690] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7989), 1, + STATE(8037), 1, sym_heredoc_body, - STATE(8035), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10600), 14, + ACTIONS(5085), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666558,153 +671918,183 @@ 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, - [369058] = 10, + [371718] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(10658), 1, + anon_sym_STAR, + ACTIONS(10660), 1, + anon_sym_AMP, + ACTIONS(10662), 1, + anon_sym_STAR_STAR, + ACTIONS(10701), 1, + anon_sym_RPAREN, + STATE(8038), 1, + sym_heredoc_body, + STATE(8765), 1, + aux_sym_param_repeat1, + STATE(9304), 1, + sym_annotation, + STATE(11559), 1, + sym_block_param, + STATE(11783), 1, + sym_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + STATE(10137), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [371768] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10342), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10346), 1, + ACTIONS(10369), 1, anon_sym_QMARK, - ACTIONS(10623), 1, + ACTIONS(10671), 1, anon_sym_PIPE, - STATE(7990), 1, - sym_heredoc_body, - STATE(7994), 1, + STATE(8016), 1, aux_sym_union_type_repeat1, + STATE(8039), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4968), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, + ACTIONS(4924), 9, anon_sym_SEMI, anon_sym_end, - anon_sym_forall, - [369098] = 6, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [371808] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10641), 1, - anon_sym_COLON_COLON, - STATE(7985), 1, - aux_sym_constant_repeat1, - STATE(7991), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4857), 13, - sym__line_break, - anon_sym_SEMI, + ACTIONS(10361), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(10363), 1, anon_sym_DOT, - anon_sym_end, - anon_sym_EQ, + ACTIONS(10365), 1, anon_sym_STAR, - anon_sym_PIPE, - anon_sym_LPAREN2, + ACTIONS(10369), 1, anon_sym_QMARK, - anon_sym_then, - [369130] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10628), 1, + ACTIONS(10671), 1, anon_sym_PIPE, - STATE(7971), 1, + STATE(8016), 1, aux_sym_union_type_repeat1, - STATE(7992), 1, + STATE(8040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 13, + ACTIONS(4898), 9, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_end, anon_sym_AT_LBRACK, - anon_sym_STAR, anon_sym_def, sym__constant_segment, anon_sym_COLON_COLON, sym_class_var, - anon_sym_QMARK, sym_private, sym_protected, - [369162] = 5, + [371848] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10166), 1, - anon_sym_LPAREN2, - STATE(7993), 1, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(10658), 1, + anon_sym_STAR, + ACTIONS(10660), 1, + anon_sym_AMP, + ACTIONS(10662), 1, + anon_sym_STAR_STAR, + ACTIONS(10703), 1, + anon_sym_RPAREN, + STATE(8041), 1, sym_heredoc_body, + STATE(8765), 1, + aux_sym_param_repeat1, + STATE(9304), 1, + sym_annotation, + STATE(11559), 1, + sym_block_param, + STATE(11628), 1, + sym_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10643), 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, - [369192] = 6, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + STATE(10137), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [371898] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10623), 1, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(10671), 1, anon_sym_PIPE, - STATE(7980), 1, + STATE(8016), 1, aux_sym_union_type_repeat1, - STATE(7994), 1, + STATE(8042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 13, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, + ACTIONS(4890), 9, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_forall, - anon_sym_QMARK, - [369224] = 4, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [371938] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7995), 1, + ACTIONS(10200), 1, + anon_sym_LPAREN2, + STATE(8043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 15, + ACTIONS(10705), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666715,24 +672105,23 @@ 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, - [369252] = 6, + [371968] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10641), 1, + ACTIONS(10684), 1, anon_sym_COLON_COLON, - STATE(7968), 1, + STATE(8029), 1, aux_sym_constant_repeat1, - STATE(7996), 1, + STATE(8044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4853), 13, + ACTIONS(4847), 13, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -666746,122 +672135,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_then, - [369284] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(10628), 1, - anon_sym_PIPE, - STATE(7992), 1, - aux_sym_union_type_repeat1, - STATE(7997), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4968), 9, - anon_sym_SEMI, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [369324] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - STATE(2022), 1, - sym__terminator, - STATE(7998), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(10645), 8, - 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, - [369364] = 15, + [372000] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(10608), 1, + ACTIONS(10658), 1, anon_sym_STAR, - ACTIONS(10610), 1, + ACTIONS(10660), 1, anon_sym_AMP, - ACTIONS(10612), 1, + ACTIONS(10662), 1, anon_sym_STAR_STAR, - ACTIONS(10655), 1, + ACTIONS(10707), 1, anon_sym_RPAREN, - STATE(7999), 1, + STATE(8045), 1, sym_heredoc_body, - STATE(8738), 1, + STATE(8765), 1, aux_sym_param_repeat1, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(11330), 1, + STATE(10991), 1, sym_param_list, - STATE(12280), 1, + STATE(11559), 1, sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - STATE(10415), 3, + STATE(10137), 3, sym_param, sym_splat_param, sym_double_splat_param, - [369414] = 10, + [372050] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10338), 1, + ACTIONS(10378), 1, anon_sym_LBRACK, - ACTIONS(10340), 1, + ACTIONS(10380), 1, anon_sym_DOT, - ACTIONS(10342), 1, + ACTIONS(10382), 1, anon_sym_STAR, - ACTIONS(10346), 1, + ACTIONS(10386), 1, anon_sym_QMARK, - ACTIONS(10623), 1, + ACTIONS(10650), 1, anon_sym_PIPE, - STATE(7994), 1, + STATE(8017), 1, aux_sym_union_type_repeat1, - STATE(8000), 1, + STATE(8046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 9, + ACTIONS(4924), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666871,52 +672200,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_forall, - [369454] = 15, + [372090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + STATE(8016), 1, + aux_sym_union_type_repeat1, + STATE(8047), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4875), 14, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + anon_sym_QMARK, + sym_private, + sym_protected, + [372120] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(10608), 1, + ACTIONS(10658), 1, anon_sym_STAR, - ACTIONS(10610), 1, + ACTIONS(10660), 1, anon_sym_AMP, - ACTIONS(10612), 1, + ACTIONS(10662), 1, anon_sym_STAR_STAR, - ACTIONS(10657), 1, + ACTIONS(10709), 1, anon_sym_RPAREN, - STATE(8001), 1, + STATE(8048), 1, sym_heredoc_body, - STATE(8738), 1, + STATE(8765), 1, aux_sym_param_repeat1, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(10928), 1, - sym_param_list, - STATE(12280), 1, + STATE(11559), 1, sym_block_param, + STATE(11957), 1, + sym_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - STATE(10415), 3, + STATE(10137), 3, sym_param, sym_splat_param, sym_double_splat_param, - [369504] = 5, + [372170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8002), 1, + STATE(8049), 1, sym_heredoc_body, - STATE(8040), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10659), 14, + ACTIONS(10711), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666931,15 +672283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369534] = 4, + [372197] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8003), 1, + STATE(8050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10661), 14, + ACTIONS(10713), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666954,15 +672306,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369561] = 4, + [372224] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8004), 1, + ACTIONS(10715), 1, + anon_sym_LPAREN, + ACTIONS(10717), 1, + aux_sym_top_level_fun_def_token1, + ACTIONS(10719), 1, + anon_sym_forall, + STATE(8051), 1, + sym_heredoc_body, + STATE(8401), 1, + sym_forall, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5002), 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, + [372259] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10663), 14, + ACTIONS(10721), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -666977,15 +672356,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369588] = 4, + [372286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8005), 1, + STATE(8053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10665), 14, + ACTIONS(10723), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667000,15 +672379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369615] = 4, + [372313] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8006), 1, + STATE(8054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10667), 14, + ACTIONS(10725), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667023,15 +672402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369642] = 4, + [372340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8007), 1, + STATE(8055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5110), 14, + ACTIONS(10727), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667046,46 +672425,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369669] = 12, + [372367] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8008), 1, + STATE(8056), 1, sym_heredoc_body, - STATE(11956), 1, + STATE(11014), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [369712] = 4, + [372410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8009), 1, + STATE(8057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10679), 14, + ACTIONS(10739), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667100,15 +672479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369739] = 4, + [372437] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8010), 1, + STATE(8058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 14, + ACTIONS(10741), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667123,46 +672502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369766] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8011), 1, - sym_heredoc_body, - STATE(12213), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [369809] = 4, + [372464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8012), 1, + STATE(8059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10683), 14, + ACTIONS(10743), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667177,15 +672525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369836] = 4, + [372491] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8013), 1, + STATE(8060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 14, + ACTIONS(10745), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667200,15 +672548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369863] = 4, + [372518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8014), 1, + STATE(8061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5102), 14, + ACTIONS(10745), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667223,46 +672571,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369890] = 12, + [372545] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8015), 1, + STATE(8062), 1, sym_heredoc_body, - STATE(11460), 1, + STATE(11998), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [369933] = 4, + [372588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8016), 1, + STATE(8063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10687), 14, + ACTIONS(10727), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667277,15 +672625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369960] = 4, + [372615] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8017), 1, + STATE(8064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10689), 14, + ACTIONS(10747), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667300,15 +672648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [369987] = 4, + [372642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8018), 1, + STATE(8065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10691), 14, + ACTIONS(10749), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667323,38 +672671,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370014] = 4, + [372669] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8019), 1, + STATE(8066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4846), 14, + ACTIONS(10751), 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_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_EQ, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_then, - [370041] = 4, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [372696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8020), 1, + STATE(8067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10693), 14, + ACTIONS(10753), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667369,15 +672717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370068] = 4, + [372723] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8021), 1, + STATE(8068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10695), 14, + ACTIONS(10755), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667392,15 +672740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370095] = 4, + [372750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8022), 1, + STATE(8069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10697), 14, + ACTIONS(10711), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667415,46 +672763,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370122] = 12, + [372777] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8023), 1, + STATE(8070), 1, sym_heredoc_body, - STATE(10943), 1, + STATE(11331), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [370165] = 4, + [372820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8024), 1, + STATE(8071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10699), 14, + ACTIONS(10753), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667469,15 +672817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370192] = 4, + [372847] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8025), 1, + STATE(8072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10701), 14, + ACTIONS(10757), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667492,15 +672840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370219] = 4, + [372874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8026), 1, + STATE(8073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10703), 14, + ACTIONS(10759), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667515,15 +672863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370246] = 4, + [372901] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8027), 1, + STATE(8074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10705), 14, + ACTIONS(10739), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667538,15 +672886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370273] = 4, + [372928] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8028), 1, + STATE(8075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10689), 14, + ACTIONS(10761), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667561,15 +672909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370300] = 4, + [372955] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8029), 1, + STATE(8076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10707), 14, + ACTIONS(10745), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667584,46 +672932,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370327] = 12, + [372982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8030), 1, + STATE(8077), 1, sym_heredoc_body, - STATE(11061), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [370370] = 4, + ACTIONS(10745), 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, + [373009] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8031), 1, + STATE(8078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 14, + ACTIONS(10763), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667638,15 +672978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370397] = 4, + [373036] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8032), 1, + STATE(8079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10711), 14, + ACTIONS(10765), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667661,15 +673001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370424] = 4, + [373063] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8033), 1, + STATE(8080), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10713), 14, + ACTIONS(10767), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667684,15 +673024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370451] = 4, + [373090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8034), 1, + STATE(8081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10715), 14, + ACTIONS(10743), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667707,15 +673047,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370478] = 4, + [373117] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8035), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8082), 1, + sym_heredoc_body, + STATE(11469), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [373160] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10717), 14, + ACTIONS(10767), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667730,15 +673101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370505] = 4, + [373187] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8036), 1, + STATE(8084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10719), 14, + ACTIONS(10769), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667753,15 +673124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370532] = 4, + [373214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8037), 1, + STATE(8085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10721), 14, + ACTIONS(5126), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667776,77 +673147,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370559] = 12, + [373241] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8038), 1, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(10658), 1, + anon_sym_STAR, + ACTIONS(10660), 1, + anon_sym_AMP, + ACTIONS(10662), 1, + anon_sym_STAR_STAR, + ACTIONS(10771), 1, + anon_sym_RPAREN, + STATE(8086), 1, sym_heredoc_body, - STATE(11826), 1, - sym__numeric_type, + STATE(8765), 1, + aux_sym_param_repeat1, + STATE(9304), 1, + sym_annotation, + STATE(11382), 1, + sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [370602] = 12, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + STATE(10916), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [373288] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + STATE(8087), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10773), 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, + [373315] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8088), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10775), 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, + [373342] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8089), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10777), 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, + [373369] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8039), 1, + STATE(8090), 1, sym_heredoc_body, - STATE(11167), 1, + STATE(11390), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [370645] = 4, + [373412] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8040), 1, + STATE(8091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10723), 14, + ACTIONS(10779), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667861,15 +673303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370672] = 4, + [373439] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8041), 1, + STATE(8092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10639), 14, + ACTIONS(10781), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667884,15 +673326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370699] = 4, + [373466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8042), 1, + STATE(8093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10725), 14, + ACTIONS(10783), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667907,15 +673349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370726] = 4, + [373493] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8043), 1, + STATE(8094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10727), 14, + ACTIONS(5130), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667930,15 +673372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370753] = 4, + [373520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8044), 1, + STATE(8095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10729), 14, + ACTIONS(10785), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667953,15 +673395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370780] = 4, + [373547] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8045), 1, + STATE(8096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10731), 14, + ACTIONS(10787), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667976,15 +673418,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370807] = 4, + [373574] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8046), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8097), 1, + sym_heredoc_body, + STATE(10957), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [373617] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10733), 14, + ACTIONS(10789), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -667999,79 +673472,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370834] = 12, + [373644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + STATE(8099), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10791), 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, + [373671] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8047), 1, + STATE(8100), 1, sym_heredoc_body, - STATE(11235), 1, + STATE(11449), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [370877] = 14, + [373714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(10608), 1, - anon_sym_STAR, - ACTIONS(10610), 1, - anon_sym_AMP, - ACTIONS(10612), 1, - anon_sym_STAR_STAR, - ACTIONS(10735), 1, + STATE(8101), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10793), 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(8048), 1, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [373741] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8102), 1, sym_heredoc_body, - STATE(8738), 1, - aux_sym_param_repeat1, - STATE(9264), 1, - sym_annotation, - STATE(11820), 1, - sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - STATE(10708), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [370924] = 4, + ACTIONS(10795), 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, + [373768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8049), 1, + STATE(8103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10737), 14, + ACTIONS(10797), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668086,15 +673595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370951] = 4, + [373795] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8050), 1, + STATE(8104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5162), 14, + ACTIONS(5921), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668109,15 +673618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [370978] = 4, + [373822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8051), 1, + STATE(8105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10739), 14, + ACTIONS(10799), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668132,15 +673641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371005] = 4, + [373849] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8052), 1, + STATE(8106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10741), 14, + ACTIONS(10801), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668155,42 +673664,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371032] = 8, + [373876] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10743), 1, - anon_sym_LPAREN, - ACTIONS(10745), 1, - aux_sym_top_level_fun_def_token1, - ACTIONS(10747), 1, - anon_sym_forall, - STATE(8053), 1, + STATE(8107), 1, sym_heredoc_body, - STATE(8553), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5026), 10, + ACTIONS(6922), 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_elsif, anon_sym_else, - [371067] = 4, + anon_sym_when, + anon_sym_in, + [373903] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8054), 1, + STATE(8108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10749), 14, + ACTIONS(10803), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668205,46 +673710,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371094] = 12, + [373930] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8055), 1, + STATE(8109), 1, sym_heredoc_body, - STATE(11309), 1, + STATE(11512), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [371137] = 4, + [373973] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8056), 1, + STATE(8110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10751), 14, + ACTIONS(5114), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668259,15 +673764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371164] = 4, + [374000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8057), 1, + STATE(8111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10753), 14, + ACTIONS(10805), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668282,15 +673787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371191] = 4, + [374027] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8058), 1, + STATE(8112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10755), 14, + ACTIONS(5122), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668305,15 +673810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371218] = 4, + [374054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8059), 1, + STATE(8113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10757), 14, + ACTIONS(10807), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668328,15 +673833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371245] = 4, + [374081] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8060), 1, + STATE(8114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10749), 14, + ACTIONS(10809), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668351,46 +673856,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371272] = 12, + [374108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8061), 1, + STATE(8115), 1, sym_heredoc_body, - STATE(11382), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [371315] = 4, + ACTIONS(10811), 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, + [374135] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8062), 1, + STATE(8116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10759), 14, + ACTIONS(5802), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668405,46 +673902,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371342] = 12, + [374162] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8063), 1, + STATE(8117), 1, sym_heredoc_body, - STATE(10978), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [371385] = 4, + ACTIONS(4840), 14, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_EQ, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_then, + [374189] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8064), 1, + STATE(8118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10643), 14, + ACTIONS(10813), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668459,46 +673948,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371412] = 12, + [374216] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8065), 1, + STATE(8119), 1, sym_heredoc_body, - STATE(11432), 1, + STATE(11558), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [371455] = 4, + [374259] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8066), 1, + STATE(8120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10751), 14, + ACTIONS(10815), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668513,15 +674002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371482] = 4, + [374286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8067), 1, + STATE(8121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5118), 14, + ACTIONS(10817), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668536,15 +674025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371509] = 4, + [374313] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8068), 1, + STATE(8122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10753), 14, + ACTIONS(10819), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668559,41 +674048,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371536] = 12, + [374340] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8069), 1, + STATE(8123), 1, sym_heredoc_body, - STATE(11492), 1, + STATE(11884), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [371579] = 4, + [374383] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8070), 1, + STATE(8124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -668613,15 +674102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371606] = 4, + [374410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8071), 1, + STATE(8125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 14, + ACTIONS(5966), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668636,15 +674125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371633] = 4, + [374437] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8072), 1, + STATE(8126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10765), 14, + ACTIONS(10705), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668659,15 +674148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371660] = 4, + [374464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8073), 1, + STATE(8127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6538), 14, + ACTIONS(10821), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668682,44 +674171,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371687] = 10, + [374491] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - STATE(2022), 1, - sym__terminator, - STATE(8074), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8128), 1, sym_heredoc_body, + STATE(11475), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(1857), 7, - ts_builtin_sym_end, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [371726] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [374534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8075), 1, + STATE(8129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10767), 14, + ACTIONS(10823), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668734,15 +674225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371753] = 4, + [374561] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8076), 1, + STATE(8130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10769), 14, + ACTIONS(5134), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668757,15 +674248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371780] = 4, + [374588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8077), 1, + STATE(8131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10771), 14, + ACTIONS(10825), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668780,15 +674271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371807] = 4, + [374615] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8078), 1, + STATE(8132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10773), 14, + ACTIONS(10827), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668803,15 +674294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371834] = 4, + [374642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8079), 1, + STATE(8133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10775), 14, + ACTIONS(10829), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668826,38 +674317,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371861] = 4, + [374669] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8080), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8134), 1, sym_heredoc_body, + STATE(11075), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10777), 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, - [371888] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [374712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8081), 1, + STATE(8135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10719), 14, + ACTIONS(5110), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668872,46 +674371,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371915] = 12, + [374739] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8082), 1, + STATE(8136), 1, sym_heredoc_body, - STATE(11291), 1, + STATE(12168), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [371958] = 4, + [374782] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8083), 1, + STATE(8137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 14, + ACTIONS(10831), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668926,48 +674425,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [371985] = 14, + [374809] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(10608), 1, - anon_sym_STAR, - ACTIONS(10610), 1, - anon_sym_AMP, - ACTIONS(10612), 1, - anon_sym_STAR_STAR, - ACTIONS(10779), 1, - anon_sym_RPAREN, - STATE(8084), 1, + STATE(8138), 1, sym_heredoc_body, - STATE(8738), 1, - aux_sym_param_repeat1, - STATE(9264), 1, - sym_annotation, - STATE(11202), 1, - sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - STATE(10708), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [372032] = 4, + ACTIONS(10833), 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, + [374836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8085), 1, + STATE(8139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10781), 14, + ACTIONS(10835), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -668982,15 +674471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372059] = 4, + [374863] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8086), 1, + STATE(8140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 14, + ACTIONS(10781), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669005,15 +674494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372086] = 4, + [374890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8087), 1, + STATE(8141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10783), 14, + ACTIONS(10837), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669028,15 +674517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372113] = 4, + [374917] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8088), 1, + STATE(8142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6845), 14, + ACTIONS(5138), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669051,15 +674540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372140] = 4, + [374944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8089), 1, + STATE(8143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 14, + ACTIONS(10839), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669074,38 +674563,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372167] = 4, + [374971] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8090), 1, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(10841), 1, + anon_sym_DASH_GT, + STATE(8144), 1, sym_heredoc_body, + STATE(10414), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 14, + ACTIONS(5022), 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_end, + anon_sym_forall, + anon_sym_else, + [375004] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + STATE(2051), 1, + sym__terminator, + STATE(8145), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(1859), 7, + ts_builtin_sym_end, anon_sym_RBRACE, anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [372194] = 4, + [375043] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8091), 1, + STATE(8146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10785), 14, + ACTIONS(10843), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669120,15 +674641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372221] = 4, + [375070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8092), 1, + STATE(8147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10787), 14, + ACTIONS(10819), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669143,41 +674664,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372248] = 7, + [375097] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(10789), 1, - anon_sym_DASH_GT, - STATE(8093), 1, + STATE(8148), 1, sym_heredoc_body, - STATE(10366), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 11, + ACTIONS(10845), 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, - [372281] = 4, + anon_sym_when, + anon_sym_in, + [375124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8094), 1, + STATE(8149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10711), 14, + ACTIONS(10847), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669192,15 +674710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372308] = 4, + [375151] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8095), 1, + STATE(8150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10791), 14, + ACTIONS(10849), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669215,15 +674733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372335] = 4, + [375178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8096), 1, + STATE(8151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10793), 14, + ACTIONS(10851), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669238,15 +674756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372362] = 4, + [375205] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8097), 1, + STATE(8152), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10795), 14, + ACTIONS(10853), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669261,15 +674779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372389] = 4, + [375232] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8098), 1, + STATE(8153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10797), 14, + ACTIONS(10855), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669284,15 +674802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372416] = 4, + [375259] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8099), 1, + STATE(8154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10717), 14, + ACTIONS(10675), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669307,15 +674825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372443] = 4, + [375286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8100), 1, + STATE(8155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10799), 14, + ACTIONS(6433), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669330,15 +674848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372470] = 4, + [375313] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8101), 1, + STATE(8156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 14, + ACTIONS(10857), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669353,15 +674871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372497] = 4, + [375340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8102), 1, + STATE(8157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10801), 14, + ACTIONS(10859), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669376,15 +674894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372524] = 4, + [375367] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8103), 1, + STATE(8158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5130), 14, + ACTIONS(10747), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669399,15 +674917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372551] = 4, + [375394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8104), 1, + STATE(8159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10803), 14, + ACTIONS(10861), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669422,20 +674940,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372578] = 4, + [375421] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8105), 1, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + STATE(8160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10805), 14, + ACTIONS(10863), 10, 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, @@ -669445,15 +674967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372605] = 4, + [375456] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8106), 1, + STATE(8161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10807), 14, + ACTIONS(10865), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669468,10 +674990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372632] = 4, + [375483] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8107), 1, + STATE(8162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -669491,15 +675013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372659] = 4, + [375510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8108), 1, + STATE(8163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10811), 14, + ACTIONS(10867), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669514,184 +675036,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372686] = 12, + [375537] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8109), 1, + STATE(8164), 1, sym_heredoc_body, - STATE(11555), 1, + STATE(12342), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [372729] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8110), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10813), 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, - [372756] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8111), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10815), 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, - [372783] = 4, + [375580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8112), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10709), 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, - [372810] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8113), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10817), 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, - [372837] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8114), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10819), 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, - [372864] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8115), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10821), 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, - [372891] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8116), 1, + STATE(8165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10823), 14, + ACTIONS(10869), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669706,15 +675090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372918] = 4, + [375607] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8117), 1, + STATE(8166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10759), 14, + ACTIONS(10871), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669729,15 +675113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372945] = 4, + [375634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8118), 1, + STATE(8167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 14, + ACTIONS(10873), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669752,15 +675136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372972] = 4, + [375661] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8119), 1, + STATE(8168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10827), 14, + ACTIONS(10813), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669775,15 +675159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [372999] = 4, + [375688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8120), 1, + STATE(8169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10829), 14, + ACTIONS(10875), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669798,15 +675182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373026] = 4, + [375715] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8121), 1, + STATE(8170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10831), 14, + ACTIONS(10877), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669821,15 +675205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373053] = 4, + [375742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8122), 1, + STATE(8171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10833), 14, + ACTIONS(5102), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669844,15 +675228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373080] = 4, + [375769] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8123), 1, + STATE(8172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10835), 14, + ACTIONS(10879), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669867,15 +675251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373107] = 4, + [375796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8124), 1, + STATE(8173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10837), 14, + ACTIONS(10881), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669890,15 +675274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373134] = 4, + [375823] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8125), 1, + STATE(8174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 14, + ACTIONS(10883), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669913,15 +675297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373161] = 4, + [375850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8126), 1, + STATE(8175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 14, + ACTIONS(10751), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669936,15 +675320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373188] = 4, + [375877] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8127), 1, + STATE(8176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10843), 14, + ACTIONS(5106), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669959,15 +675343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373215] = 4, + [375904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8128), 1, + STATE(8177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10845), 14, + ACTIONS(10885), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -669982,15 +675366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373242] = 4, + [375931] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8129), 1, + STATE(8178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10847), 14, + ACTIONS(10887), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670005,38 +675389,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373269] = 4, + [375958] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8130), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8179), 1, sym_heredoc_body, + STATE(11623), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10849), 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, - [373296] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [376001] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8131), 1, + STATE(8180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10851), 14, + ACTIONS(10889), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670051,15 +675443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373323] = 4, + [376028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8132), 1, + STATE(8181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10853), 14, + ACTIONS(10891), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670074,15 +675466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373350] = 4, + [376055] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8133), 1, + STATE(8182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10855), 14, + ACTIONS(10893), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670097,15 +675489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373377] = 4, + [376082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8134), 1, + STATE(8183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 14, + ACTIONS(5142), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670120,15 +675512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373404] = 4, + [376109] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8135), 1, + STATE(8184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 14, + ACTIONS(10895), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670143,15 +675535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373431] = 4, + [376136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8136), 1, + STATE(8185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10851), 14, + ACTIONS(10897), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670166,15 +675558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373458] = 4, + [376163] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8137), 1, + STATE(8186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 14, + ACTIONS(10899), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670189,38 +675581,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373485] = 4, + [376190] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8138), 1, + ACTIONS(10719), 1, + anon_sym_forall, + ACTIONS(10901), 1, + anon_sym_LPAREN, + ACTIONS(10903), 1, + aux_sym_top_level_fun_def_token1, + STATE(8187), 1, sym_heredoc_body, + STATE(8476), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 14, + ACTIONS(4986), 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, - 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, - [373512] = 4, + [376225] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8139), 1, + STATE(8188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6494), 14, + ACTIONS(10905), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670235,15 +675631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373539] = 4, + [376252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8140), 1, + STATE(8189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10853), 14, + ACTIONS(10905), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670258,15 +675654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373566] = 4, + [376279] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8141), 1, + STATE(8190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10855), 14, + ACTIONS(10907), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670281,15 +675677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373593] = 4, + [376306] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8142), 1, + STATE(8191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 14, + ACTIONS(10909), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670304,38 +675700,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373620] = 4, + [376333] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8143), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8192), 1, sym_heredoc_body, + STATE(11027), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 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, - [373647] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [376376] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8144), 1, + STATE(8193), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10859), 14, + ACTIONS(10911), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670350,38 +675754,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373674] = 4, + [376403] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8145), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8194), 1, sym_heredoc_body, + STATE(11099), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10861), 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, - [373701] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [376446] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8146), 1, + STATE(8195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10805), 14, + ACTIONS(10913), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670396,15 +675808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373728] = 4, + [376473] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8147), 1, + STATE(8196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10815), 14, + ACTIONS(5146), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670419,15 +675831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373755] = 4, + [376500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8148), 1, + STATE(8197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10863), 14, + ACTIONS(10915), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670442,15 +675854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373782] = 4, + [376527] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8149), 1, + STATE(8198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10697), 14, + ACTIONS(10917), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670465,46 +675877,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373809] = 12, + [376554] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8150), 1, + STATE(8199), 1, sym_heredoc_body, - STATE(11829), 1, + STATE(11756), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [373852] = 4, + [376597] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8151), 1, + STATE(8200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10819), 14, + ACTIONS(10919), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670519,38 +675931,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373879] = 4, + [376624] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8152), 1, + ACTIONS(5020), 1, + anon_sym_EQ, + STATE(8201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10767), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, + ACTIONS(5022), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [373906] = 4, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [376653] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8153), 1, + STATE(8202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10771), 14, + ACTIONS(10921), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670565,15 +675978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373933] = 4, + [376680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8154), 1, + STATE(8203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10865), 14, + ACTIONS(10831), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670588,15 +676001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373960] = 4, + [376707] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8155), 1, + STATE(8204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10867), 14, + ACTIONS(10923), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670611,15 +676024,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [373987] = 4, + [376734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8156), 1, + STATE(8205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 14, + ACTIONS(10925), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670634,15 +676047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374014] = 4, + [376761] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8157), 1, + STATE(8206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 14, + ACTIONS(10927), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670657,15 +676070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374041] = 4, + [376788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8158), 1, + STATE(8207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 14, + ACTIONS(10929), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670680,15 +676093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374068] = 4, + [376815] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8159), 1, + STATE(8208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 14, + ACTIONS(10931), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670703,15 +676116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374095] = 4, + [376842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8160), 1, + STATE(8209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 14, + ACTIONS(10875), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670726,15 +676139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374122] = 4, + [376869] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8161), 1, + STATE(8210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10869), 14, + ACTIONS(10885), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670749,15 +676162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374149] = 4, + [376896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8162), 1, + STATE(8211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 14, + ACTIONS(10933), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670772,15 +676185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374176] = 4, + [376923] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8163), 1, + STATE(8212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10861), 14, + ACTIONS(10875), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670795,15 +676208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374203] = 4, + [376950] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8164), 1, + STATE(8213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10773), 14, + ACTIONS(10787), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670818,38 +676231,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374230] = 4, + [376977] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8165), 1, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(10658), 1, + anon_sym_STAR, + ACTIONS(10660), 1, + anon_sym_AMP, + ACTIONS(10662), 1, + anon_sym_STAR_STAR, + ACTIONS(10935), 1, + anon_sym_RPAREN, + STATE(8214), 1, sym_heredoc_body, + STATE(8765), 1, + aux_sym_param_repeat1, + STATE(9304), 1, + sym_annotation, + STATE(11517), 1, + sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 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, - [374257] = 4, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + STATE(10916), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [377024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8166), 1, + STATE(8215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10871), 14, + ACTIONS(10889), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670864,15 +676287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374284] = 4, + [377051] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8167), 1, + STATE(8216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 14, + ACTIONS(10813), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670887,15 +676310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374311] = 4, + [377078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8168), 1, + STATE(8217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10873), 14, + ACTIONS(5866), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670910,10 +676333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374338] = 4, + [377105] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8169), 1, + STATE(8218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -670933,46 +676356,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374365] = 12, + [377132] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(10671), 1, + ACTIONS(10731), 1, anon_sym_sizeof, - ACTIONS(10673), 1, + ACTIONS(10733), 1, anon_sym_instance_sizeof, - ACTIONS(10675), 1, + ACTIONS(10735), 1, anon_sym_offsetof, - STATE(8170), 1, + STATE(8219), 1, sym_heredoc_body, - STATE(12067), 1, + STATE(11036), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - STATE(11441), 5, + STATE(12335), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [374408] = 4, + [377175] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8171), 1, + STATE(8220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10877), 14, + ACTIONS(10817), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -670987,15 +676410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374435] = 4, + [377202] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8172), 1, + STATE(8221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10835), 14, + ACTIONS(10937), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671010,15 +676433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374462] = 4, + [377229] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8173), 1, + STATE(8222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10879), 14, + ACTIONS(10747), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671033,38 +676456,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374489] = 4, + [377256] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8174), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8223), 1, sym_heredoc_body, + STATE(11138), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 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, - [374516] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [377299] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8175), 1, + STATE(8224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 14, + ACTIONS(10831), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671079,15 +676510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374543] = 4, + [377326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8176), 1, + STATE(8225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5146), 14, + ACTIONS(10939), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671102,39 +676533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374570] = 5, + [377353] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5004), 1, - anon_sym_EQ, - STATE(8177), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5006), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [374599] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8178), 1, + STATE(8226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10881), 14, + ACTIONS(10941), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671149,15 +676556,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374626] = 4, + [377380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8179), 1, + STATE(8227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10883), 14, + ACTIONS(10943), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671172,15 +676579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374653] = 4, + [377407] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8180), 1, + STATE(8228), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5106), 14, + ACTIONS(10859), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671195,15 +676602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374680] = 4, + [377434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8181), 1, + STATE(8229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10885), 14, + ACTIONS(10747), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671218,46 +676625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374707] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8182), 1, - sym_heredoc_body, - STATE(12200), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [374750] = 4, + [377461] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8183), 1, + STATE(8230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10887), 14, + ACTIONS(10835), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671272,15 +676648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374777] = 4, + [377488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8184), 1, + STATE(8231), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10889), 14, + ACTIONS(10945), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671295,15 +676671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374804] = 4, + [377515] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8185), 1, + STATE(8232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10691), 14, + ACTIONS(10947), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671318,15 +676694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374831] = 4, + [377542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8186), 1, + STATE(8233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5122), 14, + ACTIONS(10813), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671341,15 +676717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374858] = 4, + [377569] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8187), 1, + STATE(8234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10693), 14, + ACTIONS(10949), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671364,15 +676740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374885] = 4, + [377596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8188), 1, + STATE(8235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5170), 14, + ACTIONS(10817), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671387,15 +676763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374912] = 4, + [377623] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8189), 1, + STATE(8236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5138), 14, + ACTIONS(10951), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671410,15 +676786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374939] = 4, + [377650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8190), 1, + STATE(8237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6301), 14, + ACTIONS(10817), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671433,15 +676809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374966] = 4, + [377677] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8191), 1, + STATE(8238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10769), 14, + ACTIONS(10953), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671456,15 +676832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [374993] = 4, + [377704] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8192), 1, + STATE(8239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10891), 14, + ACTIONS(10797), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671479,15 +676855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375020] = 4, + [377731] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8193), 1, + STATE(8240), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10893), 14, + ACTIONS(10955), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671502,15 +676878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375047] = 4, + [377758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8194), 1, + STATE(8241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 14, + ACTIONS(10957), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671525,15 +676901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375074] = 4, + [377785] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8195), 1, + STATE(8242), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5142), 14, + ACTIONS(5170), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671548,15 +676924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375101] = 4, + [377812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8196), 1, + STATE(8243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10895), 14, + ACTIONS(10959), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671571,15 +676947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375128] = 4, + [377839] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8197), 1, + STATE(8244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10897), 14, + ACTIONS(10961), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671594,15 +676970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375155] = 4, + [377866] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8198), 1, + STATE(8245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10899), 14, + ACTIONS(10831), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671617,15 +676993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375182] = 4, + [377893] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8199), 1, + STATE(8246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10901), 14, + ACTIONS(10793), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671640,15 +677016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375209] = 4, + [377920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8200), 1, + STATE(8247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10903), 14, + ACTIONS(10963), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671663,15 +677039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375236] = 4, + [377947] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8201), 1, + STATE(8248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10905), 14, + ACTIONS(10965), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671686,15 +677062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375263] = 4, + [377974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8202), 1, + STATE(8249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10907), 14, + ACTIONS(10967), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671709,73 +677085,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375290] = 12, + [378001] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8203), 1, - sym_heredoc_body, - STATE(11547), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [375333] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10747), 1, - anon_sym_forall, - ACTIONS(10909), 1, - anon_sym_LPAREN, - ACTIONS(10911), 1, - aux_sym_top_level_fun_def_token1, - STATE(8204), 1, + STATE(8250), 1, sym_heredoc_body, - STATE(8384), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4994), 10, + ACTIONS(10751), 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_elsif, anon_sym_else, - [375368] = 4, + anon_sym_when, + anon_sym_in, + [378028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8205), 1, + STATE(8251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10913), 14, + ACTIONS(10969), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671790,46 +677131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375395] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8206), 1, - sym_heredoc_body, - STATE(12164), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [375438] = 4, + [378055] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8207), 1, + STATE(8252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10915), 14, + ACTIONS(5118), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671844,15 +677154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375465] = 4, + [378082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8208), 1, + STATE(8253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10917), 14, + ACTIONS(10971), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671867,15 +677177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375492] = 4, + [378109] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8209), 1, + STATE(8254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10919), 14, + ACTIONS(10973), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671890,10 +677200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375519] = 4, + [378136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8210), 1, + STATE(8255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -671913,15 +677223,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375546] = 4, + [378163] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8211), 1, + STATE(8256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10923), 14, + ACTIONS(10975), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671936,15 +677246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375573] = 4, + [378190] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8212), 1, + STATE(8257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10925), 14, + ACTIONS(10799), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671959,15 +677269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375600] = 4, + [378217] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8213), 1, + STATE(8258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5134), 14, + ACTIONS(10977), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -671982,15 +677292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375627] = 4, + [378244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8214), 1, + STATE(8259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10923), 14, + ACTIONS(10871), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672005,15 +677315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375654] = 4, + [378271] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8215), 1, + STATE(8260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10927), 14, + ACTIONS(10979), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672028,15 +677338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375681] = 4, + [378298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8216), 1, + STATE(8261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10929), 14, + ACTIONS(10763), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672051,23 +677361,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375708] = 8, + [378325] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, + ACTIONS(10688), 1, sym__modifier_if_keyword, - ACTIONS(10649), 1, + ACTIONS(10690), 1, sym__modifier_unless_keyword, - ACTIONS(10651), 1, + ACTIONS(10692), 1, sym__modifier_rescue_keyword, - ACTIONS(10653), 1, + ACTIONS(10694), 1, sym__modifier_ensure_keyword, - STATE(8217), 1, + STATE(8262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10931), 10, + ACTIONS(10981), 10, sym__line_break, ts_builtin_sym_end, anon_sym_SEMI, @@ -672078,15 +677388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375743] = 4, + [378360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8218), 1, + STATE(8263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5114), 14, + ACTIONS(10983), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672101,38 +677411,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375770] = 4, + [378387] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8219), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8264), 1, sym_heredoc_body, + STATE(11421), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10933), 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, - [375797] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [378430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8220), 1, + STATE(8265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10935), 14, + ACTIONS(10765), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672147,15 +677465,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375824] = 4, + [378457] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8221), 1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(10731), 1, + anon_sym_sizeof, + ACTIONS(10733), 1, + anon_sym_instance_sizeof, + ACTIONS(10735), 1, + anon_sym_offsetof, + STATE(8266), 1, sym_heredoc_body, + STATE(11251), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10937), 14, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + STATE(12335), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [378500] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8267), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10795), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672170,15 +677519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375851] = 4, + [378527] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8222), 1, + STATE(8268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10939), 14, + ACTIONS(10985), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672193,15 +677542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375878] = 4, + [378554] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8223), 1, + STATE(8269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10941), 14, + ACTIONS(10987), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672216,15 +677565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375905] = 4, + [378581] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8224), 1, + STATE(8270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10937), 14, + ACTIONS(10989), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672239,15 +677588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375932] = 4, + [378608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8225), 1, + STATE(8271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5126), 14, + ACTIONS(10751), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672262,24 +677611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375959] = 8, + [378635] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - STATE(8226), 1, + STATE(8272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10943), 10, + ACTIONS(10991), 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, @@ -672289,77 +677634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [375994] = 12, + [378662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8227), 1, - sym_heredoc_body, - STATE(11442), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [376037] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(10671), 1, - anon_sym_sizeof, - ACTIONS(10673), 1, - anon_sym_instance_sizeof, - ACTIONS(10675), 1, - anon_sym_offsetof, - STATE(8228), 1, - sym_heredoc_body, - STATE(11567), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11441), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [376080] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8229), 1, + STATE(8273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 14, + ACTIONS(10993), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672374,15 +677657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376107] = 4, + [378689] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8230), 1, + STATE(8274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10945), 14, + ACTIONS(10913), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672397,15 +677680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376134] = 4, + [378716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8231), 1, + STATE(8275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10947), 14, + ACTIONS(10919), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672420,15 +677703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376161] = 4, + [378743] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8232), 1, + STATE(8276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10949), 14, + ACTIONS(10995), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672443,15 +677726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376188] = 4, + [378770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8233), 1, + STATE(8277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10951), 14, + ACTIONS(5166), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672466,15 +677749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376215] = 4, + [378797] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8234), 1, + STATE(8278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10953), 14, + ACTIONS(10997), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672489,15 +677772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376242] = 4, + [378824] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8235), 1, + STATE(8279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6534), 14, + ACTIONS(10999), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672512,15 +677795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376269] = 4, + [378851] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8236), 1, + STATE(8280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6510), 14, + ACTIONS(11001), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672535,15 +677818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376296] = 4, + [378878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8237), 1, + STATE(8281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 14, + ACTIONS(11003), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672558,68 +677841,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [376323] = 7, + [378905] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, - anon_sym_forall, - ACTIONS(10955), 1, - aux_sym_top_level_fun_def_token1, - STATE(8238), 1, + STATE(8282), 1, sym_heredoc_body, - STATE(8401), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5020), 10, + ACTIONS(10763), 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_elsif, anon_sym_else, - [376355] = 4, + anon_sym_when, + anon_sym_in, + [378932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8239), 1, + STATE(8283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4622), 13, + ACTIONS(10763), 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_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - aux_sym_top_level_fun_def_token1, - anon_sym_forall, + anon_sym_elsif, anon_sym_else, - [376381] = 7, + anon_sym_when, + anon_sym_in, + [378959] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, + ACTIONS(10719), 1, anon_sym_forall, - ACTIONS(10957), 1, + ACTIONS(11005), 1, aux_sym_top_level_fun_def_token1, - STATE(8240), 1, + STATE(8284), 1, sym_heredoc_body, - STATE(8393), 1, + STATE(8540), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4980), 10, + ACTIONS(4996), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672630,65 +677912,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [376413] = 4, + [378991] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8241), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10100), 13, - anon_sym_SEMI, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_type, - anon_sym_union, - anon_sym_DOLLAR, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_private, - anon_sym_alias, - [376439] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8242), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10959), 13, - anon_sym_SEMI, - anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_struct, - anon_sym_enum, - anon_sym_fun, - anon_sym_type, - anon_sym_union, - anon_sym_DOLLAR, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_private, - anon_sym_alias, - [376465] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10747), 1, + ACTIONS(10719), 1, anon_sym_forall, - ACTIONS(10961), 1, + ACTIONS(11007), 1, aux_sym_top_level_fun_def_token1, - STATE(8243), 1, + STATE(8285), 1, sym_heredoc_body, - STATE(8382), 1, + STATE(8376), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4988), 10, + ACTIONS(5010), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672699,40 +677937,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [376497] = 7, + [379023] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, + ACTIONS(10719), 1, anon_sym_forall, - ACTIONS(10963), 1, + ACTIONS(11009), 1, aux_sym_top_level_fun_def_token1, - STATE(8244), 1, + STATE(8286), 1, sym_heredoc_body, - STATE(8405), 1, + STATE(8491), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5038), 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, - [376529] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8245), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4861), 13, + ACTIONS(5016), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672741,108 +677960,45 @@ 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_end, - anon_sym_forall, anon_sym_else, - [376555] = 11, + [379055] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4884), 1, - anon_sym_EQ, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(10965), 1, - anon_sym_PIPE, - STATE(8246), 1, - sym_heredoc_body, - STATE(8259), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4886), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [376594] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4888), 1, - anon_sym_EQ, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(10965), 1, - anon_sym_PIPE, - STATE(8247), 1, - sym_heredoc_body, - STATE(8259), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4890), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [376633] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4896), 1, - anon_sym_EQ, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(10965), 1, - anon_sym_PIPE, - STATE(8248), 1, - sym_heredoc_body, - STATE(8259), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4898), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [376672] = 6, + STATE(8287), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11011), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_type, + anon_sym_union, + anon_sym_DOLLAR, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_private, + anon_sym_alias, + [379081] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7062), 1, - anon_sym_COMMA, - STATE(8249), 1, + ACTIONS(10719), 1, + anon_sym_forall, + ACTIONS(11013), 1, + aux_sym_top_level_fun_def_token1, + STATE(8288), 1, sym_heredoc_body, - STATE(8251), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(8474), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 10, + ACTIONS(5038), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672853,42 +678009,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [376701] = 7, + [379113] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(10967), 1, - anon_sym_DASH_GT, - STATE(8250), 1, + STATE(8289), 1, sym_heredoc_body, - STATE(10033), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 9, + ACTIONS(10159), 13, anon_sym_SEMI, anon_sym_end, anon_sym_AT_LBRACK, - anon_sym_def, + anon_sym_struct, + anon_sym_enum, + anon_sym_fun, + anon_sym_type, + anon_sym_union, + anon_sym_DOLLAR, sym__constant_segment, anon_sym_COLON_COLON, - sym_class_var, sym_private, - sym_protected, - [376732] = 5, + anon_sym_alias, + [379139] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10969), 1, - anon_sym_COMMA, + STATE(8290), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8251), 2, + ACTIONS(4618), 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_LPAREN, + anon_sym_end, + aux_sym_top_level_fun_def_token1, + anon_sym_forall, + anon_sym_else, + [379165] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8291), 1, sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5934), 10, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4861), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672897,21 +678070,75 @@ 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_end, + anon_sym_forall, anon_sym_else, - [376759] = 6, + [379191] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4896), 1, + anon_sym_EQ, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11015), 1, + anon_sym_PIPE, + STATE(8292), 1, + sym_heredoc_body, + STATE(8310), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4898), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [379230] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11017), 1, + anon_sym_COLON_COLON, + STATE(8293), 1, + sym_heredoc_body, + STATE(8311), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4857), 10, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_do, + [379259] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, + ACTIONS(10719), 1, anon_sym_forall, - STATE(8252), 1, + STATE(8294), 1, sym_heredoc_body, - STATE(8410), 1, + STATE(8511), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 10, + ACTIONS(5054), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672922,19 +678149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [376788] = 6, + [379288] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, + ACTIONS(10719), 1, anon_sym_forall, - STATE(8253), 1, + STATE(8295), 1, sym_heredoc_body, - STATE(8400), 1, + STATE(8543), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5054), 10, + ACTIONS(5070), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672945,18 +678172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [376817] = 5, + [379317] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10972), 1, + ACTIONS(7182), 1, anon_sym_COMMA, + STATE(8296), 1, + sym_heredoc_body, + STATE(8303), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8254), 2, - sym_heredoc_body, - aux_sym_forall_repeat1, - ACTIONS(5066), 10, + ACTIONS(5750), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -672967,20 +678195,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [376844] = 6, + [379346] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10975), 1, + ACTIONS(10212), 1, anon_sym_COLON_COLON, - STATE(8255), 1, - sym_heredoc_body, - STATE(8270), 1, + ACTIONS(11019), 1, + anon_sym_COLON, + STATE(7773), 1, aux_sym_constant_repeat1, + STATE(8297), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 10, - sym__start_of_brace_block, + ACTIONS(4857), 9, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -672989,43 +678219,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_do, - [376873] = 6, + [379377] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4873), 1, - anon_sym_EQ, - ACTIONS(10977), 1, - anon_sym_PIPE, + ACTIONS(11021), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8256), 2, + STATE(8298), 2, sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - [376902] = 6, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5970), 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, + [379404] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, + ACTIONS(10719), 1, anon_sym_forall, - STATE(8257), 1, + STATE(8299), 1, sym_heredoc_body, - STATE(8404), 1, + STATE(8475), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5081), 10, + ACTIONS(5074), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -673036,19 +678264,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [376931] = 6, + [379433] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, - anon_sym_forall, - STATE(8258), 1, + ACTIONS(11024), 1, + anon_sym_COMMA, + STATE(8300), 1, sym_heredoc_body, - STATE(8403), 1, - sym_forall, + STATE(8314), 1, + aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5062), 10, + ACTIONS(5044), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -673059,43 +678287,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [376960] = 7, + [379462] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4880), 1, + ACTIONS(4859), 1, anon_sym_EQ, - ACTIONS(10965), 1, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11015), 1, anon_sym_PIPE, - STATE(8256), 1, - aux_sym_union_type_repeat1, - STATE(8259), 1, + STATE(8301), 1, sym_heredoc_body, + STATE(8310), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 9, + ACTIONS(4861), 5, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - [376991] = 6, + [379501] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7062), 1, + ACTIONS(7182), 1, anon_sym_COMMA, - STATE(8251), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(8260), 1, + STATE(8302), 1, sym_heredoc_body, + STATE(8306), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 10, + ACTIONS(5856), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -673106,210 +678338,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [377020] = 6, + [379530] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10975), 1, - anon_sym_COLON_COLON, - STATE(8261), 1, + ACTIONS(7182), 1, + anon_sym_COMMA, + STATE(8298), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(8303), 1, sym_heredoc_body, - STATE(8269), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 10, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_do, - [377049] = 6, + ACTIONS(5856), 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, + [379559] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, + ACTIONS(11026), 1, + anon_sym_LPAREN, + ACTIONS(11028), 1, + aux_sym_top_level_fun_def_token1, + ACTIONS(11030), 1, anon_sym_forall, - STATE(8262), 1, + STATE(8304), 1, sym_heredoc_body, - STATE(8383), 1, + STATE(9068), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5073), 10, + ACTIONS(5002), 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, - [377078] = 6, + [379592] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10980), 1, - anon_sym_COMMA, - STATE(8254), 1, - aux_sym_forall_repeat1, - STATE(8263), 1, + ACTIONS(11030), 1, + anon_sym_forall, + ACTIONS(11032), 1, + anon_sym_LPAREN, + ACTIONS(11034), 1, + aux_sym_top_level_fun_def_token1, + STATE(8305), 1, sym_heredoc_body, + STATE(8924), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5058), 10, + ACTIONS(4986), 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, - [377107] = 8, + [379625] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10982), 1, - anon_sym_LPAREN, - ACTIONS(10984), 1, - aux_sym_top_level_fun_def_token1, - ACTIONS(10986), 1, - anon_sym_forall, - STATE(8264), 1, + ACTIONS(7182), 1, + anon_sym_COMMA, + STATE(8298), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(8306), 1, sym_heredoc_body, - STATE(9047), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4994), 8, + ACTIONS(5888), 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, - [377140] = 11, + anon_sym_else, + [379654] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4892), 1, + ACTIONS(4888), 1, anon_sym_EQ, - ACTIONS(10319), 1, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10327), 1, + ACTIONS(10369), 1, anon_sym_QMARK, - ACTIONS(10965), 1, + ACTIONS(11015), 1, anon_sym_PIPE, - STATE(8259), 1, - aux_sym_union_type_repeat1, - STATE(8265), 1, + STATE(8307), 1, sym_heredoc_body, + STATE(8310), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4894), 5, + ACTIONS(4890), 5, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DASH_GT, - [377179] = 6, + [379693] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7062), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(8260), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(8266), 1, + ACTIONS(11036), 1, + anon_sym_DASH_GT, + STATE(8308), 1, sym_heredoc_body, + STATE(10719), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 10, + ACTIONS(5022), 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, - [377208] = 7, + anon_sym_forall, + [379724] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(10988), 1, - anon_sym_DASH_GT, - STATE(8267), 1, + ACTIONS(4877), 1, + anon_sym_EQ, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11015), 1, + anon_sym_PIPE, + STATE(8309), 1, sym_heredoc_body, - STATE(10652), 1, - aux_sym_proc_type_repeat1, + STATE(8310), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 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, - [377239] = 6, + ACTIONS(4879), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [379763] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10975), 1, - anon_sym_COLON_COLON, - STATE(8261), 1, - aux_sym_constant_repeat1, - STATE(8268), 1, + ACTIONS(4881), 1, + anon_sym_EQ, + ACTIONS(11015), 1, + anon_sym_PIPE, + STATE(8310), 1, sym_heredoc_body, + STATE(8318), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4857), 10, - sym__start_of_brace_block, + ACTIONS(4883), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_DOT, anon_sym_STAR, - anon_sym_PIPE, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_do, - [377268] = 5, + [379794] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10990), 1, + ACTIONS(11017), 1, anon_sym_COLON_COLON, + STATE(8311), 1, + sym_heredoc_body, + STATE(8315), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8269), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4846), 10, + ACTIONS(4847), 10, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -673320,19 +678561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_do, - [377295] = 6, + [379823] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10975), 1, + ACTIONS(11017), 1, anon_sym_COLON_COLON, - STATE(8269), 1, - aux_sym_constant_repeat1, - STATE(8270), 1, + STATE(8312), 1, sym_heredoc_body, + STATE(8316), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4853), 10, + ACTIONS(4847), 10, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -673343,42 +678584,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_do, - [377324] = 11, + [379852] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4859), 1, + ACTIONS(4892), 1, anon_sym_EQ, - ACTIONS(10319), 1, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10327), 1, + ACTIONS(10369), 1, anon_sym_QMARK, - ACTIONS(10965), 1, + ACTIONS(11015), 1, anon_sym_PIPE, - STATE(8259), 1, + STATE(8310), 1, aux_sym_union_type_repeat1, - STATE(8271), 1, + STATE(8313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 5, + ACTIONS(4894), 5, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DASH_GT, - [377363] = 6, + [379891] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11024), 1, + anon_sym_COMMA, + STATE(8314), 1, + sym_heredoc_body, + STATE(8321), 1, + aux_sym_forall_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5058), 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, + [379920] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11038), 1, + anon_sym_COLON_COLON, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8315), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4840), 10, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_do, + [379947] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11017), 1, + anon_sym_COLON_COLON, + STATE(8315), 1, + aux_sym_constant_repeat1, + STATE(8316), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4853), 10, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_do, + [379976] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(4873), 1, anon_sym_EQ, - STATE(8259), 1, + STATE(8310), 1, aux_sym_union_type_repeat1, - STATE(8272), 1, + STATE(8317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -673394,91 +678703,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - [377392] = 7, + [380005] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10168), 1, - anon_sym_COLON_COLON, - ACTIONS(10993), 1, - anon_sym_COLON, - STATE(7742), 1, - aux_sym_constant_repeat1, - STATE(8273), 1, - sym_heredoc_body, + ACTIONS(4873), 1, + anon_sym_EQ, + ACTIONS(11041), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4857), 9, + STATE(8318), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 9, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_DOT, anon_sym_STAR, - anon_sym_PIPE, - anon_sym_LPAREN2, anon_sym_QMARK, - [377423] = 6, + [380034] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7062), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(8249), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(8274), 1, + ACTIONS(11044), 1, + anon_sym_DASH_GT, + STATE(8319), 1, sym_heredoc_body, + STATE(10435), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5737), 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, + ACTIONS(5022), 9, anon_sym_SEMI, anon_sym_end, - anon_sym_else, - [377452] = 8, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [380065] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, + ACTIONS(10719), 1, anon_sym_forall, - ACTIONS(10995), 1, - anon_sym_LPAREN, - ACTIONS(10997), 1, - aux_sym_top_level_fun_def_token1, - STATE(8275), 1, + STATE(8320), 1, sym_heredoc_body, - STATE(8908), 1, + STATE(8371), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5026), 8, + ACTIONS(5062), 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, - [377485] = 6, + anon_sym_else, + [380094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10980), 1, + ACTIONS(11046), 1, anon_sym_COMMA, - STATE(8263), 1, - aux_sym_forall_repeat1, - STATE(8276), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5048), 10, + STATE(8321), 2, + sym_heredoc_body, + aux_sym_forall_repeat1, + ACTIONS(5078), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -673489,19 +678795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [377514] = 6, + [380121] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10747), 1, + ACTIONS(10719), 1, anon_sym_forall, - STATE(8277), 1, + STATE(8322), 1, sym_heredoc_body, - STATE(8407), 1, + STATE(8480), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5077), 10, + ACTIONS(5050), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -673512,121 +678818,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [377543] = 10, + [380150] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10999), 1, - sym__modifier_if_keyword, - ACTIONS(11001), 1, - sym__modifier_unless_keyword, - ACTIONS(11003), 1, - sym__modifier_rescue_keyword, - ACTIONS(11005), 1, - sym__modifier_ensure_keyword, - STATE(2091), 1, - sym__terminator, - STATE(8278), 1, + ACTIONS(10719), 1, + anon_sym_forall, + STATE(8323), 1, sym_heredoc_body, + STATE(8388), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1381), 2, + ACTIONS(5066), 10, sym__line_break, - anon_sym_SEMI, - ACTIONS(10645), 4, + 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, - [377579] = 5, + [380179] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11007), 1, - anon_sym_LPAREN2, - STATE(8279), 1, + STATE(8324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 10, + ACTIONS(5085), 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_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [377605] = 11, + anon_sym_else, + [380203] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4934), 1, + ACTIONS(4881), 1, anon_sym_EQ, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(11009), 1, + ACTIONS(11049), 1, anon_sym_PIPE, - STATE(8280), 1, + STATE(8325), 1, sym_heredoc_body, - STATE(8282), 1, + STATE(8327), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4936), 4, + ACTIONS(4883), 8, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_EQ_GT, - [377643] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11011), 1, - anon_sym_LBRACK, - ACTIONS(11013), 1, anon_sym_DOT, - ACTIONS(11015), 1, anon_sym_STAR, - ACTIONS(11017), 1, - anon_sym_PIPE, - ACTIONS(11019), 1, anon_sym_QMARK, - STATE(8281), 1, + [380233] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10262), 1, + anon_sym_LPAREN2, + STATE(8326), 1, sym_heredoc_body, - STATE(8288), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 5, + ACTIONS(10675), 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, anon_sym_end, - [377679] = 7, + anon_sym_else, + [380259] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4880), 1, + ACTIONS(4873), 1, anon_sym_EQ, - ACTIONS(11009), 1, + ACTIONS(11051), 1, anon_sym_PIPE, - STATE(8282), 1, - sym_heredoc_body, - STATE(8295), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 8, + STATE(8327), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 8, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -673635,15 +678927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_STAR, anon_sym_QMARK, - [377709] = 4, + [380287] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8283), 1, + STATE(8328), 1, sym_heredoc_body, + STATE(8352), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4956), 11, + ACTIONS(4875), 10, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -673654,44 +678948,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - anon_sym_then, - [377733] = 10, + [380313] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11054), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8329), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 9, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_QMARK, + [380339] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10999), 1, + ACTIONS(11030), 1, + anon_sym_forall, + ACTIONS(11057), 1, + aux_sym_top_level_fun_def_token1, + STATE(8330), 1, + sym_heredoc_body, + STATE(9058), 1, + sym_forall, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4996), 8, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(11001), 1, sym__modifier_unless_keyword, - ACTIONS(11003), 1, sym__modifier_rescue_keyword, - ACTIONS(11005), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - STATE(2091), 1, - sym__terminator, - STATE(8284), 1, + anon_sym_SEMI, + anon_sym_end, + [380369] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8331), 1, sym_heredoc_body, + STATE(8429), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1381), 2, + ACTIONS(10669), 10, sym__line_break, - anon_sym_SEMI, - ACTIONS(1857), 4, + 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, - [377769] = 5, + [380395] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8285), 1, + STATE(8332), 1, sym_heredoc_body, - STATE(8516), 1, + STATE(8443), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10600), 10, + ACTIONS(10669), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -673702,118 +679034,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [377795] = 10, + [380421] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11011), 1, - anon_sym_LBRACK, - ACTIONS(11013), 1, - anon_sym_DOT, - ACTIONS(11015), 1, - anon_sym_STAR, - ACTIONS(11017), 1, - anon_sym_PIPE, - ACTIONS(11019), 1, - anon_sym_QMARK, - STATE(8286), 1, + STATE(8333), 1, sym_heredoc_body, - STATE(8288), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 5, + ACTIONS(5022), 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, - [377831] = 10, + anon_sym_forall, + anon_sym_else, + [380445] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11011), 1, - anon_sym_LBRACK, - ACTIONS(11013), 1, - anon_sym_DOT, - ACTIONS(11015), 1, - anon_sym_STAR, - ACTIONS(11017), 1, - anon_sym_PIPE, - ACTIONS(11019), 1, - anon_sym_QMARK, - STATE(8287), 1, + ACTIONS(10262), 1, + anon_sym_LPAREN2, + STATE(8334), 1, sym_heredoc_body, - STATE(8288), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4894), 5, + ACTIONS(10705), 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, anon_sym_end, - [377867] = 6, + anon_sym_else, + [380471] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11017), 1, - anon_sym_PIPE, - STATE(8288), 1, + STATE(8335), 1, sym_heredoc_body, - STATE(8293), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 9, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4840), 11, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_end, anon_sym_STAR, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, - [377895] = 11, + anon_sym_do, + [380495] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3729), 1, + ACTIONS(3767), 1, anon_sym_DOT, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - STATE(8289), 1, + STATE(8336), 1, sym_heredoc_body, - STATE(9309), 1, + STATE(9448), 1, sym_implicit_call_chainable, - STATE(9595), 1, + STATE(9665), 1, sym_constant, - STATE(9784), 1, + STATE(9926), 1, sym_implicit_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9864), 2, + STATE(9859), 2, sym_generic_instance_type, sym__implicit_object_call, - ACTIONS(11021), 3, + ACTIONS(11059), 3, sym_nil, sym_true, sym_false, - [377933] = 5, + [380533] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8290), 1, + STATE(8337), 1, sym_heredoc_body, - STATE(8530), 1, + STATE(8381), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10600), 10, + ACTIONS(10696), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -673824,44 +679143,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [377959] = 11, + [380559] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4966), 1, + ACTIONS(4888), 1, anon_sym_EQ, - ACTIONS(10319), 1, + ACTIONS(10361), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(10363), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10365), 1, anon_sym_STAR, - ACTIONS(10327), 1, + ACTIONS(10369), 1, anon_sym_QMARK, - ACTIONS(11009), 1, + ACTIONS(11049), 1, anon_sym_PIPE, - STATE(8282), 1, + STATE(8325), 1, aux_sym_union_type_repeat1, - STATE(8291), 1, + STATE(8338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4968), 4, + ACTIONS(4890), 4, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, - [377997] = 5, + [380597] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8288), 1, + ACTIONS(4892), 1, + anon_sym_EQ, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11049), 1, + anon_sym_PIPE, + STATE(8325), 1, aux_sym_union_type_repeat1, - STATE(8292), 1, + STATE(8339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 10, + ACTIONS(4894), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + [380635] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_DOT, + ACTIONS(11065), 1, + anon_sym_STAR, + ACTIONS(11067), 1, + anon_sym_PIPE, + ACTIONS(11069), 1, + anon_sym_QMARK, + STATE(8340), 1, + sym_heredoc_body, + STATE(8352), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4890), 5, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + [380671] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11071), 1, + anon_sym_LPAREN2, + STATE(8341), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4902), 10, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -673872,36 +679244,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - [378023] = 5, + [380697] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11023), 1, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_DOT, + ACTIONS(11065), 1, + anon_sym_STAR, + ACTIONS(11067), 1, anon_sym_PIPE, + ACTIONS(11069), 1, + anon_sym_QMARK, + STATE(8342), 1, + sym_heredoc_body, + STATE(8352), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8293), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 9, + ACTIONS(4894), 5, sym__line_break, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_QMARK, - [378049] = 4, + [380733] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8294), 1, + ACTIONS(3429), 1, + sym__start_of_brace_block, + ACTIONS(11073), 1, + anon_sym_do, + STATE(8343), 1, sym_heredoc_body, + STATE(9395), 1, + sym_do_end_block, + STATE(9398), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4924), 11, + ACTIONS(5669), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [380765] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8344), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4940), 11, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -673913,20 +679314,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_then, - [378073] = 6, + [380789] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4873), 1, - anon_sym_EQ, - ACTIONS(11026), 1, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_DOT, + ACTIONS(11065), 1, + anon_sym_STAR, + ACTIONS(11067), 1, anon_sym_PIPE, + ACTIONS(11069), 1, + anon_sym_QMARK, + STATE(8345), 1, + sym_heredoc_body, + STATE(8352), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8295), 2, + ACTIONS(4861), 5, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + [380825] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4896), 1, + anon_sym_EQ, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11049), 1, + anon_sym_PIPE, + STATE(8325), 1, + aux_sym_union_type_repeat1, + STATE(8346), 1, sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4898), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + [380863] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4873), 1, + anon_sym_EQ, + STATE(8325), 1, aux_sym_union_type_repeat1, - ACTIONS(4875), 8, + STATE(8347), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4875), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -673934,192 +679387,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT, anon_sym_STAR, + anon_sym_PIPE, anon_sym_QMARK, - [378101] = 10, + [380891] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(10658), 1, + anon_sym_STAR, + ACTIONS(10662), 1, + anon_sym_STAR_STAR, + STATE(8348), 1, + sym_heredoc_body, + STATE(9126), 1, + aux_sym_param_repeat1, + STATE(9304), 1, + sym_annotation, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + STATE(10916), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [380929] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11030), 1, + anon_sym_forall, + ACTIONS(11075), 1, + aux_sym_top_level_fun_def_token1, + STATE(8349), 1, + sym_heredoc_body, + STATE(9186), 1, + sym_forall, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5010), 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, + [380959] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11011), 1, + STATE(8350), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4944), 11, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(11013), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(11015), 1, + anon_sym_end, anon_sym_STAR, - ACTIONS(11017), 1, anon_sym_PIPE, - ACTIONS(11019), 1, anon_sym_QMARK, - STATE(8288), 1, - aux_sym_union_type_repeat1, - STATE(8296), 1, + anon_sym_then, + [380983] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11077), 1, + sym__modifier_if_keyword, + ACTIONS(11079), 1, + sym__modifier_unless_keyword, + ACTIONS(11081), 1, + sym__modifier_rescue_keyword, + ACTIONS(11083), 1, + sym__modifier_ensure_keyword, + STATE(2117), 1, + sym__terminator, + STATE(8351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 5, + ACTIONS(1381), 2, sym__line_break, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(1859), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, anon_sym_end, - [378137] = 10, + anon_sym_else, + [381019] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11011), 1, + ACTIONS(11067), 1, + anon_sym_PIPE, + STATE(8329), 1, + aux_sym_union_type_repeat1, + STATE(8352), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4883), 9, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(11013), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(11015), 1, + anon_sym_end, anon_sym_STAR, - ACTIONS(11017), 1, - anon_sym_PIPE, - ACTIONS(11019), 1, anon_sym_QMARK, - STATE(8288), 1, - aux_sym_union_type_repeat1, - STATE(8297), 1, + [381047] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 5, + ACTIONS(4861), 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_DASH_GT, + anon_sym_end, + anon_sym_forall, + [381071] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8354), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5970), 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, - [378173] = 11, + anon_sym_else, + [381095] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4884), 1, - anon_sym_EQ, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(11009), 1, - anon_sym_PIPE, - STATE(8282), 1, - aux_sym_union_type_repeat1, - STATE(8298), 1, + ACTIONS(11077), 1, + sym__modifier_if_keyword, + ACTIONS(11079), 1, + sym__modifier_unless_keyword, + ACTIONS(11081), 1, + sym__modifier_rescue_keyword, + ACTIONS(11083), 1, + sym__modifier_ensure_keyword, + STATE(2117), 1, + sym__terminator, + STATE(8355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - [378211] = 11, + ACTIONS(1381), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(10686), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [381131] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3729), 1, + ACTIONS(3767), 1, anon_sym_DOT, - ACTIONS(9707), 1, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - STATE(8299), 1, + STATE(8356), 1, sym_heredoc_body, - STATE(9309), 1, - sym_implicit_call_chainable, - STATE(9358), 1, + STATE(9366), 1, sym_constant, - STATE(9784), 1, + STATE(9448), 1, + sym_implicit_call_chainable, + STATE(9926), 1, sym_implicit_call_unchainable, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9445), 2, + STATE(9500), 2, sym_generic_instance_type, sym__implicit_object_call, - ACTIONS(11029), 3, + ACTIONS(11085), 3, sym_nil, sym_true, sym_false, - [378249] = 6, + [381169] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4873), 1, + ACTIONS(4922), 1, anon_sym_EQ, - STATE(8282), 1, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11049), 1, + anon_sym_PIPE, + STATE(8325), 1, aux_sym_union_type_repeat1, - STATE(8300), 1, + STATE(8357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 9, + ACTIONS(4924), 4, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [378277] = 5, + [381207] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8301), 1, + STATE(8358), 1, sym_heredoc_body, - STATE(8370), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10659), 10, + ACTIONS(4618), 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_LPAREN, anon_sym_end, - anon_sym_else, - [378303] = 11, + aux_sym_top_level_fun_def_token1, + anon_sym_forall, + [381231] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4888), 1, - anon_sym_EQ, - ACTIONS(10319), 1, + ACTIONS(11061), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(11063), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(11065), 1, anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(11009), 1, + ACTIONS(11067), 1, anon_sym_PIPE, - STATE(8282), 1, + ACTIONS(11069), 1, + anon_sym_QMARK, + STATE(8352), 1, aux_sym_union_type_repeat1, - STATE(8302), 1, + STATE(8359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4898), 5, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - [378341] = 4, + anon_sym_DASH_GT, + anon_sym_end, + [381267] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8303), 1, + ACTIONS(11030), 1, + anon_sym_forall, + ACTIONS(11087), 1, + aux_sym_top_level_fun_def_token1, + STATE(8360), 1, sym_heredoc_body, + STATE(8920), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4622), 11, + ACTIONS(5038), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674127,69 +679695,92 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_end, - aux_sym_top_level_fun_def_token1, - anon_sym_forall, - [378365] = 11, + [381297] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4896), 1, - anon_sym_EQ, - ACTIONS(10319), 1, + ACTIONS(11061), 1, anon_sym_LBRACK, - ACTIONS(10321), 1, + ACTIONS(11063), 1, anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(11065), 1, anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(11009), 1, + ACTIONS(11067), 1, anon_sym_PIPE, - STATE(8282), 1, + ACTIONS(11069), 1, + anon_sym_QMARK, + STATE(8352), 1, aux_sym_union_type_repeat1, - STATE(8304), 1, + STATE(8361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4879), 5, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - [378403] = 5, + anon_sym_DASH_GT, + anon_sym_end, + [381333] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10217), 1, - anon_sym_LPAREN2, - STATE(8305), 1, + ACTIONS(11030), 1, + anon_sym_forall, + ACTIONS(11089), 1, + aux_sym_top_level_fun_def_token1, + STATE(8362), 1, sym_heredoc_body, + STATE(8890), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10639), 10, + ACTIONS(5016), 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, - [378429] = 5, + [381363] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10217), 1, - anon_sym_LPAREN2, - STATE(8306), 1, + ACTIONS(4970), 1, + anon_sym_EQ, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11049), 1, + anon_sym_PIPE, + STATE(8325), 1, + aux_sym_union_type_repeat1, + STATE(8363), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4972), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + [381401] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10643), 10, + ACTIONS(10905), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674200,41 +679791,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378455] = 4, + [381424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8307), 1, + ACTIONS(11091), 1, + anon_sym_LPAREN2, + STATE(8365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5934), 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, + ACTIONS(4902), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_end, - anon_sym_else, - [378479] = 7, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [381449] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, + ACTIONS(11030), 1, anon_sym_forall, - ACTIONS(11031), 1, - aux_sym_top_level_fun_def_token1, - STATE(8308), 1, + STATE(8366), 1, sym_heredoc_body, - STATE(9045), 1, + STATE(8947), 1, sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4988), 8, + ACTIONS(5070), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674243,85 +679832,103 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [378509] = 11, + [381476] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(10608), 1, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, anon_sym_STAR, - ACTIONS(10612), 1, - anon_sym_STAR_STAR, - STATE(8309), 1, + ACTIONS(11099), 1, + anon_sym_PIPE, + ACTIONS(11101), 1, + anon_sym_QMARK, + STATE(8367), 1, sym_heredoc_body, - STATE(9098), 1, - aux_sym_param_repeat1, - STATE(9264), 1, - sym_annotation, + STATE(8372), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - STATE(10708), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [378547] = 4, + ACTIONS(4898), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [381511] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8310), 1, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, + anon_sym_STAR, + ACTIONS(11099), 1, + anon_sym_PIPE, + ACTIONS(11101), 1, + anon_sym_QMARK, + STATE(8368), 1, sym_heredoc_body, + STATE(8372), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 11, + ACTIONS(4879), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [381546] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8369), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10745), 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, anon_sym_end, - anon_sym_forall, - [378571] = 7, + anon_sym_else, + [381569] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - ACTIONS(11033), 1, - aux_sym_top_level_fun_def_token1, - STATE(8311), 1, + STATE(8370), 1, sym_heredoc_body, - STATE(9096), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4980), 8, + ACTIONS(10745), 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, - [378601] = 4, + anon_sym_else, + [381592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8312), 1, + STATE(8371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 11, + ACTIONS(5110), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674331,103 +679938,98 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - anon_sym_forall, anon_sym_else, - [378625] = 4, + [381615] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8313), 1, + ACTIONS(11099), 1, + anon_sym_PIPE, + STATE(8372), 1, sym_heredoc_body, + STATE(8425), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4846), 11, + ACTIONS(4883), 8, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_DOT, anon_sym_STAR, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_do, - [378649] = 7, + [381642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - ACTIONS(11035), 1, - aux_sym_top_level_fun_def_token1, - STATE(8314), 1, + STATE(8373), 1, sym_heredoc_body, - STATE(9087), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5038), 8, + ACTIONS(10805), 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, - [378679] = 7, + anon_sym_else, + [381665] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - ACTIONS(11037), 1, - aux_sym_top_level_fun_def_token1, - STATE(8315), 1, + STATE(8374), 1, sym_heredoc_body, - STATE(8985), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5020), 8, + ACTIONS(4902), 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_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - [378709] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [381688] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8316), 1, + ACTIONS(3459), 1, + sym__start_of_brace_block, + ACTIONS(11103), 1, + anon_sym_do, + STATE(8375), 1, sym_heredoc_body, + STATE(9481), 1, + sym_do_end_block, + STATE(9499), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5098), 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, + ACTIONS(5669), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_end, - anon_sym_else, - [378733] = 4, + anon_sym_DOT, + anon_sym_EQ, + [381719] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8317), 1, + STATE(8376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10861), 10, + ACTIONS(5114), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674438,15 +680040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378756] = 4, + [381742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8318), 1, + STATE(8377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10945), 10, + ACTIONS(10749), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674457,15 +680059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378779] = 4, + [381765] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8319), 1, + STATE(8378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10799), 10, + ACTIONS(10943), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674476,15 +680078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378802] = 4, + [381788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8320), 1, + STATE(8379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10951), 10, + ACTIONS(10779), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674495,34 +680097,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378825] = 4, + [381811] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8321), 1, + STATE(8380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10901), 10, + ACTIONS(4952), 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_DOT, anon_sym_end, - anon_sym_else, - [378848] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [381834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8322), 1, + STATE(8381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10883), 10, + ACTIONS(10791), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674533,15 +680135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378871] = 4, + [381857] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8323), 1, + STATE(8382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10737), 10, + ACTIONS(10997), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674552,38 +680154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378894] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3447), 1, - sym__start_of_brace_block, - ACTIONS(11039), 1, - anon_sym_do, - STATE(8324), 1, - sym_heredoc_body, - STATE(9390), 1, - sym_do_end_block, - STATE(9405), 1, - sym_brace_block, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5710), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [378925] = 4, + [381880] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8325), 1, + STATE(8383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10695), 10, + ACTIONS(10967), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674594,15 +680173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378948] = 4, + [381903] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8326), 1, + STATE(8384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10761), 10, + ACTIONS(10857), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674613,15 +680192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378971] = 4, + [381926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8327), 1, + STATE(8385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10777), 10, + ACTIONS(10783), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674632,15 +680211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [378994] = 4, + [381949] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8328), 1, + STATE(8386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10897), 10, + ACTIONS(10989), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674651,15 +680230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379017] = 4, + [381972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8329), 1, + STATE(8387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10713), 10, + ACTIONS(10931), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674670,15 +680249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379040] = 4, + [381995] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8330), 1, + STATE(8388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10807), 10, + ACTIONS(5118), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674689,34 +680268,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379063] = 4, + [382018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8331), 1, + STATE(8389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10859), 10, + ACTIONS(4976), 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_DOT, anon_sym_end, - anon_sym_else, - [379086] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [382041] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8332), 1, + STATE(8390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10863), 10, + ACTIONS(10675), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674727,34 +680306,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379109] = 4, + [382064] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8333), 1, + STATE(8391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10773), 10, + ACTIONS(4912), 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_DOT, anon_sym_end, - anon_sym_else, - [379132] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [382087] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8334), 1, + STATE(8392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 10, + ACTIONS(10745), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674765,15 +680344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379155] = 4, + [382110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8335), 1, + STATE(8393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 10, + ACTIONS(10921), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674784,15 +680363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379178] = 4, + [382133] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8336), 1, + STATE(8394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 10, + ACTIONS(10705), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674803,15 +680382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379201] = 4, + [382156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8337), 1, + STATE(8395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 10, + ACTIONS(10921), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674822,53 +680401,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379224] = 4, + [382179] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8338), 1, + ACTIONS(11030), 1, + anon_sym_forall, + STATE(8396), 1, sym_heredoc_body, + STATE(8921), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 10, + ACTIONS(5074), 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, - [379247] = 4, + [382206] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8339), 1, + ACTIONS(11105), 1, + anon_sym_COMMA, + STATE(8397), 1, sym_heredoc_body, + STATE(8460), 1, + aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 10, + ACTIONS(5044), 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, - [379270] = 4, + [382233] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8340), 1, + STATE(8398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10759), 10, + ACTIONS(10889), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674879,36 +680462,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379293] = 6, + [382256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - STATE(8341), 1, + STATE(8399), 1, sym_heredoc_body, - STATE(9048), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 8, + ACTIONS(10889), 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, - [379320] = 4, + anon_sym_else, + [382279] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8342), 1, + STATE(8400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10767), 10, + ACTIONS(10741), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674919,15 +680500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379343] = 4, + [382302] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8343), 1, + STATE(8401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10771), 10, + ACTIONS(5130), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674938,15 +680519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379366] = 4, + [382325] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8344), 1, + STATE(8402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10773), 10, + ACTIONS(5921), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674957,15 +680538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379389] = 4, + [382348] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8345), 1, + STATE(8403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 10, + ACTIONS(10849), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674976,15 +680557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379412] = 4, + [382371] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8346), 1, + STATE(8404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 10, + ACTIONS(10979), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -674995,34 +680576,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379435] = 4, + [382394] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8347), 1, + ACTIONS(11077), 1, + sym__modifier_if_keyword, + ACTIONS(11079), 1, + sym__modifier_unless_keyword, + ACTIONS(11081), 1, + sym__modifier_rescue_keyword, + ACTIONS(11083), 1, + sym__modifier_ensure_keyword, + STATE(8405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 10, + ACTIONS(10981), 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, - [379458] = 4, + [382425] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8348), 1, + STATE(8406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 10, + ACTIONS(10853), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675033,15 +680618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379481] = 4, + [382448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8349), 1, + STATE(8407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 10, + ACTIONS(10745), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675052,15 +680637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379504] = 4, + [382471] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8350), 1, + STATE(8408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 10, + ACTIONS(10855), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675071,15 +680656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379527] = 4, + [382494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8351), 1, + STATE(8409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10759), 10, + ACTIONS(10861), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675090,15 +680675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379550] = 4, + [382517] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8352), 1, + STATE(8410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10767), 10, + ACTIONS(10865), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675109,15 +680694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379573] = 4, + [382540] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8353), 1, + STATE(8411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10771), 10, + ACTIONS(10711), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675128,59 +680713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379596] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8354), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4902), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [379619] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11047), 1, - anon_sym_PIPE, - ACTIONS(11049), 1, - anon_sym_QMARK, - STATE(8355), 1, - sym_heredoc_body, - STATE(8432), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4886), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [379654] = 4, + [382563] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8356), 1, + STATE(8412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10721), 10, + ACTIONS(10757), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675191,15 +680732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379677] = 4, + [382586] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8357), 1, + STATE(8413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10731), 10, + ACTIONS(10839), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675210,53 +680751,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379700] = 4, + [382609] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8358), 1, + STATE(8414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4916), 10, + ACTIONS(10879), 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_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [379723] = 4, + anon_sym_else, + [382632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8359), 1, + STATE(8415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4920), 10, + ACTIONS(10883), 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_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [379746] = 4, + anon_sym_else, + [382655] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8360), 1, + STATE(8416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10949), 10, + ACTIONS(10907), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675267,15 +680808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379769] = 4, + [382678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8361), 1, + STATE(8417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10733), 10, + ACTIONS(10873), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675286,15 +680827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379792] = 4, + [382701] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8362), 1, + STATE(8418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10719), 10, + ACTIONS(10721), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675305,15 +680846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379815] = 4, + [382724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8363), 1, + STATE(8419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10749), 10, + ACTIONS(10789), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675324,15 +680865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379838] = 4, + [382747] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8364), 1, + STATE(8420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10751), 10, + ACTIONS(10801), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675343,15 +680884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379861] = 4, + [382770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8365), 1, + STATE(8421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10753), 10, + ACTIONS(10823), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675362,15 +680903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379884] = 4, + [382793] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8366), 1, + STATE(8422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10749), 10, + ACTIONS(10941), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675381,78 +680922,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [379907] = 10, + [382816] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11047), 1, - anon_sym_PIPE, - ACTIONS(11049), 1, - anon_sym_QMARK, - STATE(8367), 1, - sym_heredoc_body, - STATE(8432), 1, + STATE(8372), 1, aux_sym_union_type_repeat1, + STATE(8423), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4894), 4, + ACTIONS(4875), 9, sym__start_of_brace_block, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_do, - [379942] = 4, + [382841] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8368), 1, + ACTIONS(7454), 1, + anon_sym_COMMA, + STATE(8424), 1, sym_heredoc_body, + STATE(8482), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10751), 10, + ACTIONS(5750), 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, - [379965] = 4, + [382868] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8369), 1, - sym_heredoc_body, + ACTIONS(11107), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10753), 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, - [379988] = 4, + STATE(8425), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 8, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_do, + [382893] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8370), 1, + STATE(8426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10723), 10, + ACTIONS(10807), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675463,15 +681002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380011] = 4, + [382916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8371), 1, + STATE(8427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10765), 10, + ACTIONS(10869), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675482,15 +681021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380034] = 4, + [382939] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8372), 1, + STATE(8428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10719), 10, + ACTIONS(10925), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675501,15 +681040,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380057] = 4, + [382962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8373), 1, + STATE(8429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6845), 10, + ACTIONS(10809), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675520,15 +681059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380080] = 4, + [382985] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8374), 1, + STATE(8430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10865), 10, + ACTIONS(10815), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675539,15 +681078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380103] = 4, + [383008] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8375), 1, + STATE(8431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10867), 10, + ACTIONS(10917), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675558,15 +681097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380126] = 4, + [383031] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8376), 1, + STATE(8432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10869), 10, + ACTIONS(10923), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675577,15 +681116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380149] = 4, + [383054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8377), 1, + STATE(8433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10871), 10, + ACTIONS(10927), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675596,91 +681135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380172] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8378), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4928), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [380195] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8379), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4908), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [380218] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8380), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4932), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [380241] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8381), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4940), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [380264] = 4, + [383077] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8382), 1, + STATE(8434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5130), 10, + ACTIONS(10875), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675691,15 +681154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380287] = 4, + [383100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8383), 1, + STATE(8435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5146), 10, + ACTIONS(10949), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675710,15 +681173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380310] = 4, + [383123] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8384), 1, + STATE(8436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5106), 10, + ACTIONS(10875), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675729,15 +681192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380333] = 4, + [383146] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8385), 1, + STATE(8437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10875), 10, + ACTIONS(10893), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675748,15 +681211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380356] = 4, + [383169] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8386), 1, + STATE(8438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10667), 10, + ACTIONS(10835), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675767,15 +681230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380379] = 4, + [383192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8387), 1, + STATE(8439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10679), 10, + ACTIONS(10753), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675786,15 +681249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380402] = 4, + [383215] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8388), 1, + STATE(8440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10701), 10, + ACTIONS(5170), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675805,15 +681268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380425] = 4, + [383238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8389), 1, + STATE(8441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10703), 10, + ACTIONS(10819), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675824,110 +681287,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380448] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8390), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4944), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [380471] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8391), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4948), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [380494] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8392), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4972), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [380517] = 4, + [383261] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8393), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5118), 10, - sym__line_break, + ACTIONS(11077), 1, sym__modifier_if_keyword, + ACTIONS(11079), 1, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, + ACTIONS(11081), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(11083), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [380540] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8394), 1, + STATE(8442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5170), 10, + ACTIONS(10863), 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, - [380563] = 4, + [383292] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8395), 1, + STATE(8443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5162), 10, + ACTIONS(10809), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675938,15 +681329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380586] = 4, + [383315] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8396), 1, + STATE(8444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4976), 10, + ACTIONS(4956), 10, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -675957,15 +681348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - [380609] = 4, + [383338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8397), 1, + STATE(8445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4912), 10, + ACTIONS(4960), 10, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -675976,15 +681367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - [380632] = 4, + [383361] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8398), 1, + STATE(8446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10917), 10, + ACTIONS(10875), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -675995,35 +681386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380655] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11051), 1, - anon_sym_LPAREN2, - STATE(8399), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4902), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [380680] = 4, + [383384] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8400), 1, + STATE(8447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5122), 10, + ACTIONS(10875), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676034,15 +681405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380703] = 4, + [383407] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8401), 1, + STATE(8448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5138), 10, + ACTIONS(10835), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676053,15 +681424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380726] = 4, + [383430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8402), 1, + STATE(8449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10835), 10, + ACTIONS(10753), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676072,15 +681443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380749] = 4, + [383453] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8403), 1, + STATE(8450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5142), 10, + ACTIONS(10819), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676091,15 +681462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380772] = 4, + [383476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8404), 1, + STATE(8451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5134), 10, + ACTIONS(10895), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676110,15 +681481,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380795] = 4, + [383499] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8405), 1, + STATE(8452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5114), 10, + ACTIONS(10897), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676129,34 +681500,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380818] = 4, + [383522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8406), 1, + STATE(8453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10725), 10, + ACTIONS(4964), 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_DOT, anon_sym_end, - anon_sym_else, - [380841] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [383545] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8407), 1, + STATE(8454), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5110), 10, + ACTIONS(10905), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676167,15 +681538,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380864] = 4, + [383568] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8455), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4916), 10, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [383591] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8408), 1, + STATE(8456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10835), 10, + ACTIONS(10713), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676186,15 +681576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380887] = 4, + [383614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8409), 1, + STATE(8457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10879), 10, + ACTIONS(5966), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676205,15 +681595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380910] = 4, + [383637] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8410), 1, + STATE(8458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5102), 10, + ACTIONS(10795), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676224,15 +681614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380933] = 4, + [383660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8411), 1, + STATE(8459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10903), 10, + ACTIONS(10777), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676243,34 +681633,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [380956] = 4, + [383683] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8412), 1, + ACTIONS(11105), 1, + anon_sym_COMMA, + STATE(8460), 1, sym_heredoc_body, + STATE(8532), 1, + aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10915), 10, + ACTIONS(5058), 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, - [380979] = 4, + [383710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8413), 1, + STATE(8461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10783), 10, + ACTIONS(10739), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676281,38 +681673,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381002] = 8, + [383733] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10999), 1, - sym__modifier_if_keyword, - ACTIONS(11001), 1, - sym__modifier_unless_keyword, - ACTIONS(11003), 1, - sym__modifier_rescue_keyword, - ACTIONS(11005), 1, - sym__modifier_ensure_keyword, - STATE(8414), 1, + STATE(8462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10943), 6, + ACTIONS(5166), 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, - [381033] = 4, + [383756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8415), 1, + STATE(8463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10935), 10, + ACTIONS(10945), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676323,15 +681711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381056] = 4, + [383779] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8416), 1, + STATE(8464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10785), 10, + ACTIONS(10977), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676342,15 +681730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381079] = 4, + [383802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8417), 1, + STATE(8465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10787), 10, + ACTIONS(10797), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676361,15 +681749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381102] = 4, + [383825] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8418), 1, + STATE(8466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10795), 10, + ACTIONS(10761), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676380,15 +681768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381125] = 4, + [383848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8419), 1, + STATE(8467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10797), 10, + ACTIONS(10781), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676399,15 +681787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381148] = 4, + [383871] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8420), 1, + STATE(8468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10805), 10, + ACTIONS(10797), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676418,15 +681806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381171] = 4, + [383894] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8421), 1, + STATE(8469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10815), 10, + ACTIONS(10761), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676437,15 +681825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381194] = 4, + [383917] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8422), 1, + STATE(8470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10819), 10, + ACTIONS(10781), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676456,10 +681844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381217] = 4, + [383940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8423), 1, + STATE(8471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -676475,15 +681863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381240] = 4, + [383963] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8424), 1, + STATE(8472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 10, + ACTIONS(10955), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676494,15 +681882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381263] = 4, + [383986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8425), 1, + STATE(8473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 10, + ACTIONS(10867), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676513,15 +681901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381286] = 4, + [384009] = 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(10825), 10, + ACTIONS(5134), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676532,15 +681920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381309] = 4, + [384032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8427), 1, + STATE(8475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 10, + ACTIONS(5138), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676551,15 +681939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381332] = 4, + [384055] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8428), 1, + STATE(8476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 10, + ACTIONS(5142), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676570,15 +681958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381355] = 4, + [384078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8429), 1, + STATE(8477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10861), 10, + ACTIONS(10947), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676589,15 +681977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381378] = 4, + [384101] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8430), 1, + STATE(8478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10805), 10, + ACTIONS(10951), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676608,15 +681996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381401] = 4, + [384124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8431), 1, + STATE(8479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10815), 10, + ACTIONS(5802), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676627,36 +682015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381424] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11047), 1, - anon_sym_PIPE, - STATE(8432), 1, - sym_heredoc_body, - STATE(8512), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4882), 8, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_do, - [381451] = 4, + [384147] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8433), 1, + STATE(8480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10819), 10, + ACTIONS(5122), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676667,53 +682034,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381474] = 4, + [384170] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8434), 1, + ACTIONS(7454), 1, + anon_sym_COMMA, + STATE(8481), 1, sym_heredoc_body, + STATE(8521), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 10, + ACTIONS(5856), 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, - [381497] = 4, + [384197] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8435), 1, + ACTIONS(7454), 1, + anon_sym_COMMA, + STATE(8482), 1, sym_heredoc_body, + STATE(8524), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4952), 10, + ACTIONS(5856), 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_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [381520] = 4, + [384224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8436), 1, + STATE(8483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 10, + ACTIONS(10983), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676724,15 +682095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381543] = 4, + [384247] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8437), 1, + STATE(8484), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 10, + ACTIONS(10785), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676743,15 +682114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381566] = 4, + [384270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8438), 1, + STATE(8485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 10, + ACTIONS(10911), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676762,15 +682133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381589] = 4, + [384293] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8439), 1, + STATE(8486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 10, + ACTIONS(10963), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676781,15 +682152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381612] = 4, + [384316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8440), 1, + STATE(8487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 10, + ACTIONS(10965), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676800,36 +682171,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381635] = 6, + [384339] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - STATE(8441), 1, + STATE(8488), 1, sym_heredoc_body, - STATE(9036), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5081), 8, + ACTIONS(4908), 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_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_end, - [381662] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [384362] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8442), 1, + STATE(8489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10927), 10, + ACTIONS(10915), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676840,15 +682209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381685] = 4, + [384385] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8443), 1, + STATE(8490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10929), 10, + ACTIONS(10739), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676859,15 +682228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381708] = 4, + [384408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8444), 1, + STATE(8491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10933), 10, + ACTIONS(5126), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676878,15 +682247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381731] = 4, + [384431] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8445), 1, + STATE(8492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10937), 10, + ACTIONS(10833), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676897,15 +682266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381754] = 4, + [384454] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8446), 1, + STATE(8493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10937), 10, + ACTIONS(10961), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676916,15 +682285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381777] = 4, + [384477] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8447), 1, + STATE(8494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10813), 10, + ACTIONS(10971), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676935,15 +682304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381800] = 4, + [384500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8448), 1, + STATE(8495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10739), 10, + ACTIONS(10887), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676954,15 +682323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381823] = 4, + [384523] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8449), 1, + STATE(8496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10729), 10, + ACTIONS(10827), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676973,15 +682342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381846] = 4, + [384546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8450), 1, + STATE(8497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10801), 10, + ACTIONS(10999), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -676992,15 +682361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381869] = 4, + [384569] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8451), 1, + STATE(8498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6538), 10, + ACTIONS(10891), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677011,15 +682380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381892] = 4, + [384592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8452), 1, + STATE(8499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10803), 10, + ACTIONS(10939), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677030,15 +682399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381915] = 4, + [384615] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8453), 1, + STATE(8500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10811), 10, + ACTIONS(10953), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677049,15 +682418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381938] = 4, + [384638] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8454), 1, + STATE(8501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10823), 10, + ACTIONS(10821), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677068,15 +682437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381961] = 4, + [384661] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8455), 1, + STATE(8502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10683), 10, + ACTIONS(10847), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677087,40 +682456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [381984] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11047), 1, - anon_sym_PIPE, - ACTIONS(11049), 1, - anon_sym_QMARK, - STATE(8432), 1, - aux_sym_union_type_repeat1, - STATE(8456), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4898), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [382019] = 4, + [384684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8457), 1, + STATE(8503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10837), 10, + ACTIONS(10755), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677131,15 +682475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382042] = 4, + [384707] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8458), 1, + STATE(8504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10843), 10, + ACTIONS(10937), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677150,15 +682494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382065] = 4, + [384730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8459), 1, + STATE(8505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10845), 10, + ACTIONS(10829), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677169,15 +682513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382088] = 4, + [384753] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8460), 1, + STATE(8506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10847), 10, + ACTIONS(10985), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677188,15 +682532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382111] = 4, + [384776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8461), 1, + STATE(8507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10849), 10, + ACTIONS(10933), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677207,15 +682551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382134] = 4, + [384799] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8462), 1, + STATE(8508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10851), 10, + ACTIONS(10799), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677226,15 +682570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382157] = 4, + [384822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8463), 1, + STATE(8509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10853), 10, + ACTIONS(10747), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677245,15 +682589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382180] = 4, + [384845] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8464), 1, + STATE(8510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10855), 10, + ACTIONS(10751), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677264,15 +682608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382203] = 4, + [384868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8465), 1, + STATE(8511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 10, + ACTIONS(5146), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677283,15 +682627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382226] = 4, + [384891] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8466), 1, + STATE(8512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 10, + ACTIONS(10763), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677302,15 +682646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382249] = 4, + [384914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8467), 1, + STATE(8513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10851), 10, + ACTIONS(10747), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677321,15 +682665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382272] = 4, + [384937] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8468), 1, + STATE(8514), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10853), 10, + ACTIONS(10751), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677340,15 +682684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382295] = 4, + [384960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8469), 1, + STATE(8515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10855), 10, + ACTIONS(10973), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677359,34 +682703,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382318] = 4, + [384983] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8470), 1, + STATE(8516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 10, + ACTIONS(10763), 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_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [382341] = 4, + anon_sym_else, + [385006] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8471), 1, + STATE(8517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 10, + ACTIONS(10765), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677397,15 +682741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382364] = 4, + [385029] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8472), 1, + STATE(8518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 10, + ACTIONS(10767), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677416,15 +682760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382387] = 4, + [385052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8473), 1, + STATE(8519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10877), 10, + ACTIONS(10743), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677435,15 +682779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382410] = 4, + [385075] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8474), 1, + STATE(8520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10895), 10, + ACTIONS(10799), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677454,34 +682798,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382433] = 4, + [385098] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8475), 1, + ACTIONS(7454), 1, + anon_sym_COMMA, + STATE(8521), 1, sym_heredoc_body, + STATE(8524), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10899), 10, + ACTIONS(5888), 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, - [382456] = 4, + [385125] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8476), 1, + STATE(8522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10905), 10, + ACTIONS(10747), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677492,15 +682838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382479] = 4, + [385148] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8477), 1, + STATE(8523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10907), 10, + ACTIONS(10975), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677511,34 +682857,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382502] = 4, + [385171] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8478), 1, - sym_heredoc_body, + ACTIONS(11110), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10913), 10, + STATE(8524), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5970), 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, - [382525] = 4, + [385196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8479), 1, + STATE(8525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10827), 10, + ACTIONS(10751), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677549,15 +682896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382548] = 4, + [385219] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8480), 1, + STATE(8526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10919), 10, + ACTIONS(10763), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677568,15 +682915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382571] = 4, + [385242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8481), 1, + STATE(8527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10921), 10, + ACTIONS(10747), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677587,15 +682934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382594] = 4, + [385265] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8482), 1, + STATE(8528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10923), 10, + ACTIONS(10751), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677606,15 +682953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382617] = 4, + [385288] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8483), 1, + STATE(8529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6510), 10, + ACTIONS(10987), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677625,34 +682972,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382640] = 4, + [385311] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8484), 1, + ACTIONS(11030), 1, + anon_sym_forall, + STATE(8530), 1, sym_heredoc_body, + STATE(9185), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10923), 10, + ACTIONS(5062), 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, - [382663] = 4, + [385338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8485), 1, + STATE(8531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10699), 10, + ACTIONS(10763), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677663,53 +683012,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382686] = 4, + [385361] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8486), 1, - sym_heredoc_body, + ACTIONS(11113), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10791), 10, + STATE(8532), 2, + sym_heredoc_body, + aux_sym_forall_repeat1, + ACTIONS(5078), 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, - [382709] = 4, + [385386] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8487), 1, + ACTIONS(11030), 1, + anon_sym_forall, + STATE(8533), 1, sym_heredoc_body, + STATE(9188), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10821), 10, + ACTIONS(5066), 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, - [382732] = 4, + [385413] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8488), 1, + STATE(8534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10885), 10, + ACTIONS(10995), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677720,34 +683072,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382755] = 4, + [385436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8489), 1, + STATE(8535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10829), 10, + ACTIONS(4968), 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_DOT, anon_sym_end, - anon_sym_else, - [382778] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [385459] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8490), 1, + STATE(8536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4964), 10, + ACTIONS(4920), 10, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -677758,34 +683110,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_PIPE, anon_sym_QMARK, - [382801] = 4, + [385482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8491), 1, + STATE(8537), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4928), 10, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [385505] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11030), 1, + anon_sym_forall, + STATE(8538), 1, sym_heredoc_body, + STATE(8941), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10663), 10, + ACTIONS(5054), 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, - [382824] = 4, + [385532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8492), 1, + STATE(8539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10687), 10, + ACTIONS(6433), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677796,15 +683169,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382847] = 4, + [385555] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8493), 1, + STATE(8540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10707), 10, + ACTIONS(5106), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677815,15 +683188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382870] = 4, + [385578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8494), 1, + STATE(8541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6534), 10, + ACTIONS(10765), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677834,15 +683207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382893] = 4, + [385601] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8495), 1, + STATE(8542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10705), 10, + ACTIONS(10767), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677853,15 +683226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382916] = 4, + [385624] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8496), 1, + STATE(8543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10831), 10, + ACTIONS(5102), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677872,15 +683245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382939] = 4, + [385647] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8497), 1, + STATE(8544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10727), 10, + ACTIONS(10743), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677891,15 +683264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382962] = 4, + [385670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8498), 1, + STATE(8545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10741), 10, + ACTIONS(10759), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677910,15 +683283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [382985] = 4, + [385693] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8499), 1, + STATE(8546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10833), 10, + ACTIONS(10803), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677929,15 +683302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383008] = 4, + [385716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8500), 1, + STATE(8547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10755), 10, + ACTIONS(10811), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677948,15 +683321,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383031] = 4, + [385739] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8501), 1, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, + anon_sym_STAR, + ACTIONS(11099), 1, + anon_sym_PIPE, + ACTIONS(11101), 1, + anon_sym_QMARK, + STATE(8372), 1, + aux_sym_union_type_repeat1, + STATE(8548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10775), 10, + ACTIONS(4890), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [385774] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8549), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11003), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677967,15 +683365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383054] = 4, + [385797] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8502), 1, + STATE(8550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6301), 10, + ACTIONS(10929), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -677986,15 +683384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383077] = 4, + [385820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8503), 1, + STATE(8551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10781), 10, + ACTIONS(10787), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678005,15 +683403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383100] = 4, + [385843] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8504), 1, + STATE(8552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10809), 10, + ACTIONS(10859), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678024,15 +683422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383123] = 4, + [385866] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8505), 1, + STATE(8553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10817), 10, + ACTIONS(10871), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678043,15 +683441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383146] = 4, + [385889] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8506), 1, + STATE(8554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10873), 10, + ACTIONS(10787), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678062,15 +683460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383169] = 4, + [385912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8507), 1, + STATE(8555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10639), 10, + ACTIONS(10859), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678081,36 +683479,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383192] = 6, + [385935] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7497), 1, - anon_sym_COMMA, - STATE(8508), 1, + STATE(8556), 1, sym_heredoc_body, - STATE(8523), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(10871), 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, - [383219] = 4, + anon_sym_else, + [385958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8509), 1, + STATE(8557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10643), 10, + ACTIONS(10909), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678121,15 +683517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383242] = 4, + [385981] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8510), 1, + STATE(8558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10661), 10, + ACTIONS(10725), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678140,101 +683536,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383265] = 5, + [386004] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8432), 1, - aux_sym_union_type_repeat1, - STATE(8511), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4875), 9, - sym__start_of_brace_block, + ACTIONS(11093), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(11095), 1, anon_sym_DOT, + ACTIONS(11097), 1, anon_sym_STAR, + ACTIONS(11099), 1, anon_sym_PIPE, + ACTIONS(11101), 1, anon_sym_QMARK, - anon_sym_do, - [383290] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11053), 1, - anon_sym_PIPE, + STATE(8372), 1, + aux_sym_union_type_repeat1, + STATE(8559), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8512), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 8, + ACTIONS(4894), 4, sym__start_of_brace_block, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, anon_sym_do, - [383315] = 6, + [386039] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7497), 1, - anon_sym_COMMA, - STATE(8513), 1, + STATE(8560), 1, sym_heredoc_body, - STATE(8552), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5737), 8, + ACTIONS(10993), 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, - [383342] = 10, + anon_sym_else, + [386062] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11047), 1, - anon_sym_PIPE, - ACTIONS(11049), 1, - anon_sym_QMARK, - STATE(8432), 1, - aux_sym_union_type_repeat1, - STATE(8514), 1, + STATE(8561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [383377] = 4, + ACTIONS(11001), 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, + [386085] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8515), 1, + STATE(8562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10793), 10, + ACTIONS(10723), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678245,15 +683618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383400] = 4, + [386108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8516), 1, + STATE(8563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10717), 10, + ACTIONS(10991), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678264,15 +683637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383423] = 4, + [386131] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8517), 1, + STATE(8564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10887), 10, + ACTIONS(10773), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678283,15 +683656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383446] = 4, + [386154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8518), 1, + STATE(8565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10889), 10, + ACTIONS(10969), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678302,15 +683675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383469] = 4, + [386177] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8519), 1, + STATE(8566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10891), 10, + ACTIONS(10775), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678321,15 +683694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383492] = 4, + [386200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8520), 1, + STATE(8567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10893), 10, + ACTIONS(10957), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678340,15 +683713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383515] = 4, + [386223] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8521), 1, + STATE(8568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 10, + ACTIONS(10959), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678359,15 +683732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383538] = 4, + [386246] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8522), 1, + STATE(8569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 10, + ACTIONS(10727), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678378,35 +683751,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383561] = 5, + [386269] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11056), 1, - anon_sym_COMMA, + STATE(8570), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8523), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5934), 8, + ACTIONS(10769), 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, - [383586] = 4, + anon_sym_else, + [386292] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8524), 1, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, + anon_sym_STAR, + ACTIONS(11099), 1, + anon_sym_PIPE, + ACTIONS(11101), 1, + anon_sym_QMARK, + STATE(8372), 1, + aux_sym_union_type_repeat1, + STATE(8571), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4861), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [386327] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10697), 10, + ACTIONS(10711), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678417,57 +683814,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383609] = 6, + [386350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - STATE(8525), 1, + STATE(8573), 1, sym_heredoc_body, - STATE(9046), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5073), 8, + ACTIONS(5866), 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, - [383636] = 6, + anon_sym_else, + [386373] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11059), 1, - anon_sym_COMMA, - STATE(8526), 1, + STATE(8574), 1, sym_heredoc_body, - STATE(8540), 1, - aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5048), 8, + ACTIONS(10727), 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, - [383663] = 4, + anon_sym_else, + [386396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8527), 1, + STATE(8575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10689), 10, + ACTIONS(10845), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678478,15 +683871,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383686] = 4, + [386419] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8528), 1, + STATE(8576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10711), 10, + ACTIONS(4932), 10, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [386442] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8577), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4936), 10, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [386465] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8578), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10877), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678497,38 +683928,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383709] = 8, + [386488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10999), 1, - sym__modifier_if_keyword, - ACTIONS(11001), 1, - sym__modifier_unless_keyword, - ACTIONS(11003), 1, - sym__modifier_rescue_keyword, - ACTIONS(11005), 1, - sym__modifier_ensure_keyword, - STATE(8529), 1, + STATE(8579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10931), 6, + ACTIONS(10881), 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, - [383740] = 4, + [386511] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8530), 1, + STATE(8580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10717), 10, + ACTIONS(10899), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678539,15 +683966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383763] = 4, + [386534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8531), 1, + STATE(8581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 10, + ACTIONS(10913), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678558,15 +683985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383786] = 4, + [386557] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8532), 1, + STATE(8582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 10, + ACTIONS(10919), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678577,15 +684004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383809] = 4, + [386580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8533), 1, + STATE(8583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10697), 10, + ACTIONS(10885), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678596,15 +684023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383832] = 4, + [386603] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8534), 1, + STATE(8584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10689), 10, + ACTIONS(10813), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678615,15 +684042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383855] = 4, + [386626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8535), 1, + STATE(8585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10711), 10, + ACTIONS(6922), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678634,15 +684061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383878] = 4, + [386649] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8536), 1, + STATE(8586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10881), 10, + ACTIONS(10817), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678653,15 +684080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383901] = 4, + [386672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8537), 1, + STATE(8587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10665), 10, + ACTIONS(10831), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678672,15 +684099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383924] = 4, + [386695] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8538), 1, + STATE(8588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10691), 10, + ACTIONS(10813), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678691,15 +684118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383947] = 4, + [386718] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8539), 1, + STATE(8589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10693), 10, + ACTIONS(10817), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678710,36 +684137,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [383970] = 6, + [386741] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11059), 1, - anon_sym_COMMA, - STATE(8540), 1, + STATE(8590), 1, sym_heredoc_body, - STATE(8555), 1, - aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5058), 8, + ACTIONS(10831), 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, - [383997] = 4, + anon_sym_else, + [386764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8541), 1, + STATE(8591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10769), 10, + ACTIONS(10793), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678750,40 +684175,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384020] = 10, + [386787] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11047), 1, - anon_sym_PIPE, - ACTIONS(11049), 1, - anon_sym_QMARK, - STATE(8432), 1, - aux_sym_union_type_repeat1, - STATE(8542), 1, + STATE(8592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [384055] = 4, + ACTIONS(10913), 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, + [386810] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8543), 1, + STATE(8593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10691), 10, + ACTIONS(10919), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678794,15 +684213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384078] = 4, + [386833] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8544), 1, + STATE(8594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10693), 10, + ACTIONS(10885), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678813,36 +684232,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384101] = 6, + [386856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - STATE(8545), 1, + STATE(8595), 1, sym_heredoc_body, - STATE(9034), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5077), 8, + ACTIONS(10813), 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, - [384128] = 4, + anon_sym_else, + [386879] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8546), 1, + STATE(8596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10769), 10, + ACTIONS(10817), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678853,15 +684270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384151] = 4, + [386902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8547), 1, + STATE(8597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10939), 10, + ACTIONS(10831), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678872,15 +684289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384174] = 4, + [386925] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8548), 1, + STATE(8598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10941), 10, + ACTIONS(10813), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678891,36 +684308,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384197] = 6, + [386948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7497), 1, - anon_sym_COMMA, - STATE(8508), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(8549), 1, + STATE(8599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 8, + ACTIONS(10817), 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, - [384224] = 4, + anon_sym_else, + [386971] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8550), 1, + STATE(8600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10953), 10, + ACTIONS(10831), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678931,15 +684346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384247] = 4, + [386994] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8551), 1, + STATE(8601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6494), 10, + ACTIONS(10793), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678950,36 +684365,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384270] = 6, + [387017] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7497), 1, - anon_sym_COMMA, - STATE(8523), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(8552), 1, + STATE(8602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 8, + ACTIONS(10837), 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, - [384297] = 4, + anon_sym_else, + [387040] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8553), 1, + STATE(8603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5126), 10, + ACTIONS(10843), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -678990,79 +684403,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [384320] = 6, + [387063] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - STATE(8554), 1, + STATE(8604), 1, sym_heredoc_body, - STATE(8967), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5054), 8, + ACTIONS(10851), 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, - [384347] = 5, + anon_sym_else, + [387086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11061), 1, - anon_sym_COMMA, + STATE(8605), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8555), 2, - sym_heredoc_body, - aux_sym_forall_repeat1, - ACTIONS(5066), 8, + ACTIONS(10795), 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, - [384372] = 4, + anon_sym_else, + [387109] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8556), 1, + ACTIONS(11030), 1, + anon_sym_forall, + STATE(8606), 1, sym_heredoc_body, + STATE(8874), 1, + sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10947), 10, + ACTIONS(5050), 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, + [387136] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8607), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4948), 10, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [387159] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11116), 1, + anon_sym_end, + ACTIONS(11118), 1, anon_sym_else, - [384395] = 6, + STATE(8608), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11077), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [387197] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_forall, - STATE(8557), 1, + STATE(8609), 1, sym_heredoc_body, - STATE(8790), 1, - sym_forall, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5062), 8, + ACTIONS(5022), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -679071,950 +684524,1262 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [384422] = 4, + anon_sym_forall, + [387219] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11122), 1, + anon_sym_RBRACE, + STATE(8610), 1, + sym_heredoc_body, + STATE(10822), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [387253] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11126), 1, + anon_sym_RBRACE, + STATE(8611), 1, + sym_heredoc_body, + STATE(10822), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [387287] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11128), 1, + anon_sym_RBRACE, + STATE(8612), 1, + sym_heredoc_body, + STATE(10477), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [387321] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8558), 1, + STATE(8613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10715), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, + ACTIONS(4908), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [387343] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, + ACTIONS(1401), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, + ACTIONS(11118), 1, anon_sym_else, - [384445] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8559), 1, + ACTIONS(11130), 1, + anon_sym_end, + STATE(8614), 1, sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11436), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10925), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, + [387381] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, + ACTIONS(1401), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, + ACTIONS(11118), 1, anon_sym_else, - [384468] = 4, + ACTIONS(11132), 1, + anon_sym_end, + STATE(8615), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11446), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [387419] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8560), 1, + ACTIONS(11134), 1, + anon_sym_PIPE, + STATE(8616), 1, sym_heredoc_body, + STATE(8646), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10757), 10, + ACTIONS(4883), 7, 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_DOT, anon_sym_end, - anon_sym_else, - [384491] = 12, + anon_sym_STAR, + anon_sym_QMARK, + [387445] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11064), 1, - anon_sym_end, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - STATE(8561), 1, + ACTIONS(11136), 1, + anon_sym_end, + STATE(8617), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(12332), 1, + STATE(11044), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384529] = 12, + [387483] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11068), 1, + ACTIONS(11138), 1, anon_sym_end, - STATE(8562), 1, + STATE(8618), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(12202), 1, + STATE(12328), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384567] = 10, + [387521] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11070), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11140), 1, anon_sym_RBRACE, - STATE(8563), 1, + STATE(8619), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [384601] = 7, + [387555] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11074), 1, - anon_sym_AT_LBRACK, - ACTIONS(11077), 1, - anon_sym_STAR, - STATE(9264), 1, - sym_annotation, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(8564), 2, - sym_heredoc_body, - aux_sym_param_repeat1, - ACTIONS(11072), 5, - anon_sym_AMP, - anon_sym_STAR_STAR, - sym_identifier, - sym_instance_var, - sym_class_var, - [384629] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11079), 1, - anon_sym_RPAREN, - STATE(8565), 1, + ACTIONS(11142), 1, + anon_sym_RBRACE, + STATE(8620), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11342), 1, - sym_proc_param_list, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [384665] = 10, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [387589] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11081), 1, + ACTIONS(11144), 1, anon_sym_RBRACE, - STATE(8566), 1, + STATE(8621), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [384699] = 10, + [387623] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11011), 1, - anon_sym_LBRACK, - ACTIONS(11013), 1, - anon_sym_DOT, - ACTIONS(11015), 1, - anon_sym_STAR, - ACTIONS(11019), 1, - anon_sym_QMARK, - ACTIONS(11083), 1, - anon_sym_PIPE, - STATE(8567), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11146), 1, + anon_sym_end, + STATE(8622), 1, sym_heredoc_body, - STATE(8611), 1, - aux_sym_union_type_repeat1, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11549), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 3, - sym__line_break, - anon_sym_SEMI, + [387661] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11148), 1, anon_sym_end, - [384733] = 10, + STATE(8623), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11334), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [387699] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11085), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11150), 1, anon_sym_RBRACE, - STATE(8568), 1, + STATE(8624), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [384767] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8569), 1, - sym_heredoc_body, - STATE(8611), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4875), 8, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [384791] = 10, + [387733] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11089), 1, + ACTIONS(11152), 1, anon_sym_RBRACE, - STATE(8570), 1, + STATE(8625), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [384825] = 4, + [387767] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8571), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11154), 1, + anon_sym_RBRACE, + STATE(8626), 1, sym_heredoc_body, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4944), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [384847] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [387801] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8572), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11156), 1, + anon_sym_end, + STATE(8627), 1, sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11509), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4948), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [384869] = 10, + [387839] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11093), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11158), 1, anon_sym_RBRACE, - STATE(8573), 1, + STATE(8628), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [384903] = 12, + [387873] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11095), 1, + ACTIONS(11160), 1, anon_sym_end, - STATE(8574), 1, + STATE(8629), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11094), 1, + STATE(12117), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384941] = 10, + [387911] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11097), 1, + ACTIONS(11162), 1, anon_sym_RBRACE, - STATE(8575), 1, + STATE(8630), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [384975] = 10, + [387945] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11099), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11164), 1, anon_sym_RBRACE, - STATE(8576), 1, + STATE(8631), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [385009] = 11, + [387979] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(11101), 1, + ACTIONS(11166), 1, anon_sym_RPAREN, - STATE(8577), 1, + STATE(8632), 1, sym_heredoc_body, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(9374), 1, + STATE(9462), 1, aux_sym_param_repeat1, - STATE(10545), 1, + STATE(10450), 1, sym_param, - STATE(11384), 1, + STATE(11101), 1, sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - [385045] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11011), 1, - anon_sym_LBRACK, - ACTIONS(11013), 1, - anon_sym_DOT, - ACTIONS(11015), 1, - anon_sym_STAR, - ACTIONS(11019), 1, - anon_sym_QMARK, - ACTIONS(11083), 1, - anon_sym_PIPE, - STATE(8578), 1, - sym_heredoc_body, - STATE(8611), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4968), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [385079] = 10, + [388015] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11103), 1, + ACTIONS(11168), 1, anon_sym_RBRACE, - STATE(8579), 1, + STATE(8633), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385113] = 5, + [388049] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8580), 1, + STATE(8634), 1, sym_heredoc_body, - STATE(8993), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10600), 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, - [385137] = 10, + ACTIONS(4940), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [388071] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11105), 1, - anon_sym_RBRACE, - STATE(8581), 1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11170), 1, + anon_sym_RPAREN, + STATE(8635), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11173), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [385171] = 10, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [388107] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11172), 1, + anon_sym_RPAREN, + STATE(8636), 1, + sym_heredoc_body, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11220), 1, + sym_proc_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [388143] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11107), 1, + ACTIONS(11174), 1, anon_sym_RBRACE, - STATE(8582), 1, + STATE(8637), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385205] = 4, + [388177] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8583), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11176), 1, + anon_sym_end, + STATE(8638), 1, sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11284), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4972), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [385227] = 12, + [388215] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11109), 1, + ACTIONS(11178), 1, anon_sym_end, - STATE(8584), 1, + STATE(8639), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11614), 1, + STATE(11947), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385265] = 10, + [388253] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11111), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11180), 1, anon_sym_RBRACE, - STATE(8585), 1, + STATE(8640), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [385299] = 12, + [388287] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11113), 1, + ACTIONS(11182), 1, anon_sym_end, - STATE(8586), 1, + STATE(8641), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(12274), 1, + STATE(12064), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385337] = 12, + [388325] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11115), 1, + ACTIONS(11184), 1, anon_sym_end, - STATE(8587), 1, + STATE(8642), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(12320), 1, + STATE(12089), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385375] = 12, + [388363] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11117), 1, - anon_sym_end, - STATE(8588), 1, + STATE(8643), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(10953), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385413] = 10, + ACTIONS(4932), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [388385] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11186), 1, + anon_sym_RPAREN, + STATE(8644), 1, + sym_heredoc_body, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11263), 1, + sym_proc_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [388421] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8645), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4936), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [388443] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11188), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8646), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 7, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_QMARK, + [388467] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11119), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11191), 1, anon_sym_RBRACE, - STATE(8589), 1, + STATE(8647), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [385447] = 10, + [388501] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11121), 1, + ACTIONS(11193), 1, anon_sym_RBRACE, - STATE(8590), 1, + STATE(8648), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385481] = 10, + [388535] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(729), 1, + aux_sym_top_level_fun_def_token1, + ACTIONS(10225), 1, + anon_sym_LPAREN2, + STATE(8649), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4902), 7, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [388561] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11123), 1, + ACTIONS(11195), 1, anon_sym_RBRACE, - STATE(8591), 1, + STATE(8650), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385515] = 12, + [388595] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11125), 1, + ACTIONS(11197), 1, anon_sym_end, - STATE(8592), 1, + STATE(8651), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(10962), 1, + STATE(12321), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385553] = 11, + [388633] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11199), 1, + anon_sym_end, + STATE(8652), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11218), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [388671] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(11127), 1, + ACTIONS(11201), 1, anon_sym_RPAREN, - STATE(8593), 1, + STATE(8653), 1, sym_heredoc_body, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(9374), 1, + STATE(9462), 1, aux_sym_param_repeat1, - STATE(10545), 1, + STATE(10450), 1, sym_param, - STATE(11426), 1, + STATE(11305), 1, sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - [385589] = 10, + [388707] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11049), 1, + anon_sym_PIPE, + ACTIONS(11203), 1, + anon_sym_RPAREN, + ACTIONS(11205), 1, + anon_sym_COMMA, + STATE(8325), 1, + aux_sym_union_type_repeat1, + STATE(8654), 1, + sym_heredoc_body, + STATE(10371), 1, + aux_sym_fun_type_param_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [388745] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11129), 1, + ACTIONS(11207), 1, anon_sym_RBRACE, - STATE(8594), 1, + STATE(8655), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385623] = 10, + [388779] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11209), 1, + anon_sym_RPAREN, + STATE(8656), 1, + sym_heredoc_body, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11347), 1, + sym_proc_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [388815] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11131), 1, + ACTIONS(11211), 1, anon_sym_RBRACE, - STATE(8595), 1, + STATE(8657), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385657] = 12, + [388849] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8658), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11213), 9, + anon_sym_SEMI, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [388871] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11133), 1, + ACTIONS(11215), 1, anon_sym_end, - STATE(8596), 1, + STATE(8659), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11337), 1, + STATE(11320), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385695] = 10, + [388909] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11135), 1, - anon_sym_RBRACE, - STATE(8597), 1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11217), 1, + anon_sym_RPAREN, + STATE(8660), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11389), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [385729] = 4, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [388945] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8598), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11219), 1, + anon_sym_end, + STATE(8661), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11560), 1, + sym_ensure, + STATE(12301), 1, + sym__rescue_else_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [388983] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 9, + ACTIONS(4916), 9, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -680024,609 +685789,597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_do, - [385751] = 10, + [389005] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11221), 1, + anon_sym_end, + STATE(8663), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11003), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [389043] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11137), 1, + ACTIONS(11223), 1, anon_sym_RBRACE, - STATE(8599), 1, + STATE(8664), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385785] = 10, + [389077] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11225), 1, + anon_sym_RBRACE, + STATE(8665), 1, + sym_heredoc_body, + STATE(10822), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [389111] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11227), 1, + anon_sym_end, + STATE(8666), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11560), 1, + sym_ensure, + STATE(11709), 1, + sym__rescue_else_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [389149] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11139), 1, + ACTIONS(11229), 1, anon_sym_RBRACE, - STATE(8600), 1, + STATE(8667), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385819] = 10, + [389183] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11141), 1, + ACTIONS(11231), 1, anon_sym_RBRACE, - STATE(8601), 1, + STATE(8668), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385853] = 11, + [389217] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_DOT, + ACTIONS(11065), 1, + anon_sym_STAR, + ACTIONS(11069), 1, + anon_sym_QMARK, + ACTIONS(11134), 1, + anon_sym_PIPE, + STATE(8616), 1, + aux_sym_union_type_repeat1, + STATE(8669), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4890), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [389251] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(11143), 1, + ACTIONS(11233), 1, anon_sym_RPAREN, - STATE(8602), 1, + STATE(8670), 1, sym_heredoc_body, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(9374), 1, + STATE(9462), 1, aux_sym_param_repeat1, - STATE(10545), 1, + STATE(10450), 1, sym_param, - STATE(11467), 1, + STATE(11431), 1, sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - [385889] = 12, + [389287] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11145), 1, - anon_sym_end, - STATE(8603), 1, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_DOT, + ACTIONS(11065), 1, + anon_sym_STAR, + ACTIONS(11069), 1, + anon_sym_QMARK, + ACTIONS(11134), 1, + anon_sym_PIPE, + STATE(8616), 1, + aux_sym_union_type_repeat1, + STATE(8671), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11468), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385927] = 10, + ACTIONS(4894), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [389321] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11147), 1, - anon_sym_RBRACE, - STATE(8604), 1, + ACTIONS(9945), 1, + anon_sym_RPAREN, + STATE(8672), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [385961] = 12, + [389355] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11149), 1, - anon_sym_end, - STATE(8605), 1, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_DOT, + ACTIONS(11065), 1, + anon_sym_STAR, + ACTIONS(11069), 1, + anon_sym_QMARK, + ACTIONS(11134), 1, + anon_sym_PIPE, + STATE(8616), 1, + aux_sym_union_type_repeat1, + STATE(8673), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11030), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385999] = 10, + ACTIONS(4898), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [389389] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11151), 1, + ACTIONS(11235), 1, anon_sym_RBRACE, - STATE(8606), 1, + STATE(8674), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [386033] = 12, + [389423] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11153), 1, + ACTIONS(11237), 1, anon_sym_end, - STATE(8607), 1, + STATE(8675), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11552), 1, + STATE(11067), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386071] = 4, + [389461] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8608), 1, + STATE(8616), 1, + aux_sym_union_type_repeat1, + STATE(8676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11155), 9, + ACTIONS(4875), 8, + sym__line_break, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_end, - anon_sym_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [386093] = 10, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + [389485] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11157), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11239), 1, anon_sym_RBRACE, - STATE(8609), 1, + STATE(8677), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [386127] = 10, + [389519] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11159), 1, - anon_sym_RBRACE, - STATE(8610), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11241), 1, + anon_sym_end, + STATE(8678), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11353), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [386161] = 6, + [389557] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11083), 1, - anon_sym_PIPE, - STATE(8611), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11243), 1, + anon_sym_end, + STATE(8679), 1, sym_heredoc_body, - STATE(8635), 1, - aux_sym_union_type_repeat1, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11122), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4882), 7, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_QMARK, - [386187] = 4, + [389595] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8612), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11245), 1, + anon_sym_end, + STATE(8680), 1, sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11560), 1, + sym_ensure, + STATE(12306), 1, + sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4952), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [386209] = 11, + [389633] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, + ACTIONS(11249), 1, anon_sym_AT_LBRACK, - ACTIONS(11161), 1, - anon_sym_RPAREN, - STATE(8613), 1, - sym_heredoc_body, - STATE(9264), 1, + ACTIONS(11252), 1, + anon_sym_STAR, + STATE(9304), 1, sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11508), 1, - sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + STATE(8681), 2, + sym_heredoc_body, + aux_sym_param_repeat1, + ACTIONS(11247), 5, + anon_sym_AMP, + anon_sym_STAR_STAR, + sym_identifier, sym_instance_var, sym_class_var, - [386245] = 4, + [389661] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8614), 1, + STATE(8682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10458), 9, + ACTIONS(5970), 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, - anon_sym_AT_LBRACK, - anon_sym_def, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_class_var, - sym_private, - sym_protected, - [386267] = 12, + [389683] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11163), 1, + ACTIONS(11254), 1, anon_sym_end, - STATE(8615), 1, + STATE(8683), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11265), 1, + STATE(11825), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386305] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11165), 1, - anon_sym_RBRACE, - STATE(8616), 1, - sym_heredoc_body, - STATE(10114), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [386339] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11167), 1, - anon_sym_RBRACE, - STATE(8617), 1, - sym_heredoc_body, - STATE(10114), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [386373] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11169), 1, - anon_sym_RBRACE, - STATE(8618), 1, - sym_heredoc_body, - STATE(10114), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [386407] = 10, + [389721] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11171), 1, + ACTIONS(11256), 1, anon_sym_RBRACE, - STATE(8619), 1, + STATE(8684), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [386441] = 11, + [389755] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(11173), 1, + ACTIONS(11258), 1, anon_sym_RPAREN, - STATE(8620), 1, + STATE(8685), 1, sym_heredoc_body, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(9374), 1, + STATE(9462), 1, aux_sym_param_repeat1, - STATE(10545), 1, + STATE(10450), 1, sym_param, - STATE(11054), 1, + STATE(11473), 1, sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - [386477] = 12, + [389791] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11175), 1, + ACTIONS(11260), 1, anon_sym_end, - STATE(8621), 1, + STATE(8686), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(12066), 1, + STATE(11851), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386515] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11177), 1, - anon_sym_RPAREN, - STATE(8622), 1, - sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11549), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [386551] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11179), 1, - anon_sym_RBRACE, - STATE(8623), 1, - sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [386585] = 5, + [389829] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8624), 1, + STATE(8687), 1, sym_heredoc_body, - STATE(9033), 1, + STATE(9053), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10600), 8, + ACTIONS(10696), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -680635,688 +686388,617 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386609] = 10, + [389853] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + STATE(8688), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10627), 9, + anon_sym_SEMI, + anon_sym_end, + anon_sym_AT_LBRACK, + anon_sym_def, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_class_var, + sym_private, + sym_protected, + [389875] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11181), 1, + ACTIONS(11262), 1, anon_sym_RBRACE, - STATE(8625), 1, + STATE(8689), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [386643] = 12, + [389909] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11183), 1, + ACTIONS(11264), 1, anon_sym_end, - STATE(8626), 1, + STATE(8690), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11210), 1, + STATE(11164), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386681] = 10, + [389947] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11185), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11266), 1, anon_sym_RBRACE, - STATE(8627), 1, + STATE(8691), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [386715] = 4, + [389981] = 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(4976), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, + ACTIONS(5085), 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_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [386737] = 4, + anon_sym_end, + [390003] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8629), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11268), 1, + anon_sym_RBRACE, + STATE(8693), 1, sym_heredoc_body, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4912), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [386759] = 10, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [390037] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(11120), 1, sym_identifier, - ACTIONS(11187), 1, + ACTIONS(11270), 1, anon_sym_RBRACE, - STATE(8630), 1, + STATE(8694), 1, sym_heredoc_body, - STATE(10835), 1, + STATE(10822), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [386793] = 12, + [390071] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11189), 1, - anon_sym_end, - STATE(8631), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11272), 1, + anon_sym_RBRACE, + STATE(8695), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11254), 1, - sym__rescue_else_ensure, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386831] = 12, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [390105] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11191), 1, - anon_sym_end, - STATE(8632), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11274), 1, + anon_sym_RBRACE, + STATE(8696), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11268), 1, - sym__rescue_else_ensure, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386869] = 10, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [390139] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11193), 1, + ACTIONS(11276), 1, anon_sym_RBRACE, - STATE(8633), 1, + STATE(8697), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [386903] = 10, + [390173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11197), 1, - sym__modifier_if_keyword, - ACTIONS(11199), 1, - sym__modifier_unless_keyword, - ACTIONS(11201), 1, - sym__modifier_rescue_keyword, - ACTIONS(11203), 1, - sym__modifier_ensure_keyword, - STATE(2104), 1, - sym__terminator, - STATE(8634), 1, + ACTIONS(10401), 1, + anon_sym_LPAREN2, + STATE(8698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1857), 2, - sym__regular_ensure_keyword, - anon_sym_end, - ACTIONS(11195), 2, + ACTIONS(10675), 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, - [386937] = 5, + anon_sym_end, + [390197] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11205), 1, - anon_sym_PIPE, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11278), 1, + anon_sym_RPAREN, + STATE(8699), 1, + sym_heredoc_body, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11514), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8635), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 7, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_QMARK, - [386961] = 10, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [390233] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11208), 1, - anon_sym_RBRACE, - STATE(8636), 1, + ACTIONS(10401), 1, + anon_sym_LPAREN2, + STATE(8700), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [386995] = 10, + ACTIONS(10705), 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, + [390257] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11210), 1, + ACTIONS(11280), 1, anon_sym_RBRACE, - STATE(8637), 1, + STATE(8701), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387029] = 10, + [390291] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11212), 1, + ACTIONS(11282), 1, anon_sym_RBRACE, - STATE(8638), 1, + STATE(8702), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387063] = 12, + [390325] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11214), 1, - anon_sym_end, - STATE(8639), 1, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_DOT, + ACTIONS(11065), 1, + anon_sym_STAR, + ACTIONS(11069), 1, + anon_sym_QMARK, + ACTIONS(11134), 1, + anon_sym_PIPE, + STATE(8616), 1, + aux_sym_union_type_repeat1, + STATE(8703), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(12271), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387101] = 10, + ACTIONS(4924), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [390359] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11216), 1, + ACTIONS(11284), 1, anon_sym_RBRACE, - STATE(8640), 1, + STATE(8704), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387135] = 6, + [390393] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(729), 1, - aux_sym_top_level_fun_def_token1, - ACTIONS(10177), 1, - anon_sym_LPAREN2, - STATE(8641), 1, + STATE(8705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4902), 7, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(5921), 9, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - [387161] = 12, + anon_sym_EQ, + anon_sym_do, + anon_sym_then, + [390415] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(11009), 1, - anon_sym_PIPE, - ACTIONS(11218), 1, - anon_sym_RPAREN, - ACTIONS(11220), 1, - anon_sym_COMMA, - STATE(8282), 1, - aux_sym_union_type_repeat1, - STATE(8642), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11286), 1, + anon_sym_RBRACE, + STATE(8706), 1, sym_heredoc_body, - STATE(10504), 1, - aux_sym_fun_type_param_list_repeat1, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387199] = 10, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [390449] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11222), 1, + ACTIONS(11288), 1, anon_sym_RBRACE, - STATE(8643), 1, + STATE(8707), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387233] = 12, + [390483] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11224), 1, + ACTIONS(11290), 1, anon_sym_end, - STATE(8644), 1, + STATE(8708), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11321), 1, + STATE(12316), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387271] = 10, + [390521] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11226), 1, + ACTIONS(11292), 1, anon_sym_RBRACE, - STATE(8645), 1, + STATE(8709), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387305] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8646), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4916), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [387327] = 11, + [390555] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11228), 1, - anon_sym_RPAREN, - STATE(8647), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11294), 1, + anon_sym_RBRACE, + STATE(8710), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11813), 1, - sym_proc_param_list, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [387363] = 11, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [390589] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(10606), 1, + ACTIONS(10656), 1, anon_sym_AT_LBRACK, - ACTIONS(11230), 1, + ACTIONS(11296), 1, anon_sym_RPAREN, - STATE(8648), 1, + STATE(8711), 1, sym_heredoc_body, - STATE(9264), 1, + STATE(9304), 1, sym_annotation, - STATE(9374), 1, + STATE(9462), 1, aux_sym_param_repeat1, - STATE(10545), 1, + STATE(10450), 1, sym_param, - STATE(11126), 1, + STATE(11555), 1, sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, + ACTIONS(10664), 2, sym_instance_var, sym_class_var, - [387399] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11232), 1, - anon_sym_end, - STATE(8649), 1, - sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11878), 1, - sym__rescue_else_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [387437] = 10, + [390625] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11234), 1, + ACTIONS(11298), 1, anon_sym_RBRACE, - STATE(8650), 1, + STATE(8712), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387471] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8651), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4920), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [387493] = 10, + [390659] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11236), 1, + ACTIONS(11300), 1, anon_sym_RBRACE, - STATE(8652), 1, + STATE(8713), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387527] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8653), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5934), 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, - [387549] = 4, + [390693] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8654), 1, + STATE(8714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4928), 9, + ACTIONS(4944), 9, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -681326,298 +687008,358 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_do, - [387571] = 12, + [390715] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11238), 1, + ACTIONS(11302), 1, anon_sym_end, - STATE(8655), 1, + STATE(8715), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11084), 1, + sym__rescue_else_ensure, + STATE(11560), 1, sym_ensure, - STATE(11708), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [390753] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11304), 1, + anon_sym_end, + STATE(8716), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11560), 1, + sym_ensure, + STATE(12111), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387609] = 4, + [390791] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8656), 1, + ACTIONS(11308), 1, + sym__modifier_if_keyword, + ACTIONS(11310), 1, + sym__modifier_unless_keyword, + ACTIONS(11312), 1, + sym__modifier_rescue_keyword, + ACTIONS(11314), 1, + sym__modifier_ensure_keyword, + STATE(2132), 1, + sym__terminator, + STATE(8717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4908), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [387631] = 10, + ACTIONS(10686), 2, + sym__regular_ensure_keyword, + anon_sym_end, + ACTIONS(11306), 2, + sym__line_break, + anon_sym_SEMI, + [390825] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11316), 1, + anon_sym_RBRACE, + STATE(8718), 1, + sym_heredoc_body, + STATE(10477), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [390859] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11318), 1, + anon_sym_RPAREN, + STATE(8719), 1, + sym_heredoc_body, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11596), 1, + sym_proc_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [390895] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11240), 1, + ACTIONS(11320), 1, anon_sym_RBRACE, - STATE(8657), 1, + STATE(8720), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387665] = 4, + [390929] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8658), 1, + STATE(8721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4932), 9, + ACTIONS(5966), 9, + sym__line_break, sym__start_of_brace_block, - anon_sym_LBRACK, + sym__start_of_index_operator, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_EQ, anon_sym_do, - [387687] = 12, + anon_sym_then, + [390951] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11242), 1, + ACTIONS(11322), 1, anon_sym_end, - STATE(8659), 1, + STATE(8722), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11473), 1, + STATE(11954), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387725] = 10, + [390989] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11244), 1, + ACTIONS(11324), 1, anon_sym_RBRACE, - STATE(8660), 1, + STATE(8723), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387759] = 10, + [391023] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11246), 1, - anon_sym_RBRACE, - STATE(8661), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11326), 1, + anon_sym_end, + STATE(8724), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11560), 1, + sym_ensure, + STATE(11866), 1, + sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [387793] = 10, + [391061] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11248), 1, + ACTIONS(11328), 1, anon_sym_RBRACE, - STATE(8662), 1, + STATE(8725), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [387827] = 12, + [391095] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11250), 1, - anon_sym_end, - STATE(8663), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11330), 1, + anon_sym_RBRACE, + STATE(8726), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11429), 1, - sym__rescue_else_ensure, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387865] = 12, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [391129] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11252), 1, + ACTIONS(11332), 1, anon_sym_end, - STATE(8664), 1, + STATE(8727), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11517), 1, + STATE(11905), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387903] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8665), 1, - sym_heredoc_body, - STATE(8865), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10659), 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, - [387927] = 12, + [391167] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11254), 1, - anon_sym_end, - STATE(8666), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11334), 1, + anon_sym_RBRACE, + STATE(8728), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11529), 1, - sym__rescue_else_ensure, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387965] = 5, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [391201] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10336), 1, - anon_sym_LPAREN2, - STATE(8667), 1, + STATE(8729), 1, sym_heredoc_body, + STATE(9060), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10639), 8, + ACTIONS(10669), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -681626,59 +687368,42 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387989] = 10, + [391225] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(11256), 1, - anon_sym_RBRACE, - STATE(8668), 1, - sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [388023] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8669), 1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11336), 1, + anon_sym_RPAREN, + STATE(8730), 1, sym_heredoc_body, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11829), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [388045] = 5, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [391261] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10336), 1, - anon_sym_LPAREN2, - STATE(8670), 1, + STATE(8731), 1, sym_heredoc_body, + STATE(9157), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10643), 8, + ACTIONS(10669), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -681687,465 +687412,532 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [388069] = 12, + [391285] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11258), 1, + ACTIONS(11338), 1, anon_sym_end, - STATE(8671), 1, + STATE(8732), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11158), 1, + STATE(12351), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388107] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11260), 1, - anon_sym_RPAREN, - STATE(8672), 1, - sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11173), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [388143] = 10, + [391323] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11262), 1, + ACTIONS(11340), 1, anon_sym_RBRACE, - STATE(8673), 1, + STATE(8733), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [388177] = 12, + [391357] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11264), 1, + ACTIONS(11342), 1, anon_sym_end, - STATE(8674), 1, + STATE(8734), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(12279), 1, + STATE(11012), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388215] = 10, + [391395] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11266), 1, - anon_sym_RBRACE, - STATE(8675), 1, + ACTIONS(11344), 1, + anon_sym_RPAREN, + STATE(8735), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [388249] = 12, + [391429] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8736), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5802), 9, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_do, + anon_sym_then, + [391451] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11268), 1, + ACTIONS(11346), 1, anon_sym_end, - STATE(8676), 1, + STATE(8737), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11583), 1, + STATE(11971), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388287] = 10, + [391489] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11011), 1, - anon_sym_LBRACK, - ACTIONS(11013), 1, - anon_sym_DOT, - ACTIONS(11015), 1, - anon_sym_STAR, - ACTIONS(11019), 1, - anon_sym_QMARK, - ACTIONS(11083), 1, - anon_sym_PIPE, - STATE(8611), 1, - aux_sym_union_type_repeat1, - STATE(8677), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11348), 1, + anon_sym_RBRACE, + STATE(8738), 1, sym_heredoc_body, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [388321] = 10, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [391523] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11270), 1, - anon_sym_RPAREN, - STATE(8678), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11350), 1, + anon_sym_RBRACE, + STATE(8739), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [388355] = 10, + [391557] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11272), 1, + ACTIONS(11352), 1, anon_sym_RBRACE, - STATE(8679), 1, + STATE(8740), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [388389] = 12, + [391591] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8741), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5866), 9, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_do, + anon_sym_then, + [391613] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8742), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4948), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [391635] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11274), 1, + ACTIONS(11354), 1, anon_sym_end, - STATE(8680), 1, + STATE(8743), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11265), 1, + sym__rescue_else_ensure, + STATE(11560), 1, sym_ensure, - STATE(11006), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [391673] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11356), 1, + anon_sym_RPAREN, + STATE(8744), 1, + sym_heredoc_body, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10450), 1, + sym_param, + STATE(11068), 1, + sym_proc_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [391709] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11358), 1, + anon_sym_end, + STATE(8745), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(10959), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388427] = 12, + [391747] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11276), 1, + ACTIONS(11360), 1, anon_sym_end, - STATE(8681), 1, + STATE(8746), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11407), 1, + STATE(12327), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388465] = 12, + [391785] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11278), 1, + ACTIONS(11362), 1, anon_sym_end, - STATE(8682), 1, + STATE(8747), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11110), 1, + STATE(10998), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388503] = 10, + [391823] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11011), 1, - anon_sym_LBRACK, - ACTIONS(11013), 1, - anon_sym_DOT, - ACTIONS(11015), 1, - anon_sym_STAR, - ACTIONS(11019), 1, - anon_sym_QMARK, - ACTIONS(11083), 1, - anon_sym_PIPE, - STATE(8611), 1, - aux_sym_union_type_repeat1, - STATE(8683), 1, + STATE(8748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [388537] = 12, + ACTIONS(4956), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [391845] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11280), 1, + ACTIONS(11364), 1, anon_sym_end, - STATE(8684), 1, + STATE(8749), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11624), 1, + STATE(11843), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388575] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11282), 1, - anon_sym_RBRACE, - STATE(8685), 1, - sym_heredoc_body, - STATE(10114), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [388609] = 12, + [391883] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11284), 1, + ACTIONS(11366), 1, anon_sym_end, - STATE(8686), 1, + STATE(8750), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11298), 1, + STATE(11719), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388647] = 10, + [391921] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(11120), 1, sym_identifier, - ACTIONS(11286), 1, + ACTIONS(11368), 1, anon_sym_RBRACE, - STATE(8687), 1, + STATE(8751), 1, sym_heredoc_body, - STATE(10835), 1, + STATE(10822), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [388681] = 11, + [391955] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + STATE(8752), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4960), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [391977] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11288), 1, - anon_sym_RPAREN, - STATE(8688), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11370), 1, + anon_sym_RBRACE, + STATE(8753), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11216), 1, - sym_proc_param_list, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [388717] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [392011] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8689), 1, + STATE(8754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4964), 9, + ACTIONS(4952), 9, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -682155,1031 +687947,1074 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_do, - [388739] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11290), 1, - anon_sym_end, - STATE(8690), 1, - sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11585), 1, - sym__rescue_else_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [388777] = 10, + [392033] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11292), 1, + ACTIONS(11372), 1, anon_sym_RBRACE, - STATE(8691), 1, + STATE(8755), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [388811] = 12, + [392067] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11294), 1, + ACTIONS(11374), 1, anon_sym_end, - STATE(8692), 1, + STATE(8756), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10914), 1, - sym__rescue_else_ensure, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, + STATE(12166), 1, + sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388849] = 10, + [392105] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11296), 1, + ACTIONS(11376), 1, anon_sym_RBRACE, - STATE(8693), 1, + STATE(8757), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [388883] = 10, + [392139] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11298), 1, - anon_sym_RBRACE, - STATE(8694), 1, + STATE(8758), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [388917] = 12, + ACTIONS(4912), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [392161] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11300), 1, - anon_sym_end, - STATE(8695), 1, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_DOT, + ACTIONS(11065), 1, + anon_sym_STAR, + ACTIONS(11069), 1, + anon_sym_QMARK, + ACTIONS(11134), 1, + anon_sym_PIPE, + STATE(8616), 1, + aux_sym_union_type_repeat1, + STATE(8759), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10932), 1, - sym__rescue_else_ensure, - STATE(10949), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388955] = 10, + ACTIONS(4972), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [392195] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11302), 1, + ACTIONS(11378), 1, anon_sym_RBRACE, - STATE(8696), 1, + STATE(8760), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [388989] = 12, + [392229] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8761), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4902), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [392251] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11304), 1, + ACTIONS(11380), 1, anon_sym_end, - STATE(8697), 1, + STATE(8762), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11752), 1, + STATE(11956), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389027] = 12, + [392289] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11306), 1, + ACTIONS(11382), 1, anon_sym_end, - STATE(8698), 1, + STATE(8763), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(12037), 1, + STATE(11879), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389065] = 10, + [392327] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11308), 1, - anon_sym_RBRACE, - STATE(8699), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11384), 1, + anon_sym_end, + STATE(8764), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11533), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [389099] = 4, + [392365] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8700), 1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11386), 1, + sym_identifier, + ACTIONS(11388), 1, + anon_sym_STAR, + ACTIONS(11390), 1, + anon_sym_AMP, + ACTIONS(11392), 1, + anon_sym_STAR_STAR, + STATE(8681), 1, + aux_sym_param_repeat1, + STATE(8765), 1, sym_heredoc_body, + STATE(9304), 1, + sym_annotation, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 9, - sym__line_break, + ACTIONS(11394), 2, + sym_instance_var, + sym_class_var, + [392401] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11308), 1, sym__modifier_if_keyword, + ACTIONS(11310), 1, sym__modifier_unless_keyword, + ACTIONS(11312), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(11314), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_forall, - [389121] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11310), 1, - anon_sym_RBRACE, - STATE(8701), 1, + STATE(2132), 1, + sym__terminator, + STATE(8766), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [389155] = 10, + ACTIONS(1859), 2, + sym__regular_ensure_keyword, + anon_sym_end, + ACTIONS(11306), 2, + sym__line_break, + anon_sym_SEMI, + [392435] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(9935), 1, - anon_sym_RPAREN, - STATE(8702), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11396), 1, + anon_sym_end, + STATE(8767), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11318), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [389189] = 12, + [392473] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11312), 1, + ACTIONS(11398), 1, anon_sym_end, - STATE(8703), 1, + STATE(8768), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11798), 1, + STATE(11536), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [392511] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11400), 1, + anon_sym_RBRACE, + STATE(8769), 1, + sym_heredoc_body, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389227] = 12, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [392545] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11314), 1, + ACTIONS(11402), 1, anon_sym_end, - STATE(8704), 1, + STATE(8770), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11731), 1, + STATE(11615), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389265] = 12, + [392583] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11316), 1, + ACTIONS(11404), 1, anon_sym_end, - STATE(8705), 1, + STATE(8771), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11807), 1, + STATE(11694), 1, sym__rescue_else_ensure, ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [389303] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11318), 1, - anon_sym_RBRACE, - STATE(8706), 1, - sym_heredoc_body, - STATE(10114), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [389337] = 10, + sym__line_continuation, + sym_comment, + [392621] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(11120), 1, sym_identifier, - ACTIONS(11320), 1, + ACTIONS(11406), 1, anon_sym_RBRACE, - STATE(8707), 1, + STATE(8772), 1, sym_heredoc_body, - STATE(10835), 1, + STATE(10822), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [389371] = 12, + [392655] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11322), 1, + ACTIONS(11408), 1, anon_sym_end, - STATE(8708), 1, + STATE(8773), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10948), 1, - sym__rescue_else_ensure, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, + STATE(12326), 1, + sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389409] = 10, + [392693] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11324), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11410), 1, anon_sym_RBRACE, - STATE(8709), 1, + STATE(8774), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [389443] = 11, + [392727] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11326), 1, - anon_sym_RPAREN, - STATE(8710), 1, - sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11886), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [389479] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11328), 1, + ACTIONS(11412), 1, anon_sym_RBRACE, - STATE(8711), 1, + STATE(8775), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [389513] = 8, + [392761] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3459), 1, - sym__start_of_brace_block, - ACTIONS(11330), 1, - anon_sym_do, - STATE(8712), 1, + STATE(8776), 1, sym_heredoc_body, - STATE(9554), 1, - sym_do_end_block, - STATE(9600), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5710), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4968), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT, - [389543] = 10, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [392783] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11332), 1, + ACTIONS(11414), 1, anon_sym_RBRACE, - STATE(8713), 1, + STATE(8777), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [389577] = 12, + [392817] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11334), 1, + ACTIONS(11416), 1, anon_sym_end, - STATE(8714), 1, + STATE(8778), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11560), 1, sym_ensure, - STATE(11851), 1, + STATE(11930), 1, sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389615] = 12, + [392855] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11336), 1, + ACTIONS(11418), 1, anon_sym_end, - STATE(8715), 1, + STATE(8779), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11977), 1, + STATE(11335), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389653] = 12, + [392893] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11338), 1, - anon_sym_end, - STATE(8716), 1, + STATE(8780), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11747), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389691] = 10, + ACTIONS(4920), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [392915] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11340), 1, + ACTIONS(11420), 1, anon_sym_RBRACE, - STATE(8717), 1, + STATE(8781), 1, sym_heredoc_body, - STATE(10114), 1, + STATE(10477), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [389725] = 12, + [392949] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11342), 1, - anon_sym_end, - STATE(8718), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11422), 1, + anon_sym_RBRACE, + STATE(8782), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(10983), 1, - sym__rescue_else_ensure, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389763] = 10, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [392983] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11011), 1, + STATE(8783), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4928), 9, + sym__start_of_brace_block, anon_sym_LBRACK, - ACTIONS(11013), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT, - ACTIONS(11015), 1, anon_sym_STAR, - ACTIONS(11019), 1, - anon_sym_QMARK, - ACTIONS(11083), 1, anon_sym_PIPE, - STATE(8611), 1, - aux_sym_union_type_repeat1, - STATE(8719), 1, + anon_sym_QMARK, + anon_sym_do, + [393005] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4936), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [389797] = 12, + ACTIONS(4964), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_do, + [393027] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11344), 1, + ACTIONS(11424), 1, anon_sym_end, - STATE(8720), 1, + STATE(8785), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(12151), 1, + STATE(11303), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389835] = 12, + [393065] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11346), 1, + ACTIONS(11426), 1, anon_sym_end, - STATE(8721), 1, + STATE(8786), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, + STATE(11556), 1, + sym__rescue_else_ensure, + STATE(11560), 1, sym_ensure, - STATE(12189), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [393103] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11428), 1, + anon_sym_end, + STATE(8787), 1, + sym_heredoc_body, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11114), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389873] = 11, + [393141] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11348), 1, - anon_sym_RPAREN, - STATE(8722), 1, + ACTIONS(11430), 1, + anon_sym_RBRACE, + STATE(8788), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11258), 1, - sym_proc_param_list, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [389909] = 12, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [393175] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11350), 1, + ACTIONS(11432), 1, anon_sym_end, - STATE(8723), 1, + STATE(8789), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(12000), 1, + STATE(11232), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [393213] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11434), 1, + anon_sym_RBRACE, + STATE(8790), 1, + sym_heredoc_body, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389947] = 12, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [393247] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11352), 1, + ACTIONS(11436), 1, anon_sym_end, - STATE(8724), 1, + STATE(8791), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11982), 1, + STATE(11373), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389985] = 10, + [393285] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(11120), 1, sym_identifier, - ACTIONS(11354), 1, + ACTIONS(11438), 1, anon_sym_RBRACE, - STATE(8725), 1, + STATE(8792), 1, sym_heredoc_body, - STATE(10835), 1, + STATE(10822), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [390019] = 10, + [393319] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(11120), 1, sym_identifier, - ACTIONS(11356), 1, + ACTIONS(11440), 1, anon_sym_RBRACE, - STATE(8726), 1, + STATE(8793), 1, sym_heredoc_body, - STATE(10835), 1, + STATE(10822), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [390053] = 10, + [393353] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(11120), 1, sym_identifier, - ACTIONS(11358), 1, + ACTIONS(11442), 1, anon_sym_RBRACE, - STATE(8727), 1, + STATE(8794), 1, sym_heredoc_body, - STATE(10835), 1, + STATE(10822), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [390087] = 12, + [393387] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11360), 1, + ACTIONS(11444), 1, anon_sym_end, - STATE(8728), 1, + STATE(8795), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(12169), 1, + STATE(10978), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390125] = 10, + [393425] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11362), 1, - anon_sym_RBRACE, - STATE(8729), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11446), 1, + anon_sym_end, + STATE(8796), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(9158), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10584), 1, + sym_else, + STATE(11391), 1, + sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [390159] = 12, + [393463] = 12, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11364), 1, + ACTIONS(11448), 1, anon_sym_end, - STATE(8730), 1, + STATE(8797), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9158), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10584), 1, sym_else, - STATE(10949), 1, - sym_ensure, - STATE(10987), 1, + STATE(11404), 1, sym__rescue_else_ensure, + STATE(11560), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390197] = 4, + [393501] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8731), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11450), 1, + anon_sym_RBRACE, + STATE(8798), 1, sym_heredoc_body, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4956), 9, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [393535] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8799), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4976), 9, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -683189,488 +689024,564 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_do, - [390219] = 10, + [393557] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11366), 1, + ACTIONS(11120), 1, + sym_identifier, + ACTIONS(11452), 1, anon_sym_RBRACE, - STATE(8732), 1, + STATE(8800), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [390253] = 12, + [393591] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, + STATE(8801), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5170), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11368), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8733), 1, + [393612] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11458), 1, + anon_sym_SLASH, + STATE(8802), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(12045), 1, - sym__rescue_else_ensure, - ACTIONS(5), 2, + STATE(8804), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [393645] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11462), 1, + anon_sym_SLASH, + STATE(8803), 1, + sym_heredoc_body, + STATE(9146), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [393678] = 10, + ACTIONS(3), 1, sym_comment, - [390291] = 10, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11370), 1, - anon_sym_RBRACE, - STATE(8734), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11464), 1, + anon_sym_SLASH, + STATE(8804), 1, + sym_heredoc_body, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [393711] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + ACTIONS(11466), 1, + anon_sym_RPAREN, + STATE(2141), 1, + sym__terminator, + STATE(8805), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [390325] = 12, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [393744] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11372), 1, + ACTIONS(11468), 1, anon_sym_end, - STATE(8735), 1, + STATE(8806), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10277), 1, sym_else, - STATE(10949), 1, + STATE(11794), 1, sym_ensure, - STATE(12051), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390363] = 12, + [393779] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11374), 1, - anon_sym_end, - STATE(8736), 1, + ACTIONS(11470), 1, + anon_sym_COLON_COLON, + STATE(8807), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11953), 1, - sym__rescue_else_ensure, + STATE(8808), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390401] = 4, + ACTIONS(4857), 6, + sym__line_break, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_end, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, + [393804] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8737), 1, + ACTIONS(11470), 1, + anon_sym_COLON_COLON, + STATE(8808), 1, sym_heredoc_body, + STATE(8813), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5098), 9, + ACTIONS(4847), 6, 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_LPAREN, anon_sym_end, - [390423] = 11, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, + [393829] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11376), 1, - sym_identifier, - ACTIONS(11378), 1, - anon_sym_STAR, - ACTIONS(11380), 1, - anon_sym_AMP, - ACTIONS(11382), 1, - anon_sym_STAR_STAR, - STATE(8564), 1, - aux_sym_param_repeat1, - STATE(8738), 1, + ACTIONS(11470), 1, + anon_sym_COLON_COLON, + STATE(8809), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, + STATE(8814), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11384), 2, - sym_instance_var, - sym_class_var, - [390459] = 11, + ACTIONS(4847), 6, + sym__line_break, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_end, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, + [393854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11386), 1, - anon_sym_RPAREN, - STATE(8739), 1, + STATE(8810), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10545), 1, - sym_param, - STATE(11300), 1, - sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [390495] = 12, + ACTIONS(10861), 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, + [393875] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11388), 1, + ACTIONS(11472), 1, anon_sym_end, - STATE(8740), 1, + STATE(8811), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10272), 1, sym_else, - STATE(10949), 1, + STATE(11063), 1, sym_ensure, - STATE(11128), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390533] = 10, + [393910] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11390), 1, - anon_sym_RBRACE, - STATE(8741), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11474), 1, + anon_sym_SLASH, + STATE(8812), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [393943] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11476), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [390567] = 4, + STATE(8813), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4840), 6, + sym__line_break, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_end, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, + [393966] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8742), 1, + ACTIONS(11470), 1, + anon_sym_COLON_COLON, + STATE(8813), 1, + aux_sym_constant_repeat1, + STATE(8814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4924), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [390589] = 10, + ACTIONS(4853), 6, + sym__line_break, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_end, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, + [393991] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(11479), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11485), 1, + anon_sym_SLASH, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11482), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11487), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + STATE(8815), 2, + sym_heredoc_body, + aux_sym_regex_repeat1, + [394022] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11392), 1, - anon_sym_RBRACE, - STATE(8743), 1, + ACTIONS(11120), 1, + sym_identifier, + STATE(8816), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, + STATE(10514), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [390623] = 10, + [394053] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11394), 1, - anon_sym_RBRACE, - STATE(8744), 1, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + ACTIONS(11490), 1, + anon_sym_RPAREN, + STATE(2134), 1, + sym__terminator, + STATE(8817), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [390657] = 12, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [394086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11396), 1, - anon_sym_end, - STATE(8745), 1, + STATE(8818), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(12104), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390695] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11197), 1, + ACTIONS(10865), 8, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(11199), 1, sym__modifier_unless_keyword, - ACTIONS(11201), 1, sym__modifier_rescue_keyword, - ACTIONS(11203), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - STATE(2104), 1, - sym__terminator, - STATE(8746), 1, + anon_sym_SEMI, + anon_sym_end, + [394107] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10645), 2, - sym__regular_ensure_keyword, - anon_sym_end, - ACTIONS(11195), 2, + ACTIONS(10745), 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, - [390729] = 12, + anon_sym_end, + [394128] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11398), 1, - anon_sym_end, - STATE(8747), 1, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, + anon_sym_STAR, + ACTIONS(11101), 1, + anon_sym_QMARK, + ACTIONS(11492), 1, + anon_sym_PIPE, + STATE(8820), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11040), 1, - sym__rescue_else_ensure, + STATE(9171), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390767] = 12, + ACTIONS(4924), 2, + sym__start_of_brace_block, + anon_sym_do, + [394161] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11400), 1, - anon_sym_end, - STATE(8748), 1, + STATE(8821), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10052), 1, - sym_else, - STATE(10949), 1, - sym_ensure, - STATE(11088), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390805] = 12, + ACTIONS(10873), 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, + [394182] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11402), 1, + ACTIONS(11494), 1, anon_sym_end, - STATE(8749), 1, + STATE(8822), 1, sym_heredoc_body, - STATE(8980), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10052), 1, + STATE(10168), 1, sym_else, - STATE(10949), 1, + STATE(12058), 1, sym_ensure, - STATE(11447), 1, - sym__rescue_else_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390843] = 4, + [394217] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8750), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11496), 1, + anon_sym_SLASH, + STATE(8823), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + STATE(8824), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [394250] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [390865] = 4, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8751), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11498), 1, + anon_sym_SLASH, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(8824), 1, + sym_heredoc_body, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [394283] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + ACTIONS(11500), 1, + anon_sym_RPAREN, + STATE(2142), 1, + sym__terminator, + STATE(8825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10771), 8, + ACTIONS(8188), 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, - [390886] = 4, + [394316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8752), 1, + STATE(8826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10831), 8, + ACTIONS(10759), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -683679,15 +689590,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [390907] = 4, + [394337] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8753), 1, + STATE(8827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10661), 8, + ACTIONS(10889), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -683696,15 +689607,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [390928] = 4, + [394358] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8754), 1, + STATE(8828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10947), 8, + ACTIONS(6922), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -683713,15 +689624,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [390949] = 4, + [394379] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8755), 1, + STATE(8829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10951), 8, + ACTIONS(10889), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -683730,133 +689641,63 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [390970] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11408), 1, - anon_sym_SLASH, - STATE(8756), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [391003] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11412), 1, - anon_sym_SLASH, - STATE(8757), 1, - sym_heredoc_body, - STATE(8851), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [391036] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11414), 1, - anon_sym_end, - STATE(8758), 1, - sym_heredoc_body, - STATE(8964), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10270), 1, - sym_else, - STATE(11864), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [391071] = 11, + [394400] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11416), 1, + ACTIONS(11502), 1, anon_sym_end, - STATE(8759), 1, + STATE(8830), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10303), 1, + STATE(10623), 1, sym_else, - STATE(11920), 1, + STATE(12016), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [391106] = 11, + [394435] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11418), 1, + ACTIONS(11504), 1, anon_sym_end, - STATE(8760), 1, + STATE(8831), 1, sym_heredoc_body, - STATE(8800), 1, + STATE(8901), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10089), 1, + STATE(10651), 1, sym_else, - STATE(11169), 1, + STATE(12002), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [391141] = 4, + [394470] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8761), 1, + STATE(8832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10695), 8, + ACTIONS(10741), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -683865,32 +689706,39 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391162] = 4, + [394491] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8762), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11506), 1, + anon_sym_end, + STATE(8833), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10662), 1, + sym_else, + STATE(12110), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10761), 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, - [391183] = 4, + [394526] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8763), 1, + STATE(8834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10777), 8, + ACTIONS(10923), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -683899,15 +689747,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391204] = 4, + [394547] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8764), 1, + STATE(8835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10897), 8, + ACTIONS(10849), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -683916,15 +689764,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391225] = 4, + [394568] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8765), 1, + STATE(8836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10713), 8, + ACTIONS(10979), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -683933,97 +689781,63 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391246] = 11, + [394589] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11420), 1, + ACTIONS(11508), 1, anon_sym_end, - STATE(8766), 1, + STATE(8837), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(8904), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10113), 1, + STATE(10700), 1, sym_else, - STATE(11204), 1, + STATE(12237), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [391281] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8767), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10859), 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, - [391302] = 11, + [394624] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11422), 1, + ACTIONS(11510), 1, anon_sym_end, - STATE(8768), 1, + STATE(8838), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10117), 1, + STATE(10708), 1, sym_else, - STATE(11234), 1, + STATE(12276), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [391337] = 4, + [394659] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8769), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10865), 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, - [391358] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8770), 1, + STATE(8839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10867), 8, + ACTIONS(10869), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684032,15 +689846,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391379] = 4, + [394680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8771), 1, + STATE(8840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10869), 8, + ACTIONS(10875), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684049,15 +689863,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391400] = 4, + [394701] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8772), 1, + STATE(8841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10871), 8, + ACTIONS(10875), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684066,15 +689880,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391421] = 4, + [394722] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8773), 1, + STATE(8842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10667), 8, + ACTIONS(10835), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684083,32 +689897,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391442] = 4, + [394743] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8774), 1, + STATE(8843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10679), 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, - [391463] = 4, + ACTIONS(5802), 8, + sym__start_of_brace_block, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_do, + [394764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8775), 1, + STATE(8844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10701), 8, + ACTIONS(10753), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684117,15 +689931,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391484] = 4, + [394785] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8776), 1, + STATE(8845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10703), 8, + ACTIONS(10819), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684134,63 +689948,62 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391505] = 11, + [394806] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11424), 1, + ACTIONS(11512), 1, anon_sym_end, - STATE(8777), 1, + STATE(8846), 1, sym_heredoc_body, - STATE(8923), 1, + STATE(8905), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10197), 1, + STATE(10743), 1, sym_else, - STATE(10912), 1, + STATE(12368), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [391540] = 11, + [394841] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11426), 1, - anon_sym_end, - STATE(8778), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11514), 1, + anon_sym_SLASH, + STATE(8847), 1, sym_heredoc_body, - STATE(8860), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10454), 1, - sym_else, - STATE(11631), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [391575] = 4, + STATE(8850), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [394874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8779), 1, + STATE(8848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 8, + ACTIONS(10893), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684199,190 +690012,78 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391596] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8780), 1, - sym_heredoc_body, - STATE(10082), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [391627] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11049), 1, - anon_sym_QMARK, - ACTIONS(11428), 1, - anon_sym_PIPE, - STATE(8781), 1, - sym_heredoc_body, - STATE(8852), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4968), 2, - sym__start_of_brace_block, - anon_sym_do, - [391660] = 11, + [394895] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11430), 1, - anon_sym_end, - STATE(8782), 1, + STATE(8849), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10457), 1, - sym_else, - STATE(11638), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [391695] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, + ACTIONS(10875), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11432), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8783), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10458), 1, - sym_else, - STATE(11645), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, + [394916] = 10, + ACTIONS(3), 1, sym_comment, - [391730] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11434), 1, - anon_sym_end, - STATE(8784), 1, - sym_heredoc_body, - STATE(8861), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10461), 1, - sym_else, - STATE(11652), 1, - sym_ensure, - ACTIONS(5), 2, + ACTIONS(5), 1, sym__line_continuation, - sym_comment, - [391765] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11436), 1, - anon_sym_end, - STATE(8785), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11516), 1, + anon_sym_SLASH, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(8850), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10462), 1, - sym_else, - STATE(11665), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [391800] = 4, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [394949] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8786), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10783), 8, - sym__line_break, + ACTIONS(10688), 1, sym__modifier_if_keyword, + ACTIONS(10690), 1, sym__modifier_unless_keyword, + ACTIONS(10692), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(10694), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [391821] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8787), 1, + ACTIONS(11518), 1, + anon_sym_RPAREN, + STATE(2140), 1, + sym__terminator, + STATE(8851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10785), 8, + ACTIONS(8188), 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, - [391842] = 4, + [394982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8788), 1, + STATE(8852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10787), 8, + ACTIONS(10875), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684391,15 +690092,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391863] = 4, + [395003] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8789), 1, + STATE(8853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10795), 8, + ACTIONS(10835), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684408,15 +690109,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391884] = 4, + [395024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8790), 1, + STATE(8854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5142), 8, + ACTIONS(10753), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684425,278 +690126,160 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [391905] = 11, + [395045] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11438), 1, + ACTIONS(11520), 1, anon_sym_end, - STATE(8791), 1, + STATE(8855), 1, sym_heredoc_body, - STATE(8813), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10275), 1, + STATE(10734), 1, sym_else, - STATE(11744), 1, + STATE(12046), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [391940] = 11, + [395080] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11440), 1, + ACTIONS(11522), 1, + sym_identifier, + ACTIONS(11525), 1, + anon_sym_SEMI, + ACTIONS(11528), 1, anon_sym_end, - STATE(8792), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10484), 1, - sym_else, - STATE(11699), 1, - sym_ensure, + ACTIONS(11530), 1, + anon_sym_include, + STATE(10368), 1, + sym__c_struct_expression, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [391975] = 11, + STATE(8856), 2, + sym_heredoc_body, + aux_sym__c_struct_expressions_repeat1, + STATE(10281), 2, + sym_c_struct_fields, + sym_include, + [395111] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11442), 1, - anon_sym_end, - STATE(8793), 1, + STATE(8857), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10278), 1, - sym_else, - STATE(11762), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [392010] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, + ACTIONS(10819), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11444), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8794), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10282), 1, - sym_else, - STATE(11771), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [392045] = 11, + [395132] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11446), 1, - anon_sym_end, - STATE(8795), 1, + STATE(8858), 1, sym_heredoc_body, - STATE(8814), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10285), 1, - sym_else, - STATE(11793), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [392080] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, + ACTIONS(10897), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11448), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8796), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10287), 1, - sym_else, - STATE(11818), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [392115] = 11, + [395153] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11450), 1, - anon_sym_end, - STATE(8797), 1, + STATE(8859), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10289), 1, - sym_else, - STATE(11828), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [392150] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, + ACTIONS(10895), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11452), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8798), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10492), 1, - sym_else, - STATE(11723), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [392185] = 11, + [395174] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11454), 1, + ACTIONS(11533), 1, anon_sym_end, - STATE(8799), 1, + STATE(8860), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10265), 1, + STATE(10106), 1, sym_else, - STATE(11031), 1, + STATE(11100), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [392220] = 11, + [395209] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11456), 1, + ACTIONS(11535), 1, anon_sym_end, - STATE(8800), 1, + STATE(8861), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10292), 1, + STATE(10437), 1, sym_else, - STATE(11856), 1, + STATE(12070), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [392255] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11458), 1, - anon_sym_SLASH, - STATE(8801), 1, - sym_heredoc_body, - STATE(8824), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [392288] = 4, + [395244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8802), 1, + STATE(8862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10739), 8, + ACTIONS(10907), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684705,15 +690288,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392309] = 4, + [395265] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8803), 1, + STATE(8863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10757), 8, + ACTIONS(10721), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684722,15 +690305,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392330] = 4, + [395286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8804), 1, + STATE(8864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10801), 8, + ACTIONS(10713), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684739,15 +690322,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392351] = 4, + [395307] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8805), 1, + STATE(8865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10803), 8, + ACTIONS(10945), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684756,15 +690339,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392372] = 4, + [395328] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8806), 1, + STATE(8866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10811), 8, + ACTIONS(10947), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684773,55 +690356,37 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392393] = 4, + [395349] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8807), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10823), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, + ACTIONS(11537), 1, + sym_identifier, + ACTIONS(11540), 1, anon_sym_SEMI, + ACTIONS(11543), 1, anon_sym_end, - [392414] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(11545), 1, + anon_sym_include, + STATE(10377), 1, + sym__union_expression, + ACTIONS(5), 2, sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11460), 1, - anon_sym_SLASH, - STATE(8808), 1, + sym_comment, + STATE(8867), 2, sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [392447] = 4, + aux_sym__union_expressions_repeat1, + STATE(10100), 2, + sym_union_fields, + sym_include, + [395380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8809), 1, + STATE(8868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10837), 8, + ACTIONS(10951), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684830,15 +690395,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392468] = 4, + [395401] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8810), 1, + STATE(8869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10843), 8, + ACTIONS(10745), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684847,15 +690412,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392489] = 4, + [395422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8811), 1, + STATE(8870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10845), 8, + ACTIONS(10963), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684864,15 +690429,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392510] = 4, + [395443] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8812), 1, + STATE(8871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10847), 8, + ACTIONS(6433), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684881,63 +690446,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392531] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11462), 1, - anon_sym_end, - STATE(8813), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10328), 1, - sym_else, - STATE(11996), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [392566] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11464), 1, - anon_sym_end, - STATE(8814), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10341), 1, - sym_else, - STATE(12009), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [392601] = 4, + [395464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8815), 1, + STATE(8872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10895), 8, + ACTIONS(10965), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684946,15 +690463,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392622] = 4, + [395485] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8816), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11548), 1, + anon_sym_SLASH, + STATE(8873), 1, + sym_heredoc_body, + STATE(8881), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [395518] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10899), 8, + ACTIONS(5122), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684963,15 +690503,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392643] = 4, + [395539] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8817), 1, + STATE(8875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10905), 8, + ACTIONS(10839), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684980,15 +690520,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392664] = 4, + [395560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8818), 1, + STATE(8876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10907), 8, + ACTIONS(10983), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -684997,15 +690537,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392685] = 4, + [395581] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8819), 1, + STATE(8877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10913), 8, + ACTIONS(10977), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685014,38 +690554,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392706] = 10, + [395602] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - ACTIONS(11466), 1, - anon_sym_RPAREN, - STATE(2115), 1, - sym__terminator, - STATE(8820), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11550), 1, + anon_sym_SLASH, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(8878), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [392739] = 4, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [395635] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8821), 1, + STATE(8879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10919), 8, + ACTIONS(10973), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685054,15 +690594,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392760] = 4, + [395656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8822), 1, + STATE(8880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10921), 8, + ACTIONS(10789), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685071,60 +690611,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392781] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8823), 1, - sym_heredoc_body, - STATE(10028), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [392812] = 10, + [395677] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11468), 1, + ACTIONS(11552), 1, anon_sym_SLASH, - STATE(8824), 1, - sym_heredoc_body, - STATE(9130), 1, + STATE(8815), 1, aux_sym_regex_repeat1, - STATE(9372), 1, + STATE(8881), 1, + sym_heredoc_body, + STATE(9550), 1, sym_interpolation, - ACTIONS(11406), 2, + ACTIONS(11456), 2, aux_sym_regex_token1, sym_regex_character_class, - ACTIONS(11410), 2, + ACTIONS(11460), 2, sym_regex_escape_sequence, sym_regex_special_match, - [392845] = 4, + [395710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8825), 1, + STATE(8882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10791), 8, + ACTIONS(10797), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685133,15 +690651,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392866] = 4, + [395731] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8826), 1, + STATE(8883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10821), 8, + ACTIONS(10761), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685150,15 +690668,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392887] = 4, + [395752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8827), 1, + STATE(8884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10885), 8, + ACTIONS(10781), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685167,61 +690685,55 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392908] = 10, + [395773] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(11009), 1, - anon_sym_PIPE, - STATE(8282), 1, - aux_sym_union_type_repeat1, - STATE(8828), 1, + STATE(8885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [392941] = 10, + ACTIONS(10797), 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, + [395794] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, + ACTIONS(10688), 1, sym__modifier_if_keyword, - ACTIONS(10649), 1, + ACTIONS(10690), 1, sym__modifier_unless_keyword, - ACTIONS(10651), 1, + ACTIONS(10692), 1, sym__modifier_rescue_keyword, - ACTIONS(10653), 1, + ACTIONS(10694), 1, sym__modifier_ensure_keyword, - ACTIONS(11470), 1, + ACTIONS(11554), 1, anon_sym_RPAREN, - STATE(2121), 1, + STATE(2135), 1, sym__terminator, - STATE(8829), 1, + STATE(8886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - [392974] = 4, + [395827] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8830), 1, + STATE(8887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10663), 8, + ACTIONS(10761), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685230,15 +690742,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [392995] = 4, + [395848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8831), 1, + STATE(8888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10687), 8, + ACTIONS(10781), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685247,15 +690759,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [393016] = 4, + [395869] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8832), 1, + STATE(8889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10707), 8, + ACTIONS(10823), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685264,59 +690776,89 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [393037] = 9, + [395890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8833), 1, + STATE(8890), 1, sym_heredoc_body, - STATE(10343), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [393068] = 9, + ACTIONS(5126), 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, + [395911] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11472), 1, + STATE(8891), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10825), 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, + [395932] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8892), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10905), 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, + [395953] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11556), 1, sym_identifier, - ACTIONS(11475), 1, + ACTIONS(11558), 1, anon_sym_SEMI, - ACTIONS(11478), 1, + ACTIONS(11560), 1, anon_sym_end, - ACTIONS(11480), 1, + ACTIONS(11562), 1, anon_sym_include, - STATE(10502), 1, + STATE(8856), 1, + aux_sym__c_struct_expressions_repeat1, + STATE(8893), 1, + sym_heredoc_body, + STATE(9752), 1, sym__c_struct_expression, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8834), 2, - sym_heredoc_body, - aux_sym__c_struct_expressions_repeat1, - STATE(10478), 2, + STATE(10281), 2, sym_c_struct_fields, sym_include, - [393099] = 4, + [395986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8835), 1, + STATE(8894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6538), 8, + ACTIONS(10955), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685325,38 +690867,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [393120] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - ACTIONS(11483), 1, - anon_sym_RPAREN, - STATE(2110), 1, - sym__terminator, - STATE(8836), 1, + [396007] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(10867), 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, - [393153] = 4, + anon_sym_end, + [396028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8837), 1, + STATE(8896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6510), 8, + ACTIONS(10941), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685365,289 +690901,244 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [393174] = 10, + [396049] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, - anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(11009), 1, - anon_sym_PIPE, - STATE(8282), 1, - aux_sym_union_type_repeat1, - STATE(8838), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11564), 1, + anon_sym_end, + STATE(8897), 1, sym_heredoc_body, + STATE(8912), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10191), 1, + sym_else, + STATE(11466), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4894), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [393207] = 9, + [396084] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11566), 1, + anon_sym_end, + STATE(8898), 1, + sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10228), 1, + sym_else, + STATE(11523), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [396119] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(11120), 1, sym_identifier, - STATE(8839), 1, + STATE(8899), 1, sym_heredoc_body, - STATE(10637), 1, + STATE(10146), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [393238] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11485), 1, - anon_sym_SLASH, - STATE(8840), 1, - sym_heredoc_body, - STATE(8845), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [393271] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11487), 1, - sym_identifier, - ACTIONS(11490), 1, - anon_sym_SEMI, - ACTIONS(11493), 1, - anon_sym_end, - ACTIONS(11495), 1, - anon_sym_include, - STATE(10508), 1, - sym__union_expression, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(8841), 2, - sym_heredoc_body, - aux_sym__union_expressions_repeat1, - STATE(10531), 2, - sym_union_fields, - sym_include, - [393302] = 9, + [396150] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8842), 1, + ACTIONS(11120), 1, + sym_identifier, + STATE(8900), 1, sym_heredoc_body, - STATE(10695), 1, - sym_named_type, + STATE(10822), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [393333] = 11, + [396181] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11498), 1, + ACTIONS(11568), 1, anon_sym_end, - STATE(8843), 1, + STATE(8901), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10268), 1, + STATE(10229), 1, sym_else, - STATE(11039), 1, + STATE(11553), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [393368] = 11, + [396216] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11500), 1, + ACTIONS(11570), 1, anon_sym_end, - STATE(8844), 1, + STATE(8902), 1, sym_heredoc_body, - STATE(8927), 1, + STATE(8916), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10272), 1, + STATE(10231), 1, sym_else, - STATE(11042), 1, + STATE(11575), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [393403] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11502), 1, - anon_sym_SLASH, - STATE(8845), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [393436] = 9, + [396251] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8846), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11572), 1, + anon_sym_end, + STATE(8903), 1, sym_heredoc_body, - STATE(10469), 1, - sym_named_expr, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10266), 1, + sym_else, + STATE(11632), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [393467] = 10, + [396286] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - ACTIONS(11504), 1, - anon_sym_RPAREN, - STATE(2119), 1, - sym__terminator, - STATE(8847), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11574), 1, + anon_sym_end, + STATE(8904), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10267), 1, + sym_else, + STATE(11643), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [393500] = 11, + [396321] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11506), 1, + ACTIONS(11576), 1, anon_sym_end, - STATE(8848), 1, + STATE(8905), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10273), 1, + STATE(10280), 1, sym_else, - STATE(11052), 1, + STATE(11700), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [393535] = 9, + [396356] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8849), 1, + STATE(8906), 1, sym_heredoc_body, - STATE(10032), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [393566] = 4, + ACTIONS(5866), 8, + sym__start_of_brace_block, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_do, + [396377] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8850), 1, + STATE(8907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10945), 8, + ACTIONS(10905), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685656,126 +691147,55 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [393587] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11508), 1, - anon_sym_SLASH, - STATE(8851), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [393620] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11428), 1, - anon_sym_PIPE, - STATE(8852), 1, - sym_heredoc_body, - STATE(8896), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4882), 6, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_do, - [393645] = 9, + [396398] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(10652), 1, sym_identifier, - STATE(8853), 1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11578), 1, + anon_sym_RPAREN, + STATE(8908), 1, sym_heredoc_body, - STATE(10120), 1, - sym_named_expr, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10787), 1, + sym_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [393676] = 11, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [396431] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11510), 1, - anon_sym_end, - STATE(8854), 1, + STATE(8909), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10361), 1, - sym_else, - STATE(11325), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [393711] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10647), 1, + ACTIONS(10777), 8, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(10649), 1, sym__modifier_unless_keyword, - ACTIONS(10651), 1, sym__modifier_rescue_keyword, - ACTIONS(10653), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ACTIONS(11512), 1, - anon_sym_RPAREN, - STATE(2124), 1, - sym__terminator, - STATE(8855), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8185), 2, - sym__line_break, anon_sym_SEMI, - [393744] = 4, + anon_sym_end, + [396452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8856), 1, + STATE(8910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10925), 8, + ACTIONS(10785), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685784,195 +691204,202 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [393765] = 9, + [396473] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8857), 1, + STATE(8911), 1, sym_heredoc_body, - STATE(10219), 1, + STATE(10225), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [393796] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11514), 1, - anon_sym_SLASH, - STATE(8858), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [393829] = 11, + [396504] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11516), 1, + ACTIONS(11580), 1, anon_sym_end, - STATE(8859), 1, + STATE(8912), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10279), 1, + STATE(10443), 1, sym_else, - STATE(11062), 1, + STATE(12171), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [393864] = 11, + [396539] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11562), 1, + anon_sym_include, + ACTIONS(11582), 1, + sym_identifier, + ACTIONS(11584), 1, + anon_sym_SEMI, + ACTIONS(11586), 1, + anon_sym_end, + STATE(8867), 1, + aux_sym__union_expressions_repeat1, + STATE(8913), 1, + sym_heredoc_body, + STATE(9767), 1, + sym__union_expression, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10100), 2, + sym_union_fields, + sym_include, + [396572] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11518), 1, + ACTIONS(11588), 1, anon_sym_end, - STATE(8860), 1, + STATE(8914), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(8943), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10530), 1, + STATE(10183), 1, sym_else, - STATE(11863), 1, + STATE(12148), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [393899] = 11, + [396607] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11590), 1, + anon_sym_SLASH, + STATE(8915), 1, + sym_heredoc_body, + STATE(8922), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [396640] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11520), 1, + ACTIONS(11592), 1, anon_sym_end, - STATE(8861), 1, + STATE(8916), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10532), 1, + STATE(10485), 1, sym_else, - STATE(11869), 1, + STATE(10964), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [393934] = 11, + [396675] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11522), 1, + ACTIONS(11594), 1, anon_sym_end, - STATE(8862), 1, - sym_heredoc_body, - STATE(9476), 1, + STATE(8822), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(8917), 1, + sym_heredoc_body, + STATE(9921), 1, sym_rescue_block, - STATE(10290), 1, + STATE(10739), 1, sym_else, - STATE(11089), 1, + STATE(12252), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [393969] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8863), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + [396710] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(10949), 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, - [393990] = 9, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8864), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11596), 1, + anon_sym_SLASH, + STATE(8918), 1, sym_heredoc_body, - STATE(10294), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [394021] = 4, + STATE(8933), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [396743] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8865), 1, + STATE(8919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10723), 8, + ACTIONS(10827), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685981,15 +691408,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394042] = 4, + [396764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8866), 1, + STATE(8920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10725), 8, + ACTIONS(5134), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -685998,15 +691425,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394063] = 4, + [396785] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8867), 1, + STATE(8921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10729), 8, + ACTIONS(5138), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686015,78 +691442,61 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394084] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11524), 1, - anon_sym_end, - STATE(8854), 1, - aux_sym_method_def_repeat1, - STATE(8868), 1, - sym_heredoc_body, - STATE(9675), 1, - sym_rescue_block, - STATE(10369), 1, - sym_else, - STATE(12085), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, + [396806] = 10, + ACTIONS(3), 1, sym_comment, - [394119] = 9, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8869), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11598), 1, + anon_sym_SLASH, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(8922), 1, sym_heredoc_body, - STATE(10347), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [394150] = 4, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [396839] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8870), 1, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + ACTIONS(11600), 1, + anon_sym_RPAREN, + STATE(2144), 1, + sym__terminator, + STATE(8923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10851), 8, + ACTIONS(8188), 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, - [394171] = 4, + [396872] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8871), 1, + STATE(8924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10853), 8, + ACTIONS(5142), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686095,15 +691505,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394192] = 4, + [396893] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8872), 1, + STATE(8925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10901), 8, + ACTIONS(10833), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686112,15 +691522,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394213] = 4, + [396914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8873), 1, + STATE(8926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10855), 8, + ACTIONS(10961), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686129,37 +691539,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394234] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8874), 1, - sym_heredoc_body, - STATE(10377), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [394265] = 4, + [396935] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8875), 1, + STATE(8927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 8, + ACTIONS(10971), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686168,62 +691556,39 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394286] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10602), 1, - sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11526), 1, - anon_sym_RPAREN, - STATE(8876), 1, - sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10805), 1, - sym_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [394319] = 11, + [396956] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11528), 1, + ACTIONS(11602), 1, anon_sym_end, - STATE(8877), 1, + STATE(8928), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10426), 1, + STATE(10205), 1, sym_else, - STATE(12290), 1, + STATE(12339), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [394354] = 4, + [396991] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8878), 1, + STATE(8929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 8, + ACTIONS(10887), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686232,140 +691597,89 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394375] = 11, + [397012] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11530), 1, - anon_sym_end, - STATE(8879), 1, + STATE(8930), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10482), 1, - sym_else, - STATE(10933), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [394410] = 9, + ACTIONS(10999), 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, + [397033] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8880), 1, + STATE(8931), 1, sym_heredoc_body, - STATE(10420), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [394441] = 4, + ACTIONS(10891), 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, + [397054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8881), 1, + STATE(8932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6494), 8, + ACTIONS(10911), 8, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_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_COMMA, - anon_sym_DOT, - anon_sym_do, - anon_sym_then, - [394462] = 10, + anon_sym_end, + [397075] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11532), 1, + ACTIONS(11604), 1, anon_sym_SLASH, - STATE(8882), 1, - sym_heredoc_body, - STATE(8888), 1, + STATE(8815), 1, aux_sym_regex_repeat1, - STATE(9372), 1, + STATE(8933), 1, + sym_heredoc_body, + STATE(9550), 1, sym_interpolation, - ACTIONS(11406), 2, + ACTIONS(11456), 2, aux_sym_regex_token1, sym_regex_character_class, - ACTIONS(11410), 2, + ACTIONS(11460), 2, sym_regex_escape_sequence, sym_regex_special_match, - [394495] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8883), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10683), 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, - [394516] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8884), 1, - sym_heredoc_body, - STATE(10453), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [394547] = 4, + [397108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8885), 1, + STATE(8934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10737), 8, + ACTIONS(10939), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686374,131 +691688,109 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394568] = 11, + [397129] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11534), 1, + ACTIONS(11606), 1, anon_sym_end, - STATE(8886), 1, + STATE(8935), 1, sym_heredoc_body, - STATE(9088), 1, + STATE(8964), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10380), 1, + STATE(10214), 1, sym_else, - STATE(10994), 1, + STATE(10941), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [394603] = 11, + [397164] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11536), 1, + ACTIONS(11608), 1, anon_sym_end, - STATE(8887), 1, + STATE(8936), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10465), 1, + STATE(10219), 1, sym_else, - STATE(11281), 1, + STATE(10950), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [394638] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11538), 1, - anon_sym_SLASH, - STATE(8888), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [394671] = 9, + [397199] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8889), 1, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + ACTIONS(11610), 1, + anon_sym_RPAREN, + STATE(2136), 1, + sym__terminator, + STATE(8937), 1, sym_heredoc_body, - STATE(10515), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [394702] = 10, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [397232] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, + ACTIONS(10688), 1, sym__modifier_if_keyword, - ACTIONS(10649), 1, + ACTIONS(10690), 1, sym__modifier_unless_keyword, - ACTIONS(10651), 1, + ACTIONS(10692), 1, sym__modifier_rescue_keyword, - ACTIONS(10653), 1, + ACTIONS(10694), 1, sym__modifier_ensure_keyword, - ACTIONS(11540), 1, + ACTIONS(11612), 1, anon_sym_RPAREN, - STATE(2122), 1, + STATE(2133), 1, sym__terminator, - STATE(8890), 1, + STATE(8938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - [394735] = 4, + [397265] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8891), 1, + STATE(8939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10877), 8, + ACTIONS(10915), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686507,58 +691799,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394756] = 8, + [397286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11197), 1, - sym__modifier_if_keyword, - ACTIONS(11199), 1, - sym__modifier_unless_keyword, - ACTIONS(11201), 1, - sym__modifier_rescue_keyword, - ACTIONS(11203), 1, - sym__modifier_ensure_keyword, - STATE(8892), 1, + STATE(8940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10943), 4, + ACTIONS(10931), 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, - [394785] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8893), 1, - sym_heredoc_body, - STATE(10539), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [394816] = 4, + [397307] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8894), 1, + STATE(8941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 8, + ACTIONS(5146), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686567,205 +691833,115 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [394837] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8852), 1, - aux_sym_union_type_repeat1, - STATE(8895), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4875), 7, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_do, - [394860] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11542), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(8896), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4875), 6, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_do, - [394883] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11545), 1, - anon_sym_SLASH, - STATE(8808), 1, - aux_sym_regex_repeat1, - STATE(8897), 1, - sym_heredoc_body, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [394916] = 11, + [397328] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11547), 1, + ACTIONS(11614), 1, anon_sym_end, - STATE(8898), 1, + STATE(8942), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10372), 1, + STATE(10104), 1, sym_else, - STATE(11361), 1, + STATE(12394), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [394951] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8899), 1, - sym_heredoc_body, - STATE(10599), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [394982] = 11, + [397363] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11549), 1, + ACTIONS(11616), 1, anon_sym_end, - STATE(8900), 1, + STATE(8943), 1, sym_heredoc_body, - STATE(9039), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10308), 1, + STATE(10147), 1, sym_else, - STATE(11130), 1, + STATE(11977), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395017] = 9, + [397398] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8901), 1, + STATE(8944), 1, sym_heredoc_body, - STATE(10835), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [395048] = 4, + ACTIONS(5921), 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, + [397419] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8902), 1, + STATE(8945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6510), 8, + ACTIONS(10949), 8, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_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_COMMA, - anon_sym_DOT, - anon_sym_do, - anon_sym_then, - [395069] = 9, + anon_sym_end, + [397440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8903), 1, - sym_heredoc_body, - STATE(10647), 1, - sym_named_expr, + ACTIONS(11618), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [395100] = 4, + STATE(8946), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4875), 6, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_do, + [397463] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8904), 1, + STATE(8947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10849), 8, + ACTIONS(5102), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686774,37 +691950,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [395121] = 9, + [397484] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8905), 1, + STATE(8948), 1, sym_heredoc_body, - STATE(10109), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [395152] = 4, + ACTIONS(5166), 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, + [397505] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8906), 1, + STATE(8949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10799), 8, + ACTIONS(10953), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686813,15 +691984,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [395173] = 4, + [397526] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8907), 1, + STATE(8950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10851), 8, + ACTIONS(10821), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686830,15 +692001,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [395194] = 4, + [397547] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8908), 1, + STATE(8951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5126), 8, + ACTIONS(10829), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686847,108 +692018,63 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [395215] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8909), 1, - sym_heredoc_body, - STATE(10304), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [395246] = 11, + [397568] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11551), 1, + ACTIONS(11621), 1, anon_sym_end, - STATE(8910), 1, + STATE(8952), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(8984), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10312), 1, + STATE(10250), 1, sym_else, - STATE(11149), 1, + STATE(11028), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395281] = 11, + [397603] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11553), 1, + ACTIONS(11623), 1, anon_sym_end, - STATE(8898), 1, - aux_sym_method_def_repeat1, - STATE(8911), 1, + STATE(8953), 1, sym_heredoc_body, - STATE(9675), 1, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, sym_rescue_block, - STATE(10503), 1, + STATE(10251), 1, sym_else, - STATE(11050), 1, + STATE(11032), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395316] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11555), 1, - anon_sym_SLASH, - STATE(8756), 1, - aux_sym_regex_repeat1, - STATE(8912), 1, - sym_heredoc_body, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [395349] = 4, + [397638] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8913), 1, + STATE(8954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10853), 8, + ACTIONS(10727), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -686957,353 +692083,292 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [395370] = 11, + [397659] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11557), 1, + ACTIONS(11625), 1, anon_sym_end, - STATE(8862), 1, - aux_sym_method_def_repeat1, - STATE(8914), 1, + STATE(8955), 1, sym_heredoc_body, - STATE(9675), 1, + STATE(8987), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, sym_rescue_block, - STATE(10619), 1, + STATE(10253), 1, sym_else, - STATE(11226), 1, + STATE(11038), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395405] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8915), 1, - sym_heredoc_body, - STATE(10636), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [395436] = 11, + [397694] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11559), 1, + ACTIONS(11627), 1, anon_sym_end, - STATE(8916), 1, + STATE(8956), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10640), 1, + STATE(10255), 1, sym_else, - STATE(11287), 1, + STATE(11042), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395471] = 4, + [397729] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8917), 1, + STATE(8957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6534), 8, + ACTIONS(10847), 8, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_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_COMMA, - anon_sym_DOT, - anon_sym_do, - anon_sym_then, - [395492] = 6, + anon_sym_end, + [397750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11561), 1, - anon_sym_COLON_COLON, - STATE(8918), 1, + STATE(8958), 1, sym_heredoc_body, - STATE(8984), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4853), 6, + ACTIONS(10755), 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_LPAREN, anon_sym_end, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - [395517] = 10, + [397771] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, + STATE(8959), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10937), 8, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(10649), 1, sym__modifier_unless_keyword, - ACTIONS(10651), 1, sym__modifier_rescue_keyword, - ACTIONS(10653), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ACTIONS(11563), 1, - anon_sym_RPAREN, - STATE(2120), 1, - sym__terminator, - STATE(8919), 1, + anon_sym_SEMI, + anon_sym_end, + [397792] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(10933), 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, - [395550] = 11, + anon_sym_end, + [397813] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11565), 1, + ACTIONS(11629), 1, anon_sym_end, - STATE(8920), 1, + STATE(8961), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(8988), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10536), 1, + STATE(10257), 1, sym_else, - STATE(11116), 1, + STATE(11051), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395585] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8921), 1, - sym_heredoc_body, - STATE(10059), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [395616] = 11, + [397848] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11567), 1, + ACTIONS(11631), 1, anon_sym_end, - STATE(8922), 1, + STATE(8962), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10106), 1, + STATE(10259), 1, sym_else, - STATE(12011), 1, + STATE(11055), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395651] = 11, + [397883] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11569), 1, + ACTIONS(11633), 1, anon_sym_end, - STATE(8923), 1, + STATE(8963), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9098), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10433), 1, + STATE(10336), 1, sym_else, - STATE(11550), 1, + STATE(11037), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395686] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11571), 1, - anon_sym_SLASH, - STATE(8924), 1, - sym_heredoc_body, - STATE(8936), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [395719] = 9, + [397918] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8925), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11635), 1, + anon_sym_end, + STATE(8964), 1, sym_heredoc_body, - STATE(10193), 1, - sym_named_type, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10270), 1, + sym_else, + STATE(11065), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [395750] = 11, + [397953] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11573), 1, + ACTIONS(11637), 1, anon_sym_end, - STATE(8783), 1, - aux_sym_method_def_repeat1, - STATE(8926), 1, + STATE(8965), 1, sym_heredoc_body, - STATE(9675), 1, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, sym_rescue_block, - STATE(10374), 1, + STATE(10468), 1, sym_else, - STATE(11370), 1, + STATE(11515), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395785] = 11, + [397988] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11575), 1, + ACTIONS(11639), 1, anon_sym_end, - STATE(8927), 1, + STATE(8966), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10442), 1, + STATE(10606), 1, sym_else, - STATE(11592), 1, + STATE(11964), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395820] = 9, + [398023] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8928), 1, + STATE(8967), 1, sym_heredoc_body, - STATE(10114), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [395851] = 4, + ACTIONS(10799), 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, + [398044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8929), 1, + STATE(8968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10719), 8, + ACTIONS(10747), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687312,39 +692377,62 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [395872] = 11, + [398065] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11577), 1, + ACTIONS(11641), 1, anon_sym_end, - STATE(8930), 1, - sym_heredoc_body, - STATE(9476), 1, + STATE(8966), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(8969), 1, + sym_heredoc_body, + STATE(9921), 1, sym_rescue_block, - STATE(10378), 1, + STATE(10217), 1, sym_else, - STATE(11378), 1, + STATE(10948), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395907] = 4, + [398100] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8931), 1, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, + anon_sym_STAR, + ACTIONS(11101), 1, + anon_sym_QMARK, + ACTIONS(11492), 1, + anon_sym_PIPE, + STATE(8970), 1, + sym_heredoc_body, + STATE(9171), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4898), 2, + sym__start_of_brace_block, + anon_sym_do, + [398133] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10719), 8, + ACTIONS(10751), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687353,331 +692441,427 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [395928] = 11, + [398154] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11579), 1, + ACTIONS(11643), 1, anon_sym_end, - STATE(8792), 1, - aux_sym_method_def_repeat1, - STATE(8932), 1, + STATE(8972), 1, sym_heredoc_body, - STATE(9675), 1, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, sym_rescue_block, - STATE(10387), 1, + STATE(10239), 1, sym_else, - STATE(11393), 1, + STATE(11004), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395963] = 11, + [398189] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11581), 1, - anon_sym_end, - STATE(8933), 1, + STATE(8973), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10395), 1, - sym_else, - STATE(11425), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [395998] = 4, + ACTIONS(10763), 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, + [398210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8934), 1, + STATE(8974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6538), 8, + ACTIONS(10711), 8, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_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_COMMA, - anon_sym_DOT, - anon_sym_do, - anon_sym_then, - [396019] = 10, + anon_sym_end, + [398231] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11583), 1, - sym_identifier, - ACTIONS(11585), 1, - anon_sym_SEMI, - ACTIONS(11587), 1, - anon_sym_include, - STATE(8935), 1, + STATE(8975), 1, sym_heredoc_body, - STATE(9032), 1, - aux_sym__c_struct_expressions_repeat1, - STATE(9903), 1, - sym__c_struct_expression, - STATE(11690), 1, - sym__c_struct_expressions, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10478), 2, - sym_c_struct_fields, - sym_include, - [396052] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(10985), 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, + [398252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11589), 1, - anon_sym_SLASH, - STATE(8936), 1, + STATE(8976), 1, sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [396085] = 9, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10757), 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, + [398273] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8937), 1, + STATE(8977), 1, sym_heredoc_body, - STATE(10291), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [396116] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10647), 1, + ACTIONS(10975), 8, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(10649), 1, sym__modifier_unless_keyword, - ACTIONS(10651), 1, sym__modifier_rescue_keyword, - ACTIONS(10653), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ACTIONS(11591), 1, - anon_sym_RPAREN, - STATE(2118), 1, - sym__terminator, - STATE(8938), 1, + anon_sym_SEMI, + anon_sym_end, + [398294] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(10747), 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, - [396149] = 9, + anon_sym_end, + [398315] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8939), 1, + STATE(8979), 1, sym_heredoc_body, - STATE(10360), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [396180] = 10, + ACTIONS(10987), 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, + [398336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11587), 1, - anon_sym_include, - ACTIONS(11593), 1, - sym_identifier, - ACTIONS(11595), 1, - anon_sym_SEMI, - STATE(8940), 1, + STATE(8980), 1, sym_heredoc_body, - STATE(9057), 1, - aux_sym__union_expressions_repeat1, - STATE(9928), 1, - sym__union_expression, - STATE(11853), 1, - sym__union_expressions, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10531), 2, - sym_union_fields, - sym_include, - [396213] = 10, + ACTIONS(10995), 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, + [398357] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11597), 1, + ACTIONS(11645), 1, anon_sym_SLASH, - STATE(8941), 1, + STATE(8981), 1, sym_heredoc_body, - STATE(8991), 1, + STATE(9016), 1, aux_sym_regex_repeat1, - STATE(9372), 1, + STATE(9550), 1, sym_interpolation, - ACTIONS(11406), 2, + ACTIONS(11456), 2, aux_sym_regex_token1, sym_regex_character_class, - ACTIONS(11410), 2, + ACTIONS(11460), 2, sym_regex_escape_sequence, sym_regex_special_match, - [396246] = 11, + [398390] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11599), 1, + ACTIONS(11647), 1, anon_sym_end, - STATE(8942), 1, + STATE(8982), 1, sym_heredoc_body, - STATE(9051), 1, + STATE(9001), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10564), 1, + STATE(10321), 1, sym_else, - STATE(11954), 1, + STATE(11171), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [396281] = 10, - ACTIONS(3), 1, + [398425] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11649), 1, + anon_sym_end, + STATE(8983), 1, + sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10324), 1, + sym_else, + STATE(11177), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, sym_comment, - ACTIONS(5), 1, + [398460] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11651), 1, + anon_sym_end, + STATE(8984), 1, + sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10325), 1, + sym_else, + STATE(11181), 1, + sym_ensure, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + [398495] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11601), 1, - anon_sym_SLASH, - STATE(8943), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11653), 1, + anon_sym_end, + STATE(8985), 1, sym_heredoc_body, - STATE(8982), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [396314] = 9, + STATE(9003), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10327), 1, + sym_else, + STATE(11185), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [398530] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11655), 1, + anon_sym_end, + STATE(8986), 1, + sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10330), 1, + sym_else, + STATE(11195), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [398565] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11657), 1, + anon_sym_end, + STATE(8987), 1, + sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10331), 1, + sym_else, + STATE(11198), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [398600] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11659), 1, + anon_sym_end, + STATE(8988), 1, + sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10334), 1, + sym_else, + STATE(11208), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [398635] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3429), 1, + sym__start_of_brace_block, + ACTIONS(11073), 1, + anon_sym_do, + STATE(8989), 1, + sym_heredoc_body, + STATE(9395), 1, + sym_do_end_block, + STATE(9398), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5729), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [398664] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8944), 1, + ACTIONS(11120), 1, + sym_identifier, + STATE(8990), 1, sym_heredoc_body, - STATE(10444), 1, - sym_named_type, + STATE(10482), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [396345] = 10, + [398695] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11049), 1, - anon_sym_QMARK, - ACTIONS(11428), 1, - anon_sym_PIPE, - STATE(8852), 1, - aux_sym_union_type_repeat1, - STATE(8945), 1, + STATE(8991), 1, sym_heredoc_body, + STATE(9171), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4890), 2, + ACTIONS(4875), 7, sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_do, - [396378] = 4, + [398718] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8946), 1, + STATE(8992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10835), 8, + ACTIONS(10751), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687686,55 +692870,59 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396399] = 4, + [398739] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8947), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(8993), 1, sym_heredoc_body, + STATE(10579), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10835), 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, - [396420] = 10, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [398770] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11049), 1, - anon_sym_QMARK, - ACTIONS(11428), 1, - anon_sym_PIPE, - STATE(8852), 1, - aux_sym_union_type_repeat1, - STATE(8948), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(8994), 1, sym_heredoc_body, + STATE(10477), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4898), 2, - sym__start_of_brace_block, - anon_sym_do, - [396453] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [398801] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8949), 1, + STATE(8995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10879), 8, + ACTIONS(10763), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687743,15 +692931,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396474] = 4, + [398822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8950), 1, + STATE(8996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10903), 8, + ACTIONS(10765), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687760,15 +692948,37 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396495] = 4, + [398843] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8951), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + STATE(8997), 1, sym_heredoc_body, + STATE(10132), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10915), 8, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [398874] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8998), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10767), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687777,37 +692987,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396516] = 9, + [398895] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8952), 1, + STATE(8999), 1, sym_heredoc_body, - STATE(10489), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [396547] = 4, + ACTIONS(10743), 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, + [398916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8953), 1, + STATE(9000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6845), 8, + ACTIONS(10799), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687816,84 +693021,107 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396568] = 10, + [398937] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11661), 1, + anon_sym_end, + STATE(9001), 1, + sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10345), 1, + sym_else, + STATE(11262), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [398972] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11603), 1, - anon_sym_RPAREN, - STATE(8954), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9002), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10805), 1, - sym_param, + STATE(10393), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [396601] = 11, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [399003] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11605), 1, + ACTIONS(11663), 1, anon_sym_end, - STATE(8955), 1, + STATE(9003), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10688), 1, + STATE(10348), 1, sym_else, - STATE(12143), 1, + STATE(11270), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [396636] = 9, + [399038] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8956), 1, + ACTIONS(11120), 1, + sym_identifier, + STATE(9004), 1, sym_heredoc_body, - STATE(10534), 1, - sym_named_type, + STATE(10154), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [396667] = 4, + [399069] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8957), 1, + STATE(9005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10699), 8, + ACTIONS(10747), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687902,15 +693130,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396688] = 4, + [399090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8958), 1, + STATE(9006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10705), 8, + ACTIONS(10751), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687919,15 +693147,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396709] = 4, + [399111] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8959), 1, + STATE(9007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10855), 8, + ACTIONS(10763), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687936,59 +693164,75 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396730] = 9, + [399132] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - ACTIONS(11087), 1, - sym_identifier, - STATE(8960), 1, + STATE(9008), 1, sym_heredoc_body, - STATE(10631), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11795), 2, - sym_string, - sym_string_percent_literal, - [396761] = 9, + ACTIONS(11003), 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, + [399153] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8961), 1, + STATE(9009), 1, sym_heredoc_body, - STATE(10601), 1, + STATE(10433), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [396792] = 4, + [399184] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8962), 1, + ACTIONS(11665), 1, + anon_sym_DOT, + ACTIONS(11667), 1, + anon_sym_EQ, + ACTIONS(11669), 1, + sym__start_of_index_operator, + STATE(9010), 1, + sym_heredoc_body, + STATE(9233), 1, + sym__implicit_index_operator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5719), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [399213] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10727), 8, + ACTIONS(10747), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -687997,15 +693241,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396813] = 4, + [399234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8963), 1, + STATE(9012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10741), 8, + ACTIONS(10751), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688014,166 +693258,150 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [396834] = 11, + [399255] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11607), 1, - anon_sym_end, - STATE(8964), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11671), 1, + anon_sym_SLASH, + STATE(9013), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10591), 1, - sym_else, - STATE(11198), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [396869] = 4, + STATE(9190), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [399288] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8965), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + STATE(9014), 1, sym_heredoc_body, + STATE(10703), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10755), 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, - [396890] = 11, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [399319] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11609), 1, - anon_sym_end, - STATE(8843), 1, - aux_sym_method_def_repeat1, - STATE(8966), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9015), 1, sym_heredoc_body, - STATE(9675), 1, - sym_rescue_block, - STATE(10455), 1, - sym_else, - STATE(10924), 1, - sym_ensure, + STATE(10080), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [396925] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [399350] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8967), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11673), 1, + anon_sym_SLASH, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(9016), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5122), 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, - [396946] = 10, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [399383] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11611), 1, + ACTIONS(11675), 1, anon_sym_SLASH, - STATE(8968), 1, - sym_heredoc_body, - STATE(8976), 1, + STATE(8878), 1, aux_sym_regex_repeat1, - STATE(9372), 1, + STATE(9017), 1, + sym_heredoc_body, + STATE(9550), 1, sym_interpolation, - ACTIONS(11406), 2, + ACTIONS(11456), 2, aux_sym_regex_token1, sym_regex_character_class, - ACTIONS(11410), 2, + ACTIONS(11460), 2, sym_regex_escape_sequence, sym_regex_special_match, - [396979] = 9, + [399416] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8969), 1, + ACTIONS(11120), 1, + sym_identifier, + STATE(9018), 1, sym_heredoc_body, - STATE(10629), 1, - sym_named_type, + STATE(10296), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [397010] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11613), 1, - anon_sym_end, - STATE(8970), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10460), 1, - sym_else, - STATE(10945), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [397045] = 4, + [399447] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8971), 1, + STATE(9019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10781), 8, + ACTIONS(10763), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688182,15 +693410,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397066] = 4, + [399468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8972), 1, + STATE(9020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10817), 8, + ACTIONS(10765), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688199,37 +693427,82 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397087] = 9, + [399489] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8973), 1, + STATE(9021), 1, sym_heredoc_body, - STATE(10651), 1, + STATE(10574), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [397118] = 4, + [399520] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8974), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + STATE(9022), 1, sym_heredoc_body, + STATE(10124), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10873), 8, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [399551] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + ACTIONS(11677), 1, + anon_sym_RPAREN, + STATE(2137), 1, + sym__terminator, + STATE(9023), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [399584] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9024), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10767), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688238,241 +693511,184 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397139] = 11, + [399605] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11615), 1, - anon_sym_end, - STATE(8859), 1, - aux_sym_method_def_repeat1, - STATE(8975), 1, + STATE(9025), 1, sym_heredoc_body, - STATE(9675), 1, - sym_rescue_block, - STATE(10506), 1, - sym_else, - STATE(11025), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [397174] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(10743), 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, + [399626] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11617), 1, - anon_sym_SLASH, - STATE(8976), 1, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11049), 1, + anon_sym_PIPE, + STATE(8325), 1, + aux_sym_union_type_repeat1, + STATE(9026), 1, sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [397207] = 9, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4861), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [399659] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8977), 1, + STATE(9027), 1, sym_heredoc_body, - STATE(10664), 1, + STATE(10196), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(8681), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11221), 2, sym_string, sym_string_percent_literal, - [397238] = 9, + [399690] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11049), 1, + anon_sym_PIPE, + STATE(8325), 1, + aux_sym_union_type_repeat1, + STATE(9028), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4879), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [399723] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - STATE(8978), 1, + ACTIONS(11120), 1, + sym_identifier, + STATE(9029), 1, sym_heredoc_body, - STATE(10676), 1, - sym_named_type, + STATE(10320), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8582), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11984), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [397269] = 10, + [399754] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, + ACTIONS(10688), 1, sym__modifier_if_keyword, - ACTIONS(10649), 1, + ACTIONS(10690), 1, sym__modifier_unless_keyword, - ACTIONS(10651), 1, + ACTIONS(10692), 1, sym__modifier_rescue_keyword, - ACTIONS(10653), 1, + ACTIONS(10694), 1, sym__modifier_ensure_keyword, - ACTIONS(11619), 1, + ACTIONS(11679), 1, anon_sym_RPAREN, - STATE(2123), 1, + STATE(2147), 1, sym__terminator, - STATE(8979), 1, + STATE(9030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - [397302] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11621), 1, - anon_sym_end, - STATE(8980), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10340), 1, - sym_else, - STATE(11192), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [397337] = 10, + [399787] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11049), 1, - anon_sym_QMARK, - ACTIONS(11428), 1, - anon_sym_PIPE, - STATE(8852), 1, - aux_sym_union_type_repeat1, - STATE(8981), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9031), 1, sym_heredoc_body, + STATE(10408), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4936), 2, - sym__start_of_brace_block, - anon_sym_do, - [397370] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11623), 1, - anon_sym_SLASH, - STATE(8982), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [397403] = 11, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [399818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11625), 1, - anon_sym_end, - STATE(8983), 1, + STATE(9032), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10527), 1, - sym_else, - STATE(11103), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [397438] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11627), 1, - anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8984), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4846), 6, + ACTIONS(10803), 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_LPAREN, anon_sym_end, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - [397461] = 4, + [399839] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8985), 1, + STATE(9033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5138), 8, + ACTIONS(10811), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688481,32 +693697,58 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397482] = 4, + [399860] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8986), 1, + ACTIONS(11308), 1, + sym__modifier_if_keyword, + ACTIONS(11310), 1, + sym__modifier_unless_keyword, + ACTIONS(11312), 1, + sym__modifier_rescue_keyword, + ACTIONS(11314), 1, + sym__modifier_ensure_keyword, + STATE(9034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10639), 8, + ACTIONS(10981), 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, - [397503] = 4, + [399889] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8987), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + STATE(9035), 1, + sym_heredoc_body, + STATE(10456), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [399920] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10643), 8, + ACTIONS(10929), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688515,38 +693757,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397524] = 10, + [399941] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - ACTIONS(11630), 1, - anon_sym_RPAREN, - STATE(2114), 1, - sym__terminator, - STATE(8988), 1, + STATE(9037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(10787), 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, - [397557] = 4, + anon_sym_end, + [399962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8989), 1, + STATE(9038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6301), 8, + ACTIONS(10749), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688555,60 +693791,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397578] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8566), 1, - sym_identifier, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(8592), 1, - sym__string_percent_literal_start, - STATE(8990), 1, - sym_heredoc_body, - STATE(10068), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8582), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11984), 2, - sym_string, - sym_string_percent_literal, - [397609] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11632), 1, - anon_sym_SLASH, - STATE(8991), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [397642] = 4, + [399983] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8992), 1, + STATE(9039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10793), 8, + ACTIONS(10859), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688617,15 +693808,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397663] = 4, + [400004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8993), 1, + STATE(9040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10717), 8, + ACTIONS(10871), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688634,15 +693825,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397684] = 4, + [400025] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8994), 1, + STATE(9041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10809), 8, + ACTIONS(10787), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688651,15 +693842,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397705] = 4, + [400046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8995), 1, + STATE(9042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10887), 8, + ACTIONS(10801), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688668,15 +693859,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397726] = 4, + [400067] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8996), 1, + STATE(9043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10715), 8, + ACTIONS(10859), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688685,15 +693876,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397747] = 4, + [400088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8997), 1, + STATE(9044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5170), 8, + ACTIONS(10871), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688702,38 +693893,60 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397768] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [400109] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9045), 1, + sym_heredoc_body, + STATE(10541), 1, + sym_named_type, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [400140] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11634), 1, - anon_sym_SLASH, - STATE(8998), 1, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + ACTIONS(11681), 1, + anon_sym_RPAREN, + STATE(2145), 1, + sym__terminator, + STATE(9046), 1, sym_heredoc_body, - STATE(9012), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [397801] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [400173] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8999), 1, + STATE(9047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5162), 8, + ACTIONS(10909), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688742,15 +693955,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397822] = 4, + [400194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9000), 1, + STATE(9048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10889), 8, + ACTIONS(5966), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688759,37 +693972,60 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397843] = 9, + [400215] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, + anon_sym_STAR, + ACTIONS(11101), 1, + anon_sym_QMARK, + ACTIONS(11492), 1, + anon_sym_PIPE, + STATE(9049), 1, + sym_heredoc_body, + STATE(9171), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4972), 2, + sym__start_of_brace_block, + anon_sym_do, + [400248] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, + ACTIONS(8689), 1, sym__string_literal_start, - ACTIONS(8592), 1, + ACTIONS(8691), 1, sym__string_percent_literal_start, - ACTIONS(11087), 1, + ACTIONS(11120), 1, sym_identifier, - STATE(9001), 1, + STATE(9050), 1, sym_heredoc_body, - STATE(10692), 1, + STATE(10677), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11091), 2, + ACTIONS(11124), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11795), 2, + STATE(11053), 2, sym_string, sym_string_percent_literal, - [397874] = 4, + [400279] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9002), 1, + STATE(9051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10893), 8, + ACTIONS(10779), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688798,39 +694034,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397895] = 11, + [400300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11636), 1, - anon_sym_end, - STATE(8922), 1, - aux_sym_method_def_repeat1, - STATE(9003), 1, + STATE(9052), 1, sym_heredoc_body, - STATE(9675), 1, - sym_rescue_block, - STATE(10129), 1, - sym_else, - STATE(12123), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [397930] = 4, + ACTIONS(5966), 8, + sym__start_of_brace_block, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_do, + [400321] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9004), 1, + STATE(9053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10935), 8, + ACTIONS(10791), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688839,15 +694068,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397951] = 4, + [400342] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9005), 1, + STATE(9054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10883), 8, + ACTIONS(10997), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688856,15 +694085,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397972] = 4, + [400363] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9006), 1, + STATE(9055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10891), 8, + ACTIONS(10773), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688873,55 +694102,54 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [397993] = 4, + [400384] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9007), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9056), 1, sym_heredoc_body, + STATE(10748), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 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, - [398014] = 10, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [400415] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - ACTIONS(11638), 1, - anon_sym_RPAREN, - STATE(2116), 1, - sym__terminator, - STATE(9008), 1, + STATE(9057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(10967), 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, - [398047] = 4, + anon_sym_end, + [400436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9009), 1, + STATE(9058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 8, + ACTIONS(5106), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688930,15 +694158,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398068] = 4, + [400457] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9010), 1, + STATE(9059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10697), 8, + ACTIONS(10925), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688947,15 +694175,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398089] = 4, + [400478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9011), 1, + STATE(9060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10689), 8, + ACTIONS(10809), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -688964,38 +694192,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398110] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11640), 1, - anon_sym_SLASH, - STATE(9012), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [398143] = 4, + [400499] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9013), 1, + STATE(9061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10711), 8, + ACTIONS(10815), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689004,15 +694209,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398164] = 4, + [400520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9014), 1, + STATE(9062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 8, + ACTIONS(10917), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689021,15 +694226,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398185] = 4, + [400541] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9015), 1, + STATE(9063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 8, + ACTIONS(10857), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689038,15 +694243,60 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398206] = 4, + [400562] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9016), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + STATE(9064), 1, + sym_heredoc_body, + STATE(10258), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [400593] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11683), 1, + anon_sym_SLASH, + STATE(9065), 1, + sym_heredoc_body, + STATE(9080), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [400626] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10697), 8, + ACTIONS(10675), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689055,15 +694305,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398227] = 4, + [400647] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9017), 1, + STATE(9067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10689), 8, + ACTIONS(10705), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689072,15 +694322,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398248] = 4, + [400668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9018), 1, + STATE(9068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10711), 8, + ACTIONS(5130), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689089,15 +694339,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398269] = 4, + [400689] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9019), 1, + STATE(9069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10881), 8, + ACTIONS(10993), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689106,38 +694356,37 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398290] = 10, + [400710] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - ACTIONS(11642), 1, - anon_sym_RPAREN, - STATE(2117), 1, - sym__terminator, - STATE(9020), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9070), 1, sym_heredoc_body, + STATE(10533), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [398323] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [400741] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9021), 1, + STATE(9071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10665), 8, + ACTIONS(11001), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689146,15 +694395,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398344] = 4, + [400762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9022), 1, + STATE(9072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10691), 8, + ACTIONS(10927), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689163,15 +694412,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398365] = 4, + [400783] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9023), 1, + STATE(9073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10693), 8, + ACTIONS(10723), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689180,15 +694429,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398386] = 4, + [400804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9024), 1, + STATE(9074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10769), 8, + ACTIONS(10991), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689197,15 +694446,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398407] = 4, + [400825] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9025), 1, + STATE(9075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10691), 8, + ACTIONS(10899), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689214,15 +694463,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398428] = 4, + [400846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9026), 1, + STATE(9076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10693), 8, + ACTIONS(10969), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689231,15 +694480,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398449] = 4, + [400867] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9027), 1, + STATE(9077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10769), 8, + ACTIONS(10775), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689248,15 +694497,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398470] = 4, + [400888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9028), 1, + STATE(9078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10939), 8, + ACTIONS(10957), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689265,15 +694514,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398491] = 4, + [400909] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9029), 1, + STATE(9079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10941), 8, + ACTIONS(10959), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689282,15 +694531,60 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398512] = 4, + [400930] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9030), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11685), 1, + anon_sym_SLASH, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(9080), 1, + sym_heredoc_body, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [400963] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + STATE(9081), 1, + sym_heredoc_body, + STATE(10105), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [400994] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10953), 8, + ACTIONS(10913), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689299,59 +694593,77 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398533] = 8, + [401015] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11197), 1, + ACTIONS(10688), 1, sym__modifier_if_keyword, - ACTIONS(11199), 1, + ACTIONS(10690), 1, sym__modifier_unless_keyword, - ACTIONS(11201), 1, + ACTIONS(10692), 1, sym__modifier_rescue_keyword, - ACTIONS(11203), 1, + ACTIONS(10694), 1, sym__modifier_ensure_keyword, - STATE(9031), 1, + ACTIONS(11687), 1, + anon_sym_RPAREN, + STATE(2139), 1, + sym__terminator, + STATE(9083), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [401048] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10931), 4, + ACTIONS(10919), 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, - [398562] = 10, + [401069] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11583), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(11585), 1, - anon_sym_SEMI, - ACTIONS(11587), 1, - anon_sym_include, - ACTIONS(11644), 1, - anon_sym_end, - STATE(8834), 1, - aux_sym__c_struct_expressions_repeat1, - STATE(9032), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9085), 1, sym_heredoc_body, - STATE(9810), 1, - sym__c_struct_expression, + STATE(10148), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10478), 2, - sym_c_struct_fields, - sym_include, - [398595] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9033), 1, + STATE(9086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10717), 8, + ACTIONS(10885), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689360,56 +694672,61 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398616] = 4, + [401121] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9034), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + ACTIONS(11120), 1, + sym_identifier, + STATE(9087), 1, sym_heredoc_body, + STATE(10292), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5110), 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, - [398637] = 11, + ACTIONS(11124), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11053), 2, + sym_string, + sym_string_percent_literal, + [401152] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11646), 1, + ACTIONS(11689), 1, anon_sym_end, - STATE(8798), 1, + STATE(8860), 1, aux_sym_method_def_repeat1, - STATE(9035), 1, + STATE(9088), 1, sym_heredoc_body, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10405), 1, + STATE(10174), 1, sym_else, - STATE(11454), 1, + STATE(12091), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398672] = 4, + [401187] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9036), 1, + STATE(9089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5134), 8, + ACTIONS(10813), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689418,39 +694735,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398693] = 11, + [401208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11648), 1, - anon_sym_end, - STATE(9037), 1, + STATE(9090), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10408), 1, - sym_else, - STATE(11466), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398728] = 4, + ACTIONS(10817), 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, + [401229] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9038), 1, + STATE(9091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10917), 8, + ACTIONS(10831), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689459,150 +694769,163 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398749] = 11, + [401250] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11650), 1, - anon_sym_end, - STATE(9039), 1, + STATE(9092), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10410), 1, - sym_else, - STATE(11476), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398784] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, + ACTIONS(5802), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11652), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8768), 1, - aux_sym_method_def_repeat1, - STATE(9040), 1, + [401271] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9093), 1, sym_heredoc_body, - STATE(9675), 1, - sym_rescue_block, - STATE(10522), 1, - sym_else, - STATE(11424), 1, - sym_ensure, + STATE(10404), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398819] = 11, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401302] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11654), 1, - anon_sym_end, - STATE(9041), 1, + ACTIONS(10652), 1, + sym_identifier, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11691), 1, + anon_sym_RPAREN, + STATE(9094), 1, sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10560), 1, - sym_else, - STATE(11675), 1, - sym_ensure, + STATE(9304), 1, + sym_annotation, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10787), 1, + sym_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398854] = 10, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [401335] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11041), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, - anon_sym_DOT, - ACTIONS(11045), 1, - anon_sym_STAR, - ACTIONS(11049), 1, - anon_sym_QMARK, - ACTIONS(11428), 1, - anon_sym_PIPE, - STATE(8852), 1, - aux_sym_union_type_repeat1, - STATE(9042), 1, + STATE(9095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4886), 2, - sym__start_of_brace_block, - anon_sym_do, - [398887] = 10, + ACTIONS(10813), 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, + [401356] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11656), 1, + ACTIONS(11693), 1, anon_sym_SLASH, - STATE(9043), 1, + STATE(9096), 1, sym_heredoc_body, - STATE(9094), 1, + STATE(9104), 1, aux_sym_regex_repeat1, - STATE(9372), 1, + STATE(9550), 1, sym_interpolation, - ACTIONS(11406), 2, + ACTIONS(11456), 2, aux_sym_regex_token1, sym_regex_character_class, - ACTIONS(11410), 2, + ACTIONS(11460), 2, sym_regex_escape_sequence, sym_regex_special_match, - [398920] = 4, + [401389] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9044), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9097), 1, + sym_heredoc_body, + STATE(10487), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401420] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11695), 1, + anon_sym_end, + STATE(9098), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10189), 1, + sym_else, + STATE(12243), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10833), 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, - [398941] = 4, + [401455] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9045), 1, + STATE(9099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5130), 8, + ACTIONS(10817), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689611,15 +694934,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398962] = 4, + [401476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9046), 1, + STATE(9100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5146), 8, + ACTIONS(10831), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689628,15 +694951,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [398983] = 4, + [401497] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9047), 1, + STATE(9101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5106), 8, + ACTIONS(10793), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689645,154 +694968,129 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399004] = 4, + [401518] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9048), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9102), 1, sym_heredoc_body, + STATE(10522), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5102), 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, - [399025] = 11, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401549] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11658), 1, + ACTIONS(11697), 1, anon_sym_end, - STATE(9049), 1, + STATE(9103), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10255), 1, + STATE(10222), 1, sym_else, - STATE(10981), 1, + STATE(10960), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [399060] = 10, + [401584] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11660), 1, + ACTIONS(11699), 1, anon_sym_SLASH, - STATE(9050), 1, - sym_heredoc_body, - STATE(9084), 1, + STATE(8815), 1, aux_sym_regex_repeat1, - STATE(9372), 1, + STATE(9104), 1, + sym_heredoc_body, + STATE(9550), 1, sym_interpolation, - ACTIONS(11406), 2, + ACTIONS(11456), 2, aux_sym_regex_token1, sym_regex_character_class, - ACTIONS(11410), 2, + ACTIONS(11460), 2, sym_regex_escape_sequence, sym_regex_special_match, - [399093] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11662), 1, - anon_sym_end, - STATE(9051), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10416), 1, - sym_else, - STATE(11346), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [399128] = 4, + [401617] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9052), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10807), 8, - sym__line_break, + ACTIONS(10688), 1, sym__modifier_if_keyword, + ACTIONS(10690), 1, sym__modifier_unless_keyword, + ACTIONS(10692), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(10694), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [399149] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9053), 1, + ACTIONS(11701), 1, + anon_sym_RPAREN, + STATE(2143), 1, + sym__terminator, + STATE(9105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10863), 8, + ACTIONS(8188), 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, - [399170] = 4, + [401650] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9054), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9106), 1, sym_heredoc_body, + STATE(10589), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10773), 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, - [399191] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401681] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9055), 1, + STATE(9107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 8, + ACTIONS(10769), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689801,15 +695099,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399212] = 4, + [401702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9056), 1, + STATE(9108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 8, + ACTIONS(10845), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689818,55 +695116,60 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399233] = 10, + [401723] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11587), 1, - anon_sym_include, - ACTIONS(11593), 1, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(11595), 1, - anon_sym_SEMI, - ACTIONS(11664), 1, - anon_sym_end, - STATE(8841), 1, - aux_sym__union_expressions_repeat1, - STATE(9057), 1, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9109), 1, sym_heredoc_body, - STATE(9830), 1, - sym__union_expression, + STATE(10676), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10531), 2, - sym_union_fields, - sym_include, - [399266] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401754] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9058), 1, + ACTIONS(10361), 1, + anon_sym_LBRACK, + ACTIONS(10363), 1, + anon_sym_DOT, + ACTIONS(10365), 1, + anon_sym_STAR, + ACTIONS(10369), 1, + anon_sym_QMARK, + ACTIONS(11049), 1, + anon_sym_PIPE, + STATE(8325), 1, + aux_sym_union_type_repeat1, + STATE(9110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 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, - [399287] = 4, + ACTIONS(11703), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [401787] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9059), 1, + STATE(9111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 8, + ACTIONS(10877), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689875,15 +695178,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399308] = 4, + [401808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9060), 1, + STATE(9112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 8, + ACTIONS(10881), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689892,32 +695195,37 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399329] = 4, + [401829] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9061), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9113), 1, sym_heredoc_body, + STATE(10693), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 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, - [399350] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9062), 1, + STATE(9114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10759), 8, + ACTIONS(10913), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689926,15 +695234,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399371] = 4, + [401881] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9063), 1, + STATE(9115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10767), 8, + ACTIONS(10919), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -689943,100 +695251,129 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399392] = 4, + [401902] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9064), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9116), 1, sym_heredoc_body, + STATE(10718), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10773), 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, - [399413] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401933] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9065), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9117), 1, sym_heredoc_body, + STATE(10728), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 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, - [399434] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [401964] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9066), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11705), 1, + anon_sym_end, + STATE(9118), 1, sym_heredoc_body, + STATE(9142), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10571), 1, + sym_else, + STATE(11882), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 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, - [399455] = 4, + [401999] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9067), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9119), 1, sym_heredoc_body, + STATE(10738), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 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, - [399476] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [402030] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9068), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11707), 1, + anon_sym_end, + STATE(9120), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10572), 1, + sym_else, + STATE(11886), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 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, - [399497] = 4, + [402065] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9069), 1, + STATE(9121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 8, + ACTIONS(10885), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690045,15 +695382,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399518] = 4, + [402086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9070), 1, + STATE(9122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 8, + ACTIONS(10727), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690062,15 +695399,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399539] = 4, + [402107] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9071), 1, + STATE(9123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10759), 8, + ACTIONS(10813), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690079,32 +695416,37 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399560] = 4, + [402128] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9072), 1, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(8691), 1, + sym__string_percent_literal_start, + STATE(9124), 1, sym_heredoc_body, + STATE(10091), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10767), 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, - [399581] = 4, + ACTIONS(8681), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11221), 2, + sym_string, + sym_string_percent_literal, + [402159] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9073), 1, + STATE(9125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10771), 8, + ACTIONS(10817), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690113,38 +695455,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399602] = 10, + [402180] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10319), 1, - anon_sym_LBRACK, - ACTIONS(10321), 1, - anon_sym_DOT, - ACTIONS(10323), 1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11386), 1, + sym_identifier, + ACTIONS(11388), 1, anon_sym_STAR, - ACTIONS(10327), 1, - anon_sym_QMARK, - ACTIONS(11009), 1, - anon_sym_PIPE, - STATE(8282), 1, - aux_sym_union_type_repeat1, - STATE(9074), 1, + ACTIONS(11392), 1, + anon_sym_STAR_STAR, + STATE(8681), 1, + aux_sym_param_repeat1, + STATE(9126), 1, sym_heredoc_body, + STATE(9304), 1, + sym_annotation, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11666), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [399635] = 4, + ACTIONS(11394), 2, + sym_instance_var, + sym_class_var, + [402213] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9075), 1, + STATE(9127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10721), 8, + ACTIONS(10783), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690153,15 +695495,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399656] = 4, + [402234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9076), 1, + STATE(9128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10731), 8, + ACTIONS(10711), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690170,15 +695512,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399677] = 4, + [402255] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9077), 1, + STATE(9129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10733), 8, + ACTIONS(10831), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690187,32 +695529,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399698] = 4, + [402276] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9078), 1, + ACTIONS(11556), 1, + sym_identifier, + ACTIONS(11558), 1, + anon_sym_SEMI, + ACTIONS(11562), 1, + anon_sym_include, + STATE(8893), 1, + aux_sym__c_struct_expressions_repeat1, + STATE(9130), 1, sym_heredoc_body, + STATE(9940), 1, + sym__c_struct_expression, + STATE(11582), 1, + sym__c_struct_expressions, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10749), 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, - [399719] = 4, + STATE(10281), 2, + sym_c_struct_fields, + sym_include, + [402309] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9079), 1, + STATE(9131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10751), 8, + ACTIONS(10813), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690221,15 +695569,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399740] = 4, + [402330] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9080), 1, + STATE(9132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10753), 8, + ACTIONS(10817), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690238,15 +695586,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399761] = 4, + [402351] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9081), 1, + STATE(9133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10749), 8, + ACTIONS(5866), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690255,32 +695603,63 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399782] = 4, + [402372] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9082), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11709), 1, + anon_sym_end, + STATE(9134), 1, sym_heredoc_body, + STATE(9152), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10599), 1, + sym_else, + STATE(11949), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10751), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + [402407] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11711), 1, anon_sym_end, - [399803] = 4, + STATE(9135), 1, + sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10602), 1, + sym_else, + STATE(11959), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [402442] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9083), 1, + STATE(9136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10753), 8, + ACTIONS(10831), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690289,78 +695668,63 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399824] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11404), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11668), 1, - anon_sym_SLASH, - STATE(9084), 1, - sym_heredoc_body, - STATE(9130), 1, - aux_sym_regex_repeat1, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11406), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11410), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - [399857] = 4, + [402463] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9085), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11713), 1, + anon_sym_end, + STATE(9137), 1, sym_heredoc_body, + STATE(9155), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10605), 1, + sym_else, + STATE(11965), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10765), 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, - [399878] = 10, + [402498] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - ACTIONS(11670), 1, - anon_sym_RPAREN, - STATE(2111), 1, - sym__terminator, - STATE(9086), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11715), 1, + anon_sym_end, + STATE(9138), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10607), 1, + sym_else, + STATE(11969), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [399911] = 4, + [402533] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9087), 1, + STATE(9139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5114), 8, + ACTIONS(10793), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690369,104 +695733,110 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [399932] = 11, + [402554] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11672), 1, + ACTIONS(11717), 1, anon_sym_end, - STATE(9088), 1, + STATE(9140), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9156), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10658), 1, + STATE(10608), 1, sym_else, - STATE(11369), 1, + STATE(11976), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [399967] = 11, + [402589] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11674), 1, + ACTIONS(11719), 1, anon_sym_end, - STATE(8794), 1, - aux_sym_method_def_repeat1, - STATE(9089), 1, + STATE(9141), 1, sym_heredoc_body, - STATE(9675), 1, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, sym_rescue_block, - STATE(10053), 1, + STATE(10609), 1, sym_else, - STATE(10989), 1, + STATE(11980), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [400002] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9090), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6494), 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, - [400023] = 11, + [402624] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11676), 1, + ACTIONS(11721), 1, anon_sym_end, - STATE(9091), 1, + STATE(9142), 1, sym_heredoc_body, - STATE(9476), 1, + STATE(9511), 1, aux_sym_method_def_repeat1, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10060), 1, + STATE(10610), 1, sym_else, - STATE(11019), 1, + STATE(11983), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [400058] = 4, + [402659] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9092), 1, + ACTIONS(11562), 1, + anon_sym_include, + ACTIONS(11582), 1, + sym_identifier, + ACTIONS(11584), 1, + anon_sym_SEMI, + STATE(8913), 1, + aux_sym__union_expressions_repeat1, + STATE(9143), 1, + sym_heredoc_body, + STATE(9808), 1, + sym__union_expression, + STATE(11743), 1, + sym__union_expressions, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10100), 2, + sym_union_fields, + sym_include, + [402692] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6534), 8, + ACTIONS(10837), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690475,79 +695845,86 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400079] = 11, + [402713] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11678), 1, + ACTIONS(11723), 1, anon_sym_end, - STATE(8879), 1, - aux_sym_method_def_repeat1, - STATE(9093), 1, + STATE(9145), 1, sym_heredoc_body, - STATE(9675), 1, + STATE(9160), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, sym_rescue_block, - STATE(10698), 1, + STATE(10642), 1, sym_else, - STATE(12308), 1, + STATE(12047), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [400114] = 10, + [402748] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11680), 1, + ACTIONS(11725), 1, anon_sym_SLASH, - STATE(9094), 1, - sym_heredoc_body, - STATE(9130), 1, + STATE(8815), 1, aux_sym_regex_repeat1, - STATE(9372), 1, + STATE(9146), 1, + sym_heredoc_body, + STATE(9550), 1, sym_interpolation, - ACTIONS(11406), 2, + ACTIONS(11456), 2, aux_sym_regex_token1, sym_regex_character_class, - ACTIONS(11410), 2, + ACTIONS(11460), 2, sym_regex_escape_sequence, sym_regex_special_match, - [400147] = 4, + [402781] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9095), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11727), 1, + anon_sym_end, + STATE(9147), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10645), 1, + sym_else, + STATE(12054), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10875), 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, - [400168] = 4, + [402816] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9096), 1, + STATE(9148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5118), 8, + ACTIONS(10739), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690556,198 +695933,204 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400189] = 11, + [402837] = 11, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1399), 1, sym__regular_rescue_keyword, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(11066), 1, + ACTIONS(11118), 1, anon_sym_else, - ACTIONS(11682), 1, + ACTIONS(11729), 1, anon_sym_end, - STATE(8797), 1, + STATE(8811), 1, aux_sym_method_def_repeat1, - STATE(9097), 1, + STATE(9149), 1, sym_heredoc_body, - STATE(9675), 1, + STATE(9921), 1, sym_rescue_block, - STATE(10071), 1, + STATE(10163), 1, sym_else, - STATE(11060), 1, + STATE(11345), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [400224] = 10, + [402872] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11376), 1, - sym_identifier, - ACTIONS(11378), 1, - anon_sym_STAR, - ACTIONS(11382), 1, - anon_sym_STAR_STAR, - STATE(8564), 1, - aux_sym_param_repeat1, - STATE(9098), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11731), 1, + anon_sym_end, + STATE(8861), 1, + aux_sym_method_def_repeat1, + STATE(9150), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, + STATE(9921), 1, + sym_rescue_block, + STATE(10127), 1, + sym_else, + STATE(11844), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11384), 2, - sym_instance_var, - sym_class_var, - [400257] = 4, + [402907] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9099), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10797), 8, - sym__line_break, + ACTIONS(11308), 1, sym__modifier_if_keyword, + ACTIONS(11310), 1, sym__modifier_unless_keyword, + ACTIONS(11312), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(11314), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [400278] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9100), 1, + STATE(9151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10805), 8, + ACTIONS(10863), 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, - [400299] = 4, + [402936] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9101), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10815), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11733), 1, anon_sym_end, - [400320] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9102), 1, + STATE(9152), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10648), 1, + sym_else, + STATE(12061), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10819), 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, - [400341] = 4, + [402971] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9103), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11735), 1, + anon_sym_end, + STATE(9153), 1, sym_heredoc_body, + STATE(9161), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10650), 1, + sym_else, + STATE(12066), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 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, - [400362] = 4, + [403006] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9104), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11737), 1, + anon_sym_end, + STATE(9154), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10653), 1, + sym_else, + STATE(12072), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 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, - [400383] = 4, + [403041] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9105), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11739), 1, + anon_sym_end, + STATE(9155), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10655), 1, + sym_else, + STATE(12077), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 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, - [400404] = 4, + [403076] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9106), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11741), 1, + anon_sym_end, + STATE(9156), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10656), 1, + sym_else, + STATE(12082), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 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, - [400425] = 4, + [403111] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9107), 1, + STATE(9157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 8, + ACTIONS(10809), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690756,32 +696139,39 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400446] = 4, + [403132] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9108), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11743), 1, + anon_sym_end, + STATE(9158), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10410), 1, + sym_else, + STATE(11381), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 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, - [400467] = 4, + [403167] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9109), 1, + STATE(9159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10861), 8, + ACTIONS(10843), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690790,66 +696180,86 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400488] = 4, + [403188] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9110), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11745), 1, + anon_sym_end, + STATE(9160), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10670), 1, + sym_else, + STATE(12138), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10805), 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, - [400509] = 4, + [403223] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9111), 1, + ACTIONS(1399), 1, + sym__regular_rescue_keyword, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(11118), 1, + anon_sym_else, + ACTIONS(11747), 1, + anon_sym_end, + STATE(9161), 1, sym_heredoc_body, + STATE(9511), 1, + aux_sym_method_def_repeat1, + STATE(9921), 1, + sym_rescue_block, + STATE(10672), 1, + sym_else, + STATE(12144), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10815), 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, - [400530] = 4, + [403258] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9112), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11749), 1, + anon_sym_SLASH, + STATE(9162), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10819), 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, - [400551] = 4, + STATE(9167), 1, + aux_sym_regex_repeat1, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [403291] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9113), 1, + STATE(9163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 8, + ACTIONS(10851), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690858,15 +696268,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400572] = 4, + [403312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9114), 1, + STATE(9164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 8, + ACTIONS(10795), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690875,15 +696285,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400593] = 4, + [403333] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9115), 1, + STATE(9165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 8, + ACTIONS(10795), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690892,15 +696302,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400614] = 4, + [403354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9116), 1, + STATE(9166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 8, + ACTIONS(10807), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690909,32 +696319,61 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400635] = 4, + [403375] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9117), 1, + ACTIONS(11454), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11751), 1, + anon_sym_SLASH, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(9167), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10839), 8, - sym__line_break, + STATE(9550), 1, + sym_interpolation, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [403408] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10688), 1, sym__modifier_if_keyword, + ACTIONS(10690), 1, sym__modifier_unless_keyword, + ACTIONS(10692), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(10694), 1, sym__modifier_ensure_keyword, + ACTIONS(11753), 1, + anon_sym_RPAREN, + STATE(2138), 1, + sym__terminator, + STATE(9168), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, anon_sym_SEMI, - anon_sym_end, - [400656] = 4, + [403441] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9118), 1, + STATE(9169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 8, + ACTIONS(10943), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690943,15 +696382,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400677] = 4, + [403462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9119), 1, + STATE(9170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10861), 8, + ACTIONS(10989), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690960,32 +696399,34 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400698] = 4, + [403483] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9120), 1, + ACTIONS(11492), 1, + anon_sym_PIPE, + STATE(8946), 1, + aux_sym_union_type_repeat1, + STATE(9171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10927), 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, - [400719] = 4, + ACTIONS(4883), 6, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_do, + [403508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9121), 1, + STATE(9172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10929), 8, + ACTIONS(10739), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -690994,15 +696435,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400740] = 4, + [403529] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9122), 1, + STATE(9173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10933), 8, + ACTIONS(10745), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -691011,15 +696452,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400761] = 4, + [403550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9123), 1, + STATE(9174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10937), 8, + ACTIONS(10921), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -691028,15 +696469,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400782] = 4, + [403571] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9124), 1, + STATE(9175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10937), 8, + ACTIONS(10745), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -691045,107 +696486,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400803] = 10, + [403592] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - ACTIONS(11684), 1, - anon_sym_RPAREN, - STATE(2113), 1, - sym__terminator, - STATE(9125), 1, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, + anon_sym_STAR, + ACTIONS(11101), 1, + anon_sym_QMARK, + ACTIONS(11492), 1, + anon_sym_PIPE, + STATE(9171), 1, + aux_sym_union_type_repeat1, + STATE(9176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [400836] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3447), 1, + ACTIONS(4890), 2, sym__start_of_brace_block, - ACTIONS(11039), 1, anon_sym_do, - STATE(9126), 1, - sym_heredoc_body, - STATE(9390), 1, - sym_do_end_block, - STATE(9405), 1, - sym_brace_block, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5686), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [400865] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11686), 1, - anon_sym_end, - STATE(9127), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10050), 1, - sym_else, - STATE(12234), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [400900] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1399), 1, - sym__regular_rescue_keyword, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(11066), 1, - anon_sym_else, - ACTIONS(11688), 1, - anon_sym_end, - STATE(9128), 1, - sym_heredoc_body, - STATE(9476), 1, - aux_sym_method_def_repeat1, - STATE(9675), 1, - sym_rescue_block, - STATE(10074), 1, - sym_else, - STATE(11081), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [400935] = 4, + [403625] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9129), 1, + STATE(9177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10923), 8, + ACTIONS(10805), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -691154,37 +696526,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [400956] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11690), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11696), 1, - anon_sym_SLASH, - STATE(9372), 1, - sym_interpolation, - ACTIONS(11693), 2, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(11698), 2, - sym_regex_escape_sequence, - sym_regex_special_match, - STATE(9130), 2, - sym_heredoc_body, - aux_sym_regex_repeat1, - [400987] = 4, + [403646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9131), 1, + STATE(9178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10923), 8, + ACTIONS(10879), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -691193,89 +696543,55 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [401008] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11561), 1, - anon_sym_COLON_COLON, - STATE(9132), 1, - sym_heredoc_body, - STATE(9133), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4857), 6, - sym__line_break, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_end, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - [401033] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11561), 1, - anon_sym_COLON_COLON, - STATE(8984), 1, - aux_sym_constant_repeat1, - STATE(9133), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4840), 6, - sym__line_break, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_end, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - [401058] = 6, + [403667] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11561), 1, - anon_sym_COLON_COLON, - STATE(8918), 1, - aux_sym_constant_repeat1, - STATE(9134), 1, + STATE(9179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4840), 6, + ACTIONS(10883), 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_LPAREN, anon_sym_end, - anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - [401083] = 4, + [403688] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9135), 1, + ACTIONS(11093), 1, + anon_sym_LBRACK, + ACTIONS(11095), 1, + anon_sym_DOT, + ACTIONS(11097), 1, + anon_sym_STAR, + ACTIONS(11101), 1, + anon_sym_QMARK, + ACTIONS(11492), 1, + anon_sym_PIPE, + STATE(9171), 1, + aux_sym_union_type_repeat1, + STATE(9180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10813), 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, - [401104] = 4, + ACTIONS(4894), 2, + sym__start_of_brace_block, + anon_sym_do, + [403721] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9136), 1, + STATE(9181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10827), 8, + ACTIONS(10853), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -691284,15 +696600,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [401125] = 4, + [403742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9137), 1, + STATE(9182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10829), 8, + ACTIONS(10855), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -691301,38 +696617,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [401146] = 10, + [403763] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11404), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11701), 1, + ACTIONS(11755), 1, anon_sym_SLASH, - STATE(8858), 1, + STATE(8812), 1, aux_sym_regex_repeat1, - STATE(9138), 1, + STATE(9183), 1, sym_heredoc_body, - STATE(9372), 1, + STATE(9550), 1, sym_interpolation, - ACTIONS(11406), 2, + ACTIONS(11456), 2, aux_sym_regex_token1, sym_regex_character_class, - ACTIONS(11410), 2, + ACTIONS(11460), 2, sym_regex_escape_sequence, sym_regex_special_match, - [401179] = 4, + [403796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9139), 1, + STATE(9184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10775), 8, + ACTIONS(10921), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -691341,5205 +696657,4230 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [401200] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11707), 1, - sym__percent_literal_end, - STATE(9140), 1, - sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401230] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11713), 1, - sym__string_literal_end, - STATE(9141), 1, - sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401260] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11715), 1, - sym__string_literal_end, - STATE(9142), 1, - sym_heredoc_body, - STATE(9260), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401290] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11717), 1, - sym__string_literal_end, - STATE(9141), 1, - aux_sym_string_repeat1, - STATE(9143), 1, - sym_heredoc_body, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401320] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11719), 1, - sym__string_literal_end, - STATE(9144), 1, - sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401350] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11723), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11725), 1, - sym_heredoc_end, - STATE(9145), 1, - sym_heredoc_body, - STATE(9231), 1, - aux_sym_heredoc_body_repeat1, - STATE(9641), 1, - sym_interpolation, - ACTIONS(11721), 3, - sym_heredoc_content, - sym_ignored_backslash, - sym_string_escape_sequence, - [401380] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11729), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11733), 1, - anon_sym_BQUOTE2, - STATE(9146), 1, - sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, - sym_interpolation, - ACTIONS(11727), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [401412] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11735), 1, - sym__string_literal_end, - STATE(9147), 1, - sym_heredoc_body, - STATE(9148), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401442] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11737), 1, - sym__string_literal_end, - STATE(9148), 1, - sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401472] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11739), 1, - sym__percent_literal_end, - STATE(9149), 1, - sym_heredoc_body, - STATE(9261), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401502] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11741), 1, - sym__string_literal_end, - STATE(9150), 1, - sym_heredoc_body, - STATE(9179), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401532] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11743), 1, - sym__percent_literal_end, - STATE(9151), 1, - sym_heredoc_body, - STATE(9276), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401562] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11745), 1, - sym__string_literal_end, - STATE(9152), 1, - sym_heredoc_body, - STATE(9163), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401592] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11747), 1, - sym__percent_literal_end, - STATE(9153), 1, - sym_heredoc_body, - STATE(9165), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401622] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11749), 1, - sym__percent_literal_end, - STATE(9154), 1, - sym_heredoc_body, - STATE(9166), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401652] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11753), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(11757), 1, - sym__percent_literal_end, - STATE(9155), 1, - sym_heredoc_body, - STATE(9167), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, - sym_interpolation, - ACTIONS(11751), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [401684] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11759), 1, - sym__percent_literal_end, - STATE(9156), 1, - sym_heredoc_body, - STATE(9224), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401714] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11729), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11761), 1, - anon_sym_BQUOTE2, - STATE(9157), 1, - sym_heredoc_body, - STATE(9169), 1, - aux_sym_command_repeat1, - STATE(9523), 1, - sym_interpolation, - ACTIONS(11727), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [401746] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [403817] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11763), 1, - sym__percent_literal_end, - STATE(9158), 1, + STATE(9185), 1, sym_heredoc_body, - STATE(9180), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401776] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(5), 2, sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11765), 1, - sym__percent_literal_end, - STATE(9159), 1, - sym_heredoc_body, - STATE(9181), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401806] = 10, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(5110), 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, + [403838] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(11767), 1, - sym__percent_literal_end, - STATE(9160), 1, + STATE(9186), 1, sym_heredoc_body, - STATE(9285), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, - sym_interpolation, - ACTIONS(11751), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [401838] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(5), 2, sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11753), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(11769), 1, - sym__percent_literal_end, - STATE(9161), 1, - sym_heredoc_body, - STATE(9184), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, - sym_interpolation, - ACTIONS(11751), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [401870] = 10, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(5114), 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, + [403859] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11771), 1, - anon_sym_BQUOTE2, - STATE(9162), 1, - sym_heredoc_body, STATE(9187), 1, - aux_sym_command_repeat1, - STATE(9523), 1, - sym_interpolation, - ACTIONS(11727), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [401902] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11773), 1, - sym__string_literal_end, - STATE(9163), 1, - sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401932] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11775), 1, - sym__string_literal_end, - STATE(9164), 1, sym_heredoc_body, - STATE(9170), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401962] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11777), 1, - sym__percent_literal_end, - STATE(9165), 1, - sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [401992] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(5), 2, sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11705), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11779), 1, - sym__percent_literal_end, - STATE(9166), 1, - sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, - sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [402022] = 10, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11753), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(11781), 1, - sym__percent_literal_end, - STATE(9167), 1, - sym_heredoc_body, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, - sym_interpolation, - ACTIONS(11751), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [402054] = 9, + ACTIONS(5921), 8, + sym__start_of_brace_block, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_do, + [403880] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(11783), 1, - anon_sym_RPAREN, - ACTIONS(11785), 1, - anon_sym_STAR, - STATE(9168), 1, + STATE(9188), 1, sym_heredoc_body, - STATE(11975), 1, - sym_type_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10083), 2, - sym_constant, - sym_type_param_splat, - [402084] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11729), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11787), 1, - anon_sym_BQUOTE2, - STATE(9169), 1, - sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, - sym_interpolation, - ACTIONS(11727), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [402116] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11789), 1, - sym__string_literal_end, - STATE(9170), 1, - sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [402146] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10647), 1, + ACTIONS(5118), 8, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(10649), 1, sym__modifier_unless_keyword, - ACTIONS(10651), 1, sym__modifier_rescue_keyword, - ACTIONS(10653), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - STATE(2091), 1, - sym__terminator, - STATE(9171), 1, + anon_sym_SEMI, + anon_sym_end, + [403901] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1381), 2, + ACTIONS(10725), 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, - [402176] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11729), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11791), 1, - anon_sym_BQUOTE2, - STATE(9172), 1, - sym_heredoc_body, - STATE(9186), 1, - aux_sym_command_repeat1, - STATE(9523), 1, - sym_interpolation, - ACTIONS(11727), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [402208] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11793), 1, - sym__string_literal_end, - STATE(9173), 1, - sym_heredoc_body, - STATE(9230), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [402238] = 9, + anon_sym_end, + [403922] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11454), 1, anon_sym_POUND_LBRACE, - ACTIONS(11795), 1, - sym__percent_literal_end, - STATE(9174), 1, + ACTIONS(11757), 1, + anon_sym_SLASH, + STATE(8815), 1, + aux_sym_regex_repeat1, + STATE(9190), 1, sym_heredoc_body, - STATE(9232), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9550), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [402268] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(11797), 1, - sym_identifier, - ACTIONS(11799), 1, - anon_sym_RPAREN, - ACTIONS(11801), 1, - anon_sym_DOT_DOT_DOT, - STATE(9175), 1, - sym_heredoc_body, - STATE(10834), 1, - sym_fun_param, - STATE(11079), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [402300] = 8, + ACTIONS(11456), 2, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(11460), 2, + sym_regex_escape_sequence, + sym_regex_special_match, + [403955] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, + ACTIONS(11759), 1, sym_identifier, - ACTIONS(11805), 1, + ACTIONS(11761), 1, anon_sym_LPAREN, - ACTIONS(11807), 1, + ACTIONS(11763), 1, anon_sym_STAR, - ACTIONS(11809), 1, - anon_sym_PIPE, - STATE(9176), 1, + STATE(9191), 1, sym_heredoc_body, + STATE(11522), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10780), 3, + STATE(10472), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [402328] = 9, + [403983] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11811), 1, - sym__string_literal_end, - STATE(9177), 1, + ACTIONS(11769), 1, + sym__percent_literal_end, + STATE(9192), 1, sym_heredoc_body, - STATE(9178), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9273), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402358] = 9, + [404013] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11813), 1, - sym__string_literal_end, - STATE(9178), 1, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11771), 1, + sym__percent_literal_end, + STATE(9193), 1, sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402388] = 9, + [404043] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11815), 1, + ACTIONS(11777), 1, sym__string_literal_end, - STATE(9179), 1, + STATE(9194), 1, sym_heredoc_body, - STATE(9244), 1, + STATE(9258), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402418] = 9, + [404073] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11817), 1, - sym__percent_literal_end, - STATE(9180), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11785), 1, + anon_sym_BQUOTE2, + STATE(9195), 1, sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9324), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [402448] = 9, + [404105] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11819), 1, + ACTIONS(11787), 1, sym__percent_literal_end, - STATE(9181), 1, + STATE(9196), 1, sym_heredoc_body, - STATE(9251), 1, + STATE(9298), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402478] = 9, + [404135] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11821), 1, - sym__string_literal_end, - STATE(9182), 1, + ACTIONS(11789), 1, + sym__percent_literal_end, + STATE(9197), 1, sym_heredoc_body, - STATE(9217), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402508] = 9, + [404165] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11823), 1, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(11797), 1, sym__percent_literal_end, - STATE(9140), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9183), 1, + STATE(9198), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9240), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11791), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [402538] = 10, + sym_regex_escape_sequence, + [404197] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(11825), 1, + ACTIONS(11799), 1, sym__percent_literal_end, - STATE(9184), 1, + STATE(9199), 1, sym_heredoc_body, - STATE(9266), 1, + STATE(9295), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [402570] = 9, + [404229] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11827), 1, - sym__percent_literal_end, - STATE(9185), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11801), 1, + anon_sym_BQUOTE2, + STATE(9200), 1, sym_heredoc_body, - STATE(9240), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9324), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [402600] = 10, + [404261] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11829), 1, - anon_sym_BQUOTE2, - STATE(9186), 1, + ACTIONS(11803), 1, + sym__percent_literal_end, + STATE(9201), 1, sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402632] = 10, + [404291] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(11831), 1, + ACTIONS(11805), 1, anon_sym_BQUOTE2, - STATE(9187), 1, + STATE(9202), 1, sym_heredoc_body, - STATE(9365), 1, + STATE(9323), 1, aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [402664] = 9, + [404323] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11809), 1, anon_sym_POUND_LBRACE, - ACTIONS(11833), 1, - sym__percent_literal_end, - STATE(9188), 1, + ACTIONS(11811), 1, + sym_heredoc_end, + STATE(9203), 1, sym_heredoc_body, - STATE(9220), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9375), 1, + aux_sym_heredoc_body_repeat1, + STATE(9564), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11807), 3, + sym_heredoc_content, sym_ignored_backslash, sym_string_escape_sequence, - [402694] = 10, + [404353] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + STATE(2132), 1, + sym__terminator, + STATE(9204), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11306), 2, + sym__line_break, + anon_sym_SEMI, + [404383] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(11835), 1, + ACTIONS(11813), 1, sym__percent_literal_end, - STATE(9189), 1, + STATE(9205), 1, sym_heredoc_body, - STATE(9241), 1, + STATE(9387), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [402726] = 10, + [404415] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(11837), 1, + ACTIONS(11815), 1, sym__percent_literal_end, - STATE(9190), 1, + STATE(9206), 1, sym_heredoc_body, - STATE(9221), 1, + STATE(9240), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [402758] = 9, + [404447] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11839), 1, - sym__string_literal_end, - STATE(9191), 1, + ACTIONS(11817), 1, + sym__percent_literal_end, + STATE(9207), 1, sym_heredoc_body, - STATE(9192), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9337), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402788] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [404477] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11841), 1, - sym__string_literal_end, - STATE(9192), 1, + ACTIONS(3459), 1, + sym__start_of_brace_block, + ACTIONS(11103), 1, + anon_sym_do, + STATE(9208), 1, sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [402818] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(9481), 1, + sym_do_end_block, + STATE(9499), 1, + sym_brace_block, + ACTIONS(5), 2, sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11711), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11843), 1, - sym__string_literal_end, - STATE(9193), 1, - sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, - sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [402848] = 10, + sym_comment, + ACTIONS(5729), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [404505] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(11845), 1, + ACTIONS(11819), 1, anon_sym_BQUOTE2, - STATE(9194), 1, + STATE(9209), 1, sym_heredoc_body, - STATE(9228), 1, + STATE(9324), 1, aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [402880] = 10, + [404537] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11847), 1, - anon_sym_BQUOTE2, - STATE(9195), 1, + ACTIONS(11821), 1, + sym__percent_literal_end, + STATE(9201), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9210), 1, sym_heredoc_body, - STATE(9298), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402912] = 10, + [404567] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11849), 1, - anon_sym_BQUOTE2, - STATE(9196), 1, + ACTIONS(11823), 1, + sym__string_literal_end, + STATE(9211), 1, sym_heredoc_body, - STATE(9257), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9263), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11773), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402944] = 9, + [404597] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11851), 1, + ACTIONS(11825), 1, sym__percent_literal_end, - STATE(9197), 1, + STATE(9212), 1, sym_heredoc_body, - STATE(9251), 1, + STATE(9266), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [402974] = 9, + [404627] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11853), 1, - sym__string_literal_end, - STATE(9198), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11827), 1, + anon_sym_BQUOTE2, + STATE(9209), 1, + aux_sym_command_repeat1, + STATE(9213), 1, sym_heredoc_body, - STATE(9199), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [403004] = 9, + [404659] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9214), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6047), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [404679] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11855), 1, + ACTIONS(11829), 1, sym__string_literal_end, - STATE(9199), 1, + STATE(9215), 1, sym_heredoc_body, - STATE(9244), 1, + STATE(9218), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403034] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11857), 1, - anon_sym_STAR, - STATE(9200), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10705), 6, - anon_sym_AT_LBRACK, - anon_sym_AMP, - anon_sym_STAR_STAR, - sym_identifier, - sym_instance_var, - sym_class_var, - [403056] = 9, + [404709] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11859), 1, + ACTIONS(11831), 1, sym__percent_literal_end, - STATE(9201), 1, + STATE(9216), 1, sym_heredoc_body, - STATE(9251), 1, + STATE(9221), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403086] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [404739] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(11861), 1, - sym__percent_literal_end, - STATE(9202), 1, + STATE(9217), 1, sym_heredoc_body, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, - sym_interpolation, - ACTIONS(11751), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [403118] = 9, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6051), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [404759] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11863), 1, + ACTIONS(11833), 1, sym__string_literal_end, - STATE(9203), 1, + STATE(9218), 1, sym_heredoc_body, - STATE(9211), 1, + STATE(9258), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403148] = 9, + [404789] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11865), 1, + ACTIONS(11835), 1, sym__percent_literal_end, - STATE(9204), 1, + STATE(9219), 1, sym_heredoc_body, - STATE(9212), 1, + STATE(9268), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403178] = 9, + [404819] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9220), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5669), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [404839] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11867), 1, + ACTIONS(11837), 1, sym__percent_literal_end, - STATE(9205), 1, + STATE(9221), 1, sym_heredoc_body, - STATE(9213), 1, + STATE(9298), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403208] = 10, + [404869] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(11869), 1, + ACTIONS(11839), 1, sym__percent_literal_end, - STATE(9206), 1, + STATE(9222), 1, sym_heredoc_body, - STATE(9214), 1, + STATE(9269), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [403240] = 10, + [404901] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9223), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5951), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [404921] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9224), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5925), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [404941] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11871), 1, - anon_sym_BQUOTE2, - STATE(9207), 1, + ACTIONS(11841), 1, + sym__string_literal_end, + STATE(9225), 1, sym_heredoc_body, - STATE(9215), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11773), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403272] = 10, + [404971] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11873), 1, - anon_sym_BQUOTE2, - STATE(9208), 1, + ACTIONS(11843), 1, + sym__percent_literal_end, + STATE(9226), 1, sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403304] = 6, + [405001] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7997), 1, + STATE(9227), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5818), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, anon_sym_COMMA, - STATE(9209), 1, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [405021] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9228), 1, sym_heredoc_body, - STATE(9301), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5737), 5, + ACTIONS(5818), 7, sym__line_break, - sym__start_of_brace_block, + sym__start_of_index_operator, anon_sym_SEMI, - anon_sym_do, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, anon_sym_then, - [403328] = 4, + [405041] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9210), 1, + STATE(9229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6494), 7, - sym__start_of_brace_block, + ACTIONS(5822), 7, + sym__line_break, sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, - anon_sym_do, - [403348] = 9, + anon_sym_EQ, + anon_sym_then, + [405061] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11875), 1, + ACTIONS(11845), 1, sym__string_literal_end, - STATE(9211), 1, + STATE(9230), 1, sym_heredoc_body, - STATE(9244), 1, + STATE(9274), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403378] = 9, + [405091] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11877), 1, - sym__percent_literal_end, - STATE(9212), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11847), 1, + anon_sym_BQUOTE2, + STATE(9231), 1, sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9277), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [403408] = 9, + [405123] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11879), 1, + ACTIONS(11849), 1, sym__percent_literal_end, - STATE(9213), 1, + STATE(9232), 1, sym_heredoc_body, - STATE(9251), 1, + STATE(9275), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403438] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [405153] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(11881), 1, - sym__percent_literal_end, - STATE(9214), 1, + STATE(9233), 1, sym_heredoc_body, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, - sym_interpolation, - ACTIONS(11751), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [403470] = 10, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6021), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [405173] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11883), 1, - anon_sym_BQUOTE2, - STATE(9215), 1, + ACTIONS(11851), 1, + sym__percent_literal_end, + STATE(9234), 1, sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9284), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403502] = 5, + [405203] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11885), 1, - anon_sym_STAR, - STATE(9216), 1, + STATE(9235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10945), 6, - anon_sym_AT_LBRACK, - anon_sym_AMP, - anon_sym_STAR_STAR, - sym_identifier, - sym_instance_var, - sym_class_var, - [403524] = 9, + ACTIONS(6009), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [405223] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11887), 1, - sym__string_literal_end, - STATE(9217), 1, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(11853), 1, + sym__percent_literal_end, + STATE(9236), 1, sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9285), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, + ACTIONS(11791), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [403554] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3459), 1, - sym__start_of_brace_block, - ACTIONS(11330), 1, - anon_sym_do, - STATE(9218), 1, - sym_heredoc_body, - STATE(9554), 1, - sym_do_end_block, - STATE(9600), 1, - sym_brace_block, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5686), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [403582] = 9, + sym_regex_escape_sequence, + [405255] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11889), 1, + ACTIONS(11855), 1, sym__string_literal_end, - STATE(9219), 1, + STATE(9237), 1, sym_heredoc_body, - STATE(9244), 1, + STATE(9271), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403612] = 9, + [405285] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9238), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5943), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [405305] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11891), 1, + ACTIONS(11857), 1, sym__percent_literal_end, - STATE(9220), 1, + STATE(9239), 1, sym_heredoc_body, - STATE(9251), 1, + STATE(9279), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403642] = 10, + [405335] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11862), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11865), 1, sym__delimited_string_contents, - ACTIONS(11893), 1, + ACTIONS(11868), 1, sym__percent_literal_end, - STATE(9221), 1, - sym_heredoc_body, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11859), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [403674] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - ACTIONS(11895), 1, - anon_sym_PIPE, - STATE(9222), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10780), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [403702] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9223), 1, + STATE(9240), 2, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6510), 7, - sym__start_of_brace_block, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_do, - [403722] = 9, + aux_sym_regex_percent_literal_repeat1, + [405365] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11897), 1, + ACTIONS(11870), 1, sym__percent_literal_end, - STATE(9224), 1, + STATE(9241), 1, sym_heredoc_body, - STATE(9251), 1, + STATE(9280), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403752] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9225), 1, - sym_heredoc_body, - STATE(11882), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [403780] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9226), 1, - sym_heredoc_body, - STATE(11891), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [403808] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9227), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6534), 7, - sym__start_of_brace_block, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_do, - [403828] = 10, + [405395] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11899), 1, - anon_sym_BQUOTE2, - STATE(9228), 1, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(11872), 1, + sym__percent_literal_end, + STATE(9242), 1, sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9281), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11791), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [403860] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9229), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6538), 7, - sym__start_of_brace_block, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_do, - [403880] = 9, + sym_regex_escape_sequence, + [405427] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11901), 1, + ACTIONS(11874), 1, sym__string_literal_end, - STATE(9230), 1, + STATE(9243), 1, sym_heredoc_body, - STATE(9244), 1, + STATE(9245), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403910] = 8, + [405457] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11906), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11909), 1, - sym_heredoc_end, - STATE(9641), 1, - sym_interpolation, - STATE(9231), 2, + ACTIONS(11876), 1, + sym__percent_literal_end, + STATE(9244), 1, sym_heredoc_body, - aux_sym_heredoc_body_repeat1, - ACTIONS(11903), 3, - sym_heredoc_content, + STATE(9246), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403938] = 9, + [405487] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11911), 1, - sym__percent_literal_end, - STATE(9232), 1, + ACTIONS(11878), 1, + sym__string_literal_end, + STATE(9245), 1, sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403968] = 9, + [405517] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11913), 1, - sym__string_literal_end, - STATE(9233), 1, + ACTIONS(11880), 1, + sym__percent_literal_end, + STATE(9246), 1, sym_heredoc_body, - STATE(9243), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [403998] = 9, + [405547] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11915), 1, - sym__percent_literal_end, - STATE(9234), 1, - sym_heredoc_body, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11882), 1, + anon_sym_BQUOTE2, STATE(9247), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + sym_heredoc_body, + STATE(9297), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [404028] = 9, + [405579] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11917), 1, + ACTIONS(11884), 1, sym__string_literal_end, - STATE(9235), 1, + STATE(9248), 1, sym_heredoc_body, - STATE(9252), 1, + STATE(9254), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404058] = 9, + [405609] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11919), 1, + ACTIONS(11886), 1, sym__percent_literal_end, - STATE(9236), 1, + STATE(9249), 1, sym_heredoc_body, - STATE(9253), 1, + STATE(9255), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404088] = 9, + [405639] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11921), 1, + ACTIONS(11888), 1, sym__percent_literal_end, - STATE(9237), 1, + STATE(9250), 1, sym_heredoc_body, - STATE(9254), 1, + STATE(9256), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404118] = 10, + [405669] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(11923), 1, + ACTIONS(11890), 1, sym__percent_literal_end, - STATE(9238), 1, + STATE(9251), 1, sym_heredoc_body, - STATE(9255), 1, + STATE(9257), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [404150] = 10, + [405701] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(11925), 1, + ACTIONS(11892), 1, anon_sym_BQUOTE2, - STATE(9239), 1, + STATE(9252), 1, sym_heredoc_body, - STATE(9256), 1, + STATE(9262), 1, aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [404182] = 9, + [405733] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11927), 1, - sym__percent_literal_end, - STATE(9240), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11894), 1, + anon_sym_BQUOTE2, + STATE(9253), 1, sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9289), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [404212] = 10, + [405765] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(11929), 1, - sym__percent_literal_end, - STATE(9241), 1, + ACTIONS(11896), 1, + sym__string_literal_end, + STATE(9254), 1, sym_heredoc_body, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11773), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [404244] = 9, + sym_string_escape_sequence, + [405795] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11723), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11931), 1, - sym_heredoc_end, - STATE(9145), 1, - aux_sym_heredoc_body_repeat1, - STATE(9242), 1, + ACTIONS(11898), 1, + sym__percent_literal_end, + STATE(9255), 1, sym_heredoc_body, - STATE(9641), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11721), 3, - sym_heredoc_content, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404274] = 9, + [405825] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11933), 1, - sym__string_literal_end, - STATE(9243), 1, + ACTIONS(11900), 1, + sym__percent_literal_end, + STATE(9256), 1, sym_heredoc_body, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404304] = 8, + [405855] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11938), 1, + ACTIONS(11793), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(11902), 1, + sym__percent_literal_end, + STATE(9240), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9257), 1, + sym_heredoc_body, + STATE(9698), 1, + sym_interpolation, + ACTIONS(11791), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [405887] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11907), 1, anon_sym_POUND_LBRACE, - ACTIONS(11941), 1, + ACTIONS(11910), 1, sym__string_literal_end, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - STATE(9244), 2, + STATE(9258), 2, sym_heredoc_body, aux_sym_string_repeat1, - ACTIONS(11935), 3, + ACTIONS(11904), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404332] = 9, + [405915] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11809), 1, anon_sym_POUND_LBRACE, - ACTIONS(11943), 1, - sym__percent_literal_end, - STATE(9245), 1, + ACTIONS(11912), 1, + sym_heredoc_end, + STATE(9203), 1, + aux_sym_heredoc_body_repeat1, + STATE(9259), 1, sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9564), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11807), 3, + sym_heredoc_content, sym_ignored_backslash, sym_string_escape_sequence, - [404362] = 9, + [405945] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10602), 1, + ACTIONS(11759), 1, sym_identifier, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - STATE(9246), 1, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, + ACTIONS(11914), 1, + anon_sym_PIPE, + STATE(9260), 1, sym_heredoc_body, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - aux_sym_param_repeat1, - STATE(10805), 1, - sym_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10614), 2, - sym_instance_var, - sym_class_var, - [404392] = 9, + STATE(10870), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [405973] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11945), 1, - sym__percent_literal_end, - STATE(9247), 1, + ACTIONS(11916), 1, + sym__string_literal_end, + STATE(9261), 1, sym_heredoc_body, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9265), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404422] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11947), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(9248), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5934), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [404444] = 10, + [406003] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(11950), 1, + ACTIONS(11918), 1, anon_sym_BQUOTE2, - STATE(9208), 1, - aux_sym_command_repeat1, - STATE(9249), 1, + STATE(9262), 1, sym_heredoc_body, - STATE(9523), 1, + STATE(9324), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [404476] = 9, + [406035] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11952), 1, + ACTIONS(11920), 1, sym__string_literal_end, - STATE(9193), 1, + STATE(9258), 1, aux_sym_string_repeat1, - STATE(9250), 1, + STATE(9263), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404506] = 8, + [406065] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11957), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11960), 1, + ACTIONS(11922), 1, sym__percent_literal_end, - STATE(9606), 1, - sym_interpolation, - STATE(9251), 2, + STATE(9264), 1, sym_heredoc_body, + STATE(9270), 1, aux_sym_string_percent_literal_repeat1, - ACTIONS(11954), 3, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404534] = 9, + [406095] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11962), 1, + ACTIONS(11924), 1, sym__string_literal_end, - STATE(9244), 1, + STATE(9258), 1, aux_sym_string_repeat1, - STATE(9252), 1, + STATE(9265), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404564] = 9, + [406125] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11964), 1, + ACTIONS(11926), 1, sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9253), 1, + STATE(9266), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404594] = 9, + [406155] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9267), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5881), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [406175] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11966), 1, + ACTIONS(11928), 1, sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9254), 1, + STATE(9268), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404624] = 10, + [406205] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(11968), 1, + ACTIONS(11930), 1, sym__percent_literal_end, - STATE(9255), 1, - sym_heredoc_body, - STATE(9266), 1, + STATE(9240), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9269), 1, + sym_heredoc_body, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [404656] = 10, + [406237] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11970), 1, - anon_sym_BQUOTE2, - STATE(9256), 1, + ACTIONS(11932), 1, + sym__percent_literal_end, + STATE(9270), 1, sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404688] = 10, + [406267] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(11972), 1, - anon_sym_BQUOTE2, - STATE(9257), 1, + ACTIONS(11934), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9271), 1, sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11773), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404720] = 9, + [406297] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(11936), 1, + sym_identifier, + ACTIONS(11938), 1, + anon_sym_RPAREN, + ACTIONS(11940), 1, + anon_sym_DOT_DOT_DOT, + STATE(9272), 1, + sym_heredoc_body, + STATE(10854), 1, + sym_fun_param, + STATE(12069), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [406329] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11974), 1, + ACTIONS(11942), 1, sym__percent_literal_end, - STATE(9197), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9258), 1, + STATE(9273), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404750] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11980), 1, - anon_sym_EQ, - ACTIONS(11982), 1, - aux_sym_top_level_fun_def_token1, - STATE(9259), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11978), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(11976), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [404776] = 9, + [406359] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11984), 1, + ACTIONS(11944), 1, sym__string_literal_end, - STATE(9244), 1, + STATE(9258), 1, aux_sym_string_repeat1, - STATE(9260), 1, + STATE(9274), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404806] = 9, + [406389] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11986), 1, + ACTIONS(11946), 1, sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9261), 1, + STATE(9275), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [404836] = 4, + [406419] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9262), 1, + STATE(9276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4846), 7, + ACTIONS(5913), 7, sym__line_break, + sym__start_of_index_operator, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_end, + anon_sym_COMMA, + anon_sym_DOT, anon_sym_EQ, - aux_sym_top_level_fun_def_token1, - anon_sym_COLON_COLON, - [404856] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9263), 1, - sym_heredoc_body, - STATE(11805), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [404884] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11990), 1, - anon_sym_STAR, - STATE(9264), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11988), 6, - anon_sym_AT_LBRACK, - anon_sym_AMP, - anon_sym_STAR_STAR, - sym_identifier, - sym_instance_var, - sym_class_var, - [404906] = 9, + anon_sym_then, + [406439] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11992), 1, - sym__string_literal_end, - STATE(9265), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11948), 1, + anon_sym_BQUOTE2, + STATE(9277), 1, sym_heredoc_body, - STATE(9288), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9324), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [404936] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11997), 1, - anon_sym_POUND_LBRACE, - ACTIONS(12000), 1, - sym__delimited_string_contents, - ACTIONS(12003), 1, - sym__percent_literal_end, - STATE(9513), 1, - sym_interpolation, - ACTIONS(11994), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - STATE(9266), 2, - sym_heredoc_body, - aux_sym_regex_percent_literal_repeat1, - [404966] = 9, + [406471] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(12005), 1, - sym__percent_literal_end, - STATE(9267), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11950), 1, + anon_sym_BQUOTE2, + STATE(9278), 1, sym_heredoc_body, - STATE(9289), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9324), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [404996] = 9, + [406503] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12007), 1, + ACTIONS(11952), 1, sym__percent_literal_end, - STATE(9268), 1, + STATE(9279), 1, sym_heredoc_body, - STATE(9290), 1, + STATE(9298), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405026] = 9, + [406533] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12009), 1, + ACTIONS(11954), 1, sym__percent_literal_end, - STATE(9269), 1, + STATE(9280), 1, sym_heredoc_body, - STATE(9371), 1, + STATE(9298), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405056] = 10, + [406563] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(12011), 1, + ACTIONS(11956), 1, sym__percent_literal_end, - STATE(9270), 1, - sym_heredoc_body, - STATE(9291), 1, + STATE(9240), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9281), 1, + sym_heredoc_body, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [405088] = 9, + [406595] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12013), 1, + ACTIONS(11958), 1, sym__string_literal_end, - STATE(9271), 1, + STATE(9282), 1, sym_heredoc_body, - STATE(9327), 1, + STATE(9283), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405118] = 9, + [406625] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12015), 1, - sym__percent_literal_end, - STATE(9272), 1, + ACTIONS(11960), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9283), 1, sym_heredoc_body, - STATE(9330), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405148] = 9, + [406655] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12017), 1, + ACTIONS(11962), 1, sym__percent_literal_end, - STATE(9273), 1, + STATE(9284), 1, sym_heredoc_body, - STATE(9349), 1, + STATE(9298), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405178] = 10, + [406685] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(12019), 1, - anon_sym_BQUOTE2, - STATE(9274), 1, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(11964), 1, + sym__percent_literal_end, + STATE(9240), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9285), 1, sym_heredoc_body, - STATE(9292), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11791), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [405210] = 8, + sym_regex_escape_sequence, + [406717] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, + ACTIONS(11759), 1, sym_identifier, - ACTIONS(11805), 1, + ACTIONS(11761), 1, anon_sym_LPAREN, - ACTIONS(11807), 1, + ACTIONS(11763), 1, anon_sym_STAR, - STATE(9275), 1, + STATE(9286), 1, sym_heredoc_body, - STATE(10984), 1, + STATE(12028), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10295), 3, + STATE(10472), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [405238] = 9, + [406745] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8093), 1, + anon_sym_COMMA, + STATE(9287), 1, + sym_heredoc_body, + STATE(9369), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5856), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [406769] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(12021), 1, - sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9276), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11966), 1, + anon_sym_BQUOTE2, + STATE(9195), 1, + aux_sym_command_repeat1, + STATE(9288), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [405268] = 10, + [406801] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(12023), 1, - sym__percent_literal_end, - STATE(9277), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11968), 1, + anon_sym_BQUOTE2, + STATE(9289), 1, sym_heredoc_body, - STATE(9350), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + STATE(9324), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11779), 2, sym_ignored_backslash, - sym_regex_escape_sequence, - [405300] = 9, + sym_string_escape_sequence, + [406833] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9290), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5917), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [406853] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12025), 1, - sym__percent_literal_end, - STATE(9201), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9278), 1, + ACTIONS(11970), 1, + sym__string_literal_end, + STATE(9291), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9292), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405330] = 10, + [406883] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(12027), 1, - anon_sym_BQUOTE2, - STATE(9279), 1, + ACTIONS(11972), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9292), 1, sym_heredoc_body, - STATE(9353), 1, - aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11773), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405362] = 9, + [406913] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - STATE(2022), 1, - sym__terminator, - STATE(9280), 1, + ACTIONS(8093), 1, + anon_sym_COMMA, + STATE(9293), 1, sym_heredoc_body, + STATE(9325), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(5856), 5, sym__line_break, + sym__start_of_brace_block, anon_sym_SEMI, - [405392] = 6, + anon_sym_do, + anon_sym_then, + [406937] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7999), 1, - anon_sym_COMMA, - STATE(9281), 1, + ACTIONS(11974), 1, + anon_sym_STAR, + STATE(9294), 1, sym_heredoc_body, - STATE(9300), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [405416] = 9, + ACTIONS(10943), 6, + anon_sym_AT_LBRACK, + anon_sym_AMP, + anon_sym_STAR_STAR, + sym_identifier, + sym_instance_var, + sym_class_var, + [406959] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(12029), 1, - sym__string_literal_end, - STATE(9282), 1, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(11976), 1, + sym__percent_literal_end, + STATE(9240), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9295), 1, sym_heredoc_body, - STATE(9302), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11709), 3, - sym__delimited_string_contents, + ACTIONS(11791), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [406991] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(11936), 1, + sym_identifier, + ACTIONS(11978), 1, + anon_sym_RPAREN, + ACTIONS(11980), 1, + anon_sym_DOT_DOT_DOT, + STATE(9296), 1, + sym_heredoc_body, + STATE(10854), 1, + sym_fun_param, + STATE(12069), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [407023] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11781), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(11982), 1, + anon_sym_BQUOTE2, + STATE(9297), 1, + sym_heredoc_body, + STATE(9324), 1, + aux_sym_command_repeat1, + STATE(9620), 1, + sym_interpolation, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [405446] = 9, + [407055] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11987), 1, anon_sym_POUND_LBRACE, - ACTIONS(12031), 1, + ACTIONS(11990), 1, sym__percent_literal_end, - STATE(9283), 1, + STATE(9610), 1, + sym_interpolation, + STATE(9298), 2, sym_heredoc_body, - STATE(9303), 1, aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + ACTIONS(11984), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [407083] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(11992), 1, + anon_sym_RPAREN, + ACTIONS(11994), 1, + anon_sym_STAR, + STATE(9299), 1, + sym_heredoc_body, + STATE(11477), 1, + sym_type_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10422), 2, + sym_constant, + sym_type_param_splat, + [407113] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11996), 1, + sym__string_literal_end, + STATE(9300), 1, + sym_heredoc_body, + STATE(9301), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405476] = 9, + [407143] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12033), 1, - sym__percent_literal_end, - STATE(9284), 1, + ACTIONS(11998), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9301), 1, sym_heredoc_body, - STATE(9304), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405506] = 10, + [407173] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(12035), 1, + ACTIONS(12000), 1, sym__percent_literal_end, - STATE(9266), 1, + STATE(9240), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9285), 1, + STATE(9302), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [405538] = 10, + [407205] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9303), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6069), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [407225] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12004), 1, + anon_sym_STAR, + STATE(9304), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(12002), 6, + anon_sym_AT_LBRACK, + anon_sym_AMP, + anon_sym_STAR_STAR, + sym_identifier, + sym_instance_var, + sym_class_var, + [407247] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(12037), 1, - sym__percent_literal_end, - STATE(9286), 1, - sym_heredoc_body, + ACTIONS(12006), 1, + sym__string_literal_end, STATE(9305), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9513), 1, + sym_heredoc_body, + STATE(9306), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11773), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [405570] = 10, + sym_string_escape_sequence, + [407277] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(12039), 1, - sym__percent_literal_end, - STATE(9202), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9287), 1, + ACTIONS(12008), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9306), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11773), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [405602] = 9, + sym_string_escape_sequence, + [407307] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12041), 1, + ACTIONS(12010), 1, sym__string_literal_end, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9288), 1, + STATE(9307), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9317), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405632] = 9, + [407337] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12043), 1, + ACTIONS(12012), 1, sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9289), 1, + STATE(9308), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9318), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405662] = 9, + [407367] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12045), 1, + ACTIONS(12014), 1, sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9290), 1, + STATE(9309), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9319), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405692] = 10, + [407397] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(12047), 1, + ACTIONS(12016), 1, sym__percent_literal_end, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9291), 1, + STATE(9310), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9320), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [405724] = 10, + [407429] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(12049), 1, + ACTIONS(12018), 1, anon_sym_BQUOTE2, - STATE(9292), 1, + STATE(9311), 1, sym_heredoc_body, - STATE(9365), 1, + STATE(9321), 1, aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [405756] = 9, + [407461] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12051), 1, - sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9293), 1, + ACTIONS(12020), 1, + sym__string_literal_end, + STATE(9312), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9313), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405786] = 9, + [407491] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12053), 1, + ACTIONS(12022), 1, sym__string_literal_end, - STATE(9294), 1, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9313), 1, sym_heredoc_body, - STATE(9296), 1, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [407521] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8091), 1, + anon_sym_COMMA, + STATE(9293), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(9314), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5750), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [407545] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12024), 1, + sym__string_literal_end, + STATE(9315), 1, + sym_heredoc_body, + STATE(9316), 1, aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405816] = 9, + [407575] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12055), 1, - sym__percent_literal_end, - STATE(9295), 1, + ACTIONS(12026), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_heredoc_body, - STATE(9297), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405846] = 9, + [407605] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12057), 1, + ACTIONS(12028), 1, sym__string_literal_end, - STATE(9244), 1, + STATE(9258), 1, aux_sym_string_repeat1, - STATE(9296), 1, + STATE(9317), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405876] = 9, + [407635] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12059), 1, + ACTIONS(12030), 1, sym__percent_literal_end, - STATE(9251), 1, + STATE(9298), 1, aux_sym_string_percent_literal_repeat1, - STATE(9297), 1, + STATE(9318), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [405906] = 10, + [407665] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(12032), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9319), 1, + sym_heredoc_body, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [407695] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11793), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(12034), 1, + sym__percent_literal_end, + STATE(9240), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9320), 1, + sym_heredoc_body, + STATE(9698), 1, + sym_interpolation, + ACTIONS(11791), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [407727] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11781), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(12061), 1, + ACTIONS(12036), 1, anon_sym_BQUOTE2, - STATE(9298), 1, + STATE(9321), 1, sym_heredoc_body, - STATE(9365), 1, + STATE(9324), 1, aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [405938] = 10, + [407759] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9322), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6017), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [407779] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(12063), 1, + ACTIONS(12038), 1, anon_sym_BQUOTE2, - STATE(9299), 1, + STATE(9323), 1, sym_heredoc_body, - STATE(9306), 1, + STATE(9324), 1, aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [405970] = 6, + [407811] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12065), 1, - anon_sym_COMMA, - STATE(9248), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9300), 1, + ACTIONS(12043), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12046), 1, + aux_sym_command_token1, + ACTIONS(12049), 1, + anon_sym_BQUOTE2, + STATE(9620), 1, + sym_interpolation, + ACTIONS(12040), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + STATE(9324), 2, sym_heredoc_body, + aux_sym_command_repeat1, + [407841] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12051), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 5, + STATE(9325), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5970), 5, sym__line_break, sym__start_of_brace_block, anon_sym_SEMI, anon_sym_do, anon_sym_then, - [405994] = 6, + [407863] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7999), 1, - anon_sym_COMMA, - STATE(9248), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9301), 1, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + STATE(2117), 1, + sym__terminator, + STATE(9326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 5, + ACTIONS(1381), 2, sym__line_break, - sym__start_of_brace_block, anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [406018] = 9, + [407893] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12067), 1, + ACTIONS(12054), 1, sym__string_literal_end, - STATE(9244), 1, + STATE(9258), 1, aux_sym_string_repeat1, - STATE(9302), 1, + STATE(9327), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [407923] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12060), 1, + anon_sym_EQ, + ACTIONS(12062), 1, + aux_sym_top_level_fun_def_token1, + STATE(9328), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(12058), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(12056), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [407949] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12064), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9329), 1, + sym_heredoc_body, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [407979] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12066), 1, + sym__string_literal_end, + STATE(9330), 1, + sym_heredoc_body, + STATE(9338), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406048] = 9, + [408009] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12069), 1, + ACTIONS(12068), 1, sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9303), 1, + STATE(9331), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9339), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406078] = 9, + [408039] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12071), 1, + ACTIONS(12070), 1, sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9304), 1, + STATE(9332), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9340), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406108] = 10, + [408069] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(12073), 1, + ACTIONS(12072), 1, sym__percent_literal_end, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9305), 1, + STATE(9333), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9341), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [406140] = 10, + [408101] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(12075), 1, + ACTIONS(12074), 1, anon_sym_BQUOTE2, - STATE(9306), 1, + STATE(9334), 1, sym_heredoc_body, - STATE(9365), 1, + STATE(9343), 1, aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [406172] = 9, + [408133] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12077), 1, - sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9307), 1, + ACTIONS(12076), 1, + sym__string_literal_end, + STATE(9335), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9390), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406202] = 7, + [408163] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12083), 1, + ACTIONS(12082), 1, anon_sym_EQ, - ACTIONS(12085), 1, + ACTIONS(12084), 1, aux_sym_top_level_fun_def_token1, - STATE(9308), 1, + STATE(9336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12081), 2, + ACTIONS(12080), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(12079), 3, + ACTIONS(12078), 3, sym_identifier, sym_instance_var, sym_class_var, - [406228] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12087), 1, - anon_sym_DOT, - ACTIONS(12089), 1, - sym__start_of_index_operator, - STATE(9309), 1, - sym_heredoc_body, - STATE(9429), 1, - sym__implicit_index_operator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5878), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [406254] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9310), 1, - sym_heredoc_body, - STATE(11071), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, + [408189] = 9, + ACTIONS(3), 1, sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406282] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9311), 1, - sym_heredoc_body, - STATE(11074), 1, - sym_block_param_list, - ACTIONS(5), 2, + ACTIONS(5), 1, sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406310] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(12091), 1, - anon_sym_RPAREN, - ACTIONS(12093), 1, - anon_sym_COLON2, - STATE(9312), 1, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12086), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9337), 1, sym_heredoc_body, - STATE(9779), 1, - sym_asm_operand, - STATE(10108), 1, - sym_asm_operands, - STATE(12018), 1, - sym_string, - STATE(12024), 1, - sym__asm_inputs, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [406342] = 9, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [408219] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12095), 1, + ACTIONS(12088), 1, sym__string_literal_end, - STATE(9219), 1, + STATE(9258), 1, aux_sym_string_repeat1, - STATE(9313), 1, + STATE(9338), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406372] = 9, + [408249] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12097), 1, + ACTIONS(12090), 1, sym__percent_literal_end, - STATE(9251), 1, + STATE(9298), 1, aux_sym_string_percent_literal_repeat1, - STATE(9314), 1, + STATE(9339), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406402] = 10, + [408279] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(12099), 1, + ACTIONS(12092), 1, sym__percent_literal_end, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9315), 1, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9340), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [406434] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9316), 1, - sym_heredoc_body, - STATE(11136), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406462] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9317), 1, - sym_heredoc_body, - STATE(11139), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406490] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(11797), 1, - sym_identifier, - ACTIONS(12101), 1, - anon_sym_RPAREN, - ACTIONS(12103), 1, - anon_sym_DOT_DOT_DOT, - STATE(9318), 1, - sym_heredoc_body, - STATE(10834), 1, - sym_fun_param, - STATE(11079), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [406522] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10647), 1, - sym__modifier_if_keyword, - ACTIONS(10649), 1, - sym__modifier_unless_keyword, - ACTIONS(10651), 1, - sym__modifier_rescue_keyword, - ACTIONS(10653), 1, - sym__modifier_ensure_keyword, - STATE(2104), 1, - sym__terminator, - STATE(9319), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11195), 2, - sym__line_break, - anon_sym_SEMI, - [406552] = 10, + sym_string_escape_sequence, + [408309] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(12105), 1, + ACTIONS(12094), 1, sym__percent_literal_end, - STATE(9266), 1, + STATE(9240), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9320), 1, + STATE(9341), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [406584] = 9, + [408341] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12107), 1, - sym__string_literal_end, - STATE(9321), 1, + ACTIONS(12096), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9342), 1, sym_heredoc_body, - STATE(9331), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406614] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9322), 1, - sym_heredoc_body, - STATE(11181), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406642] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9323), 1, - sym_heredoc_body, - STATE(11184), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406670] = 9, + [408371] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(12109), 1, - sym__percent_literal_end, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(12098), 1, + anon_sym_BQUOTE2, STATE(9324), 1, + aux_sym_command_repeat1, + STATE(9343), 1, sym_heredoc_body, - STATE(9335), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9606), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [406700] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9325), 1, - sym_heredoc_body, - STATE(11224), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406728] = 8, + [408403] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, + ACTIONS(10652), 1, sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9326), 1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + STATE(9304), 1, + sym_annotation, + STATE(9344), 1, sym_heredoc_body, - STATE(11227), 1, - sym_block_param_list, + STATE(9462), 1, + aux_sym_param_repeat1, + STATE(10787), 1, + sym_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406756] = 9, + ACTIONS(10664), 2, + sym_instance_var, + sym_class_var, + [408433] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12111), 1, + ACTIONS(12100), 1, sym__string_literal_end, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9327), 1, + STATE(9345), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9360), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406786] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9328), 1, - sym_heredoc_body, - STATE(11266), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406814] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9329), 1, - sym_heredoc_body, - STATE(11269), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406842] = 9, + [408463] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12113), 1, + ACTIONS(12102), 1, sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9330), 1, + STATE(9346), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9361), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406872] = 9, + [408493] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12115), 1, - sym__string_literal_end, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9331), 1, + ACTIONS(12104), 1, + sym__percent_literal_end, + STATE(9347), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9362), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [406902] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9332), 1, - sym_heredoc_body, - STATE(11308), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406930] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9333), 1, - sym_heredoc_body, - STATE(11311), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [406958] = 10, + [408523] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(12117), 1, + ACTIONS(12106), 1, sym__percent_literal_end, - STATE(9266), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9334), 1, + STATE(9348), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9363), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [406990] = 9, + [408555] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(12119), 1, - sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9335), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(12108), 1, + anon_sym_BQUOTE2, + STATE(9349), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9365), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [407020] = 8, + [408587] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9336), 1, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12110), 1, + sym__string_literal_end, + STATE(9350), 1, sym_heredoc_body, - STATE(11350), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407048] = 8, + STATE(9378), 1, + aux_sym_string_repeat1, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [408617] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9337), 1, + ACTIONS(10688), 1, + sym__modifier_if_keyword, + ACTIONS(10690), 1, + sym__modifier_unless_keyword, + ACTIONS(10692), 1, + sym__modifier_rescue_keyword, + ACTIONS(10694), 1, + sym__modifier_ensure_keyword, + STATE(2051), 1, + sym__terminator, + STATE(9351), 1, sym_heredoc_body, - STATE(11353), 1, - sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407076] = 9, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [408647] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(12121), 1, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(12112), 1, sym__percent_literal_end, - STATE(9245), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9338), 1, + STATE(9302), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9352), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11791), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [407106] = 8, + sym_regex_escape_sequence, + [408679] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, + ACTIONS(11759), 1, sym_identifier, - ACTIONS(11805), 1, + ACTIONS(11761), 1, anon_sym_LPAREN, - ACTIONS(11807), 1, + ACTIONS(11763), 1, anon_sym_STAR, - STATE(9339), 1, + STATE(9353), 1, sym_heredoc_body, - STATE(11392), 1, + STATE(11867), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10295), 3, + STATE(10472), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [407134] = 8, + [408707] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, + ACTIONS(11759), 1, sym_identifier, - ACTIONS(11805), 1, + ACTIONS(11761), 1, anon_sym_LPAREN, - ACTIONS(11807), 1, + ACTIONS(11763), 1, anon_sym_STAR, - STATE(9340), 1, + STATE(9354), 1, sym_heredoc_body, - STATE(11395), 1, + STATE(11875), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10295), 3, + STATE(10472), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [407162] = 9, + [408735] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12123), 1, - sym__percent_literal_end, - STATE(9293), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9341), 1, + ACTIONS(12114), 1, + sym__string_literal_end, + STATE(9355), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9416), 1, + aux_sym_string_repeat1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [407192] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9342), 1, - sym_heredoc_body, - STATE(11434), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407220] = 8, + [408765] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9343), 1, - sym_heredoc_body, - STATE(11437), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407248] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9344), 1, + STATE(9356), 1, sym_heredoc_body, - STATE(11475), 1, - sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407276] = 8, + ACTIONS(6055), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [408785] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9345), 1, + STATE(9357), 1, sym_heredoc_body, - STATE(11478), 1, - sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407304] = 10, + ACTIONS(5796), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [408805] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(12125), 1, + ACTIONS(12116), 1, sym__percent_literal_end, - STATE(9334), 1, + STATE(9206), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9346), 1, + STATE(9358), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [407336] = 8, + [408837] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9347), 1, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12118), 1, + sym__percent_literal_end, + STATE(9359), 1, sym_heredoc_body, - STATE(11516), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9425), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [408867] = 9, + ACTIONS(3), 1, sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407364] = 8, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9348), 1, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12120), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9360), 1, sym_heredoc_body, - STATE(11519), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [408897] = 9, + ACTIONS(3), 1, sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407392] = 9, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12122), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9361), 1, + sym_heredoc_body, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [408927] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12127), 1, + ACTIONS(12124), 1, sym__percent_literal_end, - STATE(9251), 1, + STATE(9298), 1, aux_sym_string_percent_literal_repeat1, - STATE(9349), 1, + STATE(9362), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [407422] = 10, + [408957] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, + ACTIONS(11795), 1, sym__delimited_string_contents, - ACTIONS(12129), 1, + ACTIONS(12126), 1, sym__percent_literal_end, - STATE(9266), 1, + STATE(9240), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9350), 1, + STATE(9363), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9698), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11791), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [407454] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9351), 1, - sym_heredoc_body, - STATE(11557), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, + [408989] = 9, + ACTIONS(3), 1, sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407482] = 8, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9352), 1, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12128), 1, + sym__percent_literal_end, + STATE(9342), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9364), 1, sym_heredoc_body, - STATE(11560), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407510] = 10, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [409019] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, + ACTIONS(11783), 1, aux_sym_command_token1, - ACTIONS(12131), 1, + ACTIONS(12130), 1, anon_sym_BQUOTE2, - STATE(9353), 1, - sym_heredoc_body, - STATE(9365), 1, + STATE(9324), 1, aux_sym_command_repeat1, - STATE(9523), 1, + STATE(9365), 1, + sym_heredoc_body, + STATE(9620), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [407542] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9354), 1, - sym_heredoc_body, - STATE(11582), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407570] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9355), 1, - sym_heredoc_body, - STATE(11584), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407598] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9356), 1, - sym_heredoc_body, - STATE(11602), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407626] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, - STATE(9357), 1, - sym_heredoc_body, - STATE(11604), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10295), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [407654] = 9, + [409051] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11007), 1, + ACTIONS(11071), 1, anon_sym_LPAREN2, - ACTIONS(12133), 1, + ACTIONS(12132), 1, anon_sym_COMMA, - ACTIONS(12135), 1, + ACTIONS(12134), 1, anon_sym_then, - STATE(449), 1, + STATE(413), 1, sym__terminator, - STATE(9358), 1, + STATE(9366), 1, sym_heredoc_body, - STATE(9448), 1, + STATE(9529), 1, aux_sym_in_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - [407684] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(12137), 1, - anon_sym_RPAREN, - ACTIONS(12139), 1, - anon_sym_COLON2, - STATE(9359), 1, - sym_heredoc_body, - STATE(9779), 1, - sym_asm_operand, - STATE(10087), 1, - sym_asm_operands, - STATE(11971), 1, - sym__asm_clobbers, - STATE(12018), 1, - sym_string, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [407716] = 10, + [409081] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(12141), 1, - sym__percent_literal_end, - STATE(9315), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9360), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(12136), 1, + anon_sym_BQUOTE2, + STATE(9278), 1, + aux_sym_command_repeat1, + STATE(9367), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11779), 2, sym_ignored_backslash, - sym_regex_escape_sequence, - [407748] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + sym_string_escape_sequence, + [409113] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9368), 1, + sym_heredoc_body, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + ACTIONS(5806), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [409133] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(12143), 1, - anon_sym_BQUOTE2, - STATE(9361), 1, + ACTIONS(12138), 1, + anon_sym_COMMA, + STATE(9325), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(9369), 1, sym_heredoc_body, - STATE(9365), 1, - aux_sym_command_repeat1, - STATE(9523), 1, - sym_interpolation, - ACTIONS(11727), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [407780] = 9, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5888), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [409157] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12145), 1, - sym__string_literal_end, - STATE(9362), 1, + ACTIONS(12140), 1, + sym__percent_literal_end, + STATE(9370), 1, sym_heredoc_body, - STATE(9363), 1, - aux_sym_string_repeat1, - STATE(9519), 1, + STATE(9427), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [407810] = 9, + [409187] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12147), 1, - sym__string_literal_end, - STATE(9244), 1, - aux_sym_string_repeat1, - STATE(9363), 1, + ACTIONS(12142), 1, + sym__percent_literal_end, + STATE(9193), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9371), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [407840] = 10, + [409217] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(12149), 1, - anon_sym_BQUOTE2, - STATE(9361), 1, - aux_sym_command_repeat1, - STATE(9364), 1, + ACTIONS(12144), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9372), 1, sym_heredoc_body, - STATE(9523), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [407872] = 9, + [409247] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12154), 1, + ACTIONS(11793), 1, anon_sym_POUND_LBRACE, - ACTIONS(12157), 1, - aux_sym_command_token1, - ACTIONS(12160), 1, - anon_sym_BQUOTE2, - STATE(9523), 1, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(12146), 1, + sym__percent_literal_end, + STATE(9373), 1, + sym_heredoc_body, + STATE(9433), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9698), 1, sym_interpolation, - ACTIONS(12151), 2, + ACTIONS(11791), 2, sym_ignored_backslash, - sym_string_escape_sequence, - STATE(9365), 2, - sym_heredoc_body, - aux_sym_command_repeat1, - [407902] = 9, + sym_regex_escape_sequence, + [409279] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11711), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(12162), 1, + ACTIONS(12148), 1, sym__string_literal_end, - STATE(9144), 1, + STATE(9225), 1, aux_sym_string_repeat1, - STATE(9366), 1, + STATE(9374), 1, sym_heredoc_body, - STATE(9519), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11709), 3, + ACTIONS(11773), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [407932] = 9, + [409309] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(12153), 1, anon_sym_POUND_LBRACE, - ACTIONS(12164), 1, - sym__percent_literal_end, - STATE(9307), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9367), 1, - sym_heredoc_body, - STATE(9606), 1, + ACTIONS(12156), 1, + sym_heredoc_end, + STATE(9564), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + STATE(9375), 2, + sym_heredoc_body, + aux_sym_heredoc_body_repeat1, + ACTIONS(12150), 3, + sym_heredoc_content, sym_ignored_backslash, sym_string_escape_sequence, - [407962] = 9, + [409337] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(12166), 1, + ACTIONS(12158), 1, sym__percent_literal_end, - STATE(9314), 1, + STATE(9226), 1, aux_sym_string_percent_literal_repeat1, - STATE(9368), 1, + STATE(9376), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11703), 3, + ACTIONS(11765), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [407992] = 10, + [409367] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11767), 1, anon_sym_POUND_LBRACE, - ACTIONS(11755), 1, - sym__delimited_string_contents, - ACTIONS(12168), 1, + ACTIONS(12160), 1, sym__percent_literal_end, - STATE(9320), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9369), 1, + STATE(9372), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9377), 1, sym_heredoc_body, - STATE(9513), 1, + STATE(9610), 1, sym_interpolation, - ACTIONS(11751), 2, + ACTIONS(11765), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [408024] = 10, + sym_string_escape_sequence, + [409397] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11729), 1, + ACTIONS(11775), 1, anon_sym_POUND_LBRACE, - ACTIONS(11731), 1, - aux_sym_command_token1, - ACTIONS(12170), 1, - anon_sym_BQUOTE2, - STATE(9146), 1, - aux_sym_command_repeat1, - STATE(9370), 1, + ACTIONS(12162), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, + STATE(9378), 1, sym_heredoc_body, - STATE(9523), 1, + STATE(9586), 1, sym_interpolation, - ACTIONS(11727), 2, + ACTIONS(11773), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [408056] = 9, + [409427] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11781), 1, anon_sym_POUND_LBRACE, - ACTIONS(12172), 1, - sym__percent_literal_end, - STATE(9251), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9371), 1, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(12164), 1, + anon_sym_BQUOTE2, + STATE(9379), 1, sym_heredoc_body, - STATE(9606), 1, + STATE(9441), 1, + aux_sym_command_repeat1, + STATE(9620), 1, sym_interpolation, - ACTIONS(11703), 3, - sym__delimited_string_contents, + ACTIONS(11779), 2, sym_ignored_backslash, sym_string_escape_sequence, - [408086] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9372), 1, - sym_heredoc_body, - ACTIONS(12174), 3, - anon_sym_POUND_LBRACE, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(12176), 3, - anon_sym_SLASH, - sym_regex_escape_sequence, - sym_regex_special_match, - [408109] = 4, + [409459] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9373), 1, + STATE(9380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 6, + ACTIONS(5894), 7, sym__line_break, sym__start_of_index_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_EQ, anon_sym_then, - [408128] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10606), 1, - anon_sym_AT_LBRACK, - ACTIONS(11376), 1, - sym_identifier, - STATE(8564), 1, - aux_sym_param_repeat1, - STATE(9264), 1, - sym_annotation, - STATE(9374), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11384), 2, - sym_instance_var, - sym_class_var, - [408155] = 9, + [409479] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12178), 1, - anon_sym_end, - STATE(9375), 1, + STATE(9381), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11481), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408184] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5672), 1, + ACTIONS(6013), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9376), 1, - sym_heredoc_body, - STATE(10136), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5006), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_EQ, - [408209] = 9, + anon_sym_then, + [409499] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12182), 1, - anon_sym_end, - STATE(9377), 1, + STATE(9382), 1, sym_heredoc_body, - STATE(9437), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(12324), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408238] = 9, + ACTIONS(5947), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [409519] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12184), 1, - anon_sym_end, - STATE(9378), 1, + STATE(9383), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11985), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408267] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12186), 1, + ACTIONS(4840), 7, + sym__line_break, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_end, - STATE(9379), 1, - sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11489), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [408296] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12188), 1, - sym_identifier, - ACTIONS(12190), 1, - sym__constant_segment, - ACTIONS(12192), 1, + anon_sym_EQ, + aux_sym_top_level_fun_def_token1, anon_sym_COLON_COLON, - ACTIONS(12194), 1, - sym__string_literal_start, - STATE(9380), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(424), 2, - sym_string, - sym_constant, - [408323] = 4, + [409539] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9381), 1, + STATE(9384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 6, + ACTIONS(5810), 7, sym__line_break, sym__start_of_index_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_EQ, anon_sym_then, - [408342] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12196), 1, - anon_sym_end, - STATE(9382), 1, - sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10897), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [408371] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12198), 1, - anon_sym_end, - STATE(9383), 1, - sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11338), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, + [409559] = 9, + ACTIONS(3), 1, sym_comment, - [408400] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12200), 1, - anon_sym_end, - STATE(9384), 1, - sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10898), 1, - sym_else, - ACTIONS(5), 2, + ACTIONS(5), 1, sym__line_continuation, - sym_comment, - [408429] = 4, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12166), 1, + sym__string_literal_end, STATE(9385), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9419), 1, + aux_sym_string_repeat1, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [409589] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6427), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [408448] = 9, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12202), 1, - anon_sym_end, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12168), 1, + sym__percent_literal_end, STATE(9386), 1, sym_heredoc_body, - STATE(9401), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11931), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9420), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [409619] = 10, + ACTIONS(3), 1, sym_comment, - [408477] = 4, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11793), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(12170), 1, + sym__percent_literal_end, + STATE(9240), 1, + aux_sym_regex_percent_literal_repeat1, STATE(9387), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6443), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [408496] = 4, + STATE(9698), 1, + sym_interpolation, + ACTIONS(11791), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [409651] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9388), 1, sym_heredoc_body, + STATE(10940), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6273), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [408515] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [409679] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12204), 1, - anon_sym_end, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(12172), 1, + anon_sym_RPAREN, + ACTIONS(12174), 1, + anon_sym_COLON2, STATE(9389), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11363), 1, - sym_else, + STATE(10022), 1, + sym_asm_operand, + STATE(10687), 1, + sym_asm_operands, + STATE(12120), 1, + sym_string, + STATE(12121), 1, + sym__asm_inputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408544] = 4, + [409711] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12176), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, STATE(9390), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6431), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [408563] = 9, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [409741] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12206), 1, - anon_sym_end, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(12178), 1, + anon_sym_RPAREN, + ACTIONS(12180), 1, + anon_sym_COLON2, STATE(9391), 1, sym_heredoc_body, - STATE(9411), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11804), 1, - sym_else, + STATE(10022), 1, + sym_asm_operand, + STATE(10176), 1, + sym_asm_operands, + STATE(12098), 1, + sym__asm_clobbers, + STATE(12120), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408592] = 4, + [409773] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9392), 1, @@ -696547,49 +700888,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6047), 6, + ACTIONS(5977), 7, sym__line_break, sym__start_of_index_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_EQ, anon_sym_then, - [408611] = 9, + [409793] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12208), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9393), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11535), 1, - sym_else, + STATE(11118), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408640] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [409821] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9394), 1, sym_heredoc_body, + STATE(11121), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6043), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [408659] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [409849] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9395), 1, @@ -696597,222 +700944,234 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5710), 6, + ACTIONS(5987), 7, sym__line_break, sym__start_of_index_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_EQ, anon_sym_then, - [408678] = 9, + [409869] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12210), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9396), 1, sym_heredoc_body, - STATE(9480), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(12072), 1, - sym_else, + STATE(11183), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408707] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [409897] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12212), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9397), 1, sym_heredoc_body, - STATE(9425), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10918), 1, - sym_else, + STATE(11186), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408736] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [409925] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12214), 1, - anon_sym_end, STATE(9398), 1, sym_heredoc_body, - STATE(9477), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11963), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408765] = 9, + ACTIONS(5987), 7, + sym__line_break, + sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [409945] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12216), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9399), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(12327), 1, - sym_else, + STATE(11228), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408794] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [409973] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12218), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9400), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11993), 1, - sym_else, + STATE(11231), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408823] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410001] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12220), 1, - anon_sym_end, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12182), 1, + sym__percent_literal_end, STATE(9401), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11997), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [408852] = 4, + STATE(9421), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [410031] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9402), 1, sym_heredoc_body, + STATE(11271), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6451), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [408871] = 8, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410059] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(11785), 1, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, anon_sym_STAR, - ACTIONS(12222), 1, - anon_sym_RPAREN, STATE(9403), 1, sym_heredoc_body, + STATE(11274), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10721), 2, - sym_constant, - sym_type_param_splat, - [408898] = 8, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410087] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12190), 1, - sym__constant_segment, - ACTIONS(12192), 1, - anon_sym_COLON_COLON, - ACTIONS(12194), 1, - sym__string_literal_start, - ACTIONS(12224), 1, - sym_identifier, + ACTIONS(11793), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(12184), 1, + sym__percent_literal_end, STATE(9404), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(411), 2, - sym_string, - sym_constant, - [408925] = 4, + STATE(9422), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9698), 1, + sym_interpolation, + ACTIONS(11791), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [410119] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9405), 1, sym_heredoc_body, + STATE(11313), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6431), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [408944] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410147] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12226), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_case_repeat1, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9406), 1, sym_heredoc_body, - STATE(10051), 1, - sym_when, - STATE(11155), 1, - sym_else, + STATE(11316), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408973] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410175] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9407), 1, @@ -696820,49 +701179,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6257), 6, + ACTIONS(5991), 7, sym__line_break, sym__start_of_index_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_EQ, anon_sym_then, - [408992] = 9, + [410195] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12228), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9408), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(12326), 1, - sym_else, + STATE(11355), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409021] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410223] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9409), 1, sym_heredoc_body, + STATE(11358), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6157), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409040] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410251] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9410), 1, @@ -696870,664 +701235,753 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6059), 6, + ACTIONS(6025), 7, sym__line_break, sym__start_of_index_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_EQ, anon_sym_then, - [409059] = 9, + [410271] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12230), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9411), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11285), 1, - sym_else, + STATE(11397), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409088] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410299] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9412), 1, sym_heredoc_body, + STATE(11400), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6383), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409107] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410327] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9413), 1, sym_heredoc_body, + STATE(11439), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409126] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410355] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12232), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9414), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11222), 1, - sym_else, + STATE(11442), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409155] = 6, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410383] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11781), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(12186), 1, + anon_sym_BQUOTE2, STATE(9415), 1, sym_heredoc_body, - ACTIONS(12234), 3, - anon_sym_POUND_LBRACE, - aux_sym_regex_token1, - sym_regex_character_class, - ACTIONS(12236), 3, - anon_sym_SLASH, - sym_regex_escape_sequence, - sym_regex_special_match, - [409178] = 4, + STATE(9426), 1, + aux_sym_command_repeat1, + STATE(9620), 1, + sym_interpolation, + ACTIONS(11779), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + [410415] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12188), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, STATE(9416), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6387), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409197] = 4, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [410445] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9417), 1, sym_heredoc_body, + STATE(11481), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6364), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409216] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410473] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12238), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9418), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11763), 1, - sym_else, + STATE(11484), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409245] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410501] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12240), 1, - anon_sym_end, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12190), 1, + sym__string_literal_end, + STATE(9258), 1, + aux_sym_string_repeat1, STATE(9419), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11765), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [410531] = 9, + ACTIONS(3), 1, sym_comment, - [409274] = 9, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12242), 1, - anon_sym_end, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12192), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, STATE(9420), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11446), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [410561] = 9, + ACTIONS(3), 1, sym_comment, - [409303] = 4, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12194), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, STATE(9421), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [410591] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409322] = 4, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11793), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(12196), 1, + sym__percent_literal_end, + STATE(9240), 1, + aux_sym_regex_percent_literal_repeat1, STATE(9422), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9698), 1, + sym_interpolation, + ACTIONS(11791), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [410623] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409341] = 9, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12244), 1, - anon_sym_end, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12198), 1, + sym__percent_literal_end, + STATE(9329), 1, + aux_sym_string_percent_literal_repeat1, STATE(9423), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(12311), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [409370] = 9, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [410653] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12246), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9424), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(12054), 1, - sym_else, + STATE(11525), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409399] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410681] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12248), 1, - anon_sym_end, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12200), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, STATE(9425), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10927), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [410711] = 10, + ACTIONS(3), 1, sym_comment, - [409428] = 9, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12250), 1, - anon_sym_end, + ACTIONS(11781), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(12202), 1, + anon_sym_BQUOTE2, + STATE(9324), 1, + aux_sym_command_repeat1, STATE(9426), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11272), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9620), 1, + sym_interpolation, + ACTIONS(11779), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + [410743] = 9, + ACTIONS(3), 1, sym_comment, - [409457] = 4, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12204), 1, + sym__percent_literal_end, + STATE(9298), 1, + aux_sym_string_percent_literal_repeat1, STATE(9427), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6399), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409476] = 9, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [410773] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12252), 1, - anon_sym_end, - STATE(9419), 1, - aux_sym_case_repeat1, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9428), 1, sym_heredoc_body, - STATE(10051), 1, - sym_when, - STATE(11666), 1, - sym_else, + STATE(11563), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409505] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410801] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9429), 1, sym_heredoc_body, + STATE(11566), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409524] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410829] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12254), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, + ACTIONS(12206), 1, + anon_sym_PIPE, STATE(9430), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11812), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409553] = 4, + STATE(10870), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410857] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9431), 1, sym_heredoc_body, + STATE(11604), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6277), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409572] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410885] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12256), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9432), 1, sym_heredoc_body, - STATE(9454), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11177), 1, - sym_else, + STATE(11607), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409601] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410913] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12258), 1, - anon_sym_end, + ACTIONS(11793), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(12208), 1, + sym__percent_literal_end, + STATE(9240), 1, + aux_sym_regex_percent_literal_repeat1, STATE(9433), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11223), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [409630] = 5, + STATE(9698), 1, + sym_interpolation, + ACTIONS(11791), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [410945] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12260), 1, - anon_sym_COMMA, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, + STATE(9434), 1, + sym_heredoc_body, + STATE(11629), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9434), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5934), 4, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - [409651] = 8, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [410973] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12263), 1, + ACTIONS(11759), 1, sym_identifier, - ACTIONS(12265), 1, - sym__constant_segment, - ACTIONS(12267), 1, - anon_sym_COLON_COLON, - ACTIONS(12269), 1, - sym__string_literal_start, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9435), 1, sym_heredoc_body, + STATE(11631), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9557), 2, - sym_string, - sym_constant, - [409678] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [411001] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12210), 1, + sym__string_literal_end, + STATE(9194), 1, + aux_sym_string_repeat1, STATE(9436), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5934), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [409697] = 9, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [411031] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12271), 1, - anon_sym_end, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9437), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11203), 1, - sym_else, + STATE(11648), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409726] = 4, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [411059] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9438), 1, sym_heredoc_body, + STATE(11650), 1, + sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6223), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [409745] = 9, + STATE(10472), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [411087] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12273), 1, - anon_sym_end, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12212), 1, + sym__percent_literal_end, + STATE(9196), 1, + aux_sym_string_percent_literal_repeat1, STATE(9439), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11176), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [409774] = 8, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [411117] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12133), 1, - anon_sym_COMMA, - ACTIONS(12275), 1, - anon_sym_then, - STATE(366), 1, - sym__terminator, + ACTIONS(12214), 1, + anon_sym_STAR, STATE(9440), 1, sym_heredoc_body, - STATE(9625), 1, - aux_sym_in_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [409801] = 9, + ACTIONS(10839), 6, + anon_sym_AT_LBRACK, + anon_sym_AMP, + anon_sym_STAR_STAR, + sym_identifier, + sym_instance_var, + sym_class_var, + [411139] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12277), 1, - anon_sym_end, + ACTIONS(11781), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(12216), 1, + anon_sym_BQUOTE2, + STATE(9324), 1, + aux_sym_command_repeat1, STATE(9441), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(10965), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [409830] = 8, + STATE(9620), 1, + sym_interpolation, + ACTIONS(11779), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + [411171] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8187), 1, - anon_sym_COMMA, - ACTIONS(12279), 1, - anon_sym_then, - STATE(361), 1, - sym__terminator, STATE(9442), 1, sym_heredoc_body, - STATE(9543), 1, - aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(5850), 7, sym__line_break, + sym__start_of_index_operator, anon_sym_SEMI, - [409857] = 7, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_then, + [411191] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(12281), 1, - anon_sym_DASH_GT, + ACTIONS(11767), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12218), 1, + sym__percent_literal_end, + STATE(9197), 1, + aux_sym_string_percent_literal_repeat1, STATE(9443), 1, sym_heredoc_body, - STATE(10345), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9610), 1, + sym_interpolation, + ACTIONS(11765), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [411221] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [409882] = 8, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8187), 1, - anon_sym_COMMA, - ACTIONS(12283), 1, - anon_sym_then, - STATE(325), 1, - sym__terminator, + ACTIONS(11793), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11795), 1, + sym__delimited_string_contents, + ACTIONS(12220), 1, + sym__percent_literal_end, + STATE(9198), 1, + aux_sym_regex_percent_literal_repeat1, STATE(9444), 1, sym_heredoc_body, - STATE(9543), 1, - aux_sym_when_repeat1, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9698), 1, + sym_interpolation, + ACTIONS(11791), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [411253] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [409909] = 8, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12133), 1, - anon_sym_COMMA, - ACTIONS(12135), 1, - anon_sym_then, - STATE(449), 1, - sym__terminator, - STATE(9440), 1, - aux_sym_in_repeat1, + ACTIONS(11775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(12222), 1, + sym__string_literal_end, + STATE(9327), 1, + aux_sym_string_repeat1, STATE(9445), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9586), 1, + sym_interpolation, + ACTIONS(11773), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [411283] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [409936] = 8, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(11785), 1, - anon_sym_STAR, - ACTIONS(12285), 1, - anon_sym_RPAREN, + ACTIONS(11781), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11783), 1, + aux_sym_command_token1, + ACTIONS(12224), 1, + anon_sym_BQUOTE2, + STATE(9200), 1, + aux_sym_command_repeat1, STATE(9446), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10721), 2, - sym_constant, - sym_type_param_splat, - [409963] = 4, + STATE(9620), 1, + sym_interpolation, + ACTIONS(11779), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + [411315] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9447), 1, @@ -697535,317 +701989,310 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6229), 6, + ACTIONS(5862), 7, sym__line_break, sym__start_of_index_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT, + anon_sym_EQ, anon_sym_then, - [409982] = 8, + [411335] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12133), 1, - anon_sym_COMMA, - ACTIONS(12287), 1, - anon_sym_then, - STATE(368), 1, - sym__terminator, + ACTIONS(11665), 1, + anon_sym_DOT, + ACTIONS(11669), 1, + sym__start_of_index_operator, + STATE(9233), 1, + sym__implicit_index_operator, STATE(9448), 1, sym_heredoc_body, - STATE(9625), 1, - aux_sym_in_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, + ACTIONS(5719), 4, sym__line_break, anon_sym_SEMI, - [410009] = 9, + anon_sym_COMMA, + anon_sym_then, + [411361] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12289), 1, - anon_sym_end, STATE(9449), 1, sym_heredoc_body, - STATE(9475), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11423), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410038] = 6, + ACTIONS(5951), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [411380] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12295), 1, - aux_sym_top_level_fun_def_token1, - STATE(9450), 1, - sym_heredoc_body, + ACTIONS(12226), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12293), 2, + STATE(9450), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5970), 4, + sym__start_of_brace_block, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(12291), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [410061] = 9, + anon_sym_RBRACE, + anon_sym_do, + [411401] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12297), 1, + ACTIONS(12229), 1, anon_sym_end, STATE(9451), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9596), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(11274), 1, + STATE(11727), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410090] = 9, + [411430] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12299), 1, - anon_sym_RPAREN, - ACTIONS(12301), 1, - anon_sym_COLON2, - ACTIONS(12303), 1, - sym__string_literal_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12231), 1, + anon_sym_end, STATE(9452), 1, sym_heredoc_body, - STATE(9869), 1, - sym_string, - STATE(10411), 1, - sym_asm_clobbers, - STATE(11480), 1, - sym__asm_options, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12338), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410119] = 9, + [411459] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12305), 1, + ACTIONS(12233), 1, anon_sym_end, STATE(9453), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9596), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(11729), 1, + STATE(11346), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410148] = 9, + [411488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12307), 1, - anon_sym_end, STATE(9454), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11745), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410177] = 9, + ACTIONS(6021), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [411507] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12309), 1, - anon_sym_end, + ACTIONS(8190), 1, + anon_sym_COMMA, + ACTIONS(8222), 1, + anon_sym_then, + STATE(358), 1, + sym__terminator, STATE(9455), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11792), 1, - sym_else, + STATE(9497), 1, + aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410206] = 9, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [411534] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12311), 1, + ACTIONS(12235), 1, anon_sym_end, STATE(9456), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9534), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(11153), 1, + STATE(11096), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410235] = 4, + [411563] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12237), 1, + anon_sym_end, STATE(9457), 1, sym_heredoc_body, + STATE(9530), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12023), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6383), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [410254] = 4, + [411592] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12239), 1, + anon_sym_end, STATE(9458), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11048), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6285), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [410273] = 9, + [411621] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12313), 1, + ACTIONS(12241), 1, anon_sym_end, - STATE(9433), 1, - aux_sym_case_repeat1, STATE(9459), 1, sym_heredoc_body, - STATE(10051), 1, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, sym_when, - STATE(11150), 1, + STATE(11344), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410302] = 8, + [411650] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12190), 1, - sym__constant_segment, - ACTIONS(12192), 1, - anon_sym_COLON_COLON, - ACTIONS(12194), 1, - sym__string_literal_start, - ACTIONS(12315), 1, - sym_identifier, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12243), 1, + anon_sym_end, STATE(9460), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11732), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(388), 2, - sym_string, - sym_constant, - [410329] = 9, + [411679] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12317), 1, - anon_sym_end, STATE(9461), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11410), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410358] = 7, + ACTIONS(5970), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [411698] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12321), 1, - anon_sym_LPAREN, - ACTIONS(12323), 1, - anon_sym_EQ, - ACTIONS(12325), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(10656), 1, + anon_sym_AT_LBRACK, + ACTIONS(11386), 1, + sym_identifier, + STATE(8681), 1, + aux_sym_param_repeat1, + STATE(9304), 1, + sym_annotation, STATE(9462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12319), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [410383] = 9, + ACTIONS(11394), 2, + sym_instance_var, + sym_class_var, + [411725] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12327), 1, - anon_sym_end, + ACTIONS(12249), 1, + aux_sym_top_level_fun_def_token1, STATE(9463), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(12175), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410412] = 4, + ACTIONS(12247), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(12245), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [411748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9464), 1, @@ -697853,612 +702300,653 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6243), 6, - sym__line_break, + ACTIONS(6009), 6, sym__start_of_index_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT, - anon_sym_then, - [410431] = 4, + anon_sym_EQ, + [411767] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12251), 1, + anon_sym_end, STATE(9465), 1, sym_heredoc_body, + STATE(9479), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11710), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6269), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [410450] = 8, + [411796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8187), 1, - anon_sym_COMMA, - ACTIONS(8219), 1, - anon_sym_then, - STATE(347), 1, - sym__terminator, - STATE(9444), 1, - aux_sym_when_repeat1, STATE(9466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8185), 2, - sym__line_break, - anon_sym_SEMI, - [410477] = 7, + ACTIONS(5943), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [411815] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(11805), 1, - anon_sym_LPAREN, - ACTIONS(11807), 1, - anon_sym_STAR, + ACTIONS(12253), 1, + anon_sym_DOT, + ACTIONS(12255), 1, + anon_sym_EQ, + ACTIONS(12257), 1, + sym__start_of_index_operator, + STATE(9454), 1, + sym__implicit_index_operator, STATE(9467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10780), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [410502] = 9, + ACTIONS(5719), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [411842] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12329), 1, + ACTIONS(12259), 1, anon_sym_end, STATE(9468), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9596), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(12048), 1, + STATE(11984), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410531] = 9, + [411871] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12331), 1, + ACTIONS(12261), 1, anon_sym_end, - STATE(9384), 1, - aux_sym_case_repeat1, STATE(9469), 1, sym_heredoc_body, - STATE(10051), 1, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, sym_when, - STATE(12156), 1, + STATE(11993), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410560] = 9, + [411900] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12333), 1, + ACTIONS(12263), 1, anon_sym_end, - STATE(9389), 1, - aux_sym_case_repeat1, STATE(9470), 1, sym_heredoc_body, - STATE(10051), 1, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, sym_when, - STATE(11151), 1, + STATE(11426), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410589] = 9, + [411929] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12335), 1, + ACTIONS(12265), 1, anon_sym_end, STATE(9471), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9596), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(12015), 1, + STATE(12013), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410618] = 4, + [411958] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12267), 1, + anon_sym_RPAREN, + ACTIONS(12269), 1, + anon_sym_COLON2, + ACTIONS(12271), 1, + sym__string_literal_start, STATE(9472), 1, sym_heredoc_body, + STATE(9863), 1, + sym_string, + STATE(10232), 1, + sym_asm_clobbers, + STATE(10990), 1, + sym__asm_options, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6395), 6, - sym__line_break, - sym__start_of_index_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_then, - [410637] = 9, + [411987] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12337), 1, - anon_sym_end, STATE(9473), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11450), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410666] = 9, + ACTIONS(5850), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412006] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12339), 1, - anon_sym_end, + ACTIONS(12273), 1, + sym_identifier, + ACTIONS(12275), 1, + sym__constant_segment, + ACTIONS(12277), 1, + anon_sym_COLON_COLON, + ACTIONS(12279), 1, + sym__string_literal_start, STATE(9474), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11483), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410695] = 9, + STATE(383), 2, + sym_string, + sym_constant, + [412033] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12341), 1, + ACTIONS(12281), 1, anon_sym_end, STATE(9475), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9596), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(11487), 1, + STATE(11368), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410724] = 6, + [412062] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12345), 1, - sym__regular_rescue_keyword, - STATE(9675), 1, - sym_rescue_block, + STATE(9476), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9476), 2, - sym_heredoc_body, - aux_sym_method_def_repeat1, - ACTIONS(12343), 3, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [410747] = 9, + ACTIONS(5977), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412081] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12348), 1, + ACTIONS(12283), 1, anon_sym_end, STATE(9477), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9596), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(12050), 1, + STATE(11872), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410776] = 6, + [412110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12354), 1, - aux_sym_top_level_fun_def_token1, STATE(9478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12352), 2, + ACTIONS(5925), 6, + sym__start_of_index_operator, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(12350), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [410799] = 9, + anon_sym_DOT, + anon_sym_EQ, + [412129] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12356), 1, + ACTIONS(12285), 1, anon_sym_end, STATE(9479), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9596), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(11099), 1, + STATE(11873), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410828] = 9, + [412158] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12358), 1, - anon_sym_end, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(11994), 1, + anon_sym_STAR, + ACTIONS(12287), 1, + anon_sym_RPAREN, STATE(9480), 1, sym_heredoc_body, - STATE(9494), 1, - aux_sym_case_repeat1, - STATE(10051), 1, - sym_when, - STATE(11100), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410857] = 9, + STATE(10891), 2, + sym_constant, + sym_type_param_splat, + [412185] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(7582), 1, - anon_sym_when, - ACTIONS(12360), 1, - anon_sym_end, - STATE(9399), 1, - aux_sym_case_repeat1, STATE(9481), 1, sym_heredoc_body, - STATE(10051), 1, - sym_when, - STATE(12229), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410886] = 9, + ACTIONS(5987), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412204] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(7582), 1, + ACTIONS(7611), 1, anon_sym_when, - ACTIONS(12362), 1, + ACTIONS(12289), 1, anon_sym_end, STATE(9482), 1, sym_heredoc_body, - STATE(9494), 1, + STATE(9596), 1, aux_sym_case_repeat1, - STATE(10051), 1, + STATE(10742), 1, sym_when, - STATE(11197), 1, + STATE(11403), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410915] = 7, + [412233] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12366), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12291), 1, anon_sym_end, + STATE(9469), 1, + aux_sym_case_repeat1, STATE(9483), 1, sym_heredoc_body, - STATE(9530), 1, - aux_sym_annotation_def_repeat1, - STATE(10093), 1, - sym__terminator, + STATE(10742), 1, + sym_when, + STATE(11840), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12364), 2, - sym__line_break, - anon_sym_SEMI, - [410939] = 7, + [412262] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12368), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12293), 1, anon_sym_end, STATE(9484), 1, sym_heredoc_body, - STATE(9638), 1, - aux_sym_annotation_def_repeat1, - STATE(10093), 1, - sym__terminator, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11369), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12364), 2, - sym__line_break, - anon_sym_SEMI, - [410963] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [412291] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12372), 1, - anon_sym_DQUOTE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12295), 1, + anon_sym_end, STATE(9485), 1, sym_heredoc_body, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [410987] = 8, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11578), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [412320] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7280), 1, + ACTIONS(12275), 1, sym__constant_segment, - ACTIONS(7282), 1, + ACTIONS(12277), 1, anon_sym_COLON_COLON, - ACTIONS(12374), 1, - sym_self, - STATE(7993), 1, - sym_constant, - STATE(8064), 1, - sym_generic_instance_type, + ACTIONS(12279), 1, + sym__string_literal_start, + ACTIONS(12297), 1, + sym_identifier, STATE(9486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411013] = 6, + STATE(412), 2, + sym_string, + sym_constant, + [412347] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12378), 1, - anon_sym_RPAREN, - ACTIONS(12380), 1, - aux_sym_proc_token1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12299), 1, + anon_sym_end, STATE(9487), 1, sym_heredoc_body, + STATE(9520), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12073), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12376), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [411035] = 5, + [412376] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12385), 1, - sym__delimited_array_element_end, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(9488), 2, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12301), 1, + anon_sym_end, + STATE(9488), 1, sym_heredoc_body, - aux_sym_percent_literal_array_word_repeat1, - ACTIONS(12382), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - aux_sym_percent_literal_array_word_token1, - [411055] = 7, + STATE(9523), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12084), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [412405] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12387), 1, - sym_instance_var, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12303), 1, + anon_sym_end, STATE(9489), 1, sym_heredoc_body, - STATE(11833), 1, - sym_integer, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11928), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [411079] = 7, + [412434] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12389), 1, - sym_instance_var, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12305), 1, + anon_sym_end, STATE(9490), 1, sym_heredoc_body, - STATE(11296), 1, - sym_integer, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11857), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [411103] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [412463] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12391), 1, - anon_sym_DQUOTE, STATE(9491), 1, sym_heredoc_body, - STATE(9520), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [411127] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9492), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 5, + ACTIONS(6069), 6, sym__start_of_index_operator, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT, - [411145] = 4, + anon_sym_EQ, + [412482] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9493), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12307), 1, + anon_sym_end, + STATE(9492), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11409), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [411163] = 6, + [412511] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12395), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, anon_sym_when, - STATE(10051), 1, + ACTIONS(12309), 1, + anon_sym_end, + STATE(9471), 1, + aux_sym_case_repeat1, + STATE(9493), 1, + sym_heredoc_body, + STATE(10742), 1, sym_when, + STATE(12374), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12393), 2, - anon_sym_end, - anon_sym_else, - STATE(9494), 2, - sym_heredoc_body, - aux_sym_case_repeat1, - [411185] = 7, + [412540] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, - ACTIONS(12398), 1, - aux_sym_proc_token1, - STATE(9495), 1, + ACTIONS(8190), 1, + anon_sym_COMMA, + ACTIONS(12311), 1, + anon_sym_then, + STATE(316), 1, + sym__terminator, + STATE(9494), 1, sym_heredoc_body, + STATE(9598), 1, + aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6450), 2, - sym_do_end_block, - sym_brace_block, - [411209] = 4, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [412567] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9495), 1, + sym_heredoc_body, + ACTIONS(12313), 3, + anon_sym_POUND_LBRACE, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(12315), 3, + anon_sym_SLASH, + sym_regex_escape_sequence, + sym_regex_special_match, + [412590] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12319), 1, + anon_sym_LPAREN, + ACTIONS(12321), 1, + anon_sym_EQ, + ACTIONS(12323), 1, + aux_sym_top_level_fun_def_token1, STATE(9496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6383), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [411227] = 4, + ACTIONS(12317), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [412615] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8190), 1, + anon_sym_COMMA, + ACTIONS(12325), 1, + anon_sym_then, + STATE(361), 1, + sym__terminator, STATE(9497), 1, sym_heredoc_body, + STATE(9598), 1, + aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6257), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [411245] = 7, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [412642] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12400), 1, - sym_instance_var, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12327), 1, + anon_sym_end, STATE(9498), 1, sym_heredoc_body, - STATE(11854), 1, - sym_integer, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11974), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [411269] = 4, + [412671] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9499), 1, @@ -698466,5663 +702954,5879 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6229), 5, + ACTIONS(5987), 6, sym__start_of_index_operator, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT, - [411287] = 4, + anon_sym_EQ, + [412690] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12132), 1, + anon_sym_COMMA, + ACTIONS(12134), 1, + anon_sym_then, + STATE(413), 1, + sym__terminator, STATE(9500), 1, sym_heredoc_body, + STATE(9508), 1, + aux_sym_in_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6395), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [411305] = 7, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [412717] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12402), 1, - sym_instance_var, STATE(9501), 1, sym_heredoc_body, - STATE(10991), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [411329] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(5806), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412736] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12329), 1, + anon_sym_end, STATE(9502), 1, sym_heredoc_body, - ACTIONS(12234), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - ACTIONS(12236), 3, - sym__delimited_string_contents, - sym__percent_literal_end, - anon_sym_POUND_LBRACE, - [411351] = 8, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12340), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [412765] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, - anon_sym_COLON_COLON, - ACTIONS(12404), 1, - sym_self, - STATE(8667), 1, - sym_constant, - STATE(8986), 1, - sym_generic_instance_type, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12331), 1, + anon_sym_end, STATE(9503), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12362), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411377] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [412794] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12406), 1, - anon_sym_DQUOTE, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(11761), 1, + anon_sym_LPAREN, + ACTIONS(11763), 1, + anon_sym_STAR, STATE(9504), 1, sym_heredoc_body, - STATE(9559), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [411401] = 7, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10870), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [412819] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(12408), 1, - anon_sym_end, - ACTIONS(12410), 1, - anon_sym_elsif, STATE(9505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(12086), 2, - sym_elsif, - sym_else, - [411425] = 7, + ACTIONS(6051), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412838] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12412), 1, - sym_instance_var, STATE(9506), 1, sym_heredoc_body, - STATE(10947), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [411449] = 7, + ACTIONS(5991), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412857] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, - ACTIONS(12414), 1, - aux_sym_proc_token1, STATE(9507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6544), 2, - sym_do_end_block, - sym_brace_block, - [411473] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(5894), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412876] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12416), 1, - anon_sym_DQUOTE, + ACTIONS(12132), 1, + anon_sym_COMMA, + ACTIONS(12333), 1, + anon_sym_then, + STATE(430), 1, + sym__terminator, STATE(9508), 1, sym_heredoc_body, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [411497] = 8, + STATE(9604), 1, + aux_sym_in_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8188), 2, + sym__line_break, + anon_sym_SEMI, + [412903] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8309), 1, - sym__constant_segment, - ACTIONS(8311), 1, - anon_sym_COLON_COLON, - ACTIONS(12418), 1, - sym_self, - STATE(8670), 1, - sym_constant, - STATE(8987), 1, - sym_generic_instance_type, STATE(9509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411523] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(5913), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412922] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12420), 1, - anon_sym_DQUOTE, STATE(9510), 1, sym_heredoc_body, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [411547] = 7, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6017), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412941] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12422), 1, - sym_instance_var, - STATE(9511), 1, - sym_heredoc_body, - STATE(12190), 1, - sym_integer, + ACTIONS(12337), 1, + sym__regular_rescue_keyword, + STATE(9921), 1, + sym_rescue_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [411571] = 7, + STATE(9511), 2, + sym_heredoc_body, + aux_sym_method_def_repeat1, + ACTIONS(12335), 3, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [412964] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12424), 1, - sym_instance_var, STATE(9512), 1, sym_heredoc_body, - STATE(12155), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [411595] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(5917), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [412983] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12340), 1, + anon_sym_end, + STATE(9484), 1, + aux_sym_case_repeat1, STATE(9513), 1, sym_heredoc_body, - ACTIONS(12426), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - ACTIONS(12428), 3, - sym__delimited_string_contents, - sym__percent_literal_end, - anon_sym_POUND_LBRACE, - [411617] = 7, + STATE(10742), 1, + sym_when, + STATE(12344), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413012] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, - ACTIONS(12430), 1, - aux_sym_proc_token1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12342), 1, + anon_sym_end, STATE(9514), 1, sym_heredoc_body, + STATE(9554), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12019), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3051), 2, - sym_do_end_block, - sym_brace_block, - [411641] = 4, + [413041] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12344), 1, + anon_sym_end, STATE(9515), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12332), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413070] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9516), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6443), 5, + ACTIONS(6055), 6, sym__start_of_index_operator, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT, - [411659] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12432), 1, - anon_sym_DQUOTE, - STATE(9516), 1, - sym_heredoc_body, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [411683] = 7, + anon_sym_EQ, + [413089] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12434), 1, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12346), 1, anon_sym_end, STATE(9517), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11401), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(12182), 2, - sym_elsif, - sym_else, - [411707] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [413118] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12436), 1, - anon_sym_DQUOTE, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, STATE(9518), 1, sym_heredoc_body, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [411731] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(10226), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + ACTIONS(5022), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ, + [413143] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(12350), 1, + anon_sym_DASH_GT, STATE(9519), 1, sym_heredoc_body, - ACTIONS(12438), 5, - sym__delimited_string_contents, - sym__string_literal_end, - sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [411751] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(10580), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + ACTIONS(5022), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [413168] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12440), 1, - anon_sym_DQUOTE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12352), 1, + anon_sym_end, STATE(9520), 1, sym_heredoc_body, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [411775] = 7, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12333), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413197] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12442), 1, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12354), 1, anon_sym_end, STATE(9521), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12099), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11542), 2, - sym_elsif, - sym_else, - [411799] = 7, + [413226] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, - ACTIONS(12444), 1, - aux_sym_proc_token1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12356), 1, + anon_sym_end, STATE(9522), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11412), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2882), 2, - sym_do_end_block, - sym_brace_block, - [411823] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [413255] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12358), 1, + anon_sym_end, STATE(9523), 1, sym_heredoc_body, - ACTIONS(12448), 2, - anon_sym_POUND_LBRACE, - aux_sym_command_token1, - ACTIONS(12446), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_BQUOTE2, - [411845] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9524), 1, - sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11428), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6364), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [411863] = 6, + [413284] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12452), 1, - anon_sym_RPAREN, - ACTIONS(12454), 1, - aux_sym_proc_token1, - STATE(9525), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12360), 1, + anon_sym_end, + STATE(9524), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11927), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12450), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [411885] = 4, + [413313] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9526), 1, + STATE(9525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6427), 5, + ACTIONS(6013), 6, sym__start_of_index_operator, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT, - [411903] = 7, + anon_sym_EQ, + [413332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - ACTIONS(7935), 1, - anon_sym_do, - ACTIONS(12456), 1, - aux_sym_proc_token1, - STATE(9527), 1, + STATE(9526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5382), 2, - sym_do_end_block, - sym_brace_block, - [411927] = 7, + ACTIONS(5947), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [413351] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12458), 1, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12362), 1, anon_sym_end, - STATE(9528), 1, + STATE(9527), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11103), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11306), 2, - sym_elsif, - sym_else, - [411951] = 4, + [413380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9529), 1, + STATE(9528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6157), 5, + ACTIONS(5810), 6, sym__start_of_index_operator, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT, - [411969] = 6, + anon_sym_EQ, + [413399] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12463), 1, - anon_sym_end, - STATE(10093), 1, + ACTIONS(12132), 1, + anon_sym_COMMA, + ACTIONS(12364), 1, + anon_sym_then, + STATE(433), 1, sym__terminator, + STATE(9529), 1, + sym_heredoc_body, + STATE(9604), 1, + aux_sym_in_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12460), 2, + ACTIONS(8188), 2, sym__line_break, anon_sym_SEMI, - STATE(9530), 2, + [413426] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12366), 1, + anon_sym_end, + STATE(9530), 1, sym_heredoc_body, - aux_sym_annotation_def_repeat1, - [411991] = 7, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11104), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413455] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12465), 1, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12368), 1, anon_sym_end, STATE(9531), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11279), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11500), 2, - sym_elsif, - sym_else, - [412015] = 6, + [413484] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8329), 1, - anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12370), 1, + anon_sym_end, STATE(9532), 1, sym_heredoc_body, - STATE(9535), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(9541), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12256), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_do, - [412037] = 7, + [413513] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(11785), 1, - anon_sym_STAR, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12372), 1, + anon_sym_end, + STATE(9460), 1, + aux_sym_case_repeat1, STATE(9533), 1, sym_heredoc_body, + STATE(10742), 1, + sym_when, + STATE(11630), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10721), 2, - sym_constant, - sym_type_param_splat, - [412061] = 6, + [413542] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8331), 1, - anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12374), 1, + anon_sym_end, STATE(9534), 1, sym_heredoc_body, - STATE(9536), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11281), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_do, - [412083] = 6, + [413571] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8331), 1, - anon_sym_COMMA, - STATE(9434), 1, - aux_sym_argument_list_no_parens_repeat1, STATE(9535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 3, - sym__start_of_brace_block, + ACTIONS(6025), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_do, - [412105] = 6, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [413590] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12467), 1, - anon_sym_COMMA, - STATE(9434), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12376), 1, + anon_sym_end, STATE(9536), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11950), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 3, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_do, - [412127] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [413619] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12469), 1, - anon_sym_DQUOTE, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12378), 1, + anon_sym_end, + STATE(9492), 1, + aux_sym_case_repeat1, STATE(9537), 1, sym_heredoc_body, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [412151] = 7, + STATE(10742), 1, + sym_when, + STATE(11260), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, - ACTIONS(12471), 1, - aux_sym_proc_token1, STATE(9538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3894), 2, - sym_do_end_block, - sym_brace_block, - [412175] = 4, + ACTIONS(5669), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [413667] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12380), 1, + anon_sym_end, STATE(9539), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11715), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5934), 5, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_do, - [412193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [413696] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12382), 1, + anon_sym_end, STATE(9540), 1, sym_heredoc_body, - ACTIONS(12236), 5, - sym__delimited_string_contents, - sym__percent_literal_end, - sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [412213] = 7, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12358), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413725] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - ACTIONS(6711), 1, - anon_sym_do, - ACTIONS(12473), 1, - aux_sym_proc_token1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12384), 1, + anon_sym_end, STATE(9541), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12359), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3494), 2, - sym_do_end_block, - sym_brace_block, - [412237] = 4, + [413754] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12386), 1, + anon_sym_end, + STATE(9522), 1, + aux_sym_case_repeat1, STATE(9542), 1, sym_heredoc_body, + STATE(10742), 1, + sym_when, + STATE(11006), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6269), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [412255] = 5, + [413783] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12477), 1, - anon_sym_COMMA, + STATE(9543), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9543), 2, - sym_heredoc_body, - aux_sym_when_repeat1, - ACTIONS(12475), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_then, - [412275] = 7, + ACTIONS(5796), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [413802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - ACTIONS(6971), 1, - anon_sym_do, - ACTIONS(12480), 1, - aux_sym_proc_token1, STATE(9544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4024), 2, - sym_do_end_block, - sym_brace_block, - [412299] = 7, + ACTIONS(5818), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [413821] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - ACTIONS(8252), 1, - anon_sym_do, - ACTIONS(12482), 1, - aux_sym_proc_token1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(11994), 1, + anon_sym_STAR, + ACTIONS(12388), 1, + anon_sym_RPAREN, STATE(9545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5885), 2, - sym_do_end_block, - sym_brace_block, - [412323] = 7, + STATE(10891), 2, + sym_constant, + sym_type_param_splat, + [413848] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12484), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12390), 1, anon_sym_end, - STATE(9530), 1, - aux_sym_annotation_def_repeat1, + STATE(9536), 1, + aux_sym_case_repeat1, STATE(9546), 1, sym_heredoc_body, - STATE(10093), 1, - sym__terminator, + STATE(10742), 1, + sym_when, + STATE(11810), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12364), 2, - sym__line_break, - anon_sym_SEMI, - [412347] = 8, + [413877] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8023), 1, + ACTIONS(12275), 1, sym__constant_segment, - ACTIONS(8025), 1, + ACTIONS(12277), 1, anon_sym_COLON_COLON, - ACTIONS(12486), 1, - sym_self, - STATE(8306), 1, - sym_constant, - STATE(8509), 1, - sym_generic_instance_type, + ACTIONS(12279), 1, + sym__string_literal_start, + ACTIONS(12392), 1, + sym_identifier, STATE(9547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412373] = 7, + STATE(408), 2, + sym_string, + sym_constant, + [413904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - ACTIONS(8099), 1, - anon_sym_do, - ACTIONS(12488), 1, - aux_sym_proc_token1, STATE(9548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5722), 2, - sym_do_end_block, - sym_brace_block, - [412397] = 7, + ACTIONS(5818), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [413923] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12490), 1, - sym_instance_var, + ACTIONS(12394), 1, + sym_identifier, + ACTIONS(12396), 1, + sym__constant_segment, + ACTIONS(12398), 1, + anon_sym_COLON_COLON, + ACTIONS(12400), 1, + sym__string_literal_start, STATE(9549), 1, sym_heredoc_body, - STATE(11611), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [412421] = 7, + STATE(9699), 2, + sym_string, + sym_constant, + [413950] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12492), 1, - anon_sym_DQUOTE, STATE(9550), 1, sym_heredoc_body, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [412445] = 6, + ACTIONS(12402), 3, + anon_sym_POUND_LBRACE, + aux_sym_regex_token1, + sym_regex_character_class, + ACTIONS(12404), 3, + anon_sym_SLASH, + sym_regex_escape_sequence, + sym_regex_special_match, + [413973] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8395), 1, - anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12406), 1, + anon_sym_end, STATE(9551), 1, sym_heredoc_body, - STATE(9622), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11354), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5737), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - [412467] = 7, + [414002] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12494), 1, - sym_instance_var, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12408), 1, + anon_sym_end, STATE(9552), 1, sym_heredoc_body, - STATE(12071), 1, - sym_integer, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12152), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [412491] = 4, + [414031] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12410), 1, + anon_sym_end, STATE(9553), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11999), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [414060] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12412), 1, + anon_sym_end, + STATE(9554), 1, + sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(12153), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [414089] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9555), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5881), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [414108] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12418), 1, + aux_sym_top_level_fun_def_token1, + STATE(9556), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6451), 5, - sym__start_of_index_operator, + ACTIONS(12416), 2, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT, - [412509] = 4, + ACTIONS(12414), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [414131] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9554), 1, + STATE(9557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6431), 5, + ACTIONS(6047), 6, sym__start_of_index_operator, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT, - [412527] = 4, + anon_sym_EQ, + [414150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9555), 1, + STATE(9558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 5, - sym__line_break, - anon_sym_SEMI, + ACTIONS(5822), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - [412545] = 8, + anon_sym_DOT, + anon_sym_EQ, + [414169] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7280), 1, - sym__constant_segment, - ACTIONS(7282), 1, - anon_sym_COLON_COLON, - ACTIONS(12496), 1, - sym_self, - STATE(7982), 1, - sym_constant, - STATE(8041), 1, - sym_generic_instance_type, - STATE(9556), 1, + STATE(9559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412571] = 6, + ACTIONS(5862), 6, + sym__start_of_index_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_EQ, + [414188] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12500), 1, - anon_sym_LPAREN, - ACTIONS(12502), 1, - aux_sym_top_level_fun_def_token1, - STATE(9557), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(12498), 3, - sym__line_break, - anon_sym_SEMI, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(7611), 1, + anon_sym_when, + ACTIONS(12420), 1, anon_sym_end, - [412593] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, - ACTIONS(12504), 1, - aux_sym_proc_token1, - STATE(9558), 1, + STATE(9560), 1, sym_heredoc_body, + STATE(9596), 1, + aux_sym_case_repeat1, + STATE(10742), 1, + sym_when, + STATE(11451), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5897), 2, - sym_do_end_block, - sym_brace_block, - [412617] = 7, + [414217] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12506), 1, + ACTIONS(12424), 1, anon_sym_DQUOTE, - STATE(9559), 1, + STATE(9561), 1, sym_heredoc_body, - STATE(9598), 1, + STATE(9637), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [412641] = 7, + [414241] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12508), 1, + ACTIONS(12426), 1, anon_sym_DQUOTE, - STATE(9560), 1, + STATE(9562), 1, sym_heredoc_body, - STATE(9610), 1, + STATE(9637), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [412665] = 7, + [414265] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12510), 1, - anon_sym_end, - STATE(9561), 1, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + ACTIONS(12428), 1, + aux_sym_proc_token1, + STATE(9563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11493), 2, - sym_elsif, - sym_else, - [412689] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12512), 1, - anon_sym_DQUOTE, - STATE(9562), 1, - sym_heredoc_body, - STATE(9572), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [412713] = 7, + STATE(3988), 2, + sym_do_end_block, + sym_brace_block, + [414289] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12514), 1, - anon_sym_DQUOTE, - STATE(9537), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9563), 1, + STATE(9564), 1, sym_heredoc_body, - ACTIONS(12370), 3, + ACTIONS(12430), 5, + sym_heredoc_content, + sym_heredoc_end, sym_ignored_backslash, sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [412737] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9564), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6027), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [412755] = 7, + anon_sym_POUND_LBRACE, + [414309] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12516), 1, + ACTIONS(12432), 1, anon_sym_end, + ACTIONS(12434), 1, + anon_sym_elsif, STATE(9565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11279), 2, + STATE(11988), 2, sym_elsif, sym_else, - [412779] = 7, + [414333] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12518), 1, - anon_sym_end, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + ACTIONS(12436), 1, + aux_sym_proc_token1, STATE(9566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11815), 2, - sym_elsif, - sym_else, - [412803] = 7, + STATE(6253), 2, + sym_do_end_block, + sym_brace_block, + [414357] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12520), 1, - anon_sym_end, + ACTIONS(12438), 1, + anon_sym_DQUOTE, STATE(9567), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(12058), 2, - sym_elsif, - sym_else, - [412827] = 8, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [414381] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(11797), 1, - sym_identifier, + ACTIONS(8479), 1, + anon_sym_COMMA, STATE(9568), 1, sym_heredoc_body, - STATE(10834), 1, - sym_fun_param, - STATE(11079), 1, - sym_constant, + STATE(9570), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412853] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1125), 1, + ACTIONS(5750), 3, sym__start_of_brace_block, - ACTIONS(8252), 1, + anon_sym_RBRACE, anon_sym_do, - ACTIONS(12522), 1, - aux_sym_proc_token1, + [414403] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8481), 1, + anon_sym_COMMA, STATE(9569), 1, sym_heredoc_body, + STATE(9571), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5922), 2, - sym_do_end_block, - sym_brace_block, - [412877] = 8, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_do, + [414425] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8023), 1, - sym__constant_segment, - ACTIONS(8025), 1, - anon_sym_COLON_COLON, - ACTIONS(12524), 1, - sym_self, - STATE(8305), 1, - sym_constant, - STATE(8507), 1, - sym_generic_instance_type, + ACTIONS(8481), 1, + anon_sym_COMMA, + STATE(9450), 1, + aux_sym_argument_list_no_parens_repeat1, STATE(9570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412903] = 8, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_do, + [414447] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, + ACTIONS(12440), 1, + anon_sym_COMMA, + STATE(9450), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(9571), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5888), 3, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_do, + [414469] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9754), 1, sym__constant_segment, - ACTIONS(8421), 1, + ACTIONS(9756), 1, anon_sym_COLON_COLON, - ACTIONS(10225), 1, - anon_sym_def, - STATE(152), 1, - sym__base_method_def, - STATE(9571), 1, + ACTIONS(12442), 1, + sym_self, + STATE(9572), 1, sym_heredoc_body, - STATE(11933), 1, + STATE(9917), 1, sym_constant, + STATE(10379), 1, + sym_generic_instance_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412929] = 7, + [414495] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12526), 1, + ACTIONS(12444), 1, anon_sym_DQUOTE, - STATE(9572), 1, - sym_heredoc_body, - STATE(9598), 1, + STATE(9567), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, + STATE(9573), 1, + sym_heredoc_body, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [412953] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12528), 1, - sym_instance_var, - STATE(9573), 1, - sym_heredoc_body, - STATE(12228), 1, - sym_integer, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [412977] = 7, + [414519] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12530), 1, - sym_instance_var, + ACTIONS(12448), 1, + anon_sym_end, STATE(9574), 1, sym_heredoc_body, - STATE(11603), 1, - sym_integer, + STATE(9629), 1, + aux_sym_annotation_def_repeat1, + STATE(10102), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [413001] = 5, + ACTIONS(12446), 2, + sym__line_break, + anon_sym_SEMI, + [414543] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12532), 1, - anon_sym_COMMA, + STATE(9575), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9575), 2, - sym_heredoc_body, - aux_sym_array_repeat1, - ACTIONS(8703), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [413021] = 4, + ACTIONS(5170), 5, + sym__line_break, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_end, + aux_sym_top_level_fun_def_token1, + [414561] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12450), 1, + anon_sym_end, STATE(9576), 1, sym_heredoc_body, + STATE(9701), 1, + aux_sym_annotation_def_repeat1, + STATE(10102), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6399), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [413039] = 7, + ACTIONS(12446), 2, + sym__line_break, + anon_sym_SEMI, + [414585] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12535), 1, - sym_instance_var, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, + ACTIONS(12452), 1, + aux_sym_proc_token1, STATE(9577), 1, sym_heredoc_body, - STATE(11561), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [413063] = 7, + STATE(6662), 2, + sym_do_end_block, + sym_brace_block, + [414609] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - ACTIONS(6841), 1, - anon_sym_do, - ACTIONS(12537), 1, - aux_sym_proc_token1, + ACTIONS(12456), 1, + sym__delimited_array_element_end, STATE(9578), 1, sym_heredoc_body, + STATE(9609), 1, + aux_sym_percent_literal_array_word_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3700), 2, - sym_do_end_block, - sym_brace_block, - [413087] = 4, + ACTIONS(12454), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + aux_sym_percent_literal_array_word_token1, + [414631] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12458), 1, + anon_sym_end, STATE(9579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5710), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [413105] = 4, + STATE(11079), 2, + sym_elsif, + sym_else, + [414655] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, + ACTIONS(12460), 1, + aux_sym_proc_token1, STATE(9580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6273), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [413123] = 7, + STATE(6960), 2, + sym_do_end_block, + sym_brace_block, + [414679] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(12410), 1, + ACTIONS(12434), 1, anon_sym_elsif, - ACTIONS(12539), 1, + ACTIONS(12462), 1, anon_sym_end, STATE(9581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11055), 2, + STATE(11430), 2, sym_elsif, sym_else, - [413147] = 7, + [414703] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12541), 1, - anon_sym_end, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, STATE(9582), 1, sym_heredoc_body, + STATE(10226), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11710), 2, - sym_elsif, - sym_else, - [413171] = 5, + ACTIONS(5022), 2, + anon_sym_RPAREN, + anon_sym_EQ_GT, + [414727] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12464), 1, + anon_sym_DQUOTE, STATE(9583), 1, sym_heredoc_body, - ACTIONS(12236), 5, - sym__delimited_string_contents, - sym__string_literal_end, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [413191] = 7, + aux_sym_quoted_symbol_token1, + [414751] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12543), 1, - sym_instance_var, STATE(9584), 1, sym_heredoc_body, - STATE(11837), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [413215] = 4, + ACTIONS(5166), 5, + sym__line_break, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_end, + aux_sym_top_level_fun_def_token1, + [414769] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9585), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + ACTIONS(12313), 2, + anon_sym_POUND_LBRACE, + aux_sym_command_token1, + ACTIONS(12315), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + anon_sym_BQUOTE2, + [414791] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6285), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [413233] = 7, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - ACTIONS(8099), 1, - anon_sym_do, - ACTIONS(12545), 1, - aux_sym_proc_token1, STATE(9586), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(5563), 2, - sym_do_end_block, - sym_brace_block, - [413257] = 4, + ACTIONS(12466), 5, + sym__delimited_string_contents, + sym__string_literal_end, + sym_ignored_backslash, + sym_string_escape_sequence, + anon_sym_POUND_LBRACE, + [414811] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12468), 1, + anon_sym_end, STATE(9587), 1, sym_heredoc_body, + STATE(9671), 1, + aux_sym_annotation_def_repeat1, + STATE(10102), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5170), 5, + ACTIONS(12446), 2, sym__line_break, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_end, - aux_sym_top_level_fun_def_token1, - [413275] = 7, + [414835] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12547), 1, + ACTIONS(12470), 1, anon_sym_end, + STATE(9587), 1, + aux_sym_annotation_def_repeat1, STATE(9588), 1, sym_heredoc_body, + STATE(10102), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10969), 2, - sym_elsif, - sym_else, - [413299] = 6, + ACTIONS(12446), 2, + sym__line_break, + anon_sym_SEMI, + [414859] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8397), 1, - anon_sym_COMMA, + ACTIONS(12472), 1, + anon_sym_DQUOTE, STATE(9589), 1, sym_heredoc_body, - STATE(9590), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - [413321] = 6, + STATE(9672), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [414883] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12549), 1, - anon_sym_COMMA, - STATE(9434), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(713), 1, + sym__start_of_brace_block, + ACTIONS(6920), 1, + anon_sym_do, + ACTIONS(12474), 1, + aux_sym_proc_token1, STATE(9590), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - [413343] = 7, + STATE(4216), 2, + sym_do_end_block, + sym_brace_block, + [414907] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, - aux_sym_integer_token2, - ACTIONS(12551), 1, - sym_instance_var, + ACTIONS(12253), 1, + anon_sym_DOT, + ACTIONS(12257), 1, + sym__start_of_index_operator, + STATE(9454), 1, + sym__implicit_index_operator, STATE(9591), 1, sym_heredoc_body, - STATE(11713), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, - sym_unary_plus, - sym_unary_minus, - [413367] = 7, + ACTIONS(5719), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [414931] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, + ACTIONS(535), 1, sym__start_of_brace_block, - ACTIONS(6706), 1, + ACTIONS(6767), 1, anon_sym_do, - ACTIONS(12553), 1, + ACTIONS(12476), 1, aux_sym_proc_token1, STATE(9592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3929), 2, + STATE(4542), 2, sym_do_end_block, sym_brace_block, - [413391] = 4, + [414955] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(945), 1, + sym__start_of_brace_block, + ACTIONS(7897), 1, + anon_sym_do, + ACTIONS(12478), 1, + aux_sym_proc_token1, STATE(9593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5162), 5, - sym__line_break, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_end, - aux_sym_top_level_fun_def_token1, - [413409] = 7, + STATE(5612), 2, + sym_do_end_block, + sym_brace_block, + [414979] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12555), 1, + ACTIONS(12480), 1, anon_sym_DQUOTE, STATE(9594), 1, sym_heredoc_body, - STATE(9648), 1, + STATE(9697), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [413433] = 5, + [415003] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11007), 1, - anon_sym_LPAREN2, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12482), 1, + sym_instance_var, STATE(9595), 1, sym_heredoc_body, + STATE(10993), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12557), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [413453] = 6, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [415027] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12486), 1, + anon_sym_when, + STATE(10742), 1, + sym_when, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(12484), 2, + anon_sym_end, + anon_sym_else, + STATE(9596), 2, + sym_heredoc_body, + aux_sym_case_repeat1, + [415049] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9596), 1, + STATE(9597), 1, sym_heredoc_body, - ACTIONS(12234), 2, - anon_sym_POUND_LBRACE, - aux_sym_command_token1, - ACTIONS(12236), 3, + ACTIONS(12315), 5, + sym__delimited_string_contents, + sym__percent_literal_end, sym_ignored_backslash, sym_string_escape_sequence, - anon_sym_BQUOTE2, - [413475] = 6, + anon_sym_POUND_LBRACE, + [415069] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12561), 1, - sym__delimited_array_element_end, - STATE(9488), 1, - aux_sym_percent_literal_array_word_repeat1, - STATE(9597), 1, - sym_heredoc_body, + ACTIONS(12491), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12559), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - aux_sym_percent_literal_array_word_token1, - [413497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12566), 1, - anon_sym_DQUOTE, STATE(9598), 2, sym_heredoc_body, - aux_sym_quoted_symbol_repeat1, - ACTIONS(12563), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [413519] = 7, + aux_sym_when_repeat1, + ACTIONS(12489), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_then, + [415089] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10669), 1, + ACTIONS(10729), 1, aux_sym_integer_token2, - ACTIONS(12568), 1, + ACTIONS(12494), 1, sym_instance_var, STATE(9599), 1, sym_heredoc_body, - STATE(12291), 1, + STATE(11911), 1, sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10677), 2, + ACTIONS(10737), 2, sym_unary_plus, sym_unary_minus, - [413543] = 4, + [415113] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12496), 1, + anon_sym_end, STATE(9600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6431), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [413561] = 7, + STATE(11460), 2, + sym_elsif, + sym_else, + [415137] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12570), 1, + ACTIONS(12498), 1, anon_sym_DQUOTE, - STATE(9485), 1, - aux_sym_quoted_symbol_repeat1, STATE(9601), 1, sym_heredoc_body, - ACTIONS(12370), 3, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [413585] = 7, + [415161] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, + ACTIONS(301), 1, sym__start_of_brace_block, - ACTIONS(8107), 1, + ACTIONS(5673), 1, anon_sym_do, - ACTIONS(12572), 1, + ACTIONS(12500), 1, aux_sym_proc_token1, STATE(9602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6777), 2, + STATE(2641), 2, sym_do_end_block, sym_brace_block, - [413609] = 7, + [415185] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, + ACTIONS(1075), 1, sym__start_of_brace_block, - ACTIONS(7800), 1, + ACTIONS(8089), 1, anon_sym_do, - ACTIONS(12574), 1, + ACTIONS(12502), 1, aux_sym_proc_token1, STATE(9603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6128), 2, + STATE(6248), 2, sym_do_end_block, sym_brace_block, - [413633] = 4, + [415209] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9604), 1, - sym_heredoc_body, + ACTIONS(12506), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6383), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [413651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + STATE(9604), 2, + sym_heredoc_body, + aux_sym_in_repeat1, + ACTIONS(12504), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_then, + [415229] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, + ACTIONS(12509), 1, + aux_sym_proc_token1, STATE(9605), 1, sym_heredoc_body, - ACTIONS(12236), 5, - sym_heredoc_content, - sym_heredoc_end, - sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [413671] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(3151), 2, + sym_do_end_block, + sym_brace_block, + [415253] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12511), 1, + anon_sym_DQUOTE, STATE(9606), 1, sym_heredoc_body, - ACTIONS(12576), 5, - sym__delimited_string_contents, - sym__percent_literal_end, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [413691] = 4, + aux_sym_quoted_symbol_token1, + [415277] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(713), 1, + sym__start_of_brace_block, + ACTIONS(6920), 1, + anon_sym_do, + ACTIONS(12513), 1, + aux_sym_proc_token1, STATE(9607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6277), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [413709] = 7, + STATE(3985), 2, + sym_do_end_block, + sym_brace_block, + [415301] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, - sym__start_of_brace_block, - ACTIONS(5714), 1, - anon_sym_do, - ACTIONS(12578), 1, - aux_sym_proc_token1, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12515), 1, + sym_instance_var, STATE(9608), 1, sym_heredoc_body, + STATE(11145), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2558), 2, - sym_do_end_block, - sym_brace_block, - [413733] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [415325] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12517), 1, + sym__delimited_array_element_end, STATE(9609), 1, sym_heredoc_body, + STATE(9630), 1, + aux_sym_percent_literal_array_word_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6059), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [413751] = 7, + ACTIONS(12454), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + aux_sym_percent_literal_array_word_token1, + [415347] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12580), 1, - anon_sym_DQUOTE, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, STATE(9610), 1, sym_heredoc_body, - ACTIONS(12370), 3, + ACTIONS(12519), 5, + sym__delimited_string_contents, + sym__percent_literal_end, sym_ignored_backslash, sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [413775] = 7, + anon_sym_POUND_LBRACE, + [415367] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(12521), 1, + sym_self, + STATE(8698), 1, + sym_constant, + STATE(9066), 1, + sym_generic_instance_type, + STATE(9611), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [415393] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12582), 1, + ACTIONS(12523), 1, anon_sym_DQUOTE, - STATE(9611), 1, - sym_heredoc_body, - STATE(9632), 1, + STATE(9562), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(12370), 3, + STATE(9612), 1, + sym_heredoc_body, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [413799] = 7, + [415417] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12584), 1, - anon_sym_end, - STATE(9483), 1, - aux_sym_annotation_def_repeat1, - STATE(9612), 1, + ACTIONS(8430), 1, + sym__constant_segment, + ACTIONS(8432), 1, + anon_sym_COLON_COLON, + ACTIONS(12525), 1, + sym_self, + STATE(8700), 1, + sym_constant, + STATE(9067), 1, + sym_generic_instance_type, + STATE(9613), 1, sym_heredoc_body, - STATE(10093), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12364), 2, - sym__line_break, - anon_sym_SEMI, - [413823] = 7, + [415443] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(12527), 1, + sym_self, + STATE(8326), 1, + sym_constant, + STATE(8390), 1, + sym_generic_instance_type, + STATE(9614), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [415469] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12586), 1, + ACTIONS(12529), 1, anon_sym_DQUOTE, - STATE(9598), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9613), 1, + STATE(9615), 1, sym_heredoc_body, - ACTIONS(12370), 3, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [413847] = 7, + [415493] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, + ACTIONS(7609), 1, anon_sym_else, - ACTIONS(12410), 1, + ACTIONS(12434), 1, anon_sym_elsif, - ACTIONS(12588), 1, + ACTIONS(12531), 1, anon_sym_end, - STATE(9614), 1, + STATE(9616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11799), 2, + STATE(12378), 2, sym_elsif, sym_else, - [413871] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [415517] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12590), 1, - anon_sym_DQUOTE, - STATE(9613), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9615), 1, + ACTIONS(8015), 1, + sym__constant_segment, + ACTIONS(8017), 1, + anon_sym_COLON_COLON, + ACTIONS(12533), 1, + sym_self, + STATE(8334), 1, + sym_constant, + STATE(8394), 1, + sym_generic_instance_type, + STATE(9617), 1, sym_heredoc_body, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [413895] = 7, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym__line_continuation, sym_comment, - ACTIONS(5), 1, + [415543] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(865), 1, + sym__start_of_brace_block, + ACTIONS(7680), 1, + anon_sym_do, + ACTIONS(12535), 1, + aux_sym_proc_token1, + STATE(9618), 1, + sym_heredoc_body, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + STATE(5435), 2, + sym_do_end_block, + sym_brace_block, + [415567] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12592), 1, - anon_sym_DQUOTE, - STATE(9550), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9616), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12537), 1, + anon_sym_end, + STATE(9619), 1, sym_heredoc_body, - ACTIONS(12370), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [413919] = 7, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(11758), 2, + sym_elsif, + sym_else, + [415591] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12594), 1, - anon_sym_DQUOTE, - STATE(9518), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9617), 1, + STATE(9620), 1, sym_heredoc_body, - ACTIONS(12370), 3, + ACTIONS(12541), 2, + anon_sym_POUND_LBRACE, + aux_sym_command_token1, + ACTIONS(12539), 3, sym_ignored_backslash, sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [413943] = 7, + anon_sym_BQUOTE2, + [415613] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12596), 1, + ACTIONS(12543), 1, anon_sym_DQUOTE, - STATE(9516), 1, + STATE(9615), 1, aux_sym_quoted_symbol_repeat1, - STATE(9618), 1, + STATE(9621), 1, sym_heredoc_body, - ACTIONS(12370), 3, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [413967] = 7, + [415637] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - ACTIONS(12598), 1, - aux_sym_proc_token1, - STATE(9619), 1, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12545), 1, + sym_instance_var, + STATE(9622), 1, sym_heredoc_body, + STATE(11647), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4743), 2, - sym_do_end_block, - sym_brace_block, - [413991] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [415661] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9620), 1, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12547), 1, + sym_instance_var, + STATE(9623), 1, sym_heredoc_body, + STATE(11039), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [414009] = 7, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [415685] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, + ACTIONS(393), 1, sym__start_of_brace_block, - ACTIONS(5714), 1, + ACTIONS(6687), 1, anon_sym_do, - ACTIONS(12600), 1, + ACTIONS(12549), 1, aux_sym_proc_token1, - STATE(9621), 1, + STATE(9624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2593), 2, + STATE(3361), 2, sym_do_end_block, sym_brace_block, - [414033] = 6, + [415709] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8397), 1, - anon_sym_COMMA, - STATE(9434), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9622), 1, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12551), 1, + sym_instance_var, + STATE(9625), 1, sym_heredoc_body, + STATE(11488), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5811), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - [414055] = 7, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [415733] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12602), 1, - anon_sym_end, - STATE(9623), 1, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12553), 1, + sym_instance_var, + STATE(9626), 1, sym_heredoc_body, + STATE(11140), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11511), 2, - sym_elsif, - sym_else, - [414079] = 7, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [415757] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9624), 1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, + ACTIONS(12555), 1, + aux_sym_proc_token1, + STATE(9627), 1, sym_heredoc_body, - STATE(10136), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 2, - anon_sym_RPAREN, - anon_sym_EQ_GT, - [414103] = 5, + STATE(6091), 2, + sym_do_end_block, + sym_brace_block, + [415781] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12606), 1, - anon_sym_COMMA, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(11994), 1, + anon_sym_STAR, + STATE(9628), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9625), 2, - sym_heredoc_body, - aux_sym_in_repeat1, - ACTIONS(12604), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_then, - [414123] = 7, + STATE(10891), 2, + sym_constant, + sym_type_param_splat, + [415805] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12609), 1, + ACTIONS(12557), 1, anon_sym_end, - STATE(9546), 1, - aux_sym_annotation_def_repeat1, - STATE(9626), 1, + STATE(9629), 1, sym_heredoc_body, - STATE(10093), 1, + STATE(9671), 1, + aux_sym_annotation_def_repeat1, + STATE(10102), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12364), 2, + ACTIONS(12446), 2, sym__line_break, anon_sym_SEMI, - [414147] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9627), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6047), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [414165] = 6, + [415829] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12611), 1, + ACTIONS(12562), 1, sym__delimited_array_element_end, - STATE(9597), 1, - aux_sym_percent_literal_array_word_repeat1, - STATE(9628), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, + STATE(9630), 2, + sym_heredoc_body, + aux_sym_percent_literal_array_word_repeat1, ACTIONS(12559), 3, sym__delimited_string_contents, sym_ignored_backslash, aux_sym_percent_literal_array_word_token1, - [414187] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, - ACTIONS(12613), 1, - aux_sym_proc_token1, - STATE(9629), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(6855), 2, - sym_do_end_block, - sym_brace_block, - [414211] = 7, + [415849] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12615), 1, - anon_sym_DOT, - ACTIONS(12617), 1, - sym__start_of_index_operator, - STATE(9630), 1, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12564), 1, + sym_instance_var, + STATE(9631), 1, sym_heredoc_body, - STATE(9643), 1, - sym__implicit_index_operator, + STATE(11455), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5878), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [414235] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [415873] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9631), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12566), 1, + anon_sym_end, + STATE(9632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [414253] = 7, + STATE(12118), 2, + sym_elsif, + sym_else, + [415897] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12619), 1, + ACTIONS(12568), 1, anon_sym_DQUOTE, - STATE(9598), 1, + STATE(9583), 1, aux_sym_quoted_symbol_repeat1, - STATE(9632), 1, + STATE(9633), 1, sym_heredoc_body, - ACTIONS(12370), 3, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [414277] = 7, + [415921] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12621), 1, + ACTIONS(12570), 1, anon_sym_DQUOTE, - STATE(9508), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9633), 1, + STATE(9634), 1, sym_heredoc_body, - ACTIONS(12370), 3, + STATE(9651), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [414301] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, - ACTIONS(12623), 1, - aux_sym_proc_token1, - STATE(9634), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(4836), 2, - sym_do_end_block, - sym_brace_block, - [414325] = 7, + [415945] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, + ACTIONS(945), 1, sym__start_of_brace_block, - ACTIONS(6971), 1, + ACTIONS(7897), 1, anon_sym_do, - ACTIONS(12625), 1, + ACTIONS(12572), 1, aux_sym_proc_token1, STATE(9635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4069), 2, + STATE(5667), 2, sym_do_end_block, sym_brace_block, - [414349] = 7, + [415969] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, - ACTIONS(12627), 1, - aux_sym_proc_token1, + ACTIONS(12574), 1, + anon_sym_DQUOTE, STATE(9636), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [415993] = 6, + ACTIONS(3), 1, sym_comment, - STATE(4402), 2, - sym_do_end_block, - sym_brace_block, - [414373] = 8, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(12629), 1, - anon_sym_enum, - ACTIONS(12631), 1, - anon_sym_alias, - STATE(9637), 1, + ACTIONS(12579), 1, + anon_sym_DQUOTE, + STATE(9637), 2, sym_heredoc_body, - STATE(11933), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [414399] = 7, + aux_sym_quoted_symbol_repeat1, + ACTIONS(12576), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [416015] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12633), 1, - anon_sym_end, - STATE(9530), 1, - aux_sym_annotation_def_repeat1, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(12581), 1, + sym_self, + STATE(8021), 1, + sym_constant, + STATE(8154), 1, + sym_generic_instance_type, STATE(9638), 1, sym_heredoc_body, - STATE(10093), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12364), 2, - sym__line_break, - anon_sym_SEMI, - [414423] = 4, + [416041] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12583), 1, + anon_sym_end, STATE(9639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6387), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [414441] = 4, + STATE(12375), 2, + sym_elsif, + sym_else, + [416065] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(12585), 1, + anon_sym_DASH_GT, STATE(9640), 1, sym_heredoc_body, + STATE(10119), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6243), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [414459] = 5, + ACTIONS(5022), 2, + sym__start_of_brace_block, + anon_sym_do, + [416089] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12587), 1, + anon_sym_DQUOTE, + STATE(9606), 1, + aux_sym_quoted_symbol_repeat1, STATE(9641), 1, sym_heredoc_body, - ACTIONS(12635), 5, - sym_heredoc_content, - sym_heredoc_end, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [414479] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(12637), 1, - anon_sym_DASH_GT, - STATE(9642), 1, - sym_heredoc_body, - STATE(10615), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5006), 2, - sym__start_of_brace_block, - anon_sym_do, - [414503] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9643), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6372), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [414521] = 7, + aux_sym_quoted_symbol_token1, + [416113] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, + ACTIONS(865), 1, sym__start_of_brace_block, - ACTIONS(6791), 1, + ACTIONS(7680), 1, anon_sym_do, - ACTIONS(12639), 1, + ACTIONS(12589), 1, aux_sym_proc_token1, - STATE(9644), 1, + STATE(9642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4450), 2, + STATE(5402), 2, sym_do_end_block, sym_brace_block, - [414545] = 4, + [416137] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9645), 1, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + STATE(9561), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9643), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6223), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [414563] = 7, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [416161] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12641), 1, + ACTIONS(12593), 1, anon_sym_DQUOTE, - STATE(9510), 1, + STATE(9601), 1, aux_sym_quoted_symbol_repeat1, - STATE(9646), 1, + STATE(9644), 1, sym_heredoc_body, - ACTIONS(12370), 3, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [414587] = 8, + [416185] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - ACTIONS(12643), 1, - sym_self, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12595), 1, + anon_sym_end, + STATE(9645), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(11591), 2, + sym_elsif, + sym_else, + [416209] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12597), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(9646), 2, + sym_heredoc_body, + aux_sym_array_repeat1, + ACTIONS(8725), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [416229] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12600), 1, + anon_sym_end, STATE(9647), 1, sym_heredoc_body, - STATE(9839), 1, - sym_constant, - STATE(10331), 1, - sym_generic_instance_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414613] = 7, + STATE(11724), 2, + sym_elsif, + sym_else, + [416253] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12645), 1, + ACTIONS(12602), 1, anon_sym_DQUOTE, - STATE(9598), 1, + STATE(9637), 1, aux_sym_quoted_symbol_repeat1, STATE(9648), 1, sym_heredoc_body, - ACTIONS(12370), 3, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [414637] = 7, + [416277] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(12410), 1, - anon_sym_elsif, - ACTIONS(12647), 1, - anon_sym_end, + ACTIONS(12606), 1, + anon_sym_RPAREN, + ACTIONS(12608), 1, + aux_sym_proc_token1, STATE(9649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11948), 2, - sym_elsif, - sym_else, - [414661] = 7, + ACTIONS(12604), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [416299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - ACTIONS(7935), 1, - anon_sym_do, - ACTIONS(12649), 1, - aux_sym_proc_token1, + ACTIONS(12610), 1, + anon_sym_DQUOTE, + STATE(9648), 1, + aux_sym_quoted_symbol_repeat1, STATE(9650), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [416323] = 7, + ACTIONS(3), 1, sym_comment, - STATE(5277), 2, - sym_do_end_block, - sym_brace_block, - [414685] = 4, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12612), 1, + anon_sym_DQUOTE, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, STATE(9651), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [416347] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6043), 5, - sym__start_of_index_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT, - [414703] = 7, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - ACTIONS(6841), 1, - anon_sym_do, - ACTIONS(12651), 1, - aux_sym_proc_token1, STATE(9652), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3672), 2, - sym_do_end_block, - sym_brace_block, - [414727] = 7, + ACTIONS(12313), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + ACTIONS(12315), 3, + sym__delimited_string_contents, + sym__percent_literal_end, + anon_sym_POUND_LBRACE, + [416369] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - ACTIONS(6711), 1, - anon_sym_do, - ACTIONS(12653), 1, - aux_sym_proc_token1, + ACTIONS(7258), 1, + sym__constant_segment, + ACTIONS(7260), 1, + anon_sym_COLON_COLON, + ACTIONS(12614), 1, + sym_self, + STATE(8043), 1, + sym_constant, + STATE(8126), 1, + sym_generic_instance_type, STATE(9653), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3341), 2, - sym_do_end_block, - sym_brace_block, - [414751] = 7, + [416395] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12655), 1, - anon_sym_RPAREN, - ACTIONS(12657), 1, - anon_sym_COMMA, - ACTIONS(12659), 1, - anon_sym_DASH_GT, + ACTIONS(301), 1, + sym__start_of_brace_block, + ACTIONS(5673), 1, + anon_sym_do, + ACTIONS(12616), 1, + aux_sym_proc_token1, STATE(9654), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414774] = 7, + STATE(2720), 2, + sym_do_end_block, + sym_brace_block, + [416419] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(360), 1, - sym_constant, - STATE(384), 1, - sym_generic_type, STATE(9655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414797] = 7, + ACTIONS(4861), 5, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + [416437] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12661), 1, - anon_sym_end, + ACTIONS(8540), 1, + anon_sym_COMMA, STATE(9656), 1, sym_heredoc_body, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10781), 1, - sym_in, + STATE(9695), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414820] = 6, + ACTIONS(5750), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + [416459] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, + ACTIONS(1125), 1, sym__start_of_brace_block, - ACTIONS(6929), 1, + ACTIONS(8045), 1, anon_sym_do, + ACTIONS(12618), 1, + aux_sym_proc_token1, STATE(9657), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4561), 2, + STATE(6867), 2, sym_do_end_block, sym_brace_block, - [414841] = 7, + [416483] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - STATE(410), 1, - sym_constant, - STATE(495), 1, - sym_generic_instance_type, + ACTIONS(10287), 1, + anon_sym_def, + STATE(164), 1, + sym__base_method_def, STATE(9658), 1, sym_heredoc_body, + STATE(11656), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414864] = 6, + [416509] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(11936), 1, + sym_identifier, STATE(9659), 1, sym_heredoc_body, + STATE(10854), 1, + sym_fun_param, + STATE(12069), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4640), 2, - sym_do_end_block, - sym_brace_block, - [414885] = 6, + [416535] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, + ACTIONS(12620), 1, + anon_sym_DQUOTE, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, STATE(9660), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [416559] = 7, + ACTIONS(3), 1, sym_comment, - STATE(6899), 2, - sym_do_end_block, - sym_brace_block, - [414906] = 7, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(423), 1, - sym_constant, - STATE(496), 1, - sym_generic_instance_type, + ACTIONS(12622), 1, + anon_sym_DQUOTE, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, STATE(9661), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [414929] = 7, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [416583] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12663), 1, - sym__percent_literal_end, - ACTIONS(12665), 1, - sym__delimited_array_element_start, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12624), 1, + sym_instance_var, STATE(9662), 1, sym_heredoc_body, - STATE(9665), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, + STATE(11804), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414952] = 7, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [416607] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12667), 1, - sym__percent_literal_end, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12626), 1, + sym_instance_var, STATE(9663), 1, sym_heredoc_body, - STATE(9666), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, + STATE(10966), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414975] = 6, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [416631] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12669), 1, - sym_identifier, - ACTIONS(12671), 1, - sym__constant_segment, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12628), 1, + anon_sym_end, STATE(9664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12673), 2, - sym_identifier_method_call, - sym_identifier_assign, - [414996] = 7, + STATE(11862), 2, + sym_elsif, + sym_else, + [416655] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12675), 1, - sym__percent_literal_end, + ACTIONS(11071), 1, + anon_sym_LPAREN2, STATE(9665), 1, sym_heredoc_body, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415019] = 7, + ACTIONS(12630), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [416675] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12677), 1, - sym__percent_literal_end, + ACTIONS(12634), 1, + anon_sym_RPAREN, + ACTIONS(12636), 1, + aux_sym_proc_token1, STATE(9666), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415042] = 7, + ACTIONS(12632), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [416697] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12679), 1, - anon_sym_end, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(12638), 1, + anon_sym_enum, + ACTIONS(12640), 1, + anon_sym_alias, STATE(9667), 1, sym_heredoc_body, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10781), 1, - sym_in, + STATE(11656), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415065] = 6, + [416723] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12642), 1, + sym_instance_var, STATE(9668), 1, sym_heredoc_body, + STATE(11098), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6453), 2, - sym_do_end_block, - sym_brace_block, - [415086] = 4, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [416747] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(583), 1, + sym__start_of_brace_block, + ACTIONS(6763), 1, + anon_sym_do, + ACTIONS(12644), 1, + aux_sym_proc_token1, STATE(9669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6063), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [415103] = 7, + STATE(3693), 2, + sym_do_end_block, + sym_brace_block, + [416771] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12681), 1, - anon_sym_end, STATE(9670), 1, sym_heredoc_body, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10781), 1, - sym_in, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [415126] = 7, + ACTIONS(12315), 5, + sym__delimited_string_contents, + sym__string_literal_end, + sym_ignored_backslash, + sym_string_escape_sequence, + anon_sym_POUND_LBRACE, + [416791] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12683), 1, - sym__percent_literal_end, - STATE(9671), 1, - sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, + ACTIONS(12649), 1, + anon_sym_end, + STATE(10102), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415149] = 6, + ACTIONS(12646), 2, + sym__line_break, + anon_sym_SEMI, + STATE(9671), 2, + sym_heredoc_body, + aux_sym_annotation_def_repeat1, + [416813] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, + ACTIONS(12651), 1, + anon_sym_DQUOTE, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, STATE(9672), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(6625), 2, - sym_do_end_block, - sym_brace_block, - [415170] = 6, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [416837] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(995), 1, - sym__start_of_brace_block, - ACTIONS(8035), 1, - anon_sym_do, + ACTIONS(5719), 1, + anon_sym_RPAREN, + ACTIONS(12257), 1, + sym__start_of_index_operator, + ACTIONS(12653), 1, + anon_sym_DOT, + ACTIONS(12655), 1, + anon_sym_EQ, + STATE(9454), 1, + sym__implicit_index_operator, STATE(9673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6263), 2, - sym_do_end_block, - sym_brace_block, - [415191] = 6, + [416863] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12685), 1, - sym_identifier, - ACTIONS(12687), 1, - sym__constant_segment, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, + ACTIONS(12657), 1, + aux_sym_proc_token1, STATE(9674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12689), 2, - sym_identifier_method_call, - sym_identifier_assign, - [415212] = 4, + STATE(4854), 2, + sym_do_end_block, + sym_brace_block, + [416887] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, + ACTIONS(12659), 1, + aux_sym_proc_token1, STATE(9675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12691), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [415229] = 7, + STATE(6299), 2, + sym_do_end_block, + sym_brace_block, + [416911] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12693), 1, - sym__percent_literal_end, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12661), 1, + sym_instance_var, STATE(9676), 1, sym_heredoc_body, - STATE(9679), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, + STATE(12025), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415252] = 7, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [416935] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12695), 1, - sym__percent_literal_end, + ACTIONS(1075), 1, + sym__start_of_brace_block, + ACTIONS(8089), 1, + anon_sym_do, + ACTIONS(12663), 1, + aux_sym_proc_token1, STATE(9677), 1, sym_heredoc_body, - STATE(9680), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415275] = 6, + STATE(6218), 2, + sym_do_end_block, + sym_brace_block, + [416959] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12669), 1, - sym_identifier, - ACTIONS(12697), 1, - sym__constant_segment, + ACTIONS(12665), 1, + anon_sym_DQUOTE, + STATE(9661), 1, + aux_sym_quoted_symbol_repeat1, STATE(9678), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(12673), 2, - sym_identifier_method_call, - sym_identifier_assign, - [415296] = 7, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [416983] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12699), 1, - sym__percent_literal_end, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + ACTIONS(12667), 1, + aux_sym_proc_token1, STATE(9679), 1, sym_heredoc_body, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415319] = 7, + STATE(4111), 2, + sym_do_end_block, + sym_brace_block, + [417007] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12701), 1, - sym__percent_literal_end, + ACTIONS(12669), 1, + anon_sym_COMMA, + STATE(9450), 1, + aux_sym_argument_list_no_parens_repeat1, STATE(9680), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415342] = 7, + ACTIONS(5888), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + [417029] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(364), 1, - sym_constant, - STATE(452), 1, - sym_generic_instance_type, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12671), 1, + sym_instance_var, STATE(9681), 1, sym_heredoc_body, + STATE(11967), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415365] = 6, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [417053] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - ACTIONS(6971), 1, - anon_sym_do, + ACTIONS(12673), 1, + anon_sym_DQUOTE, + STATE(9636), 1, + aux_sym_quoted_symbol_repeat1, STATE(9682), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(4025), 2, - sym_do_end_block, - sym_brace_block, - [415386] = 7, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [417077] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(408), 1, - sym_constant, - STATE(451), 1, - sym_generic_instance_type, STATE(9683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415409] = 7, + ACTIONS(5970), 5, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_do, + [417095] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12703), 1, - anon_sym_end, STATE(9684), 1, sym_heredoc_body, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10781), 1, - sym_in, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [415432] = 6, + ACTIONS(12315), 5, + sym_heredoc_content, + sym_heredoc_end, + sym_ignored_backslash, + sym_string_escape_sequence, + anon_sym_POUND_LBRACE, + [417115] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12675), 1, + anon_sym_end, STATE(9685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6682), 2, - sym_do_end_block, - sym_brace_block, - [415453] = 4, + STATE(11734), 2, + sym_elsif, + sym_else, + [417139] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12677), 1, + anon_sym_end, STATE(9686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6169), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [415470] = 6, + STATE(11606), 2, + sym_elsif, + sym_else, + [417163] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(713), 1, + ACTIONS(665), 1, sym__start_of_brace_block, - ACTIONS(6971), 1, + ACTIONS(6903), 1, anon_sym_do, + ACTIONS(12679), 1, + aux_sym_proc_token1, STATE(9687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4085), 2, - sym_do_end_block, - sym_brace_block, - [415491] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(713), 1, - sym__start_of_brace_block, - ACTIONS(6971), 1, - anon_sym_do, - STATE(9688), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(4093), 2, + STATE(4691), 2, sym_do_end_block, sym_brace_block, - [415512] = 5, + [417187] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9689), 1, + ACTIONS(12681), 1, + anon_sym_DQUOTE, + STATE(9660), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9688), 1, sym_heredoc_body, - ACTIONS(12705), 4, + ACTIONS(12422), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - anon_sym_DQUOTE, - [415531] = 7, + [417211] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12707), 1, - sym__percent_literal_end, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12683), 1, + anon_sym_end, + STATE(9689), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(11740), 2, + sym_elsif, + sym_else, + [417235] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(12434), 1, + anon_sym_elsif, + ACTIONS(12685), 1, + anon_sym_end, STATE(9690), 1, sym_heredoc_body, - STATE(9693), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415554] = 7, + STATE(11383), 2, + sym_elsif, + sym_else, + [417259] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12709), 1, - sym__percent_literal_end, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12687), 1, + sym_instance_var, STATE(9691), 1, sym_heredoc_body, - STATE(9694), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, + STATE(12197), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415577] = 6, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [417283] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12711), 1, - sym_identifier, - ACTIONS(12713), 1, - sym__constant_segment, + ACTIONS(8544), 1, + anon_sym_COMMA, + STATE(9680), 1, + aux_sym_argument_list_no_parens_repeat1, STATE(9692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12715), 2, - sym_identifier_method_call, - sym_identifier_assign, - [415598] = 7, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + [417305] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12717), 1, - sym__percent_literal_end, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, + ACTIONS(12689), 1, + aux_sym_proc_token1, STATE(9693), 1, sym_heredoc_body, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415621] = 7, + STATE(4502), 2, + sym_do_end_block, + sym_brace_block, + [417329] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12719), 1, - sym__percent_literal_end, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6687), 1, + anon_sym_do, + ACTIONS(12691), 1, + aux_sym_proc_token1, STATE(9694), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415644] = 6, + STATE(3447), 2, + sym_do_end_block, + sym_brace_block, + [417353] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(8107), 1, - anon_sym_do, + ACTIONS(8544), 1, + anon_sym_COMMA, + STATE(9450), 1, + aux_sym_argument_list_no_parens_repeat1, STATE(9695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6709), 2, - sym_do_end_block, - sym_brace_block, - [415665] = 7, + ACTIONS(5856), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + [417375] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12721), 1, - anon_sym_class, - ACTIONS(12723), 1, - anon_sym_struct, - ACTIONS(12725), 1, - anon_sym_def, - STATE(8285), 1, - sym__base_method_def, + ACTIONS(583), 1, + sym__start_of_brace_block, + ACTIONS(6763), 1, + anon_sym_do, + ACTIONS(12693), 1, + aux_sym_proc_token1, STATE(9696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415688] = 4, + STATE(3722), 2, + sym_do_end_block, + sym_brace_block, + [417399] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12695), 1, + anon_sym_DQUOTE, + STATE(9637), 1, + aux_sym_quoted_symbol_repeat1, STATE(9697), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + ACTIONS(12422), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [417423] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6239), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [415705] = 6, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - ACTIONS(8099), 1, - anon_sym_do, STATE(9698), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(5579), 2, - sym_do_end_block, - sym_brace_block, - [415726] = 7, + ACTIONS(12697), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + ACTIONS(12699), 3, + sym__delimited_string_contents, + sym__percent_literal_end, + anon_sym_POUND_LBRACE, + [417445] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12727), 1, - anon_sym_end, + ACTIONS(12703), 1, + anon_sym_LPAREN, + ACTIONS(12705), 1, + aux_sym_top_level_fun_def_token1, STATE(9699), 1, sym_heredoc_body, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415749] = 6, + ACTIONS(12701), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [417467] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12731), 1, - anon_sym_EQ, - ACTIONS(12733), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, + ACTIONS(12707), 1, + aux_sym_proc_token1, STATE(9700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12729), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [415770] = 6, + STATE(3123), 2, + sym_do_end_block, + sym_brace_block, + [417491] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - ACTIONS(8099), 1, - anon_sym_do, + ACTIONS(12709), 1, + anon_sym_end, + STATE(9671), 1, + aux_sym_annotation_def_repeat1, STATE(9701), 1, sym_heredoc_body, + STATE(10102), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5501), 2, - sym_do_end_block, - sym_brace_block, - [415791] = 4, + ACTIONS(12446), 2, + sym__line_break, + anon_sym_SEMI, + [417515] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(10729), 1, + aux_sym_integer_token2, + ACTIONS(12711), 1, + sym_instance_var, STATE(9702), 1, sym_heredoc_body, + STATE(11479), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6360), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [415808] = 6, + ACTIONS(10737), 2, + sym_unary_plus, + sym_unary_minus, + [417539] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - sym__start_of_brace_block, - ACTIONS(8099), 1, - anon_sym_do, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(334), 1, + sym_constant, + STATE(368), 1, + sym_generic_type, STATE(9703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5512), 2, - sym_do_end_block, - sym_brace_block, - [415829] = 4, + [417562] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12713), 1, + sym_identifier, + ACTIONS(12715), 1, + sym__constant_segment, STATE(9704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12735), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [415846] = 4, + ACTIONS(12717), 2, + sym_identifier_method_call, + sym_identifier_assign, + [417583] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, STATE(9705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4861), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [415863] = 6, + STATE(4723), 2, + sym_do_end_block, + sym_brace_block, + [417604] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12737), 1, - sym_identifier, - ACTIONS(12739), 1, - sym__constant_segment, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, STATE(9706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12741), 2, - sym_identifier_method_call, - sym_identifier_assign, - [415884] = 7, + STATE(4742), 2, + sym_do_end_block, + sym_brace_block, + [417625] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12743), 1, + ACTIONS(12719), 1, sym__percent_literal_end, + ACTIONS(12721), 1, + sym__delimited_array_element_start, STATE(9707), 1, sym_heredoc_body, - STATE(9712), 1, + STATE(9710), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, + STATE(10751), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415907] = 7, + [417648] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, + ACTIONS(12721), 1, sym__delimited_array_element_start, - ACTIONS(12745), 1, + ACTIONS(12723), 1, sym__percent_literal_end, STATE(9708), 1, sym_heredoc_body, - STATE(9713), 1, + STATE(9711), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, + STATE(10851), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415930] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12737), 1, - sym_identifier, - ACTIONS(12747), 1, - sym__constant_segment, - STATE(9709), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(12741), 2, - sym_identifier_method_call, - sym_identifier_assign, - [415951] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(314), 1, - sym_constant, - STATE(370), 1, - sym_generic_type, - STATE(9710), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [415974] = 6, + [417671] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12697), 1, - sym__constant_segment, - ACTIONS(12737), 1, + ACTIONS(12725), 1, sym_identifier, - STATE(9711), 1, + ACTIONS(12727), 1, + sym__constant_segment, + STATE(9709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12741), 2, + ACTIONS(12729), 2, sym_identifier_method_call, sym_identifier_assign, - [415995] = 7, + [417692] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, + ACTIONS(12721), 1, sym__delimited_array_element_start, - ACTIONS(12749), 1, + ACTIONS(12731), 1, sym__percent_literal_end, - STATE(9712), 1, + STATE(9710), 1, sym_heredoc_body, - STATE(9858), 1, + STATE(9760), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, + STATE(10751), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416018] = 7, + [417715] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, + ACTIONS(12721), 1, sym__delimited_array_element_start, - ACTIONS(12751), 1, + ACTIONS(12733), 1, sym__percent_literal_end, - STATE(9713), 1, + STATE(9711), 1, sym_heredoc_body, - STATE(9955), 1, + STATE(9762), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, + STATE(10851), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416041] = 6, + [417738] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11980), 1, - anon_sym_EQ, - ACTIONS(11982), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, + STATE(9712), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(3996), 2, + sym_do_end_block, + sym_brace_block, + [417759] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, + STATE(9713), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(6843), 2, + sym_do_end_block, + sym_brace_block, + [417780] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, STATE(9714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11978), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [416062] = 7, + STATE(3020), 2, + sym_do_end_block, + sym_brace_block, + [417801] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(363), 1, - sym_constant, - STATE(372), 1, - sym_generic_type, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, STATE(9715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416085] = 4, + STATE(6871), 2, + sym_do_end_block, + sym_brace_block, + [417822] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, STATE(9716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12753), 4, - sym__delimited_string_contents, - sym__delimited_array_element_end, - sym_ignored_backslash, - aux_sym_percent_literal_array_word_token1, - [416102] = 6, + STATE(6675), 2, + sym_do_end_block, + sym_brace_block, + [417843] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12755), 1, - sym_identifier, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(12735), 1, + anon_sym_end, STATE(9717), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12757), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416123] = 7, + [417866] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12759), 1, - sym__percent_literal_end, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(12737), 1, + anon_sym_end, STATE(9718), 1, sym_heredoc_body, - STATE(9759), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416146] = 6, + [417889] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12761), 1, - sym_identifier, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, STATE(9719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12763), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416167] = 7, + STATE(6318), 2, + sym_do_end_block, + sym_brace_block, + [417910] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12765), 1, - sym__percent_literal_end, + ACTIONS(995), 1, + sym__start_of_brace_block, + ACTIONS(7983), 1, + anon_sym_do, STATE(9720), 1, sym_heredoc_body, - STATE(9763), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416190] = 6, + STATE(6322), 2, + sym_do_end_block, + sym_brace_block, + [417931] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12767), 1, - sym_identifier, - ACTIONS(12769), 1, - sym__constant_segment, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12739), 1, + sym__percent_literal_end, STATE(9721), 1, sym_heredoc_body, + STATE(9753), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12771), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416211] = 7, + [417954] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12773), 1, - anon_sym_class, - ACTIONS(12775), 1, - anon_sym_struct, - ACTIONS(12777), 1, - anon_sym_def, - STATE(8665), 1, - sym__base_method_def, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(329), 1, + sym_constant, + STATE(438), 1, + sym_generic_type, STATE(9722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416234] = 6, + [417977] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, - sym__start_of_brace_block, - ACTIONS(5714), 1, - anon_sym_do, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(320), 1, + sym_constant, + STATE(396), 1, + sym_generic_type, STATE(9723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2559), 2, - sym_do_end_block, - sym_brace_block, - [416255] = 6, + [418000] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12669), 1, - sym_identifier, - ACTIONS(12779), 1, - sym__constant_segment, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12741), 1, + sym__percent_literal_end, STATE(9724), 1, sym_heredoc_body, + STATE(9727), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12673), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416276] = 6, + [418023] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12697), 1, - sym__constant_segment, - ACTIONS(12767), 1, - sym_identifier, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12743), 1, + sym__percent_literal_end, STATE(9725), 1, sym_heredoc_body, + STATE(9728), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12771), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416297] = 6, + [418046] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12781), 1, + ACTIONS(12725), 1, sym_identifier, - ACTIONS(12783), 1, + ACTIONS(12745), 1, sym__constant_segment, STATE(9726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12785), 2, + ACTIONS(12729), 2, sym_identifier_method_call, sym_identifier_assign, - [416318] = 4, + [418067] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12747), 1, + sym__percent_literal_end, STATE(9727), 1, sym_heredoc_body, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12787), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [416335] = 7, + [418090] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12789), 1, - anon_sym_end, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12749), 1, + sym__percent_literal_end, STATE(9728), 1, sym_heredoc_body, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10781), 1, - sym_in, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416358] = 6, + [418113] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12791), 1, - sym_identifier, - ACTIONS(12793), 1, - sym__constant_segment, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, STATE(9729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12795), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416379] = 4, + STATE(4159), 2, + sym_do_end_block, + sym_brace_block, + [418134] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(339), 1, + sym_constant, + STATE(402), 1, + sym_generic_type, STATE(9730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12797), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [416396] = 6, + [418157] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12799), 1, - sym_identifier, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, STATE(9731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12801), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416417] = 6, + STATE(3150), 2, + sym_do_end_block, + sym_brace_block, + [418178] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12803), 1, - sym_identifier, + ACTIONS(443), 1, + sym__start_of_brace_block, + ACTIONS(6672), 1, + anon_sym_do, STATE(9732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12805), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416438] = 6, + STATE(4201), 2, + sym_do_end_block, + sym_brace_block, + [418199] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12807), 1, - sym_identifier, + ACTIONS(713), 1, + sym__start_of_brace_block, + ACTIONS(6920), 1, + anon_sym_do, STATE(9733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12809), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416459] = 6, + STATE(4004), 2, + sym_do_end_block, + sym_brace_block, + [418220] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12811), 1, - sym_identifier, - STATE(9734), 1, - sym_heredoc_body, + ACTIONS(12753), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12813), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416480] = 6, + ACTIONS(12751), 2, + anon_sym_RPAREN, + anon_sym_DASH_GT, + STATE(9734), 2, + sym_heredoc_body, + aux_sym_proc_type_repeat1, + [418239] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12815), 1, - sym_identifier, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(12756), 1, + anon_sym_end, STATE(9735), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12817), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416501] = 6, + [418262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12781), 1, - sym_identifier, - ACTIONS(12819), 1, - sym__constant_segment, STATE(9736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12785), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416522] = 6, + ACTIONS(12758), 4, + sym__delimited_string_contents, + sym__delimited_array_element_end, + sym_ignored_backslash, + aux_sym_percent_literal_array_word_token1, + [418279] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12697), 1, - sym__constant_segment, - ACTIONS(12781), 1, - sym_identifier, + ACTIONS(713), 1, + sym__start_of_brace_block, + ACTIONS(6920), 1, + anon_sym_do, STATE(9737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12785), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416543] = 6, + STATE(3900), 2, + sym_do_end_block, + sym_brace_block, + [418300] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12821), 1, - sym_identifier, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12760), 1, + sym__percent_literal_end, STATE(9738), 1, sym_heredoc_body, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12823), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416564] = 6, + [418323] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12791), 1, - sym_identifier, - ACTIONS(12825), 1, - sym__constant_segment, + ACTIONS(713), 1, + sym__start_of_brace_block, + ACTIONS(6920), 1, + anon_sym_do, STATE(9739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12795), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416585] = 6, + STATE(3926), 2, + sym_do_end_block, + sym_brace_block, + [418344] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12697), 1, - sym__constant_segment, - ACTIONS(12791), 1, - sym_identifier, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12762), 1, + sym__percent_literal_end, STATE(9740), 1, sym_heredoc_body, + STATE(9750), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12795), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416606] = 6, + [418367] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12827), 1, - sym_identifier, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12764), 1, + sym__percent_literal_end, STATE(9741), 1, sym_heredoc_body, + STATE(9751), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12829), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416627] = 6, + [418390] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(12831), 1, - sym_identifier, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12766), 1, + sym__percent_literal_end, STATE(9742), 1, sym_heredoc_body, + STATE(9747), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12833), 2, - sym_identifier_method_call, - sym_identifier_assign, - [416648] = 7, + [418413] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(448), 1, - sym_constant, - STATE(560), 1, - sym_generic_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12768), 1, + sym__percent_literal_end, STATE(9743), 1, sym_heredoc_body, + STATE(9748), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416671] = 7, + [418436] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(12713), 1, + sym_identifier, + ACTIONS(12745), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(376), 1, - sym_constant, - STATE(501), 1, - sym_generic_type, STATE(9744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416694] = 7, + ACTIONS(12717), 2, + sym_identifier_method_call, + sym_identifier_assign, + [418457] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(12770), 1, + sym_identifier, + ACTIONS(12772), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(329), 1, - sym_constant, - STATE(377), 1, - sym_generic_type, STATE(9745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416717] = 7, + ACTIONS(12774), 2, + sym_identifier_method_call, + sym_identifier_assign, + [418478] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(348), 1, - sym_constant, - STATE(378), 1, - sym_generic_type, + ACTIONS(12776), 1, + anon_sym_SEMI, STATE(9746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416740] = 6, + ACTIONS(11528), 3, + anon_sym_end, + anon_sym_include, + sym_identifier, + [418497] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12778), 1, + sym__percent_literal_end, STATE(9747), 1, sym_heredoc_body, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4473), 2, - sym_do_end_block, - sym_brace_block, - [416761] = 7, + [418520] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(344), 1, - sym_constant, - STATE(379), 1, - sym_generic_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12780), 1, + sym__percent_literal_end, STATE(9748), 1, sym_heredoc_body, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416784] = 7, + [418543] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(352), 1, - sym_constant, - STATE(381), 1, - sym_generic_type, + ACTIONS(1125), 1, + sym__start_of_brace_block, + ACTIONS(8045), 1, + anon_sym_do, STATE(9749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416807] = 4, + STATE(6881), 2, + sym_do_end_block, + sym_brace_block, + [418564] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12782), 1, + sym__percent_literal_end, STATE(9750), 1, sym_heredoc_body, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12835), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [416824] = 7, + [418587] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(382), 1, - sym_constant, - STATE(536), 1, - sym_generic_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12784), 1, + sym__percent_literal_end, STATE(9751), 1, sym_heredoc_body, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416847] = 7, + [418610] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(321), 1, - sym_constant, - STATE(383), 1, - sym_generic_type, + ACTIONS(12788), 1, + anon_sym_end, + STATE(9746), 1, + sym__terminator, STATE(9752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416870] = 7, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [418631] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(324), 1, - sym_constant, - STATE(385), 1, - sym_generic_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12790), 1, + sym__percent_literal_end, STATE(9753), 1, sym_heredoc_body, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416893] = 7, + [418654] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(343), 1, - sym_constant, - STATE(430), 1, - sym_generic_type, + ACTIONS(12794), 1, + aux_sym_top_level_fun_def_token1, STATE(9754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416916] = 4, + ACTIONS(12792), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [418673] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12796), 1, + sym__percent_literal_end, STATE(9755), 1, sym_heredoc_body, + STATE(9913), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8693), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [416933] = 7, + [418696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(333), 1, - sym_constant, - STATE(431), 1, - sym_generic_type, STATE(9756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416956] = 6, + ACTIONS(12798), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [418713] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10481), 1, - anon_sym_end, - STATE(8614), 1, - sym__terminator, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12800), 1, + sym__percent_literal_end, STATE(9757), 1, sym_heredoc_body, + STATE(10027), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [416977] = 6, + [418736] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, + ACTIONS(945), 1, sym__start_of_brace_block, - ACTIONS(5714), 1, + ACTIONS(7897), 1, anon_sym_do, STATE(9758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2530), 2, + STATE(5613), 2, sym_do_end_block, sym_brace_block, - [416998] = 7, + [418757] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12839), 1, - sym__percent_literal_end, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(12802), 1, + anon_sym_end, STATE(9759), 1, sym_heredoc_body, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417021] = 7, + [418780] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(386), 1, - sym_constant, - STATE(561), 1, - sym_generic_instance_type, - STATE(9760), 1, - sym_heredoc_body, + ACTIONS(12804), 1, + sym__percent_literal_end, + ACTIONS(12806), 1, + sym__delimited_array_element_start, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417044] = 7, + STATE(9760), 2, + sym_heredoc_body, + aux_sym_string_array_percent_literal_repeat1, + [418801] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(387), 1, - sym_constant, - STATE(459), 1, - sym_generic_instance_type, + ACTIONS(945), 1, + sym__start_of_brace_block, + ACTIONS(7897), 1, + anon_sym_do, STATE(9761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417067] = 5, + STATE(5687), 2, + sym_do_end_block, + sym_brace_block, + [418822] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12843), 1, - anon_sym_EQ, - STATE(9762), 1, - sym_heredoc_body, + ACTIONS(12809), 1, + sym__percent_literal_end, + ACTIONS(12811), 1, + sym__delimited_array_element_start, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12841), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [417086] = 7, + STATE(9762), 2, + sym_heredoc_body, + aux_sym_symbol_array_percent_literal_repeat1, + [418843] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12845), 1, - sym__percent_literal_end, + ACTIONS(945), 1, + sym__start_of_brace_block, + ACTIONS(7897), 1, + anon_sym_do, STATE(9763), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417109] = 7, + STATE(5691), 2, + sym_do_end_block, + sym_brace_block, + [418864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(320), 1, - sym_constant, - STATE(389), 1, - sym_generic_type, + ACTIONS(12814), 1, + anon_sym_SEMI, STATE(9764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417132] = 7, + ACTIONS(11543), 3, + anon_sym_end, + anon_sym_include, + sym_identifier, + [418883] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(12816), 1, + sym_identifier, + ACTIONS(12818), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(336), 1, - sym_constant, - STATE(390), 1, - sym_generic_type, STATE(9765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417155] = 7, + ACTIONS(12820), 2, + sym_identifier_method_call, + sym_identifier_assign, + [418904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(391), 1, - sym_constant, - STATE(455), 1, - sym_generic_instance_type, STATE(9766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417178] = 7, + ACTIONS(6522), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [418921] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(392), 1, - sym_constant, - STATE(457), 1, - sym_generic_instance_type, + ACTIONS(12822), 1, + anon_sym_end, + STATE(9764), 1, + sym__terminator, STATE(9767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417201] = 6, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [418942] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(301), 1, + ACTIONS(583), 1, sym__start_of_brace_block, - ACTIONS(5714), 1, + ACTIONS(6763), 1, anon_sym_do, STATE(9768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2631), 2, + STATE(3694), 2, sym_do_end_block, sym_brace_block, - [417222] = 7, + [418963] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(12745), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(394), 1, - sym_constant, - STATE(458), 1, - sym_generic_instance_type, + ACTIONS(12816), 1, + sym_identifier, STATE(9769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417245] = 7, + ACTIONS(12820), 2, + sym_identifier_method_call, + sym_identifier_assign, + [418984] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(395), 1, + STATE(400), 1, sym_constant, - STATE(564), 1, + STATE(539), 1, sym_generic_instance_type, STATE(9770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417268] = 7, + [419007] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12847), 1, - anon_sym_RPAREN, - ACTIONS(12849), 1, - anon_sym_COMMA, STATE(9771), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417291] = 7, + ACTIONS(5166), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [419024] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(396), 1, - sym_constant, - STATE(462), 1, - sym_generic_instance_type, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(12824), 1, + anon_sym_end, STATE(9772), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417314] = 7, + [419047] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(397), 1, - sym_constant, - STATE(463), 1, - sym_generic_instance_type, + ACTIONS(12828), 1, + anon_sym_SEMI, STATE(9773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417337] = 6, + ACTIONS(12826), 3, + anon_sym_end, + anon_sym_include, + sym_identifier, + [419066] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12853), 1, - anon_sym_COMMA, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12830), 1, + sym__percent_literal_end, + STATE(9738), 1, + aux_sym_string_array_percent_literal_repeat1, STATE(9774), 1, sym_heredoc_body, - STATE(9872), 1, - aux_sym_asm_operands_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12851), 2, - anon_sym_RPAREN, - anon_sym_COLON2, - [417358] = 4, + [419089] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12832), 1, + sym_identifier, STATE(9775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6461), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [417375] = 6, + ACTIONS(12834), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419110] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12855), 1, - anon_sym_end, - ACTIONS(12857), 1, - anon_sym_in, - STATE(10781), 1, - sym_in, + ACTIONS(12838), 1, + anon_sym_EQ, + ACTIONS(12840), 1, + aux_sym_top_level_fun_def_token1, + STATE(9776), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9776), 2, - sym_heredoc_body, - aux_sym_exhaustive_case_repeat1, - [417396] = 7, + ACTIONS(12836), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [419131] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12860), 1, - sym__percent_literal_end, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12842), 1, + sym_identifier, STATE(9777), 1, sym_heredoc_body, - STATE(9785), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417419] = 7, + ACTIONS(12844), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419152] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12862), 1, - sym__percent_literal_end, + ACTIONS(12060), 1, + anon_sym_EQ, + ACTIONS(12062), 1, + aux_sym_top_level_fun_def_token1, STATE(9778), 1, sym_heredoc_body, - STATE(9786), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417442] = 6, + ACTIONS(12058), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [419173] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12853), 1, - anon_sym_COMMA, - STATE(9774), 1, - aux_sym_asm_operands_repeat1, + ACTIONS(12846), 1, + sym_identifier, + ACTIONS(12848), 1, + sym__constant_segment, STATE(9779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12864), 2, - anon_sym_RPAREN, - anon_sym_COLON2, - [417463] = 7, + ACTIONS(12850), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419194] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12777), 1, - anon_sym_def, - ACTIONS(12866), 1, - anon_sym_class, - ACTIONS(12868), 1, - anon_sym_struct, - STATE(8580), 1, - sym__base_method_def, + ACTIONS(583), 1, + sym__start_of_brace_block, + ACTIONS(6763), 1, + anon_sym_do, STATE(9780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417486] = 5, + STATE(3740), 2, + sym_do_end_block, + sym_brace_block, + [419215] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12872), 1, - anon_sym_COMMA, + ACTIONS(12745), 1, + sym__constant_segment, + ACTIONS(12846), 1, + sym_identifier, + STATE(9781), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12870), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(9781), 2, - sym_heredoc_body, - aux_sym_named_tuple_type_repeat1, - [417505] = 6, + ACTIONS(12850), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419236] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12685), 1, - sym_identifier, - ACTIONS(12875), 1, - sym__constant_segment, + ACTIONS(12082), 1, + anon_sym_EQ, + ACTIONS(12084), 1, + aux_sym_top_level_fun_def_token1, STATE(9782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12689), 2, - sym_identifier_method_call, - sym_identifier_assign, - [417526] = 7, + ACTIONS(12080), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [419257] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3607), 1, - anon_sym_RBRACK, - ACTIONS(3611), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(12877), 1, - anon_sym_COMMA, STATE(9783), 1, sym_heredoc_body, - STATE(9788), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417549] = 4, + ACTIONS(6397), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [419274] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12852), 1, + sym_identifier, + ACTIONS(12854), 1, + sym__constant_segment, STATE(9784), 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, - [417566] = 7, + ACTIONS(12856), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419295] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12879), 1, - sym__percent_literal_end, + ACTIONS(583), 1, + sym__start_of_brace_block, + ACTIONS(6763), 1, + anon_sym_do, STATE(9785), 1, sym_heredoc_body, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417589] = 7, + STATE(3750), 2, + sym_do_end_block, + sym_brace_block, + [419316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12881), 1, - sym__percent_literal_end, STATE(9786), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417612] = 7, + ACTIONS(8643), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [419333] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(12858), 1, + sym_identifier, + ACTIONS(12860), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(437), 1, - sym_constant, - STATE(530), 1, - sym_generic_instance_type, STATE(9787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417635] = 6, + ACTIONS(12862), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419354] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8821), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(8823), 1, - anon_sym_RBRACK, - ACTIONS(12883), 1, - anon_sym_COMMA, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12864), 1, + sym_identifier, + STATE(9788), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9788), 2, - sym_heredoc_body, - aux_sym_annotation_argument_list_repeat1, - [417656] = 7, + ACTIONS(12866), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419375] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12886), 1, - anon_sym_class, - ACTIONS(12888), 1, - anon_sym_struct, - ACTIONS(12890), 1, - anon_sym_def, - STATE(8002), 1, - sym__base_method_def, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12868), 1, + sym_identifier, STATE(9789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417679] = 6, + ACTIONS(12870), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419396] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12892), 1, - anon_sym_COLON3, - STATE(279), 1, - sym__terminator, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12872), 1, + sym_identifier, STATE(9790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1381), 2, - sym__line_break, - anon_sym_SEMI, - [417700] = 6, + ACTIONS(12874), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419417] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12876), 1, + sym_identifier, STATE(9791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2856), 2, - sym_do_end_block, - sym_brace_block, - [417721] = 6, + ACTIONS(12878), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419438] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12880), 1, + sym_identifier, STATE(9792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3895), 2, - sym_do_end_block, - sym_brace_block, - [417742] = 6, + ACTIONS(12882), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419459] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, + ACTIONS(12852), 1, + sym_identifier, + ACTIONS(12884), 1, + sym__constant_segment, STATE(9793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6147), 2, - sym_do_end_block, - sym_brace_block, - [417763] = 7, + ACTIONS(12856), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419480] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(12745), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(440), 1, - sym_constant, - STATE(542), 1, - sym_generic_instance_type, + ACTIONS(12852), 1, + sym_identifier, STATE(9794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417786] = 7, + ACTIONS(12856), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419501] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12894), 1, - anon_sym_end, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12886), 1, + sym_identifier, STATE(9795), 1, sym_heredoc_body, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417809] = 7, + ACTIONS(12888), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419522] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12265), 1, - sym__constant_segment, - ACTIONS(12267), 1, - anon_sym_COLON_COLON, - ACTIONS(12896), 1, + ACTIONS(12858), 1, sym_identifier, - STATE(9462), 1, - sym_constant, + ACTIONS(12890), 1, + sym__constant_segment, STATE(9796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417832] = 6, + ACTIONS(12862), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419543] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, + ACTIONS(12745), 1, + sym__constant_segment, + ACTIONS(12858), 1, + sym_identifier, STATE(9797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3945), 2, - sym_do_end_block, - sym_brace_block, - [417853] = 7, + ACTIONS(12862), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419564] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12898), 1, - sym__percent_literal_end, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12892), 1, + sym_identifier, STATE(9798), 1, sym_heredoc_body, - STATE(9972), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417876] = 6, + ACTIONS(12894), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419585] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(395), 1, - sym__start_of_brace_block, - ACTIONS(6706), 1, - anon_sym_do, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12896), 1, + sym_identifier, STATE(9799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3958), 2, - sym_do_end_block, - sym_brace_block, - [417897] = 7, + ACTIONS(12898), 2, + sym_identifier_method_call, + sym_identifier_assign, + [419606] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(400), 1, - sym_constant, - STATE(469), 1, - sym_generic_type, + ACTIONS(11344), 1, + anon_sym_RPAREN, + ACTIONS(12900), 1, + anon_sym_COMMA, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417920] = 7, + [419629] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(351), 1, + STATE(369), 1, sym_constant, - STATE(401), 1, + STATE(456), 1, sym_generic_type, STATE(9801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417943] = 7, + [419652] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(323), 1, + STATE(327), 1, sym_constant, - STATE(402), 1, + STATE(370), 1, sym_generic_type, STATE(9802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417966] = 5, + [419675] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12900), 1, - anon_sym_SEMI, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(328), 1, + sym_constant, + STATE(371), 1, + sym_generic_type, STATE(9803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11478), 3, - anon_sym_end, - anon_sym_include, - sym_identifier, - [417985] = 7, + [419698] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(355), 1, - sym_constant, - STATE(403), 1, - sym_generic_type, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, STATE(9804), 1, sym_heredoc_body, + STATE(9907), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418008] = 7, + [419721] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(356), 1, + STATE(348), 1, sym_constant, - STATE(404), 1, + STATE(373), 1, sym_generic_type, STATE(9805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418031] = 7, + [419744] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(405), 1, + STATE(355), 1, sym_constant, - STATE(473), 1, + STATE(374), 1, sym_generic_type, STATE(9806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418054] = 7, + [419767] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(338), 1, - sym_constant, - STATE(406), 1, - sym_generic_type, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9800), 1, + aux_sym_proc_type_repeat1, STATE(9807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418077] = 7, + [419790] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(315), 1, - sym_constant, - STATE(407), 1, - sym_generic_type, + ACTIONS(12904), 1, + anon_sym_end, + STATE(9764), 1, + sym__terminator, STATE(9808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418100] = 7, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [419811] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12902), 1, - sym__percent_literal_end, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(333), 1, + sym_constant, + STATE(365), 1, + sym_generic_type, STATE(9809), 1, sym_heredoc_body, - STATE(9981), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418123] = 6, + [419834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12904), 1, - anon_sym_end, - STATE(9803), 1, - sym__terminator, STATE(9810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [418144] = 7, + ACTIONS(4861), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [419851] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(450), 1, + STATE(375), 1, sym_constant, - STATE(476), 1, - sym_generic_instance_type, + STATE(492), 1, + sym_generic_type, STATE(9811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418167] = 7, + [419874] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(409), 1, + STATE(352), 1, sym_constant, - STATE(477), 1, - sym_generic_instance_type, + STATE(376), 1, + sym_generic_type, STATE(9812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418190] = 7, + [419897] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12906), 1, - sym__percent_literal_end, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(356), 1, + sym_constant, + STATE(378), 1, + sym_generic_type, STATE(9813), 1, sym_heredoc_body, - STATE(9827), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418213] = 7, + [419920] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12908), 1, - sym__percent_literal_end, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(425), 1, + sym_constant, + STATE(486), 1, + sym_generic_instance_type, STATE(9814), 1, sym_heredoc_body, - STATE(9828), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418236] = 7, + [419943] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(331), 1, - sym_constant, - STATE(412), 1, - sym_generic_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12906), 1, + sym__percent_literal_end, STATE(9815), 1, sym_heredoc_body, + STATE(9833), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418259] = 7, + [419966] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(337), 1, - sym_constant, - STATE(413), 1, - sym_generic_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12908), 1, + sym__percent_literal_end, STATE(9816), 1, sym_heredoc_body, + STATE(9837), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418282] = 5, + [419989] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12912), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + ACTIONS(12910), 1, + sym_identifier, STATE(9817), 1, sym_heredoc_body, + STATE(10968), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12910), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [418301] = 7, + [420012] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(414), 1, - sym_constant, - STATE(481), 1, - sym_generic_instance_type, + ACTIONS(253), 1, + sym__start_of_brace_block, + ACTIONS(5677), 1, + anon_sym_do, STATE(9818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418324] = 7, + STATE(3036), 2, + sym_do_end_block, + sym_brace_block, + [420033] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(12846), 1, + sym_identifier, + ACTIONS(12912), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(415), 1, - sym_constant, - STATE(482), 1, - sym_generic_instance_type, STATE(9819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418347] = 7, + ACTIONS(12850), 2, + sym_identifier_method_call, + sym_identifier_assign, + [420054] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(417), 1, + STATE(380), 1, sym_constant, - STATE(483), 1, + STATE(554), 1, sym_generic_instance_type, STATE(9820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418370] = 7, + [420077] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(418), 1, + STATE(381), 1, sym_constant, - STATE(484), 1, + STATE(561), 1, sym_generic_instance_type, STATE(9821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418393] = 6, + [420100] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12685), 1, - sym_identifier, - ACTIONS(12697), 1, + ACTIONS(9859), 1, sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(325), 1, + sym_constant, + STATE(384), 1, + sym_generic_type, STATE(9822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12689), 2, - sym_identifier_method_call, - sym_identifier_assign, - [418414] = 7, + [420123] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12914), 1, - anon_sym_RPAREN, - ACTIONS(12916), 1, - anon_sym_COMMA, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(326), 1, + sym_constant, + STATE(385), 1, + sym_generic_type, STATE(9823), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418437] = 7, + [420146] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(419), 1, - sym_constant, - STATE(488), 1, - sym_generic_instance_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12914), 1, + sym__percent_literal_end, STATE(9824), 1, sym_heredoc_body, + STATE(9848), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418460] = 7, + [420169] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(420), 1, - sym_constant, - STATE(490), 1, - sym_generic_instance_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12916), 1, + sym__percent_literal_end, STATE(9825), 1, sym_heredoc_body, + STATE(9849), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418483] = 7, + [420192] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12918), 1, - anon_sym_end, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(387), 1, + sym_constant, + STATE(462), 1, + sym_generic_instance_type, STATE(9826), 1, sym_heredoc_body, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418506] = 7, + [420215] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12920), 1, - sym__percent_literal_end, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(388), 1, + sym_constant, + STATE(465), 1, + sym_generic_instance_type, STATE(9827), 1, sym_heredoc_body, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418529] = 7, + [420238] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, + ACTIONS(12721), 1, sym__delimited_array_element_start, - ACTIONS(12922), 1, + ACTIONS(12918), 1, sym__percent_literal_end, STATE(9828), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, + STATE(9844), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418552] = 5, + [420261] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12924), 1, - anon_sym_SEMI, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(364), 1, + sym_constant, + STATE(550), 1, + sym_generic_instance_type, STATE(9829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11493), 3, - anon_sym_end, - anon_sym_include, - sym_identifier, - [418571] = 6, + [420284] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12926), 1, - anon_sym_end, - STATE(9829), 1, - sym__terminator, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12920), 1, + sym__percent_literal_end, STATE(9830), 1, sym_heredoc_body, + STATE(9845), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [418592] = 7, + [420307] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12928), 1, - anon_sym_RPAREN, - ACTIONS(12930), 1, - anon_sym_COMMA, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(390), 1, + sym_constant, + STATE(469), 1, + sym_generic_instance_type, STATE(9831), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418615] = 6, + [420330] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(391), 1, + sym_constant, + STATE(475), 1, + sym_generic_instance_type, STATE(9832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4502), 2, - sym_do_end_block, - sym_brace_block, - [418636] = 7, + [420353] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12922), 1, + sym__percent_literal_end, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, STATE(9833), 1, sym_heredoc_body, - STATE(9861), 1, - aux_sym_proc_type_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418659] = 6, + [420376] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - ACTIONS(6841), 1, - anon_sym_do, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(426), 1, + sym_constant, + STATE(494), 1, + sym_generic_instance_type, STATE(9834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3673), 2, - sym_do_end_block, - sym_brace_block, - [418680] = 6, + [420399] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(535), 1, - sym__start_of_brace_block, - ACTIONS(6791), 1, - anon_sym_do, + ACTIONS(12924), 1, + anon_sym_class, + ACTIONS(12926), 1, + anon_sym_struct, + ACTIONS(12928), 1, + anon_sym_def, + STATE(8337), 1, + sym__base_method_def, STATE(9835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4403), 2, - sym_do_end_block, - sym_brace_block, - [418701] = 6, + [420422] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10095), 1, - anon_sym_end, - STATE(8241), 1, - sym__terminator, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(12930), 1, + anon_sym_RPAREN, + ACTIONS(12932), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [418722] = 7, + [420445] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12932), 1, - anon_sym_RPAREN, + ACTIONS(12721), 1, + sym__delimited_array_element_start, ACTIONS(12934), 1, - anon_sym_COMMA, + sym__percent_literal_end, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, STATE(9837), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418745] = 6, + [420468] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5690), 1, - anon_sym_do, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(12936), 1, + anon_sym_end, STATE(9838), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3061), 2, - sym_do_end_block, - sym_brace_block, - [418766] = 5, + [420491] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11007), 1, - anon_sym_LPAREN2, + ACTIONS(12745), 1, + sym__constant_segment, + ACTIONS(12938), 1, + sym_identifier, STATE(9839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10639), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [418785] = 7, + ACTIONS(12940), 2, + sym_identifier_method_call, + sym_identifier_assign, + [420512] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12936), 1, - anon_sym_end, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(392), 1, + sym_constant, + STATE(485), 1, + sym_generic_instance_type, STATE(9840), 1, sym_heredoc_body, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418808] = 7, + [420535] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12938), 1, - anon_sym_RPAREN, - ACTIONS(12940), 1, - anon_sym_COMMA, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(393), 1, + sym_constant, + STATE(493), 1, + sym_generic_instance_type, STATE(9841), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418831] = 7, + [420558] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, + ACTIONS(12816), 1, + sym_identifier, ACTIONS(12942), 1, - anon_sym_end, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, + sym__constant_segment, STATE(9842), 1, sym_heredoc_body, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418854] = 7, + ACTIONS(12820), 2, + sym_identifier_method_call, + sym_identifier_assign, + [420579] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12944), 1, - sym__percent_literal_end, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(345), 1, + sym_constant, + STATE(372), 1, + sym_generic_type, STATE(9843), 1, sym_heredoc_body, - STATE(9892), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418877] = 7, + [420602] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12946), 1, - anon_sym_RPAREN, - ACTIONS(12948), 1, - anon_sym_COMMA, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12944), 1, + sym__percent_literal_end, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, STATE(9844), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418900] = 6, + [420625] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - ACTIONS(6841), 1, - anon_sym_do, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12946), 1, + sym__percent_literal_end, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, STATE(9845), 1, sym_heredoc_body, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3715), 2, - sym_do_end_block, - sym_brace_block, - [418921] = 6, + [420648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(583), 1, - sym__start_of_brace_block, - ACTIONS(6841), 1, - anon_sym_do, STATE(9846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3723), 2, - sym_do_end_block, - sym_brace_block, - [418942] = 4, + ACTIONS(5170), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [420665] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12928), 1, + anon_sym_def, + ACTIONS(12948), 1, + anon_sym_class, + ACTIONS(12950), 1, + anon_sym_struct, + STATE(8331), 1, + sym__base_method_def, STATE(9847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5686), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [418959] = 7, + [420688] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12950), 1, - anon_sym_RPAREN, + ACTIONS(12721), 1, + sym__delimited_array_element_start, ACTIONS(12952), 1, - anon_sym_COMMA, + sym__percent_literal_end, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, STATE(9848), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418982] = 4, + [420711] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12954), 1, + sym__percent_literal_end, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, STATE(9849), 1, sym_heredoc_body, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6391), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [418999] = 6, + [420734] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12956), 1, - anon_sym_EQ, - ACTIONS(12958), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(865), 1, + sym__start_of_brace_block, + ACTIONS(7680), 1, + anon_sym_do, STATE(9850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12954), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [419020] = 7, + STATE(5403), 2, + sym_do_end_block, + sym_brace_block, + [420755] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12960), 1, - sym__percent_literal_end, + ACTIONS(3617), 1, + anon_sym_RBRACK, + ACTIONS(3619), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(12956), 1, + anon_sym_COMMA, STATE(9851), 1, sym_heredoc_body, - STATE(9856), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, + STATE(9895), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419043] = 7, + [420778] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12962), 1, - sym__percent_literal_end, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(12958), 1, + anon_sym_end, STATE(9852), 1, sym_heredoc_body, - STATE(9857), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419066] = 7, + [420801] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12964), 1, - anon_sym_RPAREN, - ACTIONS(12966), 1, - anon_sym_COMMA, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, STATE(9853), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419089] = 7, + STATE(4503), 2, + sym_do_end_block, + sym_brace_block, + [420822] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(12968), 1, - anon_sym_end, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(444), 1, + sym_constant, + STATE(556), 1, + sym_generic_instance_type, STATE(9854), 1, sym_heredoc_body, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419112] = 7, + [420845] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12970), 1, - sym__percent_literal_end, - STATE(9671), 1, - aux_sym_symbol_array_percent_literal_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(448), 1, + sym_constant, + STATE(560), 1, + sym_generic_instance_type, STATE(9855), 1, sym_heredoc_body, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419135] = 7, + [420868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12972), 1, - sym__percent_literal_end, STATE(9856), 1, sym_heredoc_body, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419158] = 7, + ACTIONS(6091), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [420885] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(12974), 1, - sym__percent_literal_end, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(12960), 1, + anon_sym_end, STATE(9857), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419181] = 6, + [420908] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12976), 1, - sym__percent_literal_end, - ACTIONS(12978), 1, - sym__delimited_array_element_start, - STATE(10881), 1, - sym_percent_literal_array_word, + STATE(9858), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9858), 2, - sym_heredoc_body, - aux_sym_string_array_percent_literal_repeat1, - [419202] = 4, + ACTIONS(12962), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [420925] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9859), 1, @@ -704130,1176 +708834,1158 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12981), 4, + ACTIONS(12630), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [419219] = 7, + [420942] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12983), 1, - anon_sym_RPAREN, - ACTIONS(12985), 1, - anon_sym_COMMA, + ACTIONS(865), 1, + sym__start_of_brace_block, + ACTIONS(7680), 1, + anon_sym_do, STATE(9860), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419242] = 7, + STATE(5455), 2, + sym_do_end_block, + sym_brace_block, + [420963] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12987), 1, - anon_sym_RPAREN, - ACTIONS(12989), 1, - anon_sym_COMMA, + ACTIONS(865), 1, + sym__start_of_brace_block, + ACTIONS(7680), 1, + anon_sym_do, STATE(9861), 1, sym_heredoc_body, - STATE(9865), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419265] = 4, + STATE(5464), 2, + sym_do_end_block, + sym_brace_block, + [420984] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8689), 1, + sym__string_literal_start, + ACTIONS(12964), 1, + anon_sym_RPAREN, STATE(9862), 1, sym_heredoc_body, + STATE(10457), 1, + sym_string, + STATE(11589), 1, + sym_asm_options, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5170), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [419282] = 4, + [421007] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12968), 1, + anon_sym_COMMA, STATE(9863), 1, sym_heredoc_body, + STATE(9939), 1, + aux_sym_asm_clobbers_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12991), 4, + ACTIONS(12966), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - [419299] = 4, + anon_sym_COLON2, + [421028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9864), 1, - sym_heredoc_body, + ACTIONS(12972), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12557), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [419316] = 5, + ACTIONS(12970), 2, + anon_sym_RPAREN, + anon_sym_COLON2, + STATE(9864), 2, + sym_heredoc_body, + aux_sym_asm_operands_repeat1, + [421047] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12993), 1, + ACTIONS(12977), 1, anon_sym_COMMA, + STATE(9864), 1, + aux_sym_asm_operands_repeat1, + STATE(9865), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12991), 2, + ACTIONS(12975), 2, anon_sym_RPAREN, - anon_sym_DASH_GT, - STATE(9865), 2, - sym_heredoc_body, - aux_sym_proc_type_repeat1, - [419335] = 7, + anon_sym_COLON2, + [421068] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(12996), 1, - anon_sym_RPAREN, - ACTIONS(12998), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12981), 1, + anon_sym_EQ, + ACTIONS(12983), 1, + aux_sym_top_level_fun_def_token1, STATE(9866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419358] = 6, + ACTIONS(12979), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [421089] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - ACTIONS(7935), 1, - anon_sym_do, STATE(9867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5279), 2, - sym_do_end_block, - sym_brace_block, - [419379] = 7, + ACTIONS(6085), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [421106] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - ACTIONS(13000), 1, - anon_sym_RPAREN, STATE(9868), 1, sym_heredoc_body, - STATE(10550), 1, - sym_string, - STATE(11925), 1, - sym_asm_options, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419402] = 6, + ACTIONS(5729), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [421123] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13004), 1, - anon_sym_COMMA, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(398), 1, + sym_constant, + STATE(525), 1, + sym_generic_type, STATE(9869), 1, sym_heredoc_body, - STATE(9939), 1, - aux_sym_asm_clobbers_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13002), 2, - anon_sym_RPAREN, - anon_sym_COLON2, - [419423] = 7, + [421146] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(13006), 1, - anon_sym_end, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(323), 1, + sym_constant, + STATE(399), 1, + sym_generic_type, STATE(9870), 1, sym_heredoc_body, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419446] = 7, + [421169] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13008), 1, - anon_sym_RPAREN, - ACTIONS(13010), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(344), 1, + sym_constant, + STATE(401), 1, + sym_generic_type, STATE(9871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419469] = 5, + [421192] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13014), 1, - anon_sym_COMMA, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(350), 1, + sym_constant, + STATE(404), 1, + sym_generic_type, + STATE(9872), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13012), 2, - anon_sym_RPAREN, - anon_sym_COLON2, - STATE(9872), 2, - sym_heredoc_body, - aux_sym_asm_operands_repeat1, - [419488] = 6, + [421215] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(354), 1, + sym_constant, + STATE(405), 1, + sym_generic_type, STATE(9873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6104), 2, - sym_do_end_block, - sym_brace_block, - [419509] = 7, + [421238] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8723), 1, - anon_sym_COMMA, - ACTIONS(8725), 1, - anon_sym_RBRACK, - ACTIONS(8727), 1, - anon_sym_RBRACK_QMARK, - STATE(9783), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, STATE(9874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419532] = 7, + STATE(4495), 2, + sym_do_end_block, + sym_brace_block, + [421259] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13017), 1, - anon_sym_RPAREN, - ACTIONS(13019), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(406), 1, + sym_constant, + STATE(453), 1, + sym_generic_type, STATE(9875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419555] = 7, + [421282] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(9839), 1, + ACTIONS(9861), 1, anon_sym_COLON_COLON, - STATE(330), 1, + STATE(359), 1, sym_constant, - STATE(371), 1, + STATE(407), 1, sym_generic_type, STATE(9876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419578] = 6, + [421305] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - ACTIONS(7935), 1, - anon_sym_do, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(317), 1, + sym_constant, + STATE(409), 1, + sym_generic_type, STATE(9877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5426), 2, - sym_do_end_block, - sym_brace_block, - [419599] = 7, + [421328] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, + ACTIONS(12772), 1, sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(357), 1, - sym_constant, - STATE(373), 1, - sym_generic_type, + ACTIONS(12985), 1, + sym_identifier, STATE(9878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419622] = 7, + ACTIONS(12987), 2, + sym_identifier_method_call, + sym_identifier_assign, + [421349] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13021), 1, - anon_sym_RPAREN, - ACTIONS(13023), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12989), 1, + anon_sym_class, + ACTIONS(12991), 1, + anon_sym_struct, + ACTIONS(12993), 1, + anon_sym_def, + STATE(8032), 1, + sym__base_method_def, STATE(9879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419645] = 6, + [421372] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(865), 1, - sym__start_of_brace_block, - ACTIONS(7935), 1, - anon_sym_do, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12995), 1, + sym__percent_literal_end, STATE(9880), 1, sym_heredoc_body, + STATE(9900), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5156), 2, - sym_do_end_block, - sym_brace_block, - [419666] = 7, + [421395] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13025), 1, - anon_sym_RPAREN, - ACTIONS(13027), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(12997), 1, + sym__percent_literal_end, STATE(9881), 1, sym_heredoc_body, + STATE(9902), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419689] = 7, + [421418] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12725), 1, - anon_sym_def, - ACTIONS(13029), 1, - anon_sym_class, - ACTIONS(13031), 1, - anon_sym_struct, - STATE(8301), 1, - sym__base_method_def, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(410), 1, + sym_constant, + STATE(459), 1, + sym_generic_instance_type, STATE(9882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419712] = 7, + [421441] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13033), 1, - anon_sym_RPAREN, - ACTIONS(13035), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(411), 1, + sym_constant, + STATE(564), 1, + sym_generic_instance_type, STATE(9883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419735] = 7, + [421464] = 7, ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13037), 1, - sym__percent_literal_end, + sym__heredoc_body_start, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(343), 1, + sym_constant, + STATE(414), 1, + sym_generic_type, STATE(9884), 1, sym_heredoc_body, - STATE(9890), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419758] = 7, + [421487] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13039), 1, - sym__percent_literal_end, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(353), 1, + sym_constant, + STATE(415), 1, + sym_generic_type, STATE(9885), 1, sym_heredoc_body, - STATE(9891), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419781] = 4, + [421510] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(416), 1, + sym_constant, + STATE(466), 1, + sym_generic_instance_type, STATE(9886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6439), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [419798] = 6, + [421533] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, + ACTIONS(9859), 1, sym__constant_segment, - ACTIONS(13041), 1, - sym_identifier, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(417), 1, + sym_constant, + STATE(467), 1, + sym_generic_instance_type, STATE(9887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13043), 2, - sym_identifier_method_call, - sym_identifier_assign, - [419819] = 7, + [421556] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13045), 1, - anon_sym_RPAREN, - ACTIONS(13047), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(12999), 1, + sym_identifier, STATE(9888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419842] = 7, + ACTIONS(13001), 2, + sym_identifier_method_call, + sym_identifier_assign, + [421577] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13049), 1, - anon_sym_RPAREN, - ACTIONS(13051), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(419), 1, + sym_constant, + STATE(470), 1, + sym_generic_instance_type, STATE(9889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419865] = 7, + [421600] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13053), 1, - sym__percent_literal_end, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(420), 1, + sym_constant, + STATE(471), 1, + sym_generic_instance_type, STATE(9890), 1, sym_heredoc_body, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419888] = 7, + [421623] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13055), 1, - sym__percent_literal_end, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13003), 1, + anon_sym_RPAREN, + ACTIONS(13005), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9891), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419911] = 7, + [421646] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13057), 1, - sym__percent_literal_end, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, + ACTIONS(12396), 1, + sym__constant_segment, + ACTIONS(12398), 1, + anon_sym_COLON_COLON, + ACTIONS(13007), 1, + sym_identifier, + STATE(9496), 1, + sym_constant, STATE(9892), 1, sym_heredoc_body, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419934] = 7, + [421669] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13059), 1, - anon_sym_RPAREN, - ACTIONS(13061), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(421), 1, + sym_constant, + STATE(476), 1, + sym_generic_instance_type, STATE(9893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419957] = 7, + [421692] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13063), 1, - anon_sym_RPAREN, - ACTIONS(13065), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(422), 1, + sym_constant, + STATE(478), 1, + sym_generic_instance_type, STATE(9894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419980] = 7, + [421715] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13067), 1, - anon_sym_RPAREN, - ACTIONS(13069), 1, + ACTIONS(8954), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(8956), 1, + anon_sym_RBRACK, + ACTIONS(13009), 1, anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, - STATE(9895), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420003] = 5, + STATE(9895), 2, + sym_heredoc_body, + aux_sym_annotation_argument_list_repeat1, + [421736] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13073), 1, - anon_sym_SEMI, + ACTIONS(13012), 1, + anon_sym_COLON3, + STATE(281), 1, + sym__terminator, STATE(9896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13071), 3, - anon_sym_end, - anon_sym_include, - sym_identifier, - [420022] = 7, + ACTIONS(1381), 2, + sym__line_break, + anon_sym_SEMI, + [421757] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13075), 1, - anon_sym_RPAREN, - ACTIONS(13077), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(9897), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [420045] = 7, + ACTIONS(13014), 4, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + anon_sym_DQUOTE, + [421776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13079), 1, - anon_sym_RPAREN, - ACTIONS(13081), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(9898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420068] = 7, + ACTIONS(6369), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [421793] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13083), 1, - anon_sym_RPAREN, - ACTIONS(13085), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(301), 1, + sym__start_of_brace_block, + ACTIONS(5673), 1, + anon_sym_do, STATE(9899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420091] = 7, + STATE(2645), 2, + sym_do_end_block, + sym_brace_block, + [421814] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13087), 1, - anon_sym_RPAREN, - ACTIONS(13089), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13016), 1, + sym__percent_literal_end, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, STATE(9900), 1, sym_heredoc_body, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420114] = 7, + [421837] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13091), 1, - anon_sym_RPAREN, - ACTIONS(13093), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(9901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420137] = 7, + ACTIONS(13018), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [421854] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13095), 1, - anon_sym_RPAREN, - ACTIONS(13097), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13020), 1, + sym__percent_literal_end, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, STATE(9902), 1, sym_heredoc_body, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420160] = 6, + [421877] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13099), 1, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(13022), 1, anon_sym_end, - STATE(9803), 1, - sym__terminator, STATE(9903), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [420181] = 7, + [421900] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13101), 1, - anon_sym_RPAREN, - ACTIONS(13103), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(535), 1, + sym__start_of_brace_block, + ACTIONS(6767), 1, + anon_sym_do, STATE(9904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420204] = 7, + STATE(4334), 2, + sym_do_end_block, + sym_brace_block, + [421921] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, + ACTIONS(12902), 1, anon_sym_DASH_GT, - ACTIONS(13105), 1, + ACTIONS(13024), 1, anon_sym_RPAREN, - ACTIONS(13107), 1, + ACTIONS(13026), 1, anon_sym_COMMA, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420227] = 7, + [421944] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13109), 1, - anon_sym_RPAREN, - ACTIONS(13111), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(341), 1, + sym_constant, + STATE(366), 1, + sym_generic_type, STATE(9906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420250] = 7, + [421967] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, + ACTIONS(12902), 1, anon_sym_DASH_GT, - ACTIONS(13113), 1, + ACTIONS(13028), 1, anon_sym_RPAREN, - ACTIONS(13115), 1, + ACTIONS(13030), 1, anon_sym_COMMA, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420273] = 7, + [421990] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, + ACTIONS(12902), 1, anon_sym_DASH_GT, - ACTIONS(13117), 1, + ACTIONS(13032), 1, anon_sym_RPAREN, - ACTIONS(13119), 1, + ACTIONS(13034), 1, anon_sym_COMMA, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420296] = 7, + [422013] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, + ACTIONS(12902), 1, anon_sym_DASH_GT, - ACTIONS(13121), 1, + ACTIONS(13036), 1, anon_sym_RPAREN, - ACTIONS(13123), 1, + ACTIONS(13038), 1, anon_sym_COMMA, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420319] = 6, + [422036] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - ACTIONS(8252), 1, - anon_sym_do, + ACTIONS(13042), 1, + aux_sym_top_level_fun_def_token1, STATE(9910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5887), 2, - sym_do_end_block, - sym_brace_block, - [420340] = 7, + ACTIONS(13040), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [422055] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13125), 1, - anon_sym_RPAREN, - ACTIONS(13127), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1075), 1, + sym__start_of_brace_block, + ACTIONS(8089), 1, + anon_sym_do, STATE(9911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420363] = 7, + STATE(6219), 2, + sym_do_end_block, + sym_brace_block, + [422076] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, + ACTIONS(12902), 1, anon_sym_DASH_GT, - ACTIONS(13129), 1, + ACTIONS(13044), 1, anon_sym_RPAREN, - ACTIONS(13131), 1, + ACTIONS(13046), 1, anon_sym_COMMA, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420386] = 7, + [422099] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13133), 1, - anon_sym_RPAREN, - ACTIONS(13135), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13048), 1, + sym__percent_literal_end, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, STATE(9913), 1, sym_heredoc_body, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420409] = 7, + [422122] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13137), 1, - anon_sym_RPAREN, - ACTIONS(13139), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(13050), 1, + anon_sym_end, STATE(9914), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420432] = 7, + [422145] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13141), 1, - anon_sym_RPAREN, - ACTIONS(13143), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(13052), 1, + anon_sym_end, STATE(9915), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420455] = 7, + [422168] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, + ACTIONS(12902), 1, anon_sym_DASH_GT, - ACTIONS(13145), 1, + ACTIONS(13054), 1, anon_sym_RPAREN, - ACTIONS(13147), 1, + ACTIONS(13056), 1, anon_sym_COMMA, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420478] = 7, + [422191] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13149), 1, - anon_sym_RPAREN, - ACTIONS(13151), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(11071), 1, + anon_sym_LPAREN2, STATE(9917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420501] = 7, + ACTIONS(10675), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [422210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13153), 1, - anon_sym_RPAREN, - ACTIONS(13155), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(9918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420524] = 7, + ACTIONS(12751), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + [422227] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, + ACTIONS(12902), 1, anon_sym_DASH_GT, - ACTIONS(13157), 1, + ACTIONS(13058), 1, anon_sym_RPAREN, - ACTIONS(13159), 1, + ACTIONS(13060), 1, anon_sym_COMMA, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420547] = 7, + [422250] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - ACTIONS(13161), 1, - anon_sym_RPAREN, - ACTIONS(13163), 1, - anon_sym_COMMA, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1075), 1, + sym__start_of_brace_block, + ACTIONS(8089), 1, + anon_sym_do, STATE(9920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420570] = 5, + STATE(6272), 2, + sym_do_end_block, + sym_brace_block, + [422271] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13167), 1, - aux_sym_top_level_fun_def_token1, STATE(9921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13165), 3, - sym__line_break, - anon_sym_SEMI, + ACTIONS(13062), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, anon_sym_end, - [420589] = 6, + anon_sym_else, + [422288] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(817), 1, - sym__start_of_brace_block, - ACTIONS(7800), 1, - anon_sym_do, + ACTIONS(10594), 1, + anon_sym_end, + STATE(8688), 1, + sym__terminator, STATE(9922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6154), 2, - sym_do_end_block, - sym_brace_block, - [420610] = 7, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [422309] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(13169), 1, - anon_sym_end, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13064), 1, + anon_sym_RPAREN, + ACTIONS(13066), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9923), 1, sym_heredoc_body, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420633] = 7, + [422332] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9771), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1075), 1, + sym__start_of_brace_block, + ACTIONS(8089), 1, + anon_sym_do, STATE(9924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420656] = 5, + STATE(6279), 2, + sym_do_end_block, + sym_brace_block, + [422353] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13173), 1, - anon_sym_SEMI, STATE(9925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13171), 3, - anon_sym_end, - anon_sym_include, - sym_identifier, - [420675] = 6, + ACTIONS(6317), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [422370] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - ACTIONS(8252), 1, - anon_sym_do, STATE(9926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5949), 2, - sym_do_end_block, - sym_brace_block, - [420696] = 6, + ACTIONS(5719), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [422387] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1125), 1, - sym__start_of_brace_block, - ACTIONS(8252), 1, - anon_sym_do, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(377), 1, + sym_constant, + STATE(510), 1, + sym_generic_instance_type, STATE(9927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5959), 2, - sym_do_end_block, - sym_brace_block, - [420717] = 6, + [422410] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13175), 1, - anon_sym_end, - STATE(9829), 1, - sym__terminator, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(382), 1, + sym_constant, + STATE(455), 1, + sym_generic_instance_type, STATE(9928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [420738] = 7, + [422433] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5878), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13068), 1, anon_sym_RPAREN, - ACTIONS(12617), 1, - sym__start_of_index_operator, - ACTIONS(13177), 1, - anon_sym_DOT, - STATE(9643), 1, - sym__implicit_index_operator, + ACTIONS(13070), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420761] = 7, + [422456] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13179), 1, - sym__percent_literal_end, STATE(9930), 1, sym_heredoc_body, - STATE(9937), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420784] = 7, + ACTIONS(13072), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [422473] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, + ACTIONS(12721), 1, sym__delimited_array_element_start, - ACTIONS(13181), 1, + ACTIONS(13074), 1, sym__percent_literal_end, STATE(9931), 1, sym_heredoc_body, - STATE(9938), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, + STATE(9937), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420807] = 6, + [422496] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13183), 1, - sym_identifier, - ACTIONS(13185), 1, - sym__constant_segment, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13076), 1, + sym__percent_literal_end, STATE(9932), 1, sym_heredoc_body, + STATE(9938), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13187), 2, - sym_identifier_method_call, - sym_identifier_assign, - [420828] = 7, + [422519] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(13189), 1, + ACTIONS(12938), 1, sym_identifier, + ACTIONS(13078), 1, + sym__constant_segment, STATE(9933), 1, sym_heredoc_body, - STATE(11122), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420851] = 6, + ACTIONS(12940), 2, + sym_identifier_method_call, + sym_identifier_assign, + [422540] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12083), 1, - anon_sym_EQ, - ACTIONS(12085), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(13082), 1, + anon_sym_SEMI, STATE(9934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12081), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [420872] = 4, + ACTIONS(13080), 3, + anon_sym_end, + anon_sym_include, + sym_identifier, + [422559] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(9935), 1, @@ -705307,2316 +709993,2429 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13191), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [420889] = 4, + ACTIONS(13084), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [422576] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13086), 1, + anon_sym_RPAREN, + ACTIONS(13088), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13193), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [420906] = 7, + [422599] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, + ACTIONS(12721), 1, sym__delimited_array_element_start, - ACTIONS(13195), 1, + ACTIONS(13090), 1, sym__percent_literal_end, - STATE(9858), 1, + STATE(9760), 1, aux_sym_string_array_percent_literal_repeat1, STATE(9937), 1, sym_heredoc_body, - STATE(10881), 1, + STATE(10751), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420929] = 7, + [422622] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, + ACTIONS(12721), 1, sym__delimited_array_element_start, - ACTIONS(13197), 1, + ACTIONS(13092), 1, sym__percent_literal_end, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, STATE(9938), 1, sym_heredoc_body, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, + STATE(10851), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420952] = 6, + [422645] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13004), 1, + ACTIONS(12968), 1, anon_sym_COMMA, STATE(9939), 1, sym_heredoc_body, - STATE(10019), 1, + STATE(9995), 1, aux_sym_asm_clobbers_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13199), 2, + ACTIONS(13094), 2, anon_sym_RPAREN, anon_sym_COLON2, - [420973] = 6, + [422666] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12697), 1, - sym__constant_segment, - ACTIONS(13183), 1, - sym_identifier, + ACTIONS(13096), 1, + anon_sym_end, + STATE(9746), 1, + sym__terminator, STATE(9940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13187), 2, - sym_identifier_method_call, - sym_identifier_assign, - [420994] = 6, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [422687] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, + ACTIONS(301), 1, sym__start_of_brace_block, - ACTIONS(5690), 1, + ACTIONS(5673), 1, anon_sym_do, STATE(9941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2884), 2, + STATE(2772), 2, sym_do_end_block, sym_brace_block, - [421015] = 6, + [422708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13201), 1, - anon_sym_end, - STATE(8614), 1, - sym__terminator, + ACTIONS(8956), 1, + anon_sym_RBRACK, STATE(9942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [421036] = 6, + ACTIONS(8954), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + [422727] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - ACTIONS(6711), 1, - anon_sym_do, + ACTIONS(13100), 1, + anon_sym_EQ, STATE(9943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3497), 2, - sym_do_end_block, - sym_brace_block, - [421057] = 7, + ACTIONS(13098), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [422746] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - anon_sym_in, - ACTIONS(13203), 1, - anon_sym_end, - STATE(9776), 1, - aux_sym_exhaustive_case_repeat1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13102), 1, + anon_sym_RPAREN, + ACTIONS(13104), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9944), 1, sym_heredoc_body, - STATE(10781), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421080] = 4, + [422769] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13106), 1, + sym__percent_literal_end, STATE(9945), 1, sym_heredoc_body, + STATE(9952), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6465), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [421097] = 5, + [422792] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13207), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13108), 1, + sym__percent_literal_end, STATE(9946), 1, sym_heredoc_body, + STATE(9953), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13205), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [421116] = 7, + [422815] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(446), 1, - sym_constant, - STATE(556), 1, - sym_generic_instance_type, + ACTIONS(13110), 1, + anon_sym_class, + ACTIONS(13112), 1, + anon_sym_struct, + ACTIONS(13114), 1, + anon_sym_def, + STATE(8687), 1, + sym__base_method_def, STATE(9947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421139] = 6, + [422838] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - ACTIONS(6711), 1, - anon_sym_do, + ACTIONS(12725), 1, + sym_identifier, + ACTIONS(13116), 1, + sym__constant_segment, STATE(9948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3398), 2, - sym_do_end_block, - sym_brace_block, - [421160] = 6, + ACTIONS(12729), 2, + sym_identifier_method_call, + sym_identifier_assign, + [422859] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13209), 1, - anon_sym_end, - STATE(8241), 1, - sym__terminator, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13118), 1, + anon_sym_RPAREN, + ACTIONS(13120), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [421181] = 7, + [422882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(447), 1, - sym_constant, - STATE(558), 1, - sym_generic_instance_type, - STATE(9950), 1, - sym_heredoc_body, + ACTIONS(13124), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421204] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13211), 1, - sym__percent_literal_end, - STATE(9951), 1, + ACTIONS(13122), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(9950), 2, sym_heredoc_body, - STATE(9969), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [421227] = 7, + aux_sym_named_tuple_type_repeat1, + [422901] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13127), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13129), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9823), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, - STATE(9952), 1, + STATE(9951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421250] = 6, + [422924] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(443), 1, - sym__start_of_brace_block, - ACTIONS(6711), 1, - anon_sym_do, - STATE(9953), 1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13131), 1, + sym__percent_literal_end, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9952), 1, sym_heredoc_body, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3416), 2, - sym_do_end_block, - sym_brace_block, - [421271] = 7, + [422947] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, + ACTIONS(12721), 1, sym__delimited_array_element_start, - ACTIONS(13213), 1, + ACTIONS(13133), 1, sym__percent_literal_end, - STATE(9954), 1, - sym_heredoc_body, - STATE(9970), 1, + STATE(9762), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, + STATE(9953), 1, + sym_heredoc_body, + STATE(10851), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421294] = 6, + [422970] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13215), 1, - sym__percent_literal_end, - ACTIONS(13217), 1, - sym__delimited_array_element_start, - STATE(10832), 1, - sym_percent_literal_array_word, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6687), 1, + anon_sym_do, + STATE(9954), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9955), 2, - sym_heredoc_body, - aux_sym_symbol_array_percent_literal_repeat1, - [421315] = 7, + STATE(3363), 2, + sym_do_end_block, + sym_brace_block, + [422991] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13135), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13137), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9831), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, + STATE(9955), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [423014] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13141), 1, + aux_sym_top_level_fun_def_token1, STATE(9956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421338] = 7, + ACTIONS(13139), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [423033] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13143), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13145), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9957), 1, sym_heredoc_body, - STATE(9977), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421361] = 6, + [423056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(13220), 1, - sym_identifier, STATE(9958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13222), 2, - sym_identifier_method_call, - sym_identifier_assign, - [421382] = 5, + ACTIONS(6461), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [423073] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13226), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(13114), 1, + anon_sym_def, + ACTIONS(13147), 1, + anon_sym_class, + ACTIONS(13149), 1, + anon_sym_struct, + STATE(8729), 1, + sym__base_method_def, STATE(9959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13224), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [421401] = 7, + [423096] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13151), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13153), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9837), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421424] = 4, + [423119] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(301), 1, + sym__start_of_brace_block, + ACTIONS(5673), 1, + anon_sym_do, STATE(9961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13228), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [421441] = 7, + STATE(2770), 2, + sym_do_end_block, + sym_brace_block, + [423140] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13155), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13157), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9841), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421464] = 7, + [423163] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9844), 1, - aux_sym_proc_type_repeat1, + ACTIONS(13159), 1, + anon_sym_end, + STATE(8688), 1, + sym__terminator, STATE(9963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421487] = 4, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [423184] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13161), 1, + anon_sym_RPAREN, + ACTIONS(13163), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13230), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [421504] = 7, + [423207] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13232), 1, - sym__percent_literal_end, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13165), 1, + anon_sym_RPAREN, + ACTIONS(13167), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9965), 1, sym_heredoc_body, - STATE(9974), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421527] = 7, + [423230] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13234), 1, - sym__percent_literal_end, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(13169), 1, + anon_sym_end, STATE(9966), 1, sym_heredoc_body, - STATE(9975), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10832), 1, - sym_percent_literal_array_word, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421550] = 7, + [423253] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13171), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13173), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9848), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421573] = 6, + [423276] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - ACTIONS(13236), 1, - sym_identifier, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13175), 1, + anon_sym_RPAREN, + ACTIONS(13177), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13238), 2, - sym_identifier_method_call, - sym_identifier_assign, - [421594] = 7, + [423299] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13240), 1, - sym__percent_literal_end, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13179), 1, + anon_sym_RPAREN, + ACTIONS(13181), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9969), 1, sym_heredoc_body, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421617] = 7, + [423322] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13242), 1, - sym__percent_literal_end, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13183), 1, + anon_sym_RPAREN, + ACTIONS(13185), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9970), 1, sym_heredoc_body, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421640] = 7, + [423345] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13187), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13189), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9853), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421663] = 7, + [423368] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13244), 1, - sym__percent_literal_end, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13191), 1, + anon_sym_RPAREN, + ACTIONS(13193), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9972), 1, sym_heredoc_body, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421686] = 7, + [423391] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13195), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13197), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9860), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421709] = 7, + [423414] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13246), 1, - sym__percent_literal_end, - STATE(9858), 1, - aux_sym_string_array_percent_literal_repeat1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13199), 1, + anon_sym_RPAREN, + ACTIONS(13201), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9974), 1, sym_heredoc_body, - STATE(10881), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421732] = 7, + [423437] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13248), 1, - sym__percent_literal_end, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13203), 1, + anon_sym_RPAREN, + ACTIONS(13205), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9975), 1, sym_heredoc_body, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421755] = 7, + [423460] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13207), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13209), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9866), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421778] = 7, + [423483] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11270), 1, - anon_sym_RPAREN, - ACTIONS(12659), 1, + ACTIONS(12902), 1, anon_sym_DASH_GT, - ACTIONS(13250), 1, + ACTIONS(13211), 1, + anon_sym_RPAREN, + ACTIONS(13213), 1, anon_sym_COMMA, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421801] = 4, + [423506] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13215), 1, + anon_sym_RPAREN, + ACTIONS(13217), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5162), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [421818] = 7, + [423529] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13219), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13221), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9871), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421841] = 7, + [423552] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13223), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13225), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9875), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421864] = 7, + [423575] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12665), 1, - sym__delimited_array_element_start, - ACTIONS(13252), 1, - sym__percent_literal_end, - STATE(9955), 1, - aux_sym_symbol_array_percent_literal_repeat1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13227), 1, + anon_sym_RPAREN, + ACTIONS(13229), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9981), 1, sym_heredoc_body, - STATE(10832), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421887] = 7, + [423598] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13231), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13233), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9879), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421910] = 7, + [423621] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(374), 1, - sym_constant, - STATE(487), 1, - sym_generic_type, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13235), 1, + anon_sym_RPAREN, + ACTIONS(13237), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421933] = 7, + [423644] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13239), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13241), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9881), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421956] = 4, + [423667] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13243), 1, + anon_sym_RPAREN, + ACTIONS(13245), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13254), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [421973] = 7, + [423690] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12890), 1, - anon_sym_def, - ACTIONS(13256), 1, - anon_sym_class, - ACTIONS(13258), 1, - anon_sym_struct, - STATE(7964), 1, - sym__base_method_def, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13247), 1, + anon_sym_RPAREN, + ACTIONS(13249), 1, + anon_sym_COMMA, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(9986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421996] = 7, + [423713] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13251), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13253), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9883), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422019] = 7, + [423736] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13255), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13257), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9888), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(9988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422042] = 7, + [423759] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9889), 1, - aux_sym_proc_type_repeat1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, STATE(9989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422065] = 7, + STATE(6092), 2, + sym_do_end_block, + sym_brace_block, + [423780] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(5650), 1, anon_sym_COMMA, - ACTIONS(12180), 1, + ACTIONS(12348), 1, anon_sym_DASH_GT, - STATE(9893), 1, + STATE(9836), 1, aux_sym_proc_type_repeat1, STATE(9990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422088] = 7, + [423803] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9894), 1, - aux_sym_proc_type_repeat1, STATE(9991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422111] = 7, + ACTIONS(13259), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [423820] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9895), 1, - aux_sym_proc_type_repeat1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6687), 1, + anon_sym_do, STATE(9992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422134] = 7, + STATE(3517), 2, + sym_do_end_block, + sym_brace_block, + [423841] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9897), 1, - aux_sym_proc_type_repeat1, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(13261), 1, + anon_sym_end, STATE(9993), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422157] = 7, + [423864] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9898), 1, - aux_sym_proc_type_repeat1, + ACTIONS(7613), 1, + anon_sym_in, + ACTIONS(13263), 1, + anon_sym_end, STATE(9994), 1, sym_heredoc_body, + STATE(9999), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422180] = 7, + [423887] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(13267), 1, anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9899), 1, - aux_sym_proc_type_repeat1, - STATE(9995), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422203] = 7, + ACTIONS(13265), 2, + anon_sym_RPAREN, + anon_sym_COLON2, + STATE(9995), 2, + sym_heredoc_body, + aux_sym_asm_clobbers_repeat1, + [423906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9900), 1, - aux_sym_proc_type_repeat1, STATE(9996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422226] = 7, + ACTIONS(6267), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [423923] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9901), 1, - aux_sym_proc_type_repeat1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6687), 1, + anon_sym_do, STATE(9997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422249] = 7, + STATE(3573), 2, + sym_do_end_block, + sym_brace_block, + [423944] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9902), 1, - aux_sym_proc_type_repeat1, + ACTIONS(13272), 1, + aux_sym_top_level_fun_def_token1, STATE(9998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422272] = 7, + ACTIONS(13270), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [423963] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9904), 1, - aux_sym_proc_type_repeat1, - STATE(9999), 1, - sym_heredoc_body, + ACTIONS(13274), 1, + anon_sym_end, + ACTIONS(13276), 1, + anon_sym_in, + STATE(10838), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422295] = 7, + STATE(9999), 2, + sym_heredoc_body, + aux_sym_exhaustive_case_repeat1, + [423984] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9905), 1, - aux_sym_proc_type_repeat1, + ACTIONS(13279), 1, + anon_sym_end, + STATE(8289), 1, + sym__terminator, STATE(10000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422318] = 7, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [424005] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9906), 1, - aux_sym_proc_type_repeat1, + ACTIONS(10145), 1, + anon_sym_end, + STATE(8289), 1, + sym__terminator, STATE(10001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422341] = 7, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [424026] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9907), 1, - aux_sym_proc_type_repeat1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, STATE(10002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422364] = 7, + STATE(5879), 2, + sym_do_end_block, + sym_brace_block, + [424047] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9908), 1, - aux_sym_proc_type_repeat1, STATE(10003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422387] = 7, + ACTIONS(13281), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [424064] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9909), 1, - aux_sym_proc_type_repeat1, STATE(10004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422410] = 7, + ACTIONS(13283), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [424081] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9911), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13285), 1, + sym__percent_literal_end, STATE(10005), 1, sym_heredoc_body, + STATE(10017), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422433] = 7, + [424104] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9912), 1, - aux_sym_proc_type_repeat1, + ACTIONS(817), 1, + sym__start_of_brace_block, + ACTIONS(7657), 1, + anon_sym_do, STATE(10006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422456] = 7, + STATE(5915), 2, + sym_do_end_block, + sym_brace_block, + [424125] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9913), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13287), 1, + sym__percent_literal_end, STATE(10007), 1, sym_heredoc_body, + STATE(10019), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422479] = 7, + [424148] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9914), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(450), 1, + sym_constant, + STATE(464), 1, + sym_generic_type, STATE(10008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422502] = 7, + [424171] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9915), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12772), 1, + sym__constant_segment, + ACTIONS(13289), 1, + sym_identifier, STATE(10009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422525] = 7, + ACTIONS(13291), 2, + sym_identifier_method_call, + sym_identifier_assign, + [424192] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9654), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12993), 1, + anon_sym_def, + ACTIONS(13293), 1, + anon_sym_class, + ACTIONS(13295), 1, + anon_sym_struct, + STATE(8014), 1, + sym__base_method_def, STATE(10010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422548] = 7, + [424215] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9916), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(440), 1, + sym_constant, + STATE(562), 1, + sym_generic_type, STATE(10011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422571] = 7, + [424238] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9917), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13297), 1, + sym__percent_literal_end, STATE(10012), 1, sym_heredoc_body, + STATE(10034), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422594] = 7, + [424261] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(5650), 1, anon_sym_COMMA, - ACTIONS(12180), 1, + ACTIONS(12348), 1, anon_sym_DASH_GT, - STATE(9918), 1, + STATE(9891), 1, aux_sym_proc_type_repeat1, STATE(10013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422617] = 7, + [424284] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(5672), 1, + ACTIONS(5650), 1, anon_sym_COMMA, - ACTIONS(12180), 1, + ACTIONS(12348), 1, anon_sym_DASH_GT, - STATE(9919), 1, - aux_sym_proc_type_repeat1, STATE(10014), 1, sym_heredoc_body, + STATE(10068), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422640] = 7, + [424307] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5006), 1, - anon_sym_RPAREN, - ACTIONS(5672), 1, - anon_sym_COMMA, - ACTIONS(12180), 1, - anon_sym_DASH_GT, - STATE(9920), 1, - aux_sym_proc_type_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13299), 1, + sym__percent_literal_end, STATE(10015), 1, sym_heredoc_body, + STATE(10037), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422663] = 5, + [424330] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8823), 1, - anon_sym_RBRACK, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9905), 1, + aux_sym_proc_type_repeat1, STATE(10016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8821), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - [422682] = 7, + [424353] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9837), 1, - sym__constant_segment, - ACTIONS(9839), 1, - anon_sym_COLON_COLON, - STATE(359), 1, - sym_constant, - STATE(380), 1, - sym_generic_type, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13301), 1, + sym__percent_literal_end, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, STATE(10017), 1, sym_heredoc_body, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422705] = 6, + [424376] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(665), 1, - sym__start_of_brace_block, - ACTIONS(6929), 1, - anon_sym_do, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9908), 1, + aux_sym_proc_type_repeat1, STATE(10018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4837), 2, - sym_do_end_block, - sym_brace_block, - [422726] = 5, + [424399] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13262), 1, - anon_sym_COMMA, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13303), 1, + sym__percent_literal_end, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10019), 1, + sym_heredoc_body, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13260), 2, - anon_sym_RPAREN, - anon_sym_COLON2, - STATE(10019), 2, - sym_heredoc_body, - aux_sym_asm_clobbers_repeat1, - [422745] = 6, + [424422] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12767), 1, - sym_identifier, - ACTIONS(13265), 1, - sym__constant_segment, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9909), 1, + aux_sym_proc_type_repeat1, STATE(10020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12771), 2, - sym_identifier_method_call, - sym_identifier_assign, - [422766] = 6, + [424445] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9041), 1, - anon_sym_RPAREN, - ACTIONS(9043), 1, - anon_sym_COMMA, STATE(10021), 1, sym_heredoc_body, - STATE(10363), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422786] = 6, + ACTIONS(13305), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [424462] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4164), 1, - anon_sym_RBRACE, - ACTIONS(13267), 1, + ACTIONS(12977), 1, anon_sym_COMMA, + STATE(9865), 1, + aux_sym_asm_operands_repeat1, STATE(10022), 1, sym_heredoc_body, - STATE(10064), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422806] = 6, + ACTIONS(13307), 2, + anon_sym_RPAREN, + anon_sym_COLON2, + [424483] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(12713), 1, + sym_identifier, + ACTIONS(13309), 1, sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - STATE(9484), 1, - sym_constant, STATE(10023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422826] = 6, + ACTIONS(12717), 2, + sym_identifier_method_call, + sym_identifier_assign, + [424504] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9912), 1, + aux_sym_proc_type_repeat1, STATE(10024), 1, sym_heredoc_body, - STATE(10286), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422846] = 6, + [424527] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, - ACTIONS(13269), 1, + ACTIONS(12348), 1, anon_sym_DASH_GT, - STATE(9865), 1, + STATE(9916), 1, aux_sym_proc_type_repeat1, STATE(10025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422866] = 6, + [424550] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(7622), 1, - sym_constant, + ACTIONS(8707), 1, + anon_sym_COMMA, + ACTIONS(8709), 1, + anon_sym_RBRACK, + ACTIONS(8711), 1, + anon_sym_RBRACK_QMARK, + STATE(9851), 1, + aux_sym_annotation_argument_list_repeat1, STATE(10026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422886] = 6, + [424573] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13271), 1, - anon_sym_end, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13311), 1, + sym__percent_literal_end, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, STATE(10027), 1, sym_heredoc_body, - STATE(11802), 1, - sym_else, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422906] = 6, + [424596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13273), 1, - anon_sym_RBRACE, - ACTIONS(13275), 1, - anon_sym_COMMA, STATE(10028), 1, sym_heredoc_body, - STATE(10180), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422926] = 6, + ACTIONS(13313), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [424613] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3677), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(13277), 1, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9919), 1, + aux_sym_proc_type_repeat1, STATE(10029), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422946] = 4, + [424636] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9923), 1, + aux_sym_proc_type_repeat1, STATE(10030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10809), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [422962] = 6, + [424659] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13279), 1, - anon_sym_RBRACE, - ACTIONS(13281), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9929), 1, + aux_sym_proc_type_repeat1, STATE(10031), 1, sym_heredoc_body, - STATE(10055), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422982] = 6, + [424682] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13283), 1, - anon_sym_RBRACE, - ACTIONS(13285), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9936), 1, + aux_sym_proc_type_repeat1, STATE(10032), 1, sym_heredoc_body, - STATE(10057), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423002] = 6, + [424705] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(13287), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(9859), 1, + sym__constant_segment, + ACTIONS(9861), 1, + anon_sym_COLON_COLON, + STATE(330), 1, + sym_constant, + STATE(428), 1, + sym_generic_type, STATE(10033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423022] = 6, + [424728] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4204), 1, - anon_sym_RPAREN, - ACTIONS(13289), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13315), 1, + sym__percent_literal_end, + STATE(9760), 1, + aux_sym_string_array_percent_literal_repeat1, STATE(10034), 1, sym_heredoc_body, + STATE(10751), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423042] = 6, + [424751] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13291), 1, - anon_sym_RBRACE, - ACTIONS(13293), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9944), 1, + aux_sym_proc_type_repeat1, STATE(10035), 1, sym_heredoc_body, - STATE(10480), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423062] = 6, + [424774] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3699), 1, - anon_sym_RPAREN, - ACTIONS(13295), 1, - anon_sym_COMMA, + ACTIONS(665), 1, + sym__start_of_brace_block, + ACTIONS(6903), 1, + anon_sym_do, STATE(10036), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423082] = 6, + STATE(4857), 2, + sym_do_end_block, + sym_brace_block, + [424795] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13297), 1, - anon_sym_RBRACE, - ACTIONS(13299), 1, - anon_sym_COMMA, + ACTIONS(12721), 1, + sym__delimited_array_element_start, + ACTIONS(13317), 1, + sym__percent_literal_end, + STATE(9762), 1, + aux_sym_symbol_array_percent_literal_repeat1, STATE(10037), 1, sym_heredoc_body, - STATE(10371), 1, - aux_sym_proc_type_repeat1, + STATE(10851), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423102] = 6, + [424818] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4218), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(13301), 1, + ACTIONS(5650), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9949), 1, + aux_sym_proc_type_repeat1, STATE(10038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423122] = 6, + [424841] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9977), 1, - anon_sym_RBRACE, - ACTIONS(13303), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9951), 1, + aux_sym_proc_type_repeat1, STATE(10039), 1, sym_heredoc_body, - STATE(10075), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423142] = 6, + [424864] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3557), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(13305), 1, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9955), 1, + aux_sym_proc_type_repeat1, STATE(10040), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423162] = 6, + [424887] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3737), 1, - anon_sym_RBRACE, - ACTIONS(13307), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9957), 1, + aux_sym_proc_type_repeat1, STATE(10041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423182] = 6, + [424910] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13309), 1, - anon_sym_end, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9960), 1, + aux_sym_proc_type_repeat1, STATE(10042), 1, sym_heredoc_body, - STATE(11510), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423202] = 6, + [424933] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3537), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(13311), 1, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9962), 1, + aux_sym_proc_type_repeat1, STATE(10043), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423222] = 6, + [424956] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11286), 1, - anon_sym_RBRACE, - ACTIONS(13313), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9964), 1, + aux_sym_proc_type_repeat1, STATE(10044), 1, sym_heredoc_body, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423242] = 4, + [424979] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9965), 1, + aux_sym_proc_type_repeat1, STATE(10045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423258] = 6, + [425002] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(7627), 1, - sym_constant, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9967), 1, + aux_sym_proc_type_repeat1, STATE(10046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423278] = 6, + [425025] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3739), 1, - anon_sym_RBRACE, - ACTIONS(13315), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9968), 1, + aux_sym_proc_type_repeat1, STATE(10047), 1, sym_heredoc_body, - STATE(10389), 1, - aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423298] = 6, + [425048] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13317), 1, - anon_sym_end, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9969), 1, + aux_sym_proc_type_repeat1, STATE(10048), 1, sym_heredoc_body, - STATE(11761), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423318] = 4, + [425071] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9970), 1, + aux_sym_proc_type_repeat1, STATE(10049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13319), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [423334] = 6, + [425094] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13321), 1, - anon_sym_end, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9971), 1, + aux_sym_proc_type_repeat1, STATE(10050), 1, sym_heredoc_body, - STATE(11043), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423354] = 4, + [425117] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9972), 1, + aux_sym_proc_type_repeat1, STATE(10051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13323), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [423370] = 6, + [425140] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13325), 1, - anon_sym_end, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9973), 1, + aux_sym_proc_type_repeat1, STATE(10052), 1, sym_heredoc_body, - STATE(11168), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423390] = 6, + [425163] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13327), 1, - anon_sym_end, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9974), 1, + aux_sym_proc_type_repeat1, STATE(10053), 1, sym_heredoc_body, - STATE(11769), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423410] = 6, + [425186] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9975), 1, + aux_sym_proc_type_repeat1, STATE(10054), 1, sym_heredoc_body, - STATE(10851), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423430] = 6, + [425209] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9963), 1, - anon_sym_RBRACE, - ACTIONS(13329), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9976), 1, + aux_sym_proc_type_repeat1, STATE(10055), 1, sym_heredoc_body, - STATE(10075), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423450] = 6, + [425232] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8811), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(8813), 1, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9977), 1, + aux_sym_proc_type_repeat1, STATE(10056), 1, sym_heredoc_body, - STATE(10549), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423470] = 6, + [425255] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11362), 1, - anon_sym_RBRACE, - ACTIONS(13331), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9978), 1, + aux_sym_proc_type_repeat1, STATE(10057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423490] = 6, + [425278] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13333), 1, - anon_sym_RBRACE, - ACTIONS(13335), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9979), 1, + aux_sym_proc_type_repeat1, STATE(10058), 1, sym_heredoc_body, - STATE(10090), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423510] = 6, + [425301] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13337), 1, - anon_sym_RBRACE, - ACTIONS(13339), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9980), 1, + aux_sym_proc_type_repeat1, STATE(10059), 1, sym_heredoc_body, - STATE(10097), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423530] = 6, + [425324] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13341), 1, - anon_sym_end, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9981), 1, + aux_sym_proc_type_repeat1, STATE(10060), 1, sym_heredoc_body, - STATE(11791), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423550] = 6, + [425347] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13343), 1, - anon_sym_RBRACE, - ACTIONS(13345), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, - STATE(10039), 1, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9982), 1, aux_sym_proc_type_repeat1, STATE(10061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423570] = 6, + [425370] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11070), 1, - anon_sym_RBRACE, - ACTIONS(13347), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9983), 1, + aux_sym_proc_type_repeat1, STATE(10062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423590] = 6, + [425393] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4198), 1, - anon_sym_RBRACK, - ACTIONS(13349), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9984), 1, + aux_sym_proc_type_repeat1, STATE(10063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423610] = 5, + [425416] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13351), 1, - anon_sym_RBRACE, - ACTIONS(13353), 1, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9985), 1, + aux_sym_proc_type_repeat1, + STATE(10064), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10064), 2, - sym_heredoc_body, - aux_sym_hash_repeat1, - [423628] = 4, + [425439] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9986), 1, + aux_sym_proc_type_repeat1, STATE(10065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10891), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423644] = 4, + [425462] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9987), 1, + aux_sym_proc_type_repeat1, STATE(10066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423660] = 6, + [425485] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13356), 1, + ACTIONS(5022), 1, anon_sym_RPAREN, - ACTIONS(13358), 1, - anon_sym_COLON2, + ACTIONS(5650), 1, + anon_sym_COMMA, + ACTIONS(12348), 1, + anon_sym_DASH_GT, + STATE(9988), 1, + aux_sym_proc_type_repeat1, STATE(10067), 1, sym_heredoc_body, - STATE(11214), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423680] = 6, + [425508] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13360), 1, - anon_sym_RBRACE, - ACTIONS(13362), 1, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + ACTIONS(13319), 1, + anon_sym_RPAREN, + ACTIONS(13321), 1, anon_sym_COMMA, - STATE(10062), 1, - aux_sym_named_tuple_type_repeat1, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423700] = 4, + [425531] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9133), 1, + anon_sym_RPAREN, + ACTIONS(9135), 1, + anon_sym_COMMA, STATE(10069), 1, sym_heredoc_body, + STATE(10446), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423716] = 4, + [425551] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4294), 1, + anon_sym_RPAREN, + ACTIONS(13323), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10697), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423732] = 6, + [425571] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13364), 1, - anon_sym_end, + ACTIONS(10057), 1, + anon_sym_RBRACE, + ACTIONS(13325), 1, + anon_sym_COMMA, STATE(10071), 1, sym_heredoc_body, - STATE(11823), 1, - sym_ensure, + STATE(10286), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423752] = 4, + [425591] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11316), 1, + anon_sym_RBRACE, + ACTIONS(13327), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10689), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423768] = 4, + [425611] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13331), 1, + aux_sym_top_level_fun_def_token1, STATE(10073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10711), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423784] = 6, + ACTIONS(13329), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [425629] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13366), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13333), 1, anon_sym_end, STATE(10074), 1, sym_heredoc_body, - STATE(11840), 1, - sym_ensure, + STATE(12377), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423804] = 5, + [425649] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12991), 1, - anon_sym_RBRACE, - ACTIONS(13368), 1, + ACTIONS(5024), 1, anon_sym_COMMA, + ACTIONS(13335), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, + STATE(10075), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10075), 2, - sym_heredoc_body, - aux_sym_proc_type_repeat1, - [423822] = 6, + [425669] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13371), 1, - anon_sym_RPAREN, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + STATE(7695), 1, + sym_constant, STATE(10076), 1, sym_heredoc_body, - STATE(11364), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423842] = 4, + [425689] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13337), 1, + anon_sym_RPAREN, + ACTIONS(13339), 1, + anon_sym_COMMA, STATE(10077), 1, sym_heredoc_body, + STATE(10691), 1, + aux_sym__block_body_nested_param_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423858] = 4, + [425709] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13341), 1, + anon_sym_RPAREN, + ACTIONS(13343), 1, + anon_sym_COLON2, STATE(10078), 1, sym_heredoc_body, + STATE(11468), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10763), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423874] = 4, + [425729] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13345), 1, + anon_sym_RBRACE, + ACTIONS(13347), 1, + anon_sym_COMMA, STATE(10079), 1, sym_heredoc_body, + STATE(10111), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10697), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423890] = 4, + [425749] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13349), 1, + anon_sym_RBRACE, + ACTIONS(13351), 1, + anon_sym_COMMA, STATE(10080), 1, sym_heredoc_body, + STATE(10114), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10689), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [423906] = 6, + [425769] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4448), 1, - anon_sym_RBRACE, - ACTIONS(13373), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(13353), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423926] = 6, + [425789] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13375), 1, - anon_sym_RBRACE, - ACTIONS(13377), 1, - anon_sym_COMMA, STATE(10082), 1, sym_heredoc_body, - STATE(10385), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423946] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13379), 1, + ACTIONS(6317), 3, anon_sym_RPAREN, - ACTIONS(13381), 1, + anon_sym_RBRACE, anon_sym_COMMA, + [425805] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13357), 1, + aux_sym_top_level_fun_def_token1, STATE(10083), 1, sym_heredoc_body, - STATE(10440), 1, - aux_sym_type_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423966] = 5, + ACTIONS(13355), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [425823] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13260), 1, + ACTIONS(3581), 1, anon_sym_RPAREN, - ACTIONS(13383), 1, + ACTIONS(13359), 1, anon_sym_COMMA, + STATE(10084), 1, + sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10084), 2, - sym_heredoc_body, - aux_sym_asm_clobbers_repeat1, - [423984] = 4, + [425843] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + STATE(9576), 1, + sym_constant, STATE(10085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10711), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424000] = 4, + [425863] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10086), 1, sym_heredoc_body, + STATE(10151), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10881), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424016] = 6, + [425883] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12139), 1, - anon_sym_COLON2, - ACTIONS(13386), 1, - anon_sym_RPAREN, STATE(10087), 1, sym_heredoc_body, - STATE(11486), 1, - sym__asm_clobbers, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424036] = 6, + ACTIONS(13361), 3, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + [425899] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + STATE(7667), 1, + sym_constant, STATE(10088), 1, sym_heredoc_body, - STATE(10414), 1, - sym_asm_operand, - STATE(12018), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424056] = 6, + [425919] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13388), 1, - anon_sym_end, + ACTIONS(13365), 1, + aux_sym_top_level_fun_def_token1, STATE(10089), 1, sym_heredoc_body, - STATE(11855), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424076] = 6, + ACTIONS(13363), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [425937] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4150), 1, - anon_sym_RBRACE, - ACTIONS(13390), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424096] = 6, + ACTIONS(13367), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [425953] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13392), 1, - anon_sym_LPAREN, - ACTIONS(13394), 1, - anon_sym_RBRACK, + ACTIONS(13369), 1, + anon_sym_RBRACE, + ACTIONS(13371), 1, + anon_sym_COMMA, STATE(10091), 1, sym_heredoc_body, - STATE(10893), 1, - sym_annotation_argument_list, + STATE(10338), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424116] = 4, + [425973] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4344), 1, + anon_sym_RPAREN, + ACTIONS(13373), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6465), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [424132] = 4, + [425993] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13375), 1, + anon_sym_end, STATE(10093), 1, sym_heredoc_body, + STATE(12109), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13396), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424148] = 4, + [426013] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10094), 1, @@ -707624,11 +712423,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10665), 3, + ACTIONS(10921), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [424164] = 4, + [426029] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10095), 1, @@ -707636,11 +712435,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10691), 3, - sym__line_break, - anon_sym_SEMI, + ACTIONS(13377), 3, anon_sym_end, - [424180] = 4, + anon_sym_else, + anon_sym_when, + [426045] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10096), 1, @@ -707648,49 +712447,50 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10693), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424196] = 6, + ACTIONS(13379), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [426061] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11302), 1, - anon_sym_RBRACE, - ACTIONS(13398), 1, - anon_sym_COMMA, STATE(10097), 1, sym_heredoc_body, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424216] = 4, + ACTIONS(10921), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [426077] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(3555), 1, + anon_sym_RPAREN, + ACTIONS(13381), 1, + anon_sym_COMMA, STATE(10098), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10769), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424232] = 4, + [426097] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10099), 1, - sym_heredoc_body, + ACTIONS(13383), 1, + anon_sym_RPAREN, + ACTIONS(13385), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10691), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424248] = 4, + STATE(10099), 2, + sym_heredoc_body, + aux_sym_type_param_list_repeat1, + [426115] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10100), 1, @@ -707698,23 +712498,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10693), 3, + ACTIONS(13388), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [424264] = 4, + [426131] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13390), 1, + anon_sym_RPAREN, + ACTIONS(13392), 1, + anon_sym_COMMA, STATE(10101), 1, sym_heredoc_body, + STATE(10142), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10769), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424280] = 4, + [426151] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10102), 1, @@ -707722,209 +712524,221 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10939), 3, + ACTIONS(13394), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [424296] = 4, + [426167] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13396), 1, + anon_sym_RBRACE, + ACTIONS(13398), 1, + anon_sym_COMMA, STATE(10103), 1, sym_heredoc_body, + STATE(10126), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10941), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424312] = 4, + [426187] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13400), 1, + anon_sym_end, STATE(10104), 1, sym_heredoc_body, + STATE(12107), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10953), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424328] = 6, + [426207] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3691), 1, - anon_sym_RPAREN, - ACTIONS(13400), 1, + ACTIONS(13402), 1, + anon_sym_RBRACE, + ACTIONS(13404), 1, anon_sym_COMMA, STATE(10105), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10128), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424348] = 6, + [426227] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(13402), 1, + ACTIONS(13406), 1, anon_sym_end, STATE(10106), 1, sym_heredoc_body, - STATE(11505), 1, + STATE(11746), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424368] = 4, + [426247] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4322), 1, + anon_sym_RBRACE, + ACTIONS(13408), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13404), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424384] = 6, + [426267] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12093), 1, - anon_sym_COLON2, - ACTIONS(13406), 1, - anon_sym_RPAREN, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + STATE(7668), 1, + sym_constant, STATE(10108), 1, sym_heredoc_body, - STATE(11976), 1, - sym__asm_inputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424404] = 6, + [426287] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13408), 1, - anon_sym_RBRACE, + ACTIONS(3563), 1, + anon_sym_RPAREN, ACTIONS(13410), 1, anon_sym_COMMA, STATE(10109), 1, sym_heredoc_body, - STATE(10561), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424424] = 6, + [426307] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4450), 1, - anon_sym_RBRACK, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, ACTIONS(13412), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + anon_sym_end, STATE(10110), 1, sym_heredoc_body, + STATE(12272), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424444] = 4, + [426327] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9951), 1, + anon_sym_RBRACE, + ACTIONS(13414), 1, + anon_sym_COMMA, STATE(10111), 1, sym_heredoc_body, + STATE(10286), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13414), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [424460] = 4, + [426347] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11914), 1, + anon_sym_PIPE, + ACTIONS(13416), 1, + anon_sym_COMMA, STATE(10112), 1, sym_heredoc_body, + STATE(10709), 1, + aux_sym_block_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13416), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [424476] = 6, + [426367] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13418), 1, - anon_sym_end, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + STATE(9588), 1, + sym_constant, STATE(10113), 1, sym_heredoc_body, - STATE(11881), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424496] = 4, + [426387] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11207), 1, + anon_sym_RBRACE, + ACTIONS(13418), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12870), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [424512] = 6, + [426407] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4270), 1, - anon_sym_RBRACE, + ACTIONS(13343), 1, + anon_sym_COLON2, ACTIONS(13420), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + anon_sym_RPAREN, STATE(10115), 1, sym_heredoc_body, + STATE(11963), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424532] = 6, + [426427] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8851), 1, + ACTIONS(4226), 1, anon_sym_RPAREN, - ACTIONS(8853), 1, + ACTIONS(13422), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10116), 1, sym_heredoc_body, - STATE(10234), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424552] = 6, + [426447] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13422), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13424), 1, anon_sym_end, STATE(10117), 1, sym_heredoc_body, - STATE(11897), 1, - sym_ensure, + STATE(11744), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424572] = 4, + [426467] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10118), 1, @@ -707932,230 +712746,230 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10719), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424588] = 6, + ACTIONS(5729), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426483] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13424), 1, - anon_sym_RBRACE, - ACTIONS(13426), 1, + ACTIONS(5024), 1, anon_sym_COMMA, + ACTIONS(13426), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10119), 1, sym_heredoc_body, - STATE(10162), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424608] = 6, + [426503] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13343), 1, + anon_sym_COLON2, ACTIONS(13428), 1, - anon_sym_RBRACE, - ACTIONS(13430), 1, - anon_sym_COMMA, + anon_sym_RPAREN, STATE(10120), 1, sym_heredoc_body, - STATE(10179), 1, - aux_sym_named_tuple_repeat1, + STATE(11286), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424628] = 6, + [426523] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, + ACTIONS(13430), 1, + anon_sym_RBRACE, ACTIONS(13432), 1, - anon_sym_end, - STATE(10121), 1, - sym_heredoc_body, - STATE(12248), 1, - sym_ensure, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424648] = 6, + STATE(10121), 2, + sym_heredoc_body, + aux_sym_hash_repeat1, + [426541] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13434), 1, - anon_sym_RPAREN, + ACTIONS(13435), 1, + anon_sym_RBRACE, + ACTIONS(13437), 1, + anon_sym_COMMA, STATE(10122), 1, sym_heredoc_body, - STATE(11101), 1, - sym__asm_outputs, + STATE(10158), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424668] = 6, + [426561] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9166), 1, + ACTIONS(9240), 1, anon_sym_RPAREN, - ACTIONS(9168), 1, + ACTIONS(9242), 1, anon_sym_COMMA, - STATE(10029), 1, - aux_sym_annotation_argument_list_repeat1, STATE(10123), 1, sym_heredoc_body, + STATE(10312), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424688] = 4, + [426581] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13439), 1, + anon_sym_RBRACE, + ACTIONS(13441), 1, + anon_sym_COMMA, STATE(10124), 1, sym_heredoc_body, + STATE(10161), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10833), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [424704] = 5, + [426601] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13436), 1, + ACTIONS(4208), 1, anon_sym_RBRACE, - ACTIONS(13438), 1, + ACTIONS(13443), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, + STATE(10125), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10125), 2, - sym_heredoc_body, - aux_sym_named_tuple_repeat1, - [424722] = 6, + [426621] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13441), 1, - anon_sym_end, + ACTIONS(4052), 1, + anon_sym_RBRACE, + ACTIONS(13445), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10126), 1, sym_heredoc_body, - STATE(11141), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424742] = 6, + [426641] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13443), 1, - anon_sym_RPAREN, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13447), 1, + anon_sym_end, STATE(10127), 1, sym_heredoc_body, - STATE(11398), 1, - sym__asm_outputs, + STATE(12364), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424762] = 6, + [426661] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4170), 1, + ACTIONS(11434), 1, anon_sym_RBRACE, - ACTIONS(13445), 1, + ACTIONS(13449), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10128), 1, sym_heredoc_body, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424782] = 6, + [426681] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13447), 1, - anon_sym_end, STATE(10129), 1, sym_heredoc_body, - STATE(11994), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424802] = 4, + ACTIONS(6369), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426697] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4216), 1, + anon_sym_RBRACK, + ACTIONS(13451), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6063), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [424818] = 6, + [426717] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13449), 1, - anon_sym_end, + ACTIONS(4110), 1, + anon_sym_RBRACE, + ACTIONS(13453), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10131), 1, sym_heredoc_body, - STATE(11806), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424838] = 6, + [426737] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(13451), 1, - anon_sym_RPAREN, + ACTIONS(13455), 1, + anon_sym_RBRACE, + ACTIONS(13457), 1, + anon_sym_COMMA, STATE(10132), 1, sym_heredoc_body, - STATE(10831), 1, - sym_block_body_param, + STATE(10598), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424858] = 6, + [426757] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13451), 1, - anon_sym_RPAREN, - ACTIONS(13453), 1, - anon_sym_COMMA, STATE(10133), 1, sym_heredoc_body, - STATE(10430), 1, - aux_sym__block_body_nested_param_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424878] = 6, + ACTIONS(10819), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [426773] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13455), 1, + ACTIONS(9290), 1, anon_sym_RPAREN, + ACTIONS(9292), 1, + anon_sym_COMMA, STATE(10134), 1, sym_heredoc_body, - STATE(10899), 1, - sym__asm_outputs, + STATE(10160), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424898] = 4, + [426793] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10135), 1, @@ -708163,39 +712977,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10807), 3, + ACTIONS(13098), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [424914] = 6, + [426809] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(12659), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13459), 1, + anon_sym_end, STATE(10136), 1, sym_heredoc_body, + STATE(12303), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424934] = 6, + [426829] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3737), 1, - anon_sym_RBRACE, - ACTIONS(13457), 1, + ACTIONS(13461), 1, + anon_sym_RPAREN, + ACTIONS(13463), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10137), 1, sym_heredoc_body, + STATE(10660), 1, + aux_sym_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424954] = 4, + [426849] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10138), 1, @@ -708203,11 +713017,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10863), 3, + ACTIONS(10977), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [424970] = 4, + [426865] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10139), 1, @@ -708215,119 +713029,136 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10773), 3, + ACTIONS(10905), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [424986] = 4, + [426881] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13465), 1, + anon_sym_end, STATE(10140), 1, sym_heredoc_body, + STATE(11438), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425002] = 4, + [426901] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(3787), 1, + anon_sym_RBRACE, + ACTIONS(13467), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425018] = 4, + [426921] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11344), 1, + anon_sym_RPAREN, + ACTIONS(13469), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425034] = 4, + [426941] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10143), 1, - sym_heredoc_body, + ACTIONS(13265), 1, + anon_sym_RPAREN, + ACTIONS(13471), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425050] = 4, + STATE(10143), 2, + sym_heredoc_body, + aux_sym_asm_clobbers_repeat1, + [426959] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13474), 1, + anon_sym_RBRACE, + ACTIONS(13476), 1, + anon_sym_COMMA, STATE(10144), 1, sym_heredoc_body, + STATE(10182), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425066] = 4, + [426979] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13478), 1, + anon_sym_RBRACE, + ACTIONS(13480), 1, + anon_sym_COMMA, STATE(10145), 1, sym_heredoc_body, + STATE(10177), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425082] = 4, + [426999] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13482), 1, + anon_sym_RBRACE, + ACTIONS(13484), 1, + anon_sym_COMMA, STATE(10146), 1, sym_heredoc_body, + STATE(10178), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10759), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425098] = 4, + [427019] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13486), 1, + anon_sym_end, STATE(10147), 1, sym_heredoc_body, + STATE(12132), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10767), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425114] = 4, + [427039] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13488), 1, + anon_sym_RBRACE, + ACTIONS(13490), 1, + anon_sym_COMMA, STATE(10148), 1, sym_heredoc_body, + STATE(10184), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10771), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425130] = 4, + [427059] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10149), 1, @@ -708335,35 +713166,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10773), 3, + ACTIONS(10725), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [425146] = 4, + [427075] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13492), 1, + anon_sym_RBRACE, + ACTIONS(13494), 1, + anon_sym_COMMA, STATE(10150), 1, sym_heredoc_body, + STATE(10288), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425162] = 4, + [427095] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13496), 1, + anon_sym_LPAREN, + ACTIONS(13498), 1, + anon_sym_RBRACK, STATE(10151), 1, sym_heredoc_body, + STATE(12185), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425178] = 4, + [427115] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10152), 1, @@ -708371,49 +713206,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 3, + ACTIONS(10727), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [425194] = 4, + [427131] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(13500), 1, + anon_sym_RPAREN, STATE(10153), 1, sym_heredoc_body, + STATE(12157), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10681), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425210] = 4, + [427151] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13502), 1, + anon_sym_RBRACE, + ACTIONS(13504), 1, + anon_sym_COMMA, STATE(10154), 1, sym_heredoc_body, + STATE(10294), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10685), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425226] = 6, + [427171] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4222), 1, + ACTIONS(4334), 1, anon_sym_RBRACE, - ACTIONS(13459), 1, + ACTIONS(13506), 1, anon_sym_COMMA, - STATE(9575), 1, + STATE(9646), 1, aux_sym_array_repeat1, STATE(10155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425246] = 4, + [427191] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10156), 1, @@ -708421,35 +713260,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10709), 3, + ACTIONS(10759), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [425262] = 4, + [427207] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(13508), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10759), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425278] = 4, + [427227] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4014), 1, + anon_sym_RBRACE, + ACTIONS(13510), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10767), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425294] = 4, + [427247] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10159), 1, @@ -708457,623 +713300,663 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10771), 3, + ACTIONS(10827), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [425310] = 6, + [427263] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4132), 1, - anon_sym_RBRACE, - ACTIONS(13461), 1, + ACTIONS(3651), 1, + anon_sym_RPAREN, + ACTIONS(13512), 1, anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10160), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425330] = 5, + [427283] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13463), 1, + ACTIONS(11225), 1, + anon_sym_RBRACE, + ACTIONS(13514), 1, anon_sym_COMMA, - ACTIONS(13466), 1, - anon_sym_PIPE, + STATE(10161), 1, + sym_heredoc_body, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10161), 2, - sym_heredoc_body, - aux_sym_block_param_list_repeat1, - [425348] = 6, + [427303] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4032), 1, - anon_sym_RBRACE, - ACTIONS(13468), 1, + ACTIONS(4234), 1, + anon_sym_RPAREN, + ACTIONS(13516), 1, anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425368] = 6, + [427323] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9953), 1, - anon_sym_RBRACE, - ACTIONS(13470), 1, - anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13518), 1, + anon_sym_end, STATE(10163), 1, sym_heredoc_body, + STATE(11061), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425388] = 4, + [427343] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4194), 1, + anon_sym_RBRACK, + ACTIONS(13520), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10721), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425404] = 4, + [427363] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13522), 1, + anon_sym_end, STATE(10165), 1, sym_heredoc_body, + STATE(11129), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10731), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425420] = 4, + [427383] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11442), 1, + anon_sym_RBRACE, + ACTIONS(13524), 1, + anon_sym_COMMA, STATE(10166), 1, sym_heredoc_body, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6169), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [425436] = 4, + [427403] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(13526), 1, + anon_sym_RPAREN, STATE(10167), 1, sym_heredoc_body, + STATE(12334), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10733), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425452] = 4, + [427423] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13528), 1, + anon_sym_end, STATE(10168), 1, sym_heredoc_body, + STATE(11508), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10749), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425468] = 4, + [427443] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9196), 1, + anon_sym_RPAREN, + ACTIONS(9198), 1, + anon_sym_COMMA, STATE(10169), 1, sym_heredoc_body, + STATE(10199), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10751), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425484] = 4, + [427463] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13530), 1, + anon_sym_end, STATE(10170), 1, sym_heredoc_body, + STATE(10947), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10753), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425500] = 4, + [427483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13534), 1, + anon_sym_EQ, STATE(10171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10749), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425516] = 4, + ACTIONS(13532), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [427501] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13536), 1, + anon_sym_end, STATE(10172), 1, sym_heredoc_body, + STATE(11452), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10751), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425532] = 4, + [427521] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9212), 1, + anon_sym_RPAREN, + ACTIONS(9214), 1, + anon_sym_COMMA, STATE(10173), 1, sym_heredoc_body, + STATE(10202), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10753), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425548] = 6, + [427541] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(13472), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13538), 1, + anon_sym_end, STATE(10174), 1, sym_heredoc_body, + STATE(11056), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425568] = 4, + [427561] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4324), 1, + anon_sym_RBRACE, + ACTIONS(13540), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10765), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425584] = 5, + [427581] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(276), 1, - sym__terminator, + ACTIONS(12180), 1, + anon_sym_COLON2, + ACTIONS(13542), 1, + anon_sym_RPAREN, STATE(10176), 1, sym_heredoc_body, + STATE(10997), 1, + sym__asm_clobbers, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1381), 2, - sym__line_break, - anon_sym_SEMI, - [425602] = 5, + [427601] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13476), 1, - anon_sym_EQ, + ACTIONS(3976), 1, + anon_sym_RBRACE, + ACTIONS(13544), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13474), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [425620] = 6, + [427621] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13478), 1, - anon_sym_end, + ACTIONS(11438), 1, + anon_sym_RBRACE, + ACTIONS(13546), 1, + anon_sym_COMMA, STATE(10178), 1, sym_heredoc_body, - STATE(11512), 1, - sym_else, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425640] = 6, + [427641] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11107), 1, - anon_sym_RBRACE, - ACTIONS(13480), 1, - anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, STATE(10179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425660] = 6, + ACTIONS(10711), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [427657] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11123), 1, - anon_sym_RBRACE, - ACTIONS(13482), 1, - anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, STATE(10180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425680] = 5, + ACTIONS(10905), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [427673] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13486), 1, - anon_sym_EQ, + ACTIONS(4544), 1, + anon_sym_RBRACK, + ACTIONS(13548), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13484), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [425698] = 6, + [427693] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13488), 1, - anon_sym_end, + ACTIONS(9943), 1, + anon_sym_RBRACE, + ACTIONS(13550), 1, + anon_sym_COMMA, STATE(10182), 1, sym_heredoc_body, - STATE(11160), 1, - sym_else, + STATE(10286), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425718] = 6, + [427713] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4224), 1, - anon_sym_RBRACK, - ACTIONS(13490), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13552), 1, + anon_sym_end, STATE(10183), 1, sym_heredoc_body, + STATE(11790), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425738] = 6, + [427733] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(11128), 1, + anon_sym_RBRACE, + ACTIONS(13554), 1, anon_sym_COMMA, - ACTIONS(13492), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425758] = 6, + [427753] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4184), 1, - anon_sym_RBRACK, - ACTIONS(13494), 1, + ACTIONS(3637), 1, + anon_sym_RPAREN, + ACTIONS(13556), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10185), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425778] = 4, + [427773] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13558), 1, + anon_sym_end, STATE(10186), 1, sym_heredoc_body, + STATE(10954), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6239), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [425794] = 6, + [427793] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8811), 1, + ACTIONS(8940), 1, anon_sym_RPAREN, - ACTIONS(9300), 1, + ACTIONS(8942), 1, anon_sym_COMMA, STATE(10187), 1, sym_heredoc_body, - STATE(10229), 1, + STATE(10233), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425814] = 6, + [427813] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13496), 1, - anon_sym_RBRACE, - ACTIONS(13498), 1, - anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13560), 1, + anon_sym_end, STATE(10188), 1, sym_heredoc_body, - STATE(10261), 1, - aux_sym_proc_type_repeat1, + STATE(11761), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425834] = 6, + [427833] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11129), 1, - anon_sym_RBRACE, - ACTIONS(13500), 1, - anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13562), 1, + anon_sym_end, STATE(10189), 1, sym_heredoc_body, + STATE(11530), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425854] = 6, + [427853] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4212), 1, + ACTIONS(12287), 1, anon_sym_RPAREN, - ACTIONS(13502), 1, + ACTIONS(13564), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + STATE(10099), 1, + aux_sym_type_param_list_repeat1, STATE(10190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425874] = 6, + [427873] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9065), 1, - anon_sym_RPAREN, - ACTIONS(9306), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13566), 1, + anon_sym_end, STATE(10191), 1, sym_heredoc_body, - STATE(10231), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(12154), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425894] = 4, + [427893] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8950), 1, + anon_sym_RPAREN, + ACTIONS(8952), 1, + anon_sym_COMMA, STATE(10192), 1, sym_heredoc_body, + STATE(10237), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10875), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [425910] = 6, + [427913] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13504), 1, - anon_sym_RBRACE, - ACTIONS(13506), 1, - anon_sym_COMMA, + ACTIONS(13496), 1, + anon_sym_LPAREN, + ACTIONS(13568), 1, + anon_sym_RBRACK, STATE(10193), 1, sym_heredoc_body, - STATE(10264), 1, - aux_sym_named_tuple_type_repeat1, + STATE(11213), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425930] = 6, + [427933] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(8935), 1, - sym_constant, + ACTIONS(13570), 1, + anon_sym_RBRACE, + ACTIONS(13572), 1, + anon_sym_COMMA, STATE(10194), 1, sym_heredoc_body, + STATE(10322), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425950] = 6, + [427953] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(13574), 1, + anon_sym_RBRACE, + ACTIONS(13576), 1, anon_sym_COMMA, - ACTIONS(13508), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(10195), 1, sym_heredoc_body, + STATE(10218), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425970] = 6, + [427973] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13510), 1, - anon_sym_end, + ACTIONS(13578), 1, + anon_sym_RBRACE, + ACTIONS(13580), 1, + anon_sym_COMMA, STATE(10196), 1, sym_heredoc_body, - STATE(10970), 1, - sym_else, + STATE(10220), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425990] = 6, + [427993] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13512), 1, - anon_sym_end, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(13582), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10197), 1, sym_heredoc_body, - STATE(11523), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426010] = 4, + [428013] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13584), 1, + anon_sym_end, STATE(10198), 1, sym_heredoc_body, + STATE(11031), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10797), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426026] = 4, + [428033] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(3625), 1, + anon_sym_RPAREN, + ACTIONS(13586), 1, + anon_sym_COMMA, STATE(10199), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10805), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426042] = 6, + [428053] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13514), 1, - anon_sym_RBRACE, - ACTIONS(13516), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13588), 1, + anon_sym_end, STATE(10200), 1, sym_heredoc_body, - STATE(10235), 1, - aux_sym_proc_type_repeat1, + STATE(11041), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426062] = 4, + [428073] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4256), 1, + anon_sym_RPAREN, + ACTIONS(13590), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10815), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426078] = 4, + [428093] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(3559), 1, + anon_sym_RPAREN, + ACTIONS(13592), 1, + anon_sym_COMMA, STATE(10202), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10819), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426094] = 4, + [428113] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(3779), 1, + anon_sym_RBRACE, + ACTIONS(13594), 1, + anon_sym_COMMA, STATE(10203), 1, sym_heredoc_body, + STATE(10451), 1, + aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426110] = 4, + [428133] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10204), 1, sym_heredoc_body, + STATE(10211), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426126] = 4, + [428153] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13596), 1, + anon_sym_end, STATE(10205), 1, sym_heredoc_body, + STATE(12319), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426142] = 4, + [428173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10206), 1, - sym_heredoc_body, + ACTIONS(9506), 1, + anon_sym_RBRACE, + ACTIONS(13598), 1, + anon_sym_COMMA, ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10825), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426158] = 4, + sym__line_continuation, + sym_comment, + STATE(10206), 2, + sym_heredoc_body, + aux_sym_implicit_object_tuple_repeat1, + [428191] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10207), 1, @@ -709081,11 +713964,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 3, - sym__line_break, - anon_sym_SEMI, + ACTIONS(13601), 3, anon_sym_end, - [426174] = 4, + anon_sym_else, + anon_sym_when, + [428207] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10208), 1, @@ -709093,11 +713976,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 3, - sym__line_break, - anon_sym_SEMI, + ACTIONS(13601), 3, anon_sym_end, - [426190] = 4, + anon_sym_else, + anon_sym_when, + [428223] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10209), 1, @@ -709105,11 +713988,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10861), 3, - sym__line_break, - anon_sym_SEMI, + ACTIONS(13601), 3, anon_sym_end, - [426206] = 4, + anon_sym_else, + anon_sym_when, + [428239] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10210), 1, @@ -709117,35 +714000,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10805), 3, - sym__line_break, - anon_sym_SEMI, + ACTIONS(13601), 3, anon_sym_end, - [426222] = 4, + anon_sym_else, + anon_sym_when, + [428255] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13496), 1, + anon_sym_LPAREN, + ACTIONS(13603), 1, + anon_sym_RBRACK, STATE(10211), 1, sym_heredoc_body, + STATE(12149), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10815), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426238] = 4, + [428275] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13605), 1, + anon_sym_end, STATE(10212), 1, sym_heredoc_body, + STATE(11054), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10819), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426254] = 4, + [428295] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10213), 1, @@ -709153,23 +714040,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 3, + ACTIONS(10739), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426270] = 4, + [428311] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13607), 1, + anon_sym_end, STATE(10214), 1, sym_heredoc_body, + STATE(11058), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426286] = 4, + [428331] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10215), 1, @@ -709177,73 +714066,81 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 3, + ACTIONS(10797), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426302] = 4, + [428347] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13609), 1, + anon_sym_end, STATE(10216), 1, sym_heredoc_body, + STATE(11422), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10825), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426318] = 4, + [428367] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13611), 1, + anon_sym_end, STATE(10217), 1, sym_heredoc_body, + STATE(11955), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10839), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426334] = 4, + [428387] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9991), 1, + anon_sym_RBRACE, + ACTIONS(13613), 1, + anon_sym_COMMA, STATE(10218), 1, sym_heredoc_body, + STATE(10286), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10841), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426350] = 6, + [428407] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13518), 1, - anon_sym_RBRACE, - ACTIONS(13520), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13615), 1, + anon_sym_end, STATE(10219), 1, sym_heredoc_body, - STATE(10236), 1, - aux_sym_named_tuple_type_repeat1, + STATE(11076), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426370] = 4, + [428427] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11162), 1, + anon_sym_RBRACE, + ACTIONS(13617), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10861), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426386] = 4, + [428447] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10221), 1, @@ -709251,250 +714148,261 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10927), 3, + ACTIONS(10829), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426402] = 4, + [428463] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13619), 1, + anon_sym_end, STATE(10222), 1, sym_heredoc_body, + STATE(11453), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10929), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426418] = 4, + [428483] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13621), 1, + anon_sym_end, STATE(10223), 1, sym_heredoc_body, + STATE(11081), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10933), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426434] = 6, + [428503] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(13623), 1, + anon_sym_RBRACE, + ACTIONS(13625), 1, anon_sym_COMMA, - ACTIONS(13522), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(10224), 1, sym_heredoc_body, + STATE(10279), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426454] = 4, + [428523] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13627), 1, + anon_sym_RBRACE, + ACTIONS(13629), 1, + anon_sym_COMMA, STATE(10225), 1, sym_heredoc_body, + STATE(10285), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10937), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426470] = 4, + [428543] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(12902), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10937), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426486] = 5, + [428563] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13524), 1, - anon_sym_RPAREN, - ACTIONS(13526), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13631), 1, + anon_sym_end, + STATE(10227), 1, + sym_heredoc_body, + STATE(10974), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10227), 2, - sym_heredoc_body, - aux_sym_type_param_list_repeat1, - [426504] = 6, + [428583] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4508), 1, - anon_sym_RBRACK, - ACTIONS(13529), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13633), 1, + anon_sym_end, STATE(10228), 1, sym_heredoc_body, + STATE(12357), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426524] = 6, + [428603] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3585), 1, - anon_sym_RPAREN, - ACTIONS(13531), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13635), 1, + anon_sym_end, STATE(10229), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10942), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426544] = 6, + [428623] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4230), 1, - anon_sym_RPAREN, - ACTIONS(13533), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(8689), 1, + sym__string_literal_start, STATE(10230), 1, sym_heredoc_body, + STATE(10236), 1, + sym_asm_operand, + STATE(12120), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426564] = 6, + [428643] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3563), 1, - anon_sym_RPAREN, - ACTIONS(13535), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13637), 1, + anon_sym_end, STATE(10231), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10952), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426584] = 6, + [428663] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4512), 1, - anon_sym_RBRACK, - ACTIONS(13537), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(12269), 1, + anon_sym_COLON2, + ACTIONS(13639), 1, + anon_sym_RPAREN, STATE(10232), 1, sym_heredoc_body, + STATE(11594), 1, + sym__asm_options, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426604] = 6, + [428683] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11135), 1, - anon_sym_RBRACE, - ACTIONS(13539), 1, + ACTIONS(3697), 1, + anon_sym_RPAREN, + ACTIONS(13641), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, STATE(10233), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426624] = 6, + [428703] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3635), 1, - anon_sym_RPAREN, - ACTIONS(13541), 1, + ACTIONS(4526), 1, + anon_sym_RBRACK, + ACTIONS(13643), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10234), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426644] = 6, + [428723] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9971), 1, - anon_sym_RBRACE, - ACTIONS(13543), 1, + ACTIONS(4524), 1, + anon_sym_RPAREN, + ACTIONS(13645), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426664] = 6, + [428743] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11139), 1, - anon_sym_RBRACE, - ACTIONS(13545), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, STATE(10236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426684] = 6, + ACTIONS(12970), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON2, + [428759] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4516), 1, - anon_sym_RBRACK, - ACTIONS(13547), 1, + ACTIONS(3551), 1, + anon_sym_RPAREN, + ACTIONS(13647), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10237), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426704] = 4, + [428779] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9086), 1, + anon_sym_RPAREN, + ACTIONS(9088), 1, + anon_sym_COMMA, STATE(10238), 1, sym_heredoc_body, + STATE(10489), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10849), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426720] = 4, + [428799] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13649), 1, + anon_sym_end, STATE(10239), 1, sym_heredoc_body, + STATE(12039), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10851), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426736] = 4, + [428819] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10240), 1, @@ -709502,23 +714410,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10853), 3, + ACTIONS(10933), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426752] = 4, + [428835] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4558), 1, + anon_sym_RBRACK, + ACTIONS(13651), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10855), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426768] = 4, + [428855] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10242), 1, @@ -709526,23 +714436,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 3, + ACTIONS(10799), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426784] = 4, + [428871] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(13653), 1, + anon_sym_RPAREN, STATE(10243), 1, sym_heredoc_body, + STATE(11419), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426800] = 4, + [428891] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10244), 1, @@ -709550,11 +714462,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10851), 3, + ACTIONS(10761), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426816] = 4, + [428907] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10245), 1, @@ -709562,11 +714474,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10853), 3, + ACTIONS(10747), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426832] = 4, + [428923] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10246), 1, @@ -709574,35 +714486,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10855), 3, + ACTIONS(10745), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426848] = 4, + [428939] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13655), 1, + anon_sym_end, STATE(10247), 1, sym_heredoc_body, + STATE(11176), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426864] = 4, + [428959] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4174), 1, + anon_sym_RBRACK, + ACTIONS(13657), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10857), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426880] = 4, + [428979] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10249), 1, @@ -709610,435 +714526,433 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10877), 3, + ACTIONS(10781), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [426896] = 6, + [428995] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4522), 1, - anon_sym_RBRACK, - ACTIONS(13549), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13659), 1, + anon_sym_end, STATE(10250), 1, sym_heredoc_body, + STATE(11179), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426916] = 6, + [429015] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13551), 1, - anon_sym_COMMA, - ACTIONS(13553), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13661), 1, + anon_sym_end, STATE(10251), 1, sym_heredoc_body, - STATE(10501), 1, - aux_sym_c_struct_fields_repeat1, + STATE(11184), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426936] = 4, + [429035] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13663), 1, + anon_sym_end, STATE(10252), 1, sym_heredoc_body, + STATE(11192), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13555), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [426952] = 4, + [429055] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13665), 1, + anon_sym_end, STATE(10253), 1, sym_heredoc_body, + STATE(11197), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5170), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON2, - [426968] = 6, + [429075] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4456), 1, - anon_sym_RPAREN, - ACTIONS(13557), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426988] = 6, + ACTIONS(10745), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429091] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(13559), 1, + ACTIONS(13667), 1, anon_sym_end, STATE(10255), 1, sym_heredoc_body, - STATE(12020), 1, + STATE(11204), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427008] = 6, + [429111] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4526), 1, + ACTIONS(4190), 1, anon_sym_RBRACK, - ACTIONS(13561), 1, + ACTIONS(13669), 1, anon_sym_COMMA, - STATE(9575), 1, + STATE(9646), 1, aux_sym_array_repeat1, STATE(10256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427028] = 4, + [429131] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13671), 1, + anon_sym_end, STATE(10257), 1, sym_heredoc_body, + STATE(11206), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10923), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [427044] = 6, + [429151] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, - sym__constant_segment, - ACTIONS(9709), 1, - anon_sym_COLON_COLON, - STATE(9626), 1, - sym_constant, + ACTIONS(13673), 1, + anon_sym_RBRACE, + ACTIONS(13675), 1, + anon_sym_COMMA, STATE(10258), 1, sym_heredoc_body, + STATE(10328), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427064] = 6, + [429171] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(10091), 1, - sym_constant, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13677), 1, + anon_sym_end, STATE(10259), 1, sym_heredoc_body, + STATE(11211), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427084] = 6, + [429191] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3537), 1, - anon_sym_RPAREN, - ACTIONS(13563), 1, - anon_sym_COMMA, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10260), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11819), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427104] = 6, + [429211] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9895), 1, - anon_sym_RBRACE, - ACTIONS(13565), 1, + ACTIONS(4332), 1, + anon_sym_RBRACK, + ACTIONS(13679), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427124] = 6, + [429231] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(7642), 1, - sym_constant, + ACTIONS(4196), 1, + anon_sym_RBRACK, + ACTIONS(13681), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427144] = 4, + [429251] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(10059), 1, + anon_sym_RBRACE, + ACTIONS(13683), 1, + anon_sym_COMMA, STATE(10263), 1, sym_heredoc_body, + STATE(10286), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10923), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [427160] = 6, + [429271] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11234), 1, - anon_sym_RBRACE, - ACTIONS(13567), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(9754), 1, + sym__constant_segment, + ACTIONS(9756), 1, + anon_sym_COLON_COLON, + STATE(9574), 1, + sym_constant, STATE(10264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427180] = 6, + [429291] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13569), 1, - anon_sym_end, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10265), 1, sym_heredoc_body, - STATE(11556), 1, - sym_ensure, + STATE(10493), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427200] = 6, + [429311] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8843), 1, - anon_sym_RPAREN, - ACTIONS(9053), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13685), 1, + anon_sym_end, STATE(10266), 1, sym_heredoc_body, - STATE(10365), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10988), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427220] = 4, + [429331] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13687), 1, + anon_sym_end, STATE(10267), 1, sym_heredoc_body, + STATE(11022), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10719), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [427236] = 6, + [429351] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13571), 1, - anon_sym_end, + ACTIONS(10083), 1, + anon_sym_RBRACE, + ACTIONS(13689), 1, + anon_sym_COMMA, STATE(10268), 1, sym_heredoc_body, - STATE(11559), 1, - sym_ensure, + STATE(10286), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427256] = 6, + [429371] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9707), 1, + ACTIONS(8460), 1, sym__constant_segment, - ACTIONS(9709), 1, + ACTIONS(8462), 1, anon_sym_COLON_COLON, - STATE(9612), 1, + STATE(7678), 1, sym_constant, STATE(10269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427276] = 6, + [429391] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(13573), 1, + ACTIONS(13691), 1, anon_sym_end, STATE(10270), 1, sym_heredoc_body, - STATE(11172), 1, + STATE(11212), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427296] = 6, + [429411] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(7647), 1, - sym_constant, STATE(10271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427316] = 6, + ACTIONS(10751), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429427] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(13575), 1, + ACTIONS(13693), 1, anon_sym_end, STATE(10272), 1, sym_heredoc_body, - STATE(11572), 1, + STATE(11049), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427336] = 6, + [429447] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13577), 1, - anon_sym_end, + ACTIONS(11376), 1, + anon_sym_RBRACE, + ACTIONS(13695), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10273), 1, sym_heredoc_body, - STATE(11597), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427356] = 6, + [429467] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13579), 1, - anon_sym_end, STATE(10274), 1, sym_heredoc_body, - STATE(11377), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427376] = 6, + ACTIONS(6522), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [429483] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13581), 1, - anon_sym_end, STATE(10275), 1, sym_heredoc_body, - STATE(11992), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427396] = 6, + ACTIONS(10763), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429499] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4114), 1, - anon_sym_RBRACE, - ACTIONS(13583), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427416] = 6, + ACTIONS(10747), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429515] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9057), 1, - anon_sym_RPAREN, - ACTIONS(9176), 1, - anon_sym_COMMA, - STATE(10043), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13697), 1, + anon_sym_end, STATE(10277), 1, sym_heredoc_body, + STATE(11106), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427436] = 6, + [429535] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13585), 1, - anon_sym_end, STATE(10278), 1, sym_heredoc_body, - STATE(12002), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427456] = 6, + ACTIONS(10751), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429551] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13587), 1, - anon_sym_end, + ACTIONS(10099), 1, + anon_sym_RBRACE, + ACTIONS(13699), 1, + anon_sym_COMMA, STATE(10279), 1, sym_heredoc_body, - STATE(11598), 1, - sym_ensure, + STATE(10286), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427476] = 6, + [429571] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4294), 1, - anon_sym_RPAREN, - ACTIONS(13589), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13701), 1, + anon_sym_end, STATE(10280), 1, sym_heredoc_body, + STATE(11033), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427496] = 4, + [429591] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10281), 1, @@ -710046,219 +714960,212 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13591), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [427512] = 6, + ACTIONS(13703), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429607] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13593), 1, - anon_sym_end, + ACTIONS(13705), 1, + anon_sym_RBRACE, + ACTIONS(13707), 1, + anon_sym_COMMA, STATE(10282), 1, sym_heredoc_body, - STATE(12006), 1, - sym_ensure, + STATE(10448), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427532] = 6, + [429627] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13595), 1, - anon_sym_end, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + STATE(7672), 1, + sym_constant, STATE(10283), 1, sym_heredoc_body, - STATE(11420), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427552] = 4, + [429647] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4532), 1, + anon_sym_RBRACE, + ACTIONS(13709), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5686), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [427568] = 6, + [429667] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13597), 1, - anon_sym_end, + ACTIONS(11168), 1, + anon_sym_RBRACE, + ACTIONS(13711), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10285), 1, sym_heredoc_body, - STATE(12007), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427588] = 6, + [429687] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13392), 1, - anon_sym_LPAREN, - ACTIONS(13599), 1, - anon_sym_RBRACK, - STATE(10286), 1, - sym_heredoc_body, - STATE(11367), 1, - sym_annotation_argument_list, + ACTIONS(12751), 1, + anon_sym_RBRACE, + ACTIONS(13713), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427608] = 6, + STATE(10286), 2, + sym_heredoc_body, + aux_sym_proc_type_repeat1, + [429705] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13601), 1, - anon_sym_end, + ACTIONS(13716), 1, + anon_sym_COMMA, + ACTIONS(13718), 1, + aux_sym_top_level_fun_def_token1, STATE(10287), 1, sym_heredoc_body, - STATE(12030), 1, - sym_ensure, + STATE(10367), 1, + aux_sym_c_struct_fields_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427628] = 6, + [429725] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13603), 1, + ACTIONS(4022), 1, anon_sym_RBRACE, - ACTIONS(13605), 1, + ACTIONS(13720), 1, anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10288), 1, sym_heredoc_body, - STATE(10323), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427648] = 6, + [429745] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13607), 1, - anon_sym_end, STATE(10289), 1, sym_heredoc_body, - STATE(12034), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427668] = 6, + ACTIONS(13722), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429761] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13609), 1, - anon_sym_end, + ACTIONS(13724), 1, + anon_sym_RBRACE, + ACTIONS(13726), 1, + anon_sym_COMMA, STATE(10290), 1, sym_heredoc_body, - STATE(11599), 1, - sym_ensure, + STATE(10316), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427688] = 6, + [429781] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13611), 1, - anon_sym_RBRACE, - ACTIONS(13613), 1, - anon_sym_COMMA, STATE(10291), 1, sym_heredoc_body, - STATE(10325), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427708] = 6, + ACTIONS(10763), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429797] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13615), 1, - anon_sym_end, + ACTIONS(13728), 1, + anon_sym_RBRACE, + ACTIONS(13730), 1, + anon_sym_COMMA, STATE(10292), 1, sym_heredoc_body, - STATE(12038), 1, - sym_ensure, + STATE(10317), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427728] = 6, + [429817] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13617), 1, - anon_sym_RBRACE, - ACTIONS(13619), 1, - anon_sym_COMMA, STATE(10293), 1, sym_heredoc_body, - STATE(10317), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427748] = 6, + ACTIONS(10801), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [429833] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13621), 1, + ACTIONS(11334), 1, anon_sym_RBRACE, - ACTIONS(13623), 1, + ACTIONS(13732), 1, anon_sym_COMMA, STATE(10294), 1, sym_heredoc_body, - STATE(10318), 1, + STATE(10722), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427768] = 6, + [429853] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13625), 1, - anon_sym_COMMA, - ACTIONS(13627), 1, - anon_sym_PIPE, STATE(10295), 1, sym_heredoc_body, - STATE(10324), 1, - aux_sym_block_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427788] = 6, + ACTIONS(6091), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [429869] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13629), 1, + ACTIONS(13734), 1, anon_sym_RBRACE, - ACTIONS(13631), 1, + ACTIONS(13736), 1, anon_sym_COMMA, STATE(10296), 1, sym_heredoc_body, - STATE(10424), 1, - aux_sym_hash_repeat1, + STATE(10466), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427808] = 4, + [429889] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10297), 1, @@ -710266,25 +715173,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13633), 3, + ACTIONS(10727), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [427824] = 6, + [429905] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(3974), 1, + anon_sym_RBRACE, + ACTIONS(13738), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10298), 1, sym_heredoc_body, - STATE(10657), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427844] = 4, + [429925] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10299), 1, @@ -710292,805 +715199,796 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13635), 3, + ACTIONS(10711), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [427860] = 6, + [429941] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13637), 1, - anon_sym_end, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + STATE(9130), 1, + sym_constant, STATE(10300), 1, sym_heredoc_body, - STATE(11018), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427880] = 6, + [429961] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13551), 1, + ACTIONS(8911), 1, + anon_sym_RPAREN, + ACTIONS(9156), 1, anon_sym_COMMA, - ACTIONS(13639), 1, - aux_sym_top_level_fun_def_token1, + STATE(10084), 1, + aux_sym_annotation_argument_list_repeat1, STATE(10301), 1, sym_heredoc_body, - STATE(10501), 1, - aux_sym_c_struct_fields_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427900] = 4, + [429981] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13742), 1, + aux_sym_top_level_fun_def_token1, STATE(10302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13641), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [427916] = 6, + ACTIONS(13740), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [429999] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13643), 1, - anon_sym_end, + ACTIONS(10107), 1, + anon_sym_RBRACE, + ACTIONS(13744), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10303), 1, sym_heredoc_body, - STATE(11351), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427936] = 6, + [430019] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13645), 1, - anon_sym_RBRACE, - ACTIONS(13647), 1, - anon_sym_COMMA, STATE(10304), 1, sym_heredoc_body, - STATE(10431), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427956] = 6, + ACTIONS(10765), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [430035] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4172), 1, - anon_sym_RBRACK, - ACTIONS(13649), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(13746), 1, + anon_sym_RPAREN, STATE(10305), 1, sym_heredoc_body, + STATE(11387), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427976] = 4, + [430055] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(13748), 1, + anon_sym_RPAREN, STATE(10306), 1, sym_heredoc_body, + STATE(11994), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13651), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [427992] = 6, + [430075] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13653), 1, - anon_sym_end, STATE(10307), 1, sym_heredoc_body, - STATE(11462), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428012] = 6, + ACTIONS(10767), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [430091] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13655), 1, - anon_sym_end, STATE(10308), 1, sym_heredoc_body, - STATE(11471), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428032] = 6, + ACTIONS(5022), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [430107] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, STATE(10309), 1, sym_heredoc_body, - STATE(11980), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428052] = 6, + ACTIONS(10895), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [430123] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(8940), 1, - sym_constant, + ACTIONS(4506), 1, + anon_sym_RBRACE, + ACTIONS(13750), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428072] = 6, + [430143] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13657), 1, - anon_sym_RPAREN, + ACTIONS(4260), 1, + anon_sym_RBRACE, + ACTIONS(13752), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10311), 1, sym_heredoc_body, - STATE(12062), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428092] = 6, + [430163] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13659), 1, - anon_sym_end, + ACTIONS(3685), 1, + anon_sym_RPAREN, + ACTIONS(13754), 1, + anon_sym_COMMA, STATE(10312), 1, sym_heredoc_body, - STATE(11495), 1, - sym_ensure, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428112] = 6, + [430183] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13661), 1, - anon_sym_RPAREN, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10313), 1, sym_heredoc_body, - STATE(11225), 1, - sym__asm_outputs, + STATE(10603), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428132] = 6, + [430203] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(13756), 1, + anon_sym_RPAREN, STATE(10314), 1, sym_heredoc_body, - STATE(10520), 1, - sym_constant, + STATE(10768), 1, + sym_block_body_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428152] = 5, + [430223] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13663), 1, + ACTIONS(13758), 1, anon_sym_RPAREN, - ACTIONS(13665), 1, + ACTIONS(13760), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, STATE(10315), 2, sym_heredoc_body, - aux_sym_fun_param_list_repeat1, - [428170] = 6, + aux_sym__block_body_nested_param_repeat1, + [430241] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4234), 1, + ACTIONS(4166), 1, anon_sym_RBRACE, - ACTIONS(13668), 1, + ACTIONS(13763), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428190] = 6, + [430261] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4142), 1, + ACTIONS(11180), 1, anon_sym_RBRACE, - ACTIONS(13670), 1, + ACTIONS(13765), 1, anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10317), 1, sym_heredoc_body, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428210] = 6, + [430281] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11187), 1, - anon_sym_RBRACE, - ACTIONS(13672), 1, + ACTIONS(4542), 1, + anon_sym_RBRACK, + ACTIONS(13767), 1, anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428230] = 6, + [430301] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13674), 1, - anon_sym_RPAREN, - ACTIONS(13676), 1, + ACTIONS(13769), 1, + anon_sym_RBRACE, + ACTIONS(13771), 1, anon_sym_COMMA, - STATE(10133), 1, - aux_sym__block_body_nested_param_repeat1, STATE(10319), 1, sym_heredoc_body, + STATE(10354), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428250] = 6, + [430321] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4460), 1, + ACTIONS(13773), 1, anon_sym_RBRACE, - ACTIONS(13678), 1, + ACTIONS(13775), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10320), 1, sym_heredoc_body, + STATE(10355), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428270] = 6, + [430341] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4236), 1, - anon_sym_RBRACK, - ACTIONS(13680), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13777), 1, + anon_sym_end, STATE(10321), 1, sym_heredoc_body, + STATE(11259), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428290] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10322), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6391), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [428306] = 6, + [430361] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4066), 1, + ACTIONS(4012), 1, anon_sym_RBRACE, - ACTIONS(13682), 1, + ACTIONS(13779), 1, anon_sym_COMMA, - STATE(10064), 1, + STATE(10121), 1, aux_sym_hash_repeat1, - STATE(10323), 1, + STATE(10322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428326] = 6, + [430381] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11809), 1, - anon_sym_PIPE, - ACTIONS(13684), 1, - anon_sym_COMMA, - STATE(10161), 1, - aux_sym_block_param_list_repeat1, - STATE(10324), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13781), 1, + anon_sym_end, + STATE(10323), 1, sym_heredoc_body, + STATE(11847), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428346] = 6, + [430401] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11328), 1, - anon_sym_RBRACE, - ACTIONS(13686), 1, - anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, - STATE(10325), 1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13783), 1, + anon_sym_end, + STATE(10324), 1, sym_heredoc_body, + STATE(11266), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428366] = 6, + [430421] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(13688), 1, + ACTIONS(13785), 1, anon_sym_end, - STATE(10326), 1, + STATE(10325), 1, sym_heredoc_body, - STATE(11246), 1, + STATE(11267), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428386] = 6, + [430441] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9312), 1, - anon_sym_RPAREN, - ACTIONS(9314), 1, + ACTIONS(4168), 1, + anon_sym_RBRACK, + ACTIONS(13787), 1, anon_sym_COMMA, - STATE(10327), 1, + STATE(9646), 1, + aux_sym_array_repeat1, + STATE(10326), 1, sym_heredoc_body, - STATE(10349), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428406] = 6, + [430461] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(13690), 1, + ACTIONS(13789), 1, anon_sym_end, - STATE(10328), 1, + STATE(10327), 1, sym_heredoc_body, - STATE(12088), 1, + STATE(11268), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428426] = 6, + [430481] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4462), 1, - anon_sym_RBRACK, - ACTIONS(13692), 1, + ACTIONS(11400), 1, + anon_sym_RBRACE, + ACTIONS(13791), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, - STATE(10329), 1, + STATE(10328), 1, sym_heredoc_body, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428446] = 4, + [430501] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10330), 1, + STATE(10329), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13694), 3, + ACTIONS(10797), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [428462] = 4, + [430517] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10331), 1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13793), 1, + anon_sym_end, + STATE(10330), 1, sym_heredoc_body, + STATE(11273), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10639), 3, - sym__line_break, - anon_sym_SEMI, + [430537] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13795), 1, anon_sym_end, - [428478] = 5, + STATE(10331), 1, + sym_heredoc_body, + STATE(11277), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [430557] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13698), 1, - anon_sym_EQ, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + STATE(10193), 1, + sym_constant, STATE(10332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13696), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [428496] = 6, + [430577] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9080), 1, - anon_sym_RPAREN, - ACTIONS(9320), 1, - anon_sym_COMMA, + STATE(287), 1, + sym__terminator, STATE(10333), 1, sym_heredoc_body, - STATE(10352), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428516] = 5, + ACTIONS(1381), 2, + sym__line_break, + anon_sym_SEMI, + [430595] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13700), 1, - anon_sym_RPAREN, - ACTIONS(13702), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13797), 1, + anon_sym_end, + STATE(10334), 1, + sym_heredoc_body, + STATE(11278), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10334), 2, - sym_heredoc_body, - aux_sym_param_list_repeat1, - [428534] = 5, + [430615] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13707), 1, - aux_sym_top_level_fun_def_token1, STATE(10335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13705), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [428552] = 6, + ACTIONS(10761), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [430631] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13709), 1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13799), 1, anon_sym_end, STATE(10336), 1, sym_heredoc_body, - STATE(11501), 1, - sym_else, + STATE(12200), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428572] = 4, + [430651] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9125), 1, + anon_sym_RPAREN, + ACTIONS(9127), 1, + anon_sym_COMMA, STATE(10337), 1, sym_heredoc_body, + STATE(10438), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5162), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON2, - [428588] = 6, + [430671] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8915), 1, - anon_sym_RPAREN, - ACTIONS(8917), 1, + ACTIONS(11422), 1, + anon_sym_RBRACE, + ACTIONS(13801), 1, anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10338), 1, sym_heredoc_body, - STATE(10368), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428608] = 5, + [430691] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13713), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(4236), 1, + anon_sym_RBRACE, + ACTIONS(13803), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13711), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [428626] = 6, + [430711] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13715), 1, - anon_sym_end, + ACTIONS(9306), 1, + anon_sym_RPAREN, + ACTIONS(9308), 1, + anon_sym_COMMA, STATE(10340), 1, sym_heredoc_body, - STATE(10973), 1, - sym_ensure, + STATE(10416), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428646] = 6, + [430731] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13717), 1, - anon_sym_end, + ACTIONS(13807), 1, + anon_sym_EQ, STATE(10341), 1, sym_heredoc_body, - STATE(12089), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428666] = 6, + ACTIONS(13805), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [430749] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13719), 1, - anon_sym_RBRACE, - ACTIONS(13721), 1, - anon_sym_COMMA, STATE(10342), 1, sym_heredoc_body, - STATE(10422), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428686] = 6, + ACTIONS(10781), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [430765] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13723), 1, - anon_sym_RBRACE, - ACTIONS(13725), 1, - anon_sym_COMMA, STATE(10343), 1, sym_heredoc_body, - STATE(10427), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428706] = 6, + ACTIONS(10739), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [430781] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13727), 1, - anon_sym_end, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(13809), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10344), 1, sym_heredoc_body, - STATE(11280), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428726] = 6, + [430801] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(13729), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13811), 1, + anon_sym_end, STATE(10345), 1, sym_heredoc_body, + STATE(11299), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428746] = 6, + [430821] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13731), 1, - anon_sym_RBRACE, - ACTIONS(13733), 1, - anon_sym_COMMA, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(13813), 1, + anon_sym_RPAREN, STATE(10346), 1, sym_heredoc_body, - STATE(10355), 1, - aux_sym_proc_type_repeat1, + STATE(11410), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428766] = 6, + [430841] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13735), 1, - anon_sym_RBRACE, - ACTIONS(13737), 1, - anon_sym_COMMA, STATE(10347), 1, sym_heredoc_body, - STATE(10356), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428786] = 6, + ACTIONS(6461), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [430857] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(13739), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13815), 1, + anon_sym_end, STATE(10348), 1, sym_heredoc_body, + STATE(11300), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428806] = 6, + [430877] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3687), 1, - anon_sym_RPAREN, - ACTIONS(13741), 1, - anon_sym_COMMA, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10349), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11833), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428826] = 6, + [430897] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4242), 1, - anon_sym_RPAREN, - ACTIONS(13743), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + STATE(9143), 1, + sym_constant, STATE(10350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428846] = 6, + [430917] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13745), 1, - anon_sym_end, STATE(10351), 1, sym_heredoc_body, - STATE(11914), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428866] = 6, + ACTIONS(10743), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [430933] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3567), 1, - anon_sym_RPAREN, - ACTIONS(13747), 1, + ACTIONS(4252), 1, + anon_sym_RBRACE, + ACTIONS(13817), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10352), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428886] = 6, + [430953] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13749), 1, - anon_sym_end, + STATE(8289), 1, + sym__terminator, STATE(10353), 1, sym_heredoc_body, - STATE(11067), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428906] = 6, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [430971] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13751), 1, - anon_sym_end, + ACTIONS(4004), 1, + anon_sym_RBRACE, + ACTIONS(13819), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10354), 1, sym_heredoc_body, - STATE(12187), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428926] = 6, + [430991] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9985), 1, + ACTIONS(11126), 1, anon_sym_RBRACE, - ACTIONS(13753), 1, + ACTIONS(13821), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10355), 1, sym_heredoc_body, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428946] = 6, + [431011] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11216), 1, + ACTIONS(13823), 1, anon_sym_RBRACE, - ACTIONS(13755), 1, + ACTIONS(13825), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10303), 1, + aux_sym_proc_type_repeat1, STATE(10356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428966] = 5, + [431031] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13757), 1, - anon_sym_RPAREN, - ACTIONS(13759), 1, - anon_sym_COMMA, + STATE(10357), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10357), 2, - sym_heredoc_body, - aux_sym_proc_param_list_repeat1, - [428984] = 4, + ACTIONS(5170), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON2, + [431047] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10358), 1, @@ -711098,53 +715996,49 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13762), 3, + ACTIONS(10799), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [429000] = 6, + [431063] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13764), 1, - anon_sym_RBRACE, - ACTIONS(13766), 1, + ACTIONS(4492), 1, + anon_sym_RBRACK, + ACTIONS(13827), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10359), 1, sym_heredoc_body, - STATE(10381), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429020] = 6, + [431083] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13768), 1, - anon_sym_RBRACE, - ACTIONS(13770), 1, - anon_sym_COMMA, STATE(10360), 1, sym_heredoc_body, - STATE(10384), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429040] = 6, + ACTIONS(10747), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431099] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13772), 1, - anon_sym_end, STATE(10361), 1, sym_heredoc_body, - STATE(11859), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429060] = 4, + ACTIONS(10751), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431115] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10362), 1, @@ -711152,361 +716046,324 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6461), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [429076] = 6, + ACTIONS(10763), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431131] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3703), 1, - anon_sym_RPAREN, - ACTIONS(13774), 1, + ACTIONS(11328), 1, + anon_sym_RBRACE, + ACTIONS(13829), 1, anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10363), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429096] = 6, + [431151] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4190), 1, - anon_sym_RPAREN, - ACTIONS(13776), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429116] = 6, + ACTIONS(13831), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431167] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3545), 1, - anon_sym_RPAREN, - ACTIONS(13778), 1, - anon_sym_COMMA, STATE(10365), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429136] = 6, + ACTIONS(10747), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431183] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(13780), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(10366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429156] = 6, + ACTIONS(10751), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431199] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13782), 1, - anon_sym_RBRACE, - ACTIONS(13784), 1, + ACTIONS(13833), 1, anon_sym_COMMA, - STATE(10276), 1, - aux_sym_hash_repeat1, - STATE(10367), 1, - sym_heredoc_body, + ACTIONS(13836), 1, + aux_sym_top_level_fun_def_token1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429176] = 6, + STATE(10367), 2, + sym_heredoc_body, + aux_sym_c_struct_fields_repeat1, + [431217] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3653), 1, - anon_sym_RPAREN, - ACTIONS(13786), 1, - anon_sym_COMMA, + STATE(9746), 1, + sym__terminator, STATE(10368), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429196] = 6, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [431235] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13788), 1, - anon_sym_end, STATE(10369), 1, sym_heredoc_body, - STATE(11314), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429216] = 6, + ACTIONS(10763), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431251] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4468), 1, - anon_sym_RPAREN, - ACTIONS(13790), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429236] = 6, + ACTIONS(10765), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431267] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9997), 1, - anon_sym_RBRACE, - ACTIONS(13792), 1, + ACTIONS(10152), 1, + anon_sym_RPAREN, + ACTIONS(13838), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10371), 1, sym_heredoc_body, + STATE(10496), 1, + aux_sym_fun_type_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429256] = 6, + [431287] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13794), 1, - anon_sym_end, STATE(10372), 1, sym_heredoc_body, - STATE(11887), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429276] = 6, + ACTIONS(10767), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431303] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13796), 1, - anon_sym_end, STATE(10373), 1, sym_heredoc_body, - STATE(11635), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429296] = 6, + ACTIONS(10825), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431319] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13798), 1, - anon_sym_end, STATE(10374), 1, sym_heredoc_body, - STATE(11643), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429316] = 6, + ACTIONS(13840), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431335] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13800), 1, - anon_sym_RBRACE, - ACTIONS(13802), 1, - anon_sym_COMMA, STATE(10375), 1, sym_heredoc_body, - STATE(10399), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429336] = 6, + ACTIONS(10745), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431351] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4506), 1, - anon_sym_RBRACK, - ACTIONS(13804), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429356] = 6, + ACTIONS(10743), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431367] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13806), 1, - anon_sym_RBRACE, - ACTIONS(13808), 1, - anon_sym_COMMA, + STATE(9764), 1, + sym__terminator, STATE(10377), 1, sym_heredoc_body, - STATE(10401), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429376] = 6, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [431385] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13810), 1, - anon_sym_end, STATE(10378), 1, sym_heredoc_body, - STATE(11649), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429396] = 6, + ACTIONS(10889), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431401] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13812), 1, - anon_sym_end, STATE(10379), 1, sym_heredoc_body, - STATE(11111), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429416] = 6, + ACTIONS(10675), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431417] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13814), 1, - anon_sym_end, STATE(10380), 1, sym_heredoc_body, - STATE(11318), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429436] = 6, + ACTIONS(10889), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431433] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9899), 1, - anon_sym_RBRACE, - ACTIONS(13816), 1, - anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429456] = 6, + ACTIONS(10741), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431449] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13818), 1, - anon_sym_end, STATE(10382), 1, sym_heredoc_body, - STATE(11663), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429476] = 6, + ACTIONS(10849), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431465] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3735), 1, - anon_sym_RBRACE, - ACTIONS(13820), 1, + ACTIONS(8950), 1, + anon_sym_RPAREN, + ACTIONS(9226), 1, anon_sym_COMMA, STATE(10383), 1, sym_heredoc_body, - STATE(10543), 1, - aux_sym_implicit_object_tuple_repeat1, + STATE(10411), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429496] = 6, + [431485] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11157), 1, - anon_sym_RBRACE, - ACTIONS(13822), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, STATE(10384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429516] = 6, + ACTIONS(10979), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431501] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11240), 1, - anon_sym_RBRACE, - ACTIONS(13824), 1, + ACTIONS(3581), 1, + anon_sym_RPAREN, + ACTIONS(13842), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, STATE(10385), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429536] = 6, + [431521] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3623), 1, - anon_sym_RPAREN, - ACTIONS(13826), 1, - anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13844), 1, + anon_sym_end, STATE(10386), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(12119), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429556] = 6, + [431541] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13828), 1, - anon_sym_end, STATE(10387), 1, sym_heredoc_body, - STATE(11684), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429576] = 4, + ACTIONS(10803), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431557] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10388), 1, @@ -711514,24 +716371,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12841), 3, + ACTIONS(10839), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [429592] = 5, + [431573] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9456), 1, - anon_sym_RBRACE, - ACTIONS(13830), 1, - anon_sym_COMMA, + STATE(10389), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10389), 2, - sym_heredoc_body, - aux_sym_implicit_object_tuple_repeat1, - [429610] = 4, + ACTIONS(10811), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431589] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10390), 1, @@ -711539,23 +716395,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13833), 3, + ACTIONS(10929), 3, + sym__line_break, + anon_sym_SEMI, anon_sym_end, - anon_sym_else, - anon_sym_when, - [429626] = 4, + [431605] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9232), 1, + anon_sym_RPAREN, + ACTIONS(9234), 1, + anon_sym_COMMA, STATE(10391), 1, sym_heredoc_body, + STATE(10413), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13833), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [429642] = 4, + [431625] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10392), 1, @@ -711563,618 +716421,599 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13833), 3, + ACTIONS(10787), 3, + sym__line_break, + anon_sym_SEMI, anon_sym_end, - anon_sym_else, - anon_sym_when, - [429658] = 4, + [431641] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13846), 1, + anon_sym_RBRACE, + ACTIONS(13848), 1, + anon_sym_COMMA, + STATE(10363), 1, + aux_sym_named_tuple_type_repeat1, STATE(10393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13833), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [429674] = 6, + [431661] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13835), 1, - anon_sym_RPAREN, STATE(10394), 1, sym_heredoc_body, - STATE(11488), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429694] = 6, + ACTIONS(10859), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431677] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13837), 1, - anon_sym_end, STATE(10395), 1, sym_heredoc_body, - STATE(11714), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429714] = 6, + ACTIONS(10871), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431693] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13839), 1, - anon_sym_end, STATE(10396), 1, sym_heredoc_body, - STATE(11616), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429734] = 6, + ACTIONS(10787), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431709] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4178), 1, - anon_sym_RPAREN, - ACTIONS(13841), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429754] = 6, + ACTIONS(10859), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431725] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4246), 1, - anon_sym_RBRACE, - ACTIONS(13843), 1, + ACTIONS(9162), 1, + anon_sym_RPAREN, + ACTIONS(9164), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + STATE(10098), 1, + aux_sym_annotation_argument_list_repeat1, STATE(10398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429774] = 6, + [431745] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4068), 1, - anon_sym_RBRACE, - ACTIONS(13845), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429794] = 4, + ACTIONS(5719), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [431761] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(13850), 1, + anon_sym_RPAREN, STATE(10400), 1, sym_heredoc_body, + STATE(11123), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10945), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [429810] = 6, + [431781] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11244), 1, - anon_sym_RBRACE, - ACTIONS(13847), 1, - anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, STATE(10401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429830] = 6, + ACTIONS(10871), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431797] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13849), 1, - anon_sym_RPAREN, STATE(10402), 1, sym_heredoc_body, - STATE(11749), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429850] = 6, + ACTIONS(10909), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [431813] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4248), 1, - anon_sym_RBRACK, - ACTIONS(13851), 1, + ACTIONS(13852), 1, + anon_sym_RBRACE, + ACTIONS(13854), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10403), 1, sym_heredoc_body, + STATE(10428), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429870] = 6, + [431833] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13392), 1, - anon_sym_LPAREN, - ACTIONS(13853), 1, - anon_sym_RBRACK, + ACTIONS(13856), 1, + anon_sym_RBRACE, + ACTIONS(13858), 1, + anon_sym_COMMA, STATE(10404), 1, sym_heredoc_body, - STATE(12043), 1, - sym_annotation_argument_list, + STATE(10429), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429890] = 6, + [431853] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13855), 1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13860), 1, anon_sym_end, STATE(10405), 1, sym_heredoc_body, - STATE(11717), 1, - sym_ensure, + STATE(11464), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429910] = 6, + [431873] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9203), 1, + ACTIONS(9236), 1, anon_sym_RPAREN, - ACTIONS(9205), 1, + ACTIONS(9238), 1, anon_sym_COMMA, + STATE(10185), 1, + aux_sym_annotation_argument_list_repeat1, STATE(10406), 1, sym_heredoc_body, - STATE(10423), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429930] = 6, + [431893] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4298), 1, + ACTIONS(13862), 1, anon_sym_RBRACE, - ACTIONS(13857), 1, + ACTIONS(13864), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10407), 1, sym_heredoc_body, + STATE(10419), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429950] = 6, + [431913] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13859), 1, - anon_sym_end, + ACTIONS(13866), 1, + anon_sym_RBRACE, + ACTIONS(13868), 1, + anon_sym_COMMA, STATE(10408), 1, sym_heredoc_body, - STATE(11741), 1, - sym_ensure, + STATE(10421), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429970] = 6, + [431933] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9235), 1, - anon_sym_RPAREN, - ACTIONS(9237), 1, + ACTIONS(5024), 1, anon_sym_COMMA, + ACTIONS(13870), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10409), 1, sym_heredoc_body, - STATE(10428), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429990] = 6, + [431953] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(13861), 1, + ACTIONS(13872), 1, anon_sym_end, STATE(10410), 1, sym_heredoc_body, - STATE(11748), 1, + STATE(11561), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430010] = 6, + [431973] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12301), 1, - anon_sym_COLON2, - ACTIONS(13863), 1, + ACTIONS(3551), 1, anon_sym_RPAREN, + ACTIONS(13874), 1, + anon_sym_COMMA, STATE(10411), 1, sym_heredoc_body, - STATE(11932), 1, - sym__asm_options, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430030] = 4, + [431993] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4182), 1, + anon_sym_RPAREN, + ACTIONS(13876), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13865), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [430046] = 6, + [432013] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3579), 1, + ACTIONS(3585), 1, anon_sym_RPAREN, - ACTIONS(13867), 1, + ACTIONS(13878), 1, anon_sym_COMMA, STATE(10413), 1, sym_heredoc_body, - STATE(10696), 1, + STATE(10682), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430066] = 4, + [432033] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(13880), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13012), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON2, - [430082] = 6, + [432053] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13869), 1, - anon_sym_RPAREN, - ACTIONS(13871), 1, - anon_sym_COMMA, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10415), 1, sym_heredoc_body, - STATE(10642), 1, - aux_sym_param_list_repeat1, + STATE(10750), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430102] = 6, + [432073] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13873), 1, - anon_sym_end, + ACTIONS(3665), 1, + anon_sym_RPAREN, + ACTIONS(13882), 1, + anon_sym_COMMA, STATE(10416), 1, sym_heredoc_body, - STATE(12031), 1, - sym_ensure, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430122] = 6, + [432093] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(13875), 1, - anon_sym_end, STATE(10417), 1, sym_heredoc_body, - STATE(11543), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430142] = 6, + ACTIONS(10955), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432109] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9158), 1, - anon_sym_RPAREN, - ACTIONS(9160), 1, + ACTIONS(4546), 1, + anon_sym_RBRACE, + ACTIONS(13884), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10418), 1, sym_heredoc_body, - STATE(10436), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430162] = 6, + [432129] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13877), 1, + ACTIONS(10047), 1, anon_sym_RBRACE, - ACTIONS(13879), 1, + ACTIONS(13886), 1, anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10419), 1, sym_heredoc_body, - STATE(10432), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430182] = 6, + [432149] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13881), 1, - anon_sym_RBRACE, - ACTIONS(13883), 1, - anon_sym_COMMA, STATE(10420), 1, sym_heredoc_body, - STATE(10435), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430202] = 6, + ACTIONS(10745), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432165] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(11152), 1, + anon_sym_RBRACE, + ACTIONS(13888), 1, anon_sym_COMMA, - ACTIONS(13885), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430222] = 6, + [432185] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9941), 1, - anon_sym_RBRACE, - ACTIONS(13887), 1, + ACTIONS(13890), 1, + anon_sym_RPAREN, + ACTIONS(13892), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, + STATE(10190), 1, + aux_sym_type_param_list_repeat1, STATE(10422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430242] = 6, + [432205] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3715), 1, - anon_sym_RPAREN, - ACTIONS(13889), 1, + ACTIONS(5024), 1, anon_sym_COMMA, + ACTIONS(13894), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10423), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430262] = 6, + [432225] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4104), 1, - anon_sym_RBRACE, - ACTIONS(13891), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430282] = 6, + ACTIONS(10943), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432241] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4254), 1, - anon_sym_RPAREN, - ACTIONS(13893), 1, + ACTIONS(4530), 1, + anon_sym_RBRACK, + ACTIONS(13896), 1, anon_sym_COMMA, - STATE(9575), 1, + STATE(9646), 1, aux_sym_array_repeat1, STATE(10425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430302] = 6, + [432261] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13895), 1, - anon_sym_end, STATE(10426), 1, sym_heredoc_body, - STATE(11334), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430322] = 6, + ACTIONS(10867), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432277] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11248), 1, - anon_sym_RBRACE, - ACTIONS(13897), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(13898), 1, + anon_sym_end, STATE(10427), 1, sym_heredoc_body, + STATE(11597), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430342] = 6, + [432297] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3591), 1, - anon_sym_RPAREN, - ACTIONS(13899), 1, + ACTIONS(9965), 1, + anon_sym_RBRACE, + ACTIONS(13900), 1, anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10428), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430362] = 6, + [432317] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - ACTIONS(13901), 1, - anon_sym_RPAREN, + ACTIONS(11193), 1, + anon_sym_RBRACE, + ACTIONS(13902), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10429), 1, sym_heredoc_body, - STATE(10831), 1, - sym_block_body_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430382] = 5, + [432337] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13903), 1, - anon_sym_RPAREN, - ACTIONS(13905), 1, - anon_sym_COMMA, + STATE(10430), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10430), 2, - sym_heredoc_body, - aux_sym__block_body_nested_param_repeat1, - [430400] = 6, + ACTIONS(13904), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [432353] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11310), 1, - anon_sym_RBRACE, - ACTIONS(13908), 1, + ACTIONS(11978), 1, + anon_sym_RPAREN, + ACTIONS(13906), 1, anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, STATE(10431), 1, sym_heredoc_body, + STATE(10566), 1, + aux_sym_fun_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430420] = 6, + [432373] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10001), 1, + ACTIONS(13908), 1, anon_sym_RBRACE, ACTIONS(13910), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10432), 1, sym_heredoc_body, + STATE(10470), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430440] = 6, + [432393] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, ACTIONS(13912), 1, - anon_sym_end, + anon_sym_RBRACE, + ACTIONS(13914), 1, + anon_sym_COMMA, STATE(10433), 1, sym_heredoc_body, - STATE(11803), 1, - sym_ensure, + STATE(10473), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430460] = 6, + [432413] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11526), 1, - anon_sym_RPAREN, - ACTIONS(13914), 1, - anon_sym_COMMA, - STATE(10357), 1, - aux_sym_proc_param_list_repeat1, STATE(10434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430480] = 6, + ACTIONS(10773), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432429] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11262), 1, - anon_sym_RBRACE, - ACTIONS(13916), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(13916), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430500] = 6, + [432449] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3685), 1, - anon_sym_RPAREN, - ACTIONS(13918), 1, - anon_sym_COMMA, STATE(10436), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430520] = 6, + ACTIONS(13918), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [432465] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, @@ -712183,534 +717022,519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, STATE(10437), 1, sym_heredoc_body, - STATE(10975), 1, + STATE(11376), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430540] = 6, + [432485] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9037), 1, + ACTIONS(3701), 1, anon_sym_RPAREN, - ACTIONS(9039), 1, + ACTIONS(13922), 1, anon_sym_COMMA, STATE(10438), 1, sym_heredoc_body, - STATE(10447), 1, + STATE(10682), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430560] = 5, + [432505] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13924), 1, - anon_sym_EQ, STATE(10439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13922), 2, + ACTIONS(6085), 3, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - [430578] = 6, + [432521] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12285), 1, - anon_sym_RPAREN, - ACTIONS(13926), 1, - anon_sym_COMMA, - STATE(10227), 1, - aux_sym_type_param_list_repeat1, STATE(10440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430598] = 6, + ACTIONS(4980), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432537] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13928), 1, - anon_sym_RBRACE, - ACTIONS(13930), 1, + ACTIONS(4178), 1, + anon_sym_RPAREN, + ACTIONS(13924), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10441), 1, sym_heredoc_body, - STATE(10456), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430618] = 6, + [432557] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13932), 1, - anon_sym_end, STATE(10442), 1, sym_heredoc_body, - STATE(11825), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430638] = 6, + ACTIONS(10857), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432573] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(7645), 1, - sym_constant, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13926), 1, + anon_sym_end, STATE(10443), 1, sym_heredoc_body, + STATE(11139), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430658] = 6, + [432593] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13934), 1, - anon_sym_RBRACE, - ACTIONS(13936), 1, - anon_sym_COMMA, STATE(10444), 1, sym_heredoc_body, - STATE(10459), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430678] = 6, + ACTIONS(10923), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432609] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(13938), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(8688), 1, + sym__terminator, STATE(10445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430698] = 6, + ACTIONS(12786), 2, + sym__line_break, + anon_sym_SEMI, + [432627] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13940), 1, - anon_sym_end, + ACTIONS(3569), 1, + anon_sym_RPAREN, + ACTIONS(13928), 1, + anon_sym_COMMA, STATE(10446), 1, sym_heredoc_body, - STATE(12125), 1, - sym_ensure, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430718] = 6, + [432647] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3659), 1, - anon_sym_RPAREN, - ACTIONS(13942), 1, + ACTIONS(4504), 1, + anon_sym_RBRACE, + ACTIONS(13930), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10447), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430738] = 4, + [432667] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4130), 1, + anon_sym_RBRACE, + ACTIONS(13932), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10835), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [430754] = 6, + [432687] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4472), 1, - anon_sym_RPAREN, - ACTIONS(13944), 1, + ACTIONS(13716), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(13934), 1, + aux_sym_top_level_fun_def_token1, + STATE(10287), 1, + aux_sym_c_struct_fields_repeat1, STATE(10449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430774] = 6, + [432707] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(13936), 1, + anon_sym_RPAREN, + ACTIONS(13938), 1, + anon_sym_COMMA, STATE(10450), 1, sym_heredoc_body, - STATE(11987), 1, - sym_constant, + STATE(10681), 1, + aux_sym_proc_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430794] = 4, + [432727] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(3785), 1, + anon_sym_RBRACE, + ACTIONS(13940), 1, + anon_sym_COMMA, + STATE(10206), 1, + aux_sym_implicit_object_tuple_repeat1, STATE(10451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10799), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [430810] = 6, + [432747] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13946), 1, + ACTIONS(13942), 1, anon_sym_RBRACE, - ACTIONS(13948), 1, + ACTIONS(13944), 1, anon_sym_COMMA, STATE(10452), 1, sym_heredoc_body, - STATE(10470), 1, + STATE(10480), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430830] = 6, + [432767] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13950), 1, + ACTIONS(3785), 1, anon_sym_RBRACE, - ACTIONS(13952), 1, + ACTIONS(13940), 1, anon_sym_COMMA, STATE(10453), 1, sym_heredoc_body, - STATE(10473), 1, - aux_sym_named_tuple_repeat1, + STATE(10577), 1, + aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430850] = 6, + [432787] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13954), 1, - anon_sym_end, STATE(10454), 1, sym_heredoc_body, - STATE(11862), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430870] = 6, + ACTIONS(10875), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432803] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13956), 1, - anon_sym_end, STATE(10455), 1, sym_heredoc_body, - STATE(11038), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430890] = 6, + ACTIONS(13946), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432819] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9903), 1, + ACTIONS(13948), 1, anon_sym_RBRACE, - ACTIONS(13958), 1, + ACTIONS(13950), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10456), 1, sym_heredoc_body, + STATE(10483), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430910] = 6, + [432839] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13960), 1, - anon_sym_end, + ACTIONS(13952), 1, + anon_sym_RPAREN, + ACTIONS(13954), 1, + anon_sym_COMMA, STATE(10457), 1, sym_heredoc_body, - STATE(11865), 1, - sym_ensure, + STATE(10581), 1, + aux_sym_asm_clobbers_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430930] = 6, + [432859] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13962), 1, - anon_sym_end, STATE(10458), 1, sym_heredoc_body, - STATE(11866), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430950] = 6, + ACTIONS(13956), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432875] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11318), 1, - anon_sym_RBRACE, - ACTIONS(13964), 1, + ACTIONS(13716), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(13958), 1, + aux_sym_top_level_fun_def_token1, + STATE(10367), 1, + aux_sym_c_struct_fields_repeat1, STATE(10459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430970] = 6, + [432895] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13966), 1, - anon_sym_end, STATE(10460), 1, sym_heredoc_body, - STATE(11041), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430990] = 6, + ACTIONS(13960), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432911] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13968), 1, - anon_sym_end, STATE(10461), 1, sym_heredoc_body, - STATE(11868), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431010] = 6, + ACTIONS(13962), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON2, + [432927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13970), 1, - anon_sym_end, + ACTIONS(13966), 1, + anon_sym_EQ, STATE(10462), 1, sym_heredoc_body, - STATE(11871), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431030] = 6, + ACTIONS(13964), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [432945] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13972), 1, - anon_sym_RPAREN, STATE(10463), 1, sym_heredoc_body, - STATE(11766), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431050] = 5, + ACTIONS(10805), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [432961] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8614), 1, - sym__terminator, + ACTIONS(13968), 1, + anon_sym_RBRACE, + ACTIONS(13970), 1, + anon_sym_COMMA, + STATE(10298), 1, + aux_sym_hash_repeat1, STATE(10464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [431068] = 6, + [432981] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, + ACTIONS(13972), 1, + anon_sym_RPAREN, ACTIONS(13974), 1, - anon_sym_end, - STATE(10465), 1, - sym_heredoc_body, - STATE(11399), 1, - sym_ensure, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431088] = 6, + STATE(10465), 2, + sym_heredoc_body, + aux_sym_proc_param_list_repeat1, + [432999] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4258), 1, + ACTIONS(11452), 1, anon_sym_RBRACE, - ACTIONS(13976), 1, + ACTIONS(13977), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10466), 1, sym_heredoc_body, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431108] = 6, + [433019] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13978), 1, - anon_sym_RBRACE, - ACTIONS(13980), 1, - anon_sym_COMMA, STATE(10467), 1, sym_heredoc_body, - STATE(10612), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431128] = 6, + ACTIONS(13979), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [433035] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13551), 1, - anon_sym_COMMA, - ACTIONS(13982), 1, - aux_sym_top_level_fun_def_token1, - STATE(10251), 1, - aux_sym_c_struct_fields_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(13981), 1, + anon_sym_end, STATE(10468), 1, sym_heredoc_body, + STATE(12282), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431148] = 6, + [433055] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13984), 1, - anon_sym_RBRACE, - ACTIONS(13986), 1, + ACTIONS(9133), 1, + anon_sym_RPAREN, + ACTIONS(9280), 1, anon_sym_COMMA, STATE(10469), 1, sym_heredoc_body, - STATE(10618), 1, - aux_sym_named_tuple_repeat1, + STATE(10667), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431168] = 6, + [433075] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4106), 1, + ACTIONS(10075), 1, anon_sym_RBRACE, - ACTIONS(13988), 1, + ACTIONS(13983), 1, anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431188] = 4, + [433095] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(3990), 1, + anon_sym_RBRACE, + ACTIONS(13985), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10835), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [431204] = 4, + [433115] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13987), 1, + anon_sym_COMMA, + ACTIONS(13989), 1, + anon_sym_PIPE, + STATE(10112), 1, + aux_sym_block_param_list_repeat1, STATE(10472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10879), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [431220] = 6, + [433135] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11308), 1, + ACTIONS(11229), 1, anon_sym_RBRACE, - ACTIONS(13990), 1, + ACTIONS(13991), 1, anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431240] = 6, + [433155] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(13992), 1, - anon_sym_RPAREN, + ACTIONS(4512), 1, + anon_sym_RBRACK, + ACTIONS(13993), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10474), 1, sym_heredoc_body, - STATE(11991), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431260] = 6, + [433175] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4300), 1, - anon_sym_RBRACK, - ACTIONS(13994), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(13995), 1, + anon_sym_RPAREN, STATE(10475), 1, sym_heredoc_body, + STATE(11735), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431280] = 4, + [433195] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10476), 1, @@ -712718,37 +717542,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10903), 3, + ACTIONS(10875), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [431296] = 6, + [433211] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(13996), 1, - anon_sym_end, STATE(10477), 1, sym_heredoc_body, - STATE(11199), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431316] = 4, + ACTIONS(13122), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [433227] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(4258), 1, + anon_sym_RBRACE, + ACTIONS(13997), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13998), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [431332] = 4, + [433247] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10479), 1, @@ -712756,287 +717580,284 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10915), 3, + ACTIONS(13999), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [431348] = 6, + [433263] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9887), 1, + ACTIONS(4086), 1, anon_sym_RBRACE, - ACTIONS(14000), 1, + ACTIONS(14001), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431368] = 6, + [433283] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4260), 1, - anon_sym_RBRACK, - ACTIONS(14002), 1, + ACTIONS(14003), 1, + anon_sym_RBRACE, + ACTIONS(14005), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10481), 1, sym_heredoc_body, + STATE(10527), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431388] = 6, + [433303] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14004), 1, - anon_sym_end, + ACTIONS(14007), 1, + anon_sym_RBRACE, + ACTIONS(14009), 1, + anon_sym_COMMA, STATE(10482), 1, sym_heredoc_body, - STATE(11340), 1, - sym_ensure, + STATE(10530), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431408] = 6, + [433323] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14006), 1, - anon_sym_end, + ACTIONS(11239), 1, + anon_sym_RBRACE, + ACTIONS(14011), 1, + anon_sym_COMMA, STATE(10483), 1, sym_heredoc_body, - STATE(11051), 1, - sym_ensure, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431428] = 6, + [433343] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14008), 1, - anon_sym_end, + ACTIONS(9318), 1, + anon_sym_RPAREN, + ACTIONS(9320), 1, + anon_sym_COMMA, STATE(10484), 1, sym_heredoc_body, - STATE(11872), 1, - sym_ensure, + STATE(10497), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431448] = 6, + [433363] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14010), 1, - anon_sym_RBRACE, - ACTIONS(14012), 1, - anon_sym_COMMA, - STATE(10047), 1, - aux_sym_implicit_object_tuple_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14013), 1, + anon_sym_end, STATE(10485), 1, sym_heredoc_body, + STATE(11151), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431468] = 6, + [433383] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9065), 1, - anon_sym_RPAREN, - ACTIONS(9067), 1, + ACTIONS(14015), 1, + anon_sym_RBRACE, + ACTIONS(14017), 1, anon_sym_COMMA, STATE(10486), 1, sym_heredoc_body, - STATE(10493), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10503), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431488] = 4, + [433403] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14019), 1, + anon_sym_RBRACE, + ACTIONS(14021), 1, + anon_sym_COMMA, STATE(10487), 1, sym_heredoc_body, + STATE(10504), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6360), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [431504] = 6, + [433423] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14014), 1, - anon_sym_RBRACE, - ACTIONS(14016), 1, + ACTIONS(4296), 1, + anon_sym_RBRACK, + ACTIONS(14023), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10488), 1, sym_heredoc_body, - STATE(10495), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431524] = 6, + [433443] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14018), 1, - anon_sym_RBRACE, - ACTIONS(14020), 1, + ACTIONS(3687), 1, + anon_sym_RPAREN, + ACTIONS(14025), 1, anon_sym_COMMA, STATE(10489), 1, sym_heredoc_body, - STATE(10498), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431544] = 6, + [433463] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - ACTIONS(14022), 1, + ACTIONS(14027), 1, anon_sym_DASH_GT, - STATE(9865), 1, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(10490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431564] = 6, + [433483] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9033), 1, - anon_sym_RPAREN, - ACTIONS(9088), 1, - anon_sym_COMMA, STATE(10491), 1, sym_heredoc_body, - STATE(10518), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431584] = 6, + ACTIONS(14029), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433499] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14024), 1, - anon_sym_end, STATE(10492), 1, sym_heredoc_body, - STATE(11875), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431604] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3563), 1, + ACTIONS(5166), 3, anon_sym_RPAREN, - ACTIONS(14026), 1, anon_sym_COMMA, + anon_sym_COLON2, + [433515] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13496), 1, + anon_sym_LPAREN, + ACTIONS(14031), 1, + anon_sym_RBRACK, STATE(10493), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11795), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431624] = 6, + [433535] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4476), 1, - anon_sym_RPAREN, - ACTIONS(14028), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431644] = 6, + ACTIONS(10835), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433551] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9907), 1, - anon_sym_RBRACE, - ACTIONS(14030), 1, + ACTIONS(9073), 1, + anon_sym_RPAREN, + ACTIONS(9258), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10495), 1, sym_heredoc_body, + STATE(10553), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431664] = 4, + [433571] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10496), 1, - sym_heredoc_body, + ACTIONS(11703), 1, + anon_sym_RPAREN, + ACTIONS(14033), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5032), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [431680] = 6, + STATE(10496), 2, + sym_heredoc_body, + aux_sym_fun_type_param_list_repeat1, + [433589] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9219), 1, + ACTIONS(3671), 1, anon_sym_RPAREN, - ACTIONS(9225), 1, + ACTIONS(14036), 1, anon_sym_COMMA, STATE(10497), 1, sym_heredoc_body, - STATE(10671), 1, + STATE(10682), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431700] = 6, + [433609] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11081), 1, - anon_sym_RBRACE, - ACTIONS(14032), 1, + ACTIONS(9176), 1, + anon_sym_RPAREN, + ACTIONS(9178), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, STATE(10498), 1, sym_heredoc_body, + STATE(10661), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431720] = 6, + [433629] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9104), 1, + ACTIONS(4300), 1, anon_sym_RPAREN, - ACTIONS(9106), 1, + ACTIONS(14038), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10499), 1, sym_heredoc_body, - STATE(10521), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431740] = 4, + [433649] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10500), 1, @@ -713044,3259 +717865,3294 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14034), 3, + ACTIONS(14040), 3, sym__line_break, anon_sym_SEMI, anon_sym_end, - [431756] = 5, + [433665] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14036), 1, - anon_sym_COMMA, - ACTIONS(14039), 1, - aux_sym_top_level_fun_def_token1, + STATE(10501), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10501), 2, - sym_heredoc_body, - aux_sym_c_struct_fields_repeat1, - [431774] = 5, + ACTIONS(14042), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433681] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9803), 1, - sym__terminator, STATE(10502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, + ACTIONS(14044), 3, sym__line_break, anon_sym_SEMI, - [431792] = 6, + anon_sym_end, + [433697] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14041), 1, - anon_sym_end, + ACTIONS(10071), 1, + anon_sym_RBRACE, + ACTIONS(14046), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10503), 1, sym_heredoc_body, - STATE(11355), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431812] = 6, + [433717] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10137), 1, - anon_sym_RPAREN, - ACTIONS(14043), 1, + ACTIONS(11231), 1, + anon_sym_RBRACE, + ACTIONS(14048), 1, anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10504), 1, sym_heredoc_body, - STATE(10592), 1, - aux_sym_fun_type_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431832] = 6, + [433737] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, STATE(10505), 1, sym_heredoc_body, - STATE(11770), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431852] = 6, + ACTIONS(10899), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433753] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14045), 1, - anon_sym_end, STATE(10506), 1, sym_heredoc_body, - STATE(11058), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431872] = 4, + ACTIONS(10913), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433769] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(14050), 1, + anon_sym_RPAREN, STATE(10507), 1, sym_heredoc_body, + STATE(11874), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14047), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [431888] = 5, + [433789] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9829), 1, - sym__terminator, + ACTIONS(9184), 1, + anon_sym_RPAREN, + ACTIONS(9186), 1, + anon_sym_COMMA, STATE(10508), 1, sym_heredoc_body, + STATE(10685), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [431906] = 6, + [433809] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, STATE(10509), 1, sym_heredoc_body, - STATE(11867), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431926] = 6, + ACTIONS(10919), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433825] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4564), 1, - anon_sym_RBRACK, - ACTIONS(14049), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431946] = 6, + ACTIONS(10885), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433841] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(14051), 1, - anon_sym_end, + ACTIONS(4286), 1, + anon_sym_RPAREN, + ACTIONS(14052), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10511), 1, sym_heredoc_body, - STATE(11819), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431966] = 6, + [433861] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8811), 1, - anon_sym_RPAREN, - ACTIONS(9126), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14054), 1, + anon_sym_end, STATE(10512), 1, sym_heredoc_body, - STATE(10514), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11885), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431986] = 6, + [433881] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14053), 1, - anon_sym_RBRACE, - ACTIONS(14055), 1, - anon_sym_COMMA, STATE(10513), 1, sym_heredoc_body, - STATE(10523), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432006] = 6, + ACTIONS(14056), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433897] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3585), 1, - anon_sym_RPAREN, - ACTIONS(14057), 1, + ACTIONS(14058), 1, + anon_sym_RBRACE, + ACTIONS(14060), 1, anon_sym_COMMA, STATE(10514), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10515), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432026] = 6, + [433917] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14059), 1, + ACTIONS(11406), 1, anon_sym_RBRACE, - ACTIONS(14061), 1, + ACTIONS(14062), 1, anon_sym_COMMA, STATE(10515), 1, sym_heredoc_body, - STATE(10524), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432046] = 6, + [433937] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(4244), 1, + anon_sym_RPAREN, + ACTIONS(14064), 1, anon_sym_COMMA, - ACTIONS(14063), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432066] = 4, + [433957] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(14066), 1, + anon_sym_end, STATE(10517), 1, sym_heredoc_body, + STATE(11726), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10705), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [432082] = 6, + [433977] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3579), 1, - anon_sym_RPAREN, - ACTIONS(14065), 1, - anon_sym_COMMA, STATE(10518), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432102] = 6, + ACTIONS(10813), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [433993] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4266), 1, + ACTIONS(9162), 1, anon_sym_RPAREN, - ACTIONS(14067), 1, + ACTIONS(9346), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10519), 1, sym_heredoc_body, + STATE(10524), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432122] = 6, + [434013] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13392), 1, - anon_sym_LPAREN, - ACTIONS(14069), 1, - anon_sym_RBRACK, STATE(10520), 1, sym_heredoc_body, - STATE(11327), 1, - sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432142] = 6, + ACTIONS(10817), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434029] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3581), 1, - anon_sym_RPAREN, - ACTIONS(14071), 1, + ACTIONS(14068), 1, + anon_sym_RBRACE, + ACTIONS(14070), 1, anon_sym_COMMA, STATE(10521), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10529), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432162] = 6, + [434049] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14073), 1, - anon_sym_end, + ACTIONS(14072), 1, + anon_sym_RBRACE, + ACTIONS(14074), 1, + anon_sym_COMMA, STATE(10522), 1, sym_heredoc_body, - STATE(11221), 1, - sym_ensure, + STATE(10531), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432182] = 6, + [434069] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10057), 1, - anon_sym_RBRACE, - ACTIONS(14075), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(10075), 1, + ACTIONS(14076), 1, + anon_sym_DASH_GT, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(10523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432202] = 6, + [434089] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11324), 1, - anon_sym_RBRACE, - ACTIONS(14077), 1, + ACTIONS(3555), 1, + anon_sym_RPAREN, + ACTIONS(14078), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, STATE(10524), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432222] = 6, + [434109] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13551), 1, + ACTIONS(3787), 1, + anon_sym_RBRACE, + ACTIONS(14080), 1, anon_sym_COMMA, - ACTIONS(14079), 1, - aux_sym_top_level_fun_def_token1, - STATE(10301), 1, - aux_sym_c_struct_fields_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432242] = 6, + [434129] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4196), 1, - anon_sym_RBRACE, - ACTIONS(14081), 1, + ACTIONS(4350), 1, + anon_sym_RPAREN, + ACTIONS(14082), 1, anon_sym_COMMA, - STATE(9575), 1, + STATE(9646), 1, aux_sym_array_repeat1, STATE(10526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432262] = 6, + [434149] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14083), 1, - anon_sym_end, + ACTIONS(3986), 1, + anon_sym_RBRACE, + ACTIONS(14084), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10527), 1, sym_heredoc_body, - STATE(11073), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432282] = 6, + [434169] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9080), 1, - anon_sym_RPAREN, - ACTIONS(9082), 1, + ACTIONS(14086), 1, + anon_sym_RBRACE, + ACTIONS(14088), 1, anon_sym_COMMA, STATE(10528), 1, sym_heredoc_body, - STATE(10538), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10724), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432302] = 4, + [434189] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(9997), 1, + anon_sym_RBRACE, + ACTIONS(14090), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5878), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [432318] = 6, + [434209] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14085), 1, - anon_sym_end, + ACTIONS(11330), 1, + anon_sym_RBRACE, + ACTIONS(14092), 1, + anon_sym_COMMA, STATE(10530), 1, sym_heredoc_body, - STATE(11893), 1, - sym_ensure, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432338] = 4, + [434229] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11256), 1, + anon_sym_RBRACE, + ACTIONS(14094), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14087), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [432354] = 6, + [434249] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14089), 1, - anon_sym_end, + ACTIONS(3739), 1, + anon_sym_RBRACE, + ACTIONS(14096), 1, + anon_sym_COMMA, + STATE(10206), 1, + aux_sym_implicit_object_tuple_repeat1, STATE(10532), 1, sym_heredoc_body, - STATE(11895), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432374] = 6, + [434269] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14091), 1, + ACTIONS(14098), 1, anon_sym_RBRACE, - ACTIONS(14093), 1, + ACTIONS(14100), 1, anon_sym_COMMA, STATE(10533), 1, sym_heredoc_body, - STATE(10541), 1, - aux_sym_proc_type_repeat1, + STATE(10725), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432394] = 6, + [434289] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14095), 1, - anon_sym_RBRACE, - ACTIONS(14097), 1, + ACTIONS(4278), 1, + anon_sym_RBRACK, + ACTIONS(14102), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10534), 1, sym_heredoc_body, - STATE(10542), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432414] = 6, + [434309] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(14099), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(14104), 1, + anon_sym_end, STATE(10535), 1, sym_heredoc_body, + STATE(11385), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432434] = 6, + [434329] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14101), 1, - anon_sym_end, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(14106), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10536), 1, sym_heredoc_body, - STATE(11374), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432454] = 6, + [434349] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14103), 1, - anon_sym_RBRACE, - ACTIONS(14105), 1, - anon_sym_COMMA, STATE(10537), 1, sym_heredoc_body, - STATE(10558), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432474] = 6, + ACTIONS(10831), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434365] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3567), 1, - anon_sym_RPAREN, - ACTIONS(14107), 1, - anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(14108), 1, + anon_sym_end, STATE(10538), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11863), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432494] = 6, + [434385] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14109), 1, - anon_sym_RBRACE, - ACTIONS(14111), 1, - anon_sym_COMMA, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10539), 1, sym_heredoc_body, - STATE(10559), 1, - aux_sym_named_tuple_repeat1, + STATE(11779), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432514] = 6, + [434405] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4480), 1, - anon_sym_RPAREN, - ACTIONS(14113), 1, + ACTIONS(14110), 1, + anon_sym_RBRACE, + ACTIONS(14112), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10540), 1, sym_heredoc_body, + STATE(10568), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432534] = 6, + [434425] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9909), 1, + ACTIONS(14114), 1, anon_sym_RBRACE, - ACTIONS(14115), 1, + ACTIONS(14116), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10541), 1, sym_heredoc_body, + STATE(10570), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432554] = 6, + [434445] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11099), 1, - anon_sym_RBRACE, - ACTIONS(14117), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10542), 1, sym_heredoc_body, + STATE(11850), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432574] = 6, + [434465] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3723), 1, - anon_sym_RBRACE, - ACTIONS(14119), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(10389), 1, - aux_sym_implicit_object_tuple_repeat1, + ACTIONS(14118), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432594] = 6, + [434485] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3723), 1, - anon_sym_RBRACE, - ACTIONS(14119), 1, + ACTIONS(4326), 1, + anon_sym_RBRACK, + ACTIONS(14120), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10544), 1, sym_heredoc_body, - STATE(10689), 1, - aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432614] = 6, + [434505] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14121), 1, - anon_sym_RPAREN, - ACTIONS(14123), 1, - anon_sym_COMMA, - STATE(10434), 1, - aux_sym_proc_param_list_repeat1, STATE(10545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432634] = 6, + ACTIONS(10813), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434521] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14125), 1, - anon_sym_end, + ACTIONS(8911), 1, + anon_sym_RPAREN, + ACTIONS(9104), 1, + anon_sym_COMMA, STATE(10546), 1, sym_heredoc_body, - STATE(12210), 1, - sym_ensure, + STATE(10549), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432654] = 5, + [434541] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8241), 1, - sym__terminator, + ACTIONS(14122), 1, + anon_sym_RBRACE, + ACTIONS(14124), 1, + anon_sym_COMMA, + STATE(10532), 1, + aux_sym_implicit_object_tuple_repeat1, STATE(10547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12837), 2, - sym__line_break, - anon_sym_SEMI, - [432672] = 6, + [434561] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11159), 1, - anon_sym_RBRACE, - ACTIONS(14127), 1, + ACTIONS(9065), 1, + anon_sym_RPAREN, + ACTIONS(9067), 1, anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, STATE(10548), 1, sym_heredoc_body, + STATE(10588), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432692] = 6, + [434581] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3585), 1, + ACTIONS(3581), 1, anon_sym_RPAREN, - ACTIONS(14129), 1, + ACTIONS(14126), 1, anon_sym_COMMA, STATE(10549), 1, sym_heredoc_body, - STATE(10696), 1, + STATE(10682), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432712] = 6, + [434601] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14131), 1, - anon_sym_RPAREN, - ACTIONS(14133), 1, - anon_sym_COMMA, STATE(10550), 1, sym_heredoc_body, - STATE(10691), 1, - aux_sym_asm_clobbers_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432732] = 6, + ACTIONS(10817), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434617] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(14135), 1, - anon_sym_RPAREN, STATE(10551), 1, sym_heredoc_body, - STATE(11485), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432752] = 6, + ACTIONS(10831), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434633] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(9073), 1, + anon_sym_RPAREN, + ACTIONS(9075), 1, + anon_sym_COMMA, STATE(10552), 1, sym_heredoc_body, - STATE(12298), 1, - sym_constant, + STATE(10591), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432772] = 4, + [434653] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(3547), 1, + anon_sym_RPAREN, + ACTIONS(14128), 1, + anon_sym_COMMA, STATE(10553), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14137), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON2, - [432788] = 6, + [434673] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(14139), 1, - anon_sym_RPAREN, STATE(10554), 1, sym_heredoc_body, - STATE(11998), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432808] = 6, + ACTIONS(10793), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434689] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(10404), 1, - sym_constant, STATE(10555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432828] = 6, + ACTIONS(10913), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434705] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8827), 1, - anon_sym_RPAREN, - ACTIONS(8829), 1, - anon_sym_COMMA, - STATE(10386), 1, - aux_sym_annotation_argument_list_repeat1, STATE(10556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432848] = 6, + ACTIONS(10919), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434721] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4272), 1, - anon_sym_RBRACE, - ACTIONS(14141), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432868] = 6, + ACTIONS(10885), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434737] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4046), 1, - anon_sym_RBRACE, - ACTIONS(14143), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432888] = 6, + ACTIONS(10813), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434753] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11358), 1, - anon_sym_RBRACE, - ACTIONS(14145), 1, + ACTIONS(4346), 1, + anon_sym_RPAREN, + ACTIONS(14130), 1, anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432908] = 6, + [434773] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14147), 1, - anon_sym_end, + ACTIONS(14132), 1, + anon_sym_RBRACE, + ACTIONS(14134), 1, + anon_sym_COMMA, STATE(10560), 1, sym_heredoc_body, - STATE(11283), 1, - sym_ensure, + STATE(10712), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432928] = 6, + [434793] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11282), 1, - anon_sym_RBRACE, - ACTIONS(14149), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14136), 1, + anon_sym_end, STATE(10561), 1, sym_heredoc_body, + STATE(11958), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432948] = 6, + [434813] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4274), 1, - anon_sym_RBRACK, - ACTIONS(14151), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14138), 1, + anon_sym_end, STATE(10562), 1, sym_heredoc_body, + STATE(11968), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432968] = 6, + [434833] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14153), 1, - anon_sym_RBRACE, - ACTIONS(14155), 1, - anon_sym_COMMA, STATE(10563), 1, sym_heredoc_body, - STATE(10565), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432988] = 6, + ACTIONS(10753), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434849] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14157), 1, - anon_sym_end, + ACTIONS(9184), 1, + anon_sym_RPAREN, + ACTIONS(9352), 1, + anon_sym_COMMA, STATE(10564), 1, sym_heredoc_body, - STATE(11302), 1, - sym_ensure, + STATE(10600), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433008] = 6, + [434869] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4110), 1, - anon_sym_RBRACE, - ACTIONS(14159), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433028] = 6, + ACTIONS(10819), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434885] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9033), 1, + ACTIONS(14140), 1, anon_sym_RPAREN, - ACTIONS(9243), 1, + ACTIONS(14142), 1, anon_sym_COMMA, - STATE(10566), 1, - sym_heredoc_body, - STATE(10567), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433048] = 6, + STATE(10566), 2, + sym_heredoc_body, + aux_sym_fun_param_list_repeat1, + [434903] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3579), 1, - anon_sym_RPAREN, - ACTIONS(14161), 1, - anon_sym_COMMA, STATE(10567), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433068] = 4, + ACTIONS(10817), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [434919] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(10077), 1, + anon_sym_RBRACE, + ACTIONS(14145), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14163), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [433084] = 4, + [434939] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14147), 1, + anon_sym_end, STATE(10569), 1, sym_heredoc_body, + STATE(11979), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14165), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [433100] = 6, + [434959] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8843), 1, - anon_sym_RPAREN, - ACTIONS(8845), 1, + ACTIONS(11276), 1, + anon_sym_RBRACE, + ACTIONS(14149), 1, anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10570), 1, sym_heredoc_body, - STATE(10602), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433120] = 6, + [434979] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14167), 1, - anon_sym_RBRACE, - ACTIONS(14169), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14151), 1, + anon_sym_end, STATE(10571), 1, sym_heredoc_body, - STATE(10572), 1, - aux_sym_hash_repeat1, + STATE(11982), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433140] = 6, + [434999] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4120), 1, - anon_sym_RBRACE, - ACTIONS(14171), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14153), 1, + anon_sym_end, STATE(10572), 1, sym_heredoc_body, + STATE(11985), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433160] = 6, + [435019] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8843), 1, - anon_sym_RPAREN, - ACTIONS(9251), 1, - anon_sym_COMMA, STATE(10573), 1, sym_heredoc_body, - STATE(10575), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433180] = 4, + ACTIONS(10831), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [435035] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14155), 1, + anon_sym_RBRACE, + ACTIONS(14157), 1, + anon_sym_COMMA, STATE(10574), 1, sym_heredoc_body, + STATE(10715), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10683), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [433196] = 6, + [435055] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3545), 1, + ACTIONS(3563), 1, anon_sym_RPAREN, - ACTIONS(14173), 1, + ACTIONS(14159), 1, anon_sym_COMMA, STATE(10575), 1, sym_heredoc_body, - STATE(10696), 1, + STATE(10682), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433216] = 6, + [435075] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14175), 1, - anon_sym_RBRACE, - ACTIONS(14177), 1, - anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(14161), 1, + anon_sym_end, STATE(10576), 1, sym_heredoc_body, - STATE(10577), 1, - aux_sym_hash_repeat1, + STATE(11989), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433236] = 6, + [435095] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4124), 1, + ACTIONS(3791), 1, anon_sym_RBRACE, - ACTIONS(14179), 1, + ACTIONS(14163), 1, anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, + STATE(10206), 1, + aux_sym_implicit_object_tuple_repeat1, STATE(10577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433256] = 6, + [435115] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9057), 1, - anon_sym_RPAREN, - ACTIONS(9253), 1, + ACTIONS(14165), 1, + anon_sym_RBRACE, + ACTIONS(14167), 1, anon_sym_COMMA, STATE(10578), 1, sym_heredoc_body, - STATE(10580), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10613), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433276] = 6, + [435135] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4208), 1, + ACTIONS(14169), 1, anon_sym_RBRACE, - ACTIONS(14181), 1, + ACTIONS(14171), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10579), 1, sym_heredoc_body, + STATE(10615), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433296] = 6, + [435155] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3537), 1, - anon_sym_RPAREN, - ACTIONS(14183), 1, + ACTIONS(5024), 1, anon_sym_COMMA, + ACTIONS(14173), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10580), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433316] = 6, + [435175] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9219), 1, - anon_sym_RPAREN, - ACTIONS(9259), 1, + ACTIONS(13954), 1, anon_sym_COMMA, + ACTIONS(14175), 1, + anon_sym_RPAREN, + STATE(10143), 1, + aux_sym_asm_clobbers_repeat1, STATE(10581), 1, sym_heredoc_body, - STATE(10582), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433336] = 6, + [435195] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3557), 1, - anon_sym_RPAREN, - ACTIONS(14185), 1, - anon_sym_COMMA, STATE(10582), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433356] = 6, + ACTIONS(13265), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON2, + [435211] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14187), 1, + ACTIONS(14177), 1, anon_sym_RBRACE, - ACTIONS(14189), 1, + ACTIONS(14179), 1, anon_sym_COMMA, STATE(10583), 1, sym_heredoc_body, - STATE(10584), 1, - aux_sym_hash_repeat1, + STATE(10636), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433376] = 6, + [435231] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4128), 1, - anon_sym_RBRACE, - ACTIONS(14191), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14181), 1, + anon_sym_end, STATE(10584), 1, sym_heredoc_body, + STATE(11375), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433396] = 6, + [435251] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9065), 1, - anon_sym_RPAREN, - ACTIONS(9267), 1, - anon_sym_COMMA, STATE(10585), 1, sym_heredoc_body, - STATE(10587), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433416] = 6, + ACTIONS(10813), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [435267] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12101), 1, - anon_sym_RPAREN, - ACTIONS(14193), 1, - anon_sym_COMMA, - STATE(10315), 1, - aux_sym_fun_param_list_repeat1, STATE(10586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433436] = 6, + ACTIONS(10817), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [435283] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3563), 1, - anon_sym_RPAREN, - ACTIONS(14195), 1, - anon_sym_COMMA, STATE(10587), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433456] = 6, + ACTIONS(14183), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [435299] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9033), 1, + ACTIONS(3657), 1, anon_sym_RPAREN, - ACTIONS(9035), 1, + ACTIONS(14185), 1, anon_sym_COMMA, - STATE(10413), 1, - aux_sym_annotation_argument_list_repeat1, STATE(10588), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433476] = 6, + [435319] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9080), 1, - anon_sym_RPAREN, - ACTIONS(9271), 1, + ACTIONS(14187), 1, + anon_sym_RBRACE, + ACTIONS(14189), 1, anon_sym_COMMA, STATE(10589), 1, sym_heredoc_body, - STATE(10590), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10654), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433496] = 6, + [435339] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3567), 1, + ACTIONS(4248), 1, anon_sym_RPAREN, - ACTIONS(14197), 1, + ACTIONS(14191), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10590), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433516] = 6, + [435359] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14199), 1, - anon_sym_end, + ACTIONS(3547), 1, + anon_sym_RPAREN, + ACTIONS(14193), 1, + anon_sym_COMMA, STATE(10591), 1, sym_heredoc_body, - STATE(11380), 1, - sym_ensure, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433536] = 5, + [435379] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11666), 1, - anon_sym_RPAREN, - ACTIONS(14201), 1, + ACTIONS(4314), 1, + anon_sym_RBRACK, + ACTIONS(14195), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, + STATE(10592), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10592), 2, - sym_heredoc_body, - aux_sym_fun_type_param_list_repeat1, - [433554] = 6, + [435399] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14204), 1, - anon_sym_RBRACE, - ACTIONS(14206), 1, + ACTIONS(5024), 1, anon_sym_COMMA, + ACTIONS(14197), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10593), 1, sym_heredoc_body, - STATE(10613), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433574] = 6, + [435419] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14208), 1, - anon_sym_RBRACE, - ACTIONS(14210), 1, - anon_sym_COMMA, STATE(10594), 1, sym_heredoc_body, - STATE(10596), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433594] = 4, + ACTIONS(10831), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [435435] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, + STATE(7687), 1, + sym_constant, STATE(10595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14212), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [433610] = 6, + [435455] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4134), 1, - anon_sym_RBRACE, - ACTIONS(14214), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433630] = 6, + ACTIONS(10793), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [435471] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(14216), 1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14199), 1, anon_sym_end, STATE(10597), 1, sym_heredoc_body, - STATE(12059), 1, - sym_else, + STATE(12053), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433650] = 6, + [435491] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14218), 1, + ACTIONS(11266), 1, anon_sym_RBRACE, - ACTIONS(14220), 1, + ACTIONS(14201), 1, anon_sym_COMMA, STATE(10598), 1, sym_heredoc_body, - STATE(10606), 1, - aux_sym_proc_type_repeat1, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433670] = 6, + [435511] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14222), 1, - anon_sym_RBRACE, - ACTIONS(14224), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14203), 1, + anon_sym_end, STATE(10599), 1, sym_heredoc_body, - STATE(10608), 1, - aux_sym_named_tuple_type_repeat1, + STATE(12059), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433690] = 6, + [435531] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(3577), 1, + anon_sym_RPAREN, + ACTIONS(14205), 1, anon_sym_COMMA, - ACTIONS(14226), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(10600), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433710] = 6, + [435551] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14228), 1, - anon_sym_RBRACE, - ACTIONS(14230), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14207), 1, + anon_sym_end, STATE(10601), 1, sym_heredoc_body, - STATE(10614), 1, - aux_sym_named_tuple_type_repeat1, + STATE(11644), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433730] = 6, + [435571] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3545), 1, - anon_sym_RPAREN, - ACTIONS(14232), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14209), 1, + anon_sym_end, STATE(10602), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(12065), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433750] = 6, + [435591] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4280), 1, - anon_sym_RPAREN, - ACTIONS(14234), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(13496), 1, + anon_sym_LPAREN, + ACTIONS(14211), 1, + anon_sym_RBRACK, STATE(10603), 1, sym_heredoc_body, + STATE(11764), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433770] = 4, + [435611] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14213), 1, + anon_sym_end, STATE(10604), 1, sym_heredoc_body, + STATE(12071), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14236), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [433786] = 6, + [435631] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(14238), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14215), 1, + anon_sym_end, STATE(10605), 1, sym_heredoc_body, + STATE(12075), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433806] = 6, + [435651] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9981), 1, - anon_sym_RBRACE, - ACTIONS(14240), 1, - anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14217), 1, + anon_sym_end, STATE(10606), 1, sym_heredoc_body, + STATE(12289), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433826] = 4, + [435671] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14219), 1, + anon_sym_end, STATE(10607), 1, sym_heredoc_body, + STATE(12080), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14242), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [433842] = 6, + [435691] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11392), 1, - anon_sym_RBRACE, - ACTIONS(14244), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14221), 1, + anon_sym_end, STATE(10608), 1, sym_heredoc_body, + STATE(12081), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433862] = 6, + [435711] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4484), 1, - anon_sym_RPAREN, - ACTIONS(14246), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14223), 1, + anon_sym_end, STATE(10609), 1, sym_heredoc_body, + STATE(12094), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433882] = 6, + [435731] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14225), 1, + anon_sym_end, STATE(10610), 1, sym_heredoc_body, - STATE(11048), 1, - sym_constant, + STATE(12095), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433902] = 6, + [435751] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(4500), 1, + anon_sym_RPAREN, + ACTIONS(14227), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10611), 1, sym_heredoc_body, - STATE(11068), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433922] = 6, + [435771] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4028), 1, - anon_sym_RBRACE, - ACTIONS(14248), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, STATE(10612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433942] = 6, + ACTIONS(10837), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [435787] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9913), 1, + ACTIONS(10067), 1, anon_sym_RBRACE, - ACTIONS(14250), 1, + ACTIONS(14229), 1, anon_sym_COMMA, - STATE(10075), 1, + STATE(10286), 1, aux_sym_proc_type_repeat1, STATE(10613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433962] = 6, + [435807] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11111), 1, - anon_sym_RBRACE, - ACTIONS(14252), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14231), 1, + anon_sym_end, STATE(10614), 1, sym_heredoc_body, + STATE(11483), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433982] = 6, + [435827] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(11370), 1, + anon_sym_RBRACE, + ACTIONS(14233), 1, anon_sym_COMMA, - ACTIONS(14254), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10615), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434002] = 6, + [435847] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(14235), 1, + anon_sym_RPAREN, STATE(10616), 1, sym_heredoc_body, - STATE(11120), 1, - sym_constant, + STATE(12116), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434022] = 6, + [435867] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + ACTIONS(14237), 1, + anon_sym_RBRACE, + ACTIONS(14239), 1, + anon_sym_COMMA, STATE(10617), 1, sym_heredoc_body, - STATE(11133), 1, - sym_constant, + STATE(10620), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434042] = 6, + [435887] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11296), 1, - anon_sym_RBRACE, - ACTIONS(14256), 1, - anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, STATE(10618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434062] = 6, + ACTIONS(14241), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [435903] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14258), 1, - anon_sym_end, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(14243), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10619), 1, sym_heredoc_body, - STATE(11084), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434082] = 5, + [435923] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14262), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(4132), 1, + anon_sym_RBRACE, + ACTIONS(14245), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14260), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [434100] = 4, + [435943] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8950), 1, + anon_sym_RPAREN, + ACTIONS(9304), 1, + anon_sym_COMMA, STATE(10621), 1, sym_heredoc_body, + STATE(10622), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14264), 3, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - [434116] = 6, + [435963] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14266), 1, - anon_sym_RBRACE, - ACTIONS(14268), 1, + ACTIONS(3551), 1, + anon_sym_RPAREN, + ACTIONS(14247), 1, anon_sym_COMMA, - STATE(10174), 1, - aux_sym_hash_repeat1, STATE(10622), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434136] = 6, + [435983] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(14270), 1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14249), 1, anon_sym_end, STATE(10623), 1, sym_heredoc_body, - STATE(12108), 1, - sym_else, + STATE(11162), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434156] = 6, + [436003] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14272), 1, + ACTIONS(14251), 1, anon_sym_RBRACE, - ACTIONS(14274), 1, + ACTIONS(14253), 1, anon_sym_COMMA, STATE(10624), 1, sym_heredoc_body, - STATE(10684), 1, - aux_sym_proc_type_repeat1, + STATE(10627), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434176] = 6, + [436023] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4210), 1, - anon_sym_RBRACK, - ACTIONS(14276), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434196] = 6, + ACTIONS(10843), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [436039] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14278), 1, - anon_sym_RPAREN, - ACTIONS(14280), 1, - anon_sym_COMMA, - STATE(10586), 1, - aux_sym_fun_param_list_repeat1, STATE(10626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434216] = 6, + ACTIONS(14255), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [436055] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14282), 1, + ACTIONS(4138), 1, anon_sym_RBRACE, - ACTIONS(14284), 1, + ACTIONS(14257), 1, anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10627), 1, sym_heredoc_body, - STATE(10638), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434236] = 6, + [436075] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14286), 1, - anon_sym_end, STATE(10628), 1, sym_heredoc_body, - STATE(10944), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434256] = 6, + ACTIONS(10851), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [436091] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14288), 1, - anon_sym_RBRACE, - ACTIONS(14290), 1, + ACTIONS(9073), 1, + anon_sym_RPAREN, + ACTIONS(9322), 1, anon_sym_COMMA, STATE(10629), 1, sym_heredoc_body, - STATE(10643), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10630), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434276] = 5, + [436111] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14294), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(3547), 1, + anon_sym_RPAREN, + ACTIONS(14259), 1, + anon_sym_COMMA, STATE(10630), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14292), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [434294] = 6, + [436131] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14296), 1, - anon_sym_RBRACE, - ACTIONS(14298), 1, - anon_sym_COMMA, - STATE(10189), 1, - aux_sym_named_tuple_repeat1, STATE(10631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434314] = 4, + ACTIONS(10795), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [436147] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14261), 1, + anon_sym_RBRACE, + ACTIONS(14263), 1, + anon_sym_COMMA, STATE(10632), 1, sym_heredoc_body, + STATE(10633), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14300), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [434330] = 6, + [436167] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14302), 1, + ACTIONS(4142), 1, anon_sym_RBRACE, - ACTIONS(14304), 1, + ACTIONS(14265), 1, anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10633), 1, sym_heredoc_body, - STATE(10672), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434350] = 6, + [436187] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(9094), 1, + anon_sym_RPAREN, + ACTIONS(9330), 1, anon_sym_COMMA, - ACTIONS(14306), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(10634), 1, sym_heredoc_body, + STATE(10635), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434370] = 6, + [436207] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4488), 1, + ACTIONS(3563), 1, anon_sym_RPAREN, - ACTIONS(14308), 1, + ACTIONS(14267), 1, anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, STATE(10635), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434390] = 6, + [436227] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14310), 1, + ACTIONS(10105), 1, anon_sym_RBRACE, - ACTIONS(14312), 1, + ACTIONS(14269), 1, anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10636), 1, sym_heredoc_body, - STATE(10685), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434410] = 6, + [436247] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14314), 1, - anon_sym_RBRACE, - ACTIONS(14316), 1, + ACTIONS(9133), 1, + anon_sym_RPAREN, + ACTIONS(9332), 1, anon_sym_COMMA, - STATE(10044), 1, - aux_sym_named_tuple_repeat1, STATE(10637), 1, sym_heredoc_body, + STATE(10638), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434430] = 6, + [436267] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9917), 1, - anon_sym_RBRACE, - ACTIONS(14318), 1, + ACTIONS(3569), 1, + anon_sym_RPAREN, + ACTIONS(14271), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10638), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434450] = 6, + [436287] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14320), 1, - anon_sym_end, + ACTIONS(14273), 1, + anon_sym_RBRACE, + ACTIONS(14275), 1, + anon_sym_COMMA, STATE(10639), 1, sym_heredoc_body, - STATE(11096), 1, - sym_ensure, + STATE(10641), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434470] = 6, + [436307] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14322), 1, - anon_sym_end, + STATE(294), 1, + sym__terminator, STATE(10640), 1, sym_heredoc_body, - STATE(11095), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434490] = 6, + ACTIONS(1381), 2, + sym__line_break, + anon_sym_SEMI, + [436325] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14324), 1, - anon_sym_RPAREN, - ACTIONS(14326), 1, + ACTIONS(4146), 1, + anon_sym_RBRACE, + ACTIONS(14277), 1, anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10641), 1, sym_heredoc_body, - STATE(10660), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434510] = 6, + [436345] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10779), 1, - anon_sym_RPAREN, - ACTIONS(14328), 1, - anon_sym_COMMA, - STATE(10334), 1, - aux_sym_param_list_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14279), 1, + anon_sym_end, STATE(10642), 1, sym_heredoc_body, + STATE(12137), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434530] = 6, + [436365] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11137), 1, - anon_sym_RBRACE, - ACTIONS(14330), 1, + ACTIONS(9162), 1, + anon_sym_RPAREN, + ACTIONS(9336), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, STATE(10643), 1, sym_heredoc_body, + STATE(10644), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434550] = 6, + [436385] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(3555), 1, + anon_sym_RPAREN, + ACTIONS(14281), 1, anon_sym_COMMA, - ACTIONS(14332), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(10644), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434570] = 4, + [436405] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14283), 1, + anon_sym_end, STATE(10645), 1, sym_heredoc_body, + STATE(12140), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14334), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [434586] = 6, + [436425] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14336), 1, - anon_sym_RBRACE, - ACTIONS(14338), 1, + ACTIONS(9184), 1, + anon_sym_RPAREN, + ACTIONS(9338), 1, anon_sym_COMMA, STATE(10646), 1, sym_heredoc_body, - STATE(10665), 1, - aux_sym_hash_repeat1, + STATE(10647), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434606] = 6, + [436445] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14340), 1, - anon_sym_RBRACE, - ACTIONS(14342), 1, + ACTIONS(3577), 1, + anon_sym_RPAREN, + ACTIONS(14285), 1, anon_sym_COMMA, STATE(10647), 1, sym_heredoc_body, - STATE(10687), 1, - aux_sym_named_tuple_repeat1, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434626] = 6, + [436465] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9207), 1, - anon_sym_RPAREN, - ACTIONS(9209), 1, - anon_sym_COMMA, - STATE(10036), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14287), 1, + anon_sym_end, STATE(10648), 1, sym_heredoc_body, + STATE(12141), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434646] = 6, + [436485] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14344), 1, + ACTIONS(14289), 1, anon_sym_RBRACE, - ACTIONS(14346), 1, + ACTIONS(14291), 1, anon_sym_COMMA, STATE(10649), 1, sym_heredoc_body, - STATE(10654), 1, - aux_sym_proc_type_repeat1, + STATE(10652), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434666] = 6, + [436505] = 6, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(1401), 1, sym__regular_ensure_keyword, - ACTIONS(14348), 1, + ACTIONS(14293), 1, anon_sym_end, STATE(10650), 1, sym_heredoc_body, - STATE(12282), 1, + STATE(12143), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434686] = 6, + [436525] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14350), 1, - anon_sym_RBRACE, - ACTIONS(14352), 1, - anon_sym_COMMA, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14295), 1, + anon_sym_end, STATE(10651), 1, sym_heredoc_body, - STATE(10656), 1, - aux_sym_named_tuple_type_repeat1, + STATE(11551), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434706] = 6, + [436545] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(4150), 1, + anon_sym_RBRACE, + ACTIONS(14297), 1, anon_sym_COMMA, - ACTIONS(14354), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434726] = 6, + [436565] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4492), 1, - anon_sym_RPAREN, - ACTIONS(14356), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14299), 1, + anon_sym_end, STATE(10653), 1, sym_heredoc_body, + STATE(12150), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434746] = 6, + [436585] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9921), 1, + ACTIONS(11268), 1, anon_sym_RBRACE, - ACTIONS(14358), 1, + ACTIONS(14301), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434766] = 6, + [436605] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8995), 1, - anon_sym_RPAREN, - ACTIONS(8997), 1, - anon_sym_COMMA, - STATE(10105), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14303), 1, + anon_sym_end, STATE(10655), 1, sym_heredoc_body, + STATE(12158), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434786] = 6, + [436625] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11169), 1, - anon_sym_RBRACE, - ACTIONS(14360), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14305), 1, + anon_sym_end, STATE(10656), 1, sym_heredoc_body, + STATE(12160), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434806] = 6, + [436645] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13392), 1, - anon_sym_LPAREN, - ACTIONS(14362), 1, - anon_sym_RBRACK, STATE(10657), 1, sym_heredoc_body, - STATE(11834), 1, - sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434826] = 6, + ACTIONS(6267), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [436661] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14364), 1, - anon_sym_end, + ACTIONS(14307), 1, + anon_sym_RPAREN, + ACTIONS(14309), 1, + anon_sym_COMMA, + STATE(10431), 1, + aux_sym_fun_param_list_repeat1, STATE(10658), 1, sym_heredoc_body, - STATE(11117), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434846] = 6, + [436681] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13358), 1, - anon_sym_COLON2, - ACTIONS(14366), 1, - anon_sym_RPAREN, STATE(10659), 1, sym_heredoc_body, - STATE(12330), 1, - sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434866] = 6, + ACTIONS(14311), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [436697] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11270), 1, + ACTIONS(10935), 1, anon_sym_RPAREN, - ACTIONS(14368), 1, + ACTIONS(14313), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, STATE(10660), 1, sym_heredoc_body, + STATE(10736), 1, + aux_sym_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434886] = 6, + [436717] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9219), 1, + ACTIONS(3719), 1, anon_sym_RPAREN, - ACTIONS(9221), 1, + ACTIONS(14315), 1, anon_sym_COMMA, - STATE(10040), 1, - aux_sym_annotation_argument_list_repeat1, STATE(10661), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434906] = 6, + [436737] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4284), 1, - anon_sym_RBRACE, - ACTIONS(14370), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14317), 1, + anon_sym_end, STATE(10662), 1, sym_heredoc_body, + STATE(11570), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434926] = 6, + [436757] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14372), 1, - anon_sym_RBRACE, - ACTIONS(14374), 1, - anon_sym_COMMA, STATE(10663), 1, sym_heredoc_body, - STATE(10669), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434946] = 6, + ACTIONS(10795), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [436773] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14376), 1, - anon_sym_RBRACE, - ACTIONS(14378), 1, + ACTIONS(9094), 1, + anon_sym_RPAREN, + ACTIONS(9096), 1, anon_sym_COMMA, + STATE(10575), 1, + aux_sym_annotation_argument_list_repeat1, STATE(10664), 1, sym_heredoc_body, - STATE(10670), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434966] = 6, + [436793] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4094), 1, - anon_sym_RBRACE, - ACTIONS(14380), 1, + ACTIONS(4534), 1, + anon_sym_RPAREN, + ACTIONS(14319), 1, anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434986] = 6, + [436813] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, - anon_sym_COMMA, - ACTIONS(14382), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10666), 1, sym_heredoc_body, + STATE(11095), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435006] = 5, + [436833] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(301), 1, - sym__terminator, + ACTIONS(3569), 1, + anon_sym_RPAREN, + ACTIONS(14321), 1, + anon_sym_COMMA, STATE(10667), 1, sym_heredoc_body, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1381), 2, - sym__line_break, - anon_sym_SEMI, - [435024] = 6, + [436853] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4496), 1, - anon_sym_RPAREN, - ACTIONS(14384), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10668), 1, sym_heredoc_body, + STATE(11115), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435044] = 6, + [436873] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9925), 1, + ACTIONS(14323), 1, anon_sym_RBRACE, - ACTIONS(14386), 1, + ACTIONS(14325), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, STATE(10669), 1, sym_heredoc_body, + STATE(10683), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435064] = 6, + [436893] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11181), 1, - anon_sym_RBRACE, - ACTIONS(14388), 1, - anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14327), 1, + anon_sym_end, STATE(10670), 1, sym_heredoc_body, + STATE(12191), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435084] = 6, + [436913] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3557), 1, - anon_sym_RPAREN, - ACTIONS(14390), 1, - anon_sym_COMMA, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10671), 1, sym_heredoc_body, - STATE(10696), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11167), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435104] = 6, + [436933] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3976), 1, - anon_sym_RBRACE, - ACTIONS(14392), 1, - anon_sym_COMMA, - STATE(10064), 1, - aux_sym_hash_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14329), 1, + anon_sym_end, STATE(10672), 1, sym_heredoc_body, + STATE(12198), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435124] = 6, + [436953] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4444), 1, - anon_sym_RPAREN, - ACTIONS(14394), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10673), 1, sym_heredoc_body, + STATE(11180), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435144] = 4, + [436973] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14331), 1, + anon_sym_RBRACE, + ACTIONS(14333), 1, + anon_sym_COMMA, STATE(10674), 1, sym_heredoc_body, + STATE(10705), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6439), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [435160] = 6, + [436993] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14396), 1, - anon_sym_RBRACE, - ACTIONS(14398), 1, - anon_sym_COMMA, + ACTIONS(11759), 1, + sym_identifier, + ACTIONS(14335), 1, + anon_sym_RPAREN, STATE(10675), 1, sym_heredoc_body, - STATE(10679), 1, - aux_sym_proc_type_repeat1, + STATE(10768), 1, + sym_block_body_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435180] = 6, + [437013] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14400), 1, + ACTIONS(14337), 1, anon_sym_RBRACE, - ACTIONS(14402), 1, + ACTIONS(14339), 1, anon_sym_COMMA, STATE(10676), 1, sym_heredoc_body, - STATE(10680), 1, + STATE(10686), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435200] = 6, + [437033] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(14341), 1, + anon_sym_RBRACE, + ACTIONS(14343), 1, anon_sym_COMMA, - ACTIONS(14404), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, STATE(10677), 1, sym_heredoc_body, + STATE(10706), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435220] = 6, + [437053] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4500), 1, - anon_sym_RPAREN, - ACTIONS(14406), 1, - anon_sym_COMMA, - STATE(9575), 1, - aux_sym_array_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14345), 1, + anon_sym_end, STATE(10678), 1, sym_heredoc_body, + STATE(11487), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435240] = 6, + [437073] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9929), 1, - anon_sym_RBRACE, - ACTIONS(14408), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(10075), 1, + ACTIONS(14347), 1, + anon_sym_DASH_GT, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(10679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435260] = 6, + [437093] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11210), 1, - anon_sym_RBRACE, - ACTIONS(14410), 1, + ACTIONS(4508), 1, + anon_sym_RPAREN, + ACTIONS(14349), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435280] = 6, + [437113] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14412), 1, - anon_sym_end, + ACTIONS(11578), 1, + anon_sym_RPAREN, + ACTIONS(14351), 1, + anon_sym_COMMA, + STATE(10465), 1, + aux_sym_proc_param_list_repeat1, STATE(10681), 1, sym_heredoc_body, - STATE(11165), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435300] = 6, + [437133] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5008), 1, + ACTIONS(8954), 1, + anon_sym_RPAREN, + ACTIONS(14353), 1, anon_sym_COMMA, - ACTIONS(14414), 1, - anon_sym_DASH_GT, - STATE(9865), 1, - aux_sym_proc_type_repeat1, - STATE(10682), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435320] = 6, + STATE(10682), 2, + sym_heredoc_body, + aux_sym_annotation_argument_list_repeat1, + [437151] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_else, - ACTIONS(14416), 1, - anon_sym_end, + ACTIONS(9983), 1, + anon_sym_RBRACE, + ACTIONS(14356), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10683), 1, sym_heredoc_body, - STATE(11336), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435340] = 6, + [437171] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9891), 1, - anon_sym_RBRACE, - ACTIONS(14418), 1, - anon_sym_COMMA, - STATE(10075), 1, - aux_sym_proc_type_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14358), 1, + anon_sym_end, STATE(10684), 1, sym_heredoc_body, + STATE(11605), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435360] = 6, + [437191] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11097), 1, - anon_sym_RBRACE, - ACTIONS(14420), 1, + ACTIONS(3577), 1, + anon_sym_RPAREN, + ACTIONS(14360), 1, anon_sym_COMMA, - STATE(9781), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10682), 1, + aux_sym_annotation_argument_list_repeat1, STATE(10685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435380] = 6, + [437211] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8419), 1, - sym__constant_segment, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - STATE(7649), 1, - sym_constant, + ACTIONS(11280), 1, + anon_sym_RBRACE, + ACTIONS(14362), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435400] = 6, + [437231] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11292), 1, - anon_sym_RBRACE, - ACTIONS(14422), 1, - anon_sym_COMMA, - STATE(10125), 1, - aux_sym_named_tuple_repeat1, + ACTIONS(12174), 1, + anon_sym_COLON2, + ACTIONS(14364), 1, + anon_sym_RPAREN, STATE(10687), 1, sym_heredoc_body, + STATE(12223), 1, + sym__asm_inputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435420] = 6, + [437251] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14424), 1, - anon_sym_end, + ACTIONS(8460), 1, + sym__constant_segment, + ACTIONS(8462), 1, + anon_sym_COLON_COLON, STATE(10688), 1, sym_heredoc_body, - STATE(11955), 1, - sym_ensure, + STATE(11837), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435440] = 6, + [437271] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3745), 1, - anon_sym_RBRACE, - ACTIONS(14426), 1, + ACTIONS(4180), 1, + anon_sym_RPAREN, + ACTIONS(14366), 1, anon_sym_COMMA, - STATE(10389), 1, - aux_sym_implicit_object_tuple_repeat1, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435460] = 6, + [437291] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4288), 1, + ACTIONS(4250), 1, anon_sym_RBRACK, - ACTIONS(14428), 1, + ACTIONS(14368), 1, anon_sym_COMMA, - STATE(9575), 1, + STATE(9646), 1, aux_sym_array_repeat1, STATE(10690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435480] = 6, + [437311] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14133), 1, - anon_sym_COMMA, - ACTIONS(14430), 1, + ACTIONS(14335), 1, anon_sym_RPAREN, - STATE(10084), 1, - aux_sym_asm_clobbers_repeat1, + ACTIONS(14370), 1, + anon_sym_COMMA, + STATE(10315), 1, + aux_sym__block_body_nested_param_repeat1, STATE(10691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435500] = 6, + [437331] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14432), 1, + ACTIONS(14372), 1, anon_sym_RBRACE, - ACTIONS(14434), 1, + ACTIONS(14374), 1, anon_sym_COMMA, - STATE(10548), 1, - aux_sym_named_tuple_repeat1, STATE(10692), 1, sym_heredoc_body, + STATE(10701), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435520] = 4, + [437351] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14376), 1, + anon_sym_RBRACE, + ACTIONS(14378), 1, + anon_sym_COMMA, STATE(10693), 1, sym_heredoc_body, + STATE(10707), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13260), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON2, - [435536] = 6, + [437371] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14436), 1, - anon_sym_RBRACE, - ACTIONS(14438), 1, + ACTIONS(5024), 1, anon_sym_COMMA, - STATE(10163), 1, + ACTIONS(14380), 1, + anon_sym_DASH_GT, + STATE(9734), 1, aux_sym_proc_type_repeat1, STATE(10694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435556] = 6, + [437391] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14440), 1, - anon_sym_RBRACE, - ACTIONS(14442), 1, - anon_sym_COMMA, - STATE(10233), 1, - aux_sym_named_tuple_type_repeat1, STATE(10695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435576] = 5, + ACTIONS(10875), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [437407] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8821), 1, + ACTIONS(4514), 1, anon_sym_RPAREN, - ACTIONS(14444), 1, + ACTIONS(14382), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, + STATE(10696), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10696), 2, - sym_heredoc_body, - aux_sym_annotation_argument_list_repeat1, - [435594] = 6, + [437427] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9057), 1, - anon_sym_RPAREN, - ACTIONS(9059), 1, - anon_sym_COMMA, - STATE(10260), 1, - aux_sym_annotation_argument_list_repeat1, STATE(10697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435614] = 6, + ACTIONS(6397), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [437443] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14447), 1, - anon_sym_end, + ACTIONS(14384), 1, + anon_sym_RBRACE, + ACTIONS(14386), 1, + anon_sym_COMMA, + STATE(10131), 1, + aux_sym_hash_repeat1, STATE(10698), 1, sym_heredoc_body, - STATE(10922), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435634] = 6, + [437463] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14449), 1, - anon_sym_RBRACE, - ACTIONS(14451), 1, - anon_sym_COMMA, - STATE(10160), 1, - aux_sym_hash_repeat1, + ACTIONS(13343), 1, + anon_sym_COLON2, + ACTIONS(14388), 1, + anon_sym_RPAREN, STATE(10699), 1, sym_heredoc_body, + STATE(12360), 1, + sym__asm_outputs, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435654] = 6, + [437483] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14453), 1, - anon_sym_RBRACE, - ACTIONS(14455), 1, - anon_sym_COMMA, - STATE(10022), 1, - aux_sym_hash_repeat1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14390), 1, + anon_sym_end, STATE(10700), 1, sym_heredoc_body, + STATE(11639), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435674] = 6, + [437503] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1401), 1, - sym__regular_ensure_keyword, - ACTIONS(14457), 1, - anon_sym_end, + ACTIONS(10061), 1, + anon_sym_RBRACE, + ACTIONS(14392), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10701), 1, sym_heredoc_body, - STATE(11816), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435694] = 5, + [437523] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14459), 1, - anon_sym_RPAREN, - ACTIONS(14461), 1, - anon_sym_COMMA, STATE(10702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435711] = 5, + ACTIONS(10875), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [437539] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14463), 1, - anon_sym_RPAREN, - ACTIONS(14465), 1, + ACTIONS(14394), 1, + anon_sym_RBRACE, + ACTIONS(14396), 1, anon_sym_COMMA, + STATE(10166), 1, + aux_sym_named_tuple_repeat1, STATE(10703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435728] = 5, + [437559] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14467), 1, - anon_sym_RPAREN, - ACTIONS(14469), 1, + ACTIONS(4518), 1, + anon_sym_RBRACE, + ACTIONS(14398), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435745] = 5, + [437579] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14471), 1, - sym__string_literal_start, - STATE(8398), 1, - sym_string, + ACTIONS(3978), 1, + anon_sym_RBRACE, + ACTIONS(14400), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435762] = 5, + [437599] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14473), 1, - anon_sym_RBRACK, - ACTIONS(14475), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(11348), 1, + anon_sym_RBRACE, + ACTIONS(14402), 1, + anon_sym_COMMA, STATE(10706), 1, sym_heredoc_body, + STATE(10722), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435779] = 5, + [437619] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14477), 1, - anon_sym_RBRACK, - ACTIONS(14479), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(11284), 1, + anon_sym_RBRACE, + ACTIONS(14404), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435796] = 4, + [437639] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14406), 1, + anon_sym_end, STATE(10708), 1, sym_heredoc_body, + STATE(11697), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13700), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [435811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [437659] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10709), 1, + ACTIONS(14408), 1, + anon_sym_COMMA, + ACTIONS(14411), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10709), 2, sym_heredoc_body, - ACTIONS(14481), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [435828] = 5, + aux_sym_block_param_list_repeat1, + [437677] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14483), 1, + ACTIONS(4184), 1, anon_sym_RBRACK, - ACTIONS(14485), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14413), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435845] = 5, + [437697] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14487), 1, - anon_sym_RPAREN, - ACTIONS(14489), 1, + ACTIONS(13716), 1, anon_sym_COMMA, + ACTIONS(14415), 1, + aux_sym_top_level_fun_def_token1, + STATE(10459), 1, + aux_sym_c_struct_fields_repeat1, STATE(10711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435862] = 5, + [437717] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14491), 1, - anon_sym_RBRACK, - ACTIONS(14493), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(10087), 1, + anon_sym_RBRACE, + ACTIONS(14417), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435879] = 5, + [437737] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14495), 1, + ACTIONS(8911), 1, anon_sym_RPAREN, - ACTIONS(14497), 1, + ACTIONS(8913), 1, anon_sym_COMMA, + STATE(10385), 1, + aux_sym_annotation_argument_list_repeat1, STATE(10713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435896] = 5, + [437757] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10134), 1, - sym_string, STATE(10714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435913] = 4, + ACTIONS(10835), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [437773] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11223), 1, + anon_sym_RBRACE, + ACTIONS(14419), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14039), 2, - anon_sym_COMMA, - aux_sym_top_level_fun_def_token1, - [435928] = 5, + [437793] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14499), 1, - anon_sym_RBRACK, - ACTIONS(14501), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14421), 1, + anon_sym_RBRACE, + ACTIONS(14423), 1, + anon_sym_COMMA, STATE(10716), 1, sym_heredoc_body, + STATE(10721), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435945] = 5, + [437813] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14503), 1, - anon_sym_EQ, - ACTIONS(14505), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(9094), 1, + anon_sym_RPAREN, + ACTIONS(9270), 1, + anon_sym_COMMA, + STATE(10109), 1, + aux_sym_annotation_argument_list_repeat1, STATE(10717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435962] = 5, + [437833] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14507), 1, - anon_sym_RBRACK, - ACTIONS(14509), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14425), 1, + anon_sym_RBRACE, + ACTIONS(14427), 1, + anon_sym_COMMA, STATE(10718), 1, sym_heredoc_body, + STATE(10723), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435979] = 4, + [437853] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(14429), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14511), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [435994] = 5, + [437873] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14513), 1, + ACTIONS(4538), 1, anon_sym_RPAREN, - ACTIONS(14515), 1, + ACTIONS(14431), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436011] = 4, + [437893] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(10093), 1, + anon_sym_RBRACE, + ACTIONS(14433), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13524), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [436026] = 4, + [437913] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10722), 1, - sym_heredoc_body, + ACTIONS(14435), 1, + anon_sym_RBRACE, + ACTIONS(14437), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9456), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [436041] = 5, + STATE(10722), 2, + sym_heredoc_body, + aux_sym_named_tuple_repeat1, + [437931] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14324), 1, - anon_sym_RPAREN, - ACTIONS(14517), 1, + ACTIONS(11292), 1, + anon_sym_RBRACE, + ACTIONS(14440), 1, anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436058] = 5, + [437951] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14519), 1, - anon_sym_RBRACK, - ACTIONS(14521), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(10063), 1, + anon_sym_RBRACE, + ACTIONS(14442), 1, + anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436075] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [437971] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(11412), 1, + anon_sym_RBRACE, + ACTIONS(14444), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10725), 1, sym_heredoc_body, - ACTIONS(14523), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [436092] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [437991] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14525), 1, - anon_sym_RBRACK, - ACTIONS(14527), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14446), 1, + anon_sym_RBRACE, + ACTIONS(14448), 1, + anon_sym_COMMA, + STATE(10263), 1, + aux_sym_proc_type_repeat1, STATE(10726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436109] = 5, + [438011] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10659), 1, - sym_string, + ACTIONS(14450), 1, + anon_sym_RBRACE, + ACTIONS(14452), 1, + anon_sym_COMMA, STATE(10727), 1, sym_heredoc_body, + STATE(10732), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436126] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [438031] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14454), 1, + anon_sym_RBRACE, + ACTIONS(14456), 1, + anon_sym_COMMA, STATE(10728), 1, sym_heredoc_body, - ACTIONS(14529), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [436143] = 5, + STATE(10733), 1, + aux_sym_named_tuple_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [438051] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, - sym_identifier, - STATE(10319), 1, - sym_block_body_param, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(14458), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436160] = 5, + [438071] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14531), 1, - anon_sym_RBRACK, - ACTIONS(14533), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(4552), 1, + anon_sym_RPAREN, + ACTIONS(14460), 1, + anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436177] = 5, + [438091] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14535), 1, - anon_sym_RPAREN, - ACTIONS(14537), 1, - anon_sym_COMMA, + ACTIONS(14464), 1, + anon_sym_EQ, STATE(10731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436194] = 5, + ACTIONS(14462), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [438109] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14539), 1, - anon_sym_RPAREN, - ACTIONS(14541), 1, + ACTIONS(9963), 1, + anon_sym_RBRACE, + ACTIONS(14466), 1, anon_sym_COMMA, + STATE(10286), 1, + aux_sym_proc_type_repeat1, STATE(10732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436211] = 5, + [438129] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10127), 1, - sym_string, + ACTIONS(11298), 1, + anon_sym_RBRACE, + ACTIONS(14468), 1, + anon_sym_COMMA, + STATE(9950), 1, + aux_sym_named_tuple_type_repeat1, STATE(10733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436228] = 5, + [438149] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14543), 1, - anon_sym_RPAREN, - ACTIONS(14545), 1, - aux_sym_proc_token1, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14470), 1, + anon_sym_end, STATE(10734), 1, sym_heredoc_body, + STATE(11717), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436245] = 5, + [438169] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14547), 1, - anon_sym_RPAREN, - ACTIONS(14549), 1, + ACTIONS(14472), 1, + anon_sym_RBRACE, + ACTIONS(14474), 1, anon_sym_COMMA, + STATE(10471), 1, + aux_sym_hash_repeat1, STATE(10735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436262] = 5, + [438189] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14551), 1, + ACTIONS(14476), 1, anon_sym_RPAREN, - ACTIONS(14553), 1, + ACTIONS(14478), 1, anon_sym_COMMA, - STATE(10736), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436279] = 5, + STATE(10736), 2, + sym_heredoc_body, + aux_sym_param_list_repeat1, + [438207] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14555), 1, - anon_sym_RPAREN, - ACTIONS(14557), 1, + ACTIONS(14481), 1, + anon_sym_RBRACE, + ACTIONS(14483), 1, anon_sym_COMMA, + STATE(10071), 1, + aux_sym_proc_type_repeat1, STATE(10737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436296] = 5, + [438227] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14559), 1, - anon_sym_RBRACK, - ACTIONS(14561), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14485), 1, + anon_sym_RBRACE, + ACTIONS(14487), 1, + anon_sym_COMMA, + STATE(10072), 1, + aux_sym_named_tuple_type_repeat1, STATE(10738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [438247] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14489), 1, + anon_sym_end, STATE(10739), 1, sym_heredoc_body, - ACTIONS(14563), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [436330] = 5, + STATE(12052), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [438267] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14565), 1, - anon_sym_RPAREN, - ACTIONS(14567), 1, - anon_sym_COMMA, STATE(10740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436347] = 5, + ACTIONS(10753), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [438283] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14569), 1, - anon_sym_RBRACK, - ACTIONS(14571), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(5024), 1, + anon_sym_COMMA, + ACTIONS(14491), 1, + anon_sym_DASH_GT, + STATE(9734), 1, + aux_sym_proc_type_repeat1, STATE(10741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436364] = 4, + [438303] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10742), 1, @@ -716304,581 +721160,593 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14573), 2, + ACTIONS(14493), 3, anon_sym_end, - anon_sym_in, - [436379] = 4, + anon_sym_else, + anon_sym_when, + [438319] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1401), 1, + sym__regular_ensure_keyword, + ACTIONS(14495), 1, + anon_sym_end, STATE(10743), 1, sym_heredoc_body, + STATE(11699), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14575), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [436394] = 5, + [438339] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14535), 1, - anon_sym_RPAREN, - ACTIONS(14577), 1, - anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_else, + ACTIONS(14497), 1, + anon_sym_end, STATE(10744), 1, sym_heredoc_body, + STATE(12042), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436411] = 5, + [438359] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, + ACTIONS(14499), 1, + anon_sym_RBRACE, + ACTIONS(14501), 1, anon_sym_COMMA, - ACTIONS(14579), 1, - anon_sym_EQ, STATE(10745), 1, sym_heredoc_body, + STATE(10747), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436428] = 5, + [438379] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14581), 1, - anon_sym_RPAREN, - ACTIONS(14583), 1, + ACTIONS(14503), 1, + anon_sym_RBRACE, + ACTIONS(14505), 1, anon_sym_COMMA, + STATE(10268), 1, + aux_sym_proc_type_repeat1, STATE(10746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436445] = 5, + [438399] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10067), 1, - sym_string, + ACTIONS(4164), 1, + anon_sym_RBRACE, + ACTIONS(14507), 1, + anon_sym_COMMA, + STATE(10121), 1, + aux_sym_hash_repeat1, STATE(10747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436462] = 5, + [438419] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12777), 1, - anon_sym_def, - STATE(8624), 1, - sym__base_method_def, + ACTIONS(14509), 1, + anon_sym_RBRACE, + ACTIONS(14511), 1, + anon_sym_COMMA, + STATE(10273), 1, + aux_sym_named_tuple_type_repeat1, STATE(10748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436479] = 5, + [438439] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14555), 1, + ACTIONS(4284), 1, anon_sym_RPAREN, - ACTIONS(14585), 1, + ACTIONS(14513), 1, anon_sym_COMMA, + STATE(9646), 1, + aux_sym_array_repeat1, STATE(10749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436496] = 5, + [438459] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14495), 1, - anon_sym_RPAREN, - ACTIONS(14587), 1, - anon_sym_COMMA, STATE(10750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436513] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(14467), 1, + ACTIONS(14515), 2, anon_sym_RPAREN, - ACTIONS(14589), 1, anon_sym_COMMA, + [438474] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, STATE(10751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436530] = 5, + ACTIONS(14517), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [438489] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14591), 1, - anon_sym_RPAREN, - ACTIONS(14593), 1, - anon_sym_COMMA, + ACTIONS(10287), 1, + anon_sym_def, + STATE(165), 1, + sym__base_method_def, STATE(10752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436547] = 5, + [438506] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14595), 1, - anon_sym_RPAREN, - ACTIONS(14597), 1, - anon_sym_COMMA, + ACTIONS(14519), 1, + anon_sym_RBRACK, + ACTIONS(14521), 1, + anon_sym_RBRACK_QMARK, STATE(10753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436564] = 5, + [438523] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14599), 1, + ACTIONS(14523), 1, anon_sym_RPAREN, - ACTIONS(14601), 1, + ACTIONS(14525), 1, anon_sym_COMMA, STATE(10754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436581] = 5, + [438540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14603), 1, - anon_sym_RPAREN, - ACTIONS(14605), 1, - anon_sym_COMMA, STATE(10755), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [436598] = 5, + ACTIONS(14527), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [438557] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14607), 1, - anon_sym_RPAREN, - ACTIONS(14609), 1, - anon_sym_COMMA, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10699), 1, + sym_string, STATE(10756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436615] = 5, + [438574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14611), 1, - anon_sym_RPAREN, - ACTIONS(14613), 1, - anon_sym_COMMA, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10400), 1, + sym_string, STATE(10757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436632] = 5, + [438591] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14615), 1, - anon_sym_RPAREN, - ACTIONS(14617), 1, - anon_sym_COMMA, + ACTIONS(14529), 1, + anon_sym_RBRACK, + ACTIONS(14531), 1, + anon_sym_RBRACK_QMARK, STATE(10758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436649] = 5, + [438608] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14619), 1, - anon_sym_RPAREN, - ACTIONS(14621), 1, - anon_sym_COMMA, + ACTIONS(14533), 1, + anon_sym_RBRACK, + ACTIONS(14535), 1, + anon_sym_RBRACK_QMARK, STATE(10759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436666] = 5, + [438625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14623), 1, + ACTIONS(14537), 1, anon_sym_RPAREN, - ACTIONS(14625), 1, + ACTIONS(14539), 1, anon_sym_COMMA, STATE(10760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436683] = 5, + [438642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, + ACTIONS(12271), 1, sym__string_literal_start, - STATE(10122), 1, + STATE(10507), 1, sym_string, STATE(10761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [438659] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(14541), 1, + anon_sym_EQ, STATE(10762), 1, sym_heredoc_body, - ACTIONS(14627), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [436717] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [438676] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14599), 1, - anon_sym_RPAREN, - ACTIONS(14629), 1, - anon_sym_COMMA, + ACTIONS(14543), 1, + anon_sym_RBRACK, + ACTIONS(14545), 1, + anon_sym_RBRACK_QMARK, STATE(10763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436734] = 5, + [438693] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14631), 1, - anon_sym_RBRACK, - ACTIONS(14633), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(13114), 1, + anon_sym_def, + STATE(8731), 1, + sym__base_method_def, STATE(10764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436751] = 5, + [438710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14635), 1, - anon_sym_RBRACK, - ACTIONS(14637), 1, - anon_sym_RBRACK_QMARK, STATE(10765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436768] = 5, + ACTIONS(14547), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [438725] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14607), 1, + ACTIONS(14549), 1, anon_sym_RPAREN, - ACTIONS(14639), 1, + ACTIONS(14551), 1, anon_sym_COMMA, STATE(10766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436785] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [438742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10767), 1, sym_heredoc_body, - ACTIONS(14641), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [436802] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5022), 2, + sym__start_of_brace_block, + anon_sym_do, + [438757] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10313), 1, - sym_string, STATE(10768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436819] = 5, + ACTIONS(13758), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [438772] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10402), 1, - sym_string, + ACTIONS(14553), 1, + anon_sym_RBRACK, + ACTIONS(14555), 1, + anon_sym_RBRACK_QMARK, STATE(10769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436836] = 5, + [438789] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14643), 1, + ACTIONS(14557), 1, anon_sym_RBRACK, - ACTIONS(14645), 1, + ACTIONS(14559), 1, anon_sym_RBRACK_QMARK, STATE(10770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436853] = 5, + [438806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10225), 1, - anon_sym_def, - STATE(153), 1, - sym__base_method_def, + ACTIONS(14561), 1, + anon_sym_RBRACK, + ACTIONS(14563), 1, + anon_sym_RBRACK_QMARK, STATE(10771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436870] = 5, + [438823] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14647), 1, + ACTIONS(14565), 1, anon_sym_RBRACK, - ACTIONS(14649), 1, + ACTIONS(14567), 1, anon_sym_RBRACK_QMARK, STATE(10772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436887] = 5, + [438840] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14651), 1, - anon_sym_RBRACK, - ACTIONS(14653), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14569), 1, + sym__string_literal_start, + STATE(8263), 1, + sym_string, STATE(10773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436904] = 5, + [438857] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14655), 1, + ACTIONS(14571), 1, anon_sym_RBRACK, - ACTIONS(14657), 1, + ACTIONS(14573), 1, anon_sym_RBRACK_QMARK, STATE(10774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436921] = 4, + [438874] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14575), 1, + anon_sym_RPAREN, + ACTIONS(14577), 1, + anon_sym_COMMA, STATE(10775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5006), 2, - sym__start_of_brace_block, - anon_sym_do, - [436936] = 5, + [438891] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14659), 1, - anon_sym_RBRACK, - ACTIONS(14661), 1, - anon_sym_RBRACK_QMARK, STATE(10776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436953] = 5, + ACTIONS(13836), 2, + anon_sym_COMMA, + aux_sym_top_level_fun_def_token1, + [438906] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14663), 1, + ACTIONS(14579), 1, anon_sym_RBRACK, - ACTIONS(14665), 1, + ACTIONS(14581), 1, anon_sym_RBRACK_QMARK, STATE(10777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436970] = 5, + [438923] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14463), 1, - anon_sym_RPAREN, - ACTIONS(14667), 1, - anon_sym_COMMA, + ACTIONS(14583), 1, + anon_sym_RBRACK, + ACTIONS(14585), 1, + anon_sym_RBRACK_QMARK, STATE(10778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436987] = 5, + [438940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14539), 1, - anon_sym_RPAREN, - ACTIONS(14669), 1, - anon_sym_COMMA, STATE(10779), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + ACTIONS(14587), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [438957] = 5, + ACTIONS(3), 1, sym_comment, - [437004] = 4, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10780), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(13466), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [437019] = 4, + ACTIONS(14589), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [438974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14591), 1, + anon_sym_RBRACK, + ACTIONS(14593), 1, + anon_sym_RBRACK_QMARK, STATE(10781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14671), 2, - anon_sym_end, - anon_sym_in, - [437034] = 5, + [438991] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(14673), 1, - anon_sym_EQ, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10305), 1, + sym_string, STATE(10782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437051] = 4, + [439008] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14595), 1, + anon_sym_RPAREN, + ACTIONS(14597), 1, + anon_sym_COMMA, STATE(10783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6145), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [437066] = 5, + [439025] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14459), 1, - anon_sym_RPAREN, - ACTIONS(14675), 1, - anon_sym_COMMA, STATE(10784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437083] = 5, + ACTIONS(14599), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [439040] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14677), 1, + ACTIONS(14601), 1, anon_sym_RBRACK, - ACTIONS(14679), 1, + ACTIONS(14603), 1, anon_sym_RBRACK_QMARK, STATE(10785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437100] = 5, + [439057] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14463), 1, - anon_sym_RPAREN, - ACTIONS(14681), 1, - anon_sym_COMMA, + ACTIONS(14605), 1, + anon_sym_RBRACK, + ACTIONS(14607), 1, + anon_sym_RBRACK_QMARK, STATE(10786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437117] = 5, + [439074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14683), 1, - anon_sym_RBRACK, - ACTIONS(14685), 1, - anon_sym_RBRACK_QMARK, STATE(10787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437134] = 5, + ACTIONS(13972), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [439089] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14687), 1, - anon_sym_RBRACK, - ACTIONS(14689), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10115), 1, + sym_string, STATE(10788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437151] = 5, + [439106] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14691), 1, - anon_sym_RBRACK, - ACTIONS(14693), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14609), 1, + anon_sym_RPAREN, + ACTIONS(14611), 1, + aux_sym_proc_token1, STATE(10789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437168] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [439123] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14613), 1, + anon_sym_RBRACK, + ACTIONS(14615), 1, + anon_sym_RBRACK_QMARK, STATE(10790), 1, sym_heredoc_body, - ACTIONS(14695), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [437185] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [439140] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -716887,162 +721755,166 @@ static const uint16_t ts_small_parse_table[] = { sym__heredoc_body_start, STATE(10791), 1, sym_heredoc_body, - ACTIONS(14697), 2, + ACTIONS(14617), 2, aux_sym_char_token1, sym_char_escape_sequence, - [437202] = 5, + [439157] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14699), 1, + ACTIONS(14619), 1, anon_sym_RBRACK, - ACTIONS(14701), 1, + ACTIONS(14621), 1, anon_sym_RBRACK_QMARK, STATE(10792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437219] = 5, + [439174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10076), 1, - sym_string, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(14623), 1, + anon_sym_EQ, STATE(10793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437236] = 4, + [439191] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14625), 1, + anon_sym_RPAREN, + ACTIONS(14627), 1, + anon_sym_COMMA, STATE(10794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14703), 2, - sym__regular_ensure_keyword, - anon_sym_end, - [437251] = 4, + [439208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14629), 1, + anon_sym_RBRACK, + ACTIONS(14631), 1, + anon_sym_RBRACK_QMARK, STATE(10795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14705), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [437266] = 5, + [439225] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, + ACTIONS(14523), 1, + anon_sym_RPAREN, + ACTIONS(14633), 1, anon_sym_COMMA, - ACTIONS(14707), 1, - anon_sym_EQ, STATE(10796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437283] = 5, + [439242] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14709), 1, + ACTIONS(14635), 1, anon_sym_RPAREN, - ACTIONS(14711), 1, - aux_sym_proc_token1, + ACTIONS(14637), 1, + anon_sym_COMMA, STATE(10797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437300] = 5, + [439259] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14713), 1, - anon_sym_RBRACK, - ACTIONS(14715), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14639), 1, + anon_sym_RPAREN, + ACTIONS(14641), 1, + anon_sym_COMMA, STATE(10798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437317] = 4, + [439276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14643), 1, + anon_sym_RPAREN, + ACTIONS(14645), 1, + anon_sym_COMMA, STATE(10799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14717), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [437332] = 4, + [439293] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10153), 1, + sym_string, STATE(10800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14719), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [437347] = 5, + [439310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14513), 1, + ACTIONS(14647), 1, anon_sym_RPAREN, - ACTIONS(14721), 1, + ACTIONS(14649), 1, anon_sym_COMMA, STATE(10801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437364] = 5, + [439327] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(14723), 1, - anon_sym_EQ, + ACTIONS(14651), 1, + anon_sym_RBRACK, + ACTIONS(14653), 1, + anon_sym_RBRACK_QMARK, STATE(10802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437381] = 5, + [439344] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14725), 1, + ACTIONS(14655), 1, anon_sym_RBRACK, - ACTIONS(14727), 1, + ACTIONS(14657), 1, anon_sym_RBRACK_QMARK, STATE(10803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437398] = 5, + [439361] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14611), 1, - anon_sym_RPAREN, - ACTIONS(14729), 1, - anon_sym_COMMA, + ACTIONS(14659), 1, + anon_sym_RBRACK, + ACTIONS(14661), 1, + anon_sym_RBRACK_QMARK, STATE(10804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437415] = 4, + [439378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10805), 1, @@ -717050,541 +721922,544 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13757), 2, - anon_sym_RPAREN, + ACTIONS(9506), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [437430] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [439393] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14663), 1, + anon_sym_RPAREN, + ACTIONS(14665), 1, + anon_sym_COMMA, STATE(10806), 1, sym_heredoc_body, - ACTIONS(14731), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [437447] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [439410] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14551), 1, - anon_sym_RPAREN, - ACTIONS(14733), 1, - anon_sym_COMMA, + ACTIONS(14667), 1, + anon_sym_RBRACK, + ACTIONS(14669), 1, + anon_sym_RBRACK_QMARK, STATE(10807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437464] = 5, + [439427] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14547), 1, + ACTIONS(14671), 1, anon_sym_RPAREN, - ACTIONS(14735), 1, + ACTIONS(14673), 1, anon_sym_COMMA, STATE(10808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437481] = 5, + [439444] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12890), 1, - anon_sym_def, - STATE(7989), 1, - sym__base_method_def, + ACTIONS(14675), 1, + anon_sym_RBRACK, + ACTIONS(14677), 1, + anon_sym_RBRACK_QMARK, STATE(10809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437498] = 5, + [439461] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14737), 1, + ACTIONS(14679), 1, anon_sym_RBRACK, - ACTIONS(14739), 1, + ACTIONS(14681), 1, anon_sym_RBRACK_QMARK, STATE(10810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437515] = 5, + [439478] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10394), 1, - sym_string, + ACTIONS(14683), 1, + anon_sym_RPAREN, + ACTIONS(14685), 1, + anon_sym_COMMA, STATE(10811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437532] = 5, + [439495] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14741), 1, - anon_sym_RBRACK, - ACTIONS(14743), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14687), 1, + anon_sym_RPAREN, + ACTIONS(14689), 1, + anon_sym_COMMA, STATE(10812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437549] = 5, + [439512] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14745), 1, - anon_sym_RBRACK, - ACTIONS(14747), 1, - anon_sym_RBRACK_QMARK, STATE(10813), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [437566] = 5, + ACTIONS(14691), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [439529] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14749), 1, - anon_sym_RBRACK, - ACTIONS(14751), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14693), 1, + anon_sym_RPAREN, + ACTIONS(14695), 1, + anon_sym_COMMA, STATE(10814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437583] = 5, + [439546] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14753), 1, - anon_sym_RBRACK, - ACTIONS(14755), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14625), 1, + anon_sym_RPAREN, + ACTIONS(14697), 1, + anon_sym_COMMA, STATE(10815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437600] = 5, + [439563] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14581), 1, + ACTIONS(14699), 1, anon_sym_RPAREN, - ACTIONS(14757), 1, + ACTIONS(14701), 1, anon_sym_COMMA, STATE(10816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437617] = 4, + [439580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14703), 1, + anon_sym_RPAREN, + ACTIONS(14705), 1, + anon_sym_COMMA, STATE(10817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14759), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [437632] = 4, + [439597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14707), 1, + anon_sym_RPAREN, + ACTIONS(14709), 1, + anon_sym_COMMA, STATE(10818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14761), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [437647] = 4, + [439614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14711), 1, + anon_sym_RPAREN, + ACTIONS(14713), 1, + anon_sym_COMMA, STATE(10819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14763), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [437662] = 5, + [439631] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14765), 1, - anon_sym_RBRACK, - ACTIONS(14767), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14715), 1, + anon_sym_RPAREN, + ACTIONS(14717), 1, + anon_sym_COMMA, STATE(10820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437679] = 5, + [439648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14769), 1, - anon_sym_RBRACK, - ACTIONS(14771), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14719), 1, + anon_sym_RPAREN, + ACTIONS(14721), 1, + anon_sym_COMMA, STATE(10821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437696] = 5, + [439665] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12725), 1, - anon_sym_def, - STATE(8290), 1, - sym__base_method_def, STATE(10822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437713] = 5, + ACTIONS(14435), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [439680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14773), 1, - anon_sym_RBRACK, - ACTIONS(14775), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(13390), 1, + anon_sym_RPAREN, + ACTIONS(14723), 1, + anon_sym_COMMA, STATE(10823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437730] = 5, + [439697] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14777), 1, + ACTIONS(14725), 1, anon_sym_RBRACK, - ACTIONS(14779), 1, + ACTIONS(14727), 1, anon_sym_RBRACK_QMARK, STATE(10824), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437747] = 5, + [439714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14615), 1, - anon_sym_RPAREN, - ACTIONS(14781), 1, - anon_sym_COMMA, STATE(10825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437764] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(14729), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [439729] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14731), 1, + anon_sym_RBRACK, + ACTIONS(14733), 1, + anon_sym_RBRACK_QMARK, STATE(10826), 1, sym_heredoc_body, - ACTIONS(14783), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [437781] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [439746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, + ACTIONS(12271), 1, sym__string_literal_start, - STATE(10311), 1, + STATE(10120), 1, sym_string, STATE(10827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437798] = 5, + [439763] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14785), 1, + ACTIONS(14735), 1, anon_sym_RBRACK, - ACTIONS(14787), 1, + ACTIONS(14737), 1, anon_sym_RBRACK_QMARK, STATE(10828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437815] = 5, + [439780] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14789), 1, + ACTIONS(14739), 1, anon_sym_RBRACK, - ACTIONS(14791), 1, + ACTIONS(14741), 1, anon_sym_RBRACK_QMARK, STATE(10829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437832] = 4, + [439797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14671), 1, + anon_sym_RPAREN, + ACTIONS(14743), 1, + anon_sym_COMMA, STATE(10830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14793), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [437847] = 4, + [439814] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14745), 1, + anon_sym_RBRACK, + ACTIONS(14747), 1, + anon_sym_RBRACK_QMARK, STATE(10831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13903), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [437862] = 4, + [439831] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12993), 1, + anon_sym_def, + STATE(8024), 1, + sym__base_method_def, STATE(10832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14795), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [437877] = 5, + [439848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14797), 1, - sym__string_literal_start, - STATE(9038), 1, - sym_string, STATE(10833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437894] = 4, + ACTIONS(14749), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [439863] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14751), 1, + anon_sym_RBRACK, + ACTIONS(14753), 1, + anon_sym_RBRACK_QMARK, STATE(10834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13663), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [437909] = 4, + [439880] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(14755), 1, + anon_sym_EQ, STATE(10835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13436), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [437924] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [439897] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(14757), 1, + anon_sym_EQ, STATE(10836), 1, sym_heredoc_body, - ACTIONS(14799), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [437941] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + [439914] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14549), 1, + anon_sym_RPAREN, + ACTIONS(14759), 1, + anon_sym_COMMA, STATE(10837), 1, sym_heredoc_body, - ACTIONS(14801), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [437958] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [439931] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14803), 1, - anon_sym_RBRACK, - ACTIONS(14805), 1, - anon_sym_RBRACK_QMARK, STATE(10838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437975] = 5, + ACTIONS(14761), 2, + anon_sym_end, + anon_sym_in, + [439946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14603), 1, - anon_sym_RPAREN, - ACTIONS(14807), 1, - anon_sym_COMMA, STATE(10839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437992] = 5, + ACTIONS(14763), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [439961] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10463), 1, - sym_string, + ACTIONS(14765), 1, + anon_sym_RBRACK, + ACTIONS(14767), 1, + anon_sym_RBRACK_QMARK, STATE(10840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438009] = 5, + [439978] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14809), 1, - anon_sym_RBRACK, - ACTIONS(14811), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14769), 1, + sym__string_literal_start, + STATE(8483), 1, + sym_string, STATE(10841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438026] = 5, + [439995] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14813), 1, - anon_sym_RBRACK, - ACTIONS(14815), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14647), 1, + anon_sym_RPAREN, + ACTIONS(14771), 1, + anon_sym_COMMA, STATE(10842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438043] = 5, + [440012] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14619), 1, - anon_sym_RPAREN, - ACTIONS(14817), 1, - anon_sym_COMMA, + ACTIONS(11759), 1, + sym_identifier, + STATE(10077), 1, + sym_block_body_param, STATE(10843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438060] = 5, + [440029] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14819), 1, + ACTIONS(14773), 1, anon_sym_RBRACK, - ACTIONS(14821), 1, + ACTIONS(14775), 1, anon_sym_RBRACK_QMARK, STATE(10844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438077] = 5, + [440046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14823), 1, - anon_sym_RBRACK, - ACTIONS(14825), 1, - anon_sym_RBRACK_QMARK, STATE(10845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438094] = 5, + ACTIONS(14777), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [440061] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10551), 1, - sym_string, + ACTIONS(14549), 1, + anon_sym_RPAREN, + ACTIONS(14779), 1, + anon_sym_COMMA, STATE(10846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438111] = 4, + [440078] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10847), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(14827), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [438126] = 5, + ACTIONS(14781), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [440095] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14829), 1, - anon_sym_RBRACK, - ACTIONS(14831), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14703), 1, + anon_sym_RPAREN, + ACTIONS(14783), 1, + anon_sym_COMMA, STATE(10848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438143] = 5, + [440112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14591), 1, - anon_sym_RPAREN, - ACTIONS(14833), 1, - anon_sym_COMMA, STATE(10849), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [438160] = 5, + ACTIONS(14785), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [440129] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(14835), 1, - anon_sym_EQ, + ACTIONS(14787), 1, + anon_sym_RBRACK, + ACTIONS(14789), 1, + anon_sym_RBRACK_QMARK, STATE(10850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438177] = 4, + [440146] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10851), 1, @@ -717592,91 +722467,92 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14837), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [438192] = 5, + ACTIONS(14791), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [440161] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14839), 1, - anon_sym_RBRACK, - ACTIONS(14841), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(12928), 1, + anon_sym_def, + STATE(8332), 1, + sym__base_method_def, STATE(10852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438209] = 5, + [440178] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14843), 1, - anon_sym_RBRACK, - ACTIONS(14845), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14537), 1, + anon_sym_RPAREN, + ACTIONS(14793), 1, + anon_sym_COMMA, STATE(10853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438226] = 5, + [440195] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10474), 1, - sym_string, STATE(10854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438243] = 4, + ACTIONS(14140), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [440210] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8689), 1, + sym__string_literal_start, + STATE(10582), 1, + sym_string, STATE(10855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14847), 2, - anon_sym_end, - anon_sym_in, - [438258] = 4, + [440227] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10243), 1, + sym_string, STATE(10856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14847), 2, - anon_sym_end, - anon_sym_in, - [438273] = 5, + [440244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14623), 1, - anon_sym_RPAREN, - ACTIONS(14849), 1, - anon_sym_COMMA, STATE(10857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438290] = 4, + ACTIONS(14795), 2, + anon_sym_end, + anon_sym_in, + [440259] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14797), 1, + anon_sym_RBRACK, + ACTIONS(14799), 1, + anon_sym_RBRACK_QMARK, STATE(10858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14851), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [438305] = 4, + [440276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10859), 1, @@ -717684,129 +722560,128 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14847), 2, + ACTIONS(14795), 2, anon_sym_end, anon_sym_in, - [438320] = 5, + [440291] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8590), 1, - sym__string_literal_start, - STATE(10693), 1, - sym_string, STATE(10860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438337] = 5, + ACTIONS(14795), 2, + anon_sym_end, + anon_sym_in, + [440306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14853), 1, - anon_sym_RBRACK, - ACTIONS(14855), 1, - anon_sym_RBRACK_QMARK, STATE(10861), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [438354] = 5, + ACTIONS(14801), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [440323] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14857), 1, + ACTIONS(14803), 1, anon_sym_RBRACK, - ACTIONS(14859), 1, + ACTIONS(14805), 1, anon_sym_RBRACK_QMARK, STATE(10862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438371] = 5, + [440340] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14861), 1, + ACTIONS(14807), 1, anon_sym_RBRACK, - ACTIONS(14863), 1, + ACTIONS(14809), 1, anon_sym_RBRACK_QMARK, STATE(10863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438388] = 4, + [440357] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10864), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(14847), 2, - anon_sym_end, - anon_sym_in, - [438403] = 5, + ACTIONS(14811), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [440374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14865), 1, + ACTIONS(14813), 1, anon_sym_RBRACK, - ACTIONS(14867), 1, + ACTIONS(14815), 1, anon_sym_RBRACK_QMARK, STATE(10865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438420] = 5, + [440391] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, + ACTIONS(12271), 1, sym__string_literal_start, - STATE(10693), 1, + STATE(10306), 1, sym_string, STATE(10866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438437] = 5, + [440408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14869), 1, - anon_sym_RBRACK, - ACTIONS(14871), 1, - anon_sym_RBRACK_QMARK, STATE(10867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438454] = 5, + ACTIONS(14795), 2, + anon_sym_end, + anon_sym_in, + [440423] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14595), 1, + ACTIONS(14707), 1, anon_sym_RPAREN, - ACTIONS(14873), 1, + ACTIONS(14817), 1, anon_sym_COMMA, STATE(10868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438471] = 5, + [440440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14875), 1, - sym__string_literal_start, - STATE(8208), 1, - sym_string, + ACTIONS(14819), 1, + anon_sym_RBRACK, + ACTIONS(14821), 1, + anon_sym_RBRACK_QMARK, STATE(10869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438488] = 4, + [440457] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10870), 1, @@ -717814,129 +722689,126 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14877), 2, + ACTIONS(14411), 2, anon_sym_COMMA, anon_sym_PIPE, - [438503] = 5, + [440472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14879), 1, - anon_sym_RBRACK, - ACTIONS(14881), 1, - anon_sym_RBRACK_QMARK, STATE(10871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438520] = 5, + ACTIONS(14823), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [440487] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14883), 1, - anon_sym_RBRACK, - ACTIONS(14885), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10346), 1, + sym_string, STATE(10872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438537] = 5, + [440504] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14887), 1, + ACTIONS(14825), 1, anon_sym_RBRACK, - ACTIONS(14889), 1, + ACTIONS(14827), 1, anon_sym_RBRACK_QMARK, STATE(10873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438554] = 5, + [440521] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, - ACTIONS(14891), 1, - anon_sym_EQ, STATE(10874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438571] = 5, + ACTIONS(14829), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [440536] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14893), 1, - anon_sym_RBRACK, - ACTIONS(14895), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10582), 1, + sym_string, STATE(10875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438588] = 5, + [440553] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14897), 1, - anon_sym_RBRACK, - ACTIONS(14899), 1, - anon_sym_RBRACK_QMARK, STATE(10876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438605] = 4, + ACTIONS(14831), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [440568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14833), 1, + anon_sym_RBRACK, + ACTIONS(14835), 1, + anon_sym_RBRACK_QMARK, STATE(10877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13351), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [438620] = 5, + [440585] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14901), 1, - anon_sym_RBRACK, - ACTIONS(14903), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(14837), 1, + anon_sym_EQ, STATE(10878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438637] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [440602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14839), 1, + anon_sym_RBRACK, + ACTIONS(14841), 1, + anon_sym_RBRACK_QMARK, STATE(10879), 1, sym_heredoc_body, - ACTIONS(14905), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [438654] = 5, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [440619] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12303), 1, - sym__string_literal_start, - STATE(10554), 1, - sym_string, STATE(10880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438671] = 4, + ACTIONS(14843), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [440634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10881), 1, @@ -717944,21 +722816,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14907), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [438686] = 4, + ACTIONS(14845), 2, + anon_sym_end, + anon_sym_in, + [440649] = 5, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(14847), 1, + anon_sym_RBRACK, + ACTIONS(14849), 1, + anon_sym_RBRACK_QMARK, STATE(10882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6293), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [438701] = 4, + [440666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, STATE(10883), 1, @@ -717966,13362 +722839,13680 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14909), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [438716] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(14851), 2, + sym__regular_ensure_keyword, + anon_sym_end, + [440681] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10884), 1, - sym_heredoc_body, - ACTIONS(14911), 2, - aux_sym_char_token1, - sym_char_escape_sequence, - [438733] = 5, + STATE(10884), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(14853), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [440696] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11803), 1, + ACTIONS(11759), 1, sym_identifier, - STATE(10831), 1, + STATE(10768), 1, sym_block_body_param, STATE(10885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438750] = 5, + [440713] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14463), 1, - anon_sym_RPAREN, - ACTIONS(14913), 1, - anon_sym_COMMA, + ACTIONS(14855), 1, + anon_sym_RBRACK, + ACTIONS(14857), 1, + anon_sym_RBRACK_QMARK, STATE(10886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438767] = 5, + [440730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14915), 1, + ACTIONS(14859), 1, anon_sym_RBRACK, - ACTIONS(14917), 1, + ACTIONS(14861), 1, anon_sym_RBRACK_QMARK, STATE(10887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438784] = 5, + [440747] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14919), 1, - anon_sym_RBRACK, - ACTIONS(14921), 1, - anon_sym_RBRACK_QMARK, STATE(10888), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [438801] = 5, + ACTIONS(14863), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [440764] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14923), 1, - anon_sym_RBRACK, - ACTIONS(14925), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10078), 1, + sym_string, STATE(10889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438818] = 5, + [440781] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14927), 1, - anon_sym_RBRACK, - ACTIONS(14929), 1, - anon_sym_RBRACK_QMARK, + ACTIONS(14865), 1, + anon_sym_EQ, + ACTIONS(14867), 1, + aux_sym_top_level_fun_def_token1, STATE(10890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438835] = 4, + [440798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14931), 1, - anon_sym_RPAREN, STATE(10891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438849] = 4, + ACTIONS(13383), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [440813] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14933), 1, - anon_sym_class, STATE(10892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438863] = 4, + ACTIONS(14869), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [440828] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14935), 1, - anon_sym_RBRACK, + ACTIONS(14663), 1, + anon_sym_RPAREN, + ACTIONS(14871), 1, + anon_sym_COMMA, STATE(10893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438877] = 4, + [440845] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12277), 1, - anon_sym_end, STATE(10894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438891] = 4, + ACTIONS(13430), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [440860] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14937), 1, - anon_sym_end, + ACTIONS(14575), 1, + anon_sym_RPAREN, + ACTIONS(14873), 1, + anon_sym_COMMA, STATE(10895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438905] = 4, + [440877] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14939), 1, - sym__constant_segment, + ACTIONS(14875), 1, + anon_sym_RBRACK, + ACTIONS(14877), 1, + anon_sym_RBRACK_QMARK, STATE(10896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438919] = 4, + [440894] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14941), 1, - anon_sym_end, + ACTIONS(14711), 1, + anon_sym_RPAREN, + ACTIONS(14879), 1, + anon_sym_COMMA, STATE(10897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438933] = 4, + [440911] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14943), 1, - anon_sym_end, STATE(10898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438947] = 4, + ACTIONS(6075), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [440926] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14945), 1, - anon_sym_RPAREN, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10616), 1, + sym_string, STATE(10899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438961] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [440943] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14947), 1, - aux_sym_type_declaration_token1, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10167), 1, + sym_string, STATE(10900), 1, sym_heredoc_body, - [438977] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [440960] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14949), 1, + ACTIONS(14881), 1, anon_sym_RPAREN, + ACTIONS(14883), 1, + aux_sym_proc_token1, STATE(10901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438991] = 4, + [440977] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14951), 1, - anon_sym_RPAREN, + ACTIONS(14885), 1, + sym__string_literal_start, + STATE(8876), 1, + sym_string, STATE(10902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439005] = 4, + [440994] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14953), 1, - anon_sym_EQ_GT, + ACTIONS(14887), 1, + anon_sym_RBRACK, + ACTIONS(14889), 1, + anon_sym_RBRACK_QMARK, STATE(10903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439019] = 4, + [441011] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14955), 1, - anon_sym_RPAREN, + ACTIONS(14891), 1, + anon_sym_RBRACK, + ACTIONS(14893), 1, + anon_sym_RBRACK_QMARK, STATE(10904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439033] = 4, + [441028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14957), 1, - ts_builtin_sym_end, + ACTIONS(14895), 1, + anon_sym_RBRACK, + ACTIONS(14897), 1, + anon_sym_RBRACK_QMARK, STATE(10905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439047] = 4, + [441045] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14959), 1, - anon_sym_end, + ACTIONS(14899), 1, + anon_sym_RBRACK, + ACTIONS(14901), 1, + anon_sym_RBRACK_QMARK, STATE(10906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439061] = 4, + [441062] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14961), 1, - anon_sym_end, + ACTIONS(14903), 1, + anon_sym_RBRACK, + ACTIONS(14905), 1, + anon_sym_RBRACK_QMARK, STATE(10907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439075] = 4, + [441079] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14963), 1, - anon_sym_RBRACE, + ACTIONS(14907), 1, + anon_sym_RBRACK, + ACTIONS(14909), 1, + anon_sym_RBRACK_QMARK, STATE(10908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439089] = 4, + [441096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14965), 1, - anon_sym_RBRACK, STATE(10909), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [439103] = 4, + ACTIONS(14911), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [441113] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14967), 1, - anon_sym_end, + ACTIONS(14715), 1, + anon_sym_RPAREN, + ACTIONS(14913), 1, + anon_sym_COMMA, STATE(10910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439117] = 4, + [441130] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14969), 1, - anon_sym_end, + ACTIONS(12271), 1, + sym__string_literal_start, + STATE(10475), 1, + sym_string, STATE(10911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439131] = 4, + [441147] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14971), 1, - anon_sym_end, + ACTIONS(307), 1, + anon_sym_COMMA, + ACTIONS(14915), 1, + anon_sym_EQ, STATE(10912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439145] = 4, + [441164] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14973), 1, - anon_sym_end, + ACTIONS(14699), 1, + anon_sym_RPAREN, + ACTIONS(14917), 1, + anon_sym_COMMA, STATE(10913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439159] = 4, + [441181] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14975), 1, - anon_sym_end, + ACTIONS(14919), 1, + anon_sym_RBRACK, + ACTIONS(14921), 1, + anon_sym_RBRACK_QMARK, STATE(10914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439173] = 4, + [441198] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14977), 1, - anon_sym_end, + ACTIONS(14923), 1, + anon_sym_RBRACK, + ACTIONS(14925), 1, + anon_sym_RBRACK_QMARK, STATE(10915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439187] = 4, + [441215] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14979), 1, - anon_sym_RPAREN, STATE(10916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439201] = 4, + ACTIONS(14476), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [441230] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14981), 1, - anon_sym_yield, + ACTIONS(14927), 1, + anon_sym_RBRACK, + ACTIONS(14929), 1, + anon_sym_RBRACK_QMARK, STATE(10917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439215] = 4, + [441247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12248), 1, - anon_sym_end, + ACTIONS(14931), 1, + anon_sym_RBRACK, + ACTIONS(14933), 1, + anon_sym_RBRACK_QMARK, STATE(10918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439229] = 4, + [441264] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14983), 1, - anon_sym_end, + ACTIONS(14935), 1, + anon_sym_RBRACK, + ACTIONS(14937), 1, + anon_sym_RBRACK_QMARK, STATE(10919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439243] = 4, + [441281] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14985), 1, - anon_sym_RPAREN, + ACTIONS(14939), 1, + anon_sym_RBRACK, + ACTIONS(14941), 1, + anon_sym_RBRACK_QMARK, STATE(10920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439257] = 4, + [441298] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14987), 1, + ACTIONS(14943), 1, anon_sym_RPAREN, + ACTIONS(14945), 1, + anon_sym_COMMA, STATE(10921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439271] = 4, + [441315] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14989), 1, - anon_sym_end, + ACTIONS(14683), 1, + anon_sym_RPAREN, + ACTIONS(14947), 1, + anon_sym_COMMA, STATE(10922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439285] = 4, + [441332] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14991), 1, - anon_sym_RPAREN, + ACTIONS(14949), 1, + anon_sym_RBRACK, + ACTIONS(14951), 1, + anon_sym_RBRACK_QMARK, STATE(10923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439299] = 4, + [441349] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14993), 1, - anon_sym_end, + ACTIONS(14719), 1, + anon_sym_RPAREN, + ACTIONS(14953), 1, + anon_sym_COMMA, STATE(10924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439313] = 4, + [441366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14995), 1, - anon_sym_RPAREN, STATE(10925), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [439327] = 4, + ACTIONS(14955), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [441383] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14997), 1, - anon_sym_EQ_GT, + ACTIONS(14643), 1, + anon_sym_RPAREN, + ACTIONS(14957), 1, + anon_sym_COMMA, STATE(10926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439341] = 4, + [441400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14999), 1, - anon_sym_end, + ACTIONS(14549), 1, + anon_sym_RPAREN, + ACTIONS(14959), 1, + anon_sym_COMMA, STATE(10927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439355] = 4, + [441417] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15001), 1, + ACTIONS(14639), 1, anon_sym_RPAREN, + ACTIONS(14961), 1, + anon_sym_COMMA, STATE(10928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439369] = 4, + [441434] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15003), 1, - anon_sym_DOT, + ACTIONS(14963), 1, + anon_sym_RBRACK, + ACTIONS(14965), 1, + anon_sym_RBRACK_QMARK, STATE(10929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439383] = 4, + [441451] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15005), 1, - anon_sym_end, + ACTIONS(14967), 1, + anon_sym_RBRACK, + ACTIONS(14969), 1, + anon_sym_RBRACK_QMARK, STATE(10930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439397] = 4, + [441468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15007), 1, - anon_sym_class, + ACTIONS(14971), 1, + anon_sym_RBRACK, + ACTIONS(14973), 1, + anon_sym_RBRACK_QMARK, STATE(10931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439411] = 4, + [441485] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15009), 1, - anon_sym_end, + ACTIONS(14687), 1, + anon_sym_RPAREN, + ACTIONS(14975), 1, + anon_sym_COMMA, STATE(10932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439425] = 4, + [441502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15011), 1, - anon_sym_end, STATE(10933), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [439439] = 4, + ACTIONS(14977), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [441519] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15013), 1, - anon_sym_end, + ACTIONS(14693), 1, + anon_sym_RPAREN, + ACTIONS(14979), 1, + anon_sym_COMMA, STATE(10934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439453] = 4, + [441536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15015), 1, - anon_sym_end, STATE(10935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439467] = 4, + ACTIONS(14981), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [441551] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15017), 1, - anon_sym_RPAREN, STATE(10936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439481] = 4, + ACTIONS(6233), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [441566] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15019), 1, - anon_sym_EQ_GT, + ACTIONS(14595), 1, + anon_sym_RPAREN, + ACTIONS(14983), 1, + anon_sym_COMMA, STATE(10937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439495] = 4, + [441583] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15021), 1, - anon_sym_end, STATE(10938), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [439509] = 4, + ACTIONS(14985), 2, + aux_sym_char_token1, + sym_char_escape_sequence, + [441600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15023), 1, - anon_sym_EQ_GT, + ACTIONS(14987), 1, + anon_sym_end, STATE(10939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439523] = 4, + [441614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15025), 1, - anon_sym_end, + ACTIONS(14989), 1, + anon_sym_PIPE, STATE(10940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439537] = 4, + [441628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15027), 1, + ACTIONS(14991), 1, anon_sym_end, STATE(10941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439551] = 4, + [441642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15029), 1, - anon_sym_RBRACE, + ACTIONS(14993), 1, + anon_sym_end, STATE(10942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439565] = 4, + [441656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15031), 1, - anon_sym_RBRACK, + ACTIONS(14995), 1, + anon_sym_of, STATE(10943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439579] = 4, + [441670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15033), 1, + ACTIONS(14997), 1, anon_sym_end, STATE(10944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439593] = 4, + [441684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15035), 1, - anon_sym_end, + ACTIONS(14999), 1, + anon_sym_DOT, STATE(10945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439607] = 4, + [441698] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15037), 1, - anon_sym_end, + ACTIONS(15001), 1, + aux_sym_type_declaration_token1, STATE(10946), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [439621] = 4, + [441714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15039), 1, - anon_sym_RPAREN, + ACTIONS(15003), 1, + anon_sym_end, STATE(10947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439635] = 4, + [441728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15041), 1, + ACTIONS(15005), 1, anon_sym_end, STATE(10948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439649] = 4, + [441742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15043), 1, - anon_sym_end, + ACTIONS(15007), 1, + anon_sym_RBRACE, STATE(10949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439663] = 4, + [441756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15045), 1, - anon_sym_class, + ACTIONS(15009), 1, + anon_sym_end, STATE(10950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439677] = 4, + [441770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15047), 1, - anon_sym_RPAREN, + ACTIONS(12942), 1, + sym__constant_segment, STATE(10951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439691] = 4, + [441784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15049), 1, + ACTIONS(15011), 1, anon_sym_end, STATE(10952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439705] = 4, + [441798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15051), 1, - anon_sym_end, + ACTIONS(15013), 1, + anon_sym_RPAREN, STATE(10953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439719] = 4, + [441812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15053), 1, - anon_sym_RPAREN, + ACTIONS(15015), 1, + anon_sym_end, STATE(10954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439733] = 4, + [441826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15055), 1, - anon_sym_end, + ACTIONS(15017), 1, + anon_sym_EQ_GT, STATE(10955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439747] = 4, + [441840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15057), 1, - anon_sym_end, + ACTIONS(15019), 1, + sym__constant_segment, STATE(10956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439761] = 4, + [441854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15059), 1, - anon_sym_RPAREN, + ACTIONS(15021), 1, + anon_sym_RBRACK, STATE(10957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439775] = 4, + [441868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15061), 1, - anon_sym_end, + ACTIONS(15023), 1, + aux_sym_type_declaration_token1, STATE(10958), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [439789] = 4, + [441884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15063), 1, - anon_sym_EQ_GT, + ACTIONS(15025), 1, + anon_sym_end, STATE(10959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439803] = 4, + [441898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15065), 1, + ACTIONS(15027), 1, anon_sym_end, STATE(10960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439817] = 4, + [441912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15067), 1, - anon_sym_RBRACE, + ACTIONS(15029), 1, + anon_sym_end, STATE(10961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439831] = 4, + [441926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15069), 1, - anon_sym_end, + ACTIONS(15031), 1, + anon_sym_RBRACE, STATE(10962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439845] = 4, + [441940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15071), 1, + ACTIONS(15033), 1, anon_sym_end, STATE(10963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439859] = 4, + [441954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15073), 1, + ACTIONS(15035), 1, anon_sym_end, STATE(10964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439873] = 4, + [441968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15075), 1, + ACTIONS(15037), 1, anon_sym_end, STATE(10965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439887] = 4, + [441982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15077), 1, - anon_sym_end, + ACTIONS(15039), 1, + anon_sym_RPAREN, STATE(10966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439901] = 4, + [441996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15079), 1, - anon_sym_RPAREN, + ACTIONS(15041), 1, + anon_sym_end, STATE(10967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439915] = 4, + [442010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15081), 1, - anon_sym_EQ_GT, + ACTIONS(15043), 1, + aux_sym_top_level_fun_def_token1, STATE(10968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439929] = 4, + [442024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15083), 1, - anon_sym_end, + ACTIONS(15045), 1, + aux_sym_type_declaration_token1, STATE(10969), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [439943] = 4, + [442040] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15085), 1, - anon_sym_end, + ACTIONS(15047), 1, + anon_sym_yield, STATE(10970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439957] = 4, + [442054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15087), 1, - anon_sym_end, + ACTIONS(15049), 1, + anon_sym_RPAREN, STATE(10971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439971] = 4, + [442068] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15089), 1, - anon_sym_DASH_GT, + ACTIONS(15051), 1, + anon_sym_RPAREN, STATE(10972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439985] = 4, + [442082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15091), 1, + ACTIONS(12346), 1, anon_sym_end, STATE(10973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439999] = 4, + [442096] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15093), 1, + ACTIONS(15053), 1, anon_sym_end, STATE(10974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440013] = 4, + [442110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15095), 1, - anon_sym_end, + ACTIONS(15055), 1, + anon_sym_RPAREN, STATE(10975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440027] = 4, + [442124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15097), 1, - anon_sym_RPAREN, + ACTIONS(15057), 1, + anon_sym_class, STATE(10976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440041] = 4, + [442138] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15099), 1, - sym_identifier, + ACTIONS(15059), 1, + anon_sym_RPAREN, STATE(10977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440055] = 4, + [442152] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15101), 1, - anon_sym_RBRACK, + ACTIONS(15061), 1, + anon_sym_end, STATE(10978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440069] = 4, + [442166] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15103), 1, - anon_sym_EQ_GT, + ACTIONS(15063), 1, + anon_sym_RPAREN, STATE(10979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440083] = 4, + [442180] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15105), 1, - sym__constant_segment, + ACTIONS(15065), 1, + anon_sym_end, STATE(10980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440097] = 4, + [442194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15107), 1, + ACTIONS(15067), 1, anon_sym_end, STATE(10981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440111] = 4, + [442208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15109), 1, - anon_sym_DASH_GT, + ACTIONS(15069), 1, + anon_sym_end, STATE(10982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440125] = 4, + [442222] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15111), 1, - anon_sym_end, + ACTIONS(15071), 1, + anon_sym_EQ_GT, STATE(10983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440139] = 4, + [442236] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15113), 1, - anon_sym_PIPE, + ACTIONS(15073), 1, + anon_sym_RPAREN, STATE(10984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440153] = 4, + [442250] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15115), 1, - anon_sym_SQUOTE2, + ACTIONS(15075), 1, + anon_sym_RBRACE, STATE(10985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440167] = 4, + [442264] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15117), 1, + ACTIONS(15077), 1, anon_sym_end, STATE(10986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440181] = 4, + [442278] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15119), 1, - anon_sym_end, + ACTIONS(15079), 1, + anon_sym_RPAREN, STATE(10987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440195] = 4, + [442292] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15121), 1, + ACTIONS(15081), 1, anon_sym_end, STATE(10988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440209] = 4, + [442306] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15123), 1, - anon_sym_end, + ACTIONS(15083), 1, + anon_sym_RPAREN, STATE(10989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440223] = 4, + [442320] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15125), 1, + ACTIONS(15085), 1, anon_sym_RPAREN, STATE(10990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440237] = 4, + [442334] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15127), 1, + ACTIONS(15087), 1, anon_sym_RPAREN, STATE(10991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440251] = 4, + [442348] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15129), 1, - anon_sym_end, + ACTIONS(15089), 1, + anon_sym_EQ_GT, STATE(10992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440265] = 4, + [442362] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15131), 1, - anon_sym_end, + ACTIONS(15091), 1, + anon_sym_RPAREN, STATE(10993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440279] = 4, + [442376] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15133), 1, - anon_sym_end, + ACTIONS(15093), 1, + anon_sym_RPAREN, STATE(10994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440293] = 4, + [442390] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15135), 1, - anon_sym_of, + ACTIONS(15095), 1, + anon_sym_DASH_GT, STATE(10995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440307] = 4, + [442404] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15137), 1, - anon_sym_of, + ACTIONS(15097), 1, + anon_sym_SQUOTE2, STATE(10996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440321] = 4, + [442418] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15139), 1, - anon_sym_end, + ACTIONS(15099), 1, + anon_sym_RPAREN, STATE(10997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440335] = 4, + [442432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12875), 1, - sym__constant_segment, + ACTIONS(15101), 1, + anon_sym_end, STATE(10998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440349] = 4, + [442446] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15141), 1, + ACTIONS(15103), 1, anon_sym_RPAREN, STATE(10999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440363] = 4, + [442460] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15143), 1, - anon_sym_yield, + ACTIONS(15105), 1, + anon_sym_RPAREN, STATE(11000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440377] = 4, + [442474] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15145), 1, - anon_sym_end, + ACTIONS(15107), 1, + anon_sym_class, STATE(11001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440391] = 4, + [442488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15147), 1, - sym__constant_segment, + ACTIONS(15109), 1, + anon_sym_end, STATE(11002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440405] = 4, + [442502] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15149), 1, - anon_sym_EQ_GT, + ACTIONS(15111), 1, + anon_sym_end, STATE(11003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440419] = 4, + [442516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15151), 1, - anon_sym_RBRACE, + ACTIONS(15113), 1, + anon_sym_end, STATE(11004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440433] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [442530] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15153), 1, - aux_sym_type_declaration_token1, + ACTIONS(15115), 1, + anon_sym_LPAREN, STATE(11005), 1, sym_heredoc_body, - [440449] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [442544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15155), 1, + ACTIONS(12356), 1, anon_sym_end, STATE(11006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440463] = 4, + [442558] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15157), 1, - anon_sym_RBRACE, + ACTIONS(15117), 1, + anon_sym_end, STATE(11007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440477] = 4, + [442572] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15159), 1, + ACTIONS(15119), 1, anon_sym_RPAREN, STATE(11008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440491] = 4, + [442586] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15161), 1, - anon_sym_DASH_GT, + ACTIONS(15121), 1, + anon_sym_of, STATE(11009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440505] = 4, + [442600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15163), 1, - anon_sym_RPAREN, + ACTIONS(15123), 1, + anon_sym_EQ_GT, STATE(11010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440519] = 4, + [442614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15165), 1, - anon_sym_RPAREN, + ACTIONS(15125), 1, + anon_sym_DASH_GT, STATE(11011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440533] = 4, + [442628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15167), 1, + ACTIONS(15127), 1, anon_sym_end, STATE(11012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440547] = 4, + [442642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15169), 1, - anon_sym_RPAREN, + ACTIONS(15129), 1, + anon_sym_end, STATE(11013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440561] = 4, + [442656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15171), 1, - anon_sym_RPAREN, + ACTIONS(15131), 1, + anon_sym_RBRACK, STATE(11014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440575] = 4, + [442670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15173), 1, - anon_sym_EQ_GT, + ACTIONS(15133), 1, + anon_sym_end, STATE(11015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440589] = 4, + [442684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15175), 1, - anon_sym_DASH_GT, + ACTIONS(15135), 1, + anon_sym_EQ_GT, STATE(11016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440603] = 4, + [442698] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15177), 1, - anon_sym_end, + ACTIONS(15137), 1, + anon_sym_EQ_GT, STATE(11017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440617] = 4, + [442712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15179), 1, - anon_sym_end, + ACTIONS(15139), 1, + anon_sym_yield, STATE(11018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440631] = 4, + [442726] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15181), 1, + ACTIONS(15141), 1, anon_sym_end, STATE(11019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440645] = 4, + [442740] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15183), 1, - anon_sym_yield, + ACTIONS(15143), 1, + anon_sym_end, STATE(11020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440659] = 4, + [442754] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15185), 1, - anon_sym_SQUOTE2, + ACTIONS(15145), 1, + anon_sym_end, STATE(11021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440673] = 4, + [442768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15187), 1, + ACTIONS(15147), 1, anon_sym_end, STATE(11022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440687] = 4, + [442782] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15189), 1, - anon_sym_RPAREN, + ACTIONS(15149), 1, + anon_sym_DOT, STATE(11023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440701] = 4, + [442796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15191), 1, - sym__constant_segment, + ACTIONS(15151), 1, + anon_sym_end, STATE(11024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440715] = 4, + [442810] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15193), 1, - anon_sym_end, + ACTIONS(15153), 1, + anon_sym_RPAREN, STATE(11025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440729] = 4, + [442824] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15195), 1, - sym_identifier, + ACTIONS(12745), 1, + sym__constant_segment, STATE(11026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440743] = 4, + [442838] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15197), 1, - anon_sym_RPAREN, + ACTIONS(15155), 1, + anon_sym_RBRACK, STATE(11027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440757] = 4, + [442852] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15199), 1, - anon_sym_EQ_GT, + ACTIONS(15157), 1, + anon_sym_end, STATE(11028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440771] = 4, + [442866] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15201), 1, - sym__constant_segment, + ACTIONS(15159), 1, + anon_sym_RPAREN, STATE(11029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440785] = 4, + [442880] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15203), 1, - anon_sym_end, + ACTIONS(15161), 1, + anon_sym_RPAREN, STATE(11030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440799] = 4, + [442894] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15205), 1, + ACTIONS(15163), 1, anon_sym_end, STATE(11031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440813] = 4, + [442908] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6051), 1, - anon_sym_RBRACK, + ACTIONS(15165), 1, + anon_sym_end, STATE(11032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440827] = 4, + [442922] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15207), 1, - sym__constant_segment, + ACTIONS(15167), 1, + anon_sym_end, STATE(11033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440841] = 4, + [442936] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15209), 1, + ACTIONS(15169), 1, anon_sym_RPAREN, STATE(11034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440855] = 4, + [442950] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15211), 1, - anon_sym_DOT, + ACTIONS(15171), 1, + anon_sym_end, STATE(11035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440869] = 4, + [442964] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15213), 1, - anon_sym_end, + ACTIONS(15173), 1, + anon_sym_RBRACK, STATE(11036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440883] = 4, + [442978] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15215), 1, - anon_sym_class, + ACTIONS(15175), 1, + anon_sym_end, STATE(11037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440897] = 4, + [442992] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15217), 1, + ACTIONS(15177), 1, anon_sym_end, STATE(11038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440911] = 4, + [443006] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15219), 1, - anon_sym_end, + ACTIONS(15179), 1, + anon_sym_RPAREN, STATE(11039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440925] = 4, + [443020] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15221), 1, - anon_sym_end, + ACTIONS(15181), 1, + sym__constant_segment, STATE(11040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440939] = 4, + [443034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15223), 1, + ACTIONS(15183), 1, anon_sym_end, STATE(11041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440953] = 4, + [443048] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15225), 1, + ACTIONS(15185), 1, anon_sym_end, STATE(11042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440967] = 4, + [443062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15227), 1, - anon_sym_end, + ACTIONS(15187), 1, + aux_sym_type_declaration_token1, STATE(11043), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [440981] = 4, + [443078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15229), 1, - anon_sym_RPAREN, + ACTIONS(15189), 1, + anon_sym_end, STATE(11044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440995] = 4, + [443092] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15231), 1, - anon_sym_of, + ACTIONS(15191), 1, + anon_sym_RPAREN, STATE(11045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441009] = 4, + [443106] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15233), 1, - sym__constant_segment, + ACTIONS(15193), 1, + anon_sym_end, STATE(11046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441023] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [443120] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15235), 1, - aux_sym_type_declaration_token1, + ACTIONS(15195), 1, + anon_sym_end, STATE(11047), 1, sym_heredoc_body, - [441039] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [443134] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15237), 1, - anon_sym_EQ, + ACTIONS(15197), 1, + anon_sym_end, STATE(11048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441053] = 4, + [443148] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15239), 1, - anon_sym_EQ_GT, + ACTIONS(15199), 1, + anon_sym_end, STATE(11049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441067] = 4, + [443162] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15241), 1, - anon_sym_end, + ACTIONS(15201), 1, + anon_sym_EQ_GT, STATE(11050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441081] = 4, + [443176] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15243), 1, + ACTIONS(15203), 1, anon_sym_end, STATE(11051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441095] = 4, + [443190] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15245), 1, - anon_sym_end, + ACTIONS(15205), 1, + anon_sym_RBRACE, STATE(11052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441109] = 4, + [443204] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15247), 1, - anon_sym_end, + ACTIONS(6973), 1, + anon_sym_COLON, STATE(11053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441123] = 4, + [443218] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15249), 1, - anon_sym_RPAREN, + ACTIONS(15207), 1, + anon_sym_end, STATE(11054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441137] = 4, + [443232] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15251), 1, + ACTIONS(15209), 1, anon_sym_end, STATE(11055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441151] = 4, + [443246] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15253), 1, + ACTIONS(15211), 1, anon_sym_end, STATE(11056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441165] = 4, + [443260] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15255), 1, - anon_sym_SQUOTE2, + ACTIONS(15213), 1, + anon_sym_DASH_GT, STATE(11057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441179] = 4, + [443274] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15257), 1, + ACTIONS(15215), 1, anon_sym_end, STATE(11058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441193] = 4, + [443288] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6055), 1, - anon_sym_RBRACK, + ACTIONS(15217), 1, + anon_sym_RPAREN, STATE(11059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441207] = 4, + [443302] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15259), 1, + ACTIONS(15219), 1, anon_sym_end, STATE(11060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441221] = 4, + [443316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15261), 1, - anon_sym_RBRACK, + ACTIONS(15221), 1, + anon_sym_end, STATE(11061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441235] = 4, + [443330] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15263), 1, - anon_sym_end, + ACTIONS(15223), 1, + anon_sym_RPAREN, STATE(11062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441249] = 4, + [443344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15265), 1, - anon_sym_of, + ACTIONS(15225), 1, + anon_sym_end, STATE(11063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441263] = 4, + [443358] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15267), 1, - anon_sym_LPAREN, + ACTIONS(15227), 1, + anon_sym_EQ_GT, STATE(11064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441277] = 4, + [443372] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15269), 1, - sym__constant_segment, + ACTIONS(15229), 1, + anon_sym_end, STATE(11065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441291] = 4, + [443386] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15271), 1, - anon_sym_end, + ACTIONS(15231), 1, + anon_sym_DASH_GT, STATE(11066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441305] = 4, + [443400] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15273), 1, + ACTIONS(15233), 1, anon_sym_end, STATE(11067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441319] = 4, + [443414] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15275), 1, - anon_sym_EQ, + ACTIONS(15235), 1, + anon_sym_RPAREN, STATE(11068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441333] = 4, + [443428] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15277), 1, + ACTIONS(15237), 1, anon_sym_RPAREN, STATE(11069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441347] = 4, + [443442] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15279), 1, + ACTIONS(15239), 1, anon_sym_end, STATE(11070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441361] = 4, + [443456] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15281), 1, - anon_sym_PIPE, + ACTIONS(15241), 1, + sym__constant_segment, STATE(11071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441375] = 4, + [443470] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15283), 1, + ACTIONS(15243), 1, anon_sym_EQ_GT, STATE(11072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441389] = 4, + [443484] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15285), 1, - anon_sym_end, + ACTIONS(15245), 1, + sym_identifier, STATE(11073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441403] = 4, + [443498] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15287), 1, - anon_sym_PIPE, + ACTIONS(15247), 1, + anon_sym_end, STATE(11074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441417] = 4, + [443512] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15289), 1, - anon_sym_RBRACE, + ACTIONS(15249), 1, + anon_sym_RBRACK, STATE(11075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441431] = 4, + [443526] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12697), 1, - sym__constant_segment, + ACTIONS(15251), 1, + anon_sym_end, STATE(11076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441445] = 4, + [443540] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15291), 1, - anon_sym_RPAREN, + ACTIONS(15253), 1, + anon_sym_end, STATE(11077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441459] = 4, + [443554] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15293), 1, - anon_sym_end, + ACTIONS(15255), 1, + anon_sym_EQ_GT, STATE(11078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441473] = 4, + [443568] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(729), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(15257), 1, + anon_sym_end, STATE(11079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441487] = 4, + [443582] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15295), 1, - anon_sym_RPAREN, + ACTIONS(15259), 1, + sym__constant_segment, STATE(11080), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441501] = 4, + [443596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15297), 1, + ACTIONS(15261), 1, anon_sym_end, STATE(11081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441515] = 4, + [443610] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15299), 1, - anon_sym_DASH_GT, + ACTIONS(15263), 1, + anon_sym_DOT, STATE(11082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441529] = 4, + [443624] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15301), 1, - sym__constant_segment, + ACTIONS(15265), 1, + anon_sym_DASH_GT, STATE(11083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441543] = 4, + [443638] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15303), 1, + ACTIONS(15267), 1, anon_sym_end, STATE(11084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441557] = 4, + [443652] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15305), 1, - anon_sym_end, + ACTIONS(15269), 1, + anon_sym_of, STATE(11085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441571] = 4, + [443666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12914), 1, + ACTIONS(15271), 1, anon_sym_RPAREN, STATE(11086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441585] = 4, + [443680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15307), 1, + ACTIONS(12368), 1, anon_sym_end, STATE(11087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441599] = 4, + [443694] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15309), 1, - anon_sym_end, + ACTIONS(13309), 1, + sym__constant_segment, STATE(11088), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441613] = 4, + [443708] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15311), 1, + ACTIONS(15273), 1, anon_sym_end, STATE(11089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441627] = 4, + [443722] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15313), 1, - anon_sym_RPAREN, + ACTIONS(15275), 1, + sym__constant_segment, STATE(11090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441641] = 4, + [443736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12242), 1, - anon_sym_end, + ACTIONS(15277), 1, + aux_sym_type_declaration_token1, STATE(11091), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [441655] = 4, + [443752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15315), 1, - anon_sym_EQ_GT, + ACTIONS(12233), 1, + anon_sym_end, STATE(11092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441669] = 4, + [443766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15317), 1, - anon_sym_DASH_GT, + ACTIONS(15279), 1, + sym__constant_segment, STATE(11093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441683] = 4, + [443780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15319), 1, - anon_sym_end, + ACTIONS(15281), 1, + anon_sym_RBRACE, STATE(11094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441697] = 4, + [443794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15321), 1, - anon_sym_end, + ACTIONS(15283), 1, + anon_sym_EQ, STATE(11095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441711] = 4, + [443808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15323), 1, + ACTIONS(12374), 1, anon_sym_end, STATE(11096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441725] = 4, + [443822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15325), 1, - anon_sym_RPAREN, + ACTIONS(15285), 1, + anon_sym_end, STATE(11097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441739] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [443836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15327), 1, - aux_sym_type_declaration_token1, + ACTIONS(15287), 1, + anon_sym_RPAREN, STATE(11098), 1, sym_heredoc_body, - [441755] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [443850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15329), 1, - anon_sym_end, + ACTIONS(15289), 1, + anon_sym_RBRACK, STATE(11099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441769] = 4, + [443864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15331), 1, + ACTIONS(15291), 1, anon_sym_end, STATE(11100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441783] = 4, + [443878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15333), 1, + ACTIONS(15293), 1, anon_sym_RPAREN, STATE(11101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441797] = 4, + [443892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15335), 1, - sym__constant_segment, + ACTIONS(15295), 1, + anon_sym_yield, STATE(11102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441811] = 4, + [443906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15337), 1, + ACTIONS(15297), 1, anon_sym_end, STATE(11103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [443920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15339), 1, - aux_sym_type_declaration_token1, + ACTIONS(15299), 1, + anon_sym_end, STATE(11104), 1, sym_heredoc_body, - [441841] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [443934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15341), 1, - anon_sym_of, + ACTIONS(15301), 1, + anon_sym_RPAREN, STATE(11105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441855] = 4, + [443948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15343), 1, - sym__constant_segment, + ACTIONS(15303), 1, + anon_sym_end, STATE(11106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441869] = 4, + [443962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13265), 1, - sym__constant_segment, + ACTIONS(15305), 1, + anon_sym_RPAREN, STATE(11107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441883] = 4, + [443976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15345), 1, - anon_sym_end, + ACTIONS(15307), 1, + anon_sym_EQ_GT, STATE(11108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441897] = 4, + [443990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15347), 1, - sym__constant_segment, + ACTIONS(15309), 1, + anon_sym_EQ_GT, STATE(11109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441911] = 4, + [444004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15349), 1, - anon_sym_end, + ACTIONS(15311), 1, + anon_sym_RBRACE, STATE(11110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441925] = 4, + [444018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15351), 1, + ACTIONS(15313), 1, anon_sym_end, STATE(11111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441939] = 4, + [444032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15353), 1, - anon_sym_RPAREN, + ACTIONS(15315), 1, + anon_sym_end, STATE(11112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441953] = 4, + [444046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15355), 1, - anon_sym_DOT, + ACTIONS(15317), 1, + anon_sym_end, STATE(11113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441967] = 4, + [444060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12311), 1, + ACTIONS(15319), 1, anon_sym_end, STATE(11114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441981] = 4, + [444074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12337), 1, - anon_sym_end, + ACTIONS(15321), 1, + anon_sym_EQ, STATE(11115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441995] = 4, + [444088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15357), 1, - anon_sym_end, + ACTIONS(15323), 1, + anon_sym_class, STATE(11116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442009] = 4, + [444102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15359), 1, + ACTIONS(15325), 1, anon_sym_end, STATE(11117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442023] = 4, + [444116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15361), 1, - anon_sym_SQUOTE2, + ACTIONS(15327), 1, + anon_sym_PIPE, STATE(11118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442037] = 4, + [444130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15363), 1, - sym__constant_segment, + ACTIONS(15329), 1, + anon_sym_end, STATE(11119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442051] = 4, + [444144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15365), 1, - anon_sym_EQ, + ACTIONS(15331), 1, + anon_sym_end, STATE(11120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442065] = 4, + [444158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15367), 1, - anon_sym_RPAREN, + ACTIONS(15333), 1, + anon_sym_PIPE, STATE(11121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442079] = 4, + [444172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15369), 1, - aux_sym_top_level_fun_def_token1, + ACTIONS(15335), 1, + anon_sym_end, STATE(11122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442093] = 4, + [444186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15371), 1, - anon_sym_EQ_GT, + ACTIONS(15337), 1, + anon_sym_RPAREN, STATE(11123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442107] = 4, + [444200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15373), 1, - anon_sym_end, + ACTIONS(15339), 1, + anon_sym_RPAREN, STATE(11124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442121] = 4, + [444214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15375), 1, - anon_sym_end, + ACTIONS(15341), 1, + ts_builtin_sym_end, STATE(11125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442135] = 4, + [444228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15377), 1, + ACTIONS(15343), 1, anon_sym_RPAREN, STATE(11126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442149] = 4, + [444242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15379), 1, - anon_sym_of, + ACTIONS(15345), 1, + anon_sym_end, STATE(11127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442163] = 4, + [444256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15381), 1, - anon_sym_end, + ACTIONS(15347), 1, + anon_sym_EQ_GT, STATE(11128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442177] = 4, + [444270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15383), 1, - anon_sym_EQ_GT, + ACTIONS(15349), 1, + anon_sym_end, STATE(11129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442191] = 4, + [444284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15385), 1, + ACTIONS(15351), 1, anon_sym_end, STATE(11130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442205] = 4, + [444298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15387), 1, + ACTIONS(15353), 1, anon_sym_end, STATE(11131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442219] = 4, + [444312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15389), 1, - sym__constant_segment, + ACTIONS(15355), 1, + anon_sym_RPAREN, STATE(11132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442233] = 4, + [444326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15391), 1, - anon_sym_EQ, + ACTIONS(13003), 1, + anon_sym_RPAREN, STATE(11133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442247] = 4, + [444340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15393), 1, - anon_sym_end, + ACTIONS(15357), 1, + anon_sym_EQ_GT, STATE(11134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442261] = 4, + [444354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15395), 1, + ACTIONS(15359), 1, sym__constant_segment, STATE(11135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442275] = 4, + [444368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15397), 1, - anon_sym_PIPE, + ACTIONS(15361), 1, + anon_sym_EQ_GT, STATE(11136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442289] = 4, + [444382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15399), 1, + ACTIONS(15363), 1, anon_sym_RBRACE, STATE(11137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442303] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [444396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15401), 1, - aux_sym_type_declaration_token1, + ACTIONS(15365), 1, + anon_sym_RBRACK, STATE(11138), 1, sym_heredoc_body, - [442319] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [444410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15403), 1, - anon_sym_PIPE, + ACTIONS(15367), 1, + anon_sym_end, STATE(11139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442333] = 4, + [444424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12198), 1, - anon_sym_end, + ACTIONS(15369), 1, + anon_sym_RPAREN, STATE(11140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442347] = 4, + [444438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15405), 1, + ACTIONS(15371), 1, anon_sym_end, STATE(11141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442361] = 4, + [444452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15407), 1, + ACTIONS(15373), 1, anon_sym_end, STATE(11142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442375] = 4, + [444466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15409), 1, - anon_sym_end, + ACTIONS(15375), 1, + anon_sym_yield, STATE(11143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442389] = 4, + [444480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15411), 1, - anon_sym_class, + ACTIONS(15377), 1, + anon_sym_RPAREN, STATE(11144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442403] = 4, + [444494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12232), 1, - anon_sym_end, + ACTIONS(15379), 1, + anon_sym_RPAREN, STATE(11145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442417] = 4, + [444508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12928), 1, - anon_sym_RPAREN, + ACTIONS(15381), 1, + anon_sym_RBRACE, STATE(11146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442431] = 4, + [444522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15413), 1, - anon_sym_end, + ACTIONS(15383), 1, + anon_sym_RPAREN, STATE(11147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442445] = 4, + [444536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11799), 1, - anon_sym_RPAREN, + ACTIONS(15385), 1, + anon_sym_EQ_GT, STATE(11148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442459] = 4, + [444550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15415), 1, - anon_sym_end, + ACTIONS(15387), 1, + anon_sym_RBRACE, STATE(11149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442473] = 4, + [444564] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12258), 1, - anon_sym_end, + ACTIONS(11938), 1, + anon_sym_RPAREN, STATE(11150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442487] = 4, + [444578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12204), 1, + ACTIONS(15389), 1, anon_sym_end, STATE(11151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442501] = 4, + [444592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15417), 1, - anon_sym_end, + ACTIONS(15391), 1, + anon_sym_DASH_GT, STATE(11152), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442515] = 4, + [444606] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15419), 1, - anon_sym_end, + ACTIONS(15393), 1, + sym__constant_segment, STATE(11153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442529] = 4, + [444620] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15421), 1, - anon_sym_EQ_GT, + ACTIONS(15395), 1, + sym__constant_segment, STATE(11154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442543] = 4, + [444634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12178), 1, + ACTIONS(15397), 1, anon_sym_end, STATE(11155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442557] = 4, + [444648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12305), 1, - anon_sym_end, + ACTIONS(15399), 1, + anon_sym_RPAREN, STATE(11156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442571] = 4, + [444662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15423), 1, - anon_sym_end, + ACTIONS(15401), 1, + anon_sym_RPAREN, STATE(11157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442585] = 4, + [444676] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15425), 1, - anon_sym_end, + ACTIONS(15403), 1, + anon_sym_EQ_GT, STATE(11158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442599] = 4, + [444690] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15427), 1, - anon_sym_RPAREN, + ACTIONS(15405), 1, + anon_sym_end, STATE(11159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442613] = 4, + [444704] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15429), 1, - anon_sym_end, + ACTIONS(15407), 1, + anon_sym_DOT, STATE(11160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442627] = 4, + [444718] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15431), 1, - sym_identifier, + ACTIONS(15409), 1, + anon_sym_end, STATE(11161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442641] = 4, + [444732] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15433), 1, - anon_sym_DOT, + ACTIONS(15411), 1, + anon_sym_end, STATE(11162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442655] = 4, + [444746] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15435), 1, - ts_builtin_sym_end, + ACTIONS(15413), 1, + anon_sym_DASH_GT, STATE(11163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442669] = 4, + [444760] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15437), 1, - anon_sym_RPAREN, + ACTIONS(15415), 1, + anon_sym_end, STATE(11164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442683] = 4, + [444774] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15439), 1, + ACTIONS(15417), 1, anon_sym_end, STATE(11165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442697] = 4, + [444788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15441), 1, - anon_sym_EQ_GT, + ACTIONS(15419), 1, + sym__constant_segment, STATE(11166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442711] = 4, + [444802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15443), 1, - anon_sym_RBRACK, + ACTIONS(15421), 1, + anon_sym_EQ, STATE(11167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442725] = 4, + [444816] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15445), 1, - anon_sym_end, + ACTIONS(15423), 1, + anon_sym_RBRACE, STATE(11168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442739] = 4, + [444830] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15447), 1, - anon_sym_end, + ACTIONS(15425), 1, + anon_sym_RPAREN, STATE(11169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442753] = 4, + [444844] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15449), 1, - anon_sym_RBRACE, + ACTIONS(15427), 1, + anon_sym_end, STATE(11170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442767] = 4, + [444858] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15451), 1, - anon_sym_RPAREN, + ACTIONS(15429), 1, + anon_sym_end, STATE(11171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442781] = 4, + [444872] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15453), 1, - anon_sym_end, + ACTIONS(15431), 1, + anon_sym_RPAREN, STATE(11172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442795] = 4, + [444886] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15455), 1, + ACTIONS(15433), 1, anon_sym_RPAREN, STATE(11173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442809] = 4, + [444900] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15457), 1, + ACTIONS(15435), 1, anon_sym_end, STATE(11174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442823] = 4, + [444914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15459), 1, - anon_sym_EQ_GT, + ACTIONS(15437), 1, + anon_sym_RPAREN, STATE(11175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442837] = 4, + [444928] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15461), 1, + ACTIONS(15439), 1, anon_sym_end, STATE(11176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442851] = 4, + [444942] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12307), 1, + ACTIONS(15441), 1, anon_sym_end, STATE(11177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442865] = 4, + [444956] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15463), 1, - anon_sym_DASH_GT, + ACTIONS(15443), 1, + anon_sym_of, STATE(11178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442879] = 4, + [444970] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15465), 1, - anon_sym_RBRACE, + ACTIONS(15445), 1, + anon_sym_end, STATE(11179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442893] = 4, + [444984] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15467), 1, - anon_sym_EQ_GT, + ACTIONS(15447), 1, + anon_sym_EQ, STATE(11180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442907] = 4, + [444998] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15469), 1, - anon_sym_PIPE, + ACTIONS(15449), 1, + anon_sym_end, STATE(11181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442921] = 4, + [445012] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15471), 1, - anon_sym_DASH_GT, + ACTIONS(12912), 1, + sym__constant_segment, STATE(11182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442935] = 4, + [445026] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15473), 1, - anon_sym_DASH_GT, + ACTIONS(15451), 1, + anon_sym_PIPE, STATE(11183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442949] = 4, + [445040] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15475), 1, - anon_sym_PIPE, + ACTIONS(15453), 1, + anon_sym_end, STATE(11184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442963] = 4, + [445054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15477), 1, - anon_sym_RPAREN, + ACTIONS(15455), 1, + anon_sym_end, STATE(11185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442977] = 4, + [445068] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15479), 1, - anon_sym_end, + ACTIONS(15457), 1, + anon_sym_PIPE, STATE(11186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442991] = 4, + [445082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15481), 1, - sym__constant_segment, + ACTIONS(15459), 1, + anon_sym_end, STATE(11187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443005] = 4, + [445096] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15483), 1, - anon_sym_of, + ACTIONS(15461), 1, + anon_sym_COLON, STATE(11188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443019] = 4, + [445110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15485), 1, - anon_sym_yield, + ACTIONS(15463), 1, + sym__constant_segment, STATE(11189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443033] = 4, + [445124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12932), 1, - anon_sym_RPAREN, + ACTIONS(15465), 1, + anon_sym_end, STATE(11190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443047] = 4, + [445138] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13185), 1, - sym__constant_segment, + ACTIONS(15467), 1, + anon_sym_DASH_GT, STATE(11191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443061] = 4, + [445152] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15487), 1, + ACTIONS(15469), 1, anon_sym_end, STATE(11192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443075] = 4, + [445166] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15489), 1, - sym__constant_segment, + ACTIONS(13319), 1, + anon_sym_RPAREN, STATE(11193), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443089] = 4, + [445180] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15491), 1, + ACTIONS(15471), 1, anon_sym_RPAREN, STATE(11194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [445194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15493), 1, - aux_sym_type_declaration_token1, + ACTIONS(15473), 1, + anon_sym_end, STATE(11195), 1, sym_heredoc_body, - [443119] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [445208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15495), 1, - anon_sym_RPAREN, + ACTIONS(15475), 1, + anon_sym_yield, STATE(11196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443133] = 4, + [445222] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15497), 1, + ACTIONS(15477), 1, anon_sym_end, STATE(11197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443147] = 4, + [445236] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15499), 1, + ACTIONS(15479), 1, anon_sym_end, STATE(11198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443161] = 4, + [445250] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15501), 1, + ACTIONS(15481), 1, anon_sym_end, STATE(11199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443175] = 4, + [445264] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15503), 1, + ACTIONS(15483), 1, anon_sym_RPAREN, STATE(11200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443189] = 4, + [445278] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15505), 1, - anon_sym_EQ_GT, + ACTIONS(15485), 1, + anon_sym_RPAREN, STATE(11201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443203] = 4, + [445292] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10735), 1, - anon_sym_RPAREN, + ACTIONS(15487), 1, + anon_sym_EQ_GT, STATE(11202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443217] = 4, + [445306] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15507), 1, - anon_sym_end, + ACTIONS(15489), 1, + anon_sym_RPAREN, STATE(11203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443231] = 4, + [445320] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15509), 1, + ACTIONS(15491), 1, anon_sym_end, STATE(11204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443245] = 4, + [445334] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15511), 1, - anon_sym_DOT, + ACTIONS(15493), 1, + anon_sym_RPAREN, STATE(11205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443259] = 4, + [445348] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15513), 1, - anon_sym_RPAREN, + ACTIONS(15495), 1, + anon_sym_end, STATE(11206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443273] = 4, + [445362] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15515), 1, - anon_sym_end, + ACTIONS(15497), 1, + anon_sym_RPAREN, STATE(11207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443287] = 4, + [445376] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15517), 1, + ACTIONS(15499), 1, anon_sym_end, STATE(11208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443301] = 4, + [445390] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15519), 1, - anon_sym_end, + ACTIONS(15501), 1, + anon_sym_DOT, STATE(11209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443315] = 4, + [445404] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15521), 1, - anon_sym_end, + ACTIONS(15503), 1, + anon_sym_RPAREN, STATE(11210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443329] = 4, + [445418] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15523), 1, - anon_sym_COLON, + ACTIONS(15505), 1, + anon_sym_end, STATE(11211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443343] = 4, + [445432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15525), 1, - anon_sym_class, + ACTIONS(15507), 1, + anon_sym_end, STATE(11212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443357] = 4, + [445446] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15527), 1, - anon_sym_RBRACE, + ACTIONS(15509), 1, + anon_sym_RBRACK, STATE(11213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443371] = 4, + [445460] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15529), 1, - anon_sym_RPAREN, + ACTIONS(15511), 1, + anon_sym_EQ_GT, STATE(11214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443385] = 4, + [445474] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12843), 1, - anon_sym_EQ, + ACTIONS(15513), 1, + anon_sym_SQUOTE2, STATE(11215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443399] = 4, + [445488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15531), 1, - anon_sym_RPAREN, + ACTIONS(15515), 1, + anon_sym_RBRACE, STATE(11216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443413] = 4, + [445502] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12297), 1, - anon_sym_end, + ACTIONS(15517), 1, + anon_sym_RPAREN, STATE(11217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443427] = 4, + [445516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15533), 1, + ACTIONS(15519), 1, anon_sym_end, STATE(11218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443441] = 4, + [445530] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15535), 1, - anon_sym_EQ_GT, + ACTIONS(15521), 1, + anon_sym_class, STATE(11219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443455] = 4, + [445544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15537), 1, - anon_sym_end, + ACTIONS(15523), 1, + anon_sym_RPAREN, STATE(11220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443469] = 4, + [445558] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15539), 1, - anon_sym_end, + ACTIONS(15525), 1, + anon_sym_COLON, STATE(11221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443483] = 4, + [445572] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15541), 1, - anon_sym_end, + ACTIONS(15527), 1, + anon_sym_of, STATE(11222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443497] = 4, + [445586] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15543), 1, - anon_sym_end, + ACTIONS(15529), 1, + anon_sym_DASH_GT, STATE(11223), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443511] = 4, + [445600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15545), 1, - anon_sym_PIPE, + ACTIONS(15531), 1, + anon_sym_RPAREN, STATE(11224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443525] = 4, + [445614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15547), 1, - anon_sym_RPAREN, + ACTIONS(15533), 1, + anon_sym_yield, STATE(11225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443539] = 4, + [445628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15549), 1, + ACTIONS(15535), 1, anon_sym_end, STATE(11226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443553] = 4, + [445642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15551), 1, - anon_sym_PIPE, + ACTIONS(15537), 1, + anon_sym_end, STATE(11227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443567] = 4, + [445656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15553), 1, - anon_sym_DASH_GT, + ACTIONS(15539), 1, + anon_sym_PIPE, STATE(11228), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443581] = 4, + [445670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15555), 1, - anon_sym_RPAREN, + ACTIONS(15541), 1, + anon_sym_end, STATE(11229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443595] = 4, + [445684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15557), 1, - anon_sym_RPAREN, + ACTIONS(15543), 1, + anon_sym_end, STATE(11230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443609] = 4, + [445698] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15559), 1, - anon_sym_EQ_GT, + ACTIONS(15545), 1, + anon_sym_PIPE, STATE(11231), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443623] = 4, + [445712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15561), 1, - anon_sym_RPAREN, + ACTIONS(15547), 1, + anon_sym_end, STATE(11232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443637] = 4, + [445726] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12938), 1, - anon_sym_RPAREN, + ACTIONS(15549), 1, + anon_sym_end, STATE(11233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443651] = 4, + [445740] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15563), 1, + ACTIONS(15551), 1, anon_sym_end, STATE(11234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443665] = 4, + [445754] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15565), 1, - anon_sym_RBRACK, + ACTIONS(15553), 1, + anon_sym_end, STATE(11235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443679] = 4, + [445768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15567), 1, - anon_sym_end, + ACTIONS(15555), 1, + sym__constant_segment, STATE(11236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443693] = 4, + [445782] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15569), 1, - anon_sym_EQ_GT, + ACTIONS(13024), 1, + anon_sym_RPAREN, STATE(11237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443707] = 4, + [445796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15571), 1, - anon_sym_end, + ACTIONS(15557), 1, + anon_sym_EQ_GT, STATE(11238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443721] = 4, + [445810] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15573), 1, + ACTIONS(15559), 1, anon_sym_RPAREN, STATE(11239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443735] = 4, + [445824] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15575), 1, - anon_sym_EQ_GT, + ACTIONS(15561), 1, + anon_sym_RPAREN, STATE(11240), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443749] = 4, + [445838] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15577), 1, - anon_sym_end, + ACTIONS(15563), 1, + anon_sym_RPAREN, STATE(11241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443763] = 4, + [445852] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15579), 1, - anon_sym_DASH_GT, + ACTIONS(15565), 1, + sym__constant_segment, STATE(11242), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443777] = 4, + [445866] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15581), 1, - anon_sym_EQ_GT, + ACTIONS(13028), 1, + anon_sym_RPAREN, STATE(11243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443791] = 4, + [445880] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15583), 1, - anon_sym_class, + ACTIONS(15567), 1, + anon_sym_RPAREN, STATE(11244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443805] = 4, + [445894] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15585), 1, - anon_sym_DASH_GT, + ACTIONS(15569), 1, + aux_sym_type_declaration_token1, STATE(11245), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [443819] = 4, + [445910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15587), 1, + ACTIONS(12263), 1, anon_sym_end, STATE(11246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443833] = 4, + [445924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15589), 1, - anon_sym_DOT, + ACTIONS(15571), 1, + anon_sym_RPAREN, STATE(11247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443847] = 4, + [445938] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15591), 1, - sym_identifier, + ACTIONS(15573), 1, + anon_sym_class, STATE(11248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443861] = 4, + [445952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15593), 1, - anon_sym_yield, + ACTIONS(15575), 1, + anon_sym_RPAREN, STATE(11249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443875] = 4, + [445966] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15595), 1, - anon_sym_DOT, + ACTIONS(15577), 1, + anon_sym_EQ_GT, STATE(11250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443889] = 4, + [445980] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15597), 1, - anon_sym_DASH_GT, + ACTIONS(15579), 1, + anon_sym_RBRACK, STATE(11251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443903] = 4, + [445994] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15599), 1, - anon_sym_class, + ACTIONS(15581), 1, + anon_sym_DOT, STATE(11252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443917] = 4, + [446008] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15601), 1, - anon_sym_RPAREN, + ACTIONS(12289), 1, + anon_sym_end, STATE(11253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443931] = 4, + [446022] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15603), 1, - anon_sym_end, + ACTIONS(15583), 1, + anon_sym_DASH_GT, STATE(11254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443945] = 4, + [446036] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12184), 1, + ACTIONS(12329), 1, anon_sym_end, STATE(11255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443959] = 4, + [446050] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15605), 1, - anon_sym_of, + ACTIONS(15585), 1, + anon_sym_end, STATE(11256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443973] = 4, + [446064] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15607), 1, - anon_sym_RPAREN, + ACTIONS(15587), 1, + anon_sym_end, STATE(11257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443987] = 4, + [446078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15609), 1, - anon_sym_RPAREN, + ACTIONS(15589), 1, + anon_sym_end, STATE(11258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444001] = 4, + [446092] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15611), 1, - anon_sym_RPAREN, + ACTIONS(15591), 1, + anon_sym_end, STATE(11259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444015] = 4, + [446106] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12671), 1, - sym__constant_segment, + ACTIONS(12307), 1, + anon_sym_end, STATE(11260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444029] = 4, + [446120] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15613), 1, - sym__constant_segment, + ACTIONS(15593), 1, + anon_sym_RPAREN, STATE(11261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444043] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [446134] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15615), 1, - aux_sym_type_declaration_token1, + ACTIONS(15595), 1, + anon_sym_end, STATE(11262), 1, sym_heredoc_body, - [444059] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [446148] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15617), 1, + ACTIONS(15597), 1, anon_sym_RPAREN, STATE(11263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444073] = 4, + [446162] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15619), 1, - anon_sym_RPAREN, + ACTIONS(15599), 1, + anon_sym_EQ_GT, STATE(11264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444087] = 4, + [446176] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15621), 1, + ACTIONS(15601), 1, anon_sym_end, STATE(11265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444101] = 4, + [446190] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15623), 1, - anon_sym_PIPE, + ACTIONS(15603), 1, + anon_sym_end, STATE(11266), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444115] = 4, + [446204] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15625), 1, - anon_sym_RBRACE, + ACTIONS(15605), 1, + anon_sym_end, STATE(11267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444129] = 4, + [446218] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15627), 1, + ACTIONS(15607), 1, anon_sym_end, STATE(11268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444143] = 4, + [446232] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15629), 1, - anon_sym_PIPE, + ACTIONS(15609), 1, + anon_sym_RPAREN, STATE(11269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444157] = 4, + [446246] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15631), 1, + ACTIONS(15611), 1, anon_sym_end, STATE(11270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444171] = 4, + [446260] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15633), 1, - anon_sym_RPAREN, + ACTIONS(15613), 1, + anon_sym_PIPE, STATE(11271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444185] = 4, + [446274] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15635), 1, - anon_sym_end, + ACTIONS(15615), 1, + anon_sym_DASH_GT, STATE(11272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444199] = 4, + [446288] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15637), 1, + ACTIONS(15617), 1, anon_sym_end, STATE(11273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444213] = 4, + [446302] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15639), 1, - anon_sym_end, + ACTIONS(15619), 1, + anon_sym_PIPE, STATE(11274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444227] = 4, + [446316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12946), 1, - anon_sym_RPAREN, + ACTIONS(15621), 1, + anon_sym_EQ_GT, STATE(11275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444241] = 4, + [446330] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15641), 1, - anon_sym_EQ_GT, + ACTIONS(15623), 1, + anon_sym_DASH_GT, STATE(11276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444255] = 4, + [446344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15643), 1, - anon_sym_RPAREN, + ACTIONS(15625), 1, + anon_sym_end, STATE(11277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444269] = 4, + [446358] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15645), 1, - anon_sym_EQ_GT, + ACTIONS(15627), 1, + anon_sym_end, STATE(11278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444283] = 4, + [446372] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15647), 1, + ACTIONS(15629), 1, anon_sym_end, STATE(11279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444297] = 4, + [446386] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15649), 1, - anon_sym_end, + ACTIONS(13032), 1, + anon_sym_RPAREN, STATE(11280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444311] = 4, + [446400] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15651), 1, + ACTIONS(15631), 1, anon_sym_end, STATE(11281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444325] = 4, + [446414] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15653), 1, - anon_sym_RPAREN, + ACTIONS(15633), 1, + anon_sym_EQ_GT, STATE(11282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444339] = 4, + [446428] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15655), 1, - anon_sym_end, + ACTIONS(15635), 1, + anon_sym_DASH_GT, STATE(11283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444353] = 4, + [446442] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15657), 1, - anon_sym_class, + ACTIONS(15637), 1, + anon_sym_end, STATE(11284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444367] = 4, + [446456] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15659), 1, + ACTIONS(15639), 1, anon_sym_end, STATE(11285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444381] = 4, + [446470] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15661), 1, + ACTIONS(15641), 1, anon_sym_RPAREN, STATE(11286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444395] = 4, + [446484] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15663), 1, - anon_sym_end, + ACTIONS(15643), 1, + anon_sym_of, STATE(11287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444409] = 4, + [446498] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15665), 1, - anon_sym_end, + ACTIONS(13078), 1, + sym__constant_segment, STATE(11288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444423] = 4, + [446512] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15667), 1, - anon_sym_DOT, + ACTIONS(15645), 1, + sym__constant_segment, STATE(11289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444437] = 4, + [446526] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15669), 1, + ACTIONS(15647), 1, anon_sym_end, STATE(11290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444451] = 4, + [446540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15671), 1, - anon_sym_RBRACK, + ACTIONS(15649), 1, + aux_sym_type_declaration_token1, STATE(11291), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [444465] = 4, + [446556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15673), 1, + ACTIONS(15651), 1, anon_sym_end, STATE(11292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444479] = 4, + [446570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15675), 1, - anon_sym_EQ_GT, + ACTIONS(15653), 1, + anon_sym_end, STATE(11293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444493] = 4, + [446584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15677), 1, - sym__constant_segment, + ACTIONS(15655), 1, + anon_sym_DOT, STATE(11294), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444507] = 4, + [446598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15679), 1, - anon_sym_end, + ACTIONS(15657), 1, + anon_sym_RPAREN, STATE(11295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444521] = 4, + [446612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15681), 1, - anon_sym_RPAREN, + ACTIONS(15659), 1, + anon_sym_end, STATE(11296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444535] = 4, + [446626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15683), 1, - anon_sym_end, + ACTIONS(15661), 1, + aux_sym_integer_token1, STATE(11297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444549] = 4, + [446640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15685), 1, + ACTIONS(15663), 1, anon_sym_end, STATE(11298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444563] = 4, + [446654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15687), 1, - anon_sym_EQ_GT, + ACTIONS(15665), 1, + anon_sym_end, STATE(11299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444577] = 4, + [446668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15689), 1, - anon_sym_RPAREN, + ACTIONS(15667), 1, + anon_sym_end, STATE(11300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444591] = 4, + [446682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15691), 1, - anon_sym_RPAREN, + ACTIONS(15669), 1, + sym_identifier, STATE(11301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444605] = 4, + [446696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15693), 1, + ACTIONS(15671), 1, anon_sym_end, STATE(11302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444619] = 4, + [446710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15695), 1, - anon_sym_EQ_GT, + ACTIONS(15673), 1, + anon_sym_end, STATE(11303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444633] = 4, + [446724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15697), 1, + ACTIONS(15675), 1, anon_sym_end, STATE(11304), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444647] = 4, + [446738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15699), 1, - anon_sym_RBRACE, + ACTIONS(15677), 1, + anon_sym_RPAREN, STATE(11305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444661] = 4, + [446752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15701), 1, - anon_sym_end, + ACTIONS(15679), 1, + anon_sym_RPAREN, STATE(11306), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444675] = 4, + [446766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12186), 1, + ACTIONS(15681), 1, anon_sym_end, STATE(11307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444689] = 4, + [446780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15703), 1, - anon_sym_PIPE, + ACTIONS(15683), 1, + anon_sym_end, STATE(11308), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444703] = 4, + [446794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15705), 1, - anon_sym_RBRACK, + ACTIONS(15685), 1, + anon_sym_end, STATE(11309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444717] = 4, + [446808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15707), 1, - anon_sym_DASH_GT, + ACTIONS(15687), 1, + anon_sym_end, STATE(11310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444731] = 4, + [446822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15709), 1, - anon_sym_PIPE, + ACTIONS(15689), 1, + anon_sym_RPAREN, STATE(11311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444745] = 4, + [446836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15711), 1, - anon_sym_RPAREN, + ACTIONS(15691), 1, + anon_sym_EQ_GT, STATE(11312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444759] = 4, + [446850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15713), 1, - anon_sym_end, + ACTIONS(15693), 1, + anon_sym_PIPE, STATE(11313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444773] = 4, + [446864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15715), 1, - anon_sym_end, + ACTIONS(15695), 1, + anon_sym_RBRACK, STATE(11314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444787] = 4, + [446878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15717), 1, - anon_sym_end, + ACTIONS(15697), 1, + anon_sym_RBRACK, STATE(11315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444801] = 4, + [446892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15719), 1, - anon_sym_RPAREN, + ACTIONS(15699), 1, + anon_sym_PIPE, STATE(11316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444815] = 4, + [446906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12950), 1, - anon_sym_RPAREN, + ACTIONS(15701), 1, + anon_sym_EQ_GT, STATE(11317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444829] = 4, + [446920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15721), 1, + ACTIONS(15703), 1, anon_sym_end, STATE(11318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444843] = 4, + [446934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15723), 1, - anon_sym_EQ_GT, + ACTIONS(15705), 1, + anon_sym_DASH_GT, STATE(11319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444857] = 4, + [446948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15725), 1, - anon_sym_DASH_GT, + ACTIONS(15707), 1, + anon_sym_end, STATE(11320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444871] = 4, + [446962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15727), 1, - anon_sym_end, + ACTIONS(15709), 1, + anon_sym_class, STATE(11321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444885] = 4, + [446976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15729), 1, - anon_sym_end, + ACTIONS(13036), 1, + anon_sym_RPAREN, STATE(11322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444899] = 4, + [446990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15731), 1, - anon_sym_end, + ACTIONS(15711), 1, + anon_sym_RPAREN, STATE(11323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444913] = 4, + [447004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15733), 1, - anon_sym_EQ_GT, + ACTIONS(15713), 1, + anon_sym_end, STATE(11324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444927] = 4, + [447018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15735), 1, - anon_sym_end, + ACTIONS(15715), 1, + anon_sym_EQ_GT, STATE(11325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444941] = 4, + [447032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15737), 1, + ACTIONS(15717), 1, anon_sym_end, STATE(11326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444955] = 4, + [447046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15739), 1, - anon_sym_RBRACK, + ACTIONS(15719), 1, + anon_sym_end, STATE(11327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444969] = 4, + [447060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15741), 1, - anon_sym_DASH_GT, + ACTIONS(15721), 1, + anon_sym_RBRACE, STATE(11328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444983] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [447074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15743), 1, - aux_sym_type_declaration_token1, + ACTIONS(15723), 1, + anon_sym_end, STATE(11329), 1, sym_heredoc_body, - [444999] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [447088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15745), 1, - anon_sym_RPAREN, + ACTIONS(15725), 1, + sym__constant_segment, STATE(11330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445013] = 4, + [447102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15747), 1, - anon_sym_DOT, + ACTIONS(15727), 1, + anon_sym_RBRACK, STATE(11331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445027] = 4, + [447116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15749), 1, + ACTIONS(12380), 1, anon_sym_end, STATE(11332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445041] = 4, + [447130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15751), 1, + ACTIONS(15729), 1, anon_sym_EQ_GT, STATE(11333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445055] = 4, + [447144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15753), 1, + ACTIONS(15731), 1, anon_sym_end, STATE(11334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445069] = 4, + [447158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15755), 1, - anon_sym_DASH_GT, + ACTIONS(15733), 1, + anon_sym_end, STATE(11335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445083] = 4, + [447172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15757), 1, - anon_sym_end, + ACTIONS(15735), 1, + anon_sym_DOT, STATE(11336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445097] = 4, + [447186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15759), 1, + ACTIONS(15737), 1, anon_sym_end, STATE(11337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445111] = 4, + [447200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15761), 1, - anon_sym_end, + ACTIONS(15739), 1, + anon_sym_DASH_GT, STATE(11338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445125] = 4, + [447214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15763), 1, - anon_sym_end, + ACTIONS(15741), 1, + anon_sym_EQ_GT, STATE(11339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445139] = 4, + [447228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15765), 1, - anon_sym_end, + ACTIONS(15743), 1, + anon_sym_DASH_GT, STATE(11340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445153] = 4, + [447242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15767), 1, + ACTIONS(15745), 1, anon_sym_end, STATE(11341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445167] = 4, + [447256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15769), 1, - anon_sym_RPAREN, + ACTIONS(15747), 1, + sym__constant_segment, STATE(11342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445181] = 4, + [447270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12739), 1, - sym__constant_segment, + ACTIONS(15749), 1, + anon_sym_end, STATE(11343), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445195] = 4, + [447284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15771), 1, - sym__constant_segment, + ACTIONS(15751), 1, + anon_sym_end, STATE(11344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445209] = 4, + [447298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15773), 1, - anon_sym_RPAREN, + ACTIONS(15753), 1, + anon_sym_end, STATE(11345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445223] = 4, + [447312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15775), 1, + ACTIONS(15755), 1, anon_sym_end, STATE(11346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445237] = 4, + [447326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15777), 1, - anon_sym_end, + ACTIONS(15757), 1, + anon_sym_RPAREN, STATE(11347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445251] = 4, + [447340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15779), 1, - anon_sym_end, + ACTIONS(15759), 1, + anon_sym_of, STATE(11348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445265] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [447354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15781), 1, - aux_sym_type_declaration_token1, + ACTIONS(12727), 1, + sym__constant_segment, STATE(11349), 1, sym_heredoc_body, - [445281] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [447368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15783), 1, - anon_sym_PIPE, + ACTIONS(15761), 1, + sym__constant_segment, STATE(11350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445295] = 4, + [447382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15785), 1, - anon_sym_end, + ACTIONS(15763), 1, + aux_sym_type_declaration_token1, STATE(11351), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [445309] = 4, + [447398] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15787), 1, + ACTIONS(15765), 1, anon_sym_end, STATE(11352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445323] = 4, + [447412] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15789), 1, - anon_sym_PIPE, + ACTIONS(15767), 1, + anon_sym_end, STATE(11353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445337] = 4, + [447426] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15791), 1, + ACTIONS(15769), 1, anon_sym_end, STATE(11354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445351] = 4, + [447440] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15793), 1, - anon_sym_end, + ACTIONS(15771), 1, + anon_sym_PIPE, STATE(11355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445365] = 4, + [447454] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15795), 1, + ACTIONS(15773), 1, anon_sym_RPAREN, STATE(11356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445379] = 4, + [447468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14703), 1, - anon_sym_end, + ACTIONS(15775), 1, + anon_sym_EQ_GT, STATE(11357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445393] = 4, + [447482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15797), 1, - anon_sym_end, + ACTIONS(15777), 1, + anon_sym_PIPE, STATE(11358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445407] = 4, + [447496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12964), 1, - anon_sym_RPAREN, + ACTIONS(15779), 1, + anon_sym_yield, STATE(11359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445421] = 4, + [447510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15799), 1, - anon_sym_yield, + ACTIONS(12295), 1, + anon_sym_end, STATE(11360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445435] = 4, + [447524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15801), 1, - anon_sym_end, + ACTIONS(15781), 1, + sym__constant_segment, STATE(11361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445449] = 4, + [447538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15803), 1, - anon_sym_RPAREN, + ACTIONS(15783), 1, + anon_sym_end, STATE(11362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445463] = 4, + [447552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15805), 1, - anon_sym_end, + ACTIONS(15785), 1, + anon_sym_RPAREN, STATE(11363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445477] = 4, + [447566] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15807), 1, + ACTIONS(13044), 1, anon_sym_RPAREN, STATE(11364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445491] = 4, + [447580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15809), 1, - anon_sym_end, + ACTIONS(15787), 1, + anon_sym_EQ_GT, STATE(11365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445505] = 4, + [447594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15811), 1, - anon_sym_end, + ACTIONS(15789), 1, + anon_sym_RPAREN, STATE(11366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445519] = 4, + [447608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15813), 1, - anon_sym_RBRACK, + ACTIONS(15791), 1, + anon_sym_RPAREN, STATE(11367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445533] = 4, + [447622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15815), 1, - anon_sym_class, + ACTIONS(15793), 1, + anon_sym_end, STATE(11368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445547] = 4, + [447636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15817), 1, + ACTIONS(15795), 1, anon_sym_end, STATE(11369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445561] = 4, + [447650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15819), 1, - anon_sym_end, + ACTIONS(15797), 1, + anon_sym_class, STATE(11370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445575] = 4, + [447664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15821), 1, + ACTIONS(15799), 1, anon_sym_RPAREN, STATE(11371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445589] = 4, + [447678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15823), 1, - anon_sym_RPAREN, + ACTIONS(15801), 1, + anon_sym_class, STATE(11372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445603] = 4, + [447692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15825), 1, - anon_sym_DOT, + ACTIONS(15803), 1, + anon_sym_end, STATE(11373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445617] = 4, + [447706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15827), 1, + ACTIONS(15805), 1, anon_sym_end, STATE(11374), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445631] = 4, + [447720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15829), 1, - anon_sym_EQ_GT, + ACTIONS(15807), 1, + anon_sym_end, STATE(11375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445645] = 4, + [447734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15831), 1, - anon_sym_RPAREN, + ACTIONS(15809), 1, + anon_sym_end, STATE(11376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445659] = 4, + [447748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15833), 1, - anon_sym_end, + ACTIONS(15811), 1, + anon_sym_RPAREN, STATE(11377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445673] = 4, + [447762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15835), 1, - anon_sym_end, + ACTIONS(15813), 1, + anon_sym_DOT, STATE(11378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445687] = 4, + [447776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15837), 1, - anon_sym_RBRACE, + ACTIONS(15815), 1, + anon_sym_RPAREN, STATE(11379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445701] = 4, + [447790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15839), 1, - anon_sym_end, + ACTIONS(15817), 1, + anon_sym_EQ_GT, STATE(11380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445715] = 4, + [447804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15841), 1, + ACTIONS(15819), 1, anon_sym_end, STATE(11381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445729] = 4, + [447818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15843), 1, - anon_sym_RBRACK, + ACTIONS(15821), 1, + anon_sym_RPAREN, STATE(11382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445743] = 4, + [447832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15845), 1, + ACTIONS(15823), 1, anon_sym_end, STATE(11383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445757] = 4, + [447846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15847), 1, - anon_sym_RPAREN, + ACTIONS(15825), 1, + anon_sym_end, STATE(11384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445771] = 4, + [447860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15849), 1, + ACTIONS(15827), 1, anon_sym_end, STATE(11385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445785] = 4, + [447874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15851), 1, - anon_sym_end, + ACTIONS(15829), 1, + anon_sym_RPAREN, STATE(11386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445799] = 4, + [447888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15853), 1, + ACTIONS(15831), 1, anon_sym_RPAREN, STATE(11387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445813] = 4, + [447902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15855), 1, - anon_sym_SQUOTE2, + ACTIONS(15833), 1, + anon_sym_end, STATE(11388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445827] = 4, + [447916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15857), 1, - anon_sym_DASH_GT, + ACTIONS(15835), 1, + anon_sym_RPAREN, STATE(11389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445841] = 4, + [447930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15859), 1, - anon_sym_SQUOTE2, + ACTIONS(15837), 1, + anon_sym_RBRACK, STATE(11390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445855] = 4, + [447944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15861), 1, - anon_sym_DASH_GT, + ACTIONS(15839), 1, + anon_sym_end, STATE(11391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445869] = 4, + [447958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15863), 1, - anon_sym_PIPE, + ACTIONS(15841), 1, + anon_sym_RPAREN, STATE(11392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445883] = 4, + [447972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15865), 1, - anon_sym_end, + ACTIONS(15843), 1, + anon_sym_EQ_GT, STATE(11393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445897] = 4, + [447986] = 4, ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15867), 1, - anon_sym_of, + sym__heredoc_body_start, + ACTIONS(15845), 1, + sym_identifier, STATE(11394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445911] = 4, + [448000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15869), 1, - anon_sym_PIPE, + ACTIONS(15847), 1, + anon_sym_RPAREN, STATE(11395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445925] = 4, + [448014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15871), 1, - anon_sym_RPAREN, + ACTIONS(15849), 1, + anon_sym_DASH_GT, STATE(11396), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445939] = 4, + [448028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15873), 1, - anon_sym_end, + ACTIONS(15851), 1, + anon_sym_PIPE, STATE(11397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445953] = 4, + [448042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15875), 1, - anon_sym_RPAREN, + ACTIONS(15853), 1, + anon_sym_EQ_GT, STATE(11398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445967] = 4, + [448056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15877), 1, + ACTIONS(12420), 1, anon_sym_end, STATE(11399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445981] = 4, + [448070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12987), 1, - anon_sym_RPAREN, + ACTIONS(15855), 1, + anon_sym_PIPE, STATE(11400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445995] = 4, + [448084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12983), 1, - anon_sym_RPAREN, + ACTIONS(15857), 1, + anon_sym_end, STATE(11401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446009] = 4, + [448098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12769), 1, - sym__constant_segment, + ACTIONS(15859), 1, + anon_sym_DASH_GT, STATE(11402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446023] = 4, + [448112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15879), 1, - sym__constant_segment, + ACTIONS(15861), 1, + anon_sym_end, STATE(11403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446037] = 4, + [448126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12687), 1, - sym__constant_segment, + ACTIONS(15863), 1, + anon_sym_end, STATE(11404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446051] = 4, + [448140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15881), 1, + ACTIONS(15865), 1, anon_sym_end, STATE(11405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446065] = 4, + [448154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15883), 1, - sym__constant_segment, + ACTIONS(13054), 1, + anon_sym_RPAREN, STATE(11406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446079] = 4, + [448168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15885), 1, - anon_sym_end, + ACTIONS(15867), 1, + anon_sym_RPAREN, STATE(11407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446093] = 4, + [448182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15887), 1, + ACTIONS(15869), 1, anon_sym_RPAREN, STATE(11408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446107] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [448196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15889), 1, - aux_sym_type_declaration_token1, + ACTIONS(15871), 1, + anon_sym_end, STATE(11409), 1, sym_heredoc_body, - [446123] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [448210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15891), 1, - anon_sym_end, + ACTIONS(15873), 1, + anon_sym_RPAREN, STATE(11410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446137] = 4, + [448224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5862), 1, - anon_sym_COLON, + ACTIONS(12818), 1, + sym__constant_segment, STATE(11411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446151] = 4, + [448238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15893), 1, - sym__constant_segment, + ACTIONS(15875), 1, + anon_sym_end, STATE(11412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446165] = 4, + [448252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15895), 1, - anon_sym_end, + ACTIONS(15877), 1, + sym__constant_segment, STATE(11413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446179] = 4, + [448266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15897), 1, - anon_sym_end, + ACTIONS(15879), 1, + anon_sym_RPAREN, STATE(11414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446193] = 4, + [448280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15899), 1, - anon_sym_DOT, + ACTIONS(15881), 1, + aux_sym_type_declaration_token1, STATE(11415), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [446207] = 4, + [448296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15901), 1, + ACTIONS(15883), 1, anon_sym_end, STATE(11416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446221] = 4, + [448310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15903), 1, - anon_sym_RPAREN, + ACTIONS(15885), 1, + anon_sym_EQ_GT, STATE(11417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446235] = 4, + [448324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15905), 1, - anon_sym_class, + ACTIONS(15887), 1, + anon_sym_end, STATE(11418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446249] = 4, + [448338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12339), 1, - anon_sym_end, + ACTIONS(15889), 1, + anon_sym_RPAREN, STATE(11419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446263] = 4, + [448352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15907), 1, - anon_sym_end, + ACTIONS(15891), 1, + anon_sym_DOT, STATE(11420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446277] = 4, + [448366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15909), 1, - anon_sym_class, + ACTIONS(15893), 1, + anon_sym_RBRACK, STATE(11421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446291] = 4, + [448380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15911), 1, + ACTIONS(15895), 1, anon_sym_end, STATE(11422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446305] = 4, + [448394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12341), 1, + ACTIONS(15897), 1, anon_sym_end, STATE(11423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446319] = 4, + [448408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15913), 1, - anon_sym_end, + ACTIONS(15899), 1, + anon_sym_RPAREN, STATE(11424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446333] = 4, + [448422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15915), 1, + ACTIONS(15901), 1, anon_sym_end, STATE(11425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446347] = 4, + [448436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15917), 1, - anon_sym_RPAREN, + ACTIONS(15903), 1, + anon_sym_end, STATE(11426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446361] = 4, + [448450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15919), 1, - anon_sym_end, + ACTIONS(15905), 1, + anon_sym_RPAREN, STATE(11427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446375] = 4, + [448464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15921), 1, - anon_sym_RBRACE, + ACTIONS(15907), 1, + anon_sym_end, STATE(11428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446389] = 4, + [448478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15923), 1, - anon_sym_end, + ACTIONS(15909), 1, + anon_sym_EQ_GT, STATE(11429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446403] = 4, + [448492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15925), 1, - anon_sym_EQ_GT, + ACTIONS(15911), 1, + anon_sym_end, STATE(11430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446417] = 4, + [448506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15927), 1, - anon_sym_yield, + ACTIONS(15913), 1, + anon_sym_RPAREN, STATE(11431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446431] = 4, + [448520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15929), 1, - anon_sym_RBRACK, + ACTIONS(15915), 1, + anon_sym_class, STATE(11432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446445] = 4, + [448534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15931), 1, + ACTIONS(15917), 1, anon_sym_class, STATE(11433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446459] = 4, + [448548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15933), 1, - anon_sym_PIPE, + ACTIONS(15919), 1, + anon_sym_RPAREN, STATE(11434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446473] = 4, + [448562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15935), 1, - aux_sym_integer_token1, + ACTIONS(15921), 1, + anon_sym_end, STATE(11435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446487] = 4, + [448576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12309), 1, + ACTIONS(15923), 1, anon_sym_end, STATE(11436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446501] = 4, + [448590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15937), 1, - anon_sym_PIPE, + ACTIONS(15925), 1, + anon_sym_RPAREN, STATE(11437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446515] = 4, + [448604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15939), 1, + ACTIONS(15927), 1, anon_sym_end, STATE(11438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446529] = 4, + [448618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15941), 1, - anon_sym_RPAREN, + ACTIONS(15929), 1, + anon_sym_PIPE, STATE(11439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446543] = 4, + [448632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15943), 1, - anon_sym_DASH_GT, + ACTIONS(15931), 1, + anon_sym_RPAREN, STATE(11440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446557] = 4, + [448646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15945), 1, - anon_sym_RBRACK, + ACTIONS(15933), 1, + anon_sym_EQ_GT, STATE(11441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446571] = 4, + [448660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15947), 1, - anon_sym_RBRACK, + ACTIONS(15935), 1, + anon_sym_PIPE, STATE(11442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446585] = 4, + [448674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12996), 1, + ACTIONS(15937), 1, anon_sym_RPAREN, STATE(11443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446599] = 4, + [448688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15949), 1, - anon_sym_DASH_GT, + ACTIONS(15939), 1, + anon_sym_EQ_GT, STATE(11444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446613] = 4, + [448702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15951), 1, - anon_sym_end, + ACTIONS(15941), 1, + anon_sym_RPAREN, STATE(11445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446627] = 4, + [448716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15953), 1, + ACTIONS(15943), 1, anon_sym_end, STATE(11446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446641] = 4, + [448730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15955), 1, + ACTIONS(15945), 1, anon_sym_end, STATE(11447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446655] = 4, + [448744] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15957), 1, - anon_sym_RBRACE, + ACTIONS(13058), 1, + anon_sym_RPAREN, STATE(11448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446669] = 4, + [448758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15959), 1, - anon_sym_RPAREN, + ACTIONS(15947), 1, + anon_sym_RBRACK, STATE(11449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446683] = 4, + [448772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15961), 1, + ACTIONS(15949), 1, anon_sym_end, STATE(11450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446697] = 4, + [448786] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12783), 1, - sym__constant_segment, + ACTIONS(15951), 1, + anon_sym_end, STATE(11451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446711] = 4, + [448800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15963), 1, - sym__constant_segment, + ACTIONS(15953), 1, + anon_sym_end, STATE(11452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446725] = 4, + [448814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15965), 1, - anon_sym_EQ_GT, + ACTIONS(15955), 1, + anon_sym_end, STATE(11453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446739] = 4, + [448828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15967), 1, - anon_sym_end, + ACTIONS(15957), 1, + anon_sym_EQ_GT, STATE(11454), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446753] = 4, + [448842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15969), 1, + ACTIONS(15959), 1, anon_sym_RPAREN, STATE(11455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446767] = 4, + [448856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15971), 1, + ACTIONS(15961), 1, anon_sym_end, STATE(11456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446781] = 4, + [448870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15973), 1, - anon_sym_DOT, + ACTIONS(15963), 1, + anon_sym_DASH_GT, STATE(11457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446795] = 4, + [448884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15975), 1, - anon_sym_end, + ACTIONS(6309), 1, + anon_sym_RBRACK, STATE(11458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446809] = 4, + [448898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15977), 1, - anon_sym_RPAREN, + ACTIONS(6313), 1, + anon_sym_RBRACK, STATE(11459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446823] = 4, + [448912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15979), 1, - anon_sym_RBRACK, + ACTIONS(15965), 1, + anon_sym_end, STATE(11460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446837] = 4, + [448926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15981), 1, - anon_sym_yield, + ACTIONS(15967), 1, + sym__constant_segment, STATE(11461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446851] = 4, + [448940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15983), 1, - anon_sym_end, + ACTIONS(15969), 1, + anon_sym_DOT, STATE(11462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446865] = 4, + [448954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15985), 1, - anon_sym_RPAREN, + ACTIONS(15971), 1, + anon_sym_end, STATE(11463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446879] = 4, + [448968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15987), 1, - anon_sym_RPAREN, + ACTIONS(15973), 1, + anon_sym_end, STATE(11464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446893] = 4, + [448982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15989), 1, - anon_sym_RPAREN, + ACTIONS(15975), 1, + anon_sym_DASH_GT, STATE(11465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446907] = 4, + [448996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15991), 1, + ACTIONS(15977), 1, anon_sym_end, STATE(11466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446921] = 4, + [449010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15993), 1, - anon_sym_RPAREN, + ACTIONS(15979), 1, + anon_sym_end, STATE(11467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446935] = 4, + [449024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15995), 1, - anon_sym_end, + ACTIONS(15981), 1, + anon_sym_RPAREN, STATE(11468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446949] = 4, + [449038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15997), 1, - anon_sym_end, + ACTIONS(15983), 1, + anon_sym_RBRACK, STATE(11469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446963] = 4, + [449052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15999), 1, - anon_sym_RPAREN, + ACTIONS(15985), 1, + anon_sym_end, STATE(11470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446977] = 4, + [449066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16001), 1, - anon_sym_end, + ACTIONS(12848), 1, + sym__constant_segment, STATE(11471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446991] = 4, + [449080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16003), 1, - anon_sym_end, + ACTIONS(15987), 1, + sym__constant_segment, STATE(11472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447005] = 4, + [449094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16005), 1, - anon_sym_end, + ACTIONS(15989), 1, + anon_sym_RPAREN, STATE(11473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447019] = 4, + [449108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16007), 1, - anon_sym_end, + ACTIONS(15991), 1, + anon_sym_RPAREN, STATE(11474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447033] = 4, + [449122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16009), 1, - anon_sym_PIPE, + ACTIONS(15993), 1, + anon_sym_RBRACK, STATE(11475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447047] = 4, + [449136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16011), 1, - anon_sym_end, + ACTIONS(15995), 1, + anon_sym_EQ_GT, STATE(11476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447061] = 4, + [449150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12208), 1, - anon_sym_end, + ACTIONS(15997), 1, + anon_sym_RPAREN, STATE(11477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447075] = 4, + [449164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16013), 1, - anon_sym_PIPE, + ACTIONS(15999), 1, + anon_sym_RPAREN, STATE(11478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447089] = 4, + [449178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16015), 1, - anon_sym_class, + ACTIONS(16001), 1, + anon_sym_RPAREN, STATE(11479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447103] = 4, + [449192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16017), 1, - anon_sym_RPAREN, + ACTIONS(16003), 1, + anon_sym_end, STATE(11480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447117] = 4, + [449206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16019), 1, - anon_sym_end, + ACTIONS(16005), 1, + anon_sym_PIPE, STATE(11481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447131] = 4, + [449220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16021), 1, + ACTIONS(16007), 1, anon_sym_end, STATE(11482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447145] = 4, + [449234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16023), 1, + ACTIONS(16009), 1, anon_sym_end, STATE(11483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447159] = 4, + [449248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13008), 1, - anon_sym_RPAREN, + ACTIONS(16011), 1, + anon_sym_PIPE, STATE(11484), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447173] = 4, + [449262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16025), 1, + ACTIONS(16013), 1, anon_sym_RPAREN, STATE(11485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447187] = 4, + [449276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16027), 1, - anon_sym_RPAREN, + ACTIONS(16015), 1, + anon_sym_class, STATE(11486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447201] = 4, + [449290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16029), 1, + ACTIONS(16017), 1, anon_sym_end, STATE(11487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447215] = 4, + [449304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16031), 1, + ACTIONS(16019), 1, anon_sym_RPAREN, STATE(11488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447229] = 4, + [449318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16033), 1, + ACTIONS(16021), 1, anon_sym_end, STATE(11489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447243] = 4, + [449332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16035), 1, - anon_sym_EQ_GT, + ACTIONS(13064), 1, + anon_sym_RPAREN, STATE(11490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447257] = 4, + [449346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16037), 1, - anon_sym_EQ_GT, + ACTIONS(16023), 1, + anon_sym_RBRACE, STATE(11491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447271] = 4, + [449360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16039), 1, - anon_sym_RBRACK, + ACTIONS(16025), 1, + anon_sym_EQ_GT, STATE(11492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447285] = 4, + [449374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16041), 1, - anon_sym_end, + ACTIONS(16027), 1, + anon_sym_RBRACE, STATE(11493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447299] = 4, + [449388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16043), 1, - anon_sym_RPAREN, + ACTIONS(16029), 1, + anon_sym_class, STATE(11494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447313] = 4, + [449402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16045), 1, - anon_sym_end, + ACTIONS(16031), 1, + anon_sym_EQ_GT, STATE(11495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447327] = 4, + [449416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16047), 1, - anon_sym_RPAREN, + ACTIONS(16033), 1, + anon_sym_end, STATE(11496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447341] = 4, + [449430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16049), 1, - anon_sym_EQ_GT, + ACTIONS(16035), 1, + anon_sym_end, STATE(11497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447355] = 4, + [449444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16051), 1, - anon_sym_DOT, + ACTIONS(16037), 1, + anon_sym_RPAREN, STATE(11498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447369] = 4, + [449458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16053), 1, + ACTIONS(16039), 1, anon_sym_EQ_GT, STATE(11499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447383] = 4, + [449472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16055), 1, - anon_sym_end, + ACTIONS(16041), 1, + anon_sym_DASH_GT, STATE(11500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447397] = 4, + [449486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16057), 1, - anon_sym_end, + ACTIONS(16043), 1, + anon_sym_RPAREN, STATE(11501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447411] = 4, + [449500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16059), 1, - anon_sym_EQ_GT, + ACTIONS(16045), 1, + anon_sym_end, STATE(11502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447425] = 4, + [449514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16061), 1, + ACTIONS(16047), 1, anon_sym_end, STATE(11503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447439] = 4, + [449528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16063), 1, - anon_sym_DASH_GT, + ACTIONS(16049), 1, + anon_sym_DOT, STATE(11504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447453] = 4, + [449542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16065), 1, - anon_sym_end, + ACTIONS(16051), 1, + anon_sym_RPAREN, STATE(11505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447467] = 4, + [449556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16067), 1, - anon_sym_end, + ACTIONS(16053), 1, + anon_sym_EQ_GT, STATE(11506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447481] = 4, + [449570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16069), 1, + ACTIONS(16055), 1, anon_sym_DASH_GT, STATE(11507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447495] = 4, + [449584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16071), 1, - anon_sym_RPAREN, + ACTIONS(16057), 1, + anon_sym_end, STATE(11508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447509] = 4, + [449598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16073), 1, + ACTIONS(16059), 1, anon_sym_end, STATE(11509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447523] = 4, + [449612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16075), 1, - anon_sym_end, + ACTIONS(16061), 1, + anon_sym_RBRACE, STATE(11510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447537] = 4, + [449626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16077), 1, - anon_sym_end, + ACTIONS(16063), 1, + anon_sym_RBRACE, STATE(11511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447551] = 4, + [449640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16079), 1, - anon_sym_end, + ACTIONS(16065), 1, + anon_sym_RBRACK, STATE(11512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447565] = 4, + [449654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12793), 1, - sym__constant_segment, + ACTIONS(16067), 1, + anon_sym_end, STATE(11513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447579] = 4, + [449668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16081), 1, - anon_sym_class, + ACTIONS(16069), 1, + anon_sym_RPAREN, STATE(11514), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447593] = 4, + [449682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16083), 1, - anon_sym_RPAREN, + ACTIONS(16071), 1, + anon_sym_end, STATE(11515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447607] = 4, + [449696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16085), 1, - anon_sym_PIPE, + ACTIONS(16073), 1, + anon_sym_end, STATE(11516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447621] = 4, + [449710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16087), 1, - anon_sym_end, + ACTIONS(10771), 1, + anon_sym_RPAREN, STATE(11517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447635] = 4, + [449724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16089), 1, + ACTIONS(16075), 1, anon_sym_RPAREN, STATE(11518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447649] = 4, + [449738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16091), 1, - anon_sym_PIPE, + ACTIONS(16077), 1, + anon_sym_RPAREN, STATE(11519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447663] = 4, + [449752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16093), 1, - sym__constant_segment, + ACTIONS(16079), 1, + anon_sym_DASH_GT, STATE(11520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447677] = 4, + [449766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16095), 1, - anon_sym_RPAREN, + ACTIONS(16081), 1, + anon_sym_DASH_GT, STATE(11521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447691] = 4, + [449780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16097), 1, - anon_sym_DASH_GT, + ACTIONS(16083), 1, + anon_sym_PIPE, STATE(11522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447705] = 4, + [449794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16099), 1, + ACTIONS(16085), 1, anon_sym_end, STATE(11523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447719] = 4, + [449808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16101), 1, + ACTIONS(16087), 1, anon_sym_DASH_GT, STATE(11524), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447733] = 4, + [449822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13017), 1, - anon_sym_RPAREN, + ACTIONS(16089), 1, + anon_sym_PIPE, STATE(11525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447747] = 4, + [449836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16103), 1, + ACTIONS(16091), 1, anon_sym_RPAREN, STATE(11526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447761] = 4, + [449850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12819), 1, - sym__constant_segment, + ACTIONS(16093), 1, + anon_sym_class, STATE(11527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447775] = 4, + [449864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16105), 1, + ACTIONS(12854), 1, sym__constant_segment, STATE(11528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447789] = 4, + [449878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16107), 1, - anon_sym_end, + ACTIONS(16095), 1, + anon_sym_RPAREN, STATE(11529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447803] = 4, + [449892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16109), 1, + ACTIONS(16097), 1, anon_sym_end, STATE(11530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447817] = 4, + [449906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16111), 1, - anon_sym_end, + ACTIONS(13068), 1, + anon_sym_RPAREN, STATE(11531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447831] = 4, + [449920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16113), 1, - anon_sym_DASH_GT, + ACTIONS(16099), 1, + sym__constant_segment, STATE(11532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447845] = 4, + [449934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16115), 1, - anon_sym_EQ_GT, + ACTIONS(16101), 1, + anon_sym_end, STATE(11533), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447859] = 4, + [449948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16117), 1, - anon_sym_DASH_GT, + ACTIONS(16103), 1, + anon_sym_RPAREN, STATE(11534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447873] = 4, + [449962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16119), 1, - anon_sym_end, + ACTIONS(16105), 1, + anon_sym_EQ_GT, STATE(11535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447887] = 4, + [449976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16121), 1, + ACTIONS(16107), 1, anon_sym_end, STATE(11536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447901] = 4, + [449990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16123), 1, - anon_sym_end, + ACTIONS(16109), 1, + anon_sym_RPAREN, STATE(11537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447915] = 4, + [450004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16125), 1, - anon_sym_EQ_GT, + ACTIONS(16111), 1, + anon_sym_RPAREN, STATE(11538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447929] = 4, + [450018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16127), 1, - anon_sym_DOT, + ACTIONS(16113), 1, + anon_sym_end, STATE(11539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447943] = 4, + [450032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12825), 1, - sym__constant_segment, + ACTIONS(16115), 1, + anon_sym_RPAREN, STATE(11540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447957] = 4, + [450046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16129), 1, - sym__constant_segment, + ACTIONS(16117), 1, + anon_sym_EQ_GT, STATE(11541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447971] = 4, + [450060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16131), 1, - anon_sym_end, + ACTIONS(16119), 1, + anon_sym_DASH_GT, STATE(11542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447985] = 4, + [450074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16133), 1, - anon_sym_end, + ACTIONS(16121), 1, + anon_sym_DOT, STATE(11543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [447999] = 4, + [450088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16135), 1, - anon_sym_DASH_GT, + ACTIONS(16123), 1, + anon_sym_end, STATE(11544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448013] = 4, + [450102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16137), 1, - anon_sym_DASH_GT, + ACTIONS(16125), 1, + anon_sym_DOT, STATE(11545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448027] = 4, + [450116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16139), 1, - anon_sym_RPAREN, + ACTIONS(16127), 1, + anon_sym_class, STATE(11546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448041] = 4, + [450130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16141), 1, - anon_sym_RBRACK, + ACTIONS(16129), 1, + anon_sym_RPAREN, STATE(11547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448055] = 4, + [450144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16143), 1, + ACTIONS(16131), 1, anon_sym_DASH_GT, STATE(11548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448069] = 4, + [450158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16145), 1, - anon_sym_RPAREN, + ACTIONS(16133), 1, + anon_sym_end, STATE(11549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448083] = 4, + [450172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16147), 1, - anon_sym_end, + ACTIONS(11344), 1, + anon_sym_RPAREN, STATE(11550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448097] = 4, + [450186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16149), 1, - anon_sym_DASH_GT, + ACTIONS(16135), 1, + anon_sym_end, STATE(11551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448111] = 4, + [450200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16151), 1, - anon_sym_end, + ACTIONS(16137), 1, + anon_sym_RPAREN, STATE(11552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448125] = 4, + [450214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16153), 1, - anon_sym_DASH_GT, + ACTIONS(16139), 1, + anon_sym_end, STATE(11553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448139] = 4, + [450228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16155), 1, - anon_sym_DASH_GT, + ACTIONS(16141), 1, + anon_sym_end, STATE(11554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448153] = 4, + [450242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16157), 1, - anon_sym_RBRACK, + ACTIONS(16143), 1, + anon_sym_RPAREN, STATE(11555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448167] = 4, + [450256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16159), 1, + ACTIONS(16145), 1, anon_sym_end, STATE(11556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448181] = 4, + [450270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16161), 1, - anon_sym_PIPE, + ACTIONS(16147), 1, + anon_sym_end, STATE(11557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448195] = 4, + [450284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16163), 1, + ACTIONS(16149), 1, anon_sym_RBRACK, STATE(11558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448209] = 4, + [450298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16165), 1, - anon_sym_end, + ACTIONS(13461), 1, + anon_sym_RPAREN, STATE(11559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448223] = 4, + [450312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16167), 1, - anon_sym_PIPE, + ACTIONS(16151), 1, + anon_sym_end, STATE(11560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448237] = 4, + [450326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16169), 1, - anon_sym_RPAREN, + ACTIONS(16153), 1, + anon_sym_end, STATE(11561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448251] = 4, + [450340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16171), 1, + ACTIONS(16155), 1, anon_sym_end, STATE(11562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448265] = 4, + [450354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16173), 1, - anon_sym_DASH_GT, + ACTIONS(16157), 1, + anon_sym_PIPE, STATE(11563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448279] = 4, + [450368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16175), 1, - anon_sym_RPAREN, + ACTIONS(16159), 1, + anon_sym_end, STATE(11564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448293] = 4, + [450382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16177), 1, + ACTIONS(16161), 1, anon_sym_DASH_GT, STATE(11565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448307] = 4, + [450396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13021), 1, - anon_sym_RPAREN, + ACTIONS(16163), 1, + anon_sym_PIPE, STATE(11566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448321] = 4, + [450410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16179), 1, - anon_sym_RBRACK, + ACTIONS(16165), 1, + anon_sym_DASH_GT, STATE(11567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448335] = 4, + [450424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16181), 1, - anon_sym_EQ_GT, + ACTIONS(16167), 1, + anon_sym_end, STATE(11568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448349] = 4, + [450438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16183), 1, - anon_sym_RBRACE, + ACTIONS(16169), 1, + anon_sym_end, STATE(11569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448363] = 4, + [450452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16185), 1, - anon_sym_DASH_GT, + ACTIONS(16171), 1, + anon_sym_end, STATE(11570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448377] = 4, + [450466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16187), 1, - anon_sym_DASH_GT, + ACTIONS(16173), 1, + anon_sym_RPAREN, STATE(11571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448391] = 4, + [450480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16189), 1, - anon_sym_end, + ACTIONS(13086), 1, + anon_sym_RPAREN, STATE(11572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448405] = 4, + [450494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16191), 1, - anon_sym_end, + ACTIONS(12860), 1, + sym__constant_segment, STATE(11573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448419] = 4, + [450508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16193), 1, - anon_sym_DASH_GT, + ACTIONS(16175), 1, + sym__constant_segment, STATE(11574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448433] = 4, + [450522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16195), 1, - anon_sym_RPAREN, + ACTIONS(16177), 1, + anon_sym_end, STATE(11575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448447] = 4, + [450536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16197), 1, - anon_sym_end, + ACTIONS(16179), 1, + anon_sym_DASH_GT, STATE(11576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448461] = 4, + [450550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16199), 1, + ACTIONS(16181), 1, anon_sym_end, STATE(11577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448475] = 4, + [450564] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16201), 1, + ACTIONS(16183), 1, anon_sym_end, STATE(11578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448489] = 4, + [450578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16203), 1, - anon_sym_RPAREN, + ACTIONS(16185), 1, + anon_sym_DASH_GT, STATE(11579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448503] = 4, + [450592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16205), 1, + ACTIONS(16187), 1, anon_sym_EQ_GT, STATE(11580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448517] = 4, + [450606] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16207), 1, - anon_sym_DASH_GT, + ACTIONS(12884), 1, + sym__constant_segment, STATE(11581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448531] = 4, + [450620] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16209), 1, - anon_sym_PIPE, + ACTIONS(16189), 1, + anon_sym_end, STATE(11582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448545] = 4, + [450634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16211), 1, - anon_sym_end, + ACTIONS(16191), 1, + sym__constant_segment, STATE(11583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448559] = 4, + [450648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16213), 1, - anon_sym_PIPE, + ACTIONS(16193), 1, + anon_sym_EQ_GT, STATE(11584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448573] = 4, + [450662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16215), 1, - anon_sym_end, + ACTIONS(16195), 1, + anon_sym_DASH_GT, STATE(11585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448587] = 4, + [450676] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16217), 1, - anon_sym_end, + ACTIONS(16197), 1, + anon_sym_DOT, STATE(11586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448601] = 4, + [450690] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16219), 1, + ACTIONS(16199), 1, anon_sym_DASH_GT, STATE(11587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448615] = 4, + [450704] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16221), 1, + ACTIONS(16201), 1, sym__constant_segment, STATE(11588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448629] = 4, + [450718] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13025), 1, + ACTIONS(16203), 1, anon_sym_RPAREN, STATE(11589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448643] = 4, + [450732] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16223), 1, - anon_sym_DASH_GT, + ACTIONS(12890), 1, + sym__constant_segment, STATE(11590), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448657] = 4, + [450746] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16225), 1, + ACTIONS(16205), 1, anon_sym_end, STATE(11591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448671] = 4, + [450760] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16227), 1, - anon_sym_end, + ACTIONS(16207), 1, + anon_sym_RPAREN, STATE(11592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448685] = 4, + [450774] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16229), 1, - anon_sym_end, + ACTIONS(16209), 1, + sym__constant_segment, STATE(11593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448699] = 4, + [450788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16231), 1, - anon_sym_end, + ACTIONS(16211), 1, + anon_sym_RPAREN, STATE(11594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448713] = 4, + [450802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16233), 1, - anon_sym_RPAREN, + ACTIONS(16213), 1, + anon_sym_DASH_GT, STATE(11595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448727] = 4, + [450816] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16235), 1, - sym__constant_segment, + ACTIONS(16215), 1, + anon_sym_RPAREN, STATE(11596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448741] = 4, + [450830] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16237), 1, + ACTIONS(16217), 1, anon_sym_end, STATE(11597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448755] = 4, + [450844] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16239), 1, - anon_sym_end, + ACTIONS(16219), 1, + anon_sym_SQUOTE2, STATE(11598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448769] = 4, + [450858] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16241), 1, - anon_sym_end, + ACTIONS(16221), 1, + anon_sym_DASH_GT, STATE(11599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448783] = 4, + [450872] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16243), 1, - anon_sym_DASH_GT, + ACTIONS(16223), 1, + anon_sym_class, STATE(11600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448797] = 4, + [450886] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16245), 1, + ACTIONS(16225), 1, anon_sym_DASH_GT, STATE(11601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448811] = 4, + [450900] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16247), 1, - anon_sym_PIPE, + ACTIONS(16227), 1, + anon_sym_of, STATE(11602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448825] = 4, + [450914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16249), 1, - anon_sym_RPAREN, + ACTIONS(16229), 1, + anon_sym_DASH_GT, STATE(11603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448839] = 4, + [450928] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16251), 1, + ACTIONS(16231), 1, anon_sym_PIPE, STATE(11604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448853] = 4, + [450942] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16253), 1, - anon_sym_SQUOTE2, + ACTIONS(16233), 1, + anon_sym_end, STATE(11605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448867] = 4, + [450956] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16255), 1, - anon_sym_DASH_GT, + ACTIONS(16235), 1, + anon_sym_end, STATE(11606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448881] = 4, + [450970] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16257), 1, - anon_sym_DASH_GT, + ACTIONS(16237), 1, + anon_sym_PIPE, STATE(11607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448895] = 4, + [450984] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13033), 1, - anon_sym_RPAREN, + ACTIONS(16239), 1, + anon_sym_end, STATE(11608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448909] = 4, + [450998] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16259), 1, + ACTIONS(16241), 1, anon_sym_DASH_GT, STATE(11609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448923] = 4, + [451012] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16261), 1, - anon_sym_RPAREN, + ACTIONS(16243), 1, + anon_sym_DASH_GT, STATE(11610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448937] = 4, + [451026] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16263), 1, + ACTIONS(16245), 1, anon_sym_RPAREN, STATE(11611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448951] = 4, + [451040] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16265), 1, + ACTIONS(16247), 1, anon_sym_DASH_GT, STATE(11612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448965] = 4, + [451054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16267), 1, - anon_sym_DASH_GT, + ACTIONS(13102), 1, + anon_sym_RPAREN, STATE(11613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448979] = 4, + [451068] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16269), 1, - anon_sym_end, + ACTIONS(16249), 1, + anon_sym_DASH_GT, STATE(11614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [448993] = 4, + [451082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16271), 1, - anon_sym_EQ_GT, + ACTIONS(16251), 1, + anon_sym_end, STATE(11615), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449007] = 4, + [451096] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16273), 1, - anon_sym_end, + ACTIONS(16253), 1, + sym__constant_segment, STATE(11616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449021] = 4, + [451110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16275), 1, - anon_sym_end, + ACTIONS(16255), 1, + anon_sym_DASH_GT, STATE(11617), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449035] = 4, + [451124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16277), 1, - anon_sym_end, + ACTIONS(16257), 1, + anon_sym_DASH_GT, STATE(11618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449049] = 4, + [451138] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16279), 1, - anon_sym_DASH_GT, + ACTIONS(16259), 1, + anon_sym_RPAREN, STATE(11619), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449063] = 4, + [451152] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16281), 1, - anon_sym_DASH_GT, + ACTIONS(16261), 1, + sym__constant_segment, STATE(11620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449077] = 4, + [451166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16283), 1, - anon_sym_DASH_GT, + ACTIONS(16263), 1, + aux_sym_type_declaration_token1, STATE(11621), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [449091] = 4, + [451182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13045), 1, - anon_sym_RPAREN, + ACTIONS(16265), 1, + anon_sym_DASH_GT, STATE(11622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449105] = 4, + [451196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16285), 1, - anon_sym_DASH_GT, + ACTIONS(16267), 1, + anon_sym_RBRACK, STATE(11623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449119] = 4, + [451210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16287), 1, + ACTIONS(16269), 1, anon_sym_end, STATE(11624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449133] = 4, + [451224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16289), 1, - anon_sym_end, + ACTIONS(16271), 1, + anon_sym_DASH_GT, STATE(11625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449147] = 4, + [451238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16291), 1, - anon_sym_RBRACE, + ACTIONS(14851), 1, + anon_sym_end, STATE(11626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449161] = 4, + [451252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16293), 1, + ACTIONS(12229), 1, anon_sym_end, STATE(11627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449175] = 4, + [451266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16295), 1, - anon_sym_RBRACK, + ACTIONS(16273), 1, + anon_sym_RPAREN, STATE(11628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449189] = 4, + [451280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16297), 1, - anon_sym_DASH_GT, + ACTIONS(16275), 1, + anon_sym_PIPE, STATE(11629), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449203] = 4, + [451294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16299), 1, - anon_sym_DASH_GT, + ACTIONS(12243), 1, + anon_sym_end, STATE(11630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449217] = 4, + [451308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16301), 1, - anon_sym_end, + ACTIONS(16277), 1, + anon_sym_PIPE, STATE(11631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449231] = 4, + [451322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16303), 1, - anon_sym_DASH_GT, + ACTIONS(16279), 1, + anon_sym_end, STATE(11632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449245] = 4, + [451336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16305), 1, + ACTIONS(16281), 1, anon_sym_DASH_GT, STATE(11633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449259] = 4, + [451350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(307), 1, - anon_sym_COMMA, + ACTIONS(16283), 1, + anon_sym_DASH_GT, STATE(11634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449273] = 4, + [451364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16307), 1, - anon_sym_end, + ACTIONS(16285), 1, + anon_sym_EQ_GT, STATE(11635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449287] = 4, + [451378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13049), 1, + ACTIONS(13118), 1, anon_sym_RPAREN, STATE(11636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449301] = 4, + [451392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16309), 1, + ACTIONS(16287), 1, anon_sym_DASH_GT, STATE(11637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449315] = 4, + [451406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16311), 1, - anon_sym_end, + ACTIONS(16289), 1, + anon_sym_DASH_GT, STATE(11638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449329] = 4, + [451420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16313), 1, - anon_sym_DASH_GT, + ACTIONS(16291), 1, + anon_sym_end, STATE(11639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449343] = 4, + [451434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16315), 1, + ACTIONS(16293), 1, anon_sym_DASH_GT, STATE(11640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449357] = 4, + [451448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16317), 1, + ACTIONS(16295), 1, anon_sym_DASH_GT, STATE(11641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449371] = 4, + [451462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16319), 1, - anon_sym_RPAREN, + ACTIONS(16297), 1, + anon_sym_end, STATE(11642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449385] = 4, + [451476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16321), 1, + ACTIONS(16299), 1, anon_sym_end, STATE(11643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449399] = 4, + [451490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16323), 1, - anon_sym_SQUOTE2, + ACTIONS(16301), 1, + anon_sym_end, STATE(11644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449413] = 4, + [451504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16325), 1, - anon_sym_end, + ACTIONS(16303), 1, + anon_sym_DASH_GT, STATE(11645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449427] = 4, + [451518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16327), 1, + ACTIONS(16305), 1, anon_sym_DASH_GT, STATE(11646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449441] = 4, + [451532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16329), 1, - anon_sym_of, + ACTIONS(16307), 1, + anon_sym_RPAREN, STATE(11647), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449455] = 4, + [451546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16331), 1, - anon_sym_DASH_GT, + ACTIONS(16309), 1, + anon_sym_PIPE, STATE(11648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449469] = 4, + [451560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16333), 1, - anon_sym_end, + ACTIONS(16311), 1, + anon_sym_DASH_GT, STATE(11649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449483] = 4, + [451574] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13059), 1, - anon_sym_RPAREN, + ACTIONS(16313), 1, + anon_sym_PIPE, STATE(11650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449497] = 4, + [451588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16335), 1, + ACTIONS(16315), 1, anon_sym_DASH_GT, STATE(11651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449511] = 4, + [451602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16337), 1, - anon_sym_end, + ACTIONS(16317), 1, + anon_sym_DASH_GT, STATE(11652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449525] = 4, + [451616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16339), 1, - sym__constant_segment, + ACTIONS(16319), 1, + anon_sym_DASH_GT, STATE(11653), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449539] = 4, + [451630] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16341), 1, - anon_sym_end, + ACTIONS(13127), 1, + anon_sym_RPAREN, STATE(11654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449553] = 4, + [451644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16343), 1, - sym__constant_segment, + ACTIONS(16321), 1, + anon_sym_DASH_GT, STATE(11655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449567] = 4, + [451658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16345), 1, - anon_sym_DASH_GT, + ACTIONS(16323), 1, + anon_sym_EQ, STATE(11656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449581] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [451672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16347), 1, - aux_sym_type_declaration_token1, + ACTIONS(16325), 1, + anon_sym_DASH_GT, STATE(11657), 1, sym_heredoc_body, - [449597] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [451686] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16349), 1, - anon_sym_end, + ACTIONS(16327), 1, + anon_sym_DASH_GT, STATE(11658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449611] = 4, + [451700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16351), 1, - anon_sym_end, + ACTIONS(16329), 1, + anon_sym_DASH_GT, STATE(11659), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449625] = 4, + [451714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13063), 1, + ACTIONS(16331), 1, anon_sym_RPAREN, STATE(11660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449639] = 4, + [451728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16353), 1, + ACTIONS(16333), 1, anon_sym_DASH_GT, STATE(11661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449653] = 4, + [451742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16355), 1, - anon_sym_end, + ACTIONS(16335), 1, + anon_sym_SQUOTE2, STATE(11662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449667] = 4, + [451756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16357), 1, - anon_sym_end, + ACTIONS(16337), 1, + anon_sym_RBRACE, STATE(11663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449681] = 4, + [451770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12238), 1, - anon_sym_end, + ACTIONS(16339), 1, + anon_sym_RPAREN, STATE(11664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449695] = 4, + [451784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16359), 1, - anon_sym_end, + ACTIONS(16341), 1, + anon_sym_DASH_GT, STATE(11665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449709] = 4, + [451798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12240), 1, - anon_sym_end, + ACTIONS(16343), 1, + anon_sym_of, STATE(11666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449723] = 4, + [451812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16361), 1, + ACTIONS(16345), 1, anon_sym_DASH_GT, STATE(11667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449737] = 4, + [451826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13067), 1, + ACTIONS(13135), 1, anon_sym_RPAREN, STATE(11668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449751] = 4, + [451840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16363), 1, + ACTIONS(16347), 1, anon_sym_DASH_GT, STATE(11669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449765] = 4, + [451854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16365), 1, + ACTIONS(16349), 1, anon_sym_DASH_GT, STATE(11670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449779] = 4, + [451868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16367), 1, - anon_sym_DASH_GT, + ACTIONS(16351), 1, + anon_sym_EQ_GT, STATE(11671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449793] = 4, + [451882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16369), 1, - anon_sym_end, + ACTIONS(16353), 1, + sym__constant_segment, STATE(11672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449807] = 4, + [451896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16371), 1, - anon_sym_DASH_GT, + ACTIONS(16355), 1, + anon_sym_end, STATE(11673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449821] = 4, + [451910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16373), 1, + ACTIONS(16357), 1, anon_sym_DASH_GT, STATE(11674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449835] = 4, + [451924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16375), 1, - anon_sym_end, + ACTIONS(16359), 1, + anon_sym_DASH_GT, STATE(11675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449849] = 4, + [451938] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13075), 1, + ACTIONS(10194), 1, anon_sym_RPAREN, STATE(11676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449863] = 4, + [451952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16377), 1, - anon_sym_RPAREN, + ACTIONS(16361), 1, + anon_sym_DASH_GT, STATE(11677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449877] = 4, + [451966] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16379), 1, - anon_sym_EQ_GT, + ACTIONS(16363), 1, + anon_sym_DASH_GT, STATE(11678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449891] = 4, + [451980] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13079), 1, - anon_sym_RPAREN, + ACTIONS(16365), 1, + anon_sym_yield, STATE(11679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449905] = 4, + [451994] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16381), 1, - anon_sym_end, + ACTIONS(16367), 1, + anon_sym_DASH_GT, STATE(11680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449919] = 4, + [452008] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16383), 1, - anon_sym_RBRACE, + ACTIONS(16369), 1, + anon_sym_DASH_GT, STATE(11681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449933] = 4, + [452022] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13083), 1, + ACTIONS(13143), 1, anon_sym_RPAREN, STATE(11682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449947] = 4, + [452036] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12335), 1, - anon_sym_end, + ACTIONS(16371), 1, + anon_sym_DASH_GT, STATE(11683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449961] = 4, + [452050] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16385), 1, - anon_sym_end, + ACTIONS(16373), 1, + anon_sym_RPAREN, STATE(11684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449975] = 4, + [452064] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13087), 1, - anon_sym_RPAREN, + ACTIONS(16375), 1, + anon_sym_COMMA, STATE(11685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [449989] = 4, + [452078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16387), 1, - sym__constant_segment, + ACTIONS(16377), 1, + anon_sym_end, STATE(11686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450003] = 4, + [452092] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16389), 1, - anon_sym_RPAREN, + ACTIONS(16379), 1, + anon_sym_EQ_GT, STATE(11687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450017] = 4, + [452106] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13091), 1, - anon_sym_RPAREN, + ACTIONS(16381), 1, + anon_sym_DOT, STATE(11688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450031] = 4, + [452120] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16391), 1, - anon_sym_DASH_GT, + ACTIONS(16383), 1, + anon_sym_EQ_GT, STATE(11689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450045] = 4, + [452134] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16393), 1, - anon_sym_end, + ACTIONS(16385), 1, + sym__constant_segment, STATE(11690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450059] = 4, + [452148] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13095), 1, + ACTIONS(16387), 1, anon_sym_RPAREN, STATE(11691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450073] = 4, + [452162] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16395), 1, - sym__constant_segment, + ACTIONS(16389), 1, + anon_sym_DASH_GT, STATE(11692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450087] = 4, + [452176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16397), 1, - anon_sym_RPAREN, + ACTIONS(16391), 1, + aux_sym_type_declaration_token1, STATE(11693), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [450101] = 4, + [452192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13101), 1, - anon_sym_RPAREN, + ACTIONS(16393), 1, + anon_sym_end, STATE(11694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450115] = 4, + [452206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16399), 1, - sym_identifier, + ACTIONS(16395), 1, + anon_sym_RPAREN, STATE(11695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450129] = 4, + [452220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16401), 1, - anon_sym_end, + ACTIONS(13151), 1, + anon_sym_RPAREN, STATE(11696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450143] = 4, + [452234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13105), 1, - anon_sym_RPAREN, + ACTIONS(16397), 1, + anon_sym_end, STATE(11697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450157] = 4, + [452248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16403), 1, - anon_sym_end, + ACTIONS(16399), 1, + anon_sym_RBRACE, STATE(11698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450171] = 4, + [452262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16405), 1, + ACTIONS(16401), 1, anon_sym_end, STATE(11699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450185] = 4, + [452276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13109), 1, - anon_sym_RPAREN, + ACTIONS(16403), 1, + anon_sym_end, STATE(11700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450199] = 4, + [452290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16407), 1, - anon_sym_end, + ACTIONS(16405), 1, + anon_sym_RPAREN, STATE(11701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450213] = 4, + [452304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16409), 1, - anon_sym_RPAREN, + ACTIONS(16407), 1, + sym_identifier, STATE(11702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450227] = 4, + [452318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13113), 1, - anon_sym_RPAREN, + ACTIONS(16409), 1, + anon_sym_end, STATE(11703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450241] = 4, + [452332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16411), 1, - anon_sym_EQ_GT, + anon_sym_end, STATE(11704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450255] = 4, + [452346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16413), 1, - anon_sym_RBRACE, + sym__constant_segment, STATE(11705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450269] = 4, + [452360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13117), 1, + ACTIONS(13155), 1, anon_sym_RPAREN, STATE(11706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450283] = 4, + [452374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16415), 1, - anon_sym_DASH_GT, + anon_sym_end, STATE(11707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450297] = 4, + [452388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16417), 1, + ACTIONS(12283), 1, anon_sym_end, STATE(11708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450311] = 4, + [452402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13121), 1, - anon_sym_RPAREN, + ACTIONS(16417), 1, + anon_sym_end, STATE(11709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450325] = 4, + [452416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16419), 1, + ACTIONS(12285), 1, anon_sym_end, STATE(11710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450339] = 4, + [452430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16421), 1, - anon_sym_end, + ACTIONS(16419), 1, + sym__constant_segment, STATE(11711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450353] = 4, + [452444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13125), 1, - anon_sym_RPAREN, + ACTIONS(16421), 1, + sym_identifier, STATE(11712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450367] = 4, + [452458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16423), 1, - anon_sym_RPAREN, + anon_sym_end, STATE(11713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450381] = 4, + [452472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16425), 1, - anon_sym_end, + ACTIONS(13161), 1, + anon_sym_RPAREN, STATE(11714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450395] = 4, + [452486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16427), 1, - anon_sym_RPAREN, + ACTIONS(16425), 1, + anon_sym_end, STATE(11715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450409] = 4, + [452500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16429), 1, - anon_sym_of, + ACTIONS(16427), 1, + anon_sym_DASH_GT, STATE(11716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450423] = 4, + [452514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16431), 1, + ACTIONS(16429), 1, anon_sym_end, STATE(11717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450437] = 4, + [452528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13133), 1, - anon_sym_RPAREN, + ACTIONS(12305), 1, + anon_sym_end, STATE(11718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450451] = 4, + [452542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16433), 1, - anon_sym_class, + ACTIONS(16431), 1, + anon_sym_end, STATE(11719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450465] = 4, + [452556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16435), 1, + ACTIONS(16433), 1, anon_sym_end, STATE(11720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450479] = 4, + [452570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13137), 1, + ACTIONS(16435), 1, anon_sym_RPAREN, STATE(11721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450493] = 4, + [452584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16437), 1, + ACTIONS(13165), 1, anon_sym_RPAREN, STATE(11722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450507] = 4, + [452598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16439), 1, - anon_sym_end, + ACTIONS(16437), 1, + anon_sym_EQ_GT, STATE(11723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450521] = 4, + [452612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13141), 1, - anon_sym_RPAREN, + ACTIONS(16439), 1, + anon_sym_end, STATE(11724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450535] = 4, + [452626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16441), 1, - anon_sym_DOT, + ACTIONS(13171), 1, + anon_sym_RPAREN, STATE(11725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450549] = 4, + [452640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16443), 1, - anon_sym_of, + ACTIONS(16441), 1, + anon_sym_end, STATE(11726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450563] = 4, + [452654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12655), 1, - anon_sym_RPAREN, + ACTIONS(16443), 1, + anon_sym_end, STATE(11727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450577] = 4, + [452668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16445), 1, - anon_sym_yield, + ACTIONS(13175), 1, + anon_sym_RPAREN, STATE(11728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450591] = 4, + [452682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16447), 1, + ACTIONS(16445), 1, anon_sym_end, STATE(11729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450605] = 4, + [452696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13145), 1, + ACTIONS(13179), 1, anon_sym_RPAREN, STATE(11730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450619] = 4, + [452710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16449), 1, - anon_sym_end, + ACTIONS(16447), 1, + anon_sym_of, STATE(11731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450633] = 4, + [452724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16451), 1, - anon_sym_RPAREN, + ACTIONS(16449), 1, + anon_sym_end, STATE(11732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450647] = 4, + [452738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13149), 1, + ACTIONS(13183), 1, anon_sym_RPAREN, STATE(11733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450661] = 4, + [452752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16453), 1, - anon_sym_RPAREN, + ACTIONS(16451), 1, + anon_sym_end, STATE(11734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450675] = 4, + [452766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16455), 1, + ACTIONS(16453), 1, anon_sym_RPAREN, STATE(11735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450689] = 4, + [452780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13153), 1, + ACTIONS(13187), 1, anon_sym_RPAREN, STATE(11736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450703] = 4, + [452794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16457), 1, + ACTIONS(16455), 1, anon_sym_end, STATE(11737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450717] = 4, + [452808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16459), 1, - anon_sym_RPAREN, + ACTIONS(16457), 1, + anon_sym_DOT, STATE(11738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450731] = 4, + [452822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13157), 1, + ACTIONS(13191), 1, anon_sym_RPAREN, STATE(11739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450745] = 4, + [452836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16461), 1, + ACTIONS(16459), 1, anon_sym_end, STATE(11740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450759] = 4, + [452850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16463), 1, + ACTIONS(16461), 1, anon_sym_end, STATE(11741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450773] = 4, + [452864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13161), 1, + ACTIONS(13195), 1, anon_sym_RPAREN, STATE(11742), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450787] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [452878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16465), 1, - aux_sym_type_declaration_token1, + ACTIONS(16463), 1, + anon_sym_end, STATE(11743), 1, sym_heredoc_body, - [450803] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [452892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16467), 1, + ACTIONS(16465), 1, anon_sym_end, STATE(11744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450817] = 4, + [452906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16469), 1, - anon_sym_end, + ACTIONS(13199), 1, + anon_sym_RPAREN, STATE(11745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450831] = 4, + [452920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16471), 1, - anon_sym_RPAREN, + ACTIONS(16467), 1, + anon_sym_end, STATE(11746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450845] = 4, + [452934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16473), 1, - anon_sym_end, + ACTIONS(16469), 1, + anon_sym_EQ_GT, STATE(11747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450859] = 4, + [452948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16475), 1, - anon_sym_end, + ACTIONS(13203), 1, + anon_sym_RPAREN, STATE(11748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450873] = 4, + [452962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16477), 1, - anon_sym_RPAREN, + ACTIONS(16471), 1, + sym__constant_segment, STATE(11749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450887] = 4, + [452976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16479), 1, - anon_sym_end, + ACTIONS(16473), 1, + anon_sym_RBRACE, STATE(11750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450901] = 4, + [452990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16481), 1, - anon_sym_end, + ACTIONS(13207), 1, + anon_sym_RPAREN, STATE(11751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450915] = 4, + [453004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16483), 1, - anon_sym_end, + ACTIONS(16475), 1, + anon_sym_RBRACE, STATE(11752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450929] = 4, + [453018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16485), 1, - anon_sym_EQ_GT, + ACTIONS(16477), 1, + anon_sym_end, STATE(11753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450943] = 4, + [453032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16487), 1, - anon_sym_LPAREN, + ACTIONS(13211), 1, + anon_sym_RPAREN, STATE(11754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450957] = 4, + [453046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16489), 1, - anon_sym_LPAREN, + ACTIONS(16479), 1, + anon_sym_RPAREN, STATE(11755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450971] = 4, + [453060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16491), 1, - anon_sym_LPAREN, + ACTIONS(16481), 1, + anon_sym_RBRACK, STATE(11756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450985] = 4, + [453074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12250), 1, - anon_sym_end, + ACTIONS(13215), 1, + anon_sym_RPAREN, STATE(11757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [450999] = 4, + [453088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16493), 1, - anon_sym_RBRACE, + ACTIONS(16483), 1, + anon_sym_end, STATE(11758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451013] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [453102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16495), 1, - aux_sym_type_declaration_token1, + ACTIONS(16485), 1, + anon_sym_DASH_GT, STATE(11759), 1, sym_heredoc_body, - [451029] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [453116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12254), 1, - anon_sym_end, + ACTIONS(13219), 1, + anon_sym_RPAREN, STATE(11760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451043] = 4, + [453130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16497), 1, + ACTIONS(16487), 1, anon_sym_end, STATE(11761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451057] = 4, + [453144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16499), 1, - anon_sym_end, + ACTIONS(16489), 1, + anon_sym_SQUOTE2, STATE(11762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451071] = 4, + [453158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16501), 1, - anon_sym_end, + ACTIONS(13223), 1, + anon_sym_RPAREN, STATE(11763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451085] = 4, + [453172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16503), 1, - anon_sym_of, + ACTIONS(16491), 1, + anon_sym_RBRACK, STATE(11764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451099] = 4, + [453186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16505), 1, - anon_sym_end, + ACTIONS(16493), 1, + anon_sym_RPAREN, STATE(11765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451113] = 4, + [453200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16507), 1, + ACTIONS(13227), 1, anon_sym_RPAREN, STATE(11766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451127] = 4, + [453214] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16509), 1, - anon_sym_RPAREN, + ACTIONS(16495), 1, + aux_sym_type_declaration_token1, STATE(11767), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [451141] = 4, + [453230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16511), 1, - sym__constant_segment, + ACTIONS(16497), 1, + anon_sym_end, STATE(11768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451155] = 4, + [453244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16513), 1, - anon_sym_end, + ACTIONS(13231), 1, + anon_sym_RPAREN, STATE(11769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451169] = 4, + [453258] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16515), 1, - anon_sym_EQ, + ACTIONS(16499), 1, + anon_sym_of, STATE(11770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451183] = 4, + [453272] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16517), 1, + ACTIONS(12303), 1, anon_sym_end, STATE(11771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451197] = 4, + [453286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16519), 1, + ACTIONS(13235), 1, anon_sym_RPAREN, STATE(11772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451211] = 4, + [453300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16521), 1, - anon_sym_EQ_GT, + ACTIONS(16501), 1, + anon_sym_end, STATE(11773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451225] = 4, + [453314] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16523), 1, - anon_sym_end, + ACTIONS(16503), 1, + anon_sym_EQ_GT, STATE(11774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451239] = 4, + [453328] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16525), 1, + ACTIONS(13239), 1, anon_sym_RPAREN, STATE(11775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451253] = 4, + [453342] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16527), 1, - anon_sym_DASH_GT, + ACTIONS(16505), 1, + sym__constant_segment, STATE(11776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451267] = 4, + [453356] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16529), 1, - anon_sym_RPAREN, + ACTIONS(16507), 1, + anon_sym_yield, STATE(11777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451281] = 4, + [453370] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16531), 1, - anon_sym_COMMA, + ACTIONS(13243), 1, + anon_sym_RPAREN, STATE(11778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451295] = 4, + [453384] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16533), 1, - anon_sym_end, + ACTIONS(16509), 1, + anon_sym_EQ, STATE(11779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451309] = 4, + [453398] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16535), 1, - anon_sym_EQ_GT, + ACTIONS(16511), 1, + anon_sym_RPAREN, STATE(11780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451323] = 4, + [453412] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16537), 1, - anon_sym_end, + ACTIONS(13247), 1, + anon_sym_RPAREN, STATE(11781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451337] = 4, + [453426] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16539), 1, + ACTIONS(12360), 1, anon_sym_end, STATE(11782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451351] = 4, + [453440] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16541), 1, - anon_sym_EQ_GT, + ACTIONS(16513), 1, + anon_sym_RPAREN, STATE(11783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451365] = 4, + [453454] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16543), 1, - anon_sym_EQ_GT, + ACTIONS(13251), 1, + anon_sym_RPAREN, STATE(11784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451379] = 4, + [453468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16545), 1, - anon_sym_end, + ACTIONS(6035), 1, + anon_sym_COLON, STATE(11785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451393] = 4, + [453482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16547), 1, - anon_sym_end, + ACTIONS(16515), 1, + anon_sym_RBRACE, STATE(11786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451407] = 4, + [453496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16549), 1, - anon_sym_end, + ACTIONS(13255), 1, + anon_sym_RPAREN, STATE(11787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451421] = 4, + [453510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16551), 1, - anon_sym_RPAREN, + ACTIONS(16517), 1, + anon_sym_SQUOTE2, STATE(11788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451435] = 4, + [453524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16553), 1, - anon_sym_end, + ACTIONS(16519), 1, + aux_sym_type_declaration_token1, STATE(11789), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [451449] = 4, + [453540] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16555), 1, + ACTIONS(16521), 1, anon_sym_end, STATE(11790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451463] = 4, + [453554] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16557), 1, - anon_sym_end, + ACTIONS(16523), 1, + anon_sym_RPAREN, STATE(11791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451477] = 4, + [453568] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16559), 1, - anon_sym_end, + ACTIONS(16525), 1, + anon_sym_RPAREN, STATE(11792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451491] = 4, + [453582] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16561), 1, + ACTIONS(16527), 1, anon_sym_end, STATE(11793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451505] = 4, + [453596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16563), 1, - anon_sym_EQ_GT, + ACTIONS(16529), 1, + anon_sym_end, STATE(11794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451519] = 4, + [453610] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6961), 1, - anon_sym_COLON, + ACTIONS(16531), 1, + anon_sym_RBRACK, STATE(11795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451533] = 4, + [453624] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16565), 1, - anon_sym_class, + ACTIONS(16533), 1, + anon_sym_end, STATE(11796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451547] = 4, + [453638] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16567), 1, - anon_sym_RPAREN, + ACTIONS(16535), 1, + anon_sym_end, STATE(11797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451561] = 4, + [453652] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16569), 1, + ACTIONS(16537), 1, anon_sym_end, STATE(11798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451575] = 4, + [453666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16571), 1, - anon_sym_end, + ACTIONS(16539), 1, + anon_sym_LPAREN, STATE(11799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451589] = 4, + [453680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16573), 1, - anon_sym_RPAREN, + ACTIONS(16541), 1, + anon_sym_LPAREN, STATE(11800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451603] = 4, + [453694] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16575), 1, - anon_sym_end, + ACTIONS(16543), 1, + anon_sym_LPAREN, STATE(11801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451617] = 4, + [453708] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16577), 1, + ACTIONS(16545), 1, anon_sym_end, STATE(11802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451631] = 4, + [453722] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16579), 1, - anon_sym_end, + ACTIONS(13116), 1, + sym__constant_segment, STATE(11803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451645] = 4, + [453736] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12230), 1, - anon_sym_end, + ACTIONS(16547), 1, + anon_sym_RPAREN, STATE(11804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451659] = 4, + [453750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16581), 1, - anon_sym_PIPE, + ACTIONS(16549), 1, + anon_sym_end, STATE(11805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451673] = 4, + [453764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16583), 1, - anon_sym_end, + ACTIONS(16551), 1, + sym__constant_segment, STATE(11806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451687] = 4, + [453778] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16585), 1, - anon_sym_end, + ACTIONS(16553), 1, + anon_sym_RPAREN, STATE(11807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451701] = 4, + [453792] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16587), 1, - anon_sym_end, + ACTIONS(16555), 1, + anon_sym_EQ_GT, STATE(11808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451715] = 4, + [453806] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16589), 1, - anon_sym_end, + ACTIONS(16557), 1, + anon_sym_of, STATE(11809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451729] = 4, + [453820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16591), 1, + ACTIONS(12376), 1, anon_sym_end, STATE(11810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451743] = 4, + [453834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16593), 1, + ACTIONS(16559), 1, anon_sym_end, STATE(11811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451757] = 4, + [453848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16595), 1, + ACTIONS(16561), 1, anon_sym_end, STATE(11812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451771] = 4, + [453862] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16597), 1, - anon_sym_RPAREN, + ACTIONS(16563), 1, + anon_sym_end, STATE(11813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451785] = 4, + [453876] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16599), 1, - anon_sym_EQ_GT, + ACTIONS(16565), 1, + anon_sym_end, STATE(11814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451799] = 4, + [453890] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16601), 1, - anon_sym_end, + ACTIONS(16567), 1, + aux_sym_type_declaration_token1, STATE(11815), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [451813] = 4, + [453906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16603), 1, - anon_sym_end, + ACTIONS(16569), 1, + anon_sym_SQUOTE2, STATE(11816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451827] = 4, + [453920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16605), 1, - anon_sym_RPAREN, + ACTIONS(16571), 1, + anon_sym_end, STATE(11817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451841] = 4, + [453934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16607), 1, + ACTIONS(16573), 1, anon_sym_end, STATE(11818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451855] = 4, + [453948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16609), 1, - anon_sym_end, + ACTIONS(16575), 1, + anon_sym_EQ, STATE(11819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451869] = 4, + [453962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16611), 1, - anon_sym_RPAREN, + ACTIONS(16577), 1, + anon_sym_DASH_GT, STATE(11820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451883] = 4, + [453976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16613), 1, - anon_sym_end, + ACTIONS(16579), 1, + anon_sym_class, STATE(11821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451897] = 4, + [453990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16615), 1, - anon_sym_end, + ACTIONS(16581), 1, + anon_sym_RPAREN, STATE(11822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451911] = 4, + [454004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16617), 1, - anon_sym_end, + ACTIONS(16583), 1, + anon_sym_COMMA, STATE(11823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451925] = 4, + [454018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16619), 1, - anon_sym_RPAREN, + ACTIONS(16585), 1, + anon_sym_end, STATE(11824), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451939] = 4, + [454032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16621), 1, + ACTIONS(16587), 1, anon_sym_end, STATE(11825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451953] = 4, + [454046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16623), 1, - anon_sym_RBRACK, + ACTIONS(16589), 1, + anon_sym_end, STATE(11826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451967] = 4, + [454060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16625), 1, - anon_sym_end, + ACTIONS(16591), 1, + sym__constant_segment, STATE(11827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451981] = 4, + [454074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16627), 1, - anon_sym_end, + ACTIONS(16593), 1, + anon_sym_RPAREN, STATE(11828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [451995] = 4, + [454088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16629), 1, - anon_sym_RBRACK, + ACTIONS(16595), 1, + anon_sym_RPAREN, STATE(11829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452009] = 4, + [454102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16631), 1, - anon_sym_end, + ACTIONS(16597), 1, + anon_sym_RPAREN, STATE(11830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452023] = 4, + [454116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16633), 1, + ACTIONS(16599), 1, anon_sym_RPAREN, STATE(11831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452037] = 4, + [454130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16635), 1, - anon_sym_RPAREN, + ACTIONS(16601), 1, + anon_sym_yield, STATE(11832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452051] = 4, + [454144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16637), 1, - anon_sym_RPAREN, + ACTIONS(16603), 1, + anon_sym_EQ, STATE(11833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452065] = 4, + [454158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16639), 1, - anon_sym_RBRACK, + ACTIONS(12259), 1, + anon_sym_end, STATE(11834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452079] = 4, + [454172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16641), 1, + ACTIONS(16605), 1, anon_sym_end, STATE(11835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452093] = 4, + [454186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16643), 1, + ACTIONS(16607), 1, anon_sym_RPAREN, STATE(11836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452107] = 4, + [454200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16645), 1, - anon_sym_RPAREN, + ACTIONS(16609), 1, + anon_sym_EQ, STATE(11837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452121] = 4, + [454214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16647), 1, - anon_sym_EQ_GT, + ACTIONS(16611), 1, + anon_sym_RPAREN, STATE(11838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452135] = 4, + [454228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16649), 1, - anon_sym_RBRACE, + ACTIONS(16613), 1, + anon_sym_of, STATE(11839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452149] = 4, + [454242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16651), 1, + ACTIONS(12261), 1, anon_sym_end, STATE(11840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452163] = 4, + [454256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16653), 1, - anon_sym_end, + ACTIONS(16615), 1, + anon_sym_RPAREN, STATE(11841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452177] = 4, + [454270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16655), 1, - anon_sym_end, + ACTIONS(16617), 1, + anon_sym_RPAREN, STATE(11842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452191] = 4, + [454284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16657), 1, - anon_sym_DASH_GT, + ACTIONS(16619), 1, + anon_sym_end, STATE(11843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452205] = 4, + [454298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16659), 1, - anon_sym_RPAREN, + ACTIONS(16621), 1, + anon_sym_end, STATE(11844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452219] = 4, + [454312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16661), 1, - anon_sym_end, + ACTIONS(16623), 1, + anon_sym_class, STATE(11845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452233] = 4, + [454326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16663), 1, - anon_sym_end, + ACTIONS(16625), 1, + anon_sym_RPAREN, STATE(11846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452247] = 4, + [454340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16665), 1, - anon_sym_RPAREN, + ACTIONS(16627), 1, + anon_sym_end, STATE(11847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452261] = 4, + [454354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16667), 1, - anon_sym_EQ_GT, + ACTIONS(16629), 1, + anon_sym_RPAREN, STATE(11848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452275] = 4, + [454368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16669), 1, + ACTIONS(16631), 1, anon_sym_DASH_GT, STATE(11849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452289] = 4, + [454382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16671), 1, - anon_sym_end, + ACTIONS(16633), 1, + anon_sym_EQ, STATE(11850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452303] = 4, + [454396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16673), 1, + ACTIONS(16635), 1, anon_sym_end, STATE(11851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452317] = 4, + [454410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16675), 1, - anon_sym_end, + ACTIONS(16637), 1, + anon_sym_RPAREN, STATE(11852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452331] = 4, + [454424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16677), 1, + ACTIONS(16639), 1, anon_sym_end, STATE(11853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452345] = 4, + [454438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16679), 1, - anon_sym_RPAREN, + ACTIONS(16641), 1, + anon_sym_end, STATE(11854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452359] = 4, + [454452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16681), 1, - anon_sym_end, + ACTIONS(16643), 1, + anon_sym_EQ_GT, STATE(11855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452373] = 4, + [454466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16683), 1, + ACTIONS(16645), 1, anon_sym_end, STATE(11856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452387] = 4, + [454480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16685), 1, + ACTIONS(16647), 1, anon_sym_end, STATE(11857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452401] = 4, + [454494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16687), 1, - anon_sym_end, + ACTIONS(16649), 1, + anon_sym_EQ_GT, STATE(11858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452415] = 4, + [454508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16689), 1, + ACTIONS(16651), 1, anon_sym_end, STATE(11859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452429] = 4, + [454522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16691), 1, - anon_sym_end, + ACTIONS(16653), 1, + anon_sym_RBRACE, STATE(11860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452443] = 4, + [454536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16693), 1, - anon_sym_end, + ACTIONS(16655), 1, + anon_sym_EQ_GT, STATE(11861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452457] = 4, + [454550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16695), 1, + ACTIONS(16657), 1, anon_sym_end, STATE(11862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452471] = 4, + [454564] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16697), 1, + ACTIONS(16659), 1, anon_sym_end, STATE(11863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452485] = 4, + [454578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16699), 1, + ACTIONS(16661), 1, anon_sym_end, STATE(11864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452499] = 4, + [454592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16701), 1, + ACTIONS(16663), 1, anon_sym_end, STATE(11865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452513] = 4, + [454606] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16703), 1, + ACTIONS(16665), 1, anon_sym_end, STATE(11866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452527] = 4, + [454620] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16705), 1, - anon_sym_EQ, + ACTIONS(16667), 1, + anon_sym_PIPE, STATE(11867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452541] = 4, + [454634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16707), 1, - anon_sym_end, + ACTIONS(6229), 1, + anon_sym_RBRACK, STATE(11868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452555] = 4, + [454648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16709), 1, + ACTIONS(12327), 1, anon_sym_end, STATE(11869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452569] = 4, + [454662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16711), 1, - anon_sym_end, + ACTIONS(16669), 1, + anon_sym_EQ_GT, STATE(11870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452583] = 4, + [454676] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16713), 1, - anon_sym_end, + ACTIONS(16671), 1, + sym__constant_segment, STATE(11871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452597] = 4, + [454690] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16715), 1, + ACTIONS(16673), 1, anon_sym_end, STATE(11872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452611] = 4, + [454704] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16717), 1, - anon_sym_class, + ACTIONS(16675), 1, + anon_sym_end, STATE(11873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452625] = 4, + [454718] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16719), 1, - anon_sym_EQ_GT, + ACTIONS(16677), 1, + anon_sym_RPAREN, STATE(11874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452639] = 4, + [454732] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16721), 1, - anon_sym_end, + ACTIONS(16679), 1, + anon_sym_PIPE, STATE(11875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452653] = 4, + [454746] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16723), 1, - anon_sym_EQ_GT, + ACTIONS(16681), 1, + anon_sym_DASH_GT, STATE(11876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452667] = 4, + [454760] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16725), 1, - anon_sym_DASH_GT, + ACTIONS(16683), 1, + anon_sym_end, STATE(11877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452681] = 4, + [454774] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16727), 1, + ACTIONS(16685), 1, anon_sym_end, STATE(11878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452695] = 4, + [454788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16729), 1, + ACTIONS(16687), 1, anon_sym_end, STATE(11879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452709] = 4, + [454802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16731), 1, + ACTIONS(16689), 1, anon_sym_RPAREN, STATE(11880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452723] = 4, + [454816] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16733), 1, - anon_sym_end, + ACTIONS(16691), 1, + sym__constant_segment, STATE(11881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452737] = 4, + [454830] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16735), 1, - anon_sym_PIPE, + ACTIONS(16693), 1, + anon_sym_end, STATE(11882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452751] = 4, + [454844] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16737), 1, + ACTIONS(16695), 1, anon_sym_end, STATE(11883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452765] = 4, + [454858] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16739), 1, - anon_sym_end, + ACTIONS(16697), 1, + anon_sym_RBRACK, STATE(11884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452779] = 4, + [454872] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16741), 1, + ACTIONS(16699), 1, anon_sym_end, STATE(11885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452793] = 4, + [454886] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16743), 1, - anon_sym_RPAREN, + ACTIONS(16701), 1, + anon_sym_end, STATE(11886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452807] = 4, + [454900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16745), 1, - anon_sym_end, + ACTIONS(16703), 1, + aux_sym_type_declaration_token1, STATE(11887), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [452821] = 4, + [454916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16747), 1, - anon_sym_EQ_GT, + ACTIONS(16705), 1, + anon_sym_RPAREN, STATE(11888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452835] = 4, + [454930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16749), 1, - anon_sym_end, + ACTIONS(16707), 1, + anon_sym_EQ_GT, STATE(11889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452849] = 4, + [454944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16751), 1, - anon_sym_EQ_GT, + ACTIONS(16709), 1, + anon_sym_end, STATE(11890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452863] = 4, + [454958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16753), 1, - anon_sym_PIPE, + ACTIONS(16711), 1, + anon_sym_DASH_GT, STATE(11891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452877] = 4, + [454972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16755), 1, + ACTIONS(12331), 1, anon_sym_end, STATE(11892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452891] = 4, + [454986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16757), 1, + ACTIONS(16713), 1, anon_sym_end, STATE(11893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452905] = 4, + [455000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16759), 1, - anon_sym_RPAREN, + ACTIONS(16715), 1, + anon_sym_end, STATE(11894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452919] = 4, + [455014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16761), 1, + ACTIONS(16717), 1, anon_sym_end, STATE(11895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452933] = 4, + [455028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16763), 1, + ACTIONS(16719), 1, anon_sym_end, STATE(11896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452947] = 4, + [455042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16765), 1, - anon_sym_end, + ACTIONS(16721), 1, + anon_sym_RBRACE, STATE(11897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452961] = 4, + [455056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16767), 1, - anon_sym_RPAREN, + ACTIONS(16723), 1, + anon_sym_end, STATE(11898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452975] = 4, + [455070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16769), 1, - anon_sym_end, + ACTIONS(16725), 1, + anon_sym_RPAREN, STATE(11899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [452989] = 4, + [455084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16771), 1, - anon_sym_RBRACE, + ACTIONS(16727), 1, + anon_sym_RPAREN, STATE(11900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453003] = 4, + [455098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16773), 1, - anon_sym_SQUOTE2, + ACTIONS(16729), 1, + anon_sym_end, STATE(11901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453017] = 4, + [455112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16775), 1, - anon_sym_end, + ACTIONS(16731), 1, + anon_sym_EQ_GT, STATE(11902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453031] = 4, + [455126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16777), 1, - anon_sym_RPAREN, + ACTIONS(16733), 1, + anon_sym_class, STATE(11903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453045] = 4, + [455140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16779), 1, - anon_sym_end, + ACTIONS(16735), 1, + anon_sym_RPAREN, STATE(11904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453059] = 4, + [455154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16781), 1, - anon_sym_SQUOTE2, + ACTIONS(16737), 1, + anon_sym_end, STATE(11905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453073] = 4, + [455168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16783), 1, - anon_sym_EQ_GT, + ACTIONS(16739), 1, + anon_sym_RPAREN, STATE(11906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453087] = 4, + [455182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16785), 1, + ACTIONS(16741), 1, anon_sym_end, STATE(11907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453101] = 4, + [455196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16787), 1, - anon_sym_of, + ACTIONS(16743), 1, + anon_sym_end, STATE(11908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453115] = 4, + [455210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16789), 1, - anon_sym_RBRACE, + ACTIONS(16745), 1, + anon_sym_RPAREN, STATE(11909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453129] = 4, + [455224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16791), 1, + ACTIONS(16747), 1, anon_sym_end, STATE(11910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453143] = 4, + [455238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16793), 1, - anon_sym_end, + ACTIONS(16749), 1, + anon_sym_RPAREN, STATE(11911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453157] = 4, + [455252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16795), 1, - anon_sym_of, + ACTIONS(16751), 1, + anon_sym_LPAREN, STATE(11912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453171] = 4, + [455266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16797), 1, - anon_sym_RPAREN, + ACTIONS(16753), 1, + anon_sym_end, STATE(11913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453185] = 4, + [455280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16799), 1, - anon_sym_end, + ACTIONS(12930), 1, + anon_sym_RPAREN, STATE(11914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453199] = 4, + [455294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16801), 1, - sym__constant_segment, + ACTIONS(16755), 1, + anon_sym_RPAREN, STATE(11915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453213] = 4, + [455308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16803), 1, - anon_sym_DOT, + ACTIONS(16757), 1, + anon_sym_EQ_GT, STATE(11916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453227] = 4, + [455322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16805), 1, - sym__constant_segment, + ACTIONS(16759), 1, + anon_sym_end, STATE(11917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453241] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [455336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16807), 1, - aux_sym_type_declaration_token1, + ACTIONS(16761), 1, + anon_sym_yield, STATE(11918), 1, sym_heredoc_body, - [453257] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16809), 1, + ACTIONS(16763), 1, anon_sym_RPAREN, STATE(11919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453271] = 4, + [455364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16811), 1, - anon_sym_end, + ACTIONS(16765), 1, + anon_sym_EQ_GT, STATE(11920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453285] = 4, + [455378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12779), 1, - sym__constant_segment, + ACTIONS(16767), 1, + anon_sym_RBRACE, STATE(11921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453299] = 4, + [455392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16813), 1, - anon_sym_end, + ACTIONS(16769), 1, + anon_sym_DASH_GT, STATE(11922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453313] = 4, + [455406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16815), 1, - anon_sym_DASH_GT, + ACTIONS(16771), 1, + anon_sym_RPAREN, STATE(11923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453327] = 4, + [455420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16817), 1, - anon_sym_EQ_GT, + ACTIONS(16773), 1, + anon_sym_RPAREN, STATE(11924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453341] = 4, + [455434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16819), 1, + ACTIONS(16775), 1, anon_sym_RPAREN, STATE(11925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453355] = 4, + [455448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16821), 1, + ACTIONS(16777), 1, anon_sym_RPAREN, STATE(11926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453369] = 4, + [455462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16823), 1, - sym__constant_segment, + ACTIONS(16779), 1, + anon_sym_end, STATE(11927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453383] = 4, + [455476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12218), 1, + ACTIONS(16781), 1, anon_sym_end, STATE(11928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453397] = 4, + [455490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16825), 1, - anon_sym_SQUOTE2, + ACTIONS(16783), 1, + anon_sym_RPAREN, STATE(11929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453411] = 4, + [455504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16827), 1, + ACTIONS(16785), 1, anon_sym_end, STATE(11930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453425] = 4, + [455518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12220), 1, - anon_sym_end, + ACTIONS(16787), 1, + anon_sym_EQ_GT, STATE(11931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453439] = 4, + [455532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16829), 1, - anon_sym_RPAREN, + ACTIONS(16789), 1, + anon_sym_end, STATE(11932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453453] = 4, + [455546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16831), 1, - anon_sym_EQ, + ACTIONS(16791), 1, + anon_sym_RPAREN, STATE(11933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453467] = 4, + [455560] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16793), 1, + anon_sym_SQUOTE2, + STATE(11934), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455574] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16795), 1, + anon_sym_end, + STATE(11935), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455588] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16797), 1, + anon_sym_end, + STATE(11936), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455602] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16799), 1, + anon_sym_end, + STATE(11937), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455616] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16801), 1, + anon_sym_end, + STATE(11938), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455630] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16803), 1, + anon_sym_RPAREN, + STATE(11939), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455644] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16805), 1, + anon_sym_end, + STATE(11940), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455658] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16807), 1, + anon_sym_end, + STATE(11941), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455672] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16809), 1, + anon_sym_EQ_GT, + STATE(11942), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455686] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16811), 1, + anon_sym_DASH_GT, + STATE(11943), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455700] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16813), 1, + anon_sym_end, + STATE(11944), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455714] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16815), 1, + anon_sym_RPAREN, + STATE(11945), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455728] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16817), 1, + anon_sym_end, + STATE(11946), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455742] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16819), 1, + anon_sym_end, + STATE(11947), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455756] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16821), 1, + anon_sym_end, + STATE(11948), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455770] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16823), 1, + anon_sym_end, + STATE(11949), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455784] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16825), 1, + anon_sym_end, + STATE(11950), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455798] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16827), 1, + anon_sym_RPAREN, + STATE(11951), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455812] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16829), 1, + anon_sym_EQ_GT, + STATE(11952), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12847), 1, - anon_sym_RPAREN, - STATE(11934), 1, + ACTIONS(16831), 1, + anon_sym_DASH_GT, + STATE(11953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453481] = 4, + [455840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16833), 1, - anon_sym_DASH_GT, - STATE(11935), 1, + anon_sym_end, + STATE(11954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453495] = 4, + [455854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16835), 1, - sym__constant_segment, - STATE(11936), 1, + anon_sym_end, + STATE(11955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453509] = 4, + [455868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16837), 1, anon_sym_end, - STATE(11937), 1, + STATE(11956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453523] = 4, + [455882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16839), 1, anon_sym_RPAREN, - STATE(11938), 1, + STATE(11957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453537] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [455896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16841), 1, - aux_sym_type_declaration_token1, - STATE(11939), 1, + anon_sym_end, + STATE(11958), 1, sym_heredoc_body, - [453553] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16843), 1, anon_sym_end, - STATE(11940), 1, + STATE(11959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453567] = 4, + [455924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16845), 1, - anon_sym_EQ_GT, - STATE(11941), 1, + anon_sym_of, + STATE(11960), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [455938] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12354), 1, + anon_sym_end, + STATE(11961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453581] = 4, + [455952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16847), 1, - anon_sym_EQ_GT, - STATE(11942), 1, + anon_sym_end, + STATE(11962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453595] = 4, + [455966] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16849), 1, anon_sym_RPAREN, - STATE(11943), 1, + STATE(11963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453609] = 4, + [455980] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16851), 1, - anon_sym_yield, - STATE(11944), 1, + anon_sym_end, + STATE(11964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453623] = 4, + [455994] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16853), 1, - anon_sym_DASH_GT, - STATE(11945), 1, + anon_sym_end, + STATE(11965), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [456008] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12362), 1, + anon_sym_end, + STATE(11966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453637] = 4, + [456022] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16855), 1, - sym__constant_segment, - STATE(11946), 1, + anon_sym_RPAREN, + STATE(11967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453651] = 4, + [456036] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16857), 1, - anon_sym_RPAREN, - STATE(11947), 1, + anon_sym_end, + STATE(11968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453665] = 4, + [456050] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16859), 1, anon_sym_end, - STATE(11948), 1, + STATE(11969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453679] = 4, + [456064] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16861), 1, - anon_sym_end, - STATE(11949), 1, + ACTIONS(12715), 1, + sym__constant_segment, + STATE(11970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453693] = 4, + [456078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6235), 1, - anon_sym_RBRACK, - STATE(11950), 1, + ACTIONS(16861), 1, + anon_sym_end, + STATE(11971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453707] = 4, + [456092] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16863), 1, - anon_sym_EQ_GT, - STATE(11951), 1, + anon_sym_end, + STATE(11972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453721] = 4, + [456106] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16865), 1, - anon_sym_RBRACE, - STATE(11952), 1, + anon_sym_end, + STATE(11973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453735] = 4, + [456120] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16867), 1, anon_sym_end, - STATE(11953), 1, + STATE(11974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453749] = 4, + [456134] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16869), 1, - anon_sym_end, - STATE(11954), 1, + anon_sym_SQUOTE2, + STATE(11975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453763] = 4, + [456148] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16871), 1, anon_sym_end, - STATE(11955), 1, + STATE(11976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453777] = 4, + [456162] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16873), 1, - anon_sym_RBRACK, - STATE(11956), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [453791] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12329), 1, anon_sym_end, - STATE(11957), 1, + STATE(11977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453805] = 4, + [456176] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16875), 1, - anon_sym_RPAREN, - STATE(11958), 1, + anon_sym_end, + STATE(11978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453819] = 4, + [456190] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16877), 1, - anon_sym_EQ_GT, - STATE(11959), 1, + anon_sym_end, + STATE(11979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453833] = 4, + [456204] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16879), 1, - anon_sym_RPAREN, - STATE(11960), 1, + anon_sym_end, + STATE(11980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453847] = 4, + [456218] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16881), 1, - anon_sym_of, - STATE(11961), 1, + sym__constant_segment, + STATE(11981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453861] = 4, + [456232] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16883), 1, anon_sym_end, - STATE(11962), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [453875] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12348), 1, - anon_sym_end, - STATE(11963), 1, + STATE(11982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453889] = 4, + [456246] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16885), 1, - anon_sym_class, - STATE(11964), 1, + anon_sym_end, + STATE(11983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453903] = 4, + [456260] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16887), 1, - anon_sym_RPAREN, - STATE(11965), 1, + anon_sym_end, + STATE(11984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453917] = 4, + [456274] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16889), 1, anon_sym_end, - STATE(11966), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [453931] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10141), 1, - anon_sym_RPAREN, - STATE(11967), 1, + STATE(11985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453945] = 4, + [456288] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16891), 1, - anon_sym_LPAREN, - STATE(11968), 1, + anon_sym_EQ_GT, + STATE(11986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453959] = 4, + [456302] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16893), 1, - anon_sym_RPAREN, - STATE(11969), 1, + anon_sym_EQ_GT, + STATE(11987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453973] = 4, + [456316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16895), 1, - anon_sym_yield, - STATE(11970), 1, + anon_sym_end, + STATE(11988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [453987] = 4, + [456330] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16897), 1, - anon_sym_RPAREN, - STATE(11971), 1, + anon_sym_end, + STATE(11989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454001] = 4, + [456344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16899), 1, - anon_sym_RPAREN, - STATE(11972), 1, + anon_sym_end, + STATE(11990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454015] = 4, + [456358] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16901), 1, - anon_sym_RPAREN, - STATE(11973), 1, + anon_sym_end, + STATE(11991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454029] = 4, + [456372] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16903), 1, - anon_sym_RPAREN, - STATE(11974), 1, + aux_sym_type_declaration_token1, + STATE(11992), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [454043] = 4, + [456388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16905), 1, - anon_sym_RPAREN, - STATE(11975), 1, + anon_sym_end, + STATE(11993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454057] = 4, + [456402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16907), 1, anon_sym_RPAREN, - STATE(11976), 1, + STATE(11994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454071] = 4, + [456416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16909), 1, - anon_sym_end, - STATE(11977), 1, + anon_sym_RPAREN, + STATE(11995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454085] = 4, + [456430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16911), 1, anon_sym_RPAREN, - STATE(11978), 1, + STATE(11996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454099] = 4, + [456444] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12241), 1, + anon_sym_end, + STATE(11997), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [456458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16913), 1, - anon_sym_RPAREN, - STATE(11979), 1, + anon_sym_RBRACK, + STATE(11998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454113] = 4, + [456472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16915), 1, - anon_sym_EQ, - STATE(11980), 1, + anon_sym_end, + STATE(11999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454127] = 4, + [456486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16917), 1, - anon_sym_end, - STATE(11981), 1, + anon_sym_SQUOTE2, + STATE(12000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454141] = 4, + [456500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16919), 1, anon_sym_end, - STATE(11982), 1, + STATE(12001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454155] = 4, + [456514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16921), 1, - sym__constant_segment, - STATE(11983), 1, + anon_sym_end, + STATE(12002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454169] = 4, + [456528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16923), 1, - anon_sym_COLON, - STATE(11984), 1, + anon_sym_DASH_GT, + STATE(12003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454183] = 4, + [456542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16925), 1, anon_sym_end, - STATE(11985), 1, + STATE(12004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454197] = 4, + [456556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12246), 1, - anon_sym_end, - STATE(11986), 1, + ACTIONS(16927), 1, + anon_sym_of, + STATE(12005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454211] = 4, + [456570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16927), 1, - anon_sym_EQ, - STATE(11987), 1, + ACTIONS(16929), 1, + anon_sym_end, + STATE(12006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454225] = 4, + [456584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16929), 1, - sym__constant_segment, - STATE(11988), 1, + ACTIONS(12408), 1, + anon_sym_end, + STATE(12007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454239] = 4, + [456598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16931), 1, - sym_identifier, - STATE(11989), 1, + anon_sym_end, + STATE(12008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454253] = 4, + [456612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16933), 1, anon_sym_end, - STATE(11990), 1, + STATE(12009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454267] = 4, + [456626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16935), 1, anon_sym_RPAREN, - STATE(11991), 1, + STATE(12010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454281] = 4, + [456640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16937), 1, anon_sym_end, - STATE(11992), 1, + STATE(12011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454295] = 4, + [456654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16939), 1, anon_sym_end, - STATE(11993), 1, + STATE(12012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454309] = 4, + [456668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16941), 1, anon_sym_end, - STATE(11994), 1, + STATE(12013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454323] = 4, + [456682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16943), 1, - anon_sym_yield, - STATE(11995), 1, + anon_sym_end, + STATE(12014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454337] = 4, + [456696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16945), 1, anon_sym_end, - STATE(11996), 1, + STATE(12015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454351] = 4, + [456710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16947), 1, anon_sym_end, - STATE(11997), 1, + STATE(12016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454365] = 4, + [456724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16949), 1, - anon_sym_RPAREN, - STATE(11998), 1, + sym__constant_segment, + STATE(12017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454379] = 4, + [456738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16951), 1, + ACTIONS(12772), 1, + sym__constant_segment, + STATE(12018), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [456752] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12412), 1, anon_sym_end, - STATE(11999), 1, + STATE(12019), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [456766] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16951), 1, + anon_sym_EQ_GT, + STATE(12020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454393] = 4, + [456780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16953), 1, - anon_sym_end, - STATE(12000), 1, + anon_sym_RPAREN, + STATE(12021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454407] = 4, + [456794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16955), 1, - anon_sym_RBRACE, - STATE(12001), 1, + anon_sym_end, + STATE(12022), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [456808] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12366), 1, + anon_sym_end, + STATE(12023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454421] = 4, + [456822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16957), 1, anon_sym_end, - STATE(12002), 1, + STATE(12024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454435] = 4, + [456836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16959), 1, - anon_sym_end, - STATE(12003), 1, + anon_sym_RPAREN, + STATE(12025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454449] = 4, + [456850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16961), 1, - anon_sym_RPAREN, - STATE(12004), 1, + anon_sym_SQUOTE2, + STATE(12026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454463] = 4, + [456864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16963), 1, - anon_sym_EQ_GT, - STATE(12005), 1, + anon_sym_end, + STATE(12027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454477] = 4, + [456878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16965), 1, - anon_sym_end, - STATE(12006), 1, + anon_sym_PIPE, + STATE(12028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454491] = 4, + [456892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16967), 1, - anon_sym_end, - STATE(12007), 1, + anon_sym_of, + STATE(12029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454505] = 4, + [456906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16969), 1, - anon_sym_end, - STATE(12008), 1, + anon_sym_RPAREN, + STATE(12030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454519] = 4, + [456920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16971), 1, anon_sym_end, - STATE(12009), 1, + STATE(12031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454533] = 4, + [456934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16973), 1, anon_sym_end, - STATE(12010), 1, + STATE(12032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454547] = 4, + [456948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16975), 1, anon_sym_end, - STATE(12011), 1, + STATE(12033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454561] = 4, + [456962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16977), 1, - anon_sym_RPAREN, - STATE(12012), 1, + anon_sym_DOT, + STATE(12034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454575] = 4, + [456976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16979), 1, - anon_sym_yield, - STATE(12013), 1, + anon_sym_RPAREN, + STATE(12035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454589] = 4, + [456990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16981), 1, - anon_sym_COLON, - STATE(12014), 1, + anon_sym_end, + STATE(12036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454603] = 4, + [457004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16983), 1, anon_sym_end, - STATE(12015), 1, + STATE(12037), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [457018] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5909), 1, + anon_sym_COLON, + STATE(12038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454617] = 4, + [457032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16985), 1, - anon_sym_RPAREN, - STATE(12016), 1, + anon_sym_end, + STATE(12039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454631] = 4, + [457046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16987), 1, anon_sym_end, - STATE(12017), 1, + STATE(12040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454645] = 4, + [457060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16989), 1, - anon_sym_LPAREN, - STATE(12018), 1, + sym__constant_segment, + STATE(12041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454659] = 4, + [457074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16991), 1, - anon_sym_RPAREN, - STATE(12019), 1, + anon_sym_end, + STATE(12042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454673] = 4, + [457088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16993), 1, - anon_sym_end, - STATE(12020), 1, + aux_sym_type_declaration_token1, + STATE(12043), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [454687] = 4, + [457104] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16995), 1, anon_sym_end, - STATE(12021), 1, + STATE(12044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454701] = 4, + [457118] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16997), 1, - anon_sym_end, - STATE(12022), 1, + anon_sym_RPAREN, + STATE(12045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454715] = 4, + [457132] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(16999), 1, anon_sym_end, - STATE(12023), 1, + STATE(12046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454729] = 4, + [457146] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17001), 1, - anon_sym_RPAREN, - STATE(12024), 1, + anon_sym_end, + STATE(12047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454743] = 4, + [457160] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17003), 1, - anon_sym_end, - STATE(12025), 1, + anon_sym_of, + STATE(12048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454757] = 4, + [457174] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17005), 1, - anon_sym_DOT, - STATE(12026), 1, + anon_sym_class, + STATE(12049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454771] = 4, + [457188] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17007), 1, anon_sym_RPAREN, - STATE(12027), 1, + STATE(12050), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [457202] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(307), 1, + anon_sym_COMMA, + STATE(12051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454785] = 4, + [457216] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17009), 1, anon_sym_end, - STATE(12028), 1, + STATE(12052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454799] = 4, + [457230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17011), 1, - sym__constant_segment, - STATE(12029), 1, + anon_sym_end, + STATE(12053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454813] = 4, + [457244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17013), 1, anon_sym_end, - STATE(12030), 1, + STATE(12054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454827] = 4, + [457258] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17015), 1, anon_sym_end, - STATE(12031), 1, + STATE(12055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454841] = 4, + [457272] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17017), 1, - anon_sym_RPAREN, - STATE(12032), 1, + anon_sym_end, + STATE(12056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454855] = 4, + [457286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17019), 1, - anon_sym_class, - STATE(12033), 1, + anon_sym_end, + STATE(12057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454869] = 4, + [457300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17021), 1, anon_sym_end, - STATE(12034), 1, + STATE(12058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454883] = 4, + [457314] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17023), 1, anon_sym_end, - STATE(12035), 1, + STATE(12059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454897] = 4, + [457328] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17025), 1, - anon_sym_RPAREN, - STATE(12036), 1, + anon_sym_class, + STATE(12060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454911] = 4, + [457342] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17027), 1, anon_sym_end, - STATE(12037), 1, + STATE(12061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454925] = 4, + [457356] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17029), 1, + ACTIONS(12344), 1, anon_sym_end, - STATE(12038), 1, + STATE(12062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [457370] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17031), 1, - aux_sym_type_declaration_token1, - STATE(12039), 1, + ACTIONS(17029), 1, + anon_sym_RPAREN, + STATE(12063), 1, sym_heredoc_body, - [454955] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [457384] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17033), 1, - anon_sym_EQ_GT, - STATE(12040), 1, + ACTIONS(17031), 1, + anon_sym_end, + STATE(12064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454969] = 4, + [457398] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12327), 1, + ACTIONS(17033), 1, anon_sym_end, - STATE(12041), 1, + STATE(12065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454983] = 4, + [457412] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17035), 1, anon_sym_end, - STATE(12042), 1, + STATE(12066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [454997] = 4, + [457426] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17037), 1, - anon_sym_RBRACK, - STATE(12043), 1, + anon_sym_RBRACE, + STATE(12067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455011] = 4, + [457440] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17039), 1, - anon_sym_DASH_GT, - STATE(12044), 1, + anon_sym_RPAREN, + STATE(12068), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [457454] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(729), 1, + aux_sym_top_level_fun_def_token1, + STATE(12069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455025] = 4, + [457468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17041), 1, anon_sym_end, - STATE(12045), 1, + STATE(12070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455039] = 4, + [457482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17043), 1, - anon_sym_RPAREN, - STATE(12046), 1, + anon_sym_end, + STATE(12071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455053] = 4, + [457496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17045), 1, anon_sym_end, - STATE(12047), 1, + STATE(12072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455067] = 4, + [457510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17047), 1, + ACTIONS(12352), 1, anon_sym_end, - STATE(12048), 1, + STATE(12073), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [457524] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17047), 1, + anon_sym_RPAREN, + STATE(12074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455081] = 4, + [457538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17049), 1, anon_sym_end, - STATE(12049), 1, + STATE(12075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455095] = 4, + [457552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17051), 1, - anon_sym_end, - STATE(12050), 1, + anon_sym_RBRACK, + STATE(12076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455109] = 4, + [457566] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17053), 1, anon_sym_end, - STATE(12051), 1, + STATE(12077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455123] = 4, + [457580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17055), 1, anon_sym_end, - STATE(12052), 1, + STATE(12078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455137] = 4, + [457594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17057), 1, anon_sym_end, - STATE(12053), 1, + STATE(12079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455151] = 4, + [457608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17059), 1, anon_sym_end, - STATE(12054), 1, + STATE(12080), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455165] = 4, + [457622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17061), 1, anon_sym_end, - STATE(12055), 1, + STATE(12081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455179] = 4, + [457636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17063), 1, anon_sym_end, - STATE(12056), 1, + STATE(12082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455193] = 4, + [457650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17065), 1, - anon_sym_EQ_GT, - STATE(12057), 1, + anon_sym_of, + STATE(12083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455207] = 4, + [457664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17067), 1, + ACTIONS(12358), 1, anon_sym_end, - STATE(12058), 1, + STATE(12084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455221] = 4, + [457678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17069), 1, - anon_sym_end, - STATE(12059), 1, + ACTIONS(17067), 1, + anon_sym_yield, + STATE(12085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455235] = 4, + [457692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17071), 1, - anon_sym_end, - STATE(12060), 1, + ACTIONS(17069), 1, + anon_sym_SQUOTE2, + STATE(12086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455249] = 4, + [457706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17073), 1, - anon_sym_end, - STATE(12061), 1, + ACTIONS(17071), 1, + anon_sym_RPAREN, + STATE(12087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455263] = 4, + [457720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17075), 1, - anon_sym_RPAREN, - STATE(12062), 1, + ACTIONS(17073), 1, + anon_sym_end, + STATE(12088), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455277] = 4, + [457734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12356), 1, + ACTIONS(17075), 1, anon_sym_end, - STATE(12063), 1, + STATE(12089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455291] = 4, + [457748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17077), 1, - anon_sym_EQ_GT, - STATE(12064), 1, + anon_sym_RPAREN, + STATE(12090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455305] = 4, + [457762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17079), 1, anon_sym_end, - STATE(12065), 1, + STATE(12091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455319] = 4, + [457776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17081), 1, anon_sym_end, - STATE(12066), 1, + STATE(12092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455333] = 4, + [457790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17083), 1, - anon_sym_RBRACK, - STATE(12067), 1, + anon_sym_end, + STATE(12093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455347] = 4, + [457804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17085), 1, anon_sym_end, - STATE(12068), 1, + STATE(12094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455361] = 4, + [457818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17087), 1, anon_sym_end, - STATE(12069), 1, + STATE(12095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455375] = 4, + [457832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17089), 1, - anon_sym_end, - STATE(12070), 1, + anon_sym_EQ_GT, + STATE(12096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455389] = 4, + [457846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17091), 1, - anon_sym_RPAREN, - STATE(12071), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [455403] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12358), 1, - anon_sym_end, - STATE(12072), 1, + anon_sym_RBRACE, + STATE(12097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455417] = 4, + [457860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17093), 1, - sym__constant_segment, - STATE(12073), 1, + anon_sym_RPAREN, + STATE(12098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455431] = 4, + [457874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17095), 1, - anon_sym_LPAREN, - STATE(12074), 1, + anon_sym_end, + STATE(12099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455445] = 4, + [457888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17097), 1, - anon_sym_LPAREN, - STATE(12075), 1, + anon_sym_end, + STATE(12100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455459] = 4, + [457902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17099), 1, - anon_sym_LPAREN, - STATE(12076), 1, + anon_sym_DASH_GT, + STATE(12101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455473] = 4, + [457916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17101), 1, anon_sym_RPAREN, - STATE(12077), 1, + STATE(12102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455487] = 4, + [457930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17103), 1, anon_sym_RPAREN, - STATE(12078), 1, + STATE(12103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455501] = 4, + [457944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17105), 1, anon_sym_end, - STATE(12079), 1, + STATE(12104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455515] = 4, + [457958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17107), 1, - anon_sym_of, - STATE(12080), 1, + anon_sym_end, + STATE(12105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455529] = 4, + [457972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17109), 1, - anon_sym_EQ_GT, - STATE(12081), 1, + anon_sym_end, + STATE(12106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455543] = 4, + [457986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17111), 1, - anon_sym_EQ_GT, - STATE(12082), 1, + anon_sym_end, + STATE(12107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455557] = 4, + [458000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17113), 1, - anon_sym_RBRACE, - STATE(12083), 1, + anon_sym_end, + STATE(12108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455571] = 4, + [458014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17115), 1, - anon_sym_COMMA, - STATE(12084), 1, + anon_sym_end, + STATE(12109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455585] = 4, + [458028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17117), 1, anon_sym_end, - STATE(12085), 1, + STATE(12110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455599] = 4, + [458042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17119), 1, anon_sym_end, - STATE(12086), 1, + STATE(12111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455613] = 4, + [458056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17121), 1, - anon_sym_RPAREN, - STATE(12087), 1, + anon_sym_EQ_GT, + STATE(12112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455627] = 4, + [458070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17123), 1, anon_sym_end, - STATE(12088), 1, + STATE(12113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455641] = 4, + [458084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17125), 1, - anon_sym_end, - STATE(12089), 1, + anon_sym_RPAREN, + STATE(12114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455655] = 4, + [458098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17127), 1, - anon_sym_DASH_GT, - STATE(12090), 1, + anon_sym_RPAREN, + STATE(12115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455669] = 4, + [458112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17129), 1, anon_sym_RPAREN, - STATE(12091), 1, + STATE(12116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455683] = 4, + [458126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17131), 1, - sym__constant_segment, - STATE(12092), 1, + anon_sym_end, + STATE(12117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455697] = 4, + [458140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17133), 1, anon_sym_end, - STATE(12093), 1, + STATE(12118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455711] = 4, + [458154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17135), 1, anon_sym_end, - STATE(12094), 1, + STATE(12119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455725] = 4, + [458168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17137), 1, - anon_sym_RPAREN, - STATE(12095), 1, + anon_sym_LPAREN, + STATE(12120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455739] = 4, + [458182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17139), 1, - anon_sym_LPAREN, - STATE(12096), 1, + anon_sym_RPAREN, + STATE(12121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455753] = 4, + [458196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17141), 1, - anon_sym_LPAREN, - STATE(12097), 1, + anon_sym_end, + STATE(12122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455767] = 4, + [458210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17143), 1, anon_sym_LPAREN, - STATE(12098), 1, + STATE(12123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455781] = 4, + [458224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17145), 1, - anon_sym_SQUOTE2, - STATE(12099), 1, + anon_sym_LPAREN, + STATE(12124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455795] = 4, + [458238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17147), 1, - anon_sym_EQ_GT, - STATE(12100), 1, + anon_sym_LPAREN, + STATE(12125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455809] = 4, + [458252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17149), 1, - anon_sym_DASH_GT, - STATE(12101), 1, + anon_sym_RPAREN, + STATE(12126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455823] = 4, + [458266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17151), 1, - anon_sym_of, - STATE(12102), 1, + anon_sym_end, + STATE(12127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455837] = 4, + [458280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17153), 1, - anon_sym_end, - STATE(12103), 1, + anon_sym_of, + STATE(12128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455851] = 4, + [458294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17155), 1, - anon_sym_end, - STATE(12104), 1, + anon_sym_of, + STATE(12129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455865] = 4, + [458308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17157), 1, - anon_sym_end, - STATE(12105), 1, + anon_sym_RPAREN, + STATE(12130), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [458322] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13100), 1, + anon_sym_EQ, + STATE(12131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455879] = 4, + [458336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17159), 1, - anon_sym_COMMA, - STATE(12106), 1, + anon_sym_end, + STATE(12132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455893] = 4, + [458350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17161), 1, - anon_sym_of, - STATE(12107), 1, + anon_sym_COMMA, + STATE(12133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455907] = 4, + [458364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17163), 1, + sym__constant_segment, + STATE(12134), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [458378] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12231), 1, anon_sym_end, - STATE(12108), 1, + STATE(12135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455921] = 4, + [458392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17165), 1, anon_sym_end, - STATE(12109), 1, + STATE(12136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455935] = 4, + [458406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17167), 1, anon_sym_end, - STATE(12110), 1, + STATE(12137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455949] = 4, + [458420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17169), 1, - anon_sym_RPAREN, - STATE(12111), 1, + anon_sym_end, + STATE(12138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455963] = 4, + [458434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17171), 1, - anon_sym_end, - STATE(12112), 1, + anon_sym_RBRACK, + STATE(12139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455977] = 4, + [458448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17173), 1, - anon_sym_LPAREN, - STATE(12113), 1, + anon_sym_end, + STATE(12140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [455991] = 4, + [458462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17175), 1, - anon_sym_LPAREN, - STATE(12114), 1, + anon_sym_end, + STATE(12141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456005] = 4, + [458476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17177), 1, - anon_sym_LPAREN, - STATE(12115), 1, + sym__constant_segment, + STATE(12142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456019] = 4, + [458490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17179), 1, - sym__constant_segment, - STATE(12116), 1, + anon_sym_end, + STATE(12143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456033] = 4, + [458504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17181), 1, anon_sym_end, - STATE(12117), 1, + STATE(12144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456047] = 4, + [458518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17183), 1, - anon_sym_of, - STATE(12118), 1, + anon_sym_LPAREN, + STATE(12145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456061] = 4, + [458532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17185), 1, - anon_sym_RPAREN, - STATE(12119), 1, + anon_sym_LPAREN, + STATE(12146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456075] = 4, + [458546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17187), 1, - anon_sym_end, - STATE(12120), 1, + anon_sym_LPAREN, + STATE(12147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456089] = 4, + [458560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17189), 1, - anon_sym_COMMA, - STATE(12121), 1, + anon_sym_end, + STATE(12148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456103] = 4, + [458574] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17191), 1, - sym__constant_segment, - STATE(12122), 1, + anon_sym_RBRACK, + STATE(12149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456117] = 4, + [458588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17193), 1, anon_sym_end, - STATE(12123), 1, + STATE(12150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456131] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [458602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17195), 1, - aux_sym_type_declaration_token1, - STATE(12124), 1, + anon_sym_of, + STATE(12151), 1, sym_heredoc_body, - [456147] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [458616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17197), 1, anon_sym_end, - STATE(12125), 1, + STATE(12152), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456161] = 4, + [458630] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17199), 1, - anon_sym_LPAREN, - STATE(12126), 1, + anon_sym_end, + STATE(12153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456175] = 4, + [458644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17201), 1, - anon_sym_LPAREN, - STATE(12127), 1, + anon_sym_end, + STATE(12154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456189] = 4, + [458658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17203), 1, - anon_sym_LPAREN, - STATE(12128), 1, + anon_sym_COMMA, + STATE(12155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456203] = 4, + [458672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17205), 1, - anon_sym_end, - STATE(12129), 1, + anon_sym_RBRACE, + STATE(12156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456217] = 4, + [458686] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17207), 1, - anon_sym_EQ_GT, - STATE(12130), 1, + anon_sym_RPAREN, + STATE(12157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456231] = 4, + [458700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17209), 1, - anon_sym_of, - STATE(12131), 1, + anon_sym_end, + STATE(12158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456245] = 4, + [458714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17211), 1, - anon_sym_end, - STATE(12132), 1, + sym__constant_segment, + STATE(12159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456259] = 4, + [458728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17213), 1, - anon_sym_class, - STATE(12133), 1, + anon_sym_end, + STATE(12160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456273] = 4, + [458742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17215), 1, - anon_sym_COMMA, - STATE(12134), 1, + anon_sym_EQ_GT, + STATE(12161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456287] = 4, + [458756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17217), 1, - anon_sym_end, - STATE(12135), 1, + anon_sym_LPAREN, + STATE(12162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456301] = 4, + [458770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17219), 1, - anon_sym_RPAREN, - STATE(12136), 1, + anon_sym_LPAREN, + STATE(12163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456315] = 4, + [458784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17221), 1, - anon_sym_end, - STATE(12137), 1, + anon_sym_LPAREN, + STATE(12164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456329] = 4, + [458798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17223), 1, - anon_sym_RPAREN, - STATE(12138), 1, + anon_sym_DASH_GT, + STATE(12165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456343] = 4, + [458812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17225), 1, - anon_sym_LPAREN, - STATE(12139), 1, + anon_sym_end, + STATE(12166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456357] = 4, + [458826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17227), 1, - anon_sym_LPAREN, - STATE(12140), 1, + anon_sym_of, + STATE(12167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456371] = 4, + [458840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17229), 1, - anon_sym_LPAREN, - STATE(12141), 1, + anon_sym_RBRACK, + STATE(12168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456385] = 4, + [458854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17231), 1, - anon_sym_RPAREN, - STATE(12142), 1, + aux_sym_type_declaration_token1, + STATE(12169), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [456399] = 4, + [458870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17233), 1, - anon_sym_end, - STATE(12143), 1, + anon_sym_COMMA, + STATE(12170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456413] = 4, + [458884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17235), 1, - anon_sym_of, - STATE(12144), 1, + anon_sym_end, + STATE(12171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456427] = 4, + [458898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17237), 1, - anon_sym_of, - STATE(12145), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [456441] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12196), 1, anon_sym_end, - STATE(12146), 1, + STATE(12172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456455] = 4, + [458912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17239), 1, - anon_sym_COMMA, - STATE(12147), 1, + anon_sym_yield, + STATE(12173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456469] = 4, + [458926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17241), 1, anon_sym_end, - STATE(12148), 1, + STATE(12174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456483] = 4, + [458940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17243), 1, - anon_sym_class, - STATE(12149), 1, + anon_sym_LPAREN, + STATE(12175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456497] = 4, + [458954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17245), 1, - anon_sym_RPAREN, - STATE(12150), 1, + anon_sym_LPAREN, + STATE(12176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456511] = 4, + [458968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17247), 1, - anon_sym_end, - STATE(12151), 1, + anon_sym_LPAREN, + STATE(12177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456525] = 4, + [458982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17249), 1, - anon_sym_LPAREN, - STATE(12152), 1, + anon_sym_EQ_GT, + STATE(12178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456539] = 4, + [458996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17251), 1, - anon_sym_LPAREN, - STATE(12153), 1, + anon_sym_end, + STATE(12179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456553] = 4, + [459010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17253), 1, - anon_sym_LPAREN, - STATE(12154), 1, + anon_sym_of, + STATE(12180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456567] = 4, + [459024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17255), 1, - anon_sym_RPAREN, - STATE(12155), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [456581] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12200), 1, anon_sym_end, - STATE(12156), 1, + STATE(12181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456595] = 4, + [459038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17257), 1, - anon_sym_of, - STATE(12157), 1, + anon_sym_end, + STATE(12182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456609] = 4, + [459052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17259), 1, - anon_sym_end, - STATE(12158), 1, + anon_sym_COMMA, + STATE(12183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456623] = 4, + [459066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17261), 1, - anon_sym_end, - STATE(12159), 1, + anon_sym_RPAREN, + STATE(12184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456637] = 4, + [459080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17263), 1, - anon_sym_COMMA, - STATE(12160), 1, + anon_sym_RBRACK, + STATE(12185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456651] = 4, + [459094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17265), 1, - anon_sym_RPAREN, - STATE(12161), 1, + anon_sym_end, + STATE(12186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456665] = 4, + [459108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17267), 1, - anon_sym_RBRACK, - STATE(12162), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [456679] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12713), 1, - sym__constant_segment, - STATE(12163), 1, + anon_sym_end, + STATE(12187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456693] = 4, + [459122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17269), 1, - anon_sym_RBRACK, - STATE(12164), 1, + anon_sym_LPAREN, + STATE(12188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456707] = 4, + [459136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17271), 1, anon_sym_LPAREN, - STATE(12165), 1, + STATE(12189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456721] = 4, + [459150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17273), 1, anon_sym_LPAREN, - STATE(12166), 1, + STATE(12190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456735] = 4, + [459164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17275), 1, - anon_sym_LPAREN, - STATE(12167), 1, + anon_sym_end, + STATE(12191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456749] = 4, + [459178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17277), 1, - anon_sym_RPAREN, - STATE(12168), 1, + anon_sym_end, + STATE(12192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456763] = 4, + [459192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17279), 1, - anon_sym_end, - STATE(12169), 1, + anon_sym_of, + STATE(12193), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456777] = 4, + [459206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17281), 1, - anon_sym_of, - STATE(12170), 1, + anon_sym_end, + STATE(12194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456791] = 4, + [459220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17283), 1, - anon_sym_end, - STATE(12171), 1, + anon_sym_RPAREN, + STATE(12195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456805] = 4, + [459234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17285), 1, - anon_sym_LPAREN, - STATE(12172), 1, + anon_sym_COMMA, + STATE(12196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456819] = 4, + [459248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17287), 1, - anon_sym_COMMA, - STATE(12173), 1, + anon_sym_RPAREN, + STATE(12197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456833] = 4, + [459262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17289), 1, anon_sym_end, - STATE(12174), 1, + STATE(12198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456847] = 4, + [459276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17291), 1, - anon_sym_end, - STATE(12175), 1, + anon_sym_EQ_GT, + STATE(12199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456861] = 4, + [459290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17293), 1, - anon_sym_RPAREN, - STATE(12176), 1, + anon_sym_end, + STATE(12200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456875] = 4, + [459304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17295), 1, - anon_sym_RPAREN, - STATE(12177), 1, + anon_sym_LPAREN, + STATE(12201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456889] = 4, + [459318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17297), 1, anon_sym_LPAREN, - STATE(12178), 1, + STATE(12202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456903] = 4, + [459332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17299), 1, anon_sym_LPAREN, - STATE(12179), 1, + STATE(12203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456917] = 4, + [459346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17301), 1, - anon_sym_LPAREN, - STATE(12180), 1, + anon_sym_end, + STATE(12204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456931] = 4, + [459360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17303), 1, - anon_sym_EQ_GT, - STATE(12181), 1, + anon_sym_RBRACE, + STATE(12205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456945] = 4, + [459374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17305), 1, - anon_sym_end, - STATE(12182), 1, + anon_sym_of, + STATE(12206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456959] = 4, + [459388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17307), 1, - anon_sym_of, - STATE(12183), 1, + anon_sym_SQUOTE2, + STATE(12207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456973] = 4, + [459402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17309), 1, - anon_sym_SQUOTE2, - STATE(12184), 1, + anon_sym_end, + STATE(12208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [456987] = 4, + [459416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17311), 1, - anon_sym_end, - STATE(12185), 1, + anon_sym_COMMA, + STATE(12209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457001] = 4, + [459430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17313), 1, - anon_sym_COMMA, - STATE(12186), 1, + anon_sym_end, + STATE(12210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457015] = 4, + [459444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17315), 1, anon_sym_end, - STATE(12187), 1, + STATE(12211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457029] = 4, + [459458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17317), 1, - anon_sym_RPAREN, - STATE(12188), 1, + anon_sym_end, + STATE(12212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457043] = 4, + [459472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17319), 1, anon_sym_end, - STATE(12189), 1, + STATE(12213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457057] = 4, + [459486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17321), 1, - anon_sym_RPAREN, - STATE(12190), 1, + anon_sym_LPAREN, + STATE(12214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457071] = 4, + [459500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17323), 1, anon_sym_LPAREN, - STATE(12191), 1, + STATE(12215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457085] = 4, + [459514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17325), 1, anon_sym_LPAREN, - STATE(12192), 1, + STATE(12216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457099] = 4, + [459528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17327), 1, - anon_sym_LPAREN, - STATE(12193), 1, + anon_sym_end, + STATE(12217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457113] = 4, + [459542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17329), 1, - anon_sym_of, - STATE(12194), 1, + anon_sym_end, + STATE(12218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457127] = 4, + [459556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17331), 1, - anon_sym_RPAREN, - STATE(12195), 1, + anon_sym_of, + STATE(12219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457141] = 4, + [459570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17333), 1, anon_sym_of, - STATE(12196), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [457155] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11270), 1, - anon_sym_RPAREN, - STATE(12197), 1, + STATE(12220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457169] = 4, + [459584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17335), 1, - anon_sym_SQUOTE2, - STATE(12198), 1, + anon_sym_class, + STATE(12221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457183] = 4, + [459598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17337), 1, anon_sym_COMMA, - STATE(12199), 1, + STATE(12222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457197] = 4, + [459612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17339), 1, - anon_sym_RBRACK, - STATE(12200), 1, + anon_sym_RPAREN, + STATE(12223), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457211] = 4, + [459626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17341), 1, - anon_sym_LPAREN, - STATE(12201), 1, + anon_sym_of, + STATE(12224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457225] = 4, + [459640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17343), 1, anon_sym_end, - STATE(12202), 1, + STATE(12225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457239] = 4, + [459654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17345), 1, - anon_sym_of, - STATE(12203), 1, + sym__constant_segment, + STATE(12226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457253] = 4, + [459668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17347), 1, anon_sym_LPAREN, - STATE(12204), 1, + STATE(12227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457267] = 4, + [459682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17349), 1, anon_sym_LPAREN, - STATE(12205), 1, + STATE(12228), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457281] = 4, + [459696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17351), 1, anon_sym_LPAREN, - STATE(12206), 1, + STATE(12229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457295] = 4, + [459710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17353), 1, - anon_sym_RPAREN, - STATE(12207), 1, + ACTIONS(12410), 1, + anon_sym_end, + STATE(12230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457309] = 4, + [459724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5872), 1, - anon_sym_COLON, - STATE(12208), 1, + ACTIONS(17353), 1, + sym__constant_segment, + STATE(12231), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457323] = 4, + [459738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17355), 1, anon_sym_of, - STATE(12209), 1, + STATE(12232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457337] = 4, + [459752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17357), 1, anon_sym_end, - STATE(12210), 1, + STATE(12233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457351] = 4, + [459766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17359), 1, sym__constant_segment, - STATE(12211), 1, + STATE(12234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457365] = 4, + [459780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17361), 1, anon_sym_COMMA, - STATE(12212), 1, + STATE(12235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457379] = 4, + [459794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17363), 1, - anon_sym_RBRACK, - STATE(12213), 1, + anon_sym_yield, + STATE(12236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457393] = 4, + [459808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17365), 1, - sym__constant_segment, - STATE(12214), 1, + anon_sym_end, + STATE(12237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457407] = 4, + [459822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17367), 1, sym__constant_segment, - STATE(12215), 1, + STATE(12238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457421] = 5, + [459836] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -731330,11395 +736521,11670 @@ static const uint16_t ts_small_parse_table[] = { sym__heredoc_body_start, ACTIONS(17369), 1, aux_sym_type_declaration_token1, - STATE(12216), 1, + STATE(12239), 1, sym_heredoc_body, - [457437] = 4, + [459852] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17371), 1, anon_sym_LPAREN, - STATE(12217), 1, + STATE(12240), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457451] = 4, + [459866] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17373), 1, anon_sym_LPAREN, - STATE(12218), 1, + STATE(12241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457465] = 4, + [459880] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17375), 1, anon_sym_LPAREN, - STATE(12219), 1, + STATE(12242), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457479] = 4, + [459894] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17377), 1, - sym__constant_segment, - STATE(12220), 1, + anon_sym_end, + STATE(12243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457493] = 4, + [459908] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17379), 1, - anon_sym_RPAREN, - STATE(12221), 1, + anon_sym_LPAREN, + STATE(12244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457507] = 4, + [459922] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17381), 1, anon_sym_of, - STATE(12222), 1, + STATE(12245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457521] = 4, + [459936] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17383), 1, anon_sym_end, - STATE(12223), 1, + STATE(12246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457535] = 4, + [459950] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17385), 1, - anon_sym_EQ_GT, - STATE(12224), 1, + ts_builtin_sym_end, + STATE(12247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457549] = 4, + [459964] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17387), 1, anon_sym_COMMA, - STATE(12225), 1, + STATE(12248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457563] = 4, + [459978] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17389), 1, - anon_sym_RBRACE, - STATE(12226), 1, + anon_sym_yield, + STATE(12249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457577] = 4, + [459992] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12228), 1, + ACTIONS(12382), 1, anon_sym_end, - STATE(12227), 1, + STATE(12250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457591] = 4, + [460006] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17391), 1, anon_sym_RPAREN, - STATE(12228), 1, + STATE(12251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457605] = 4, + [460020] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12216), 1, + ACTIONS(17393), 1, anon_sym_end, - STATE(12229), 1, + STATE(12252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457619] = 4, + [460034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17393), 1, + ACTIONS(17395), 1, anon_sym_LPAREN, - STATE(12230), 1, + STATE(12253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457633] = 4, + [460048] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17395), 1, + ACTIONS(17397), 1, anon_sym_LPAREN, - STATE(12231), 1, + STATE(12254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457647] = 4, + [460062] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17397), 1, + ACTIONS(17399), 1, anon_sym_LPAREN, - STATE(12232), 1, + STATE(12255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457661] = 4, + [460076] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17399), 1, - anon_sym_DOT, - STATE(12233), 1, + ACTIONS(12384), 1, + anon_sym_end, + STATE(12256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457675] = 4, + [460090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17401), 1, - anon_sym_end, - STATE(12234), 1, + anon_sym_RPAREN, + STATE(12257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457689] = 4, + [460104] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17403), 1, anon_sym_of, - STATE(12235), 1, + STATE(12258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457703] = 4, + [460118] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17405), 1, anon_sym_RPAREN, - STATE(12236), 1, + STATE(12259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457717] = 4, + [460132] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17407), 1, - sym__constant_segment, - STATE(12237), 1, + anon_sym_EQ_GT, + STATE(12260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457731] = 4, + [460146] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17409), 1, anon_sym_COMMA, - STATE(12238), 1, + STATE(12261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457745] = 4, + [460160] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17411), 1, - anon_sym_RPAREN, - STATE(12239), 1, + anon_sym_end, + STATE(12262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457759] = 4, + [460174] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17413), 1, - anon_sym_EQ_GT, - STATE(12240), 1, + anon_sym_RBRACE, + STATE(12263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457773] = 4, + [460188] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17415), 1, - anon_sym_LPAREN, - STATE(12241), 1, + anon_sym_end, + STATE(12264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457787] = 4, + [460202] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17417), 1, - anon_sym_LPAREN, - STATE(12242), 1, + anon_sym_COLON, + STATE(12265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457801] = 4, + [460216] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17419), 1, anon_sym_LPAREN, - STATE(12243), 1, + STATE(12266), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457815] = 4, + [460230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17421), 1, - anon_sym_of, - STATE(12244), 1, + anon_sym_LPAREN, + STATE(12267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457829] = 4, + [460244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17423), 1, - anon_sym_RBRACE, - STATE(12245), 1, + anon_sym_LPAREN, + STATE(12268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457843] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [460258] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17425), 1, - aux_sym_type_declaration_token1, - STATE(12246), 1, + anon_sym_RBRACE, + STATE(12269), 1, sym_heredoc_body, - [457859] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [460272] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17427), 1, - anon_sym_COMMA, - STATE(12247), 1, + anon_sym_end, + STATE(12270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457873] = 4, + [460286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17429), 1, - anon_sym_end, - STATE(12248), 1, + anon_sym_of, + STATE(12271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457887] = 4, + [460300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17431), 1, - anon_sym_DASH_GT, - STATE(12249), 1, + anon_sym_end, + STATE(12272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457901] = 4, + [460314] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17433), 1, - anon_sym_LPAREN, - STATE(12250), 1, + aux_sym_type_declaration_token1, + STATE(12273), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [457915] = 4, + [460330] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17435), 1, - anon_sym_of, - STATE(12251), 1, + anon_sym_COMMA, + STATE(12274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457929] = 4, + [460344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17437), 1, - anon_sym_RBRACE, - STATE(12252), 1, + anon_sym_RPAREN, + STATE(12275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457943] = 4, + [460358] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17439), 1, - anon_sym_RPAREN, - STATE(12253), 1, + anon_sym_end, + STATE(12276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457957] = 4, + [460372] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17441), 1, - anon_sym_of, - STATE(12254), 1, + anon_sym_LPAREN, + STATE(12277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457971] = 4, + [460386] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17443), 1, - anon_sym_LPAREN, - STATE(12255), 1, + anon_sym_DASH_GT, + STATE(12278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457985] = 4, + [460400] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17445), 1, - anon_sym_of, - STATE(12256), 1, + anon_sym_LPAREN, + STATE(12279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [457999] = 4, + [460414] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17447), 1, - anon_sym_DASH_GT, - STATE(12257), 1, + anon_sym_LPAREN, + STATE(12280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458013] = 4, + [460428] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17449), 1, anon_sym_LPAREN, - STATE(12258), 1, + STATE(12281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458027] = 4, + [460442] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17451), 1, - anon_sym_of, - STATE(12259), 1, + anon_sym_end, + STATE(12282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458041] = 4, + [460456] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17453), 1, anon_sym_RPAREN, - STATE(12260), 1, + STATE(12283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458055] = 4, + [460470] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17455), 1, - anon_sym_LPAREN, - STATE(12261), 1, + anon_sym_of, + STATE(12284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458069] = 4, + [460484] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17457), 1, - anon_sym_of, - STATE(12262), 1, + anon_sym_RBRACE, + STATE(12285), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [460498] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12281), 1, + anon_sym_end, + STATE(12286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458083] = 4, + [460512] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17459), 1, anon_sym_COMMA, - STATE(12263), 1, + STATE(12287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458097] = 4, + [460526] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17461), 1, - anon_sym_LPAREN, - STATE(12264), 1, + anon_sym_end, + STATE(12288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458111] = 4, + [460540] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17463), 1, anon_sym_end, - STATE(12265), 1, + STATE(12289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458125] = 4, + [460554] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17465), 1, anon_sym_LPAREN, - STATE(12266), 1, + STATE(12290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458139] = 4, + [460568] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17467), 1, - anon_sym_RPAREN, - STATE(12267), 1, + anon_sym_LPAREN, + STATE(12291), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458153] = 4, + [460582] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17469), 1, anon_sym_LPAREN, - STATE(12268), 1, + STATE(12292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458167] = 4, + [460596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17471), 1, - anon_sym_EQ_GT, - STATE(12269), 1, + anon_sym_of, + STATE(12293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458181] = 4, + [460610] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17473), 1, - anon_sym_DASH_GT, - STATE(12270), 1, + anon_sym_end, + STATE(12294), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458195] = 4, + [460624] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17475), 1, - anon_sym_end, - STATE(12271), 1, + anon_sym_RPAREN, + STATE(12295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458209] = 4, + [460638] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17477), 1, - anon_sym_end, - STATE(12272), 1, + anon_sym_COMMA, + STATE(12296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458223] = 4, + [460652] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17479), 1, - anon_sym_RPAREN, - STATE(12273), 1, + anon_sym_class, + STATE(12297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458237] = 4, + [460666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17481), 1, anon_sym_end, - STATE(12274), 1, + STATE(12298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458251] = 4, + [460680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17483), 1, - anon_sym_EQ_GT, - STATE(12275), 1, + anon_sym_LPAREN, + STATE(12299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458265] = 4, + [460694] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17485), 1, - anon_sym_RPAREN, - STATE(12276), 1, + anon_sym_of, + STATE(12300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458279] = 4, + [460708] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17487), 1, - anon_sym_DASH_GT, - STATE(12277), 1, + anon_sym_end, + STATE(12301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458293] = 4, + [460722] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17489), 1, - anon_sym_end, - STATE(12278), 1, + anon_sym_RPAREN, + STATE(12302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458307] = 4, + [460736] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17491), 1, anon_sym_end, - STATE(12279), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [458321] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13869), 1, - anon_sym_RPAREN, - STATE(12280), 1, + STATE(12303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458335] = 4, + [460750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17493), 1, - anon_sym_end, - STATE(12281), 1, + anon_sym_LPAREN, + STATE(12304), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458349] = 4, + [460764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17495), 1, - anon_sym_end, - STATE(12282), 1, + anon_sym_of, + STATE(12305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458363] = 4, + [460778] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17497), 1, anon_sym_end, - STATE(12283), 1, + STATE(12306), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458377] = 4, + [460792] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17499), 1, - anon_sym_RPAREN, - STATE(12284), 1, + anon_sym_LPAREN, + STATE(12307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458391] = 4, + [460806] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17501), 1, - anon_sym_RPAREN, - STATE(12285), 1, + anon_sym_of, + STATE(12308), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458405] = 4, + [460820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17503), 1, - anon_sym_end, - STATE(12286), 1, + anon_sym_RPAREN, + STATE(12309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458419] = 4, + [460834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17505), 1, - anon_sym_end, - STATE(12287), 1, + anon_sym_LPAREN, + STATE(12310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458433] = 4, + [460848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17507), 1, - anon_sym_RBRACE, - STATE(12288), 1, + anon_sym_of, + STATE(12311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458447] = 4, + [460862] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17509), 1, anon_sym_end, - STATE(12289), 1, + STATE(12312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458461] = 4, + [460876] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17511), 1, - anon_sym_end, - STATE(12290), 1, + anon_sym_LPAREN, + STATE(12313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458475] = 4, + [460890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17513), 1, - anon_sym_RPAREN, - STATE(12291), 1, + anon_sym_EQ_GT, + STATE(12314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458489] = 4, + [460904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17515), 1, - anon_sym_of, - STATE(12292), 1, + anon_sym_LPAREN, + STATE(12315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458503] = 4, + [460918] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17517), 1, - anon_sym_DASH_GT, - STATE(12293), 1, + anon_sym_end, + STATE(12316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458517] = 4, + [460932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17519), 1, - anon_sym_end, - STATE(12294), 1, + anon_sym_LPAREN, + STATE(12317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458531] = 4, + [460946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17521), 1, - anon_sym_yield, - STATE(12295), 1, + anon_sym_DASH_GT, + STATE(12318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458545] = 4, + [460960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17523), 1, - anon_sym_RBRACE, - STATE(12296), 1, + anon_sym_end, + STATE(12319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458559] = 4, + [460974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17525), 1, anon_sym_end, - STATE(12297), 1, + STATE(12320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458573] = 4, + [460988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17527), 1, - anon_sym_EQ, - STATE(12298), 1, + anon_sym_end, + STATE(12321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458587] = 4, + [461002] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17529), 1, - anon_sym_end, - STATE(12299), 1, + sym_identifier, + STATE(12322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458601] = 4, + [461016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17531), 1, - anon_sym_end, - STATE(12300), 1, + sym__constant_segment, + STATE(12323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458615] = 4, + [461030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17533), 1, - anon_sym_yield, - STATE(12301), 1, + anon_sym_RPAREN, + STATE(12324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458629] = 4, + [461044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17535), 1, - anon_sym_RBRACE, - STATE(12302), 1, + anon_sym_end, + STATE(12325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458643] = 4, + [461058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17537), 1, anon_sym_end, - STATE(12303), 1, + STATE(12326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458657] = 4, + [461072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17539), 1, - anon_sym_RPAREN, - STATE(12304), 1, + anon_sym_end, + STATE(12327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458671] = 4, + [461086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17541), 1, - anon_sym_RPAREN, - STATE(12305), 1, + anon_sym_end, + STATE(12328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458685] = 4, + [461100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17543), 1, - anon_sym_of, - STATE(12306), 1, + ACTIONS(12239), 1, + anon_sym_end, + STATE(12329), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458699] = 4, + [461114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12244), 1, + ACTIONS(17543), 1, anon_sym_end, - STATE(12307), 1, + STATE(12330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458713] = 4, + [461128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17545), 1, anon_sym_end, - STATE(12308), 1, + STATE(12331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458727] = 4, + [461142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17547), 1, anon_sym_end, - STATE(12309), 1, + STATE(12332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458741] = 4, + [461156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17549), 1, - anon_sym_RPAREN, - STATE(12310), 1, + anon_sym_end, + STATE(12333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458755] = 4, + [461170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17551), 1, - anon_sym_end, - STATE(12311), 1, + anon_sym_RPAREN, + STATE(12334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458769] = 4, + [461184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17553), 1, - anon_sym_yield, - STATE(12312), 1, + anon_sym_RBRACK, + STATE(12335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458783] = 4, + [461198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17555), 1, - anon_sym_RPAREN, - STATE(12313), 1, + anon_sym_end, + STATE(12336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458797] = 4, + [461212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17557), 1, - anon_sym_RPAREN, - STATE(12314), 1, + anon_sym_end, + STATE(12337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458811] = 4, + [461226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17559), 1, - anon_sym_RPAREN, - STATE(12315), 1, + anon_sym_end, + STATE(12338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458825] = 4, + [461240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17561), 1, anon_sym_end, - STATE(12316), 1, + STATE(12339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458839] = 4, + [461254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17563), 1, - anon_sym_RPAREN, - STATE(12317), 1, + anon_sym_end, + STATE(12340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458853] = 4, + [461268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17565), 1, - anon_sym_RPAREN, - STATE(12318), 1, + anon_sym_of, + STATE(12341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458867] = 4, + [461282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17567), 1, - anon_sym_end, - STATE(12319), 1, + anon_sym_RBRACK, + STATE(12342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458881] = 4, + [461296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(17569), 1, + anon_sym_yield, + STATE(12343), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461310] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12293), 1, anon_sym_end, - STATE(12320), 1, + STATE(12344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458895] = 4, + [461324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12362), 1, + ACTIONS(17571), 1, + anon_sym_RPAREN, + STATE(12345), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461338] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17573), 1, + anon_sym_RPAREN, + STATE(12346), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461352] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17575), 1, + anon_sym_RPAREN, + STATE(12347), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461366] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17577), 1, + anon_sym_RPAREN, + STATE(12348), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461380] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17579), 1, anon_sym_end, - STATE(12321), 1, + STATE(12349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458909] = 4, + [461394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12273), 1, + ACTIONS(17581), 1, anon_sym_end, - STATE(12322), 1, + STATE(12350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458923] = 4, + [461408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12317), 1, + ACTIONS(17583), 1, anon_sym_end, - STATE(12323), 1, + STATE(12351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458937] = 4, + [461422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12271), 1, + ACTIONS(17585), 1, + anon_sym_RBRACE, + STATE(12352), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461436] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17587), 1, + anon_sym_SQUOTE2, + STATE(12353), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461450] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12406), 1, anon_sym_end, - STATE(12324), 1, + STATE(12354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458951] = 4, + [461464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17571), 1, + ACTIONS(17589), 1, anon_sym_end, - STATE(12325), 1, + STATE(12355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458965] = 4, + [461478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17573), 1, + ACTIONS(17591), 1, + anon_sym_RPAREN, + STATE(12356), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461492] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17593), 1, anon_sym_end, - STATE(12326), 1, + STATE(12357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458979] = 4, + [461506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17575), 1, + ACTIONS(17595), 1, anon_sym_end, - STATE(12327), 1, + STATE(12358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [458993] = 4, + [461520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17577), 1, - anon_sym_LPAREN, - STATE(12328), 1, + ACTIONS(17597), 1, + anon_sym_end, + STATE(12359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459007] = 4, + [461534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17579), 1, + ACTIONS(17599), 1, + anon_sym_RPAREN, + STATE(12360), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461548] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17601), 1, + anon_sym_RPAREN, + STATE(12361), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461562] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17603), 1, anon_sym_end, - STATE(12329), 1, + STATE(12362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459021] = 4, + [461576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17581), 1, + ACTIONS(17605), 1, anon_sym_RPAREN, - STATE(12330), 1, + STATE(12363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459035] = 4, + [461590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12747), 1, + ACTIONS(17607), 1, + anon_sym_end, + STATE(12364), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461604] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17609), 1, + anon_sym_EQ_GT, + STATE(12365), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461618] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17611), 1, + anon_sym_of, + STATE(12366), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461632] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17613), 1, sym__constant_segment, - STATE(12331), 1, + STATE(12367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459049] = 4, + [461646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17583), 1, + ACTIONS(17615), 1, anon_sym_end, - STATE(12332), 1, + STATE(12368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459063] = 4, + [461660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17585), 1, + ACTIONS(17617), 1, + anon_sym_EQ_GT, + STATE(12369), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461674] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17619), 1, + anon_sym_end, + STATE(12370), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461688] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17621), 1, + anon_sym_EQ_GT, + STATE(12371), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461702] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17623), 1, + anon_sym_end, + STATE(12372), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461716] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17625), 1, + sym__constant_segment, + STATE(12373), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461730] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12265), 1, + anon_sym_end, + STATE(12374), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461744] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17627), 1, + anon_sym_end, + STATE(12375), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461758] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17629), 1, anon_sym_LPAREN, - STATE(12333), 1, + STATE(12376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459077] = 4, + [461772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17587), 1, + ACTIONS(17631), 1, + anon_sym_end, + STATE(12377), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461786] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17633), 1, + anon_sym_end, + STATE(12378), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461800] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17635), 1, + anon_sym_end, + STATE(12379), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461814] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17637), 1, + anon_sym_end, + STATE(12380), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [461828] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17639), 1, anon_sym_LPAREN, - STATE(12334), 1, + STATE(12381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459091] = 4, + [461842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17589), 1, + ACTIONS(17641), 1, anon_sym_LPAREN, - STATE(12335), 1, + STATE(12382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459105] = 4, + [461856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17591), 1, + ACTIONS(17643), 1, anon_sym_LPAREN, - STATE(12336), 1, + STATE(12383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459119] = 4, + [461870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17593), 1, + ACTIONS(17645), 1, anon_sym_LPAREN, - STATE(12337), 1, + STATE(12384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459133] = 4, + [461884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17595), 1, + ACTIONS(17647), 1, anon_sym_LPAREN, - STATE(12338), 1, + STATE(12385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459147] = 4, + [461898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17597), 1, + ACTIONS(17649), 1, anon_sym_LPAREN, - STATE(12339), 1, + STATE(12386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459161] = 4, + [461912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17599), 1, + ACTIONS(17651), 1, anon_sym_LPAREN, - STATE(12340), 1, + STATE(12387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459175] = 4, + [461926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17601), 1, + ACTIONS(17653), 1, anon_sym_LPAREN, - STATE(12341), 1, + STATE(12388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459189] = 4, + [461940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17603), 1, + ACTIONS(17655), 1, anon_sym_LPAREN, - STATE(12342), 1, + STATE(12389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459203] = 4, + [461954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17605), 1, + ACTIONS(17657), 1, anon_sym_LPAREN, - STATE(12343), 1, + STATE(12390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459217] = 4, + [461968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17607), 1, + ACTIONS(17659), 1, anon_sym_LPAREN, - STATE(12344), 1, + STATE(12391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459231] = 4, + [461982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(17609), 1, + ACTIONS(17661), 1, anon_sym_LPAREN, - STATE(12345), 1, + STATE(12392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459245] = 4, + [461996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13129), 1, - anon_sym_RPAREN, - STATE(12346), 1, + ACTIONS(17663), 1, + anon_sym_LPAREN, + STATE(12393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [459259] = 1, - ACTIONS(17611), 1, + [462010] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(17665), 1, + anon_sym_end, + STATE(12394), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [462024] = 1, + ACTIONS(17667), 1, ts_builtin_sym_end, - [459263] = 1, - ACTIONS(17613), 1, + [462028] = 1, + ACTIONS(17669), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2272)] = 0, - [SMALL_STATE(2273)] = 75, - [SMALL_STATE(2274)] = 172, - [SMALL_STATE(2275)] = 253, - [SMALL_STATE(2276)] = 350, - [SMALL_STATE(2277)] = 425, - [SMALL_STATE(2278)] = 506, - [SMALL_STATE(2279)] = 581, - [SMALL_STATE(2280)] = 660, - [SMALL_STATE(2281)] = 739, - [SMALL_STATE(2282)] = 813, - [SMALL_STATE(2283)] = 893, - [SMALL_STATE(2284)] = 989, - [SMALL_STATE(2285)] = 1067, - [SMALL_STATE(2286)] = 1163, - [SMALL_STATE(2287)] = 1242, - [SMALL_STATE(2288)] = 1319, - [SMALL_STATE(2289)] = 1395, - [SMALL_STATE(2290)] = 1467, - [SMALL_STATE(2291)] = 1543, - [SMALL_STATE(2292)] = 1619, - [SMALL_STATE(2293)] = 1691, - [SMALL_STATE(2294)] = 1767, - [SMALL_STATE(2295)] = 1841, - [SMALL_STATE(2296)] = 1919, - [SMALL_STATE(2297)] = 1995, - [SMALL_STATE(2298)] = 2066, - [SMALL_STATE(2299)] = 2143, - [SMALL_STATE(2300)] = 2218, - [SMALL_STATE(2301)] = 2289, - [SMALL_STATE(2302)] = 2362, - [SMALL_STATE(2303)] = 2437, - [SMALL_STATE(2304)] = 2512, - [SMALL_STATE(2305)] = 2587, - [SMALL_STATE(2306)] = 2658, - [SMALL_STATE(2307)] = 2733, - [SMALL_STATE(2308)] = 2810, - [SMALL_STATE(2309)] = 2884, - [SMALL_STATE(2310)] = 2958, - [SMALL_STATE(2311)] = 3028, - [SMALL_STATE(2312)] = 3102, - [SMALL_STATE(2313)] = 3184, - [SMALL_STATE(2314)] = 3258, - [SMALL_STATE(2315)] = 3328, - [SMALL_STATE(2316)] = 3398, - [SMALL_STATE(2317)] = 3480, - [SMALL_STATE(2318)] = 3550, - [SMALL_STATE(2319)] = 3622, - [SMALL_STATE(2320)] = 3692, - [SMALL_STATE(2321)] = 3774, - [SMALL_STATE(2322)] = 3846, - [SMALL_STATE(2323)] = 3918, - [SMALL_STATE(2324)] = 3992, - [SMALL_STATE(2325)] = 4068, - [SMALL_STATE(2326)] = 4150, - [SMALL_STATE(2327)] = 4232, - [SMALL_STATE(2328)] = 4301, - [SMALL_STATE(2329)] = 4374, - [SMALL_STATE(2330)] = 4443, - [SMALL_STATE(2331)] = 4518, - [SMALL_STATE(2332)] = 4599, - [SMALL_STATE(2333)] = 4668, - [SMALL_STATE(2334)] = 4737, - [SMALL_STATE(2335)] = 4812, - [SMALL_STATE(2336)] = 4881, - [SMALL_STATE(2337)] = 4962, - [SMALL_STATE(2338)] = 5043, - [SMALL_STATE(2339)] = 5112, - [SMALL_STATE(2340)] = 5185, - [SMALL_STATE(2341)] = 5254, - [SMALL_STATE(2342)] = 5323, - [SMALL_STATE(2343)] = 5392, - [SMALL_STATE(2344)] = 5473, - [SMALL_STATE(2345)] = 5544, - [SMALL_STATE(2346)] = 5615, - [SMALL_STATE(2347)] = 5684, - [SMALL_STATE(2348)] = 5765, - [SMALL_STATE(2349)] = 5840, - [SMALL_STATE(2350)] = 5909, - [SMALL_STATE(2351)] = 5978, - [SMALL_STATE(2352)] = 6055, - [SMALL_STATE(2353)] = 6124, - [SMALL_STATE(2354)] = 6193, - [SMALL_STATE(2355)] = 6262, - [SMALL_STATE(2356)] = 6331, - [SMALL_STATE(2357)] = 6400, - [SMALL_STATE(2358)] = 6469, - [SMALL_STATE(2359)] = 6538, - [SMALL_STATE(2360)] = 6612, - [SMALL_STATE(2361)] = 6688, - [SMALL_STATE(2362)] = 6756, - [SMALL_STATE(2363)] = 6828, - [SMALL_STATE(2364)] = 6904, - [SMALL_STATE(2365)] = 6976, - [SMALL_STATE(2366)] = 7048, - [SMALL_STATE(2367)] = 7118, - [SMALL_STATE(2368)] = 7194, - [SMALL_STATE(2369)] = 7266, - [SMALL_STATE(2370)] = 7338, - [SMALL_STATE(2371)] = 7406, - [SMALL_STATE(2372)] = 7478, - [SMALL_STATE(2373)] = 7552, - [SMALL_STATE(2374)] = 7632, - [SMALL_STATE(2375)] = 7702, - [SMALL_STATE(2376)] = 7778, - [SMALL_STATE(2377)] = 7848, - [SMALL_STATE(2378)] = 7920, - [SMALL_STATE(2379)] = 8000, - [SMALL_STATE(2380)] = 8076, - [SMALL_STATE(2381)] = 8152, - [SMALL_STATE(2382)] = 8228, - [SMALL_STATE(2383)] = 8308, - [SMALL_STATE(2384)] = 8380, - [SMALL_STATE(2385)] = 8454, - [SMALL_STATE(2386)] = 8534, - [SMALL_STATE(2387)] = 8606, - [SMALL_STATE(2388)] = 8676, - [SMALL_STATE(2389)] = 8752, - [SMALL_STATE(2390)] = 8824, - [SMALL_STATE(2391)] = 8900, - [SMALL_STATE(2392)] = 8980, - [SMALL_STATE(2393)] = 9054, - [SMALL_STATE(2394)] = 9129, - [SMALL_STATE(2395)] = 9204, - [SMALL_STATE(2396)] = 9271, - [SMALL_STATE(2397)] = 9338, - [SMALL_STATE(2398)] = 9417, - [SMALL_STATE(2399)] = 9486, - [SMALL_STATE(2400)] = 9553, - [SMALL_STATE(2401)] = 9620, - [SMALL_STATE(2402)] = 9687, - [SMALL_STATE(2403)] = 9754, - [SMALL_STATE(2404)] = 9821, - [SMALL_STATE(2405)] = 9900, - [SMALL_STATE(2406)] = 9967, - [SMALL_STATE(2407)] = 10034, - [SMALL_STATE(2408)] = 10101, - [SMALL_STATE(2409)] = 10180, - [SMALL_STATE(2410)] = 10247, - [SMALL_STATE(2411)] = 10314, - [SMALL_STATE(2412)] = 10381, - [SMALL_STATE(2413)] = 10454, - [SMALL_STATE(2414)] = 10527, - [SMALL_STATE(2415)] = 10594, - [SMALL_STATE(2416)] = 10665, - [SMALL_STATE(2417)] = 10736, - [SMALL_STATE(2418)] = 10807, - [SMALL_STATE(2419)] = 10880, - [SMALL_STATE(2420)] = 10955, - [SMALL_STATE(2421)] = 11030, - [SMALL_STATE(2422)] = 11105, - [SMALL_STATE(2423)] = 11174, - [SMALL_STATE(2424)] = 11245, - [SMALL_STATE(2425)] = 11318, - [SMALL_STATE(2426)] = 11391, - [SMALL_STATE(2427)] = 11464, - [SMALL_STATE(2428)] = 11537, - [SMALL_STATE(2429)] = 11612, - [SMALL_STATE(2430)] = 11687, - [SMALL_STATE(2431)] = 11758, - [SMALL_STATE(2432)] = 11831, - [SMALL_STATE(2433)] = 11904, - [SMALL_STATE(2434)] = 11977, - [SMALL_STATE(2435)] = 12052, - [SMALL_STATE(2436)] = 12119, - [SMALL_STATE(2437)] = 12186, - [SMALL_STATE(2438)] = 12253, - [SMALL_STATE(2439)] = 12320, - [SMALL_STATE(2440)] = 12387, - [SMALL_STATE(2441)] = 12458, - [SMALL_STATE(2442)] = 12527, - [SMALL_STATE(2443)] = 12606, - [SMALL_STATE(2444)] = 12685, - [SMALL_STATE(2445)] = 12758, - [SMALL_STATE(2446)] = 12829, - [SMALL_STATE(2447)] = 12896, - [SMALL_STATE(2448)] = 12971, - [SMALL_STATE(2449)] = 13044, - [SMALL_STATE(2450)] = 13117, - [SMALL_STATE(2451)] = 13190, - [SMALL_STATE(2452)] = 13263, - [SMALL_STATE(2453)] = 13334, - [SMALL_STATE(2454)] = 13409, - [SMALL_STATE(2455)] = 13476, - [SMALL_STATE(2456)] = 13544, - [SMALL_STATE(2457)] = 13650, - [SMALL_STATE(2458)] = 13722, - [SMALL_STATE(2459)] = 13792, - [SMALL_STATE(2460)] = 13858, - [SMALL_STATE(2461)] = 13924, - [SMALL_STATE(2462)] = 13990, - [SMALL_STATE(2463)] = 14060, - [SMALL_STATE(2464)] = 14128, - [SMALL_STATE(2465)] = 14198, - [SMALL_STATE(2466)] = 14266, - [SMALL_STATE(2467)] = 14334, - [SMALL_STATE(2468)] = 14402, - [SMALL_STATE(2469)] = 14474, - [SMALL_STATE(2470)] = 14580, - [SMALL_STATE(2471)] = 14652, - [SMALL_STATE(2472)] = 14718, - [SMALL_STATE(2473)] = 14786, - [SMALL_STATE(2474)] = 14854, - [SMALL_STATE(2475)] = 14922, - [SMALL_STATE(2476)] = 14990, - [SMALL_STATE(2477)] = 15058, - [SMALL_STATE(2478)] = 15124, - [SMALL_STATE(2479)] = 15192, - [SMALL_STATE(2480)] = 15262, - [SMALL_STATE(2481)] = 15330, - [SMALL_STATE(2482)] = 15402, - [SMALL_STATE(2483)] = 15508, - [SMALL_STATE(2484)] = 15576, - [SMALL_STATE(2485)] = 15646, - [SMALL_STATE(2486)] = 15714, - [SMALL_STATE(2487)] = 15782, - [SMALL_STATE(2488)] = 15848, - [SMALL_STATE(2489)] = 15918, - [SMALL_STATE(2490)] = 15988, - [SMALL_STATE(2491)] = 16054, - [SMALL_STATE(2492)] = 16124, - [SMALL_STATE(2493)] = 16194, - [SMALL_STATE(2494)] = 16266, - [SMALL_STATE(2495)] = 16336, - [SMALL_STATE(2496)] = 16404, - [SMALL_STATE(2497)] = 16482, - [SMALL_STATE(2498)] = 16560, - [SMALL_STATE(2499)] = 16638, - [SMALL_STATE(2500)] = 16706, - [SMALL_STATE(2501)] = 16776, - [SMALL_STATE(2502)] = 16846, - [SMALL_STATE(2503)] = 16916, - [SMALL_STATE(2504)] = 16986, - [SMALL_STATE(2505)] = 17054, - [SMALL_STATE(2506)] = 17124, - [SMALL_STATE(2507)] = 17194, - [SMALL_STATE(2508)] = 17262, - [SMALL_STATE(2509)] = 17340, - [SMALL_STATE(2510)] = 17418, - [SMALL_STATE(2511)] = 17524, - [SMALL_STATE(2512)] = 17594, - [SMALL_STATE(2513)] = 17700, - [SMALL_STATE(2514)] = 17770, - [SMALL_STATE(2515)] = 17840, - [SMALL_STATE(2516)] = 17910, - [SMALL_STATE(2517)] = 17978, - [SMALL_STATE(2518)] = 18084, - [SMALL_STATE(2519)] = 18154, - [SMALL_STATE(2520)] = 18260, - [SMALL_STATE(2521)] = 18330, - [SMALL_STATE(2522)] = 18398, - [SMALL_STATE(2523)] = 18504, - [SMALL_STATE(2524)] = 18574, - [SMALL_STATE(2525)] = 18644, - [SMALL_STATE(2526)] = 18712, - [SMALL_STATE(2527)] = 18782, - [SMALL_STATE(2528)] = 18852, - [SMALL_STATE(2529)] = 18922, - [SMALL_STATE(2530)] = 18990, - [SMALL_STATE(2531)] = 19055, - [SMALL_STATE(2532)] = 19152, - [SMALL_STATE(2533)] = 19217, - [SMALL_STATE(2534)] = 19306, - [SMALL_STATE(2535)] = 19387, - [SMALL_STATE(2536)] = 19464, - [SMALL_STATE(2537)] = 19549, - [SMALL_STATE(2538)] = 19642, - [SMALL_STATE(2539)] = 19737, - [SMALL_STATE(2540)] = 19802, - [SMALL_STATE(2541)] = 19867, - [SMALL_STATE(2542)] = 19932, - [SMALL_STATE(2543)] = 19997, - [SMALL_STATE(2544)] = 20062, - [SMALL_STATE(2545)] = 20127, - [SMALL_STATE(2546)] = 20192, - [SMALL_STATE(2547)] = 20257, - [SMALL_STATE(2548)] = 20322, - [SMALL_STATE(2549)] = 20387, - [SMALL_STATE(2550)] = 20452, - [SMALL_STATE(2551)] = 20517, - [SMALL_STATE(2552)] = 20582, - [SMALL_STATE(2553)] = 20647, - [SMALL_STATE(2554)] = 20712, - [SMALL_STATE(2555)] = 20777, - [SMALL_STATE(2556)] = 20842, - [SMALL_STATE(2557)] = 20907, - [SMALL_STATE(2558)] = 20972, - [SMALL_STATE(2559)] = 21037, - [SMALL_STATE(2560)] = 21102, - [SMALL_STATE(2561)] = 21171, - [SMALL_STATE(2562)] = 21236, - [SMALL_STATE(2563)] = 21301, - [SMALL_STATE(2564)] = 21366, - [SMALL_STATE(2565)] = 21431, - [SMALL_STATE(2566)] = 21496, - [SMALL_STATE(2567)] = 21561, - [SMALL_STATE(2568)] = 21632, - [SMALL_STATE(2569)] = 21697, - [SMALL_STATE(2570)] = 21762, - [SMALL_STATE(2571)] = 21827, - [SMALL_STATE(2572)] = 21892, - [SMALL_STATE(2573)] = 21957, - [SMALL_STATE(2574)] = 22022, - [SMALL_STATE(2575)] = 22087, - [SMALL_STATE(2576)] = 22152, - [SMALL_STATE(2577)] = 22217, - [SMALL_STATE(2578)] = 22282, - [SMALL_STATE(2579)] = 22347, - [SMALL_STATE(2580)] = 22412, - [SMALL_STATE(2581)] = 22477, - [SMALL_STATE(2582)] = 22542, - [SMALL_STATE(2583)] = 22639, - [SMALL_STATE(2584)] = 22704, - [SMALL_STATE(2585)] = 22781, - [SMALL_STATE(2586)] = 22846, - [SMALL_STATE(2587)] = 22911, - [SMALL_STATE(2588)] = 22976, - [SMALL_STATE(2589)] = 23041, - [SMALL_STATE(2590)] = 23106, - [SMALL_STATE(2591)] = 23171, - [SMALL_STATE(2592)] = 23236, - [SMALL_STATE(2593)] = 23301, - [SMALL_STATE(2594)] = 23366, - [SMALL_STATE(2595)] = 23431, - [SMALL_STATE(2596)] = 23496, - [SMALL_STATE(2597)] = 23561, - [SMALL_STATE(2598)] = 23626, - [SMALL_STATE(2599)] = 23691, - [SMALL_STATE(2600)] = 23756, - [SMALL_STATE(2601)] = 23821, - [SMALL_STATE(2602)] = 23886, - [SMALL_STATE(2603)] = 23951, - [SMALL_STATE(2604)] = 24018, - [SMALL_STATE(2605)] = 24095, - [SMALL_STATE(2606)] = 24160, - [SMALL_STATE(2607)] = 24225, - [SMALL_STATE(2608)] = 24290, - [SMALL_STATE(2609)] = 24367, - [SMALL_STATE(2610)] = 24444, - [SMALL_STATE(2611)] = 24509, - [SMALL_STATE(2612)] = 24574, - [SMALL_STATE(2613)] = 24675, - [SMALL_STATE(2614)] = 24740, - [SMALL_STATE(2615)] = 24805, - [SMALL_STATE(2616)] = 24870, - [SMALL_STATE(2617)] = 24937, - [SMALL_STATE(2618)] = 25002, - [SMALL_STATE(2619)] = 25067, - [SMALL_STATE(2620)] = 25140, - [SMALL_STATE(2621)] = 25205, - [SMALL_STATE(2622)] = 25272, - [SMALL_STATE(2623)] = 25337, - [SMALL_STATE(2624)] = 25406, - [SMALL_STATE(2625)] = 25471, - [SMALL_STATE(2626)] = 25536, - [SMALL_STATE(2627)] = 25601, - [SMALL_STATE(2628)] = 25702, - [SMALL_STATE(2629)] = 25767, - [SMALL_STATE(2630)] = 25832, - [SMALL_STATE(2631)] = 25897, - [SMALL_STATE(2632)] = 25962, - [SMALL_STATE(2633)] = 26031, - [SMALL_STATE(2634)] = 26096, - [SMALL_STATE(2635)] = 26161, - [SMALL_STATE(2636)] = 26226, - [SMALL_STATE(2637)] = 26291, - [SMALL_STATE(2638)] = 26356, - [SMALL_STATE(2639)] = 26421, - [SMALL_STATE(2640)] = 26486, - [SMALL_STATE(2641)] = 26551, - [SMALL_STATE(2642)] = 26616, - [SMALL_STATE(2643)] = 26681, - [SMALL_STATE(2644)] = 26746, - [SMALL_STATE(2645)] = 26811, - [SMALL_STATE(2646)] = 26876, - [SMALL_STATE(2647)] = 26941, - [SMALL_STATE(2648)] = 27006, - [SMALL_STATE(2649)] = 27071, - [SMALL_STATE(2650)] = 27172, - [SMALL_STATE(2651)] = 27273, - [SMALL_STATE(2652)] = 27342, - [SMALL_STATE(2653)] = 27409, - [SMALL_STATE(2654)] = 27474, - [SMALL_STATE(2655)] = 27539, - [SMALL_STATE(2656)] = 27604, - [SMALL_STATE(2657)] = 27669, - [SMALL_STATE(2658)] = 27766, - [SMALL_STATE(2659)] = 27831, - [SMALL_STATE(2660)] = 27896, - [SMALL_STATE(2661)] = 27961, - [SMALL_STATE(2662)] = 28026, - [SMALL_STATE(2663)] = 28091, - [SMALL_STATE(2664)] = 28156, - [SMALL_STATE(2665)] = 28221, - [SMALL_STATE(2666)] = 28286, - [SMALL_STATE(2667)] = 28351, - [SMALL_STATE(2668)] = 28416, - [SMALL_STATE(2669)] = 28481, - [SMALL_STATE(2670)] = 28546, - [SMALL_STATE(2671)] = 28611, - [SMALL_STATE(2672)] = 28676, - [SMALL_STATE(2673)] = 28753, - [SMALL_STATE(2674)] = 28818, - [SMALL_STATE(2675)] = 28883, - [SMALL_STATE(2676)] = 28948, - [SMALL_STATE(2677)] = 29013, - [SMALL_STATE(2678)] = 29078, - [SMALL_STATE(2679)] = 29155, - [SMALL_STATE(2680)] = 29220, - [SMALL_STATE(2681)] = 29285, - [SMALL_STATE(2682)] = 29350, - [SMALL_STATE(2683)] = 29415, - [SMALL_STATE(2684)] = 29480, - [SMALL_STATE(2685)] = 29545, - [SMALL_STATE(2686)] = 29646, - [SMALL_STATE(2687)] = 29715, - [SMALL_STATE(2688)] = 29782, - [SMALL_STATE(2689)] = 29851, - [SMALL_STATE(2690)] = 29928, - [SMALL_STATE(2691)] = 30005, - [SMALL_STATE(2692)] = 30070, - [SMALL_STATE(2693)] = 30135, - [SMALL_STATE(2694)] = 30200, - [SMALL_STATE(2695)] = 30265, - [SMALL_STATE(2696)] = 30330, - [SMALL_STATE(2697)] = 30395, - [SMALL_STATE(2698)] = 30460, - [SMALL_STATE(2699)] = 30525, - [SMALL_STATE(2700)] = 30590, - [SMALL_STATE(2701)] = 30655, - [SMALL_STATE(2702)] = 30752, - [SMALL_STATE(2703)] = 30817, - [SMALL_STATE(2704)] = 30882, - [SMALL_STATE(2705)] = 30947, - [SMALL_STATE(2706)] = 31012, - [SMALL_STATE(2707)] = 31077, - [SMALL_STATE(2708)] = 31142, - [SMALL_STATE(2709)] = 31207, - [SMALL_STATE(2710)] = 31272, - [SMALL_STATE(2711)] = 31337, - [SMALL_STATE(2712)] = 31402, - [SMALL_STATE(2713)] = 31467, - [SMALL_STATE(2714)] = 31532, - [SMALL_STATE(2715)] = 31597, - [SMALL_STATE(2716)] = 31662, - [SMALL_STATE(2717)] = 31727, - [SMALL_STATE(2718)] = 31828, - [SMALL_STATE(2719)] = 31929, - [SMALL_STATE(2720)] = 31994, - [SMALL_STATE(2721)] = 32059, - [SMALL_STATE(2722)] = 32160, - [SMALL_STATE(2723)] = 32229, - [SMALL_STATE(2724)] = 32296, - [SMALL_STATE(2725)] = 32373, - [SMALL_STATE(2726)] = 32450, - [SMALL_STATE(2727)] = 32519, - [SMALL_STATE(2728)] = 32584, - [SMALL_STATE(2729)] = 32649, - [SMALL_STATE(2730)] = 32714, - [SMALL_STATE(2731)] = 32779, - [SMALL_STATE(2732)] = 32844, - [SMALL_STATE(2733)] = 32909, - [SMALL_STATE(2734)] = 32974, - [SMALL_STATE(2735)] = 33039, - [SMALL_STATE(2736)] = 33104, - [SMALL_STATE(2737)] = 33205, - [SMALL_STATE(2738)] = 33306, - [SMALL_STATE(2739)] = 33371, - [SMALL_STATE(2740)] = 33436, - [SMALL_STATE(2741)] = 33501, - [SMALL_STATE(2742)] = 33566, - [SMALL_STATE(2743)] = 33631, - [SMALL_STATE(2744)] = 33706, - [SMALL_STATE(2745)] = 33771, - [SMALL_STATE(2746)] = 33836, - [SMALL_STATE(2747)] = 33901, - [SMALL_STATE(2748)] = 33966, - [SMALL_STATE(2749)] = 34037, - [SMALL_STATE(2750)] = 34102, - [SMALL_STATE(2751)] = 34167, - [SMALL_STATE(2752)] = 34232, - [SMALL_STATE(2753)] = 34303, - [SMALL_STATE(2754)] = 34382, - [SMALL_STATE(2755)] = 34451, - [SMALL_STATE(2756)] = 34515, - [SMALL_STATE(2757)] = 34591, - [SMALL_STATE(2758)] = 34657, - [SMALL_STATE(2759)] = 34723, - [SMALL_STATE(2760)] = 34787, - [SMALL_STATE(2761)] = 34853, - [SMALL_STATE(2762)] = 34921, - [SMALL_STATE(2763)] = 34987, - [SMALL_STATE(2764)] = 35053, - [SMALL_STATE(2765)] = 35129, - [SMALL_STATE(2766)] = 35195, - [SMALL_STATE(2767)] = 35271, - [SMALL_STATE(2768)] = 35339, - [SMALL_STATE(2769)] = 35407, - [SMALL_STATE(2770)] = 35471, - [SMALL_STATE(2771)] = 35547, - [SMALL_STATE(2772)] = 35613, - [SMALL_STATE(2773)] = 35683, - [SMALL_STATE(2774)] = 35749, - [SMALL_STATE(2775)] = 35817, - [SMALL_STATE(2776)] = 35883, - [SMALL_STATE(2777)] = 35947, - [SMALL_STATE(2778)] = 36013, - [SMALL_STATE(2779)] = 36077, - [SMALL_STATE(2780)] = 36143, - [SMALL_STATE(2781)] = 36213, - [SMALL_STATE(2782)] = 36289, - [SMALL_STATE(2783)] = 36357, - [SMALL_STATE(2784)] = 36423, - [SMALL_STATE(2785)] = 36499, - [SMALL_STATE(2786)] = 36565, - [SMALL_STATE(2787)] = 36633, - [SMALL_STATE(2788)] = 36701, - [SMALL_STATE(2789)] = 36767, - [SMALL_STATE(2790)] = 36843, - [SMALL_STATE(2791)] = 36919, - [SMALL_STATE(2792)] = 36987, - [SMALL_STATE(2793)] = 37053, - [SMALL_STATE(2794)] = 37129, - [SMALL_STATE(2795)] = 37205, - [SMALL_STATE(2796)] = 37271, - [SMALL_STATE(2797)] = 37335, - [SMALL_STATE(2798)] = 37399, - [SMALL_STATE(2799)] = 37463, - [SMALL_STATE(2800)] = 37539, - [SMALL_STATE(2801)] = 37603, - [SMALL_STATE(2802)] = 37667, - [SMALL_STATE(2803)] = 37735, - [SMALL_STATE(2804)] = 37811, - [SMALL_STATE(2805)] = 37875, - [SMALL_STATE(2806)] = 37939, - [SMALL_STATE(2807)] = 38009, - [SMALL_STATE(2808)] = 38113, - [SMALL_STATE(2809)] = 38177, - [SMALL_STATE(2810)] = 38241, - [SMALL_STATE(2811)] = 38307, - [SMALL_STATE(2812)] = 38375, - [SMALL_STATE(2813)] = 38441, - [SMALL_STATE(2814)] = 38507, - [SMALL_STATE(2815)] = 38573, - [SMALL_STATE(2816)] = 38641, - [SMALL_STATE(2817)] = 38705, - [SMALL_STATE(2818)] = 38809, - [SMALL_STATE(2819)] = 38875, - [SMALL_STATE(2820)] = 38939, - [SMALL_STATE(2821)] = 39003, - [SMALL_STATE(2822)] = 39079, - [SMALL_STATE(2823)] = 39149, - [SMALL_STATE(2824)] = 39213, - [SMALL_STATE(2825)] = 39281, - [SMALL_STATE(2826)] = 39349, - [SMALL_STATE(2827)] = 39415, - [SMALL_STATE(2828)] = 39479, - [SMALL_STATE(2829)] = 39543, - [SMALL_STATE(2830)] = 39607, - [SMALL_STATE(2831)] = 39671, - [SMALL_STATE(2832)] = 39735, - [SMALL_STATE(2833)] = 39801, - [SMALL_STATE(2834)] = 39865, - [SMALL_STATE(2835)] = 39933, - [SMALL_STATE(2836)] = 40009, - [SMALL_STATE(2837)] = 40075, - [SMALL_STATE(2838)] = 40141, - [SMALL_STATE(2839)] = 40207, - [SMALL_STATE(2840)] = 40273, - [SMALL_STATE(2841)] = 40349, - [SMALL_STATE(2842)] = 40453, - [SMALL_STATE(2843)] = 40557, - [SMALL_STATE(2844)] = 40656, - [SMALL_STATE(2845)] = 40719, - [SMALL_STATE(2846)] = 40782, - [SMALL_STATE(2847)] = 40845, - [SMALL_STATE(2848)] = 40908, - [SMALL_STATE(2849)] = 40979, - [SMALL_STATE(2850)] = 41042, - [SMALL_STATE(2851)] = 41105, - [SMALL_STATE(2852)] = 41206, - [SMALL_STATE(2853)] = 41269, - [SMALL_STATE(2854)] = 41332, - [SMALL_STATE(2855)] = 41395, - [SMALL_STATE(2856)] = 41458, - [SMALL_STATE(2857)] = 41521, - [SMALL_STATE(2858)] = 41586, - [SMALL_STATE(2859)] = 41655, - [SMALL_STATE(2860)] = 41718, - [SMALL_STATE(2861)] = 41781, - [SMALL_STATE(2862)] = 41844, - [SMALL_STATE(2863)] = 41919, - [SMALL_STATE(2864)] = 41982, - [SMALL_STATE(2865)] = 42045, - [SMALL_STATE(2866)] = 42108, - [SMALL_STATE(2867)] = 42183, - [SMALL_STATE(2868)] = 42246, - [SMALL_STATE(2869)] = 42309, - [SMALL_STATE(2870)] = 42372, - [SMALL_STATE(2871)] = 42435, - [SMALL_STATE(2872)] = 42498, - [SMALL_STATE(2873)] = 42561, - [SMALL_STATE(2874)] = 42624, - [SMALL_STATE(2875)] = 42687, - [SMALL_STATE(2876)] = 42750, - [SMALL_STATE(2877)] = 42813, - [SMALL_STATE(2878)] = 42882, - [SMALL_STATE(2879)] = 42953, - [SMALL_STATE(2880)] = 43022, - [SMALL_STATE(2881)] = 43091, - [SMALL_STATE(2882)] = 43160, - [SMALL_STATE(2883)] = 43223, - [SMALL_STATE(2884)] = 43286, - [SMALL_STATE(2885)] = 43349, - [SMALL_STATE(2886)] = 43418, - [SMALL_STATE(2887)] = 43481, - [SMALL_STATE(2888)] = 43544, - [SMALL_STATE(2889)] = 43607, - [SMALL_STATE(2890)] = 43670, - [SMALL_STATE(2891)] = 43733, - [SMALL_STATE(2892)] = 43800, - [SMALL_STATE(2893)] = 43895, - [SMALL_STATE(2894)] = 43962, - [SMALL_STATE(2895)] = 44029, - [SMALL_STATE(2896)] = 44092, - [SMALL_STATE(2897)] = 44155, - [SMALL_STATE(2898)] = 44218, - [SMALL_STATE(2899)] = 44285, - [SMALL_STATE(2900)] = 44348, - [SMALL_STATE(2901)] = 44411, - [SMALL_STATE(2902)] = 44476, - [SMALL_STATE(2903)] = 44575, - [SMALL_STATE(2904)] = 44638, - [SMALL_STATE(2905)] = 44701, - [SMALL_STATE(2906)] = 44764, - [SMALL_STATE(2907)] = 44827, - [SMALL_STATE(2908)] = 44890, - [SMALL_STATE(2909)] = 44953, - [SMALL_STATE(2910)] = 45016, - [SMALL_STATE(2911)] = 45079, - [SMALL_STATE(2912)] = 45142, - [SMALL_STATE(2913)] = 45205, - [SMALL_STATE(2914)] = 45268, - [SMALL_STATE(2915)] = 45331, - [SMALL_STATE(2916)] = 45394, - [SMALL_STATE(2917)] = 45457, - [SMALL_STATE(2918)] = 45520, - [SMALL_STATE(2919)] = 45585, - [SMALL_STATE(2920)] = 45648, - [SMALL_STATE(2921)] = 45711, - [SMALL_STATE(2922)] = 45782, - [SMALL_STATE(2923)] = 45845, - [SMALL_STATE(2924)] = 45908, - [SMALL_STATE(2925)] = 45971, - [SMALL_STATE(2926)] = 46042, - [SMALL_STATE(2927)] = 46113, - [SMALL_STATE(2928)] = 46184, - [SMALL_STATE(2929)] = 46255, - [SMALL_STATE(2930)] = 46318, - [SMALL_STATE(2931)] = 46383, - [SMALL_STATE(2932)] = 46446, - [SMALL_STATE(2933)] = 46509, - [SMALL_STATE(2934)] = 46580, - [SMALL_STATE(2935)] = 46651, - [SMALL_STATE(2936)] = 46714, - [SMALL_STATE(2937)] = 46777, - [SMALL_STATE(2938)] = 46840, - [SMALL_STATE(2939)] = 46903, - [SMALL_STATE(2940)] = 46966, - [SMALL_STATE(2941)] = 47029, - [SMALL_STATE(2942)] = 47092, - [SMALL_STATE(2943)] = 47155, - [SMALL_STATE(2944)] = 47218, - [SMALL_STATE(2945)] = 47281, - [SMALL_STATE(2946)] = 47344, - [SMALL_STATE(2947)] = 47407, - [SMALL_STATE(2948)] = 47476, - [SMALL_STATE(2949)] = 47539, - [SMALL_STATE(2950)] = 47602, - [SMALL_STATE(2951)] = 47665, - [SMALL_STATE(2952)] = 47764, - [SMALL_STATE(2953)] = 47839, - [SMALL_STATE(2954)] = 47914, - [SMALL_STATE(2955)] = 47977, - [SMALL_STATE(2956)] = 48040, - [SMALL_STATE(2957)] = 48103, - [SMALL_STATE(2958)] = 48166, - [SMALL_STATE(2959)] = 48265, - [SMALL_STATE(2960)] = 48328, - [SMALL_STATE(2961)] = 48391, - [SMALL_STATE(2962)] = 48460, - [SMALL_STATE(2963)] = 48523, - [SMALL_STATE(2964)] = 48586, - [SMALL_STATE(2965)] = 48649, - [SMALL_STATE(2966)] = 48712, - [SMALL_STATE(2967)] = 48775, - [SMALL_STATE(2968)] = 48838, - [SMALL_STATE(2969)] = 48901, - [SMALL_STATE(2970)] = 49002, - [SMALL_STATE(2971)] = 49067, - [SMALL_STATE(2972)] = 49130, - [SMALL_STATE(2973)] = 49193, - [SMALL_STATE(2974)] = 49256, - [SMALL_STATE(2975)] = 49331, - [SMALL_STATE(2976)] = 49396, - [SMALL_STATE(2977)] = 49497, - [SMALL_STATE(2978)] = 49598, - [SMALL_STATE(2979)] = 49699, - [SMALL_STATE(2980)] = 49762, - [SMALL_STATE(2981)] = 49863, - [SMALL_STATE(2982)] = 49926, - [SMALL_STATE(2983)] = 49997, - [SMALL_STATE(2984)] = 50060, - [SMALL_STATE(2985)] = 50123, - [SMALL_STATE(2986)] = 50186, - [SMALL_STATE(2987)] = 50249, - [SMALL_STATE(2988)] = 50312, - [SMALL_STATE(2989)] = 50375, - [SMALL_STATE(2990)] = 50438, - [SMALL_STATE(2991)] = 50501, - [SMALL_STATE(2992)] = 50576, - [SMALL_STATE(2993)] = 50641, - [SMALL_STATE(2994)] = 50704, - [SMALL_STATE(2995)] = 50767, - [SMALL_STATE(2996)] = 50830, - [SMALL_STATE(2997)] = 50893, - [SMALL_STATE(2998)] = 50956, - [SMALL_STATE(2999)] = 51019, - [SMALL_STATE(3000)] = 51082, - [SMALL_STATE(3001)] = 51183, - [SMALL_STATE(3002)] = 51246, - [SMALL_STATE(3003)] = 51309, - [SMALL_STATE(3004)] = 51372, - [SMALL_STATE(3005)] = 51437, - [SMALL_STATE(3006)] = 51500, - [SMALL_STATE(3007)] = 51563, - [SMALL_STATE(3008)] = 51638, - [SMALL_STATE(3009)] = 51701, - [SMALL_STATE(3010)] = 51776, - [SMALL_STATE(3011)] = 51877, - [SMALL_STATE(3012)] = 51940, - [SMALL_STATE(3013)] = 52003, - [SMALL_STATE(3014)] = 52066, - [SMALL_STATE(3015)] = 52129, - [SMALL_STATE(3016)] = 52192, - [SMALL_STATE(3017)] = 52293, - [SMALL_STATE(3018)] = 52356, - [SMALL_STATE(3019)] = 52421, - [SMALL_STATE(3020)] = 52522, - [SMALL_STATE(3021)] = 52585, - [SMALL_STATE(3022)] = 52648, - [SMALL_STATE(3023)] = 52749, - [SMALL_STATE(3024)] = 52812, - [SMALL_STATE(3025)] = 52913, - [SMALL_STATE(3026)] = 53014, - [SMALL_STATE(3027)] = 53077, - [SMALL_STATE(3028)] = 53178, - [SMALL_STATE(3029)] = 53241, - [SMALL_STATE(3030)] = 53304, - [SMALL_STATE(3031)] = 53369, - [SMALL_STATE(3032)] = 53470, - [SMALL_STATE(3033)] = 53533, - [SMALL_STATE(3034)] = 53596, - [SMALL_STATE(3035)] = 53659, - [SMALL_STATE(3036)] = 53724, - [SMALL_STATE(3037)] = 53787, - [SMALL_STATE(3038)] = 53850, - [SMALL_STATE(3039)] = 53913, - [SMALL_STATE(3040)] = 53976, - [SMALL_STATE(3041)] = 54039, - [SMALL_STATE(3042)] = 54102, - [SMALL_STATE(3043)] = 54169, - [SMALL_STATE(3044)] = 54234, - [SMALL_STATE(3045)] = 54297, - [SMALL_STATE(3046)] = 54372, - [SMALL_STATE(3047)] = 54437, - [SMALL_STATE(3048)] = 54512, - [SMALL_STATE(3049)] = 54575, - [SMALL_STATE(3050)] = 54638, - [SMALL_STATE(3051)] = 54701, - [SMALL_STATE(3052)] = 54764, - [SMALL_STATE(3053)] = 54827, - [SMALL_STATE(3054)] = 54890, - [SMALL_STATE(3055)] = 54953, - [SMALL_STATE(3056)] = 55016, - [SMALL_STATE(3057)] = 55079, - [SMALL_STATE(3058)] = 55142, - [SMALL_STATE(3059)] = 55205, - [SMALL_STATE(3060)] = 55304, - [SMALL_STATE(3061)] = 55403, - [SMALL_STATE(3062)] = 55466, - [SMALL_STATE(3063)] = 55529, - [SMALL_STATE(3064)] = 55596, - [SMALL_STATE(3065)] = 55661, - [SMALL_STATE(3066)] = 55724, - [SMALL_STATE(3067)] = 55799, - [SMALL_STATE(3068)] = 55874, - [SMALL_STATE(3069)] = 55937, - [SMALL_STATE(3070)] = 56000, - [SMALL_STATE(3071)] = 56063, - [SMALL_STATE(3072)] = 56164, - [SMALL_STATE(3073)] = 56227, - [SMALL_STATE(3074)] = 56296, - [SMALL_STATE(3075)] = 56359, - [SMALL_STATE(3076)] = 56422, - [SMALL_STATE(3077)] = 56485, - [SMALL_STATE(3078)] = 56548, - [SMALL_STATE(3079)] = 56617, - [SMALL_STATE(3080)] = 56688, - [SMALL_STATE(3081)] = 56759, - [SMALL_STATE(3082)] = 56822, - [SMALL_STATE(3083)] = 56885, - [SMALL_STATE(3084)] = 56948, - [SMALL_STATE(3085)] = 57011, - [SMALL_STATE(3086)] = 57074, - [SMALL_STATE(3087)] = 57137, - [SMALL_STATE(3088)] = 57200, - [SMALL_STATE(3089)] = 57263, - [SMALL_STATE(3090)] = 57358, - [SMALL_STATE(3091)] = 57421, - [SMALL_STATE(3092)] = 57484, - [SMALL_STATE(3093)] = 57547, - [SMALL_STATE(3094)] = 57610, - [SMALL_STATE(3095)] = 57673, - [SMALL_STATE(3096)] = 57772, - [SMALL_STATE(3097)] = 57871, - [SMALL_STATE(3098)] = 57970, - [SMALL_STATE(3099)] = 58033, - [SMALL_STATE(3100)] = 58096, - [SMALL_STATE(3101)] = 58159, - [SMALL_STATE(3102)] = 58222, - [SMALL_STATE(3103)] = 58285, - [SMALL_STATE(3104)] = 58358, - [SMALL_STATE(3105)] = 58427, - [SMALL_STATE(3106)] = 58496, - [SMALL_STATE(3107)] = 58573, - [SMALL_STATE(3108)] = 58668, - [SMALL_STATE(3109)] = 58755, - [SMALL_STATE(3110)] = 58834, - [SMALL_STATE(3111)] = 58909, - [SMALL_STATE(3112)] = 58992, - [SMALL_STATE(3113)] = 59083, - [SMALL_STATE(3114)] = 59176, - [SMALL_STATE(3115)] = 59239, - [SMALL_STATE(3116)] = 59302, - [SMALL_STATE(3117)] = 59365, - [SMALL_STATE(3118)] = 59428, - [SMALL_STATE(3119)] = 59491, - [SMALL_STATE(3120)] = 59556, - [SMALL_STATE(3121)] = 59631, - [SMALL_STATE(3122)] = 59694, - [SMALL_STATE(3123)] = 59757, - [SMALL_STATE(3124)] = 59852, - [SMALL_STATE(3125)] = 59927, - [SMALL_STATE(3126)] = 60002, - [SMALL_STATE(3127)] = 60065, - [SMALL_STATE(3128)] = 60128, - [SMALL_STATE(3129)] = 60191, - [SMALL_STATE(3130)] = 60290, - [SMALL_STATE(3131)] = 60353, - [SMALL_STATE(3132)] = 60427, - [SMALL_STATE(3133)] = 60525, - [SMALL_STATE(3134)] = 60595, - [SMALL_STATE(3135)] = 60657, - [SMALL_STATE(3136)] = 60727, - [SMALL_STATE(3137)] = 60829, - [SMALL_STATE(3138)] = 60895, - [SMALL_STATE(3139)] = 60965, - [SMALL_STATE(3140)] = 61035, - [SMALL_STATE(3141)] = 61137, - [SMALL_STATE(3142)] = 61239, - [SMALL_STATE(3143)] = 61305, - [SMALL_STATE(3144)] = 61407, - [SMALL_STATE(3145)] = 61473, - [SMALL_STATE(3146)] = 61539, - [SMALL_STATE(3147)] = 61605, - [SMALL_STATE(3148)] = 61691, - [SMALL_STATE(3149)] = 61761, - [SMALL_STATE(3150)] = 61839, - [SMALL_STATE(3151)] = 61901, - [SMALL_STATE(3152)] = 61963, - [SMALL_STATE(3153)] = 62027, - [SMALL_STATE(3154)] = 62093, - [SMALL_STATE(3155)] = 62161, - [SMALL_STATE(3156)] = 62235, - [SMALL_STATE(3157)] = 62309, - [SMALL_STATE(3158)] = 62371, - [SMALL_STATE(3159)] = 62439, - [SMALL_STATE(3160)] = 62507, - [SMALL_STATE(3161)] = 62575, - [SMALL_STATE(3162)] = 62643, - [SMALL_STATE(3163)] = 62711, - [SMALL_STATE(3164)] = 62773, - [SMALL_STATE(3165)] = 62837, - [SMALL_STATE(3166)] = 62905, - [SMALL_STATE(3167)] = 63003, - [SMALL_STATE(3168)] = 63067, - [SMALL_STATE(3169)] = 63169, - [SMALL_STATE(3170)] = 63235, - [SMALL_STATE(3171)] = 63297, - [SMALL_STATE(3172)] = 63359, - [SMALL_STATE(3173)] = 63461, - [SMALL_STATE(3174)] = 63525, - [SMALL_STATE(3175)] = 63591, - [SMALL_STATE(3176)] = 63655, - [SMALL_STATE(3177)] = 63721, - [SMALL_STATE(3178)] = 63797, - [SMALL_STATE(3179)] = 63859, - [SMALL_STATE(3180)] = 63957, - [SMALL_STATE(3181)] = 64021, - [SMALL_STATE(3182)] = 64119, - [SMALL_STATE(3183)] = 64185, - [SMALL_STATE(3184)] = 64283, - [SMALL_STATE(3185)] = 64349, - [SMALL_STATE(3186)] = 64415, - [SMALL_STATE(3187)] = 64481, - [SMALL_STATE(3188)] = 64545, - [SMALL_STATE(3189)] = 64643, - [SMALL_STATE(3190)] = 64725, - [SMALL_STATE(3191)] = 64791, - [SMALL_STATE(3192)] = 64855, - [SMALL_STATE(3193)] = 64917, - [SMALL_STATE(3194)] = 64981, - [SMALL_STATE(3195)] = 65079, - [SMALL_STATE(3196)] = 65169, - [SMALL_STATE(3197)] = 65267, - [SMALL_STATE(3198)] = 65337, - [SMALL_STATE(3199)] = 65429, - [SMALL_STATE(3200)] = 65495, - [SMALL_STATE(3201)] = 65557, - [SMALL_STATE(3202)] = 65625, - [SMALL_STATE(3203)] = 65689, - [SMALL_STATE(3204)] = 65751, - [SMALL_STATE(3205)] = 65813, - [SMALL_STATE(3206)] = 65885, - [SMALL_STATE(3207)] = 65953, - [SMALL_STATE(3208)] = 66055, - [SMALL_STATE(3209)] = 66117, - [SMALL_STATE(3210)] = 66181, - [SMALL_STATE(3211)] = 66243, - [SMALL_STATE(3212)] = 66309, - [SMALL_STATE(3213)] = 66371, - [SMALL_STATE(3214)] = 66439, - [SMALL_STATE(3215)] = 66507, - [SMALL_STATE(3216)] = 66575, - [SMALL_STATE(3217)] = 66643, - [SMALL_STATE(3218)] = 66707, - [SMALL_STATE(3219)] = 66801, - [SMALL_STATE(3220)] = 66899, - [SMALL_STATE(3221)] = 66963, - [SMALL_STATE(3222)] = 67027, - [SMALL_STATE(3223)] = 67093, - [SMALL_STATE(3224)] = 67157, - [SMALL_STATE(3225)] = 67223, - [SMALL_STATE(3226)] = 67317, - [SMALL_STATE(3227)] = 67387, - [SMALL_STATE(3228)] = 67457, - [SMALL_STATE(3229)] = 67531, - [SMALL_STATE(3230)] = 67605, - [SMALL_STATE(3231)] = 67667, - [SMALL_STATE(3232)] = 67741, - [SMALL_STATE(3233)] = 67809, - [SMALL_STATE(3234)] = 67877, - [SMALL_STATE(3235)] = 67939, - [SMALL_STATE(3236)] = 68005, - [SMALL_STATE(3237)] = 68079, - [SMALL_STATE(3238)] = 68145, - [SMALL_STATE(3239)] = 68209, - [SMALL_STATE(3240)] = 68283, - [SMALL_STATE(3241)] = 68357, - [SMALL_STATE(3242)] = 68431, - [SMALL_STATE(3243)] = 68495, - [SMALL_STATE(3244)] = 68589, - [SMALL_STATE(3245)] = 68651, - [SMALL_STATE(3246)] = 68713, - [SMALL_STATE(3247)] = 68807, - [SMALL_STATE(3248)] = 68873, - [SMALL_STATE(3249)] = 68935, - [SMALL_STATE(3250)] = 68999, - [SMALL_STATE(3251)] = 69063, - [SMALL_STATE(3252)] = 69127, - [SMALL_STATE(3253)] = 69191, - [SMALL_STATE(3254)] = 69253, - [SMALL_STATE(3255)] = 69315, - [SMALL_STATE(3256)] = 69413, - [SMALL_STATE(3257)] = 69483, - [SMALL_STATE(3258)] = 69549, - [SMALL_STATE(3259)] = 69615, - [SMALL_STATE(3260)] = 69717, - [SMALL_STATE(3261)] = 69783, - [SMALL_STATE(3262)] = 69847, - [SMALL_STATE(3263)] = 69911, - [SMALL_STATE(3264)] = 69977, - [SMALL_STATE(3265)] = 70039, - [SMALL_STATE(3266)] = 70101, - [SMALL_STATE(3267)] = 70163, - [SMALL_STATE(3268)] = 70231, - [SMALL_STATE(3269)] = 70305, - [SMALL_STATE(3270)] = 70367, - [SMALL_STATE(3271)] = 70435, - [SMALL_STATE(3272)] = 70496, - [SMALL_STATE(3273)] = 70557, - [SMALL_STATE(3274)] = 70618, - [SMALL_STATE(3275)] = 70679, - [SMALL_STATE(3276)] = 70740, - [SMALL_STATE(3277)] = 70801, - [SMALL_STATE(3278)] = 70862, - [SMALL_STATE(3279)] = 70923, - [SMALL_STATE(3280)] = 70984, - [SMALL_STATE(3281)] = 71045, - [SMALL_STATE(3282)] = 71106, - [SMALL_STATE(3283)] = 71167, - [SMALL_STATE(3284)] = 71236, - [SMALL_STATE(3285)] = 71297, - [SMALL_STATE(3286)] = 71358, - [SMALL_STATE(3287)] = 71419, - [SMALL_STATE(3288)] = 71480, - [SMALL_STATE(3289)] = 71541, - [SMALL_STATE(3290)] = 71610, - [SMALL_STATE(3291)] = 71671, - [SMALL_STATE(3292)] = 71740, - [SMALL_STATE(3293)] = 71809, - [SMALL_STATE(3294)] = 71870, - [SMALL_STATE(3295)] = 71931, - [SMALL_STATE(3296)] = 71994, - [SMALL_STATE(3297)] = 72055, - [SMALL_STATE(3298)] = 72116, - [SMALL_STATE(3299)] = 72177, - [SMALL_STATE(3300)] = 72238, - [SMALL_STATE(3301)] = 72331, - [SMALL_STATE(3302)] = 72392, - [SMALL_STATE(3303)] = 72453, - [SMALL_STATE(3304)] = 72514, - [SMALL_STATE(3305)] = 72577, - [SMALL_STATE(3306)] = 72638, - [SMALL_STATE(3307)] = 72699, - [SMALL_STATE(3308)] = 72760, - [SMALL_STATE(3309)] = 72825, - [SMALL_STATE(3310)] = 72886, - [SMALL_STATE(3311)] = 72947, - [SMALL_STATE(3312)] = 73040, - [SMALL_STATE(3313)] = 73101, - [SMALL_STATE(3314)] = 73162, - [SMALL_STATE(3315)] = 73223, - [SMALL_STATE(3316)] = 73284, - [SMALL_STATE(3317)] = 73345, - [SMALL_STATE(3318)] = 73408, - [SMALL_STATE(3319)] = 73469, - [SMALL_STATE(3320)] = 73530, - [SMALL_STATE(3321)] = 73591, - [SMALL_STATE(3322)] = 73652, - [SMALL_STATE(3323)] = 73713, - [SMALL_STATE(3324)] = 73776, - [SMALL_STATE(3325)] = 73837, - [SMALL_STATE(3326)] = 73902, - [SMALL_STATE(3327)] = 73963, - [SMALL_STATE(3328)] = 74024, - [SMALL_STATE(3329)] = 74087, - [SMALL_STATE(3330)] = 74148, - [SMALL_STATE(3331)] = 74217, - [SMALL_STATE(3332)] = 74278, - [SMALL_STATE(3333)] = 74339, - [SMALL_STATE(3334)] = 74402, - [SMALL_STATE(3335)] = 74463, - [SMALL_STATE(3336)] = 74524, - [SMALL_STATE(3337)] = 74585, - [SMALL_STATE(3338)] = 74646, - [SMALL_STATE(3339)] = 74707, - [SMALL_STATE(3340)] = 74768, - [SMALL_STATE(3341)] = 74865, - [SMALL_STATE(3342)] = 74926, - [SMALL_STATE(3343)] = 74987, - [SMALL_STATE(3344)] = 75084, - [SMALL_STATE(3345)] = 75145, - [SMALL_STATE(3346)] = 75212, - [SMALL_STATE(3347)] = 75273, - [SMALL_STATE(3348)] = 75334, - [SMALL_STATE(3349)] = 75395, - [SMALL_STATE(3350)] = 75456, - [SMALL_STATE(3351)] = 75517, - [SMALL_STATE(3352)] = 75578, - [SMALL_STATE(3353)] = 75639, - [SMALL_STATE(3354)] = 75700, - [SMALL_STATE(3355)] = 75761, - [SMALL_STATE(3356)] = 75822, - [SMALL_STATE(3357)] = 75883, - [SMALL_STATE(3358)] = 75944, - [SMALL_STATE(3359)] = 76005, - [SMALL_STATE(3360)] = 76066, - [SMALL_STATE(3361)] = 76127, - [SMALL_STATE(3362)] = 76224, - [SMALL_STATE(3363)] = 76321, - [SMALL_STATE(3364)] = 76382, - [SMALL_STATE(3365)] = 76479, - [SMALL_STATE(3366)] = 76540, - [SMALL_STATE(3367)] = 76601, - [SMALL_STATE(3368)] = 76662, - [SMALL_STATE(3369)] = 76723, - [SMALL_STATE(3370)] = 76784, - [SMALL_STATE(3371)] = 76845, - [SMALL_STATE(3372)] = 76906, - [SMALL_STATE(3373)] = 76967, - [SMALL_STATE(3374)] = 77028, - [SMALL_STATE(3375)] = 77089, - [SMALL_STATE(3376)] = 77150, - [SMALL_STATE(3377)] = 77217, - [SMALL_STATE(3378)] = 77314, - [SMALL_STATE(3379)] = 77375, - [SMALL_STATE(3380)] = 77436, - [SMALL_STATE(3381)] = 77497, - [SMALL_STATE(3382)] = 77560, - [SMALL_STATE(3383)] = 77623, - [SMALL_STATE(3384)] = 77684, - [SMALL_STATE(3385)] = 77745, - [SMALL_STATE(3386)] = 77806, - [SMALL_STATE(3387)] = 77867, - [SMALL_STATE(3388)] = 77930, - [SMALL_STATE(3389)] = 77991, - [SMALL_STATE(3390)] = 78054, - [SMALL_STATE(3391)] = 78119, - [SMALL_STATE(3392)] = 78182, - [SMALL_STATE(3393)] = 78249, - [SMALL_STATE(3394)] = 78322, - [SMALL_STATE(3395)] = 78383, - [SMALL_STATE(3396)] = 78456, - [SMALL_STATE(3397)] = 78517, - [SMALL_STATE(3398)] = 78586, - [SMALL_STATE(3399)] = 78647, - [SMALL_STATE(3400)] = 78708, - [SMALL_STATE(3401)] = 78769, - [SMALL_STATE(3402)] = 78830, - [SMALL_STATE(3403)] = 78891, - [SMALL_STATE(3404)] = 78952, - [SMALL_STATE(3405)] = 79013, - [SMALL_STATE(3406)] = 79074, - [SMALL_STATE(3407)] = 79135, - [SMALL_STATE(3408)] = 79200, - [SMALL_STATE(3409)] = 79263, - [SMALL_STATE(3410)] = 79324, - [SMALL_STATE(3411)] = 79421, - [SMALL_STATE(3412)] = 79484, - [SMALL_STATE(3413)] = 79555, - [SMALL_STATE(3414)] = 79616, - [SMALL_STATE(3415)] = 79677, - [SMALL_STATE(3416)] = 79738, - [SMALL_STATE(3417)] = 79799, - [SMALL_STATE(3418)] = 79866, - [SMALL_STATE(3419)] = 79927, - [SMALL_STATE(3420)] = 79988, - [SMALL_STATE(3421)] = 80051, - [SMALL_STATE(3422)] = 80114, - [SMALL_STATE(3423)] = 80175, - [SMALL_STATE(3424)] = 80236, - [SMALL_STATE(3425)] = 80297, - [SMALL_STATE(3426)] = 80364, - [SMALL_STATE(3427)] = 80439, - [SMALL_STATE(3428)] = 80500, - [SMALL_STATE(3429)] = 80561, - [SMALL_STATE(3430)] = 80628, - [SMALL_STATE(3431)] = 80697, - [SMALL_STATE(3432)] = 80758, - [SMALL_STATE(3433)] = 80819, - [SMALL_STATE(3434)] = 80884, - [SMALL_STATE(3435)] = 80977, - [SMALL_STATE(3436)] = 81038, - [SMALL_STATE(3437)] = 81099, - [SMALL_STATE(3438)] = 81184, - [SMALL_STATE(3439)] = 81245, - [SMALL_STATE(3440)] = 81306, - [SMALL_STATE(3441)] = 81399, - [SMALL_STATE(3442)] = 81460, - [SMALL_STATE(3443)] = 81537, - [SMALL_STATE(3444)] = 81606, - [SMALL_STATE(3445)] = 81679, - [SMALL_STATE(3446)] = 81760, - [SMALL_STATE(3447)] = 81849, - [SMALL_STATE(3448)] = 81940, - [SMALL_STATE(3449)] = 82007, - [SMALL_STATE(3450)] = 82068, - [SMALL_STATE(3451)] = 82129, - [SMALL_STATE(3452)] = 82190, - [SMALL_STATE(3453)] = 82251, - [SMALL_STATE(3454)] = 82312, - [SMALL_STATE(3455)] = 82373, - [SMALL_STATE(3456)] = 82434, - [SMALL_STATE(3457)] = 82495, - [SMALL_STATE(3458)] = 82556, - [SMALL_STATE(3459)] = 82617, - [SMALL_STATE(3460)] = 82678, - [SMALL_STATE(3461)] = 82739, - [SMALL_STATE(3462)] = 82800, - [SMALL_STATE(3463)] = 82861, - [SMALL_STATE(3464)] = 82934, - [SMALL_STATE(3465)] = 82995, - [SMALL_STATE(3466)] = 83056, - [SMALL_STATE(3467)] = 83117, - [SMALL_STATE(3468)] = 83178, - [SMALL_STATE(3469)] = 83239, - [SMALL_STATE(3470)] = 83300, - [SMALL_STATE(3471)] = 83361, - [SMALL_STATE(3472)] = 83422, - [SMALL_STATE(3473)] = 83495, - [SMALL_STATE(3474)] = 83556, - [SMALL_STATE(3475)] = 83617, - [SMALL_STATE(3476)] = 83678, - [SMALL_STATE(3477)] = 83739, - [SMALL_STATE(3478)] = 83836, - [SMALL_STATE(3479)] = 83933, - [SMALL_STATE(3480)] = 83994, - [SMALL_STATE(3481)] = 84055, - [SMALL_STATE(3482)] = 84116, - [SMALL_STATE(3483)] = 84177, - [SMALL_STATE(3484)] = 84238, - [SMALL_STATE(3485)] = 84299, - [SMALL_STATE(3486)] = 84360, - [SMALL_STATE(3487)] = 84427, - [SMALL_STATE(3488)] = 84488, - [SMALL_STATE(3489)] = 84549, - [SMALL_STATE(3490)] = 84610, - [SMALL_STATE(3491)] = 84671, - [SMALL_STATE(3492)] = 84732, - [SMALL_STATE(3493)] = 84799, - [SMALL_STATE(3494)] = 84860, - [SMALL_STATE(3495)] = 84921, - [SMALL_STATE(3496)] = 84990, - [SMALL_STATE(3497)] = 85051, - [SMALL_STATE(3498)] = 85112, - [SMALL_STATE(3499)] = 85173, - [SMALL_STATE(3500)] = 85234, - [SMALL_STATE(3501)] = 85299, - [SMALL_STATE(3502)] = 85364, - [SMALL_STATE(3503)] = 85425, - [SMALL_STATE(3504)] = 85486, - [SMALL_STATE(3505)] = 85555, - [SMALL_STATE(3506)] = 85616, - [SMALL_STATE(3507)] = 85677, - [SMALL_STATE(3508)] = 85742, - [SMALL_STATE(3509)] = 85811, - [SMALL_STATE(3510)] = 85884, - [SMALL_STATE(3511)] = 85945, - [SMALL_STATE(3512)] = 86042, - [SMALL_STATE(3513)] = 86105, - [SMALL_STATE(3514)] = 86166, - [SMALL_STATE(3515)] = 86227, - [SMALL_STATE(3516)] = 86294, - [SMALL_STATE(3517)] = 86355, - [SMALL_STATE(3518)] = 86420, - [SMALL_STATE(3519)] = 86481, - [SMALL_STATE(3520)] = 86542, - [SMALL_STATE(3521)] = 86603, - [SMALL_STATE(3522)] = 86664, - [SMALL_STATE(3523)] = 86725, - [SMALL_STATE(3524)] = 86786, - [SMALL_STATE(3525)] = 86847, - [SMALL_STATE(3526)] = 86910, - [SMALL_STATE(3527)] = 86974, - [SMALL_STATE(3528)] = 87036, - [SMALL_STATE(3529)] = 87098, - [SMALL_STATE(3530)] = 87160, - [SMALL_STATE(3531)] = 87222, - [SMALL_STATE(3532)] = 87286, - [SMALL_STATE(3533)] = 87348, - [SMALL_STATE(3534)] = 87410, - [SMALL_STATE(3535)] = 87510, - [SMALL_STATE(3536)] = 87570, - [SMALL_STATE(3537)] = 87630, - [SMALL_STATE(3538)] = 87692, - [SMALL_STATE(3539)] = 87752, - [SMALL_STATE(3540)] = 87814, - [SMALL_STATE(3541)] = 87876, - [SMALL_STATE(3542)] = 87938, - [SMALL_STATE(3543)] = 88000, - [SMALL_STATE(3544)] = 88060, - [SMALL_STATE(3545)] = 88120, - [SMALL_STATE(3546)] = 88186, - [SMALL_STATE(3547)] = 88248, - [SMALL_STATE(3548)] = 88310, - [SMALL_STATE(3549)] = 88372, - [SMALL_STATE(3550)] = 88434, - [SMALL_STATE(3551)] = 88496, - [SMALL_STATE(3552)] = 88558, - [SMALL_STATE(3553)] = 88618, - [SMALL_STATE(3554)] = 88678, - [SMALL_STATE(3555)] = 88738, - [SMALL_STATE(3556)] = 88800, - [SMALL_STATE(3557)] = 88860, - [SMALL_STATE(3558)] = 88922, - [SMALL_STATE(3559)] = 88984, - [SMALL_STATE(3560)] = 89048, - [SMALL_STATE(3561)] = 89110, - [SMALL_STATE(3562)] = 89172, - [SMALL_STATE(3563)] = 89272, - [SMALL_STATE(3564)] = 89372, - [SMALL_STATE(3565)] = 89436, - [SMALL_STATE(3566)] = 89536, - [SMALL_STATE(3567)] = 89602, - [SMALL_STATE(3568)] = 89662, - [SMALL_STATE(3569)] = 89724, - [SMALL_STATE(3570)] = 89786, - [SMALL_STATE(3571)] = 89886, - [SMALL_STATE(3572)] = 89948, - [SMALL_STATE(3573)] = 90048, - [SMALL_STATE(3574)] = 90112, - [SMALL_STATE(3575)] = 90172, - [SMALL_STATE(3576)] = 90236, - [SMALL_STATE(3577)] = 90296, - [SMALL_STATE(3578)] = 90358, - [SMALL_STATE(3579)] = 90422, - [SMALL_STATE(3580)] = 90486, - [SMALL_STATE(3581)] = 90550, - [SMALL_STATE(3582)] = 90614, - [SMALL_STATE(3583)] = 90678, - [SMALL_STATE(3584)] = 90738, - [SMALL_STATE(3585)] = 90798, - [SMALL_STATE(3586)] = 90858, - [SMALL_STATE(3587)] = 90918, - [SMALL_STATE(3588)] = 90978, - [SMALL_STATE(3589)] = 91038, - [SMALL_STATE(3590)] = 91100, - [SMALL_STATE(3591)] = 91166, - [SMALL_STATE(3592)] = 91226, - [SMALL_STATE(3593)] = 91286, - [SMALL_STATE(3594)] = 91350, - [SMALL_STATE(3595)] = 91410, - [SMALL_STATE(3596)] = 91470, - [SMALL_STATE(3597)] = 91530, - [SMALL_STATE(3598)] = 91590, - [SMALL_STATE(3599)] = 91656, - [SMALL_STATE(3600)] = 91716, - [SMALL_STATE(3601)] = 91776, - [SMALL_STATE(3602)] = 91836, - [SMALL_STATE(3603)] = 91896, - [SMALL_STATE(3604)] = 91960, - [SMALL_STATE(3605)] = 92024, - [SMALL_STATE(3606)] = 92088, - [SMALL_STATE(3607)] = 92150, - [SMALL_STATE(3608)] = 92214, - [SMALL_STATE(3609)] = 92274, - [SMALL_STATE(3610)] = 92338, - [SMALL_STATE(3611)] = 92402, - [SMALL_STATE(3612)] = 92468, - [SMALL_STATE(3613)] = 92568, - [SMALL_STATE(3614)] = 92628, - [SMALL_STATE(3615)] = 92688, - [SMALL_STATE(3616)] = 92748, - [SMALL_STATE(3617)] = 92808, - [SMALL_STATE(3618)] = 92868, - [SMALL_STATE(3619)] = 92928, - [SMALL_STATE(3620)] = 92988, - [SMALL_STATE(3621)] = 93048, - [SMALL_STATE(3622)] = 93108, - [SMALL_STATE(3623)] = 93168, - [SMALL_STATE(3624)] = 93228, - [SMALL_STATE(3625)] = 93288, - [SMALL_STATE(3626)] = 93348, - [SMALL_STATE(3627)] = 93408, - [SMALL_STATE(3628)] = 93468, - [SMALL_STATE(3629)] = 93528, - [SMALL_STATE(3630)] = 93588, - [SMALL_STATE(3631)] = 93648, - [SMALL_STATE(3632)] = 93708, - [SMALL_STATE(3633)] = 93768, - [SMALL_STATE(3634)] = 93828, - [SMALL_STATE(3635)] = 93888, - [SMALL_STATE(3636)] = 93948, - [SMALL_STATE(3637)] = 94008, - [SMALL_STATE(3638)] = 94068, - [SMALL_STATE(3639)] = 94128, - [SMALL_STATE(3640)] = 94188, - [SMALL_STATE(3641)] = 94248, - [SMALL_STATE(3642)] = 94308, - [SMALL_STATE(3643)] = 94368, - [SMALL_STATE(3644)] = 94428, - [SMALL_STATE(3645)] = 94488, - [SMALL_STATE(3646)] = 94588, - [SMALL_STATE(3647)] = 94648, - [SMALL_STATE(3648)] = 94708, - [SMALL_STATE(3649)] = 94768, - [SMALL_STATE(3650)] = 94828, - [SMALL_STATE(3651)] = 94888, - [SMALL_STATE(3652)] = 94948, - [SMALL_STATE(3653)] = 95008, - [SMALL_STATE(3654)] = 95068, - [SMALL_STATE(3655)] = 95128, - [SMALL_STATE(3656)] = 95188, - [SMALL_STATE(3657)] = 95248, - [SMALL_STATE(3658)] = 95308, - [SMALL_STATE(3659)] = 95368, - [SMALL_STATE(3660)] = 95428, - [SMALL_STATE(3661)] = 95488, - [SMALL_STATE(3662)] = 95548, - [SMALL_STATE(3663)] = 95608, - [SMALL_STATE(3664)] = 95668, - [SMALL_STATE(3665)] = 95728, - [SMALL_STATE(3666)] = 95788, - [SMALL_STATE(3667)] = 95848, - [SMALL_STATE(3668)] = 95908, - [SMALL_STATE(3669)] = 95968, - [SMALL_STATE(3670)] = 96028, - [SMALL_STATE(3671)] = 96088, - [SMALL_STATE(3672)] = 96148, - [SMALL_STATE(3673)] = 96208, - [SMALL_STATE(3674)] = 96268, - [SMALL_STATE(3675)] = 96328, - [SMALL_STATE(3676)] = 96388, - [SMALL_STATE(3677)] = 96448, - [SMALL_STATE(3678)] = 96508, - [SMALL_STATE(3679)] = 96568, - [SMALL_STATE(3680)] = 96630, - [SMALL_STATE(3681)] = 96690, - [SMALL_STATE(3682)] = 96750, - [SMALL_STATE(3683)] = 96812, - [SMALL_STATE(3684)] = 96872, - [SMALL_STATE(3685)] = 96932, - [SMALL_STATE(3686)] = 96992, - [SMALL_STATE(3687)] = 97052, - [SMALL_STATE(3688)] = 97112, - [SMALL_STATE(3689)] = 97172, - [SMALL_STATE(3690)] = 97232, - [SMALL_STATE(3691)] = 97292, - [SMALL_STATE(3692)] = 97358, - [SMALL_STATE(3693)] = 97418, - [SMALL_STATE(3694)] = 97478, - [SMALL_STATE(3695)] = 97538, - [SMALL_STATE(3696)] = 97598, - [SMALL_STATE(3697)] = 97658, - [SMALL_STATE(3698)] = 97718, - [SMALL_STATE(3699)] = 97778, - [SMALL_STATE(3700)] = 97842, - [SMALL_STATE(3701)] = 97902, - [SMALL_STATE(3702)] = 97962, - [SMALL_STATE(3703)] = 98022, - [SMALL_STATE(3704)] = 98082, - [SMALL_STATE(3705)] = 98142, - [SMALL_STATE(3706)] = 98202, - [SMALL_STATE(3707)] = 98262, - [SMALL_STATE(3708)] = 98322, - [SMALL_STATE(3709)] = 98382, - [SMALL_STATE(3710)] = 98442, - [SMALL_STATE(3711)] = 98502, - [SMALL_STATE(3712)] = 98562, - [SMALL_STATE(3713)] = 98622, - [SMALL_STATE(3714)] = 98682, - [SMALL_STATE(3715)] = 98742, - [SMALL_STATE(3716)] = 98802, - [SMALL_STATE(3717)] = 98862, - [SMALL_STATE(3718)] = 98922, - [SMALL_STATE(3719)] = 98982, - [SMALL_STATE(3720)] = 99042, - [SMALL_STATE(3721)] = 99102, - [SMALL_STATE(3722)] = 99162, - [SMALL_STATE(3723)] = 99222, - [SMALL_STATE(3724)] = 99282, - [SMALL_STATE(3725)] = 99342, - [SMALL_STATE(3726)] = 99402, - [SMALL_STATE(3727)] = 99462, - [SMALL_STATE(3728)] = 99562, - [SMALL_STATE(3729)] = 99626, - [SMALL_STATE(3730)] = 99686, - [SMALL_STATE(3731)] = 99746, - [SMALL_STATE(3732)] = 99806, - [SMALL_STATE(3733)] = 99906, - [SMALL_STATE(3734)] = 99970, - [SMALL_STATE(3735)] = 100030, - [SMALL_STATE(3736)] = 100094, - [SMALL_STATE(3737)] = 100158, - [SMALL_STATE(3738)] = 100258, - [SMALL_STATE(3739)] = 100358, - [SMALL_STATE(3740)] = 100422, - [SMALL_STATE(3741)] = 100522, - [SMALL_STATE(3742)] = 100622, - [SMALL_STATE(3743)] = 100686, - [SMALL_STATE(3744)] = 100750, - [SMALL_STATE(3745)] = 100814, - [SMALL_STATE(3746)] = 100878, - [SMALL_STATE(3747)] = 100978, - [SMALL_STATE(3748)] = 101042, - [SMALL_STATE(3749)] = 101106, - [SMALL_STATE(3750)] = 101168, - [SMALL_STATE(3751)] = 101228, - [SMALL_STATE(3752)] = 101292, - [SMALL_STATE(3753)] = 101356, - [SMALL_STATE(3754)] = 101416, - [SMALL_STATE(3755)] = 101480, - [SMALL_STATE(3756)] = 101542, - [SMALL_STATE(3757)] = 101604, - [SMALL_STATE(3758)] = 101668, - [SMALL_STATE(3759)] = 101728, - [SMALL_STATE(3760)] = 101792, - [SMALL_STATE(3761)] = 101856, - [SMALL_STATE(3762)] = 101922, - [SMALL_STATE(3763)] = 101982, - [SMALL_STATE(3764)] = 102046, - [SMALL_STATE(3765)] = 102106, - [SMALL_STATE(3766)] = 102166, - [SMALL_STATE(3767)] = 102226, - [SMALL_STATE(3768)] = 102286, - [SMALL_STATE(3769)] = 102346, - [SMALL_STATE(3770)] = 102406, - [SMALL_STATE(3771)] = 102466, - [SMALL_STATE(3772)] = 102526, - [SMALL_STATE(3773)] = 102586, - [SMALL_STATE(3774)] = 102646, - [SMALL_STATE(3775)] = 102706, - [SMALL_STATE(3776)] = 102766, - [SMALL_STATE(3777)] = 102826, - [SMALL_STATE(3778)] = 102886, - [SMALL_STATE(3779)] = 102946, - [SMALL_STATE(3780)] = 103006, - [SMALL_STATE(3781)] = 103066, - [SMALL_STATE(3782)] = 103126, - [SMALL_STATE(3783)] = 103190, - [SMALL_STATE(3784)] = 103250, - [SMALL_STATE(3785)] = 103312, - [SMALL_STATE(3786)] = 103374, - [SMALL_STATE(3787)] = 103436, - [SMALL_STATE(3788)] = 103500, - [SMALL_STATE(3789)] = 103562, - [SMALL_STATE(3790)] = 103624, - [SMALL_STATE(3791)] = 103686, - [SMALL_STATE(3792)] = 103748, - [SMALL_STATE(3793)] = 103810, - [SMALL_STATE(3794)] = 103876, - [SMALL_STATE(3795)] = 103936, - [SMALL_STATE(3796)] = 104002, - [SMALL_STATE(3797)] = 104062, - [SMALL_STATE(3798)] = 104128, - [SMALL_STATE(3799)] = 104228, - [SMALL_STATE(3800)] = 104292, - [SMALL_STATE(3801)] = 104356, - [SMALL_STATE(3802)] = 104456, - [SMALL_STATE(3803)] = 104520, - [SMALL_STATE(3804)] = 104620, - [SMALL_STATE(3805)] = 104684, - [SMALL_STATE(3806)] = 104748, - [SMALL_STATE(3807)] = 104808, - [SMALL_STATE(3808)] = 104867, - [SMALL_STATE(3809)] = 104926, - [SMALL_STATE(3810)] = 104985, - [SMALL_STATE(3811)] = 105044, - [SMALL_STATE(3812)] = 105103, - [SMALL_STATE(3813)] = 105162, - [SMALL_STATE(3814)] = 105221, - [SMALL_STATE(3815)] = 105280, - [SMALL_STATE(3816)] = 105339, - [SMALL_STATE(3817)] = 105434, - [SMALL_STATE(3818)] = 105493, - [SMALL_STATE(3819)] = 105552, - [SMALL_STATE(3820)] = 105611, - [SMALL_STATE(3821)] = 105670, - [SMALL_STATE(3822)] = 105729, - [SMALL_STATE(3823)] = 105788, - [SMALL_STATE(3824)] = 105847, - [SMALL_STATE(3825)] = 105906, - [SMALL_STATE(3826)] = 106001, - [SMALL_STATE(3827)] = 106060, - [SMALL_STATE(3828)] = 106119, - [SMALL_STATE(3829)] = 106178, - [SMALL_STATE(3830)] = 106237, - [SMALL_STATE(3831)] = 106298, - [SMALL_STATE(3832)] = 106357, - [SMALL_STATE(3833)] = 106416, - [SMALL_STATE(3834)] = 106475, - [SMALL_STATE(3835)] = 106534, - [SMALL_STATE(3836)] = 106593, - [SMALL_STATE(3837)] = 106652, - [SMALL_STATE(3838)] = 106711, - [SMALL_STATE(3839)] = 106770, - [SMALL_STATE(3840)] = 106829, - [SMALL_STATE(3841)] = 106888, - [SMALL_STATE(3842)] = 106947, - [SMALL_STATE(3843)] = 107006, - [SMALL_STATE(3844)] = 107065, - [SMALL_STATE(3845)] = 107126, - [SMALL_STATE(3846)] = 107185, - [SMALL_STATE(3847)] = 107244, - [SMALL_STATE(3848)] = 107303, - [SMALL_STATE(3849)] = 107364, - [SMALL_STATE(3850)] = 107435, - [SMALL_STATE(3851)] = 107494, - [SMALL_STATE(3852)] = 107565, - [SMALL_STATE(3853)] = 107636, - [SMALL_STATE(3854)] = 107695, - [SMALL_STATE(3855)] = 107754, - [SMALL_STATE(3856)] = 107813, - [SMALL_STATE(3857)] = 107874, - [SMALL_STATE(3858)] = 107933, - [SMALL_STATE(3859)] = 107992, - [SMALL_STATE(3860)] = 108051, - [SMALL_STATE(3861)] = 108112, - [SMALL_STATE(3862)] = 108171, - [SMALL_STATE(3863)] = 108230, - [SMALL_STATE(3864)] = 108289, - [SMALL_STATE(3865)] = 108348, - [SMALL_STATE(3866)] = 108407, - [SMALL_STATE(3867)] = 108466, - [SMALL_STATE(3868)] = 108525, - [SMALL_STATE(3869)] = 108584, - [SMALL_STATE(3870)] = 108643, - [SMALL_STATE(3871)] = 108702, - [SMALL_STATE(3872)] = 108761, - [SMALL_STATE(3873)] = 108820, - [SMALL_STATE(3874)] = 108879, - [SMALL_STATE(3875)] = 108938, - [SMALL_STATE(3876)] = 108997, - [SMALL_STATE(3877)] = 109056, - [SMALL_STATE(3878)] = 109115, - [SMALL_STATE(3879)] = 109174, - [SMALL_STATE(3880)] = 109233, - [SMALL_STATE(3881)] = 109292, - [SMALL_STATE(3882)] = 109351, - [SMALL_STATE(3883)] = 109410, - [SMALL_STATE(3884)] = 109469, - [SMALL_STATE(3885)] = 109530, - [SMALL_STATE(3886)] = 109589, - [SMALL_STATE(3887)] = 109648, - [SMALL_STATE(3888)] = 109707, - [SMALL_STATE(3889)] = 109766, - [SMALL_STATE(3890)] = 109825, - [SMALL_STATE(3891)] = 109884, - [SMALL_STATE(3892)] = 109943, - [SMALL_STATE(3893)] = 110004, - [SMALL_STATE(3894)] = 110063, - [SMALL_STATE(3895)] = 110122, - [SMALL_STATE(3896)] = 110181, - [SMALL_STATE(3897)] = 110240, - [SMALL_STATE(3898)] = 110299, - [SMALL_STATE(3899)] = 110358, - [SMALL_STATE(3900)] = 110417, - [SMALL_STATE(3901)] = 110476, - [SMALL_STATE(3902)] = 110535, - [SMALL_STATE(3903)] = 110594, - [SMALL_STATE(3904)] = 110653, - [SMALL_STATE(3905)] = 110714, - [SMALL_STATE(3906)] = 110773, - [SMALL_STATE(3907)] = 110832, - [SMALL_STATE(3908)] = 110891, - [SMALL_STATE(3909)] = 110950, - [SMALL_STATE(3910)] = 111009, - [SMALL_STATE(3911)] = 111068, - [SMALL_STATE(3912)] = 111127, - [SMALL_STATE(3913)] = 111186, - [SMALL_STATE(3914)] = 111245, - [SMALL_STATE(3915)] = 111304, - [SMALL_STATE(3916)] = 111363, - [SMALL_STATE(3917)] = 111422, - [SMALL_STATE(3918)] = 111481, - [SMALL_STATE(3919)] = 111542, - [SMALL_STATE(3920)] = 111605, - [SMALL_STATE(3921)] = 111664, - [SMALL_STATE(3922)] = 111723, - [SMALL_STATE(3923)] = 111782, - [SMALL_STATE(3924)] = 111841, - [SMALL_STATE(3925)] = 111900, - [SMALL_STATE(3926)] = 111959, - [SMALL_STATE(3927)] = 112018, - [SMALL_STATE(3928)] = 112079, - [SMALL_STATE(3929)] = 112138, - [SMALL_STATE(3930)] = 112197, - [SMALL_STATE(3931)] = 112258, - [SMALL_STATE(3932)] = 112317, - [SMALL_STATE(3933)] = 112376, - [SMALL_STATE(3934)] = 112435, - [SMALL_STATE(3935)] = 112494, - [SMALL_STATE(3936)] = 112553, - [SMALL_STATE(3937)] = 112612, - [SMALL_STATE(3938)] = 112671, - [SMALL_STATE(3939)] = 112730, - [SMALL_STATE(3940)] = 112789, - [SMALL_STATE(3941)] = 112848, - [SMALL_STATE(3942)] = 112907, - [SMALL_STATE(3943)] = 112966, - [SMALL_STATE(3944)] = 113025, - [SMALL_STATE(3945)] = 113084, - [SMALL_STATE(3946)] = 113143, - [SMALL_STATE(3947)] = 113202, - [SMALL_STATE(3948)] = 113265, - [SMALL_STATE(3949)] = 113326, - [SMALL_STATE(3950)] = 113385, - [SMALL_STATE(3951)] = 113456, - [SMALL_STATE(3952)] = 113527, - [SMALL_STATE(3953)] = 113586, - [SMALL_STATE(3954)] = 113645, - [SMALL_STATE(3955)] = 113704, - [SMALL_STATE(3956)] = 113763, - [SMALL_STATE(3957)] = 113822, - [SMALL_STATE(3958)] = 113881, - [SMALL_STATE(3959)] = 113940, - [SMALL_STATE(3960)] = 113999, - [SMALL_STATE(3961)] = 114058, - [SMALL_STATE(3962)] = 114117, - [SMALL_STATE(3963)] = 114176, - [SMALL_STATE(3964)] = 114235, - [SMALL_STATE(3965)] = 114294, - [SMALL_STATE(3966)] = 114353, - [SMALL_STATE(3967)] = 114412, - [SMALL_STATE(3968)] = 114471, - [SMALL_STATE(3969)] = 114530, - [SMALL_STATE(3970)] = 114589, - [SMALL_STATE(3971)] = 114648, - [SMALL_STATE(3972)] = 114707, - [SMALL_STATE(3973)] = 114766, - [SMALL_STATE(3974)] = 114829, - [SMALL_STATE(3975)] = 114920, - [SMALL_STATE(3976)] = 114979, - [SMALL_STATE(3977)] = 115038, - [SMALL_STATE(3978)] = 115097, - [SMALL_STATE(3979)] = 115156, - [SMALL_STATE(3980)] = 115247, - [SMALL_STATE(3981)] = 115306, - [SMALL_STATE(3982)] = 115365, - [SMALL_STATE(3983)] = 115424, - [SMALL_STATE(3984)] = 115483, - [SMALL_STATE(3985)] = 115542, - [SMALL_STATE(3986)] = 115601, - [SMALL_STATE(3987)] = 115660, - [SMALL_STATE(3988)] = 115719, - [SMALL_STATE(3989)] = 115778, - [SMALL_STATE(3990)] = 115837, - [SMALL_STATE(3991)] = 115896, - [SMALL_STATE(3992)] = 115957, - [SMALL_STATE(3993)] = 116016, - [SMALL_STATE(3994)] = 116075, - [SMALL_STATE(3995)] = 116134, - [SMALL_STATE(3996)] = 116193, - [SMALL_STATE(3997)] = 116252, - [SMALL_STATE(3998)] = 116311, - [SMALL_STATE(3999)] = 116370, - [SMALL_STATE(4000)] = 116429, - [SMALL_STATE(4001)] = 116488, - [SMALL_STATE(4002)] = 116547, - [SMALL_STATE(4003)] = 116606, - [SMALL_STATE(4004)] = 116665, - [SMALL_STATE(4005)] = 116724, - [SMALL_STATE(4006)] = 116783, - [SMALL_STATE(4007)] = 116842, - [SMALL_STATE(4008)] = 116901, - [SMALL_STATE(4009)] = 116960, - [SMALL_STATE(4010)] = 117019, - [SMALL_STATE(4011)] = 117078, - [SMALL_STATE(4012)] = 117137, - [SMALL_STATE(4013)] = 117228, - [SMALL_STATE(4014)] = 117323, - [SMALL_STATE(4015)] = 117418, - [SMALL_STATE(4016)] = 117477, - [SMALL_STATE(4017)] = 117536, - [SMALL_STATE(4018)] = 117595, - [SMALL_STATE(4019)] = 117654, - [SMALL_STATE(4020)] = 117713, - [SMALL_STATE(4021)] = 117772, - [SMALL_STATE(4022)] = 117831, - [SMALL_STATE(4023)] = 117890, - [SMALL_STATE(4024)] = 117949, - [SMALL_STATE(4025)] = 118008, - [SMALL_STATE(4026)] = 118067, - [SMALL_STATE(4027)] = 118162, - [SMALL_STATE(4028)] = 118257, - [SMALL_STATE(4029)] = 118316, - [SMALL_STATE(4030)] = 118411, - [SMALL_STATE(4031)] = 118470, - [SMALL_STATE(4032)] = 118529, - [SMALL_STATE(4033)] = 118588, - [SMALL_STATE(4034)] = 118683, - [SMALL_STATE(4035)] = 118752, - [SMALL_STATE(4036)] = 118817, - [SMALL_STATE(4037)] = 118882, - [SMALL_STATE(4038)] = 118955, - [SMALL_STATE(4039)] = 119046, - [SMALL_STATE(4040)] = 119129, - [SMALL_STATE(4041)] = 119204, - [SMALL_STATE(4042)] = 119275, - [SMALL_STATE(4043)] = 119354, - [SMALL_STATE(4044)] = 119441, - [SMALL_STATE(4045)] = 119530, - [SMALL_STATE(4046)] = 119589, - [SMALL_STATE(4047)] = 119648, - [SMALL_STATE(4048)] = 119707, - [SMALL_STATE(4049)] = 119766, - [SMALL_STATE(4050)] = 119825, - [SMALL_STATE(4051)] = 119884, - [SMALL_STATE(4052)] = 119943, - [SMALL_STATE(4053)] = 120002, - [SMALL_STATE(4054)] = 120061, - [SMALL_STATE(4055)] = 120120, - [SMALL_STATE(4056)] = 120179, - [SMALL_STATE(4057)] = 120238, - [SMALL_STATE(4058)] = 120297, - [SMALL_STATE(4059)] = 120356, - [SMALL_STATE(4060)] = 120415, - [SMALL_STATE(4061)] = 120474, - [SMALL_STATE(4062)] = 120533, - [SMALL_STATE(4063)] = 120592, - [SMALL_STATE(4064)] = 120651, - [SMALL_STATE(4065)] = 120710, - [SMALL_STATE(4066)] = 120769, - [SMALL_STATE(4067)] = 120828, - [SMALL_STATE(4068)] = 120887, - [SMALL_STATE(4069)] = 120946, - [SMALL_STATE(4070)] = 121005, - [SMALL_STATE(4071)] = 121064, - [SMALL_STATE(4072)] = 121123, - [SMALL_STATE(4073)] = 121182, - [SMALL_STATE(4074)] = 121241, - [SMALL_STATE(4075)] = 121300, - [SMALL_STATE(4076)] = 121359, - [SMALL_STATE(4077)] = 121418, - [SMALL_STATE(4078)] = 121477, - [SMALL_STATE(4079)] = 121568, - [SMALL_STATE(4080)] = 121627, - [SMALL_STATE(4081)] = 121686, - [SMALL_STATE(4082)] = 121745, - [SMALL_STATE(4083)] = 121804, - [SMALL_STATE(4084)] = 121863, - [SMALL_STATE(4085)] = 121922, - [SMALL_STATE(4086)] = 121981, - [SMALL_STATE(4087)] = 122040, - [SMALL_STATE(4088)] = 122099, - [SMALL_STATE(4089)] = 122158, - [SMALL_STATE(4090)] = 122217, - [SMALL_STATE(4091)] = 122276, - [SMALL_STATE(4092)] = 122335, - [SMALL_STATE(4093)] = 122394, - [SMALL_STATE(4094)] = 122453, - [SMALL_STATE(4095)] = 122512, - [SMALL_STATE(4096)] = 122571, - [SMALL_STATE(4097)] = 122630, - [SMALL_STATE(4098)] = 122725, - [SMALL_STATE(4099)] = 122784, - [SMALL_STATE(4100)] = 122843, - [SMALL_STATE(4101)] = 122902, - [SMALL_STATE(4102)] = 122961, - [SMALL_STATE(4103)] = 123020, - [SMALL_STATE(4104)] = 123079, - [SMALL_STATE(4105)] = 123142, - [SMALL_STATE(4106)] = 123237, - [SMALL_STATE(4107)] = 123298, - [SMALL_STATE(4108)] = 123361, - [SMALL_STATE(4109)] = 123420, - [SMALL_STATE(4110)] = 123483, - [SMALL_STATE(4111)] = 123542, - [SMALL_STATE(4112)] = 123637, - [SMALL_STATE(4113)] = 123732, - [SMALL_STATE(4114)] = 123791, - [SMALL_STATE(4115)] = 123850, - [SMALL_STATE(4116)] = 123909, - [SMALL_STATE(4117)] = 123970, - [SMALL_STATE(4118)] = 124031, - [SMALL_STATE(4119)] = 124090, - [SMALL_STATE(4120)] = 124149, - [SMALL_STATE(4121)] = 124210, - [SMALL_STATE(4122)] = 124269, - [SMALL_STATE(4123)] = 124328, - [SMALL_STATE(4124)] = 124387, - [SMALL_STATE(4125)] = 124446, - [SMALL_STATE(4126)] = 124505, - [SMALL_STATE(4127)] = 124564, - [SMALL_STATE(4128)] = 124623, - [SMALL_STATE(4129)] = 124682, - [SMALL_STATE(4130)] = 124741, - [SMALL_STATE(4131)] = 124800, - [SMALL_STATE(4132)] = 124859, - [SMALL_STATE(4133)] = 124922, - [SMALL_STATE(4134)] = 124987, - [SMALL_STATE(4135)] = 125046, - [SMALL_STATE(4136)] = 125109, - [SMALL_STATE(4137)] = 125168, - [SMALL_STATE(4138)] = 125227, - [SMALL_STATE(4139)] = 125286, - [SMALL_STATE(4140)] = 125345, - [SMALL_STATE(4141)] = 125404, - [SMALL_STATE(4142)] = 125463, - [SMALL_STATE(4143)] = 125522, - [SMALL_STATE(4144)] = 125581, - [SMALL_STATE(4145)] = 125640, - [SMALL_STATE(4146)] = 125699, - [SMALL_STATE(4147)] = 125758, - [SMALL_STATE(4148)] = 125817, - [SMALL_STATE(4149)] = 125876, - [SMALL_STATE(4150)] = 125935, - [SMALL_STATE(4151)] = 125994, - [SMALL_STATE(4152)] = 126053, - [SMALL_STATE(4153)] = 126112, - [SMALL_STATE(4154)] = 126171, - [SMALL_STATE(4155)] = 126230, - [SMALL_STATE(4156)] = 126325, - [SMALL_STATE(4157)] = 126420, - [SMALL_STATE(4158)] = 126499, - [SMALL_STATE(4159)] = 126594, - [SMALL_STATE(4160)] = 126689, - [SMALL_STATE(4161)] = 126748, - [SMALL_STATE(4162)] = 126839, - [SMALL_STATE(4163)] = 126934, - [SMALL_STATE(4164)] = 127029, - [SMALL_STATE(4165)] = 127088, - [SMALL_STATE(4166)] = 127183, - [SMALL_STATE(4167)] = 127246, - [SMALL_STATE(4168)] = 127307, - [SMALL_STATE(4169)] = 127370, - [SMALL_STATE(4170)] = 127465, - [SMALL_STATE(4171)] = 127560, - [SMALL_STATE(4172)] = 127623, - [SMALL_STATE(4173)] = 127682, - [SMALL_STATE(4174)] = 127777, - [SMALL_STATE(4175)] = 127836, - [SMALL_STATE(4176)] = 127905, - [SMALL_STATE(4177)] = 127970, - [SMALL_STATE(4178)] = 128035, - [SMALL_STATE(4179)] = 128108, - [SMALL_STATE(4180)] = 128187, - [SMALL_STATE(4181)] = 128266, - [SMALL_STATE(4182)] = 128325, - [SMALL_STATE(4183)] = 128420, - [SMALL_STATE(4184)] = 128515, - [SMALL_STATE(4185)] = 128610, - [SMALL_STATE(4186)] = 128707, - [SMALL_STATE(4187)] = 128770, - [SMALL_STATE(4188)] = 128861, - [SMALL_STATE(4189)] = 128924, - [SMALL_STATE(4190)] = 128987, - [SMALL_STATE(4191)] = 129048, - [SMALL_STATE(4192)] = 129139, - [SMALL_STATE(4193)] = 129198, - [SMALL_STATE(4194)] = 129289, - [SMALL_STATE(4195)] = 129372, - [SMALL_STATE(4196)] = 129467, - [SMALL_STATE(4197)] = 129562, - [SMALL_STATE(4198)] = 129657, - [SMALL_STATE(4199)] = 129726, - [SMALL_STATE(4200)] = 129791, - [SMALL_STATE(4201)] = 129856, - [SMALL_STATE(4202)] = 129929, - [SMALL_STATE(4203)] = 130020, - [SMALL_STATE(4204)] = 130103, - [SMALL_STATE(4205)] = 130178, - [SMALL_STATE(4206)] = 130249, - [SMALL_STATE(4207)] = 130328, - [SMALL_STATE(4208)] = 130415, - [SMALL_STATE(4209)] = 130504, - [SMALL_STATE(4210)] = 130579, - [SMALL_STATE(4211)] = 130640, - [SMALL_STATE(4212)] = 130731, - [SMALL_STATE(4213)] = 130802, - [SMALL_STATE(4214)] = 130897, - [SMALL_STATE(4215)] = 130992, - [SMALL_STATE(4216)] = 131053, - [SMALL_STATE(4217)] = 131114, - [SMALL_STATE(4218)] = 131175, - [SMALL_STATE(4219)] = 131238, - [SMALL_STATE(4220)] = 131299, - [SMALL_STATE(4221)] = 131360, - [SMALL_STATE(4222)] = 131439, - [SMALL_STATE(4223)] = 131536, - [SMALL_STATE(4224)] = 131633, - [SMALL_STATE(4225)] = 131730, - [SMALL_STATE(4226)] = 131827, - [SMALL_STATE(4227)] = 131924, - [SMALL_STATE(4228)] = 132021, - [SMALL_STATE(4229)] = 132118, - [SMALL_STATE(4230)] = 132215, - [SMALL_STATE(4231)] = 132276, - [SMALL_STATE(4232)] = 132337, - [SMALL_STATE(4233)] = 132434, - [SMALL_STATE(4234)] = 132531, - [SMALL_STATE(4235)] = 132628, - [SMALL_STATE(4236)] = 132725, - [SMALL_STATE(4237)] = 132822, - [SMALL_STATE(4238)] = 132919, - [SMALL_STATE(4239)] = 133016, - [SMALL_STATE(4240)] = 133115, - [SMALL_STATE(4241)] = 133178, - [SMALL_STATE(4242)] = 133277, - [SMALL_STATE(4243)] = 133340, - [SMALL_STATE(4244)] = 133403, - [SMALL_STATE(4245)] = 133466, - [SMALL_STATE(4246)] = 133525, - [SMALL_STATE(4247)] = 133612, - [SMALL_STATE(4248)] = 133701, - [SMALL_STATE(4249)] = 133760, - [SMALL_STATE(4250)] = 133819, - [SMALL_STATE(4251)] = 133878, - [SMALL_STATE(4252)] = 133937, - [SMALL_STATE(4253)] = 133996, - [SMALL_STATE(4254)] = 134055, - [SMALL_STATE(4255)] = 134114, - [SMALL_STATE(4256)] = 134173, - [SMALL_STATE(4257)] = 134232, - [SMALL_STATE(4258)] = 134295, - [SMALL_STATE(4259)] = 134354, - [SMALL_STATE(4260)] = 134413, - [SMALL_STATE(4261)] = 134472, - [SMALL_STATE(4262)] = 134531, - [SMALL_STATE(4263)] = 134622, - [SMALL_STATE(4264)] = 134681, - [SMALL_STATE(4265)] = 134740, - [SMALL_STATE(4266)] = 134799, - [SMALL_STATE(4267)] = 134858, - [SMALL_STATE(4268)] = 134918, - [SMALL_STATE(4269)] = 134976, - [SMALL_STATE(4270)] = 135034, - [SMALL_STATE(4271)] = 135128, - [SMALL_STATE(4272)] = 135198, - [SMALL_STATE(4273)] = 135258, - [SMALL_STATE(4274)] = 135320, - [SMALL_STATE(4275)] = 135390, - [SMALL_STATE(4276)] = 135460, - [SMALL_STATE(4277)] = 135518, - [SMALL_STATE(4278)] = 135612, - [SMALL_STATE(4279)] = 135706, - [SMALL_STATE(4280)] = 135800, - [SMALL_STATE(4281)] = 135858, - [SMALL_STATE(4282)] = 135916, - [SMALL_STATE(4283)] = 135976, - [SMALL_STATE(4284)] = 136034, - [SMALL_STATE(4285)] = 136092, - [SMALL_STATE(4286)] = 136150, - [SMALL_STATE(4287)] = 136228, - [SMALL_STATE(4288)] = 136286, - [SMALL_STATE(4289)] = 136344, - [SMALL_STATE(4290)] = 136402, - [SMALL_STATE(4291)] = 136480, - [SMALL_STATE(4292)] = 136558, - [SMALL_STATE(4293)] = 136616, - [SMALL_STATE(4294)] = 136680, - [SMALL_STATE(4295)] = 136742, - [SMALL_STATE(4296)] = 136804, - [SMALL_STATE(4297)] = 136868, - [SMALL_STATE(4298)] = 136926, - [SMALL_STATE(4299)] = 136984, - [SMALL_STATE(4300)] = 137042, - [SMALL_STATE(4301)] = 137100, - [SMALL_STATE(4302)] = 137158, - [SMALL_STATE(4303)] = 137216, - [SMALL_STATE(4304)] = 137274, - [SMALL_STATE(4305)] = 137338, - [SMALL_STATE(4306)] = 137404, - [SMALL_STATE(4307)] = 137462, - [SMALL_STATE(4308)] = 137520, - [SMALL_STATE(4309)] = 137592, - [SMALL_STATE(4310)] = 137650, - [SMALL_STATE(4311)] = 137708, - [SMALL_STATE(4312)] = 137766, - [SMALL_STATE(4313)] = 137824, - [SMALL_STATE(4314)] = 137882, - [SMALL_STATE(4315)] = 137944, - [SMALL_STATE(4316)] = 138002, - [SMALL_STATE(4317)] = 138060, - [SMALL_STATE(4318)] = 138122, - [SMALL_STATE(4319)] = 138184, - [SMALL_STATE(4320)] = 138242, - [SMALL_STATE(4321)] = 138300, - [SMALL_STATE(4322)] = 138358, - [SMALL_STATE(4323)] = 138452, - [SMALL_STATE(4324)] = 138510, - [SMALL_STATE(4325)] = 138568, - [SMALL_STATE(4326)] = 138626, - [SMALL_STATE(4327)] = 138716, - [SMALL_STATE(4328)] = 138774, - [SMALL_STATE(4329)] = 138832, - [SMALL_STATE(4330)] = 138890, - [SMALL_STATE(4331)] = 138948, - [SMALL_STATE(4332)] = 139006, - [SMALL_STATE(4333)] = 139088, - [SMALL_STATE(4334)] = 139162, - [SMALL_STATE(4335)] = 139232, - [SMALL_STATE(4336)] = 139310, - [SMALL_STATE(4337)] = 139368, - [SMALL_STATE(4338)] = 139462, - [SMALL_STATE(4339)] = 139548, - [SMALL_STATE(4340)] = 139606, - [SMALL_STATE(4341)] = 139664, - [SMALL_STATE(4342)] = 139722, - [SMALL_STATE(4343)] = 139780, - [SMALL_STATE(4344)] = 139838, - [SMALL_STATE(4345)] = 139896, - [SMALL_STATE(4346)] = 139954, - [SMALL_STATE(4347)] = 140052, - [SMALL_STATE(4348)] = 140110, - [SMALL_STATE(4349)] = 140170, - [SMALL_STATE(4350)] = 140228, - [SMALL_STATE(4351)] = 140286, - [SMALL_STATE(4352)] = 140374, - [SMALL_STATE(4353)] = 140436, - [SMALL_STATE(4354)] = 140500, - [SMALL_STATE(4355)] = 140558, - [SMALL_STATE(4356)] = 140616, - [SMALL_STATE(4357)] = 140710, - [SMALL_STATE(4358)] = 140768, - [SMALL_STATE(4359)] = 140826, - [SMALL_STATE(4360)] = 140884, - [SMALL_STATE(4361)] = 140942, - [SMALL_STATE(4362)] = 141000, - [SMALL_STATE(4363)] = 141058, - [SMALL_STATE(4364)] = 141116, - [SMALL_STATE(4365)] = 141174, - [SMALL_STATE(4366)] = 141268, - [SMALL_STATE(4367)] = 141330, - [SMALL_STATE(4368)] = 141388, - [SMALL_STATE(4369)] = 141448, - [SMALL_STATE(4370)] = 141542, - [SMALL_STATE(4371)] = 141612, - [SMALL_STATE(4372)] = 141670, - [SMALL_STATE(4373)] = 141728, - [SMALL_STATE(4374)] = 141798, - [SMALL_STATE(4375)] = 141856, - [SMALL_STATE(4376)] = 141926, - [SMALL_STATE(4377)] = 141984, - [SMALL_STATE(4378)] = 142042, - [SMALL_STATE(4379)] = 142136, - [SMALL_STATE(4380)] = 142198, - [SMALL_STATE(4381)] = 142258, - [SMALL_STATE(4382)] = 142348, - [SMALL_STATE(4383)] = 142410, - [SMALL_STATE(4384)] = 142480, - [SMALL_STATE(4385)] = 142542, - [SMALL_STATE(4386)] = 142600, - [SMALL_STATE(4387)] = 142658, - [SMALL_STATE(4388)] = 142718, - [SMALL_STATE(4389)] = 142778, - [SMALL_STATE(4390)] = 142838, - [SMALL_STATE(4391)] = 142896, - [SMALL_STATE(4392)] = 142986, - [SMALL_STATE(4393)] = 143044, - [SMALL_STATE(4394)] = 143102, - [SMALL_STATE(4395)] = 143160, - [SMALL_STATE(4396)] = 143218, - [SMALL_STATE(4397)] = 143276, - [SMALL_STATE(4398)] = 143334, - [SMALL_STATE(4399)] = 143392, - [SMALL_STATE(4400)] = 143450, - [SMALL_STATE(4401)] = 143520, - [SMALL_STATE(4402)] = 143578, - [SMALL_STATE(4403)] = 143636, - [SMALL_STATE(4404)] = 143694, - [SMALL_STATE(4405)] = 143752, - [SMALL_STATE(4406)] = 143810, - [SMALL_STATE(4407)] = 143868, - [SMALL_STATE(4408)] = 143926, - [SMALL_STATE(4409)] = 143984, - [SMALL_STATE(4410)] = 144042, - [SMALL_STATE(4411)] = 144106, - [SMALL_STATE(4412)] = 144164, - [SMALL_STATE(4413)] = 144222, - [SMALL_STATE(4414)] = 144280, - [SMALL_STATE(4415)] = 144338, - [SMALL_STATE(4416)] = 144396, - [SMALL_STATE(4417)] = 144458, - [SMALL_STATE(4418)] = 144516, - [SMALL_STATE(4419)] = 144574, - [SMALL_STATE(4420)] = 144642, - [SMALL_STATE(4421)] = 144700, - [SMALL_STATE(4422)] = 144758, - [SMALL_STATE(4423)] = 144816, - [SMALL_STATE(4424)] = 144874, - [SMALL_STATE(4425)] = 144932, - [SMALL_STATE(4426)] = 144990, - [SMALL_STATE(4427)] = 145048, - [SMALL_STATE(4428)] = 145106, - [SMALL_STATE(4429)] = 145164, - [SMALL_STATE(4430)] = 145222, - [SMALL_STATE(4431)] = 145284, - [SMALL_STATE(4432)] = 145346, - [SMALL_STATE(4433)] = 145404, - [SMALL_STATE(4434)] = 145462, - [SMALL_STATE(4435)] = 145520, - [SMALL_STATE(4436)] = 145578, - [SMALL_STATE(4437)] = 145636, - [SMALL_STATE(4438)] = 145694, - [SMALL_STATE(4439)] = 145752, - [SMALL_STATE(4440)] = 145814, - [SMALL_STATE(4441)] = 145912, - [SMALL_STATE(4442)] = 145970, - [SMALL_STATE(4443)] = 146028, - [SMALL_STATE(4444)] = 146086, - [SMALL_STATE(4445)] = 146144, - [SMALL_STATE(4446)] = 146202, - [SMALL_STATE(4447)] = 146260, - [SMALL_STATE(4448)] = 146318, - [SMALL_STATE(4449)] = 146376, - [SMALL_STATE(4450)] = 146446, - [SMALL_STATE(4451)] = 146504, - [SMALL_STATE(4452)] = 146562, - [SMALL_STATE(4453)] = 146620, - [SMALL_STATE(4454)] = 146678, - [SMALL_STATE(4455)] = 146736, - [SMALL_STATE(4456)] = 146794, - [SMALL_STATE(4457)] = 146852, - [SMALL_STATE(4458)] = 146910, - [SMALL_STATE(4459)] = 146968, - [SMALL_STATE(4460)] = 147026, - [SMALL_STATE(4461)] = 147084, - [SMALL_STATE(4462)] = 147142, - [SMALL_STATE(4463)] = 147204, - [SMALL_STATE(4464)] = 147294, - [SMALL_STATE(4465)] = 147352, - [SMALL_STATE(4466)] = 147410, - [SMALL_STATE(4467)] = 147468, - [SMALL_STATE(4468)] = 147526, - [SMALL_STATE(4469)] = 147584, - [SMALL_STATE(4470)] = 147642, - [SMALL_STATE(4471)] = 147700, - [SMALL_STATE(4472)] = 147758, - [SMALL_STATE(4473)] = 147816, - [SMALL_STATE(4474)] = 147874, - [SMALL_STATE(4475)] = 147932, - [SMALL_STATE(4476)] = 147992, - [SMALL_STATE(4477)] = 148050, - [SMALL_STATE(4478)] = 148108, - [SMALL_STATE(4479)] = 148166, - [SMALL_STATE(4480)] = 148264, - [SMALL_STATE(4481)] = 148362, - [SMALL_STATE(4482)] = 148424, - [SMALL_STATE(4483)] = 148484, - [SMALL_STATE(4484)] = 148544, - [SMALL_STATE(4485)] = 148606, - [SMALL_STATE(4486)] = 148666, - [SMALL_STATE(4487)] = 148726, - [SMALL_STATE(4488)] = 148784, - [SMALL_STATE(4489)] = 148842, - [SMALL_STATE(4490)] = 148900, - [SMALL_STATE(4491)] = 148970, - [SMALL_STATE(4492)] = 149030, - [SMALL_STATE(4493)] = 149092, - [SMALL_STATE(4494)] = 149150, - [SMALL_STATE(4495)] = 149248, - [SMALL_STATE(4496)] = 149310, - [SMALL_STATE(4497)] = 149368, - [SMALL_STATE(4498)] = 149426, - [SMALL_STATE(4499)] = 149486, - [SMALL_STATE(4500)] = 149544, - [SMALL_STATE(4501)] = 149602, - [SMALL_STATE(4502)] = 149660, - [SMALL_STATE(4503)] = 149718, - [SMALL_STATE(4504)] = 149778, - [SMALL_STATE(4505)] = 149838, - [SMALL_STATE(4506)] = 149896, - [SMALL_STATE(4507)] = 149956, - [SMALL_STATE(4508)] = 150014, - [SMALL_STATE(4509)] = 150072, - [SMALL_STATE(4510)] = 150130, - [SMALL_STATE(4511)] = 150188, - [SMALL_STATE(4512)] = 150246, - [SMALL_STATE(4513)] = 150304, - [SMALL_STATE(4514)] = 150362, - [SMALL_STATE(4515)] = 150424, - [SMALL_STATE(4516)] = 150484, - [SMALL_STATE(4517)] = 150544, - [SMALL_STATE(4518)] = 150604, - [SMALL_STATE(4519)] = 150662, - [SMALL_STATE(4520)] = 150760, - [SMALL_STATE(4521)] = 150818, - [SMALL_STATE(4522)] = 150876, - [SMALL_STATE(4523)] = 150934, - [SMALL_STATE(4524)] = 150992, - [SMALL_STATE(4525)] = 151050, - [SMALL_STATE(4526)] = 151110, - [SMALL_STATE(4527)] = 151168, - [SMALL_STATE(4528)] = 151226, - [SMALL_STATE(4529)] = 151284, - [SMALL_STATE(4530)] = 151344, - [SMALL_STATE(4531)] = 151402, - [SMALL_STATE(4532)] = 151464, - [SMALL_STATE(4533)] = 151522, - [SMALL_STATE(4534)] = 151582, - [SMALL_STATE(4535)] = 151640, - [SMALL_STATE(4536)] = 151700, - [SMALL_STATE(4537)] = 151760, - [SMALL_STATE(4538)] = 151818, - [SMALL_STATE(4539)] = 151876, - [SMALL_STATE(4540)] = 151936, - [SMALL_STATE(4541)] = 152000, - [SMALL_STATE(4542)] = 152058, - [SMALL_STATE(4543)] = 152117, - [SMALL_STATE(4544)] = 152210, - [SMALL_STATE(4545)] = 152267, - [SMALL_STATE(4546)] = 152324, - [SMALL_STATE(4547)] = 152381, - [SMALL_STATE(4548)] = 152438, - [SMALL_STATE(4549)] = 152495, - [SMALL_STATE(4550)] = 152554, - [SMALL_STATE(4551)] = 152623, - [SMALL_STATE(4552)] = 152680, - [SMALL_STATE(4553)] = 152737, - [SMALL_STATE(4554)] = 152806, - [SMALL_STATE(4555)] = 152875, - [SMALL_STATE(4556)] = 152934, - [SMALL_STATE(4557)] = 152991, - [SMALL_STATE(4558)] = 153084, - [SMALL_STATE(4559)] = 153177, - [SMALL_STATE(4560)] = 153234, - [SMALL_STATE(4561)] = 153291, - [SMALL_STATE(4562)] = 153348, - [SMALL_STATE(4563)] = 153443, - [SMALL_STATE(4564)] = 153538, - [SMALL_STATE(4565)] = 153633, - [SMALL_STATE(4566)] = 153728, - [SMALL_STATE(4567)] = 153823, - [SMALL_STATE(4568)] = 153918, - [SMALL_STATE(4569)] = 154013, - [SMALL_STATE(4570)] = 154108, - [SMALL_STATE(4571)] = 154165, - [SMALL_STATE(4572)] = 154228, - [SMALL_STATE(4573)] = 154285, - [SMALL_STATE(4574)] = 154344, - [SMALL_STATE(4575)] = 154401, - [SMALL_STATE(4576)] = 154464, - [SMALL_STATE(4577)] = 154521, - [SMALL_STATE(4578)] = 154578, - [SMALL_STATE(4579)] = 154635, - [SMALL_STATE(4580)] = 154692, - [SMALL_STATE(4581)] = 154749, - [SMALL_STATE(4582)] = 154806, - [SMALL_STATE(4583)] = 154863, - [SMALL_STATE(4584)] = 154924, - [SMALL_STATE(4585)] = 154981, - [SMALL_STATE(4586)] = 155038, - [SMALL_STATE(4587)] = 155095, - [SMALL_STATE(4588)] = 155152, - [SMALL_STATE(4589)] = 155209, - [SMALL_STATE(4590)] = 155278, - [SMALL_STATE(4591)] = 155335, - [SMALL_STATE(4592)] = 155394, - [SMALL_STATE(4593)] = 155451, - [SMALL_STATE(4594)] = 155508, - [SMALL_STATE(4595)] = 155565, - [SMALL_STATE(4596)] = 155634, - [SMALL_STATE(4597)] = 155691, - [SMALL_STATE(4598)] = 155748, - [SMALL_STATE(4599)] = 155805, - [SMALL_STATE(4600)] = 155862, - [SMALL_STATE(4601)] = 155931, - [SMALL_STATE(4602)] = 156000, - [SMALL_STATE(4603)] = 156095, - [SMALL_STATE(4604)] = 156190, - [SMALL_STATE(4605)] = 156285, - [SMALL_STATE(4606)] = 156380, - [SMALL_STATE(4607)] = 156475, - [SMALL_STATE(4608)] = 156570, - [SMALL_STATE(4609)] = 156665, - [SMALL_STATE(4610)] = 156722, - [SMALL_STATE(4611)] = 156779, - [SMALL_STATE(4612)] = 156836, - [SMALL_STATE(4613)] = 156893, - [SMALL_STATE(4614)] = 156950, - [SMALL_STATE(4615)] = 157007, - [SMALL_STATE(4616)] = 157064, - [SMALL_STATE(4617)] = 157125, - [SMALL_STATE(4618)] = 157184, - [SMALL_STATE(4619)] = 157241, - [SMALL_STATE(4620)] = 157310, - [SMALL_STATE(4621)] = 157367, - [SMALL_STATE(4622)] = 157436, - [SMALL_STATE(4623)] = 157493, - [SMALL_STATE(4624)] = 157550, - [SMALL_STATE(4625)] = 157607, - [SMALL_STATE(4626)] = 157664, - [SMALL_STATE(4627)] = 157721, - [SMALL_STATE(4628)] = 157778, - [SMALL_STATE(4629)] = 157835, - [SMALL_STATE(4630)] = 157892, - [SMALL_STATE(4631)] = 158001, - [SMALL_STATE(4632)] = 158058, - [SMALL_STATE(4633)] = 158115, - [SMALL_STATE(4634)] = 158172, - [SMALL_STATE(4635)] = 158229, - [SMALL_STATE(4636)] = 158322, - [SMALL_STATE(4637)] = 158415, - [SMALL_STATE(4638)] = 158472, - [SMALL_STATE(4639)] = 158529, - [SMALL_STATE(4640)] = 158586, - [SMALL_STATE(4641)] = 158643, - [SMALL_STATE(4642)] = 158736, - [SMALL_STATE(4643)] = 158797, - [SMALL_STATE(4644)] = 158854, - [SMALL_STATE(4645)] = 158947, - [SMALL_STATE(4646)] = 159008, - [SMALL_STATE(4647)] = 159069, - [SMALL_STATE(4648)] = 159162, - [SMALL_STATE(4649)] = 159231, - [SMALL_STATE(4650)] = 159290, - [SMALL_STATE(4651)] = 159347, - [SMALL_STATE(4652)] = 159410, - [SMALL_STATE(4653)] = 159519, - [SMALL_STATE(4654)] = 159576, - [SMALL_STATE(4655)] = 159635, - [SMALL_STATE(4656)] = 159696, - [SMALL_STATE(4657)] = 159757, - [SMALL_STATE(4658)] = 159866, - [SMALL_STATE(4659)] = 159923, - [SMALL_STATE(4660)] = 159980, - [SMALL_STATE(4661)] = 160089, - [SMALL_STATE(4662)] = 160158, - [SMALL_STATE(4663)] = 160225, - [SMALL_STATE(4664)] = 160288, - [SMALL_STATE(4665)] = 160351, - [SMALL_STATE(4666)] = 160460, - [SMALL_STATE(4667)] = 160517, - [SMALL_STATE(4668)] = 160626, - [SMALL_STATE(4669)] = 160697, - [SMALL_STATE(4670)] = 160806, - [SMALL_STATE(4671)] = 160869, - [SMALL_STATE(4672)] = 160978, - [SMALL_STATE(4673)] = 161067, - [SMALL_STATE(4674)] = 161148, - [SMALL_STATE(4675)] = 161221, - [SMALL_STATE(4676)] = 161290, - [SMALL_STATE(4677)] = 161367, - [SMALL_STATE(4678)] = 161476, - [SMALL_STATE(4679)] = 161585, - [SMALL_STATE(4680)] = 161644, - [SMALL_STATE(4681)] = 161713, - [SMALL_STATE(4682)] = 161770, - [SMALL_STATE(4683)] = 161827, - [SMALL_STATE(4684)] = 161896, - [SMALL_STATE(4685)] = 161981, - [SMALL_STATE(4686)] = 162038, - [SMALL_STATE(4687)] = 162095, - [SMALL_STATE(4688)] = 162204, - [SMALL_STATE(4689)] = 162261, - [SMALL_STATE(4690)] = 162370, - [SMALL_STATE(4691)] = 162439, - [SMALL_STATE(4692)] = 162508, - [SMALL_STATE(4693)] = 162617, - [SMALL_STATE(4694)] = 162676, - [SMALL_STATE(4695)] = 162763, - [SMALL_STATE(4696)] = 162820, - [SMALL_STATE(4697)] = 162877, - [SMALL_STATE(4698)] = 162936, - [SMALL_STATE(4699)] = 162995, - [SMALL_STATE(4700)] = 163052, - [SMALL_STATE(4701)] = 163109, - [SMALL_STATE(4702)] = 163166, - [SMALL_STATE(4703)] = 163223, - [SMALL_STATE(4704)] = 163280, - [SMALL_STATE(4705)] = 163337, - [SMALL_STATE(4706)] = 163426, - [SMALL_STATE(4707)] = 163487, - [SMALL_STATE(4708)] = 163576, - [SMALL_STATE(4709)] = 163637, - [SMALL_STATE(4710)] = 163698, - [SMALL_STATE(4711)] = 163787, - [SMALL_STATE(4712)] = 163880, - [SMALL_STATE(4713)] = 163973, - [SMALL_STATE(4714)] = 164066, - [SMALL_STATE(4715)] = 164133, - [SMALL_STATE(4716)] = 164196, - [SMALL_STATE(4717)] = 164259, - [SMALL_STATE(4718)] = 164330, - [SMALL_STATE(4719)] = 164419, - [SMALL_STATE(4720)] = 164500, - [SMALL_STATE(4721)] = 164573, - [SMALL_STATE(4722)] = 164642, - [SMALL_STATE(4723)] = 164719, - [SMALL_STATE(4724)] = 164804, - [SMALL_STATE(4725)] = 164891, - [SMALL_STATE(4726)] = 164980, - [SMALL_STATE(4727)] = 165073, - [SMALL_STATE(4728)] = 165166, - [SMALL_STATE(4729)] = 165261, - [SMALL_STATE(4730)] = 165318, - [SMALL_STATE(4731)] = 165375, - [SMALL_STATE(4732)] = 165432, - [SMALL_STATE(4733)] = 165489, - [SMALL_STATE(4734)] = 165578, - [SMALL_STATE(4735)] = 165635, - [SMALL_STATE(4736)] = 165692, - [SMALL_STATE(4737)] = 165749, - [SMALL_STATE(4738)] = 165806, - [SMALL_STATE(4739)] = 165895, - [SMALL_STATE(4740)] = 165952, - [SMALL_STATE(4741)] = 166009, - [SMALL_STATE(4742)] = 166066, - [SMALL_STATE(4743)] = 166125, - [SMALL_STATE(4744)] = 166182, - [SMALL_STATE(4745)] = 166291, - [SMALL_STATE(4746)] = 166384, - [SMALL_STATE(4747)] = 166447, - [SMALL_STATE(4748)] = 166540, - [SMALL_STATE(4749)] = 166605, - [SMALL_STATE(4750)] = 166662, - [SMALL_STATE(4751)] = 166719, - [SMALL_STATE(4752)] = 166776, - [SMALL_STATE(4753)] = 166833, - [SMALL_STATE(4754)] = 166892, - [SMALL_STATE(4755)] = 166951, - [SMALL_STATE(4756)] = 167010, - [SMALL_STATE(4757)] = 167069, - [SMALL_STATE(4758)] = 167128, - [SMALL_STATE(4759)] = 167185, - [SMALL_STATE(4760)] = 167242, - [SMALL_STATE(4761)] = 167335, - [SMALL_STATE(4762)] = 167392, - [SMALL_STATE(4763)] = 167449, - [SMALL_STATE(4764)] = 167506, - [SMALL_STATE(4765)] = 167563, - [SMALL_STATE(4766)] = 167620, - [SMALL_STATE(4767)] = 167677, - [SMALL_STATE(4768)] = 167734, - [SMALL_STATE(4769)] = 167791, - [SMALL_STATE(4770)] = 167848, - [SMALL_STATE(4771)] = 167905, - [SMALL_STATE(4772)] = 167998, - [SMALL_STATE(4773)] = 168055, - [SMALL_STATE(4774)] = 168112, - [SMALL_STATE(4775)] = 168169, - [SMALL_STATE(4776)] = 168226, - [SMALL_STATE(4777)] = 168283, - [SMALL_STATE(4778)] = 168340, - [SMALL_STATE(4779)] = 168397, - [SMALL_STATE(4780)] = 168454, - [SMALL_STATE(4781)] = 168511, - [SMALL_STATE(4782)] = 168568, - [SMALL_STATE(4783)] = 168625, - [SMALL_STATE(4784)] = 168682, - [SMALL_STATE(4785)] = 168739, - [SMALL_STATE(4786)] = 168796, - [SMALL_STATE(4787)] = 168853, - [SMALL_STATE(4788)] = 168910, - [SMALL_STATE(4789)] = 168967, - [SMALL_STATE(4790)] = 169026, - [SMALL_STATE(4791)] = 169083, - [SMALL_STATE(4792)] = 169140, - [SMALL_STATE(4793)] = 169197, - [SMALL_STATE(4794)] = 169254, - [SMALL_STATE(4795)] = 169311, - [SMALL_STATE(4796)] = 169368, - [SMALL_STATE(4797)] = 169425, - [SMALL_STATE(4798)] = 169482, - [SMALL_STATE(4799)] = 169539, - [SMALL_STATE(4800)] = 169596, - [SMALL_STATE(4801)] = 169653, - [SMALL_STATE(4802)] = 169712, - [SMALL_STATE(4803)] = 169769, - [SMALL_STATE(4804)] = 169826, - [SMALL_STATE(4805)] = 169883, - [SMALL_STATE(4806)] = 169940, - [SMALL_STATE(4807)] = 169997, - [SMALL_STATE(4808)] = 170054, - [SMALL_STATE(4809)] = 170111, - [SMALL_STATE(4810)] = 170168, - [SMALL_STATE(4811)] = 170225, - [SMALL_STATE(4812)] = 170282, - [SMALL_STATE(4813)] = 170339, - [SMALL_STATE(4814)] = 170396, - [SMALL_STATE(4815)] = 170453, - [SMALL_STATE(4816)] = 170510, - [SMALL_STATE(4817)] = 170567, - [SMALL_STATE(4818)] = 170624, - [SMALL_STATE(4819)] = 170681, - [SMALL_STATE(4820)] = 170738, - [SMALL_STATE(4821)] = 170795, - [SMALL_STATE(4822)] = 170852, - [SMALL_STATE(4823)] = 170909, - [SMALL_STATE(4824)] = 170966, - [SMALL_STATE(4825)] = 171025, - [SMALL_STATE(4826)] = 171118, - [SMALL_STATE(4827)] = 171211, - [SMALL_STATE(4828)] = 171268, - [SMALL_STATE(4829)] = 171325, - [SMALL_STATE(4830)] = 171382, - [SMALL_STATE(4831)] = 171439, - [SMALL_STATE(4832)] = 171496, - [SMALL_STATE(4833)] = 171553, - [SMALL_STATE(4834)] = 171610, - [SMALL_STATE(4835)] = 171669, - [SMALL_STATE(4836)] = 171726, - [SMALL_STATE(4837)] = 171783, - [SMALL_STATE(4838)] = 171840, - [SMALL_STATE(4839)] = 171901, - [SMALL_STATE(4840)] = 171958, - [SMALL_STATE(4841)] = 172015, - [SMALL_STATE(4842)] = 172072, - [SMALL_STATE(4843)] = 172165, - [SMALL_STATE(4844)] = 172222, - [SMALL_STATE(4845)] = 172281, - [SMALL_STATE(4846)] = 172355, - [SMALL_STATE(4847)] = 172415, - [SMALL_STATE(4848)] = 172489, - [SMALL_STATE(4849)] = 172563, - [SMALL_STATE(4850)] = 172637, - [SMALL_STATE(4851)] = 172695, - [SMALL_STATE(4852)] = 172769, - [SMALL_STATE(4853)] = 172857, - [SMALL_STATE(4854)] = 172931, - [SMALL_STATE(4855)] = 172987, - [SMALL_STATE(4856)] = 173055, - [SMALL_STATE(4857)] = 173129, - [SMALL_STATE(4858)] = 173185, - [SMALL_STATE(4859)] = 173259, - [SMALL_STATE(4860)] = 173333, - [SMALL_STATE(4861)] = 173401, - [SMALL_STATE(4862)] = 173475, - [SMALL_STATE(4863)] = 173531, - [SMALL_STATE(4864)] = 173587, - [SMALL_STATE(4865)] = 173651, - [SMALL_STATE(4866)] = 173715, - [SMALL_STATE(4867)] = 173771, - [SMALL_STATE(4868)] = 173833, - [SMALL_STATE(4869)] = 173907, - [SMALL_STATE(4870)] = 173971, - [SMALL_STATE(4871)] = 174035, - [SMALL_STATE(4872)] = 174091, - [SMALL_STATE(4873)] = 174165, - [SMALL_STATE(4874)] = 174233, - [SMALL_STATE(4875)] = 174289, - [SMALL_STATE(4876)] = 174363, - [SMALL_STATE(4877)] = 174419, - [SMALL_STATE(4878)] = 174475, - [SMALL_STATE(4879)] = 174549, - [SMALL_STATE(4880)] = 174641, - [SMALL_STATE(4881)] = 174715, - [SMALL_STATE(4882)] = 174779, - [SMALL_STATE(4883)] = 174835, - [SMALL_STATE(4884)] = 174891, - [SMALL_STATE(4885)] = 174965, - [SMALL_STATE(4886)] = 175033, - [SMALL_STATE(4887)] = 175125, - [SMALL_STATE(4888)] = 175199, - [SMALL_STATE(4889)] = 175273, - [SMALL_STATE(4890)] = 175329, - [SMALL_STATE(4891)] = 175387, - [SMALL_STATE(4892)] = 175445, - [SMALL_STATE(4893)] = 175519, - [SMALL_STATE(4894)] = 175587, - [SMALL_STATE(4895)] = 175645, - [SMALL_STATE(4896)] = 175701, - [SMALL_STATE(4897)] = 175757, - [SMALL_STATE(4898)] = 175831, - [SMALL_STATE(4899)] = 175891, - [SMALL_STATE(4900)] = 175979, - [SMALL_STATE(4901)] = 176035, - [SMALL_STATE(4902)] = 176097, - [SMALL_STATE(4903)] = 176157, - [SMALL_STATE(4904)] = 176249, - [SMALL_STATE(4905)] = 176323, - [SMALL_STATE(4906)] = 176381, - [SMALL_STATE(4907)] = 176473, - [SMALL_STATE(4908)] = 176565, - [SMALL_STATE(4909)] = 176639, - [SMALL_STATE(4910)] = 176701, - [SMALL_STATE(4911)] = 176761, - [SMALL_STATE(4912)] = 176821, - [SMALL_STATE(4913)] = 176895, - [SMALL_STATE(4914)] = 176951, - [SMALL_STATE(4915)] = 177025, - [SMALL_STATE(4916)] = 177093, - [SMALL_STATE(4917)] = 177161, - [SMALL_STATE(4918)] = 177235, - [SMALL_STATE(4919)] = 177297, - [SMALL_STATE(4920)] = 177365, - [SMALL_STATE(4921)] = 177421, - [SMALL_STATE(4922)] = 177477, - [SMALL_STATE(4923)] = 177537, - [SMALL_STATE(4924)] = 177605, - [SMALL_STATE(4925)] = 177679, - [SMALL_STATE(4926)] = 177753, - [SMALL_STATE(4927)] = 177827, - [SMALL_STATE(4928)] = 177901, - [SMALL_STATE(4929)] = 177957, - [SMALL_STATE(4930)] = 178013, - [SMALL_STATE(4931)] = 178069, - [SMALL_STATE(4932)] = 178137, - [SMALL_STATE(4933)] = 178193, - [SMALL_STATE(4934)] = 178251, - [SMALL_STATE(4935)] = 178325, - [SMALL_STATE(4936)] = 178399, - [SMALL_STATE(4937)] = 178473, - [SMALL_STATE(4938)] = 178547, - [SMALL_STATE(4939)] = 178635, - [SMALL_STATE(4940)] = 178691, - [SMALL_STATE(4941)] = 178765, - [SMALL_STATE(4942)] = 178821, - [SMALL_STATE(4943)] = 178889, - [SMALL_STATE(4944)] = 178945, - [SMALL_STATE(4945)] = 179001, - [SMALL_STATE(4946)] = 179057, - [SMALL_STATE(4947)] = 179131, - [SMALL_STATE(4948)] = 179187, - [SMALL_STATE(4949)] = 179247, - [SMALL_STATE(4950)] = 179305, - [SMALL_STATE(4951)] = 179369, - [SMALL_STATE(4952)] = 179433, - [SMALL_STATE(4953)] = 179507, - [SMALL_STATE(4954)] = 179581, - [SMALL_STATE(4955)] = 179637, - [SMALL_STATE(4956)] = 179711, - [SMALL_STATE(4957)] = 179785, - [SMALL_STATE(4958)] = 179847, - [SMALL_STATE(4959)] = 179939, - [SMALL_STATE(4960)] = 180031, - [SMALL_STATE(4961)] = 180105, - [SMALL_STATE(4962)] = 180197, - [SMALL_STATE(4963)] = 180259, - [SMALL_STATE(4964)] = 180323, - [SMALL_STATE(4965)] = 180397, - [SMALL_STATE(4966)] = 180471, - [SMALL_STATE(4967)] = 180527, - [SMALL_STATE(4968)] = 180601, - [SMALL_STATE(4969)] = 180663, - [SMALL_STATE(4970)] = 180731, - [SMALL_STATE(4971)] = 180797, - [SMALL_STATE(4972)] = 180859, - [SMALL_STATE(4973)] = 180921, - [SMALL_STATE(4974)] = 180991, - [SMALL_STATE(4975)] = 181079, - [SMALL_STATE(4976)] = 181159, - [SMALL_STATE(4977)] = 181231, - [SMALL_STATE(4978)] = 181299, - [SMALL_STATE(4979)] = 181375, - [SMALL_STATE(4980)] = 181459, - [SMALL_STATE(4981)] = 181545, - [SMALL_STATE(4982)] = 181609, - [SMALL_STATE(4983)] = 181665, - [SMALL_STATE(4984)] = 181733, - [SMALL_STATE(4985)] = 181791, - [SMALL_STATE(4986)] = 181865, - [SMALL_STATE(4987)] = 181939, - [SMALL_STATE(4988)] = 182007, - [SMALL_STATE(4989)] = 182063, - [SMALL_STATE(4990)] = 182131, - [SMALL_STATE(4991)] = 182189, - [SMALL_STATE(4992)] = 182263, - [SMALL_STATE(4993)] = 182325, - [SMALL_STATE(4994)] = 182381, - [SMALL_STATE(4995)] = 182445, - [SMALL_STATE(4996)] = 182537, - [SMALL_STATE(4997)] = 182611, - [SMALL_STATE(4998)] = 182673, - [SMALL_STATE(4999)] = 182735, - [SMALL_STATE(5000)] = 182809, - [SMALL_STATE(5001)] = 182871, - [SMALL_STATE(5002)] = 182933, - [SMALL_STATE(5003)] = 183007, - [SMALL_STATE(5004)] = 183063, - [SMALL_STATE(5005)] = 183119, - [SMALL_STATE(5006)] = 183175, - [SMALL_STATE(5007)] = 183267, - [SMALL_STATE(5008)] = 183341, - [SMALL_STATE(5009)] = 183415, - [SMALL_STATE(5010)] = 183471, - [SMALL_STATE(5011)] = 183535, - [SMALL_STATE(5012)] = 183599, - [SMALL_STATE(5013)] = 183673, - [SMALL_STATE(5014)] = 183729, - [SMALL_STATE(5015)] = 183784, - [SMALL_STATE(5016)] = 183841, - [SMALL_STATE(5017)] = 183898, - [SMALL_STATE(5018)] = 183953, - [SMALL_STATE(5019)] = 184010, - [SMALL_STATE(5020)] = 184067, - [SMALL_STATE(5021)] = 184124, - [SMALL_STATE(5022)] = 184219, - [SMALL_STATE(5023)] = 184274, - [SMALL_STATE(5024)] = 184329, - [SMALL_STATE(5025)] = 184384, - [SMALL_STATE(5026)] = 184479, - [SMALL_STATE(5027)] = 184574, - [SMALL_STATE(5028)] = 184629, - [SMALL_STATE(5029)] = 184686, - [SMALL_STATE(5030)] = 184743, - [SMALL_STATE(5031)] = 184800, - [SMALL_STATE(5032)] = 184855, - [SMALL_STATE(5033)] = 184912, - [SMALL_STATE(5034)] = 184969, - [SMALL_STATE(5035)] = 185026, - [SMALL_STATE(5036)] = 185081, - [SMALL_STATE(5037)] = 185142, - [SMALL_STATE(5038)] = 185197, - [SMALL_STATE(5039)] = 185252, - [SMALL_STATE(5040)] = 185307, - [SMALL_STATE(5041)] = 185366, - [SMALL_STATE(5042)] = 185441, - [SMALL_STATE(5043)] = 185500, - [SMALL_STATE(5044)] = 185563, - [SMALL_STATE(5045)] = 185626, - [SMALL_STATE(5046)] = 185701, - [SMALL_STATE(5047)] = 185776, - [SMALL_STATE(5048)] = 185839, - [SMALL_STATE(5049)] = 185900, - [SMALL_STATE(5050)] = 185961, - [SMALL_STATE(5051)] = 186048, - [SMALL_STATE(5052)] = 186139, - [SMALL_STATE(5053)] = 186230, - [SMALL_STATE(5054)] = 186321, - [SMALL_STATE(5055)] = 186386, - [SMALL_STATE(5056)] = 186447, - [SMALL_STATE(5057)] = 186508, - [SMALL_STATE(5058)] = 186577, - [SMALL_STATE(5059)] = 186664, - [SMALL_STATE(5060)] = 186743, - [SMALL_STATE(5061)] = 186814, - [SMALL_STATE(5062)] = 186881, - [SMALL_STATE(5063)] = 186956, - [SMALL_STATE(5064)] = 187039, - [SMALL_STATE(5065)] = 187124, - [SMALL_STATE(5066)] = 187211, - [SMALL_STATE(5067)] = 187302, - [SMALL_STATE(5068)] = 187393, - [SMALL_STATE(5069)] = 187452, - [SMALL_STATE(5070)] = 187511, - [SMALL_STATE(5071)] = 187570, - [SMALL_STATE(5072)] = 187627, - [SMALL_STATE(5073)] = 187684, - [SMALL_STATE(5074)] = 187751, - [SMALL_STATE(5075)] = 187818, - [SMALL_STATE(5076)] = 187879, - [SMALL_STATE(5077)] = 187938, - [SMALL_STATE(5078)] = 187999, - [SMALL_STATE(5079)] = 188054, - [SMALL_STATE(5080)] = 188117, - [SMALL_STATE(5081)] = 188180, - [SMALL_STATE(5082)] = 188247, - [SMALL_STATE(5083)] = 188314, - [SMALL_STATE(5084)] = 188371, - [SMALL_STATE(5085)] = 188428, - [SMALL_STATE(5086)] = 188495, - [SMALL_STATE(5087)] = 188556, - [SMALL_STATE(5088)] = 188615, - [SMALL_STATE(5089)] = 188676, - [SMALL_STATE(5090)] = 188739, - [SMALL_STATE(5091)] = 188794, - [SMALL_STATE(5092)] = 188857, - [SMALL_STATE(5093)] = 188924, - [SMALL_STATE(5094)] = 188991, - [SMALL_STATE(5095)] = 189050, - [SMALL_STATE(5096)] = 189111, - [SMALL_STATE(5097)] = 189168, - [SMALL_STATE(5098)] = 189235, - [SMALL_STATE(5099)] = 189290, - [SMALL_STATE(5100)] = 189357, - [SMALL_STATE(5101)] = 189418, - [SMALL_STATE(5102)] = 189505, - [SMALL_STATE(5103)] = 189562, - [SMALL_STATE(5104)] = 189657, - [SMALL_STATE(5105)] = 189716, - [SMALL_STATE(5106)] = 189811, - [SMALL_STATE(5107)] = 189870, - [SMALL_STATE(5108)] = 189929, - [SMALL_STATE(5109)] = 189988, - [SMALL_STATE(5110)] = 190045, - [SMALL_STATE(5111)] = 190140, - [SMALL_STATE(5112)] = 190199, - [SMALL_STATE(5113)] = 190294, - [SMALL_STATE(5114)] = 190353, - [SMALL_STATE(5115)] = 190412, - [SMALL_STATE(5116)] = 190473, - [SMALL_STATE(5117)] = 190532, - [SMALL_STATE(5118)] = 190587, - [SMALL_STATE(5119)] = 190644, - [SMALL_STATE(5120)] = 190707, - [SMALL_STATE(5121)] = 190764, - [SMALL_STATE(5122)] = 190823, - [SMALL_STATE(5123)] = 190880, - [SMALL_STATE(5124)] = 190937, - [SMALL_STATE(5125)] = 190992, - [SMALL_STATE(5126)] = 191053, - [SMALL_STATE(5127)] = 191114, - [SMALL_STATE(5128)] = 191175, - [SMALL_STATE(5129)] = 191270, - [SMALL_STATE(5130)] = 191333, - [SMALL_STATE(5131)] = 191396, - [SMALL_STATE(5132)] = 191457, - [SMALL_STATE(5133)] = 191512, - [SMALL_STATE(5134)] = 191573, - [SMALL_STATE(5135)] = 191628, - [SMALL_STATE(5136)] = 191683, - [SMALL_STATE(5137)] = 191750, - [SMALL_STATE(5138)] = 191807, - [SMALL_STATE(5139)] = 191862, - [SMALL_STATE(5140)] = 191917, - [SMALL_STATE(5141)] = 191972, - [SMALL_STATE(5142)] = 192027, - [SMALL_STATE(5143)] = 192082, - [SMALL_STATE(5144)] = 192137, - [SMALL_STATE(5145)] = 192192, - [SMALL_STATE(5146)] = 192247, - [SMALL_STATE(5147)] = 192302, - [SMALL_STATE(5148)] = 192361, - [SMALL_STATE(5149)] = 192415, - [SMALL_STATE(5150)] = 192505, - [SMALL_STATE(5151)] = 192559, - [SMALL_STATE(5152)] = 192613, - [SMALL_STATE(5153)] = 192703, - [SMALL_STATE(5154)] = 192757, - [SMALL_STATE(5155)] = 192811, - [SMALL_STATE(5156)] = 192865, - [SMALL_STATE(5157)] = 192919, - [SMALL_STATE(5158)] = 192973, - [SMALL_STATE(5159)] = 193027, - [SMALL_STATE(5160)] = 193081, - [SMALL_STATE(5161)] = 193135, - [SMALL_STATE(5162)] = 193189, - [SMALL_STATE(5163)] = 193243, - [SMALL_STATE(5164)] = 193297, - [SMALL_STATE(5165)] = 193351, - [SMALL_STATE(5166)] = 193405, - [SMALL_STATE(5167)] = 193463, - [SMALL_STATE(5168)] = 193523, - [SMALL_STATE(5169)] = 193583, - [SMALL_STATE(5170)] = 193645, - [SMALL_STATE(5171)] = 193705, - [SMALL_STATE(5172)] = 193765, - [SMALL_STATE(5173)] = 193825, - [SMALL_STATE(5174)] = 193885, - [SMALL_STATE(5175)] = 193939, - [SMALL_STATE(5176)] = 193993, - [SMALL_STATE(5177)] = 194047, - [SMALL_STATE(5178)] = 194105, - [SMALL_STATE(5179)] = 194163, - [SMALL_STATE(5180)] = 194223, - [SMALL_STATE(5181)] = 194277, - [SMALL_STATE(5182)] = 194331, - [SMALL_STATE(5183)] = 194385, - [SMALL_STATE(5184)] = 194443, - [SMALL_STATE(5185)] = 194501, - [SMALL_STATE(5186)] = 194563, - [SMALL_STATE(5187)] = 194617, - [SMALL_STATE(5188)] = 194707, - [SMALL_STATE(5189)] = 194761, - [SMALL_STATE(5190)] = 194815, - [SMALL_STATE(5191)] = 194911, - [SMALL_STATE(5192)] = 194971, - [SMALL_STATE(5193)] = 195027, - [SMALL_STATE(5194)] = 195085, - [SMALL_STATE(5195)] = 195143, - [SMALL_STATE(5196)] = 195201, - [SMALL_STATE(5197)] = 195257, - [SMALL_STATE(5198)] = 195323, - [SMALL_STATE(5199)] = 195389, - [SMALL_STATE(5200)] = 195443, - [SMALL_STATE(5201)] = 195517, - [SMALL_STATE(5202)] = 195571, - [SMALL_STATE(5203)] = 195661, - [SMALL_STATE(5204)] = 195717, - [SMALL_STATE(5205)] = 195791, - [SMALL_STATE(5206)] = 195865, - [SMALL_STATE(5207)] = 195955, - [SMALL_STATE(5208)] = 196011, - [SMALL_STATE(5209)] = 196069, - [SMALL_STATE(5210)] = 196125, - [SMALL_STATE(5211)] = 196179, - [SMALL_STATE(5212)] = 196233, - [SMALL_STATE(5213)] = 196323, - [SMALL_STATE(5214)] = 196377, - [SMALL_STATE(5215)] = 196431, - [SMALL_STATE(5216)] = 196489, - [SMALL_STATE(5217)] = 196543, - [SMALL_STATE(5218)] = 196597, - [SMALL_STATE(5219)] = 196651, - [SMALL_STATE(5220)] = 196705, - [SMALL_STATE(5221)] = 196759, - [SMALL_STATE(5222)] = 196813, - [SMALL_STATE(5223)] = 196877, - [SMALL_STATE(5224)] = 196937, - [SMALL_STATE(5225)] = 196997, - [SMALL_STATE(5226)] = 197065, - [SMALL_STATE(5227)] = 197151, - [SMALL_STATE(5228)] = 197229, - [SMALL_STATE(5229)] = 197299, - [SMALL_STATE(5230)] = 197353, - [SMALL_STATE(5231)] = 197411, - [SMALL_STATE(5232)] = 197477, - [SMALL_STATE(5233)] = 197535, - [SMALL_STATE(5234)] = 197609, - [SMALL_STATE(5235)] = 197663, - [SMALL_STATE(5236)] = 197719, - [SMALL_STATE(5237)] = 197801, - [SMALL_STATE(5238)] = 197855, - [SMALL_STATE(5239)] = 197939, - [SMALL_STATE(5240)] = 197993, - [SMALL_STATE(5241)] = 198047, - [SMALL_STATE(5242)] = 198101, - [SMALL_STATE(5243)] = 198155, - [SMALL_STATE(5244)] = 198209, - [SMALL_STATE(5245)] = 198263, - [SMALL_STATE(5246)] = 198317, - [SMALL_STATE(5247)] = 198413, - [SMALL_STATE(5248)] = 198469, - [SMALL_STATE(5249)] = 198567, - [SMALL_STATE(5250)] = 198623, - [SMALL_STATE(5251)] = 198679, - [SMALL_STATE(5252)] = 198733, - [SMALL_STATE(5253)] = 198787, - [SMALL_STATE(5254)] = 198841, - [SMALL_STATE(5255)] = 198903, - [SMALL_STATE(5256)] = 198957, - [SMALL_STATE(5257)] = 199051, - [SMALL_STATE(5258)] = 199109, - [SMALL_STATE(5259)] = 199163, - [SMALL_STATE(5260)] = 199223, - [SMALL_STATE(5261)] = 199277, - [SMALL_STATE(5262)] = 199331, - [SMALL_STATE(5263)] = 199385, - [SMALL_STATE(5264)] = 199439, - [SMALL_STATE(5265)] = 199493, - [SMALL_STATE(5266)] = 199547, - [SMALL_STATE(5267)] = 199601, - [SMALL_STATE(5268)] = 199655, - [SMALL_STATE(5269)] = 199709, - [SMALL_STATE(5270)] = 199769, - [SMALL_STATE(5271)] = 199823, - [SMALL_STATE(5272)] = 199877, - [SMALL_STATE(5273)] = 199931, - [SMALL_STATE(5274)] = 199985, - [SMALL_STATE(5275)] = 200039, - [SMALL_STATE(5276)] = 200093, - [SMALL_STATE(5277)] = 200149, - [SMALL_STATE(5278)] = 200203, - [SMALL_STATE(5279)] = 200257, - [SMALL_STATE(5280)] = 200311, - [SMALL_STATE(5281)] = 200365, - [SMALL_STATE(5282)] = 200419, - [SMALL_STATE(5283)] = 200475, - [SMALL_STATE(5284)] = 200531, - [SMALL_STATE(5285)] = 200585, - [SMALL_STATE(5286)] = 200639, - [SMALL_STATE(5287)] = 200693, - [SMALL_STATE(5288)] = 200747, - [SMALL_STATE(5289)] = 200803, - [SMALL_STATE(5290)] = 200857, - [SMALL_STATE(5291)] = 200911, - [SMALL_STATE(5292)] = 200965, - [SMALL_STATE(5293)] = 201019, - [SMALL_STATE(5294)] = 201073, - [SMALL_STATE(5295)] = 201127, - [SMALL_STATE(5296)] = 201181, - [SMALL_STATE(5297)] = 201235, - [SMALL_STATE(5298)] = 201291, - [SMALL_STATE(5299)] = 201347, - [SMALL_STATE(5300)] = 201405, - [SMALL_STATE(5301)] = 201461, - [SMALL_STATE(5302)] = 201517, - [SMALL_STATE(5303)] = 201571, - [SMALL_STATE(5304)] = 201625, - [SMALL_STATE(5305)] = 201679, - [SMALL_STATE(5306)] = 201745, - [SMALL_STATE(5307)] = 201799, - [SMALL_STATE(5308)] = 201853, - [SMALL_STATE(5309)] = 201907, - [SMALL_STATE(5310)] = 201961, - [SMALL_STATE(5311)] = 202015, - [SMALL_STATE(5312)] = 202069, - [SMALL_STATE(5313)] = 202123, - [SMALL_STATE(5314)] = 202177, - [SMALL_STATE(5315)] = 202231, - [SMALL_STATE(5316)] = 202285, - [SMALL_STATE(5317)] = 202339, - [SMALL_STATE(5318)] = 202399, - [SMALL_STATE(5319)] = 202495, - [SMALL_STATE(5320)] = 202557, - [SMALL_STATE(5321)] = 202611, - [SMALL_STATE(5322)] = 202665, - [SMALL_STATE(5323)] = 202731, - [SMALL_STATE(5324)] = 202785, - [SMALL_STATE(5325)] = 202839, - [SMALL_STATE(5326)] = 202893, - [SMALL_STATE(5327)] = 202947, - [SMALL_STATE(5328)] = 203001, - [SMALL_STATE(5329)] = 203055, - [SMALL_STATE(5330)] = 203109, - [SMALL_STATE(5331)] = 203163, - [SMALL_STATE(5332)] = 203217, - [SMALL_STATE(5333)] = 203311, - [SMALL_STATE(5334)] = 203365, - [SMALL_STATE(5335)] = 203419, - [SMALL_STATE(5336)] = 203473, - [SMALL_STATE(5337)] = 203529, - [SMALL_STATE(5338)] = 203583, - [SMALL_STATE(5339)] = 203641, - [SMALL_STATE(5340)] = 203695, - [SMALL_STATE(5341)] = 203785, - [SMALL_STATE(5342)] = 203875, - [SMALL_STATE(5343)] = 203929, - [SMALL_STATE(5344)] = 203983, - [SMALL_STATE(5345)] = 204037, - [SMALL_STATE(5346)] = 204091, - [SMALL_STATE(5347)] = 204145, - [SMALL_STATE(5348)] = 204199, - [SMALL_STATE(5349)] = 204253, - [SMALL_STATE(5350)] = 204307, - [SMALL_STATE(5351)] = 204361, - [SMALL_STATE(5352)] = 204415, - [SMALL_STATE(5353)] = 204469, - [SMALL_STATE(5354)] = 204523, - [SMALL_STATE(5355)] = 204577, - [SMALL_STATE(5356)] = 204631, - [SMALL_STATE(5357)] = 204685, - [SMALL_STATE(5358)] = 204739, - [SMALL_STATE(5359)] = 204793, - [SMALL_STATE(5360)] = 204847, - [SMALL_STATE(5361)] = 204933, - [SMALL_STATE(5362)] = 204991, - [SMALL_STATE(5363)] = 205045, - [SMALL_STATE(5364)] = 205099, - [SMALL_STATE(5365)] = 205153, - [SMALL_STATE(5366)] = 205207, - [SMALL_STATE(5367)] = 205293, - [SMALL_STATE(5368)] = 205389, - [SMALL_STATE(5369)] = 205443, - [SMALL_STATE(5370)] = 205497, - [SMALL_STATE(5371)] = 205551, - [SMALL_STATE(5372)] = 205605, - [SMALL_STATE(5373)] = 205659, - [SMALL_STATE(5374)] = 205713, - [SMALL_STATE(5375)] = 205767, - [SMALL_STATE(5376)] = 205821, - [SMALL_STATE(5377)] = 205875, - [SMALL_STATE(5378)] = 205929, - [SMALL_STATE(5379)] = 205983, - [SMALL_STATE(5380)] = 206045, - [SMALL_STATE(5381)] = 206107, - [SMALL_STATE(5382)] = 206193, - [SMALL_STATE(5383)] = 206247, - [SMALL_STATE(5384)] = 206301, - [SMALL_STATE(5385)] = 206355, - [SMALL_STATE(5386)] = 206409, - [SMALL_STATE(5387)] = 206471, - [SMALL_STATE(5388)] = 206567, - [SMALL_STATE(5389)] = 206625, - [SMALL_STATE(5390)] = 206721, - [SMALL_STATE(5391)] = 206779, - [SMALL_STATE(5392)] = 206841, - [SMALL_STATE(5393)] = 206895, - [SMALL_STATE(5394)] = 206949, - [SMALL_STATE(5395)] = 207009, - [SMALL_STATE(5396)] = 207067, - [SMALL_STATE(5397)] = 207125, - [SMALL_STATE(5398)] = 207183, - [SMALL_STATE(5399)] = 207241, - [SMALL_STATE(5400)] = 207303, - [SMALL_STATE(5401)] = 207357, - [SMALL_STATE(5402)] = 207411, - [SMALL_STATE(5403)] = 207477, - [SMALL_STATE(5404)] = 207533, - [SMALL_STATE(5405)] = 207587, - [SMALL_STATE(5406)] = 207641, - [SMALL_STATE(5407)] = 207703, - [SMALL_STATE(5408)] = 207757, - [SMALL_STATE(5409)] = 207811, - [SMALL_STATE(5410)] = 207865, - [SMALL_STATE(5411)] = 207919, - [SMALL_STATE(5412)] = 207973, - [SMALL_STATE(5413)] = 208027, - [SMALL_STATE(5414)] = 208117, - [SMALL_STATE(5415)] = 208171, - [SMALL_STATE(5416)] = 208225, - [SMALL_STATE(5417)] = 208279, - [SMALL_STATE(5418)] = 208333, - [SMALL_STATE(5419)] = 208387, - [SMALL_STATE(5420)] = 208441, - [SMALL_STATE(5421)] = 208495, - [SMALL_STATE(5422)] = 208549, - [SMALL_STATE(5423)] = 208605, - [SMALL_STATE(5424)] = 208659, - [SMALL_STATE(5425)] = 208713, - [SMALL_STATE(5426)] = 208767, - [SMALL_STATE(5427)] = 208821, - [SMALL_STATE(5428)] = 208875, - [SMALL_STATE(5429)] = 208937, - [SMALL_STATE(5430)] = 208991, - [SMALL_STATE(5431)] = 209045, - [SMALL_STATE(5432)] = 209135, - [SMALL_STATE(5433)] = 209189, - [SMALL_STATE(5434)] = 209243, - [SMALL_STATE(5435)] = 209297, - [SMALL_STATE(5436)] = 209351, - [SMALL_STATE(5437)] = 209405, - [SMALL_STATE(5438)] = 209496, - [SMALL_STATE(5439)] = 209589, - [SMALL_STATE(5440)] = 209662, - [SMALL_STATE(5441)] = 209719, - [SMALL_STATE(5442)] = 209772, - [SMALL_STATE(5443)] = 209825, - [SMALL_STATE(5444)] = 209878, - [SMALL_STATE(5445)] = 209931, - [SMALL_STATE(5446)] = 209988, - [SMALL_STATE(5447)] = 210061, - [SMALL_STATE(5448)] = 210114, - [SMALL_STATE(5449)] = 210167, - [SMALL_STATE(5450)] = 210220, - [SMALL_STATE(5451)] = 210273, - [SMALL_STATE(5452)] = 210330, - [SMALL_STATE(5453)] = 210383, - [SMALL_STATE(5454)] = 210436, - [SMALL_STATE(5455)] = 210489, - [SMALL_STATE(5456)] = 210542, - [SMALL_STATE(5457)] = 210599, - [SMALL_STATE(5458)] = 210652, - [SMALL_STATE(5459)] = 210743, - [SMALL_STATE(5460)] = 210796, - [SMALL_STATE(5461)] = 210851, - [SMALL_STATE(5462)] = 210944, - [SMALL_STATE(5463)] = 211037, - [SMALL_STATE(5464)] = 211090, - [SMALL_STATE(5465)] = 211143, - [SMALL_STATE(5466)] = 211198, - [SMALL_STATE(5467)] = 211251, - [SMALL_STATE(5468)] = 211308, - [SMALL_STATE(5469)] = 211367, - [SMALL_STATE(5470)] = 211422, - [SMALL_STATE(5471)] = 211475, - [SMALL_STATE(5472)] = 211530, - [SMALL_STATE(5473)] = 211583, - [SMALL_STATE(5474)] = 211636, - [SMALL_STATE(5475)] = 211689, - [SMALL_STATE(5476)] = 211746, - [SMALL_STATE(5477)] = 211831, - [SMALL_STATE(5478)] = 211884, - [SMALL_STATE(5479)] = 211937, - [SMALL_STATE(5480)] = 211990, - [SMALL_STATE(5481)] = 212043, - [SMALL_STATE(5482)] = 212098, - [SMALL_STATE(5483)] = 212153, - [SMALL_STATE(5484)] = 212206, - [SMALL_STATE(5485)] = 212259, - [SMALL_STATE(5486)] = 212312, - [SMALL_STATE(5487)] = 212365, - [SMALL_STATE(5488)] = 212420, - [SMALL_STATE(5489)] = 212473, - [SMALL_STATE(5490)] = 212526, - [SMALL_STATE(5491)] = 212579, - [SMALL_STATE(5492)] = 212638, - [SMALL_STATE(5493)] = 212691, - [SMALL_STATE(5494)] = 212744, - [SMALL_STATE(5495)] = 212797, - [SMALL_STATE(5496)] = 212850, - [SMALL_STATE(5497)] = 212903, - [SMALL_STATE(5498)] = 212956, - [SMALL_STATE(5499)] = 213047, - [SMALL_STATE(5500)] = 213100, - [SMALL_STATE(5501)] = 213153, - [SMALL_STATE(5502)] = 213206, - [SMALL_STATE(5503)] = 213299, - [SMALL_STATE(5504)] = 213352, - [SMALL_STATE(5505)] = 213405, - [SMALL_STATE(5506)] = 213458, - [SMALL_STATE(5507)] = 213511, - [SMALL_STATE(5508)] = 213564, - [SMALL_STATE(5509)] = 213617, - [SMALL_STATE(5510)] = 213674, - [SMALL_STATE(5511)] = 213727, - [SMALL_STATE(5512)] = 213780, - [SMALL_STATE(5513)] = 213833, - [SMALL_STATE(5514)] = 213888, - [SMALL_STATE(5515)] = 213941, - [SMALL_STATE(5516)] = 213994, - [SMALL_STATE(5517)] = 214049, - [SMALL_STATE(5518)] = 214104, - [SMALL_STATE(5519)] = 214189, - [SMALL_STATE(5520)] = 214282, - [SMALL_STATE(5521)] = 214375, - [SMALL_STATE(5522)] = 214428, - [SMALL_STATE(5523)] = 214521, - [SMALL_STATE(5524)] = 214576, - [SMALL_STATE(5525)] = 214633, - [SMALL_STATE(5526)] = 214690, - [SMALL_STATE(5527)] = 214783, - [SMALL_STATE(5528)] = 214840, - [SMALL_STATE(5529)] = 214893, - [SMALL_STATE(5530)] = 214948, - [SMALL_STATE(5531)] = 215005, - [SMALL_STATE(5532)] = 215058, - [SMALL_STATE(5533)] = 215111, - [SMALL_STATE(5534)] = 215164, - [SMALL_STATE(5535)] = 215217, - [SMALL_STATE(5536)] = 215274, - [SMALL_STATE(5537)] = 215327, - [SMALL_STATE(5538)] = 215380, - [SMALL_STATE(5539)] = 215433, - [SMALL_STATE(5540)] = 215486, - [SMALL_STATE(5541)] = 215539, - [SMALL_STATE(5542)] = 215630, - [SMALL_STATE(5543)] = 215683, - [SMALL_STATE(5544)] = 215774, - [SMALL_STATE(5545)] = 215827, - [SMALL_STATE(5546)] = 215880, - [SMALL_STATE(5547)] = 215933, - [SMALL_STATE(5548)] = 216026, - [SMALL_STATE(5549)] = 216079, - [SMALL_STATE(5550)] = 216132, - [SMALL_STATE(5551)] = 216199, - [SMALL_STATE(5552)] = 216258, - [SMALL_STATE(5553)] = 216311, - [SMALL_STATE(5554)] = 216364, - [SMALL_STATE(5555)] = 216417, - [SMALL_STATE(5556)] = 216470, - [SMALL_STATE(5557)] = 216523, - [SMALL_STATE(5558)] = 216616, - [SMALL_STATE(5559)] = 216671, - [SMALL_STATE(5560)] = 216744, - [SMALL_STATE(5561)] = 216797, - [SMALL_STATE(5562)] = 216850, - [SMALL_STATE(5563)] = 216905, - [SMALL_STATE(5564)] = 216958, - [SMALL_STATE(5565)] = 217011, - [SMALL_STATE(5566)] = 217064, - [SMALL_STATE(5567)] = 217119, - [SMALL_STATE(5568)] = 217172, - [SMALL_STATE(5569)] = 217225, - [SMALL_STATE(5570)] = 217278, - [SMALL_STATE(5571)] = 217331, - [SMALL_STATE(5572)] = 217384, - [SMALL_STATE(5573)] = 217437, - [SMALL_STATE(5574)] = 217490, - [SMALL_STATE(5575)] = 217549, - [SMALL_STATE(5576)] = 217602, - [SMALL_STATE(5577)] = 217655, - [SMALL_STATE(5578)] = 217710, - [SMALL_STATE(5579)] = 217767, - [SMALL_STATE(5580)] = 217820, - [SMALL_STATE(5581)] = 217873, - [SMALL_STATE(5582)] = 217932, - [SMALL_STATE(5583)] = 217985, - [SMALL_STATE(5584)] = 218040, - [SMALL_STATE(5585)] = 218095, - [SMALL_STATE(5586)] = 218148, - [SMALL_STATE(5587)] = 218201, - [SMALL_STATE(5588)] = 218256, - [SMALL_STATE(5589)] = 218311, - [SMALL_STATE(5590)] = 218368, - [SMALL_STATE(5591)] = 218421, - [SMALL_STATE(5592)] = 218476, - [SMALL_STATE(5593)] = 218531, - [SMALL_STATE(5594)] = 218586, - [SMALL_STATE(5595)] = 218639, - [SMALL_STATE(5596)] = 218694, - [SMALL_STATE(5597)] = 218749, - [SMALL_STATE(5598)] = 218802, - [SMALL_STATE(5599)] = 218857, - [SMALL_STATE(5600)] = 218950, - [SMALL_STATE(5601)] = 219003, - [SMALL_STATE(5602)] = 219088, - [SMALL_STATE(5603)] = 219141, - [SMALL_STATE(5604)] = 219194, - [SMALL_STATE(5605)] = 219287, - [SMALL_STATE(5606)] = 219344, - [SMALL_STATE(5607)] = 219403, - [SMALL_STATE(5608)] = 219496, - [SMALL_STATE(5609)] = 219553, - [SMALL_STATE(5610)] = 219626, - [SMALL_STATE(5611)] = 219683, - [SMALL_STATE(5612)] = 219736, - [SMALL_STATE(5613)] = 219789, - [SMALL_STATE(5614)] = 219842, - [SMALL_STATE(5615)] = 219899, - [SMALL_STATE(5616)] = 219952, - [SMALL_STATE(5617)] = 220005, - [SMALL_STATE(5618)] = 220058, - [SMALL_STATE(5619)] = 220111, - [SMALL_STATE(5620)] = 220164, - [SMALL_STATE(5621)] = 220217, - [SMALL_STATE(5622)] = 220308, - [SMALL_STATE(5623)] = 220365, - [SMALL_STATE(5624)] = 220458, - [SMALL_STATE(5625)] = 220515, - [SMALL_STATE(5626)] = 220608, - [SMALL_STATE(5627)] = 220699, - [SMALL_STATE(5628)] = 220790, - [SMALL_STATE(5629)] = 220847, - [SMALL_STATE(5630)] = 220904, - [SMALL_STATE(5631)] = 220961, - [SMALL_STATE(5632)] = 221018, - [SMALL_STATE(5633)] = 221075, - [SMALL_STATE(5634)] = 221128, - [SMALL_STATE(5635)] = 221185, - [SMALL_STATE(5636)] = 221240, - [SMALL_STATE(5637)] = 221331, - [SMALL_STATE(5638)] = 221386, - [SMALL_STATE(5639)] = 221449, - [SMALL_STATE(5640)] = 221508, - [SMALL_STATE(5641)] = 221567, - [SMALL_STATE(5642)] = 221634, - [SMALL_STATE(5643)] = 221719, - [SMALL_STATE(5644)] = 221796, - [SMALL_STATE(5645)] = 221865, - [SMALL_STATE(5646)] = 221918, - [SMALL_STATE(5647)] = 221973, - [SMALL_STATE(5648)] = 222026, - [SMALL_STATE(5649)] = 222083, - [SMALL_STATE(5650)] = 222138, - [SMALL_STATE(5651)] = 222193, - [SMALL_STATE(5652)] = 222246, - [SMALL_STATE(5653)] = 222299, - [SMALL_STATE(5654)] = 222392, - [SMALL_STATE(5655)] = 222447, - [SMALL_STATE(5656)] = 222500, - [SMALL_STATE(5657)] = 222591, - [SMALL_STATE(5658)] = 222648, - [SMALL_STATE(5659)] = 222701, - [SMALL_STATE(5660)] = 222766, - [SMALL_STATE(5661)] = 222823, - [SMALL_STATE(5662)] = 222876, - [SMALL_STATE(5663)] = 222931, - [SMALL_STATE(5664)] = 223024, - [SMALL_STATE(5665)] = 223077, - [SMALL_STATE(5666)] = 223170, - [SMALL_STATE(5667)] = 223243, - [SMALL_STATE(5668)] = 223296, - [SMALL_STATE(5669)] = 223351, - [SMALL_STATE(5670)] = 223404, - [SMALL_STATE(5671)] = 223497, - [SMALL_STATE(5672)] = 223554, - [SMALL_STATE(5673)] = 223647, - [SMALL_STATE(5674)] = 223704, - [SMALL_STATE(5675)] = 223761, - [SMALL_STATE(5676)] = 223818, - [SMALL_STATE(5677)] = 223873, - [SMALL_STATE(5678)] = 223926, - [SMALL_STATE(5679)] = 223979, - [SMALL_STATE(5680)] = 224032, - [SMALL_STATE(5681)] = 224099, - [SMALL_STATE(5682)] = 224180, - [SMALL_STATE(5683)] = 224263, - [SMALL_STATE(5684)] = 224318, - [SMALL_STATE(5685)] = 224377, - [SMALL_STATE(5686)] = 224430, - [SMALL_STATE(5687)] = 224487, - [SMALL_STATE(5688)] = 224540, - [SMALL_STATE(5689)] = 224597, - [SMALL_STATE(5690)] = 224650, - [SMALL_STATE(5691)] = 224703, - [SMALL_STATE(5692)] = 224762, - [SMALL_STATE(5693)] = 224815, - [SMALL_STATE(5694)] = 224868, - [SMALL_STATE(5695)] = 224921, - [SMALL_STATE(5696)] = 224974, - [SMALL_STATE(5697)] = 225027, - [SMALL_STATE(5698)] = 225082, - [SMALL_STATE(5699)] = 225135, - [SMALL_STATE(5700)] = 225188, - [SMALL_STATE(5701)] = 225241, - [SMALL_STATE(5702)] = 225294, - [SMALL_STATE(5703)] = 225347, - [SMALL_STATE(5704)] = 225406, - [SMALL_STATE(5705)] = 225459, - [SMALL_STATE(5706)] = 225512, - [SMALL_STATE(5707)] = 225565, - [SMALL_STATE(5708)] = 225620, - [SMALL_STATE(5709)] = 225673, - [SMALL_STATE(5710)] = 225726, - [SMALL_STATE(5711)] = 225779, - [SMALL_STATE(5712)] = 225832, - [SMALL_STATE(5713)] = 225885, - [SMALL_STATE(5714)] = 225938, - [SMALL_STATE(5715)] = 225991, - [SMALL_STATE(5716)] = 226044, - [SMALL_STATE(5717)] = 226097, - [SMALL_STATE(5718)] = 226150, - [SMALL_STATE(5719)] = 226203, - [SMALL_STATE(5720)] = 226256, - [SMALL_STATE(5721)] = 226309, - [SMALL_STATE(5722)] = 226364, - [SMALL_STATE(5723)] = 226417, - [SMALL_STATE(5724)] = 226474, - [SMALL_STATE(5725)] = 226541, - [SMALL_STATE(5726)] = 226596, - [SMALL_STATE(5727)] = 226653, - [SMALL_STATE(5728)] = 226746, - [SMALL_STATE(5729)] = 226799, - [SMALL_STATE(5730)] = 226852, - [SMALL_STATE(5731)] = 226909, - [SMALL_STATE(5732)] = 226962, - [SMALL_STATE(5733)] = 227015, - [SMALL_STATE(5734)] = 227068, - [SMALL_STATE(5735)] = 227161, - [SMALL_STATE(5736)] = 227214, - [SMALL_STATE(5737)] = 227281, - [SMALL_STATE(5738)] = 227334, - [SMALL_STATE(5739)] = 227387, - [SMALL_STATE(5740)] = 227440, - [SMALL_STATE(5741)] = 227497, - [SMALL_STATE(5742)] = 227570, - [SMALL_STATE(5743)] = 227623, - [SMALL_STATE(5744)] = 227676, - [SMALL_STATE(5745)] = 227733, - [SMALL_STATE(5746)] = 227786, - [SMALL_STATE(5747)] = 227843, - [SMALL_STATE(5748)] = 227896, - [SMALL_STATE(5749)] = 227949, - [SMALL_STATE(5750)] = 228006, - [SMALL_STATE(5751)] = 228063, - [SMALL_STATE(5752)] = 228157, - [SMALL_STATE(5753)] = 228229, - [SMALL_STATE(5754)] = 228323, - [SMALL_STATE(5755)] = 228375, - [SMALL_STATE(5756)] = 228427, - [SMALL_STATE(5757)] = 228479, - [SMALL_STATE(5758)] = 228531, - [SMALL_STATE(5759)] = 228627, - [SMALL_STATE(5760)] = 228679, - [SMALL_STATE(5761)] = 228759, - [SMALL_STATE(5762)] = 228811, - [SMALL_STATE(5763)] = 228863, - [SMALL_STATE(5764)] = 228919, - [SMALL_STATE(5765)] = 229003, - [SMALL_STATE(5766)] = 229055, - [SMALL_STATE(5767)] = 229107, - [SMALL_STATE(5768)] = 229159, - [SMALL_STATE(5769)] = 229211, - [SMALL_STATE(5770)] = 229263, - [SMALL_STATE(5771)] = 229315, - [SMALL_STATE(5772)] = 229367, - [SMALL_STATE(5773)] = 229419, - [SMALL_STATE(5774)] = 229471, - [SMALL_STATE(5775)] = 229565, - [SMALL_STATE(5776)] = 229621, - [SMALL_STATE(5777)] = 229677, - [SMALL_STATE(5778)] = 229773, - [SMALL_STATE(5779)] = 229825, - [SMALL_STATE(5780)] = 229877, - [SMALL_STATE(5781)] = 229929, - [SMALL_STATE(5782)] = 229981, - [SMALL_STATE(5783)] = 230063, - [SMALL_STATE(5784)] = 230115, - [SMALL_STATE(5785)] = 230167, - [SMALL_STATE(5786)] = 230219, - [SMALL_STATE(5787)] = 230271, - [SMALL_STATE(5788)] = 230323, - [SMALL_STATE(5789)] = 230375, - [SMALL_STATE(5790)] = 230427, - [SMALL_STATE(5791)] = 230479, - [SMALL_STATE(5792)] = 230531, - [SMALL_STATE(5793)] = 230583, - [SMALL_STATE(5794)] = 230677, - [SMALL_STATE(5795)] = 230729, - [SMALL_STATE(5796)] = 230781, - [SMALL_STATE(5797)] = 230877, - [SMALL_STATE(5798)] = 230929, - [SMALL_STATE(5799)] = 230981, - [SMALL_STATE(5800)] = 231033, - [SMALL_STATE(5801)] = 231127, - [SMALL_STATE(5802)] = 231179, - [SMALL_STATE(5803)] = 231231, - [SMALL_STATE(5804)] = 231283, - [SMALL_STATE(5805)] = 231335, - [SMALL_STATE(5806)] = 231387, - [SMALL_STATE(5807)] = 231439, - [SMALL_STATE(5808)] = 231491, - [SMALL_STATE(5809)] = 231543, - [SMALL_STATE(5810)] = 231595, - [SMALL_STATE(5811)] = 231647, - [SMALL_STATE(5812)] = 231731, - [SMALL_STATE(5813)] = 231783, - [SMALL_STATE(5814)] = 231835, - [SMALL_STATE(5815)] = 231887, - [SMALL_STATE(5816)] = 231939, - [SMALL_STATE(5817)] = 231991, - [SMALL_STATE(5818)] = 232085, - [SMALL_STATE(5819)] = 232137, - [SMALL_STATE(5820)] = 232189, - [SMALL_STATE(5821)] = 232241, - [SMALL_STATE(5822)] = 232293, - [SMALL_STATE(5823)] = 232345, - [SMALL_STATE(5824)] = 232441, - [SMALL_STATE(5825)] = 232493, - [SMALL_STATE(5826)] = 232545, - [SMALL_STATE(5827)] = 232597, - [SMALL_STATE(5828)] = 232649, - [SMALL_STATE(5829)] = 232701, - [SMALL_STATE(5830)] = 232753, - [SMALL_STATE(5831)] = 232805, - [SMALL_STATE(5832)] = 232857, - [SMALL_STATE(5833)] = 232909, - [SMALL_STATE(5834)] = 232961, - [SMALL_STATE(5835)] = 233013, - [SMALL_STATE(5836)] = 233065, - [SMALL_STATE(5837)] = 233119, - [SMALL_STATE(5838)] = 233207, - [SMALL_STATE(5839)] = 233295, - [SMALL_STATE(5840)] = 233347, - [SMALL_STATE(5841)] = 233399, - [SMALL_STATE(5842)] = 233451, - [SMALL_STATE(5843)] = 233539, - [SMALL_STATE(5844)] = 233591, - [SMALL_STATE(5845)] = 233643, - [SMALL_STATE(5846)] = 233695, - [SMALL_STATE(5847)] = 233791, - [SMALL_STATE(5848)] = 233843, - [SMALL_STATE(5849)] = 233895, - [SMALL_STATE(5850)] = 233947, - [SMALL_STATE(5851)] = 233999, - [SMALL_STATE(5852)] = 234051, - [SMALL_STATE(5853)] = 234103, - [SMALL_STATE(5854)] = 234155, - [SMALL_STATE(5855)] = 234217, - [SMALL_STATE(5856)] = 234275, - [SMALL_STATE(5857)] = 234333, - [SMALL_STATE(5858)] = 234399, - [SMALL_STATE(5859)] = 234483, - [SMALL_STATE(5860)] = 234559, - [SMALL_STATE(5861)] = 234627, - [SMALL_STATE(5862)] = 234691, - [SMALL_STATE(5863)] = 234763, - [SMALL_STATE(5864)] = 234843, - [SMALL_STATE(5865)] = 234925, - [SMALL_STATE(5866)] = 234977, - [SMALL_STATE(5867)] = 235029, - [SMALL_STATE(5868)] = 235081, - [SMALL_STATE(5869)] = 235133, - [SMALL_STATE(5870)] = 235185, - [SMALL_STATE(5871)] = 235237, - [SMALL_STATE(5872)] = 235331, - [SMALL_STATE(5873)] = 235383, - [SMALL_STATE(5874)] = 235435, - [SMALL_STATE(5875)] = 235487, - [SMALL_STATE(5876)] = 235583, - [SMALL_STATE(5877)] = 235635, - [SMALL_STATE(5878)] = 235687, - [SMALL_STATE(5879)] = 235739, - [SMALL_STATE(5880)] = 235791, - [SMALL_STATE(5881)] = 235843, - [SMALL_STATE(5882)] = 235895, - [SMALL_STATE(5883)] = 235947, - [SMALL_STATE(5884)] = 235999, - [SMALL_STATE(5885)] = 236051, - [SMALL_STATE(5886)] = 236103, - [SMALL_STATE(5887)] = 236155, - [SMALL_STATE(5888)] = 236207, - [SMALL_STATE(5889)] = 236259, - [SMALL_STATE(5890)] = 236311, - [SMALL_STATE(5891)] = 236363, - [SMALL_STATE(5892)] = 236415, - [SMALL_STATE(5893)] = 236509, - [SMALL_STATE(5894)] = 236561, - [SMALL_STATE(5895)] = 236613, - [SMALL_STATE(5896)] = 236709, - [SMALL_STATE(5897)] = 236761, - [SMALL_STATE(5898)] = 236813, - [SMALL_STATE(5899)] = 236865, - [SMALL_STATE(5900)] = 236917, - [SMALL_STATE(5901)] = 236973, - [SMALL_STATE(5902)] = 237025, - [SMALL_STATE(5903)] = 237077, - [SMALL_STATE(5904)] = 237129, - [SMALL_STATE(5905)] = 237181, - [SMALL_STATE(5906)] = 237233, - [SMALL_STATE(5907)] = 237285, - [SMALL_STATE(5908)] = 237337, - [SMALL_STATE(5909)] = 237389, - [SMALL_STATE(5910)] = 237441, - [SMALL_STATE(5911)] = 237493, - [SMALL_STATE(5912)] = 237545, - [SMALL_STATE(5913)] = 237597, - [SMALL_STATE(5914)] = 237681, - [SMALL_STATE(5915)] = 237777, - [SMALL_STATE(5916)] = 237829, - [SMALL_STATE(5917)] = 237881, - [SMALL_STATE(5918)] = 237933, - [SMALL_STATE(5919)] = 237985, - [SMALL_STATE(5920)] = 238037, - [SMALL_STATE(5921)] = 238089, - [SMALL_STATE(5922)] = 238141, - [SMALL_STATE(5923)] = 238193, - [SMALL_STATE(5924)] = 238289, - [SMALL_STATE(5925)] = 238343, - [SMALL_STATE(5926)] = 238439, - [SMALL_STATE(5927)] = 238491, - [SMALL_STATE(5928)] = 238543, - [SMALL_STATE(5929)] = 238595, - [SMALL_STATE(5930)] = 238647, - [SMALL_STATE(5931)] = 238699, - [SMALL_STATE(5932)] = 238795, - [SMALL_STATE(5933)] = 238847, - [SMALL_STATE(5934)] = 238943, - [SMALL_STATE(5935)] = 239039, - [SMALL_STATE(5936)] = 239135, - [SMALL_STATE(5937)] = 239231, - [SMALL_STATE(5938)] = 239285, - [SMALL_STATE(5939)] = 239337, - [SMALL_STATE(5940)] = 239389, - [SMALL_STATE(5941)] = 239441, - [SMALL_STATE(5942)] = 239493, - [SMALL_STATE(5943)] = 239545, - [SMALL_STATE(5944)] = 239633, - [SMALL_STATE(5945)] = 239685, - [SMALL_STATE(5946)] = 239737, - [SMALL_STATE(5947)] = 239789, - [SMALL_STATE(5948)] = 239841, - [SMALL_STATE(5949)] = 239893, - [SMALL_STATE(5950)] = 239945, - [SMALL_STATE(5951)] = 239997, - [SMALL_STATE(5952)] = 240049, - [SMALL_STATE(5953)] = 240101, - [SMALL_STATE(5954)] = 240153, - [SMALL_STATE(5955)] = 240205, - [SMALL_STATE(5956)] = 240293, - [SMALL_STATE(5957)] = 240345, - [SMALL_STATE(5958)] = 240397, - [SMALL_STATE(5959)] = 240449, - [SMALL_STATE(5960)] = 240501, - [SMALL_STATE(5961)] = 240553, - [SMALL_STATE(5962)] = 240605, - [SMALL_STATE(5963)] = 240657, - [SMALL_STATE(5964)] = 240709, - [SMALL_STATE(5965)] = 240761, - [SMALL_STATE(5966)] = 240813, - [SMALL_STATE(5967)] = 240865, - [SMALL_STATE(5968)] = 240917, - [SMALL_STATE(5969)] = 240971, - [SMALL_STATE(5970)] = 241055, - [SMALL_STATE(5971)] = 241109, - [SMALL_STATE(5972)] = 241197, - [SMALL_STATE(5973)] = 241285, - [SMALL_STATE(5974)] = 241339, - [SMALL_STATE(5975)] = 241427, - [SMALL_STATE(5976)] = 241515, - [SMALL_STATE(5977)] = 241603, - [SMALL_STATE(5978)] = 241655, - [SMALL_STATE(5979)] = 241711, - [SMALL_STATE(5980)] = 241767, - [SMALL_STATE(5981)] = 241855, - [SMALL_STATE(5982)] = 241907, - [SMALL_STATE(5983)] = 241959, - [SMALL_STATE(5984)] = 242043, - [SMALL_STATE(5985)] = 242131, - [SMALL_STATE(5986)] = 242219, - [SMALL_STATE(5987)] = 242307, - [SMALL_STATE(5988)] = 242369, - [SMALL_STATE(5989)] = 242427, - [SMALL_STATE(5990)] = 242485, - [SMALL_STATE(5991)] = 242551, - [SMALL_STATE(5992)] = 242603, - [SMALL_STATE(5993)] = 242687, - [SMALL_STATE(5994)] = 242763, - [SMALL_STATE(5995)] = 242831, - [SMALL_STATE(5996)] = 242895, - [SMALL_STATE(5997)] = 242967, - [SMALL_STATE(5998)] = 243047, - [SMALL_STATE(5999)] = 243129, - [SMALL_STATE(6000)] = 243181, - [SMALL_STATE(6001)] = 243269, - [SMALL_STATE(6002)] = 243321, - [SMALL_STATE(6003)] = 243409, - [SMALL_STATE(6004)] = 243493, - [SMALL_STATE(6005)] = 243581, - [SMALL_STATE(6006)] = 243669, - [SMALL_STATE(6007)] = 243721, - [SMALL_STATE(6008)] = 243773, - [SMALL_STATE(6009)] = 243825, - [SMALL_STATE(6010)] = 243877, - [SMALL_STATE(6011)] = 243929, - [SMALL_STATE(6012)] = 243981, - [SMALL_STATE(6013)] = 244033, - [SMALL_STATE(6014)] = 244085, - [SMALL_STATE(6015)] = 244137, - [SMALL_STATE(6016)] = 244189, - [SMALL_STATE(6017)] = 244241, - [SMALL_STATE(6018)] = 244293, - [SMALL_STATE(6019)] = 244377, - [SMALL_STATE(6020)] = 244429, - [SMALL_STATE(6021)] = 244481, - [SMALL_STATE(6022)] = 244569, - [SMALL_STATE(6023)] = 244621, - [SMALL_STATE(6024)] = 244675, - [SMALL_STATE(6025)] = 244727, - [SMALL_STATE(6026)] = 244779, - [SMALL_STATE(6027)] = 244831, - [SMALL_STATE(6028)] = 244883, - [SMALL_STATE(6029)] = 244935, - [SMALL_STATE(6030)] = 244987, - [SMALL_STATE(6031)] = 245039, - [SMALL_STATE(6032)] = 245091, - [SMALL_STATE(6033)] = 245179, - [SMALL_STATE(6034)] = 245231, - [SMALL_STATE(6035)] = 245283, - [SMALL_STATE(6036)] = 245367, - [SMALL_STATE(6037)] = 245419, - [SMALL_STATE(6038)] = 245471, - [SMALL_STATE(6039)] = 245523, - [SMALL_STATE(6040)] = 245575, - [SMALL_STATE(6041)] = 245627, - [SMALL_STATE(6042)] = 245681, - [SMALL_STATE(6043)] = 245733, - [SMALL_STATE(6044)] = 245785, - [SMALL_STATE(6045)] = 245837, - [SMALL_STATE(6046)] = 245889, - [SMALL_STATE(6047)] = 245941, - [SMALL_STATE(6048)] = 245993, - [SMALL_STATE(6049)] = 246087, - [SMALL_STATE(6050)] = 246139, - [SMALL_STATE(6051)] = 246191, - [SMALL_STATE(6052)] = 246243, - [SMALL_STATE(6053)] = 246295, - [SMALL_STATE(6054)] = 246347, - [SMALL_STATE(6055)] = 246399, - [SMALL_STATE(6056)] = 246451, - [SMALL_STATE(6057)] = 246503, - [SMALL_STATE(6058)] = 246555, - [SMALL_STATE(6059)] = 246607, - [SMALL_STATE(6060)] = 246703, - [SMALL_STATE(6061)] = 246755, - [SMALL_STATE(6062)] = 246807, - [SMALL_STATE(6063)] = 246859, - [SMALL_STATE(6064)] = 246911, - [SMALL_STATE(6065)] = 246999, - [SMALL_STATE(6066)] = 247053, - [SMALL_STATE(6067)] = 247105, - [SMALL_STATE(6068)] = 247157, - [SMALL_STATE(6069)] = 247209, - [SMALL_STATE(6070)] = 247261, - [SMALL_STATE(6071)] = 247313, - [SMALL_STATE(6072)] = 247365, - [SMALL_STATE(6073)] = 247417, - [SMALL_STATE(6074)] = 247469, - [SMALL_STATE(6075)] = 247521, - [SMALL_STATE(6076)] = 247573, - [SMALL_STATE(6077)] = 247625, - [SMALL_STATE(6078)] = 247677, - [SMALL_STATE(6079)] = 247765, - [SMALL_STATE(6080)] = 247853, - [SMALL_STATE(6081)] = 247905, - [SMALL_STATE(6082)] = 247959, - [SMALL_STATE(6083)] = 248015, - [SMALL_STATE(6084)] = 248069, - [SMALL_STATE(6085)] = 248123, - [SMALL_STATE(6086)] = 248217, - [SMALL_STATE(6087)] = 248313, - [SMALL_STATE(6088)] = 248365, - [SMALL_STATE(6089)] = 248419, - [SMALL_STATE(6090)] = 248471, - [SMALL_STATE(6091)] = 248523, - [SMALL_STATE(6092)] = 248575, - [SMALL_STATE(6093)] = 248627, - [SMALL_STATE(6094)] = 248679, - [SMALL_STATE(6095)] = 248733, - [SMALL_STATE(6096)] = 248785, - [SMALL_STATE(6097)] = 248837, - [SMALL_STATE(6098)] = 248889, - [SMALL_STATE(6099)] = 248941, - [SMALL_STATE(6100)] = 248993, - [SMALL_STATE(6101)] = 249045, - [SMALL_STATE(6102)] = 249097, - [SMALL_STATE(6103)] = 249149, - [SMALL_STATE(6104)] = 249201, - [SMALL_STATE(6105)] = 249253, - [SMALL_STATE(6106)] = 249305, - [SMALL_STATE(6107)] = 249357, - [SMALL_STATE(6108)] = 249451, - [SMALL_STATE(6109)] = 249545, - [SMALL_STATE(6110)] = 249601, - [SMALL_STATE(6111)] = 249653, - [SMALL_STATE(6112)] = 249705, - [SMALL_STATE(6113)] = 249757, - [SMALL_STATE(6114)] = 249851, - [SMALL_STATE(6115)] = 249903, - [SMALL_STATE(6116)] = 249955, - [SMALL_STATE(6117)] = 250007, - [SMALL_STATE(6118)] = 250059, - [SMALL_STATE(6119)] = 250111, - [SMALL_STATE(6120)] = 250199, - [SMALL_STATE(6121)] = 250251, - [SMALL_STATE(6122)] = 250303, - [SMALL_STATE(6123)] = 250391, - [SMALL_STATE(6124)] = 250443, - [SMALL_STATE(6125)] = 250531, - [SMALL_STATE(6126)] = 250583, - [SMALL_STATE(6127)] = 250671, - [SMALL_STATE(6128)] = 250767, - [SMALL_STATE(6129)] = 250819, - [SMALL_STATE(6130)] = 250873, - [SMALL_STATE(6131)] = 250957, - [SMALL_STATE(6132)] = 251009, - [SMALL_STATE(6133)] = 251061, - [SMALL_STATE(6134)] = 251113, - [SMALL_STATE(6135)] = 251165, - [SMALL_STATE(6136)] = 251253, - [SMALL_STATE(6137)] = 251341, - [SMALL_STATE(6138)] = 251393, - [SMALL_STATE(6139)] = 251445, - [SMALL_STATE(6140)] = 251497, - [SMALL_STATE(6141)] = 251549, - [SMALL_STATE(6142)] = 251601, - [SMALL_STATE(6143)] = 251653, - [SMALL_STATE(6144)] = 251707, - [SMALL_STATE(6145)] = 251763, - [SMALL_STATE(6146)] = 251817, - [SMALL_STATE(6147)] = 251869, - [SMALL_STATE(6148)] = 251921, - [SMALL_STATE(6149)] = 251977, - [SMALL_STATE(6150)] = 252071, - [SMALL_STATE(6151)] = 252129, - [SMALL_STATE(6152)] = 252181, - [SMALL_STATE(6153)] = 252277, - [SMALL_STATE(6154)] = 252331, - [SMALL_STATE(6155)] = 252383, - [SMALL_STATE(6156)] = 252435, - [SMALL_STATE(6157)] = 252487, - [SMALL_STATE(6158)] = 252559, - [SMALL_STATE(6159)] = 252611, - [SMALL_STATE(6160)] = 252705, - [SMALL_STATE(6161)] = 252777, - [SMALL_STATE(6162)] = 252865, - [SMALL_STATE(6163)] = 252937, - [SMALL_STATE(6164)] = 253025, - [SMALL_STATE(6165)] = 253077, - [SMALL_STATE(6166)] = 253165, - [SMALL_STATE(6167)] = 253217, - [SMALL_STATE(6168)] = 253269, - [SMALL_STATE(6169)] = 253321, - [SMALL_STATE(6170)] = 253373, - [SMALL_STATE(6171)] = 253425, - [SMALL_STATE(6172)] = 253477, - [SMALL_STATE(6173)] = 253529, - [SMALL_STATE(6174)] = 253581, - [SMALL_STATE(6175)] = 253643, - [SMALL_STATE(6176)] = 253737, - [SMALL_STATE(6177)] = 253789, - [SMALL_STATE(6178)] = 253847, - [SMALL_STATE(6179)] = 253899, - [SMALL_STATE(6180)] = 253995, - [SMALL_STATE(6181)] = 254047, - [SMALL_STATE(6182)] = 254099, - [SMALL_STATE(6183)] = 254151, - [SMALL_STATE(6184)] = 254203, - [SMALL_STATE(6185)] = 254297, - [SMALL_STATE(6186)] = 254349, - [SMALL_STATE(6187)] = 254401, - [SMALL_STATE(6188)] = 254453, - [SMALL_STATE(6189)] = 254505, - [SMALL_STATE(6190)] = 254557, - [SMALL_STATE(6191)] = 254609, - [SMALL_STATE(6192)] = 254667, - [SMALL_STATE(6193)] = 254719, - [SMALL_STATE(6194)] = 254813, - [SMALL_STATE(6195)] = 254865, - [SMALL_STATE(6196)] = 254917, - [SMALL_STATE(6197)] = 254983, - [SMALL_STATE(6198)] = 255079, - [SMALL_STATE(6199)] = 255131, - [SMALL_STATE(6200)] = 255215, - [SMALL_STATE(6201)] = 255271, - [SMALL_STATE(6202)] = 255323, - [SMALL_STATE(6203)] = 255399, - [SMALL_STATE(6204)] = 255451, - [SMALL_STATE(6205)] = 255503, - [SMALL_STATE(6206)] = 255555, - [SMALL_STATE(6207)] = 255623, - [SMALL_STATE(6208)] = 255719, - [SMALL_STATE(6209)] = 255783, - [SMALL_STATE(6210)] = 255835, - [SMALL_STATE(6211)] = 255887, - [SMALL_STATE(6212)] = 255976, - [SMALL_STATE(6213)] = 256027, - [SMALL_STATE(6214)] = 256106, - [SMALL_STATE(6215)] = 256157, - [SMALL_STATE(6216)] = 256248, - [SMALL_STATE(6217)] = 256301, - [SMALL_STATE(6218)] = 256392, - [SMALL_STATE(6219)] = 256481, - [SMALL_STATE(6220)] = 256532, - [SMALL_STATE(6221)] = 256585, - [SMALL_STATE(6222)] = 256676, - [SMALL_STATE(6223)] = 256735, - [SMALL_STATE(6224)] = 256792, - [SMALL_STATE(6225)] = 256883, - [SMALL_STATE(6226)] = 256934, - [SMALL_STATE(6227)] = 256985, - [SMALL_STATE(6228)] = 257036, - [SMALL_STATE(6229)] = 257089, - [SMALL_STATE(6230)] = 257140, - [SMALL_STATE(6231)] = 257229, - [SMALL_STATE(6232)] = 257320, - [SMALL_STATE(6233)] = 257411, - [SMALL_STATE(6234)] = 257502, - [SMALL_STATE(6235)] = 257593, - [SMALL_STATE(6236)] = 257644, - [SMALL_STATE(6237)] = 257695, - [SMALL_STATE(6238)] = 257746, - [SMALL_STATE(6239)] = 257837, - [SMALL_STATE(6240)] = 257888, - [SMALL_STATE(6241)] = 257939, - [SMALL_STATE(6242)] = 257990, - [SMALL_STATE(6243)] = 258041, - [SMALL_STATE(6244)] = 258094, - [SMALL_STATE(6245)] = 258147, - [SMALL_STATE(6246)] = 258200, - [SMALL_STATE(6247)] = 258255, - [SMALL_STATE(6248)] = 258306, - [SMALL_STATE(6249)] = 258397, - [SMALL_STATE(6250)] = 258450, - [SMALL_STATE(6251)] = 258501, - [SMALL_STATE(6252)] = 258552, - [SMALL_STATE(6253)] = 258603, - [SMALL_STATE(6254)] = 258654, - [SMALL_STATE(6255)] = 258743, - [SMALL_STATE(6256)] = 258796, - [SMALL_STATE(6257)] = 258887, - [SMALL_STATE(6258)] = 258976, - [SMALL_STATE(6259)] = 259027, - [SMALL_STATE(6260)] = 259078, - [SMALL_STATE(6261)] = 259169, - [SMALL_STATE(6262)] = 259220, - [SMALL_STATE(6263)] = 259271, - [SMALL_STATE(6264)] = 259322, - [SMALL_STATE(6265)] = 259373, - [SMALL_STATE(6266)] = 259424, - [SMALL_STATE(6267)] = 259475, - [SMALL_STATE(6268)] = 259526, - [SMALL_STATE(6269)] = 259577, - [SMALL_STATE(6270)] = 259628, - [SMALL_STATE(6271)] = 259679, - [SMALL_STATE(6272)] = 259768, - [SMALL_STATE(6273)] = 259819, - [SMALL_STATE(6274)] = 259870, - [SMALL_STATE(6275)] = 259921, - [SMALL_STATE(6276)] = 259972, - [SMALL_STATE(6277)] = 260023, - [SMALL_STATE(6278)] = 260074, - [SMALL_STATE(6279)] = 260125, - [SMALL_STATE(6280)] = 260176, - [SMALL_STATE(6281)] = 260231, - [SMALL_STATE(6282)] = 260282, - [SMALL_STATE(6283)] = 260333, - [SMALL_STATE(6284)] = 260424, - [SMALL_STATE(6285)] = 260515, - [SMALL_STATE(6286)] = 260598, - [SMALL_STATE(6287)] = 260689, - [SMALL_STATE(6288)] = 260778, - [SMALL_STATE(6289)] = 260829, - [SMALL_STATE(6290)] = 260882, - [SMALL_STATE(6291)] = 260973, - [SMALL_STATE(6292)] = 261064, - [SMALL_STATE(6293)] = 261155, - [SMALL_STATE(6294)] = 261246, - [SMALL_STATE(6295)] = 261337, - [SMALL_STATE(6296)] = 261388, - [SMALL_STATE(6297)] = 261479, - [SMALL_STATE(6298)] = 261538, - [SMALL_STATE(6299)] = 261629, - [SMALL_STATE(6300)] = 261720, - [SMALL_STATE(6301)] = 261773, - [SMALL_STATE(6302)] = 261824, - [SMALL_STATE(6303)] = 261883, - [SMALL_STATE(6304)] = 261942, - [SMALL_STATE(6305)] = 262033, - [SMALL_STATE(6306)] = 262122, - [SMALL_STATE(6307)] = 262211, - [SMALL_STATE(6308)] = 262300, - [SMALL_STATE(6309)] = 262389, - [SMALL_STATE(6310)] = 262448, - [SMALL_STATE(6311)] = 262541, - [SMALL_STATE(6312)] = 262634, - [SMALL_STATE(6313)] = 262727, - [SMALL_STATE(6314)] = 262786, - [SMALL_STATE(6315)] = 262845, - [SMALL_STATE(6316)] = 262934, - [SMALL_STATE(6317)] = 263023, - [SMALL_STATE(6318)] = 263112, - [SMALL_STATE(6319)] = 263201, - [SMALL_STATE(6320)] = 263294, - [SMALL_STATE(6321)] = 263387, - [SMALL_STATE(6322)] = 263440, - [SMALL_STATE(6323)] = 263533, - [SMALL_STATE(6324)] = 263622, - [SMALL_STATE(6325)] = 263711, - [SMALL_STATE(6326)] = 263762, - [SMALL_STATE(6327)] = 263851, - [SMALL_STATE(6328)] = 263940, - [SMALL_STATE(6329)] = 263991, - [SMALL_STATE(6330)] = 264042, - [SMALL_STATE(6331)] = 264135, - [SMALL_STATE(6332)] = 264228, - [SMALL_STATE(6333)] = 264279, - [SMALL_STATE(6334)] = 264330, - [SMALL_STATE(6335)] = 264421, - [SMALL_STATE(6336)] = 264514, - [SMALL_STATE(6337)] = 264565, - [SMALL_STATE(6338)] = 264616, - [SMALL_STATE(6339)] = 264705, - [SMALL_STATE(6340)] = 264794, - [SMALL_STATE(6341)] = 264885, - [SMALL_STATE(6342)] = 264974, - [SMALL_STATE(6343)] = 265025, - [SMALL_STATE(6344)] = 265076, - [SMALL_STATE(6345)] = 265165, - [SMALL_STATE(6346)] = 265258, - [SMALL_STATE(6347)] = 265351, - [SMALL_STATE(6348)] = 265442, - [SMALL_STATE(6349)] = 265533, - [SMALL_STATE(6350)] = 265624, - [SMALL_STATE(6351)] = 265717, - [SMALL_STATE(6352)] = 265768, - [SMALL_STATE(6353)] = 265859, - [SMALL_STATE(6354)] = 265948, - [SMALL_STATE(6355)] = 266037, - [SMALL_STATE(6356)] = 266126, - [SMALL_STATE(6357)] = 266215, - [SMALL_STATE(6358)] = 266304, - [SMALL_STATE(6359)] = 266393, - [SMALL_STATE(6360)] = 266486, - [SMALL_STATE(6361)] = 266579, - [SMALL_STATE(6362)] = 266630, - [SMALL_STATE(6363)] = 266723, - [SMALL_STATE(6364)] = 266776, - [SMALL_STATE(6365)] = 266827, - [SMALL_STATE(6366)] = 266916, - [SMALL_STATE(6367)] = 267005, - [SMALL_STATE(6368)] = 267086, - [SMALL_STATE(6369)] = 267175, - [SMALL_STATE(6370)] = 267264, - [SMALL_STATE(6371)] = 267315, - [SMALL_STATE(6372)] = 267408, - [SMALL_STATE(6373)] = 267501, - [SMALL_STATE(6374)] = 267552, - [SMALL_STATE(6375)] = 267603, - [SMALL_STATE(6376)] = 267654, - [SMALL_STATE(6377)] = 267747, - [SMALL_STATE(6378)] = 267798, - [SMALL_STATE(6379)] = 267849, - [SMALL_STATE(6380)] = 267938, - [SMALL_STATE(6381)] = 268027, - [SMALL_STATE(6382)] = 268078, - [SMALL_STATE(6383)] = 268167, - [SMALL_STATE(6384)] = 268256, - [SMALL_STATE(6385)] = 268349, - [SMALL_STATE(6386)] = 268442, - [SMALL_STATE(6387)] = 268533, - [SMALL_STATE(6388)] = 268622, - [SMALL_STATE(6389)] = 268673, - [SMALL_STATE(6390)] = 268766, - [SMALL_STATE(6391)] = 268857, - [SMALL_STATE(6392)] = 268946, - [SMALL_STATE(6393)] = 269035, - [SMALL_STATE(6394)] = 269124, - [SMALL_STATE(6395)] = 269213, - [SMALL_STATE(6396)] = 269268, - [SMALL_STATE(6397)] = 269361, - [SMALL_STATE(6398)] = 269454, - [SMALL_STATE(6399)] = 269547, - [SMALL_STATE(6400)] = 269598, - [SMALL_STATE(6401)] = 269649, - [SMALL_STATE(6402)] = 269738, - [SMALL_STATE(6403)] = 269827, - [SMALL_STATE(6404)] = 269878, - [SMALL_STATE(6405)] = 269967, - [SMALL_STATE(6406)] = 270056, - [SMALL_STATE(6407)] = 270147, - [SMALL_STATE(6408)] = 270198, - [SMALL_STATE(6409)] = 270291, - [SMALL_STATE(6410)] = 270384, - [SMALL_STATE(6411)] = 270477, - [SMALL_STATE(6412)] = 270568, - [SMALL_STATE(6413)] = 270621, - [SMALL_STATE(6414)] = 270710, - [SMALL_STATE(6415)] = 270799, - [SMALL_STATE(6416)] = 270850, - [SMALL_STATE(6417)] = 270939, - [SMALL_STATE(6418)] = 271028, - [SMALL_STATE(6419)] = 271083, - [SMALL_STATE(6420)] = 271176, - [SMALL_STATE(6421)] = 271269, - [SMALL_STATE(6422)] = 271320, - [SMALL_STATE(6423)] = 271371, - [SMALL_STATE(6424)] = 271422, - [SMALL_STATE(6425)] = 271515, - [SMALL_STATE(6426)] = 271566, - [SMALL_STATE(6427)] = 271617, - [SMALL_STATE(6428)] = 271706, - [SMALL_STATE(6429)] = 271795, - [SMALL_STATE(6430)] = 271848, - [SMALL_STATE(6431)] = 271937, - [SMALL_STATE(6432)] = 272026, - [SMALL_STATE(6433)] = 272119, - [SMALL_STATE(6434)] = 272212, - [SMALL_STATE(6435)] = 272303, - [SMALL_STATE(6436)] = 272354, - [SMALL_STATE(6437)] = 272447, - [SMALL_STATE(6438)] = 272538, - [SMALL_STATE(6439)] = 272589, - [SMALL_STATE(6440)] = 272678, - [SMALL_STATE(6441)] = 272767, - [SMALL_STATE(6442)] = 272856, - [SMALL_STATE(6443)] = 272945, - [SMALL_STATE(6444)] = 273000, - [SMALL_STATE(6445)] = 273093, - [SMALL_STATE(6446)] = 273186, - [SMALL_STATE(6447)] = 273241, - [SMALL_STATE(6448)] = 273292, - [SMALL_STATE(6449)] = 273343, - [SMALL_STATE(6450)] = 273436, - [SMALL_STATE(6451)] = 273487, - [SMALL_STATE(6452)] = 273538, - [SMALL_STATE(6453)] = 273593, - [SMALL_STATE(6454)] = 273644, - [SMALL_STATE(6455)] = 273695, - [SMALL_STATE(6456)] = 273786, - [SMALL_STATE(6457)] = 273837, - [SMALL_STATE(6458)] = 273928, - [SMALL_STATE(6459)] = 273979, - [SMALL_STATE(6460)] = 274068, - [SMALL_STATE(6461)] = 274161, - [SMALL_STATE(6462)] = 274212, - [SMALL_STATE(6463)] = 274303, - [SMALL_STATE(6464)] = 274358, - [SMALL_STATE(6465)] = 274449, - [SMALL_STATE(6466)] = 274540, - [SMALL_STATE(6467)] = 274591, - [SMALL_STATE(6468)] = 274642, - [SMALL_STATE(6469)] = 274733, - [SMALL_STATE(6470)] = 274786, - [SMALL_STATE(6471)] = 274869, - [SMALL_STATE(6472)] = 274960, - [SMALL_STATE(6473)] = 275051, - [SMALL_STATE(6474)] = 275140, - [SMALL_STATE(6475)] = 275231, - [SMALL_STATE(6476)] = 275290, - [SMALL_STATE(6477)] = 275373, - [SMALL_STATE(6478)] = 275466, - [SMALL_STATE(6479)] = 275557, - [SMALL_STATE(6480)] = 275648, - [SMALL_STATE(6481)] = 275739, - [SMALL_STATE(6482)] = 275810, - [SMALL_STATE(6483)] = 275861, - [SMALL_STATE(6484)] = 275912, - [SMALL_STATE(6485)] = 275963, - [SMALL_STATE(6486)] = 276054, - [SMALL_STATE(6487)] = 276125, - [SMALL_STATE(6488)] = 276178, - [SMALL_STATE(6489)] = 276229, - [SMALL_STATE(6490)] = 276320, - [SMALL_STATE(6491)] = 276375, - [SMALL_STATE(6492)] = 276464, - [SMALL_STATE(6493)] = 276523, - [SMALL_STATE(6494)] = 276574, - [SMALL_STATE(6495)] = 276625, - [SMALL_STATE(6496)] = 276714, - [SMALL_STATE(6497)] = 276803, - [SMALL_STATE(6498)] = 276854, - [SMALL_STATE(6499)] = 276905, - [SMALL_STATE(6500)] = 276996, - [SMALL_STATE(6501)] = 277087, - [SMALL_STATE(6502)] = 277140, - [SMALL_STATE(6503)] = 277231, - [SMALL_STATE(6504)] = 277282, - [SMALL_STATE(6505)] = 277333, - [SMALL_STATE(6506)] = 277384, - [SMALL_STATE(6507)] = 277435, - [SMALL_STATE(6508)] = 277488, - [SMALL_STATE(6509)] = 277539, - [SMALL_STATE(6510)] = 277590, - [SMALL_STATE(6511)] = 277641, - [SMALL_STATE(6512)] = 277692, - [SMALL_STATE(6513)] = 277745, - [SMALL_STATE(6514)] = 277796, - [SMALL_STATE(6515)] = 277849, - [SMALL_STATE(6516)] = 277902, - [SMALL_STATE(6517)] = 277955, - [SMALL_STATE(6518)] = 278046, - [SMALL_STATE(6519)] = 278097, - [SMALL_STATE(6520)] = 278154, - [SMALL_STATE(6521)] = 278205, - [SMALL_STATE(6522)] = 278256, - [SMALL_STATE(6523)] = 278307, - [SMALL_STATE(6524)] = 278358, - [SMALL_STATE(6525)] = 278447, - [SMALL_STATE(6526)] = 278536, - [SMALL_STATE(6527)] = 278587, - [SMALL_STATE(6528)] = 278638, - [SMALL_STATE(6529)] = 278689, - [SMALL_STATE(6530)] = 278740, - [SMALL_STATE(6531)] = 278793, - [SMALL_STATE(6532)] = 278844, - [SMALL_STATE(6533)] = 278895, - [SMALL_STATE(6534)] = 278946, - [SMALL_STATE(6535)] = 278997, - [SMALL_STATE(6536)] = 279048, - [SMALL_STATE(6537)] = 279139, - [SMALL_STATE(6538)] = 279190, - [SMALL_STATE(6539)] = 279241, - [SMALL_STATE(6540)] = 279292, - [SMALL_STATE(6541)] = 279343, - [SMALL_STATE(6542)] = 279402, - [SMALL_STATE(6543)] = 279453, - [SMALL_STATE(6544)] = 279504, - [SMALL_STATE(6545)] = 279555, - [SMALL_STATE(6546)] = 279646, - [SMALL_STATE(6547)] = 279739, - [SMALL_STATE(6548)] = 279832, - [SMALL_STATE(6549)] = 279923, - [SMALL_STATE(6550)] = 280014, - [SMALL_STATE(6551)] = 280105, - [SMALL_STATE(6552)] = 280196, - [SMALL_STATE(6553)] = 280247, - [SMALL_STATE(6554)] = 280298, - [SMALL_STATE(6555)] = 280351, - [SMALL_STATE(6556)] = 280442, - [SMALL_STATE(6557)] = 280493, - [SMALL_STATE(6558)] = 280582, - [SMALL_STATE(6559)] = 280633, - [SMALL_STATE(6560)] = 280724, - [SMALL_STATE(6561)] = 280775, - [SMALL_STATE(6562)] = 280866, - [SMALL_STATE(6563)] = 280957, - [SMALL_STATE(6564)] = 281016, - [SMALL_STATE(6565)] = 281067, - [SMALL_STATE(6566)] = 281158, - [SMALL_STATE(6567)] = 281209, - [SMALL_STATE(6568)] = 281262, - [SMALL_STATE(6569)] = 281355, - [SMALL_STATE(6570)] = 281408, - [SMALL_STATE(6571)] = 281465, - [SMALL_STATE(6572)] = 281516, - [SMALL_STATE(6573)] = 281575, - [SMALL_STATE(6574)] = 281666, - [SMALL_STATE(6575)] = 281717, - [SMALL_STATE(6576)] = 281768, - [SMALL_STATE(6577)] = 281819, - [SMALL_STATE(6578)] = 281870, - [SMALL_STATE(6579)] = 281961, - [SMALL_STATE(6580)] = 282052, - [SMALL_STATE(6581)] = 282143, - [SMALL_STATE(6582)] = 282202, - [SMALL_STATE(6583)] = 282253, - [SMALL_STATE(6584)] = 282344, - [SMALL_STATE(6585)] = 282403, - [SMALL_STATE(6586)] = 282494, - [SMALL_STATE(6587)] = 282553, - [SMALL_STATE(6588)] = 282612, - [SMALL_STATE(6589)] = 282671, - [SMALL_STATE(6590)] = 282726, - [SMALL_STATE(6591)] = 282781, - [SMALL_STATE(6592)] = 282840, - [SMALL_STATE(6593)] = 282893, - [SMALL_STATE(6594)] = 282948, - [SMALL_STATE(6595)] = 283007, - [SMALL_STATE(6596)] = 283066, - [SMALL_STATE(6597)] = 283155, - [SMALL_STATE(6598)] = 283244, - [SMALL_STATE(6599)] = 283315, - [SMALL_STATE(6600)] = 283366, - [SMALL_STATE(6601)] = 283417, - [SMALL_STATE(6602)] = 283476, - [SMALL_STATE(6603)] = 283535, - [SMALL_STATE(6604)] = 283594, - [SMALL_STATE(6605)] = 283653, - [SMALL_STATE(6606)] = 283712, - [SMALL_STATE(6607)] = 283805, - [SMALL_STATE(6608)] = 283896, - [SMALL_STATE(6609)] = 283949, - [SMALL_STATE(6610)] = 284040, - [SMALL_STATE(6611)] = 284131, - [SMALL_STATE(6612)] = 284182, - [SMALL_STATE(6613)] = 284273, - [SMALL_STATE(6614)] = 284324, - [SMALL_STATE(6615)] = 284375, - [SMALL_STATE(6616)] = 284436, - [SMALL_STATE(6617)] = 284493, - [SMALL_STATE(6618)] = 284550, - [SMALL_STATE(6619)] = 284615, - [SMALL_STATE(6620)] = 284698, - [SMALL_STATE(6621)] = 284749, - [SMALL_STATE(6622)] = 284800, - [SMALL_STATE(6623)] = 284851, - [SMALL_STATE(6624)] = 284902, - [SMALL_STATE(6625)] = 284953, - [SMALL_STATE(6626)] = 285004, - [SMALL_STATE(6627)] = 285095, - [SMALL_STATE(6628)] = 285154, - [SMALL_STATE(6629)] = 285229, - [SMALL_STATE(6630)] = 285282, - [SMALL_STATE(6631)] = 285333, - [SMALL_STATE(6632)] = 285384, - [SMALL_STATE(6633)] = 285435, - [SMALL_STATE(6634)] = 285502, - [SMALL_STATE(6635)] = 285593, - [SMALL_STATE(6636)] = 285684, - [SMALL_STATE(6637)] = 285775, - [SMALL_STATE(6638)] = 285828, - [SMALL_STATE(6639)] = 285891, - [SMALL_STATE(6640)] = 285982, - [SMALL_STATE(6641)] = 286053, - [SMALL_STATE(6642)] = 286112, - [SMALL_STATE(6643)] = 286163, - [SMALL_STATE(6644)] = 286214, - [SMALL_STATE(6645)] = 286265, - [SMALL_STATE(6646)] = 286316, - [SMALL_STATE(6647)] = 286367, - [SMALL_STATE(6648)] = 286418, - [SMALL_STATE(6649)] = 286469, - [SMALL_STATE(6650)] = 286520, - [SMALL_STATE(6651)] = 286572, - [SMALL_STATE(6652)] = 286622, - [SMALL_STATE(6653)] = 286672, - [SMALL_STATE(6654)] = 286724, - [SMALL_STATE(6655)] = 286784, - [SMALL_STATE(6656)] = 286870, - [SMALL_STATE(6657)] = 286920, - [SMALL_STATE(6658)] = 286970, - [SMALL_STATE(6659)] = 287026, - [SMALL_STATE(6660)] = 287076, - [SMALL_STATE(6661)] = 287126, - [SMALL_STATE(6662)] = 287176, - [SMALL_STATE(6663)] = 287226, - [SMALL_STATE(6664)] = 287276, - [SMALL_STATE(6665)] = 287326, - [SMALL_STATE(6666)] = 287376, - [SMALL_STATE(6667)] = 287426, - [SMALL_STATE(6668)] = 287476, - [SMALL_STATE(6669)] = 287526, - [SMALL_STATE(6670)] = 287576, - [SMALL_STATE(6671)] = 287626, - [SMALL_STATE(6672)] = 287708, - [SMALL_STATE(6673)] = 287758, - [SMALL_STATE(6674)] = 287808, - [SMALL_STATE(6675)] = 287858, - [SMALL_STATE(6676)] = 287908, - [SMALL_STATE(6677)] = 287958, - [SMALL_STATE(6678)] = 288008, - [SMALL_STATE(6679)] = 288058, - [SMALL_STATE(6680)] = 288108, - [SMALL_STATE(6681)] = 288158, - [SMALL_STATE(6682)] = 288208, - [SMALL_STATE(6683)] = 288258, - [SMALL_STATE(6684)] = 288344, - [SMALL_STATE(6685)] = 288394, - [SMALL_STATE(6686)] = 288444, - [SMALL_STATE(6687)] = 288500, - [SMALL_STATE(6688)] = 288554, - [SMALL_STATE(6689)] = 288604, - [SMALL_STATE(6690)] = 288654, - [SMALL_STATE(6691)] = 288708, - [SMALL_STATE(6692)] = 288758, - [SMALL_STATE(6693)] = 288844, - [SMALL_STATE(6694)] = 288896, - [SMALL_STATE(6695)] = 288982, - [SMALL_STATE(6696)] = 289068, - [SMALL_STATE(6697)] = 289154, - [SMALL_STATE(6698)] = 289204, - [SMALL_STATE(6699)] = 289264, - [SMALL_STATE(6700)] = 289320, - [SMALL_STATE(6701)] = 289376, - [SMALL_STATE(6702)] = 289426, - [SMALL_STATE(6703)] = 289476, - [SMALL_STATE(6704)] = 289540, - [SMALL_STATE(6705)] = 289590, - [SMALL_STATE(6706)] = 289640, - [SMALL_STATE(6707)] = 289690, - [SMALL_STATE(6708)] = 289740, - [SMALL_STATE(6709)] = 289790, - [SMALL_STATE(6710)] = 289840, - [SMALL_STATE(6711)] = 289896, - [SMALL_STATE(6712)] = 289960, - [SMALL_STATE(6713)] = 290010, - [SMALL_STATE(6714)] = 290092, - [SMALL_STATE(6715)] = 290178, - [SMALL_STATE(6716)] = 290228, - [SMALL_STATE(6717)] = 290302, - [SMALL_STATE(6718)] = 290368, - [SMALL_STATE(6719)] = 290430, - [SMALL_STATE(6720)] = 290516, - [SMALL_STATE(6721)] = 290566, - [SMALL_STATE(6722)] = 290616, - [SMALL_STATE(6723)] = 290666, - [SMALL_STATE(6724)] = 290716, - [SMALL_STATE(6725)] = 290786, - [SMALL_STATE(6726)] = 290872, - [SMALL_STATE(6727)] = 290922, - [SMALL_STATE(6728)] = 291000, - [SMALL_STATE(6729)] = 291080, - [SMALL_STATE(6730)] = 291136, - [SMALL_STATE(6731)] = 291186, - [SMALL_STATE(6732)] = 291236, - [SMALL_STATE(6733)] = 291286, - [SMALL_STATE(6734)] = 291336, - [SMALL_STATE(6735)] = 291386, - [SMALL_STATE(6736)] = 291436, - [SMALL_STATE(6737)] = 291486, - [SMALL_STATE(6738)] = 291572, - [SMALL_STATE(6739)] = 291654, - [SMALL_STATE(6740)] = 291736, - [SMALL_STATE(6741)] = 291786, - [SMALL_STATE(6742)] = 291836, - [SMALL_STATE(6743)] = 291886, - [SMALL_STATE(6744)] = 291936, - [SMALL_STATE(6745)] = 291986, - [SMALL_STATE(6746)] = 292036, - [SMALL_STATE(6747)] = 292122, - [SMALL_STATE(6748)] = 292208, - [SMALL_STATE(6749)] = 292294, - [SMALL_STATE(6750)] = 292344, - [SMALL_STATE(6751)] = 292400, - [SMALL_STATE(6752)] = 292450, - [SMALL_STATE(6753)] = 292500, - [SMALL_STATE(6754)] = 292550, - [SMALL_STATE(6755)] = 292600, - [SMALL_STATE(6756)] = 292682, - [SMALL_STATE(6757)] = 292732, - [SMALL_STATE(6758)] = 292784, - [SMALL_STATE(6759)] = 292834, - [SMALL_STATE(6760)] = 292884, - [SMALL_STATE(6761)] = 292934, - [SMALL_STATE(6762)] = 292990, - [SMALL_STATE(6763)] = 293064, - [SMALL_STATE(6764)] = 293114, - [SMALL_STATE(6765)] = 293164, - [SMALL_STATE(6766)] = 293230, - [SMALL_STATE(6767)] = 293292, - [SMALL_STATE(6768)] = 293342, - [SMALL_STATE(6769)] = 293392, - [SMALL_STATE(6770)] = 293442, - [SMALL_STATE(6771)] = 293492, - [SMALL_STATE(6772)] = 293562, - [SMALL_STATE(6773)] = 293640, - [SMALL_STATE(6774)] = 293726, - [SMALL_STATE(6775)] = 293776, - [SMALL_STATE(6776)] = 293826, - [SMALL_STATE(6777)] = 293878, - [SMALL_STATE(6778)] = 293928, - [SMALL_STATE(6779)] = 293980, - [SMALL_STATE(6780)] = 294030, - [SMALL_STATE(6781)] = 294080, - [SMALL_STATE(6782)] = 294130, - [SMALL_STATE(6783)] = 294186, - [SMALL_STATE(6784)] = 294236, - [SMALL_STATE(6785)] = 294286, - [SMALL_STATE(6786)] = 294342, - [SMALL_STATE(6787)] = 294392, - [SMALL_STATE(6788)] = 294478, - [SMALL_STATE(6789)] = 294532, - [SMALL_STATE(6790)] = 294582, - [SMALL_STATE(6791)] = 294668, - [SMALL_STATE(6792)] = 294718, - [SMALL_STATE(6793)] = 294774, - [SMALL_STATE(6794)] = 294828, - [SMALL_STATE(6795)] = 294878, - [SMALL_STATE(6796)] = 294928, - [SMALL_STATE(6797)] = 295010, - [SMALL_STATE(6798)] = 295096, - [SMALL_STATE(6799)] = 295182, - [SMALL_STATE(6800)] = 295268, - [SMALL_STATE(6801)] = 295328, - [SMALL_STATE(6802)] = 295384, - [SMALL_STATE(6803)] = 295440, - [SMALL_STATE(6804)] = 295504, - [SMALL_STATE(6805)] = 295586, - [SMALL_STATE(6806)] = 295660, - [SMALL_STATE(6807)] = 295726, - [SMALL_STATE(6808)] = 295788, - [SMALL_STATE(6809)] = 295858, - [SMALL_STATE(6810)] = 295936, - [SMALL_STATE(6811)] = 296016, - [SMALL_STATE(6812)] = 296072, - [SMALL_STATE(6813)] = 296122, - [SMALL_STATE(6814)] = 296204, - [SMALL_STATE(6815)] = 296290, - [SMALL_STATE(6816)] = 296360, - [SMALL_STATE(6817)] = 296446, - [SMALL_STATE(6818)] = 296532, - [SMALL_STATE(6819)] = 296618, - [SMALL_STATE(6820)] = 296688, - [SMALL_STATE(6821)] = 296738, - [SMALL_STATE(6822)] = 296808, - [SMALL_STATE(6823)] = 296858, - [SMALL_STATE(6824)] = 296908, - [SMALL_STATE(6825)] = 296958, - [SMALL_STATE(6826)] = 297044, - [SMALL_STATE(6827)] = 297094, - [SMALL_STATE(6828)] = 297144, - [SMALL_STATE(6829)] = 297226, - [SMALL_STATE(6830)] = 297276, - [SMALL_STATE(6831)] = 297326, - [SMALL_STATE(6832)] = 297376, - [SMALL_STATE(6833)] = 297458, - [SMALL_STATE(6834)] = 297514, - [SMALL_STATE(6835)] = 297564, - [SMALL_STATE(6836)] = 297650, - [SMALL_STATE(6837)] = 297700, - [SMALL_STATE(6838)] = 297750, - [SMALL_STATE(6839)] = 297800, - [SMALL_STATE(6840)] = 297852, - [SMALL_STATE(6841)] = 297902, - [SMALL_STATE(6842)] = 297952, - [SMALL_STATE(6843)] = 298002, - [SMALL_STATE(6844)] = 298052, - [SMALL_STATE(6845)] = 298102, - [SMALL_STATE(6846)] = 298188, - [SMALL_STATE(6847)] = 298274, - [SMALL_STATE(6848)] = 298324, - [SMALL_STATE(6849)] = 298374, - [SMALL_STATE(6850)] = 298424, - [SMALL_STATE(6851)] = 298474, - [SMALL_STATE(6852)] = 298524, - [SMALL_STATE(6853)] = 298580, - [SMALL_STATE(6854)] = 298666, - [SMALL_STATE(6855)] = 298722, - [SMALL_STATE(6856)] = 298772, - [SMALL_STATE(6857)] = 298828, - [SMALL_STATE(6858)] = 298878, - [SMALL_STATE(6859)] = 298928, - [SMALL_STATE(6860)] = 298978, - [SMALL_STATE(6861)] = 299064, - [SMALL_STATE(6862)] = 299114, - [SMALL_STATE(6863)] = 299164, - [SMALL_STATE(6864)] = 299214, - [SMALL_STATE(6865)] = 299270, - [SMALL_STATE(6866)] = 299320, - [SMALL_STATE(6867)] = 299402, - [SMALL_STATE(6868)] = 299488, - [SMALL_STATE(6869)] = 299538, - [SMALL_STATE(6870)] = 299624, - [SMALL_STATE(6871)] = 299674, - [SMALL_STATE(6872)] = 299724, - [SMALL_STATE(6873)] = 299778, - [SMALL_STATE(6874)] = 299828, - [SMALL_STATE(6875)] = 299908, - [SMALL_STATE(6876)] = 299994, - [SMALL_STATE(6877)] = 300044, - [SMALL_STATE(6878)] = 300094, - [SMALL_STATE(6879)] = 300144, - [SMALL_STATE(6880)] = 300230, - [SMALL_STATE(6881)] = 300280, - [SMALL_STATE(6882)] = 300330, - [SMALL_STATE(6883)] = 300380, - [SMALL_STATE(6884)] = 300430, - [SMALL_STATE(6885)] = 300480, - [SMALL_STATE(6886)] = 300530, - [SMALL_STATE(6887)] = 300616, - [SMALL_STATE(6888)] = 300666, - [SMALL_STATE(6889)] = 300718, - [SMALL_STATE(6890)] = 300768, - [SMALL_STATE(6891)] = 300818, - [SMALL_STATE(6892)] = 300868, - [SMALL_STATE(6893)] = 300918, - [SMALL_STATE(6894)] = 300968, - [SMALL_STATE(6895)] = 301018, - [SMALL_STATE(6896)] = 301072, - [SMALL_STATE(6897)] = 301124, - [SMALL_STATE(6898)] = 301174, - [SMALL_STATE(6899)] = 301224, - [SMALL_STATE(6900)] = 301274, - [SMALL_STATE(6901)] = 301324, - [SMALL_STATE(6902)] = 301410, - [SMALL_STATE(6903)] = 301466, - [SMALL_STATE(6904)] = 301552, - [SMALL_STATE(6905)] = 301602, - [SMALL_STATE(6906)] = 301658, - [SMALL_STATE(6907)] = 301708, - [SMALL_STATE(6908)] = 301758, - [SMALL_STATE(6909)] = 301814, - [SMALL_STATE(6910)] = 301896, - [SMALL_STATE(6911)] = 301946, - [SMALL_STATE(6912)] = 301996, - [SMALL_STATE(6913)] = 302046, - [SMALL_STATE(6914)] = 302096, - [SMALL_STATE(6915)] = 302146, - [SMALL_STATE(6916)] = 302198, - [SMALL_STATE(6917)] = 302248, - [SMALL_STATE(6918)] = 302329, - [SMALL_STATE(6919)] = 302414, - [SMALL_STATE(6920)] = 302499, - [SMALL_STATE(6921)] = 302584, - [SMALL_STATE(6922)] = 302669, - [SMALL_STATE(6923)] = 302754, - [SMALL_STATE(6924)] = 302839, - [SMALL_STATE(6925)] = 302920, - [SMALL_STATE(6926)] = 303005, - [SMALL_STATE(6927)] = 303066, - [SMALL_STATE(6928)] = 303151, - [SMALL_STATE(6929)] = 303236, - [SMALL_STATE(6930)] = 303321, - [SMALL_STATE(6931)] = 303406, - [SMALL_STATE(6932)] = 303491, - [SMALL_STATE(6933)] = 303560, - [SMALL_STATE(6934)] = 303645, - [SMALL_STATE(6935)] = 303718, - [SMALL_STATE(6936)] = 303803, - [SMALL_STATE(6937)] = 303888, - [SMALL_STATE(6938)] = 303973, - [SMALL_STATE(6939)] = 304058, - [SMALL_STATE(6940)] = 304113, - [SMALL_STATE(6941)] = 304178, - [SMALL_STATE(6942)] = 304239, - [SMALL_STATE(6943)] = 304324, - [SMALL_STATE(6944)] = 304393, - [SMALL_STATE(6945)] = 304470, - [SMALL_STATE(6946)] = 304547, - [SMALL_STATE(6947)] = 304628, - [SMALL_STATE(6948)] = 304683, - [SMALL_STATE(6949)] = 304764, - [SMALL_STATE(6950)] = 304849, - [SMALL_STATE(6951)] = 304928, - [SMALL_STATE(6952)] = 305013, - [SMALL_STATE(6953)] = 305098, - [SMALL_STATE(6954)] = 305183, - [SMALL_STATE(6955)] = 305262, - [SMALL_STATE(6956)] = 305335, - [SMALL_STATE(6957)] = 305420, - [SMALL_STATE(6958)] = 305505, - [SMALL_STATE(6959)] = 305590, - [SMALL_STATE(6960)] = 305675, - [SMALL_STATE(6961)] = 305760, - [SMALL_STATE(6962)] = 305845, - [SMALL_STATE(6963)] = 305926, - [SMALL_STATE(6964)] = 306011, - [SMALL_STATE(6965)] = 306096, - [SMALL_STATE(6966)] = 306181, - [SMALL_STATE(6967)] = 306262, - [SMALL_STATE(6968)] = 306343, - [SMALL_STATE(6969)] = 306428, - [SMALL_STATE(6970)] = 306513, - [SMALL_STATE(6971)] = 306598, - [SMALL_STATE(6972)] = 306653, - [SMALL_STATE(6973)] = 306708, - [SMALL_STATE(6974)] = 306767, - [SMALL_STATE(6975)] = 306852, - [SMALL_STATE(6976)] = 306907, - [SMALL_STATE(6977)] = 306992, - [SMALL_STATE(6978)] = 307077, - [SMALL_STATE(6979)] = 307132, - [SMALL_STATE(6980)] = 307217, - [SMALL_STATE(6981)] = 307272, - [SMALL_STATE(6982)] = 307357, - [SMALL_STATE(6983)] = 307442, - [SMALL_STATE(6984)] = 307511, - [SMALL_STATE(6985)] = 307596, - [SMALL_STATE(6986)] = 307659, - [SMALL_STATE(6987)] = 307744, - [SMALL_STATE(6988)] = 307829, - [SMALL_STATE(6989)] = 307892, - [SMALL_STATE(6990)] = 307961, - [SMALL_STATE(6991)] = 308046, - [SMALL_STATE(6992)] = 308131, - [SMALL_STATE(6993)] = 308196, - [SMALL_STATE(6994)] = 308281, - [SMALL_STATE(6995)] = 308336, - [SMALL_STATE(6996)] = 308421, - [SMALL_STATE(6997)] = 308506, - [SMALL_STATE(6998)] = 308591, - [SMALL_STATE(6999)] = 308676, - [SMALL_STATE(7000)] = 308735, - [SMALL_STATE(7001)] = 308820, - [SMALL_STATE(7002)] = 308901, - [SMALL_STATE(7003)] = 308986, - [SMALL_STATE(7004)] = 309071, - [SMALL_STATE(7005)] = 309156, - [SMALL_STATE(7006)] = 309241, - [SMALL_STATE(7007)] = 309326, - [SMALL_STATE(7008)] = 309411, - [SMALL_STATE(7009)] = 309496, - [SMALL_STATE(7010)] = 309566, - [SMALL_STATE(7011)] = 309636, - [SMALL_STATE(7012)] = 309706, - [SMALL_STATE(7013)] = 309776, - [SMALL_STATE(7014)] = 309846, - [SMALL_STATE(7015)] = 309928, - [SMALL_STATE(7016)] = 310010, - [SMALL_STATE(7017)] = 310092, - [SMALL_STATE(7018)] = 310174, - [SMALL_STATE(7019)] = 310256, - [SMALL_STATE(7020)] = 310338, - [SMALL_STATE(7021)] = 310420, - [SMALL_STATE(7022)] = 310502, - [SMALL_STATE(7023)] = 310572, - [SMALL_STATE(7024)] = 310654, - [SMALL_STATE(7025)] = 310736, - [SMALL_STATE(7026)] = 310818, - [SMALL_STATE(7027)] = 310899, - [SMALL_STATE(7028)] = 310966, - [SMALL_STATE(7029)] = 311033, - [SMALL_STATE(7030)] = 311100, - [SMALL_STATE(7031)] = 311167, - [SMALL_STATE(7032)] = 311234, - [SMALL_STATE(7033)] = 311300, - [SMALL_STATE(7034)] = 311366, - [SMALL_STATE(7035)] = 311432, - [SMALL_STATE(7036)] = 311498, - [SMALL_STATE(7037)] = 311564, - [SMALL_STATE(7038)] = 311630, - [SMALL_STATE(7039)] = 311695, - [SMALL_STATE(7040)] = 311760, - [SMALL_STATE(7041)] = 311825, - [SMALL_STATE(7042)] = 311890, - [SMALL_STATE(7043)] = 311955, - [SMALL_STATE(7044)] = 312026, - [SMALL_STATE(7045)] = 312097, - [SMALL_STATE(7046)] = 312168, - [SMALL_STATE(7047)] = 312239, - [SMALL_STATE(7048)] = 312310, - [SMALL_STATE(7049)] = 312381, - [SMALL_STATE(7050)] = 312452, - [SMALL_STATE(7051)] = 312523, - [SMALL_STATE(7052)] = 312594, - [SMALL_STATE(7053)] = 312665, - [SMALL_STATE(7054)] = 312736, - [SMALL_STATE(7055)] = 312807, - [SMALL_STATE(7056)] = 312878, - [SMALL_STATE(7057)] = 312949, - [SMALL_STATE(7058)] = 313020, - [SMALL_STATE(7059)] = 313091, - [SMALL_STATE(7060)] = 313162, - [SMALL_STATE(7061)] = 313233, - [SMALL_STATE(7062)] = 313304, - [SMALL_STATE(7063)] = 313375, - [SMALL_STATE(7064)] = 313446, - [SMALL_STATE(7065)] = 313517, - [SMALL_STATE(7066)] = 313588, - [SMALL_STATE(7067)] = 313659, - [SMALL_STATE(7068)] = 313730, - [SMALL_STATE(7069)] = 313801, - [SMALL_STATE(7070)] = 313872, - [SMALL_STATE(7071)] = 313943, - [SMALL_STATE(7072)] = 314014, - [SMALL_STATE(7073)] = 314085, - [SMALL_STATE(7074)] = 314156, - [SMALL_STATE(7075)] = 314227, - [SMALL_STATE(7076)] = 314298, - [SMALL_STATE(7077)] = 314369, - [SMALL_STATE(7078)] = 314440, - [SMALL_STATE(7079)] = 314511, - [SMALL_STATE(7080)] = 314582, - [SMALL_STATE(7081)] = 314653, - [SMALL_STATE(7082)] = 314724, - [SMALL_STATE(7083)] = 314795, - [SMALL_STATE(7084)] = 314866, - [SMALL_STATE(7085)] = 314937, - [SMALL_STATE(7086)] = 315008, - [SMALL_STATE(7087)] = 315079, - [SMALL_STATE(7088)] = 315150, - [SMALL_STATE(7089)] = 315221, - [SMALL_STATE(7090)] = 315292, - [SMALL_STATE(7091)] = 315363, - [SMALL_STATE(7092)] = 315434, - [SMALL_STATE(7093)] = 315505, - [SMALL_STATE(7094)] = 315576, - [SMALL_STATE(7095)] = 315647, - [SMALL_STATE(7096)] = 315718, - [SMALL_STATE(7097)] = 315789, - [SMALL_STATE(7098)] = 315860, - [SMALL_STATE(7099)] = 315925, - [SMALL_STATE(7100)] = 315996, - [SMALL_STATE(7101)] = 316067, - [SMALL_STATE(7102)] = 316138, - [SMALL_STATE(7103)] = 316209, - [SMALL_STATE(7104)] = 316280, - [SMALL_STATE(7105)] = 316351, - [SMALL_STATE(7106)] = 316422, - [SMALL_STATE(7107)] = 316493, - [SMALL_STATE(7108)] = 316564, - [SMALL_STATE(7109)] = 316635, - [SMALL_STATE(7110)] = 316706, - [SMALL_STATE(7111)] = 316771, - [SMALL_STATE(7112)] = 316842, - [SMALL_STATE(7113)] = 316913, - [SMALL_STATE(7114)] = 316984, - [SMALL_STATE(7115)] = 317055, - [SMALL_STATE(7116)] = 317126, - [SMALL_STATE(7117)] = 317197, - [SMALL_STATE(7118)] = 317268, - [SMALL_STATE(7119)] = 317339, - [SMALL_STATE(7120)] = 317410, - [SMALL_STATE(7121)] = 317481, - [SMALL_STATE(7122)] = 317552, - [SMALL_STATE(7123)] = 317623, - [SMALL_STATE(7124)] = 317694, - [SMALL_STATE(7125)] = 317765, - [SMALL_STATE(7126)] = 317836, - [SMALL_STATE(7127)] = 317907, - [SMALL_STATE(7128)] = 317978, - [SMALL_STATE(7129)] = 318049, - [SMALL_STATE(7130)] = 318120, - [SMALL_STATE(7131)] = 318191, - [SMALL_STATE(7132)] = 318262, - [SMALL_STATE(7133)] = 318333, - [SMALL_STATE(7134)] = 318404, - [SMALL_STATE(7135)] = 318475, - [SMALL_STATE(7136)] = 318546, - [SMALL_STATE(7137)] = 318617, - [SMALL_STATE(7138)] = 318688, - [SMALL_STATE(7139)] = 318759, - [SMALL_STATE(7140)] = 318830, - [SMALL_STATE(7141)] = 318901, - [SMALL_STATE(7142)] = 318972, - [SMALL_STATE(7143)] = 319043, - [SMALL_STATE(7144)] = 319114, - [SMALL_STATE(7145)] = 319185, - [SMALL_STATE(7146)] = 319256, - [SMALL_STATE(7147)] = 319327, - [SMALL_STATE(7148)] = 319398, - [SMALL_STATE(7149)] = 319469, - [SMALL_STATE(7150)] = 319540, - [SMALL_STATE(7151)] = 319611, - [SMALL_STATE(7152)] = 319682, - [SMALL_STATE(7153)] = 319753, - [SMALL_STATE(7154)] = 319824, - [SMALL_STATE(7155)] = 319895, - [SMALL_STATE(7156)] = 319966, - [SMALL_STATE(7157)] = 320037, - [SMALL_STATE(7158)] = 320108, - [SMALL_STATE(7159)] = 320179, - [SMALL_STATE(7160)] = 320250, - [SMALL_STATE(7161)] = 320321, - [SMALL_STATE(7162)] = 320392, - [SMALL_STATE(7163)] = 320463, - [SMALL_STATE(7164)] = 320534, - [SMALL_STATE(7165)] = 320605, - [SMALL_STATE(7166)] = 320676, - [SMALL_STATE(7167)] = 320747, - [SMALL_STATE(7168)] = 320818, - [SMALL_STATE(7169)] = 320889, - [SMALL_STATE(7170)] = 320960, - [SMALL_STATE(7171)] = 321031, - [SMALL_STATE(7172)] = 321102, - [SMALL_STATE(7173)] = 321173, - [SMALL_STATE(7174)] = 321244, - [SMALL_STATE(7175)] = 321315, - [SMALL_STATE(7176)] = 321386, - [SMALL_STATE(7177)] = 321457, - [SMALL_STATE(7178)] = 321528, - [SMALL_STATE(7179)] = 321599, - [SMALL_STATE(7180)] = 321670, - [SMALL_STATE(7181)] = 321741, - [SMALL_STATE(7182)] = 321812, - [SMALL_STATE(7183)] = 321883, - [SMALL_STATE(7184)] = 321954, - [SMALL_STATE(7185)] = 322025, - [SMALL_STATE(7186)] = 322096, - [SMALL_STATE(7187)] = 322167, - [SMALL_STATE(7188)] = 322238, - [SMALL_STATE(7189)] = 322309, - [SMALL_STATE(7190)] = 322380, - [SMALL_STATE(7191)] = 322451, - [SMALL_STATE(7192)] = 322522, - [SMALL_STATE(7193)] = 322593, - [SMALL_STATE(7194)] = 322664, - [SMALL_STATE(7195)] = 322735, - [SMALL_STATE(7196)] = 322806, - [SMALL_STATE(7197)] = 322877, - [SMALL_STATE(7198)] = 322946, - [SMALL_STATE(7199)] = 323017, - [SMALL_STATE(7200)] = 323088, - [SMALL_STATE(7201)] = 323159, - [SMALL_STATE(7202)] = 323230, - [SMALL_STATE(7203)] = 323301, - [SMALL_STATE(7204)] = 323372, - [SMALL_STATE(7205)] = 323443, - [SMALL_STATE(7206)] = 323514, - [SMALL_STATE(7207)] = 323585, - [SMALL_STATE(7208)] = 323656, - [SMALL_STATE(7209)] = 323727, - [SMALL_STATE(7210)] = 323798, - [SMALL_STATE(7211)] = 323869, - [SMALL_STATE(7212)] = 323940, - [SMALL_STATE(7213)] = 324011, - [SMALL_STATE(7214)] = 324082, - [SMALL_STATE(7215)] = 324153, - [SMALL_STATE(7216)] = 324224, - [SMALL_STATE(7217)] = 324295, - [SMALL_STATE(7218)] = 324366, - [SMALL_STATE(7219)] = 324437, - [SMALL_STATE(7220)] = 324508, - [SMALL_STATE(7221)] = 324579, - [SMALL_STATE(7222)] = 324650, - [SMALL_STATE(7223)] = 324721, - [SMALL_STATE(7224)] = 324792, - [SMALL_STATE(7225)] = 324863, - [SMALL_STATE(7226)] = 324934, - [SMALL_STATE(7227)] = 325005, - [SMALL_STATE(7228)] = 325076, - [SMALL_STATE(7229)] = 325147, - [SMALL_STATE(7230)] = 325218, - [SMALL_STATE(7231)] = 325289, - [SMALL_STATE(7232)] = 325360, - [SMALL_STATE(7233)] = 325431, - [SMALL_STATE(7234)] = 325502, - [SMALL_STATE(7235)] = 325573, - [SMALL_STATE(7236)] = 325644, - [SMALL_STATE(7237)] = 325715, - [SMALL_STATE(7238)] = 325786, - [SMALL_STATE(7239)] = 325857, - [SMALL_STATE(7240)] = 325928, - [SMALL_STATE(7241)] = 325999, - [SMALL_STATE(7242)] = 326070, - [SMALL_STATE(7243)] = 326141, - [SMALL_STATE(7244)] = 326212, - [SMALL_STATE(7245)] = 326283, - [SMALL_STATE(7246)] = 326354, - [SMALL_STATE(7247)] = 326425, - [SMALL_STATE(7248)] = 326496, - [SMALL_STATE(7249)] = 326567, - [SMALL_STATE(7250)] = 326638, - [SMALL_STATE(7251)] = 326709, - [SMALL_STATE(7252)] = 326780, - [SMALL_STATE(7253)] = 326851, - [SMALL_STATE(7254)] = 326922, - [SMALL_STATE(7255)] = 326993, - [SMALL_STATE(7256)] = 327064, - [SMALL_STATE(7257)] = 327135, - [SMALL_STATE(7258)] = 327206, - [SMALL_STATE(7259)] = 327277, - [SMALL_STATE(7260)] = 327348, - [SMALL_STATE(7261)] = 327419, - [SMALL_STATE(7262)] = 327490, - [SMALL_STATE(7263)] = 327561, - [SMALL_STATE(7264)] = 327632, - [SMALL_STATE(7265)] = 327703, - [SMALL_STATE(7266)] = 327774, - [SMALL_STATE(7267)] = 327845, - [SMALL_STATE(7268)] = 327916, - [SMALL_STATE(7269)] = 327987, - [SMALL_STATE(7270)] = 328058, - [SMALL_STATE(7271)] = 328129, - [SMALL_STATE(7272)] = 328200, - [SMALL_STATE(7273)] = 328271, - [SMALL_STATE(7274)] = 328342, - [SMALL_STATE(7275)] = 328413, - [SMALL_STATE(7276)] = 328484, - [SMALL_STATE(7277)] = 328555, - [SMALL_STATE(7278)] = 328626, - [SMALL_STATE(7279)] = 328697, - [SMALL_STATE(7280)] = 328768, - [SMALL_STATE(7281)] = 328839, - [SMALL_STATE(7282)] = 328910, - [SMALL_STATE(7283)] = 328981, - [SMALL_STATE(7284)] = 329052, - [SMALL_STATE(7285)] = 329123, - [SMALL_STATE(7286)] = 329194, - [SMALL_STATE(7287)] = 329265, - [SMALL_STATE(7288)] = 329336, - [SMALL_STATE(7289)] = 329407, - [SMALL_STATE(7290)] = 329478, - [SMALL_STATE(7291)] = 329549, - [SMALL_STATE(7292)] = 329620, - [SMALL_STATE(7293)] = 329691, - [SMALL_STATE(7294)] = 329762, - [SMALL_STATE(7295)] = 329833, - [SMALL_STATE(7296)] = 329904, - [SMALL_STATE(7297)] = 329975, - [SMALL_STATE(7298)] = 330046, - [SMALL_STATE(7299)] = 330117, - [SMALL_STATE(7300)] = 330188, - [SMALL_STATE(7301)] = 330259, - [SMALL_STATE(7302)] = 330330, - [SMALL_STATE(7303)] = 330401, - [SMALL_STATE(7304)] = 330472, - [SMALL_STATE(7305)] = 330543, - [SMALL_STATE(7306)] = 330614, - [SMALL_STATE(7307)] = 330685, - [SMALL_STATE(7308)] = 330756, - [SMALL_STATE(7309)] = 330827, - [SMALL_STATE(7310)] = 330898, - [SMALL_STATE(7311)] = 330969, - [SMALL_STATE(7312)] = 331040, - [SMALL_STATE(7313)] = 331111, - [SMALL_STATE(7314)] = 331182, - [SMALL_STATE(7315)] = 331253, - [SMALL_STATE(7316)] = 331324, - [SMALL_STATE(7317)] = 331395, - [SMALL_STATE(7318)] = 331466, - [SMALL_STATE(7319)] = 331537, - [SMALL_STATE(7320)] = 331608, - [SMALL_STATE(7321)] = 331679, - [SMALL_STATE(7322)] = 331750, - [SMALL_STATE(7323)] = 331821, - [SMALL_STATE(7324)] = 331892, - [SMALL_STATE(7325)] = 331963, - [SMALL_STATE(7326)] = 332034, - [SMALL_STATE(7327)] = 332105, - [SMALL_STATE(7328)] = 332176, - [SMALL_STATE(7329)] = 332247, - [SMALL_STATE(7330)] = 332318, - [SMALL_STATE(7331)] = 332389, - [SMALL_STATE(7332)] = 332460, - [SMALL_STATE(7333)] = 332531, - [SMALL_STATE(7334)] = 332602, - [SMALL_STATE(7335)] = 332673, - [SMALL_STATE(7336)] = 332744, - [SMALL_STATE(7337)] = 332815, - [SMALL_STATE(7338)] = 332886, - [SMALL_STATE(7339)] = 332957, - [SMALL_STATE(7340)] = 333028, - [SMALL_STATE(7341)] = 333099, - [SMALL_STATE(7342)] = 333170, - [SMALL_STATE(7343)] = 333241, - [SMALL_STATE(7344)] = 333312, - [SMALL_STATE(7345)] = 333383, - [SMALL_STATE(7346)] = 333454, - [SMALL_STATE(7347)] = 333525, - [SMALL_STATE(7348)] = 333596, - [SMALL_STATE(7349)] = 333667, - [SMALL_STATE(7350)] = 333738, - [SMALL_STATE(7351)] = 333809, - [SMALL_STATE(7352)] = 333880, - [SMALL_STATE(7353)] = 333951, - [SMALL_STATE(7354)] = 334022, - [SMALL_STATE(7355)] = 334093, - [SMALL_STATE(7356)] = 334164, - [SMALL_STATE(7357)] = 334235, - [SMALL_STATE(7358)] = 334306, - [SMALL_STATE(7359)] = 334377, - [SMALL_STATE(7360)] = 334448, - [SMALL_STATE(7361)] = 334519, - [SMALL_STATE(7362)] = 334590, - [SMALL_STATE(7363)] = 334661, - [SMALL_STATE(7364)] = 334732, - [SMALL_STATE(7365)] = 334803, - [SMALL_STATE(7366)] = 334874, - [SMALL_STATE(7367)] = 334945, - [SMALL_STATE(7368)] = 335016, - [SMALL_STATE(7369)] = 335087, - [SMALL_STATE(7370)] = 335158, - [SMALL_STATE(7371)] = 335229, - [SMALL_STATE(7372)] = 335300, - [SMALL_STATE(7373)] = 335371, - [SMALL_STATE(7374)] = 335442, - [SMALL_STATE(7375)] = 335513, - [SMALL_STATE(7376)] = 335584, - [SMALL_STATE(7377)] = 335655, - [SMALL_STATE(7378)] = 335726, - [SMALL_STATE(7379)] = 335797, - [SMALL_STATE(7380)] = 335868, - [SMALL_STATE(7381)] = 335939, - [SMALL_STATE(7382)] = 336010, - [SMALL_STATE(7383)] = 336081, - [SMALL_STATE(7384)] = 336152, - [SMALL_STATE(7385)] = 336223, - [SMALL_STATE(7386)] = 336294, - [SMALL_STATE(7387)] = 336365, - [SMALL_STATE(7388)] = 336436, - [SMALL_STATE(7389)] = 336507, - [SMALL_STATE(7390)] = 336578, - [SMALL_STATE(7391)] = 336649, - [SMALL_STATE(7392)] = 336720, - [SMALL_STATE(7393)] = 336791, - [SMALL_STATE(7394)] = 336862, - [SMALL_STATE(7395)] = 336933, - [SMALL_STATE(7396)] = 337004, - [SMALL_STATE(7397)] = 337075, - [SMALL_STATE(7398)] = 337146, - [SMALL_STATE(7399)] = 337217, - [SMALL_STATE(7400)] = 337288, - [SMALL_STATE(7401)] = 337359, - [SMALL_STATE(7402)] = 337430, - [SMALL_STATE(7403)] = 337501, - [SMALL_STATE(7404)] = 337572, - [SMALL_STATE(7405)] = 337643, - [SMALL_STATE(7406)] = 337714, - [SMALL_STATE(7407)] = 337785, - [SMALL_STATE(7408)] = 337856, - [SMALL_STATE(7409)] = 337927, - [SMALL_STATE(7410)] = 337998, - [SMALL_STATE(7411)] = 338069, - [SMALL_STATE(7412)] = 338140, - [SMALL_STATE(7413)] = 338211, - [SMALL_STATE(7414)] = 338282, - [SMALL_STATE(7415)] = 338353, - [SMALL_STATE(7416)] = 338424, - [SMALL_STATE(7417)] = 338495, - [SMALL_STATE(7418)] = 338566, - [SMALL_STATE(7419)] = 338637, - [SMALL_STATE(7420)] = 338708, - [SMALL_STATE(7421)] = 338779, - [SMALL_STATE(7422)] = 338850, - [SMALL_STATE(7423)] = 338921, - [SMALL_STATE(7424)] = 338992, - [SMALL_STATE(7425)] = 339063, - [SMALL_STATE(7426)] = 339134, - [SMALL_STATE(7427)] = 339205, - [SMALL_STATE(7428)] = 339276, - [SMALL_STATE(7429)] = 339347, - [SMALL_STATE(7430)] = 339418, - [SMALL_STATE(7431)] = 339489, - [SMALL_STATE(7432)] = 339560, - [SMALL_STATE(7433)] = 339631, - [SMALL_STATE(7434)] = 339702, - [SMALL_STATE(7435)] = 339773, - [SMALL_STATE(7436)] = 339844, - [SMALL_STATE(7437)] = 339915, - [SMALL_STATE(7438)] = 339986, - [SMALL_STATE(7439)] = 340057, - [SMALL_STATE(7440)] = 340128, - [SMALL_STATE(7441)] = 340199, - [SMALL_STATE(7442)] = 340270, - [SMALL_STATE(7443)] = 340341, - [SMALL_STATE(7444)] = 340412, - [SMALL_STATE(7445)] = 340483, - [SMALL_STATE(7446)] = 340554, - [SMALL_STATE(7447)] = 340625, - [SMALL_STATE(7448)] = 340696, - [SMALL_STATE(7449)] = 340767, - [SMALL_STATE(7450)] = 340838, - [SMALL_STATE(7451)] = 340909, - [SMALL_STATE(7452)] = 340980, - [SMALL_STATE(7453)] = 341051, - [SMALL_STATE(7454)] = 341122, - [SMALL_STATE(7455)] = 341193, - [SMALL_STATE(7456)] = 341264, - [SMALL_STATE(7457)] = 341335, - [SMALL_STATE(7458)] = 341406, - [SMALL_STATE(7459)] = 341477, - [SMALL_STATE(7460)] = 341548, - [SMALL_STATE(7461)] = 341619, - [SMALL_STATE(7462)] = 341690, - [SMALL_STATE(7463)] = 341761, - [SMALL_STATE(7464)] = 341832, - [SMALL_STATE(7465)] = 341903, - [SMALL_STATE(7466)] = 341974, - [SMALL_STATE(7467)] = 342045, - [SMALL_STATE(7468)] = 342116, - [SMALL_STATE(7469)] = 342187, - [SMALL_STATE(7470)] = 342258, - [SMALL_STATE(7471)] = 342329, - [SMALL_STATE(7472)] = 342400, - [SMALL_STATE(7473)] = 342469, - [SMALL_STATE(7474)] = 342540, - [SMALL_STATE(7475)] = 342611, - [SMALL_STATE(7476)] = 342682, - [SMALL_STATE(7477)] = 342753, - [SMALL_STATE(7478)] = 342824, - [SMALL_STATE(7479)] = 342895, - [SMALL_STATE(7480)] = 342966, - [SMALL_STATE(7481)] = 343037, - [SMALL_STATE(7482)] = 343108, - [SMALL_STATE(7483)] = 343179, - [SMALL_STATE(7484)] = 343250, - [SMALL_STATE(7485)] = 343321, - [SMALL_STATE(7486)] = 343392, - [SMALL_STATE(7487)] = 343463, - [SMALL_STATE(7488)] = 343534, - [SMALL_STATE(7489)] = 343605, - [SMALL_STATE(7490)] = 343676, - [SMALL_STATE(7491)] = 343747, - [SMALL_STATE(7492)] = 343818, - [SMALL_STATE(7493)] = 343889, - [SMALL_STATE(7494)] = 343960, - [SMALL_STATE(7495)] = 344031, - [SMALL_STATE(7496)] = 344102, - [SMALL_STATE(7497)] = 344173, - [SMALL_STATE(7498)] = 344244, - [SMALL_STATE(7499)] = 344315, - [SMALL_STATE(7500)] = 344386, - [SMALL_STATE(7501)] = 344457, - [SMALL_STATE(7502)] = 344528, - [SMALL_STATE(7503)] = 344599, - [SMALL_STATE(7504)] = 344670, - [SMALL_STATE(7505)] = 344741, - [SMALL_STATE(7506)] = 344812, - [SMALL_STATE(7507)] = 344883, - [SMALL_STATE(7508)] = 344954, - [SMALL_STATE(7509)] = 345025, - [SMALL_STATE(7510)] = 345096, - [SMALL_STATE(7511)] = 345167, - [SMALL_STATE(7512)] = 345238, - [SMALL_STATE(7513)] = 345309, - [SMALL_STATE(7514)] = 345380, - [SMALL_STATE(7515)] = 345451, - [SMALL_STATE(7516)] = 345522, - [SMALL_STATE(7517)] = 345593, - [SMALL_STATE(7518)] = 345664, - [SMALL_STATE(7519)] = 345735, - [SMALL_STATE(7520)] = 345806, - [SMALL_STATE(7521)] = 345877, - [SMALL_STATE(7522)] = 345948, - [SMALL_STATE(7523)] = 346019, - [SMALL_STATE(7524)] = 346090, - [SMALL_STATE(7525)] = 346161, - [SMALL_STATE(7526)] = 346232, - [SMALL_STATE(7527)] = 346303, - [SMALL_STATE(7528)] = 346374, - [SMALL_STATE(7529)] = 346445, - [SMALL_STATE(7530)] = 346516, - [SMALL_STATE(7531)] = 346584, - [SMALL_STATE(7532)] = 346652, - [SMALL_STATE(7533)] = 346720, - [SMALL_STATE(7534)] = 346788, - [SMALL_STATE(7535)] = 346856, - [SMALL_STATE(7536)] = 346924, - [SMALL_STATE(7537)] = 346992, - [SMALL_STATE(7538)] = 347060, - [SMALL_STATE(7539)] = 347128, - [SMALL_STATE(7540)] = 347196, - [SMALL_STATE(7541)] = 347264, - [SMALL_STATE(7542)] = 347332, - [SMALL_STATE(7543)] = 347400, - [SMALL_STATE(7544)] = 347468, - [SMALL_STATE(7545)] = 347536, - [SMALL_STATE(7546)] = 347604, - [SMALL_STATE(7547)] = 347672, - [SMALL_STATE(7548)] = 347740, - [SMALL_STATE(7549)] = 347808, - [SMALL_STATE(7550)] = 347876, - [SMALL_STATE(7551)] = 347944, - [SMALL_STATE(7552)] = 348012, - [SMALL_STATE(7553)] = 348080, - [SMALL_STATE(7554)] = 348148, - [SMALL_STATE(7555)] = 348216, - [SMALL_STATE(7556)] = 348284, - [SMALL_STATE(7557)] = 348352, - [SMALL_STATE(7558)] = 348420, - [SMALL_STATE(7559)] = 348488, - [SMALL_STATE(7560)] = 348556, - [SMALL_STATE(7561)] = 348624, - [SMALL_STATE(7562)] = 348692, - [SMALL_STATE(7563)] = 348760, - [SMALL_STATE(7564)] = 348828, - [SMALL_STATE(7565)] = 348896, - [SMALL_STATE(7566)] = 348964, - [SMALL_STATE(7567)] = 349032, - [SMALL_STATE(7568)] = 349100, - [SMALL_STATE(7569)] = 349168, - [SMALL_STATE(7570)] = 349236, - [SMALL_STATE(7571)] = 349304, - [SMALL_STATE(7572)] = 349372, - [SMALL_STATE(7573)] = 349440, - [SMALL_STATE(7574)] = 349508, - [SMALL_STATE(7575)] = 349576, - [SMALL_STATE(7576)] = 349644, - [SMALL_STATE(7577)] = 349712, - [SMALL_STATE(7578)] = 349780, - [SMALL_STATE(7579)] = 349848, - [SMALL_STATE(7580)] = 349916, - [SMALL_STATE(7581)] = 349984, - [SMALL_STATE(7582)] = 350052, - [SMALL_STATE(7583)] = 350120, - [SMALL_STATE(7584)] = 350188, - [SMALL_STATE(7585)] = 350256, - [SMALL_STATE(7586)] = 350324, - [SMALL_STATE(7587)] = 350392, - [SMALL_STATE(7588)] = 350460, - [SMALL_STATE(7589)] = 350528, - [SMALL_STATE(7590)] = 350596, - [SMALL_STATE(7591)] = 350664, - [SMALL_STATE(7592)] = 350732, - [SMALL_STATE(7593)] = 350800, - [SMALL_STATE(7594)] = 350868, - [SMALL_STATE(7595)] = 350936, - [SMALL_STATE(7596)] = 351004, - [SMALL_STATE(7597)] = 351072, - [SMALL_STATE(7598)] = 351140, - [SMALL_STATE(7599)] = 351208, - [SMALL_STATE(7600)] = 351276, - [SMALL_STATE(7601)] = 351344, - [SMALL_STATE(7602)] = 351412, - [SMALL_STATE(7603)] = 351480, - [SMALL_STATE(7604)] = 351548, - [SMALL_STATE(7605)] = 351616, - [SMALL_STATE(7606)] = 351684, - [SMALL_STATE(7607)] = 351752, - [SMALL_STATE(7608)] = 351820, - [SMALL_STATE(7609)] = 351888, - [SMALL_STATE(7610)] = 351956, - [SMALL_STATE(7611)] = 352024, - [SMALL_STATE(7612)] = 352092, - [SMALL_STATE(7613)] = 352160, - [SMALL_STATE(7614)] = 352228, - [SMALL_STATE(7615)] = 352296, - [SMALL_STATE(7616)] = 352364, - [SMALL_STATE(7617)] = 352432, - [SMALL_STATE(7618)] = 352500, - [SMALL_STATE(7619)] = 352568, - [SMALL_STATE(7620)] = 352633, - [SMALL_STATE(7621)] = 352698, - [SMALL_STATE(7622)] = 352763, - [SMALL_STATE(7623)] = 352836, - [SMALL_STATE(7624)] = 352901, - [SMALL_STATE(7625)] = 352966, - [SMALL_STATE(7626)] = 353031, - [SMALL_STATE(7627)] = 353096, - [SMALL_STATE(7628)] = 353169, - [SMALL_STATE(7629)] = 353234, - [SMALL_STATE(7630)] = 353299, - [SMALL_STATE(7631)] = 353364, - [SMALL_STATE(7632)] = 353429, - [SMALL_STATE(7633)] = 353494, - [SMALL_STATE(7634)] = 353559, - [SMALL_STATE(7635)] = 353624, - [SMALL_STATE(7636)] = 353689, - [SMALL_STATE(7637)] = 353754, - [SMALL_STATE(7638)] = 353819, - [SMALL_STATE(7639)] = 353884, - [SMALL_STATE(7640)] = 353949, - [SMALL_STATE(7641)] = 354014, - [SMALL_STATE(7642)] = 354079, - [SMALL_STATE(7643)] = 354152, - [SMALL_STATE(7644)] = 354217, - [SMALL_STATE(7645)] = 354282, - [SMALL_STATE(7646)] = 354355, - [SMALL_STATE(7647)] = 354416, - [SMALL_STATE(7648)] = 354489, - [SMALL_STATE(7649)] = 354554, - [SMALL_STATE(7650)] = 354627, - [SMALL_STATE(7651)] = 354688, - [SMALL_STATE(7652)] = 354758, - [SMALL_STATE(7653)] = 354826, - [SMALL_STATE(7654)] = 354886, - [SMALL_STATE(7655)] = 354928, - [SMALL_STATE(7656)] = 354970, - [SMALL_STATE(7657)] = 355012, - [SMALL_STATE(7658)] = 355074, - [SMALL_STATE(7659)] = 355134, - [SMALL_STATE(7660)] = 355196, - [SMALL_STATE(7661)] = 355236, - [SMALL_STATE(7662)] = 355278, - [SMALL_STATE(7663)] = 355315, - [SMALL_STATE(7664)] = 355371, - [SMALL_STATE(7665)] = 355427, - [SMALL_STATE(7666)] = 355483, - [SMALL_STATE(7667)] = 355539, - [SMALL_STATE(7668)] = 355595, - [SMALL_STATE(7669)] = 355651, - [SMALL_STATE(7670)] = 355707, - [SMALL_STATE(7671)] = 355763, - [SMALL_STATE(7672)] = 355803, - [SMALL_STATE(7673)] = 355843, - [SMALL_STATE(7674)] = 355885, - [SMALL_STATE(7675)] = 355941, - [SMALL_STATE(7676)] = 355997, - [SMALL_STATE(7677)] = 356053, - [SMALL_STATE(7678)] = 356109, - [SMALL_STATE(7679)] = 356165, - [SMALL_STATE(7680)] = 356221, - [SMALL_STATE(7681)] = 356269, - [SMALL_STATE(7682)] = 356311, - [SMALL_STATE(7683)] = 356367, - [SMALL_STATE(7684)] = 356409, - [SMALL_STATE(7685)] = 356451, - [SMALL_STATE(7686)] = 356507, - [SMALL_STATE(7687)] = 356563, - [SMALL_STATE(7688)] = 356619, - [SMALL_STATE(7689)] = 356675, - [SMALL_STATE(7690)] = 356731, - [SMALL_STATE(7691)] = 356787, - [SMALL_STATE(7692)] = 356843, - [SMALL_STATE(7693)] = 356899, - [SMALL_STATE(7694)] = 356955, - [SMALL_STATE(7695)] = 356993, - [SMALL_STATE(7696)] = 357049, - [SMALL_STATE(7697)] = 357105, - [SMALL_STATE(7698)] = 357161, - [SMALL_STATE(7699)] = 357217, - [SMALL_STATE(7700)] = 357273, - [SMALL_STATE(7701)] = 357329, - [SMALL_STATE(7702)] = 357385, - [SMALL_STATE(7703)] = 357423, - [SMALL_STATE(7704)] = 357479, - [SMALL_STATE(7705)] = 357535, - [SMALL_STATE(7706)] = 357591, - [SMALL_STATE(7707)] = 357647, - [SMALL_STATE(7708)] = 357703, - [SMALL_STATE(7709)] = 357751, - [SMALL_STATE(7710)] = 357807, - [SMALL_STATE(7711)] = 357863, - [SMALL_STATE(7712)] = 357919, - [SMALL_STATE(7713)] = 357975, - [SMALL_STATE(7714)] = 358031, - [SMALL_STATE(7715)] = 358087, - [SMALL_STATE(7716)] = 358143, - [SMALL_STATE(7717)] = 358199, - [SMALL_STATE(7718)] = 358255, - [SMALL_STATE(7719)] = 358311, - [SMALL_STATE(7720)] = 358367, - [SMALL_STATE(7721)] = 358423, - [SMALL_STATE(7722)] = 358471, - [SMALL_STATE(7723)] = 358519, - [SMALL_STATE(7724)] = 358575, - [SMALL_STATE(7725)] = 358631, - [SMALL_STATE(7726)] = 358687, - [SMALL_STATE(7727)] = 358743, - [SMALL_STATE(7728)] = 358799, - [SMALL_STATE(7729)] = 358837, - [SMALL_STATE(7730)] = 358893, - [SMALL_STATE(7731)] = 358941, - [SMALL_STATE(7732)] = 358997, - [SMALL_STATE(7733)] = 359053, - [SMALL_STATE(7734)] = 359109, - [SMALL_STATE(7735)] = 359165, - [SMALL_STATE(7736)] = 359221, - [SMALL_STATE(7737)] = 359277, - [SMALL_STATE(7738)] = 359333, - [SMALL_STATE(7739)] = 359389, - [SMALL_STATE(7740)] = 359445, - [SMALL_STATE(7741)] = 359501, - [SMALL_STATE(7742)] = 359543, - [SMALL_STATE(7743)] = 359585, - [SMALL_STATE(7744)] = 359627, - [SMALL_STATE(7745)] = 359683, - [SMALL_STATE(7746)] = 359723, - [SMALL_STATE(7747)] = 359765, - [SMALL_STATE(7748)] = 359821, - [SMALL_STATE(7749)] = 359877, - [SMALL_STATE(7750)] = 359933, - [SMALL_STATE(7751)] = 359989, - [SMALL_STATE(7752)] = 360024, - [SMALL_STATE(7753)] = 360059, - [SMALL_STATE(7754)] = 360094, - [SMALL_STATE(7755)] = 360129, - [SMALL_STATE(7756)] = 360164, - [SMALL_STATE(7757)] = 360199, - [SMALL_STATE(7758)] = 360234, - [SMALL_STATE(7759)] = 360269, - [SMALL_STATE(7760)] = 360306, - [SMALL_STATE(7761)] = 360341, - [SMALL_STATE(7762)] = 360376, - [SMALL_STATE(7763)] = 360411, - [SMALL_STATE(7764)] = 360448, - [SMALL_STATE(7765)] = 360483, - [SMALL_STATE(7766)] = 360518, - [SMALL_STATE(7767)] = 360553, - [SMALL_STATE(7768)] = 360588, - [SMALL_STATE(7769)] = 360623, - [SMALL_STATE(7770)] = 360658, - [SMALL_STATE(7771)] = 360696, - [SMALL_STATE(7772)] = 360742, - [SMALL_STATE(7773)] = 360780, - [SMALL_STATE(7774)] = 360826, - [SMALL_STATE(7775)] = 360872, - [SMALL_STATE(7776)] = 360908, - [SMALL_STATE(7777)] = 360946, - [SMALL_STATE(7778)] = 360984, - [SMALL_STATE(7779)] = 361022, - [SMALL_STATE(7780)] = 361068, - [SMALL_STATE(7781)] = 361114, - [SMALL_STATE(7782)] = 361152, - [SMALL_STATE(7783)] = 361188, - [SMALL_STATE(7784)] = 361224, - [SMALL_STATE(7785)] = 361259, - [SMALL_STATE(7786)] = 361294, - [SMALL_STATE(7787)] = 361329, - [SMALL_STATE(7788)] = 361364, - [SMALL_STATE(7789)] = 361399, - [SMALL_STATE(7790)] = 361434, - [SMALL_STATE(7791)] = 361469, - [SMALL_STATE(7792)] = 361504, - [SMALL_STATE(7793)] = 361539, - [SMALL_STATE(7794)] = 361574, - [SMALL_STATE(7795)] = 361609, - [SMALL_STATE(7796)] = 361644, - [SMALL_STATE(7797)] = 361679, - [SMALL_STATE(7798)] = 361714, - [SMALL_STATE(7799)] = 361749, - [SMALL_STATE(7800)] = 361784, - [SMALL_STATE(7801)] = 361817, - [SMALL_STATE(7802)] = 361852, - [SMALL_STATE(7803)] = 361886, - [SMALL_STATE(7804)] = 361930, - [SMALL_STATE(7805)] = 361966, - [SMALL_STATE(7806)] = 362002, - [SMALL_STATE(7807)] = 362036, - [SMALL_STATE(7808)] = 362070, - [SMALL_STATE(7809)] = 362106, - [SMALL_STATE(7810)] = 362142, - [SMALL_STATE(7811)] = 362178, - [SMALL_STATE(7812)] = 362214, - [SMALL_STATE(7813)] = 362250, - [SMALL_STATE(7814)] = 362286, - [SMALL_STATE(7815)] = 362322, - [SMALL_STATE(7816)] = 362356, - [SMALL_STATE(7817)] = 362400, - [SMALL_STATE(7818)] = 362444, - [SMALL_STATE(7819)] = 362480, - [SMALL_STATE(7820)] = 362516, - [SMALL_STATE(7821)] = 362552, - [SMALL_STATE(7822)] = 362588, - [SMALL_STATE(7823)] = 362632, - [SMALL_STATE(7824)] = 362676, - [SMALL_STATE(7825)] = 362710, - [SMALL_STATE(7826)] = 362741, - [SMALL_STATE(7827)] = 362802, - [SMALL_STATE(7828)] = 362835, - [SMALL_STATE(7829)] = 362868, - [SMALL_STATE(7830)] = 362929, - [SMALL_STATE(7831)] = 362962, - [SMALL_STATE(7832)] = 363001, - [SMALL_STATE(7833)] = 363032, - [SMALL_STATE(7834)] = 363063, - [SMALL_STATE(7835)] = 363096, - [SMALL_STATE(7836)] = 363129, - [SMALL_STATE(7837)] = 363160, - [SMALL_STATE(7838)] = 363193, - [SMALL_STATE(7839)] = 363226, - [SMALL_STATE(7840)] = 363257, - [SMALL_STATE(7841)] = 363290, - [SMALL_STATE(7842)] = 363351, - [SMALL_STATE(7843)] = 363384, - [SMALL_STATE(7844)] = 363417, - [SMALL_STATE(7845)] = 363478, - [SMALL_STATE(7846)] = 363511, - [SMALL_STATE(7847)] = 363572, - [SMALL_STATE(7848)] = 363603, - [SMALL_STATE(7849)] = 363634, - [SMALL_STATE(7850)] = 363667, - [SMALL_STATE(7851)] = 363700, - [SMALL_STATE(7852)] = 363761, - [SMALL_STATE(7853)] = 363794, - [SMALL_STATE(7854)] = 363825, - [SMALL_STATE(7855)] = 363856, - [SMALL_STATE(7856)] = 363887, - [SMALL_STATE(7857)] = 363920, - [SMALL_STATE(7858)] = 363951, - [SMALL_STATE(7859)] = 363988, - [SMALL_STATE(7860)] = 364019, - [SMALL_STATE(7861)] = 364052, - [SMALL_STATE(7862)] = 364085, - [SMALL_STATE(7863)] = 364116, - [SMALL_STATE(7864)] = 364149, - [SMALL_STATE(7865)] = 364180, - [SMALL_STATE(7866)] = 364241, - [SMALL_STATE(7867)] = 364274, - [SMALL_STATE(7868)] = 364305, - [SMALL_STATE(7869)] = 364366, - [SMALL_STATE(7870)] = 364399, - [SMALL_STATE(7871)] = 364430, - [SMALL_STATE(7872)] = 364463, - [SMALL_STATE(7873)] = 364502, - [SMALL_STATE(7874)] = 364535, - [SMALL_STATE(7875)] = 364566, - [SMALL_STATE(7876)] = 364599, - [SMALL_STATE(7877)] = 364632, - [SMALL_STATE(7878)] = 364663, - [SMALL_STATE(7879)] = 364695, - [SMALL_STATE(7880)] = 364753, - [SMALL_STATE(7881)] = 364811, - [SMALL_STATE(7882)] = 364869, - [SMALL_STATE(7883)] = 364927, - [SMALL_STATE(7884)] = 364969, - [SMALL_STATE(7885)] = 365011, - [SMALL_STATE(7886)] = 365043, - [SMALL_STATE(7887)] = 365101, - [SMALL_STATE(7888)] = 365133, - [SMALL_STATE(7889)] = 365175, - [SMALL_STATE(7890)] = 365207, - [SMALL_STATE(7891)] = 365249, - [SMALL_STATE(7892)] = 365291, - [SMALL_STATE(7893)] = 365333, - [SMALL_STATE(7894)] = 365375, - [SMALL_STATE(7895)] = 365417, - [SMALL_STATE(7896)] = 365449, - [SMALL_STATE(7897)] = 365491, - [SMALL_STATE(7898)] = 365549, - [SMALL_STATE(7899)] = 365607, - [SMALL_STATE(7900)] = 365641, - [SMALL_STATE(7901)] = 365675, - [SMALL_STATE(7902)] = 365705, - [SMALL_STATE(7903)] = 365739, - [SMALL_STATE(7904)] = 365775, - [SMALL_STATE(7905)] = 365807, - [SMALL_STATE(7906)] = 365849, - [SMALL_STATE(7907)] = 365891, - [SMALL_STATE(7908)] = 365933, - [SMALL_STATE(7909)] = 365975, - [SMALL_STATE(7910)] = 366011, - [SMALL_STATE(7911)] = 366069, - [SMALL_STATE(7912)] = 366099, - [SMALL_STATE(7913)] = 366135, - [SMALL_STATE(7914)] = 366171, - [SMALL_STATE(7915)] = 366213, - [SMALL_STATE(7916)] = 366255, - [SMALL_STATE(7917)] = 366287, - [SMALL_STATE(7918)] = 366340, - [SMALL_STATE(7919)] = 366369, - [SMALL_STATE(7920)] = 366398, - [SMALL_STATE(7921)] = 366427, - [SMALL_STATE(7922)] = 366480, - [SMALL_STATE(7923)] = 366533, - [SMALL_STATE(7924)] = 366586, - [SMALL_STATE(7925)] = 366639, - [SMALL_STATE(7926)] = 366672, - [SMALL_STATE(7927)] = 366701, - [SMALL_STATE(7928)] = 366730, - [SMALL_STATE(7929)] = 366761, - [SMALL_STATE(7930)] = 366790, - [SMALL_STATE(7931)] = 366819, - [SMALL_STATE(7932)] = 366872, - [SMALL_STATE(7933)] = 366925, - [SMALL_STATE(7934)] = 366980, - [SMALL_STATE(7935)] = 367033, - [SMALL_STATE(7936)] = 367062, - [SMALL_STATE(7937)] = 367095, - [SMALL_STATE(7938)] = 367128, - [SMALL_STATE(7939)] = 367181, - [SMALL_STATE(7940)] = 367210, - [SMALL_STATE(7941)] = 367243, - [SMALL_STATE(7942)] = 367272, - [SMALL_STATE(7943)] = 367325, - [SMALL_STATE(7944)] = 367378, - [SMALL_STATE(7945)] = 367411, - [SMALL_STATE(7946)] = 367444, - [SMALL_STATE(7947)] = 367497, - [SMALL_STATE(7948)] = 367530, - [SMALL_STATE(7949)] = 367563, - [SMALL_STATE(7950)] = 367592, - [SMALL_STATE(7951)] = 367621, - [SMALL_STATE(7952)] = 367654, - [SMALL_STATE(7953)] = 367707, - [SMALL_STATE(7954)] = 367736, - [SMALL_STATE(7955)] = 367765, - [SMALL_STATE(7956)] = 367794, - [SMALL_STATE(7957)] = 367827, - [SMALL_STATE(7958)] = 367856, - [SMALL_STATE(7959)] = 367885, - [SMALL_STATE(7960)] = 367918, - [SMALL_STATE(7961)] = 367971, - [SMALL_STATE(7962)] = 368002, - [SMALL_STATE(7963)] = 368035, - [SMALL_STATE(7964)] = 368088, - [SMALL_STATE(7965)] = 368118, - [SMALL_STATE(7966)] = 368168, - [SMALL_STATE(7967)] = 368218, - [SMALL_STATE(7968)] = 368248, - [SMALL_STATE(7969)] = 368278, - [SMALL_STATE(7970)] = 368328, - [SMALL_STATE(7971)] = 368368, - [SMALL_STATE(7972)] = 368398, - [SMALL_STATE(7973)] = 368438, - [SMALL_STATE(7974)] = 368488, - [SMALL_STATE(7975)] = 368516, - [SMALL_STATE(7976)] = 368556, - [SMALL_STATE(7977)] = 368596, - [SMALL_STATE(7978)] = 368646, - [SMALL_STATE(7979)] = 368686, - [SMALL_STATE(7980)] = 368726, - [SMALL_STATE(7981)] = 368756, - [SMALL_STATE(7982)] = 368806, - [SMALL_STATE(7983)] = 368836, - [SMALL_STATE(7984)] = 368866, - [SMALL_STATE(7985)] = 368906, - [SMALL_STATE(7986)] = 368938, - [SMALL_STATE(7987)] = 368970, - [SMALL_STATE(7988)] = 369000, - [SMALL_STATE(7989)] = 369028, - [SMALL_STATE(7990)] = 369058, - [SMALL_STATE(7991)] = 369098, - [SMALL_STATE(7992)] = 369130, - [SMALL_STATE(7993)] = 369162, - [SMALL_STATE(7994)] = 369192, - [SMALL_STATE(7995)] = 369224, - [SMALL_STATE(7996)] = 369252, - [SMALL_STATE(7997)] = 369284, - [SMALL_STATE(7998)] = 369324, - [SMALL_STATE(7999)] = 369364, - [SMALL_STATE(8000)] = 369414, - [SMALL_STATE(8001)] = 369454, - [SMALL_STATE(8002)] = 369504, - [SMALL_STATE(8003)] = 369534, - [SMALL_STATE(8004)] = 369561, - [SMALL_STATE(8005)] = 369588, - [SMALL_STATE(8006)] = 369615, - [SMALL_STATE(8007)] = 369642, - [SMALL_STATE(8008)] = 369669, - [SMALL_STATE(8009)] = 369712, - [SMALL_STATE(8010)] = 369739, - [SMALL_STATE(8011)] = 369766, - [SMALL_STATE(8012)] = 369809, - [SMALL_STATE(8013)] = 369836, - [SMALL_STATE(8014)] = 369863, - [SMALL_STATE(8015)] = 369890, - [SMALL_STATE(8016)] = 369933, - [SMALL_STATE(8017)] = 369960, - [SMALL_STATE(8018)] = 369987, - [SMALL_STATE(8019)] = 370014, - [SMALL_STATE(8020)] = 370041, - [SMALL_STATE(8021)] = 370068, - [SMALL_STATE(8022)] = 370095, - [SMALL_STATE(8023)] = 370122, - [SMALL_STATE(8024)] = 370165, - [SMALL_STATE(8025)] = 370192, - [SMALL_STATE(8026)] = 370219, - [SMALL_STATE(8027)] = 370246, - [SMALL_STATE(8028)] = 370273, - [SMALL_STATE(8029)] = 370300, - [SMALL_STATE(8030)] = 370327, - [SMALL_STATE(8031)] = 370370, - [SMALL_STATE(8032)] = 370397, - [SMALL_STATE(8033)] = 370424, - [SMALL_STATE(8034)] = 370451, - [SMALL_STATE(8035)] = 370478, - [SMALL_STATE(8036)] = 370505, - [SMALL_STATE(8037)] = 370532, - [SMALL_STATE(8038)] = 370559, - [SMALL_STATE(8039)] = 370602, - [SMALL_STATE(8040)] = 370645, - [SMALL_STATE(8041)] = 370672, - [SMALL_STATE(8042)] = 370699, - [SMALL_STATE(8043)] = 370726, - [SMALL_STATE(8044)] = 370753, - [SMALL_STATE(8045)] = 370780, - [SMALL_STATE(8046)] = 370807, - [SMALL_STATE(8047)] = 370834, - [SMALL_STATE(8048)] = 370877, - [SMALL_STATE(8049)] = 370924, - [SMALL_STATE(8050)] = 370951, - [SMALL_STATE(8051)] = 370978, - [SMALL_STATE(8052)] = 371005, - [SMALL_STATE(8053)] = 371032, - [SMALL_STATE(8054)] = 371067, - [SMALL_STATE(8055)] = 371094, - [SMALL_STATE(8056)] = 371137, - [SMALL_STATE(8057)] = 371164, - [SMALL_STATE(8058)] = 371191, - [SMALL_STATE(8059)] = 371218, - [SMALL_STATE(8060)] = 371245, - [SMALL_STATE(8061)] = 371272, - [SMALL_STATE(8062)] = 371315, - [SMALL_STATE(8063)] = 371342, - [SMALL_STATE(8064)] = 371385, - [SMALL_STATE(8065)] = 371412, - [SMALL_STATE(8066)] = 371455, - [SMALL_STATE(8067)] = 371482, - [SMALL_STATE(8068)] = 371509, - [SMALL_STATE(8069)] = 371536, - [SMALL_STATE(8070)] = 371579, - [SMALL_STATE(8071)] = 371606, - [SMALL_STATE(8072)] = 371633, - [SMALL_STATE(8073)] = 371660, - [SMALL_STATE(8074)] = 371687, - [SMALL_STATE(8075)] = 371726, - [SMALL_STATE(8076)] = 371753, - [SMALL_STATE(8077)] = 371780, - [SMALL_STATE(8078)] = 371807, - [SMALL_STATE(8079)] = 371834, - [SMALL_STATE(8080)] = 371861, - [SMALL_STATE(8081)] = 371888, - [SMALL_STATE(8082)] = 371915, - [SMALL_STATE(8083)] = 371958, - [SMALL_STATE(8084)] = 371985, - [SMALL_STATE(8085)] = 372032, - [SMALL_STATE(8086)] = 372059, - [SMALL_STATE(8087)] = 372086, - [SMALL_STATE(8088)] = 372113, - [SMALL_STATE(8089)] = 372140, - [SMALL_STATE(8090)] = 372167, - [SMALL_STATE(8091)] = 372194, - [SMALL_STATE(8092)] = 372221, - [SMALL_STATE(8093)] = 372248, - [SMALL_STATE(8094)] = 372281, - [SMALL_STATE(8095)] = 372308, - [SMALL_STATE(8096)] = 372335, - [SMALL_STATE(8097)] = 372362, - [SMALL_STATE(8098)] = 372389, - [SMALL_STATE(8099)] = 372416, - [SMALL_STATE(8100)] = 372443, - [SMALL_STATE(8101)] = 372470, - [SMALL_STATE(8102)] = 372497, - [SMALL_STATE(8103)] = 372524, - [SMALL_STATE(8104)] = 372551, - [SMALL_STATE(8105)] = 372578, - [SMALL_STATE(8106)] = 372605, - [SMALL_STATE(8107)] = 372632, - [SMALL_STATE(8108)] = 372659, - [SMALL_STATE(8109)] = 372686, - [SMALL_STATE(8110)] = 372729, - [SMALL_STATE(8111)] = 372756, - [SMALL_STATE(8112)] = 372783, - [SMALL_STATE(8113)] = 372810, - [SMALL_STATE(8114)] = 372837, - [SMALL_STATE(8115)] = 372864, - [SMALL_STATE(8116)] = 372891, - [SMALL_STATE(8117)] = 372918, - [SMALL_STATE(8118)] = 372945, - [SMALL_STATE(8119)] = 372972, - [SMALL_STATE(8120)] = 372999, - [SMALL_STATE(8121)] = 373026, - [SMALL_STATE(8122)] = 373053, - [SMALL_STATE(8123)] = 373080, - [SMALL_STATE(8124)] = 373107, - [SMALL_STATE(8125)] = 373134, - [SMALL_STATE(8126)] = 373161, - [SMALL_STATE(8127)] = 373188, - [SMALL_STATE(8128)] = 373215, - [SMALL_STATE(8129)] = 373242, - [SMALL_STATE(8130)] = 373269, - [SMALL_STATE(8131)] = 373296, - [SMALL_STATE(8132)] = 373323, - [SMALL_STATE(8133)] = 373350, - [SMALL_STATE(8134)] = 373377, - [SMALL_STATE(8135)] = 373404, - [SMALL_STATE(8136)] = 373431, - [SMALL_STATE(8137)] = 373458, - [SMALL_STATE(8138)] = 373485, - [SMALL_STATE(8139)] = 373512, - [SMALL_STATE(8140)] = 373539, - [SMALL_STATE(8141)] = 373566, - [SMALL_STATE(8142)] = 373593, - [SMALL_STATE(8143)] = 373620, - [SMALL_STATE(8144)] = 373647, - [SMALL_STATE(8145)] = 373674, - [SMALL_STATE(8146)] = 373701, - [SMALL_STATE(8147)] = 373728, - [SMALL_STATE(8148)] = 373755, - [SMALL_STATE(8149)] = 373782, - [SMALL_STATE(8150)] = 373809, - [SMALL_STATE(8151)] = 373852, - [SMALL_STATE(8152)] = 373879, - [SMALL_STATE(8153)] = 373906, - [SMALL_STATE(8154)] = 373933, - [SMALL_STATE(8155)] = 373960, - [SMALL_STATE(8156)] = 373987, - [SMALL_STATE(8157)] = 374014, - [SMALL_STATE(8158)] = 374041, - [SMALL_STATE(8159)] = 374068, - [SMALL_STATE(8160)] = 374095, - [SMALL_STATE(8161)] = 374122, - [SMALL_STATE(8162)] = 374149, - [SMALL_STATE(8163)] = 374176, - [SMALL_STATE(8164)] = 374203, - [SMALL_STATE(8165)] = 374230, - [SMALL_STATE(8166)] = 374257, - [SMALL_STATE(8167)] = 374284, - [SMALL_STATE(8168)] = 374311, - [SMALL_STATE(8169)] = 374338, - [SMALL_STATE(8170)] = 374365, - [SMALL_STATE(8171)] = 374408, - [SMALL_STATE(8172)] = 374435, - [SMALL_STATE(8173)] = 374462, - [SMALL_STATE(8174)] = 374489, - [SMALL_STATE(8175)] = 374516, - [SMALL_STATE(8176)] = 374543, - [SMALL_STATE(8177)] = 374570, - [SMALL_STATE(8178)] = 374599, - [SMALL_STATE(8179)] = 374626, - [SMALL_STATE(8180)] = 374653, - [SMALL_STATE(8181)] = 374680, - [SMALL_STATE(8182)] = 374707, - [SMALL_STATE(8183)] = 374750, - [SMALL_STATE(8184)] = 374777, - [SMALL_STATE(8185)] = 374804, - [SMALL_STATE(8186)] = 374831, - [SMALL_STATE(8187)] = 374858, - [SMALL_STATE(8188)] = 374885, - [SMALL_STATE(8189)] = 374912, - [SMALL_STATE(8190)] = 374939, - [SMALL_STATE(8191)] = 374966, - [SMALL_STATE(8192)] = 374993, - [SMALL_STATE(8193)] = 375020, - [SMALL_STATE(8194)] = 375047, - [SMALL_STATE(8195)] = 375074, - [SMALL_STATE(8196)] = 375101, - [SMALL_STATE(8197)] = 375128, - [SMALL_STATE(8198)] = 375155, - [SMALL_STATE(8199)] = 375182, - [SMALL_STATE(8200)] = 375209, - [SMALL_STATE(8201)] = 375236, - [SMALL_STATE(8202)] = 375263, - [SMALL_STATE(8203)] = 375290, - [SMALL_STATE(8204)] = 375333, - [SMALL_STATE(8205)] = 375368, - [SMALL_STATE(8206)] = 375395, - [SMALL_STATE(8207)] = 375438, - [SMALL_STATE(8208)] = 375465, - [SMALL_STATE(8209)] = 375492, - [SMALL_STATE(8210)] = 375519, - [SMALL_STATE(8211)] = 375546, - [SMALL_STATE(8212)] = 375573, - [SMALL_STATE(8213)] = 375600, - [SMALL_STATE(8214)] = 375627, - [SMALL_STATE(8215)] = 375654, - [SMALL_STATE(8216)] = 375681, - [SMALL_STATE(8217)] = 375708, - [SMALL_STATE(8218)] = 375743, - [SMALL_STATE(8219)] = 375770, - [SMALL_STATE(8220)] = 375797, - [SMALL_STATE(8221)] = 375824, - [SMALL_STATE(8222)] = 375851, - [SMALL_STATE(8223)] = 375878, - [SMALL_STATE(8224)] = 375905, - [SMALL_STATE(8225)] = 375932, - [SMALL_STATE(8226)] = 375959, - [SMALL_STATE(8227)] = 375994, - [SMALL_STATE(8228)] = 376037, - [SMALL_STATE(8229)] = 376080, - [SMALL_STATE(8230)] = 376107, - [SMALL_STATE(8231)] = 376134, - [SMALL_STATE(8232)] = 376161, - [SMALL_STATE(8233)] = 376188, - [SMALL_STATE(8234)] = 376215, - [SMALL_STATE(8235)] = 376242, - [SMALL_STATE(8236)] = 376269, - [SMALL_STATE(8237)] = 376296, - [SMALL_STATE(8238)] = 376323, - [SMALL_STATE(8239)] = 376355, - [SMALL_STATE(8240)] = 376381, - [SMALL_STATE(8241)] = 376413, - [SMALL_STATE(8242)] = 376439, - [SMALL_STATE(8243)] = 376465, - [SMALL_STATE(8244)] = 376497, - [SMALL_STATE(8245)] = 376529, - [SMALL_STATE(8246)] = 376555, - [SMALL_STATE(8247)] = 376594, - [SMALL_STATE(8248)] = 376633, - [SMALL_STATE(8249)] = 376672, - [SMALL_STATE(8250)] = 376701, - [SMALL_STATE(8251)] = 376732, - [SMALL_STATE(8252)] = 376759, - [SMALL_STATE(8253)] = 376788, - [SMALL_STATE(8254)] = 376817, - [SMALL_STATE(8255)] = 376844, - [SMALL_STATE(8256)] = 376873, - [SMALL_STATE(8257)] = 376902, - [SMALL_STATE(8258)] = 376931, - [SMALL_STATE(8259)] = 376960, - [SMALL_STATE(8260)] = 376991, - [SMALL_STATE(8261)] = 377020, - [SMALL_STATE(8262)] = 377049, - [SMALL_STATE(8263)] = 377078, - [SMALL_STATE(8264)] = 377107, - [SMALL_STATE(8265)] = 377140, - [SMALL_STATE(8266)] = 377179, - [SMALL_STATE(8267)] = 377208, - [SMALL_STATE(8268)] = 377239, - [SMALL_STATE(8269)] = 377268, - [SMALL_STATE(8270)] = 377295, - [SMALL_STATE(8271)] = 377324, - [SMALL_STATE(8272)] = 377363, - [SMALL_STATE(8273)] = 377392, - [SMALL_STATE(8274)] = 377423, - [SMALL_STATE(8275)] = 377452, - [SMALL_STATE(8276)] = 377485, - [SMALL_STATE(8277)] = 377514, - [SMALL_STATE(8278)] = 377543, - [SMALL_STATE(8279)] = 377579, - [SMALL_STATE(8280)] = 377605, - [SMALL_STATE(8281)] = 377643, - [SMALL_STATE(8282)] = 377679, - [SMALL_STATE(8283)] = 377709, - [SMALL_STATE(8284)] = 377733, - [SMALL_STATE(8285)] = 377769, - [SMALL_STATE(8286)] = 377795, - [SMALL_STATE(8287)] = 377831, - [SMALL_STATE(8288)] = 377867, - [SMALL_STATE(8289)] = 377895, - [SMALL_STATE(8290)] = 377933, - [SMALL_STATE(8291)] = 377959, - [SMALL_STATE(8292)] = 377997, - [SMALL_STATE(8293)] = 378023, - [SMALL_STATE(8294)] = 378049, - [SMALL_STATE(8295)] = 378073, - [SMALL_STATE(8296)] = 378101, - [SMALL_STATE(8297)] = 378137, - [SMALL_STATE(8298)] = 378173, - [SMALL_STATE(8299)] = 378211, - [SMALL_STATE(8300)] = 378249, - [SMALL_STATE(8301)] = 378277, - [SMALL_STATE(8302)] = 378303, - [SMALL_STATE(8303)] = 378341, - [SMALL_STATE(8304)] = 378365, - [SMALL_STATE(8305)] = 378403, - [SMALL_STATE(8306)] = 378429, - [SMALL_STATE(8307)] = 378455, - [SMALL_STATE(8308)] = 378479, - [SMALL_STATE(8309)] = 378509, - [SMALL_STATE(8310)] = 378547, - [SMALL_STATE(8311)] = 378571, - [SMALL_STATE(8312)] = 378601, - [SMALL_STATE(8313)] = 378625, - [SMALL_STATE(8314)] = 378649, - [SMALL_STATE(8315)] = 378679, - [SMALL_STATE(8316)] = 378709, - [SMALL_STATE(8317)] = 378733, - [SMALL_STATE(8318)] = 378756, - [SMALL_STATE(8319)] = 378779, - [SMALL_STATE(8320)] = 378802, - [SMALL_STATE(8321)] = 378825, - [SMALL_STATE(8322)] = 378848, - [SMALL_STATE(8323)] = 378871, - [SMALL_STATE(8324)] = 378894, - [SMALL_STATE(8325)] = 378925, - [SMALL_STATE(8326)] = 378948, - [SMALL_STATE(8327)] = 378971, - [SMALL_STATE(8328)] = 378994, - [SMALL_STATE(8329)] = 379017, - [SMALL_STATE(8330)] = 379040, - [SMALL_STATE(8331)] = 379063, - [SMALL_STATE(8332)] = 379086, - [SMALL_STATE(8333)] = 379109, - [SMALL_STATE(8334)] = 379132, - [SMALL_STATE(8335)] = 379155, - [SMALL_STATE(8336)] = 379178, - [SMALL_STATE(8337)] = 379201, - [SMALL_STATE(8338)] = 379224, - [SMALL_STATE(8339)] = 379247, - [SMALL_STATE(8340)] = 379270, - [SMALL_STATE(8341)] = 379293, - [SMALL_STATE(8342)] = 379320, - [SMALL_STATE(8343)] = 379343, - [SMALL_STATE(8344)] = 379366, - [SMALL_STATE(8345)] = 379389, - [SMALL_STATE(8346)] = 379412, - [SMALL_STATE(8347)] = 379435, - [SMALL_STATE(8348)] = 379458, - [SMALL_STATE(8349)] = 379481, - [SMALL_STATE(8350)] = 379504, - [SMALL_STATE(8351)] = 379527, - [SMALL_STATE(8352)] = 379550, - [SMALL_STATE(8353)] = 379573, - [SMALL_STATE(8354)] = 379596, - [SMALL_STATE(8355)] = 379619, - [SMALL_STATE(8356)] = 379654, - [SMALL_STATE(8357)] = 379677, - [SMALL_STATE(8358)] = 379700, - [SMALL_STATE(8359)] = 379723, - [SMALL_STATE(8360)] = 379746, - [SMALL_STATE(8361)] = 379769, - [SMALL_STATE(8362)] = 379792, - [SMALL_STATE(8363)] = 379815, - [SMALL_STATE(8364)] = 379838, - [SMALL_STATE(8365)] = 379861, - [SMALL_STATE(8366)] = 379884, - [SMALL_STATE(8367)] = 379907, - [SMALL_STATE(8368)] = 379942, - [SMALL_STATE(8369)] = 379965, - [SMALL_STATE(8370)] = 379988, - [SMALL_STATE(8371)] = 380011, - [SMALL_STATE(8372)] = 380034, - [SMALL_STATE(8373)] = 380057, - [SMALL_STATE(8374)] = 380080, - [SMALL_STATE(8375)] = 380103, - [SMALL_STATE(8376)] = 380126, - [SMALL_STATE(8377)] = 380149, - [SMALL_STATE(8378)] = 380172, - [SMALL_STATE(8379)] = 380195, - [SMALL_STATE(8380)] = 380218, - [SMALL_STATE(8381)] = 380241, - [SMALL_STATE(8382)] = 380264, - [SMALL_STATE(8383)] = 380287, - [SMALL_STATE(8384)] = 380310, - [SMALL_STATE(8385)] = 380333, - [SMALL_STATE(8386)] = 380356, - [SMALL_STATE(8387)] = 380379, - [SMALL_STATE(8388)] = 380402, - [SMALL_STATE(8389)] = 380425, - [SMALL_STATE(8390)] = 380448, - [SMALL_STATE(8391)] = 380471, - [SMALL_STATE(8392)] = 380494, - [SMALL_STATE(8393)] = 380517, - [SMALL_STATE(8394)] = 380540, - [SMALL_STATE(8395)] = 380563, - [SMALL_STATE(8396)] = 380586, - [SMALL_STATE(8397)] = 380609, - [SMALL_STATE(8398)] = 380632, - [SMALL_STATE(8399)] = 380655, - [SMALL_STATE(8400)] = 380680, - [SMALL_STATE(8401)] = 380703, - [SMALL_STATE(8402)] = 380726, - [SMALL_STATE(8403)] = 380749, - [SMALL_STATE(8404)] = 380772, - [SMALL_STATE(8405)] = 380795, - [SMALL_STATE(8406)] = 380818, - [SMALL_STATE(8407)] = 380841, - [SMALL_STATE(8408)] = 380864, - [SMALL_STATE(8409)] = 380887, - [SMALL_STATE(8410)] = 380910, - [SMALL_STATE(8411)] = 380933, - [SMALL_STATE(8412)] = 380956, - [SMALL_STATE(8413)] = 380979, - [SMALL_STATE(8414)] = 381002, - [SMALL_STATE(8415)] = 381033, - [SMALL_STATE(8416)] = 381056, - [SMALL_STATE(8417)] = 381079, - [SMALL_STATE(8418)] = 381102, - [SMALL_STATE(8419)] = 381125, - [SMALL_STATE(8420)] = 381148, - [SMALL_STATE(8421)] = 381171, - [SMALL_STATE(8422)] = 381194, - [SMALL_STATE(8423)] = 381217, - [SMALL_STATE(8424)] = 381240, - [SMALL_STATE(8425)] = 381263, - [SMALL_STATE(8426)] = 381286, - [SMALL_STATE(8427)] = 381309, - [SMALL_STATE(8428)] = 381332, - [SMALL_STATE(8429)] = 381355, - [SMALL_STATE(8430)] = 381378, - [SMALL_STATE(8431)] = 381401, - [SMALL_STATE(8432)] = 381424, - [SMALL_STATE(8433)] = 381451, - [SMALL_STATE(8434)] = 381474, - [SMALL_STATE(8435)] = 381497, - [SMALL_STATE(8436)] = 381520, - [SMALL_STATE(8437)] = 381543, - [SMALL_STATE(8438)] = 381566, - [SMALL_STATE(8439)] = 381589, - [SMALL_STATE(8440)] = 381612, - [SMALL_STATE(8441)] = 381635, - [SMALL_STATE(8442)] = 381662, - [SMALL_STATE(8443)] = 381685, - [SMALL_STATE(8444)] = 381708, - [SMALL_STATE(8445)] = 381731, - [SMALL_STATE(8446)] = 381754, - [SMALL_STATE(8447)] = 381777, - [SMALL_STATE(8448)] = 381800, - [SMALL_STATE(8449)] = 381823, - [SMALL_STATE(8450)] = 381846, - [SMALL_STATE(8451)] = 381869, - [SMALL_STATE(8452)] = 381892, - [SMALL_STATE(8453)] = 381915, - [SMALL_STATE(8454)] = 381938, - [SMALL_STATE(8455)] = 381961, - [SMALL_STATE(8456)] = 381984, - [SMALL_STATE(8457)] = 382019, - [SMALL_STATE(8458)] = 382042, - [SMALL_STATE(8459)] = 382065, - [SMALL_STATE(8460)] = 382088, - [SMALL_STATE(8461)] = 382111, - [SMALL_STATE(8462)] = 382134, - [SMALL_STATE(8463)] = 382157, - [SMALL_STATE(8464)] = 382180, - [SMALL_STATE(8465)] = 382203, - [SMALL_STATE(8466)] = 382226, - [SMALL_STATE(8467)] = 382249, - [SMALL_STATE(8468)] = 382272, - [SMALL_STATE(8469)] = 382295, - [SMALL_STATE(8470)] = 382318, - [SMALL_STATE(8471)] = 382341, - [SMALL_STATE(8472)] = 382364, - [SMALL_STATE(8473)] = 382387, - [SMALL_STATE(8474)] = 382410, - [SMALL_STATE(8475)] = 382433, - [SMALL_STATE(8476)] = 382456, - [SMALL_STATE(8477)] = 382479, - [SMALL_STATE(8478)] = 382502, - [SMALL_STATE(8479)] = 382525, - [SMALL_STATE(8480)] = 382548, - [SMALL_STATE(8481)] = 382571, - [SMALL_STATE(8482)] = 382594, - [SMALL_STATE(8483)] = 382617, - [SMALL_STATE(8484)] = 382640, - [SMALL_STATE(8485)] = 382663, - [SMALL_STATE(8486)] = 382686, - [SMALL_STATE(8487)] = 382709, - [SMALL_STATE(8488)] = 382732, - [SMALL_STATE(8489)] = 382755, - [SMALL_STATE(8490)] = 382778, - [SMALL_STATE(8491)] = 382801, - [SMALL_STATE(8492)] = 382824, - [SMALL_STATE(8493)] = 382847, - [SMALL_STATE(8494)] = 382870, - [SMALL_STATE(8495)] = 382893, - [SMALL_STATE(8496)] = 382916, - [SMALL_STATE(8497)] = 382939, - [SMALL_STATE(8498)] = 382962, - [SMALL_STATE(8499)] = 382985, - [SMALL_STATE(8500)] = 383008, - [SMALL_STATE(8501)] = 383031, - [SMALL_STATE(8502)] = 383054, - [SMALL_STATE(8503)] = 383077, - [SMALL_STATE(8504)] = 383100, - [SMALL_STATE(8505)] = 383123, - [SMALL_STATE(8506)] = 383146, - [SMALL_STATE(8507)] = 383169, - [SMALL_STATE(8508)] = 383192, - [SMALL_STATE(8509)] = 383219, - [SMALL_STATE(8510)] = 383242, - [SMALL_STATE(8511)] = 383265, - [SMALL_STATE(8512)] = 383290, - [SMALL_STATE(8513)] = 383315, - [SMALL_STATE(8514)] = 383342, - [SMALL_STATE(8515)] = 383377, - [SMALL_STATE(8516)] = 383400, - [SMALL_STATE(8517)] = 383423, - [SMALL_STATE(8518)] = 383446, - [SMALL_STATE(8519)] = 383469, - [SMALL_STATE(8520)] = 383492, - [SMALL_STATE(8521)] = 383515, - [SMALL_STATE(8522)] = 383538, - [SMALL_STATE(8523)] = 383561, - [SMALL_STATE(8524)] = 383586, - [SMALL_STATE(8525)] = 383609, - [SMALL_STATE(8526)] = 383636, - [SMALL_STATE(8527)] = 383663, - [SMALL_STATE(8528)] = 383686, - [SMALL_STATE(8529)] = 383709, - [SMALL_STATE(8530)] = 383740, - [SMALL_STATE(8531)] = 383763, - [SMALL_STATE(8532)] = 383786, - [SMALL_STATE(8533)] = 383809, - [SMALL_STATE(8534)] = 383832, - [SMALL_STATE(8535)] = 383855, - [SMALL_STATE(8536)] = 383878, - [SMALL_STATE(8537)] = 383901, - [SMALL_STATE(8538)] = 383924, - [SMALL_STATE(8539)] = 383947, - [SMALL_STATE(8540)] = 383970, - [SMALL_STATE(8541)] = 383997, - [SMALL_STATE(8542)] = 384020, - [SMALL_STATE(8543)] = 384055, - [SMALL_STATE(8544)] = 384078, - [SMALL_STATE(8545)] = 384101, - [SMALL_STATE(8546)] = 384128, - [SMALL_STATE(8547)] = 384151, - [SMALL_STATE(8548)] = 384174, - [SMALL_STATE(8549)] = 384197, - [SMALL_STATE(8550)] = 384224, - [SMALL_STATE(8551)] = 384247, - [SMALL_STATE(8552)] = 384270, - [SMALL_STATE(8553)] = 384297, - [SMALL_STATE(8554)] = 384320, - [SMALL_STATE(8555)] = 384347, - [SMALL_STATE(8556)] = 384372, - [SMALL_STATE(8557)] = 384395, - [SMALL_STATE(8558)] = 384422, - [SMALL_STATE(8559)] = 384445, - [SMALL_STATE(8560)] = 384468, - [SMALL_STATE(8561)] = 384491, - [SMALL_STATE(8562)] = 384529, - [SMALL_STATE(8563)] = 384567, - [SMALL_STATE(8564)] = 384601, - [SMALL_STATE(8565)] = 384629, - [SMALL_STATE(8566)] = 384665, - [SMALL_STATE(8567)] = 384699, - [SMALL_STATE(8568)] = 384733, - [SMALL_STATE(8569)] = 384767, - [SMALL_STATE(8570)] = 384791, - [SMALL_STATE(8571)] = 384825, - [SMALL_STATE(8572)] = 384847, - [SMALL_STATE(8573)] = 384869, - [SMALL_STATE(8574)] = 384903, - [SMALL_STATE(8575)] = 384941, - [SMALL_STATE(8576)] = 384975, - [SMALL_STATE(8577)] = 385009, - [SMALL_STATE(8578)] = 385045, - [SMALL_STATE(8579)] = 385079, - [SMALL_STATE(8580)] = 385113, - [SMALL_STATE(8581)] = 385137, - [SMALL_STATE(8582)] = 385171, - [SMALL_STATE(8583)] = 385205, - [SMALL_STATE(8584)] = 385227, - [SMALL_STATE(8585)] = 385265, - [SMALL_STATE(8586)] = 385299, - [SMALL_STATE(8587)] = 385337, - [SMALL_STATE(8588)] = 385375, - [SMALL_STATE(8589)] = 385413, - [SMALL_STATE(8590)] = 385447, - [SMALL_STATE(8591)] = 385481, - [SMALL_STATE(8592)] = 385515, - [SMALL_STATE(8593)] = 385553, - [SMALL_STATE(8594)] = 385589, - [SMALL_STATE(8595)] = 385623, - [SMALL_STATE(8596)] = 385657, - [SMALL_STATE(8597)] = 385695, - [SMALL_STATE(8598)] = 385729, - [SMALL_STATE(8599)] = 385751, - [SMALL_STATE(8600)] = 385785, - [SMALL_STATE(8601)] = 385819, - [SMALL_STATE(8602)] = 385853, - [SMALL_STATE(8603)] = 385889, - [SMALL_STATE(8604)] = 385927, - [SMALL_STATE(8605)] = 385961, - [SMALL_STATE(8606)] = 385999, - [SMALL_STATE(8607)] = 386033, - [SMALL_STATE(8608)] = 386071, - [SMALL_STATE(8609)] = 386093, - [SMALL_STATE(8610)] = 386127, - [SMALL_STATE(8611)] = 386161, - [SMALL_STATE(8612)] = 386187, - [SMALL_STATE(8613)] = 386209, - [SMALL_STATE(8614)] = 386245, - [SMALL_STATE(8615)] = 386267, - [SMALL_STATE(8616)] = 386305, - [SMALL_STATE(8617)] = 386339, - [SMALL_STATE(8618)] = 386373, - [SMALL_STATE(8619)] = 386407, - [SMALL_STATE(8620)] = 386441, - [SMALL_STATE(8621)] = 386477, - [SMALL_STATE(8622)] = 386515, - [SMALL_STATE(8623)] = 386551, - [SMALL_STATE(8624)] = 386585, - [SMALL_STATE(8625)] = 386609, - [SMALL_STATE(8626)] = 386643, - [SMALL_STATE(8627)] = 386681, - [SMALL_STATE(8628)] = 386715, - [SMALL_STATE(8629)] = 386737, - [SMALL_STATE(8630)] = 386759, - [SMALL_STATE(8631)] = 386793, - [SMALL_STATE(8632)] = 386831, - [SMALL_STATE(8633)] = 386869, - [SMALL_STATE(8634)] = 386903, - [SMALL_STATE(8635)] = 386937, - [SMALL_STATE(8636)] = 386961, - [SMALL_STATE(8637)] = 386995, - [SMALL_STATE(8638)] = 387029, - [SMALL_STATE(8639)] = 387063, - [SMALL_STATE(8640)] = 387101, - [SMALL_STATE(8641)] = 387135, - [SMALL_STATE(8642)] = 387161, - [SMALL_STATE(8643)] = 387199, - [SMALL_STATE(8644)] = 387233, - [SMALL_STATE(8645)] = 387271, - [SMALL_STATE(8646)] = 387305, - [SMALL_STATE(8647)] = 387327, - [SMALL_STATE(8648)] = 387363, - [SMALL_STATE(8649)] = 387399, - [SMALL_STATE(8650)] = 387437, - [SMALL_STATE(8651)] = 387471, - [SMALL_STATE(8652)] = 387493, - [SMALL_STATE(8653)] = 387527, - [SMALL_STATE(8654)] = 387549, - [SMALL_STATE(8655)] = 387571, - [SMALL_STATE(8656)] = 387609, - [SMALL_STATE(8657)] = 387631, - [SMALL_STATE(8658)] = 387665, - [SMALL_STATE(8659)] = 387687, - [SMALL_STATE(8660)] = 387725, - [SMALL_STATE(8661)] = 387759, - [SMALL_STATE(8662)] = 387793, - [SMALL_STATE(8663)] = 387827, - [SMALL_STATE(8664)] = 387865, - [SMALL_STATE(8665)] = 387903, - [SMALL_STATE(8666)] = 387927, - [SMALL_STATE(8667)] = 387965, - [SMALL_STATE(8668)] = 387989, - [SMALL_STATE(8669)] = 388023, - [SMALL_STATE(8670)] = 388045, - [SMALL_STATE(8671)] = 388069, - [SMALL_STATE(8672)] = 388107, - [SMALL_STATE(8673)] = 388143, - [SMALL_STATE(8674)] = 388177, - [SMALL_STATE(8675)] = 388215, - [SMALL_STATE(8676)] = 388249, - [SMALL_STATE(8677)] = 388287, - [SMALL_STATE(8678)] = 388321, - [SMALL_STATE(8679)] = 388355, - [SMALL_STATE(8680)] = 388389, - [SMALL_STATE(8681)] = 388427, - [SMALL_STATE(8682)] = 388465, - [SMALL_STATE(8683)] = 388503, - [SMALL_STATE(8684)] = 388537, - [SMALL_STATE(8685)] = 388575, - [SMALL_STATE(8686)] = 388609, - [SMALL_STATE(8687)] = 388647, - [SMALL_STATE(8688)] = 388681, - [SMALL_STATE(8689)] = 388717, - [SMALL_STATE(8690)] = 388739, - [SMALL_STATE(8691)] = 388777, - [SMALL_STATE(8692)] = 388811, - [SMALL_STATE(8693)] = 388849, - [SMALL_STATE(8694)] = 388883, - [SMALL_STATE(8695)] = 388917, - [SMALL_STATE(8696)] = 388955, - [SMALL_STATE(8697)] = 388989, - [SMALL_STATE(8698)] = 389027, - [SMALL_STATE(8699)] = 389065, - [SMALL_STATE(8700)] = 389099, - [SMALL_STATE(8701)] = 389121, - [SMALL_STATE(8702)] = 389155, - [SMALL_STATE(8703)] = 389189, - [SMALL_STATE(8704)] = 389227, - [SMALL_STATE(8705)] = 389265, - [SMALL_STATE(8706)] = 389303, - [SMALL_STATE(8707)] = 389337, - [SMALL_STATE(8708)] = 389371, - [SMALL_STATE(8709)] = 389409, - [SMALL_STATE(8710)] = 389443, - [SMALL_STATE(8711)] = 389479, - [SMALL_STATE(8712)] = 389513, - [SMALL_STATE(8713)] = 389543, - [SMALL_STATE(8714)] = 389577, - [SMALL_STATE(8715)] = 389615, - [SMALL_STATE(8716)] = 389653, - [SMALL_STATE(8717)] = 389691, - [SMALL_STATE(8718)] = 389725, - [SMALL_STATE(8719)] = 389763, - [SMALL_STATE(8720)] = 389797, - [SMALL_STATE(8721)] = 389835, - [SMALL_STATE(8722)] = 389873, - [SMALL_STATE(8723)] = 389909, - [SMALL_STATE(8724)] = 389947, - [SMALL_STATE(8725)] = 389985, - [SMALL_STATE(8726)] = 390019, - [SMALL_STATE(8727)] = 390053, - [SMALL_STATE(8728)] = 390087, - [SMALL_STATE(8729)] = 390125, - [SMALL_STATE(8730)] = 390159, - [SMALL_STATE(8731)] = 390197, - [SMALL_STATE(8732)] = 390219, - [SMALL_STATE(8733)] = 390253, - [SMALL_STATE(8734)] = 390291, - [SMALL_STATE(8735)] = 390325, - [SMALL_STATE(8736)] = 390363, - [SMALL_STATE(8737)] = 390401, - [SMALL_STATE(8738)] = 390423, - [SMALL_STATE(8739)] = 390459, - [SMALL_STATE(8740)] = 390495, - [SMALL_STATE(8741)] = 390533, - [SMALL_STATE(8742)] = 390567, - [SMALL_STATE(8743)] = 390589, - [SMALL_STATE(8744)] = 390623, - [SMALL_STATE(8745)] = 390657, - [SMALL_STATE(8746)] = 390695, - [SMALL_STATE(8747)] = 390729, - [SMALL_STATE(8748)] = 390767, - [SMALL_STATE(8749)] = 390805, - [SMALL_STATE(8750)] = 390843, - [SMALL_STATE(8751)] = 390865, - [SMALL_STATE(8752)] = 390886, - [SMALL_STATE(8753)] = 390907, - [SMALL_STATE(8754)] = 390928, - [SMALL_STATE(8755)] = 390949, - [SMALL_STATE(8756)] = 390970, - [SMALL_STATE(8757)] = 391003, - [SMALL_STATE(8758)] = 391036, - [SMALL_STATE(8759)] = 391071, - [SMALL_STATE(8760)] = 391106, - [SMALL_STATE(8761)] = 391141, - [SMALL_STATE(8762)] = 391162, - [SMALL_STATE(8763)] = 391183, - [SMALL_STATE(8764)] = 391204, - [SMALL_STATE(8765)] = 391225, - [SMALL_STATE(8766)] = 391246, - [SMALL_STATE(8767)] = 391281, - [SMALL_STATE(8768)] = 391302, - [SMALL_STATE(8769)] = 391337, - [SMALL_STATE(8770)] = 391358, - [SMALL_STATE(8771)] = 391379, - [SMALL_STATE(8772)] = 391400, - [SMALL_STATE(8773)] = 391421, - [SMALL_STATE(8774)] = 391442, - [SMALL_STATE(8775)] = 391463, - [SMALL_STATE(8776)] = 391484, - [SMALL_STATE(8777)] = 391505, - [SMALL_STATE(8778)] = 391540, - [SMALL_STATE(8779)] = 391575, - [SMALL_STATE(8780)] = 391596, - [SMALL_STATE(8781)] = 391627, - [SMALL_STATE(8782)] = 391660, - [SMALL_STATE(8783)] = 391695, - [SMALL_STATE(8784)] = 391730, - [SMALL_STATE(8785)] = 391765, - [SMALL_STATE(8786)] = 391800, - [SMALL_STATE(8787)] = 391821, - [SMALL_STATE(8788)] = 391842, - [SMALL_STATE(8789)] = 391863, - [SMALL_STATE(8790)] = 391884, - [SMALL_STATE(8791)] = 391905, - [SMALL_STATE(8792)] = 391940, - [SMALL_STATE(8793)] = 391975, - [SMALL_STATE(8794)] = 392010, - [SMALL_STATE(8795)] = 392045, - [SMALL_STATE(8796)] = 392080, - [SMALL_STATE(8797)] = 392115, - [SMALL_STATE(8798)] = 392150, - [SMALL_STATE(8799)] = 392185, - [SMALL_STATE(8800)] = 392220, - [SMALL_STATE(8801)] = 392255, - [SMALL_STATE(8802)] = 392288, - [SMALL_STATE(8803)] = 392309, - [SMALL_STATE(8804)] = 392330, - [SMALL_STATE(8805)] = 392351, - [SMALL_STATE(8806)] = 392372, - [SMALL_STATE(8807)] = 392393, - [SMALL_STATE(8808)] = 392414, - [SMALL_STATE(8809)] = 392447, - [SMALL_STATE(8810)] = 392468, - [SMALL_STATE(8811)] = 392489, - [SMALL_STATE(8812)] = 392510, - [SMALL_STATE(8813)] = 392531, - [SMALL_STATE(8814)] = 392566, - [SMALL_STATE(8815)] = 392601, - [SMALL_STATE(8816)] = 392622, - [SMALL_STATE(8817)] = 392643, - [SMALL_STATE(8818)] = 392664, - [SMALL_STATE(8819)] = 392685, - [SMALL_STATE(8820)] = 392706, - [SMALL_STATE(8821)] = 392739, - [SMALL_STATE(8822)] = 392760, - [SMALL_STATE(8823)] = 392781, - [SMALL_STATE(8824)] = 392812, - [SMALL_STATE(8825)] = 392845, - [SMALL_STATE(8826)] = 392866, - [SMALL_STATE(8827)] = 392887, - [SMALL_STATE(8828)] = 392908, - [SMALL_STATE(8829)] = 392941, - [SMALL_STATE(8830)] = 392974, - [SMALL_STATE(8831)] = 392995, - [SMALL_STATE(8832)] = 393016, - [SMALL_STATE(8833)] = 393037, - [SMALL_STATE(8834)] = 393068, - [SMALL_STATE(8835)] = 393099, - [SMALL_STATE(8836)] = 393120, - [SMALL_STATE(8837)] = 393153, - [SMALL_STATE(8838)] = 393174, - [SMALL_STATE(8839)] = 393207, - [SMALL_STATE(8840)] = 393238, - [SMALL_STATE(8841)] = 393271, - [SMALL_STATE(8842)] = 393302, - [SMALL_STATE(8843)] = 393333, - [SMALL_STATE(8844)] = 393368, - [SMALL_STATE(8845)] = 393403, - [SMALL_STATE(8846)] = 393436, - [SMALL_STATE(8847)] = 393467, - [SMALL_STATE(8848)] = 393500, - [SMALL_STATE(8849)] = 393535, - [SMALL_STATE(8850)] = 393566, - [SMALL_STATE(8851)] = 393587, - [SMALL_STATE(8852)] = 393620, - [SMALL_STATE(8853)] = 393645, - [SMALL_STATE(8854)] = 393676, - [SMALL_STATE(8855)] = 393711, - [SMALL_STATE(8856)] = 393744, - [SMALL_STATE(8857)] = 393765, - [SMALL_STATE(8858)] = 393796, - [SMALL_STATE(8859)] = 393829, - [SMALL_STATE(8860)] = 393864, - [SMALL_STATE(8861)] = 393899, - [SMALL_STATE(8862)] = 393934, - [SMALL_STATE(8863)] = 393969, - [SMALL_STATE(8864)] = 393990, - [SMALL_STATE(8865)] = 394021, - [SMALL_STATE(8866)] = 394042, - [SMALL_STATE(8867)] = 394063, - [SMALL_STATE(8868)] = 394084, - [SMALL_STATE(8869)] = 394119, - [SMALL_STATE(8870)] = 394150, - [SMALL_STATE(8871)] = 394171, - [SMALL_STATE(8872)] = 394192, - [SMALL_STATE(8873)] = 394213, - [SMALL_STATE(8874)] = 394234, - [SMALL_STATE(8875)] = 394265, - [SMALL_STATE(8876)] = 394286, - [SMALL_STATE(8877)] = 394319, - [SMALL_STATE(8878)] = 394354, - [SMALL_STATE(8879)] = 394375, - [SMALL_STATE(8880)] = 394410, - [SMALL_STATE(8881)] = 394441, - [SMALL_STATE(8882)] = 394462, - [SMALL_STATE(8883)] = 394495, - [SMALL_STATE(8884)] = 394516, - [SMALL_STATE(8885)] = 394547, - [SMALL_STATE(8886)] = 394568, - [SMALL_STATE(8887)] = 394603, - [SMALL_STATE(8888)] = 394638, - [SMALL_STATE(8889)] = 394671, - [SMALL_STATE(8890)] = 394702, - [SMALL_STATE(8891)] = 394735, - [SMALL_STATE(8892)] = 394756, - [SMALL_STATE(8893)] = 394785, - [SMALL_STATE(8894)] = 394816, - [SMALL_STATE(8895)] = 394837, - [SMALL_STATE(8896)] = 394860, - [SMALL_STATE(8897)] = 394883, - [SMALL_STATE(8898)] = 394916, - [SMALL_STATE(8899)] = 394951, - [SMALL_STATE(8900)] = 394982, - [SMALL_STATE(8901)] = 395017, - [SMALL_STATE(8902)] = 395048, - [SMALL_STATE(8903)] = 395069, - [SMALL_STATE(8904)] = 395100, - [SMALL_STATE(8905)] = 395121, - [SMALL_STATE(8906)] = 395152, - [SMALL_STATE(8907)] = 395173, - [SMALL_STATE(8908)] = 395194, - [SMALL_STATE(8909)] = 395215, - [SMALL_STATE(8910)] = 395246, - [SMALL_STATE(8911)] = 395281, - [SMALL_STATE(8912)] = 395316, - [SMALL_STATE(8913)] = 395349, - [SMALL_STATE(8914)] = 395370, - [SMALL_STATE(8915)] = 395405, - [SMALL_STATE(8916)] = 395436, - [SMALL_STATE(8917)] = 395471, - [SMALL_STATE(8918)] = 395492, - [SMALL_STATE(8919)] = 395517, - [SMALL_STATE(8920)] = 395550, - [SMALL_STATE(8921)] = 395585, - [SMALL_STATE(8922)] = 395616, - [SMALL_STATE(8923)] = 395651, - [SMALL_STATE(8924)] = 395686, - [SMALL_STATE(8925)] = 395719, - [SMALL_STATE(8926)] = 395750, - [SMALL_STATE(8927)] = 395785, - [SMALL_STATE(8928)] = 395820, - [SMALL_STATE(8929)] = 395851, - [SMALL_STATE(8930)] = 395872, - [SMALL_STATE(8931)] = 395907, - [SMALL_STATE(8932)] = 395928, - [SMALL_STATE(8933)] = 395963, - [SMALL_STATE(8934)] = 395998, - [SMALL_STATE(8935)] = 396019, - [SMALL_STATE(8936)] = 396052, - [SMALL_STATE(8937)] = 396085, - [SMALL_STATE(8938)] = 396116, - [SMALL_STATE(8939)] = 396149, - [SMALL_STATE(8940)] = 396180, - [SMALL_STATE(8941)] = 396213, - [SMALL_STATE(8942)] = 396246, - [SMALL_STATE(8943)] = 396281, - [SMALL_STATE(8944)] = 396314, - [SMALL_STATE(8945)] = 396345, - [SMALL_STATE(8946)] = 396378, - [SMALL_STATE(8947)] = 396399, - [SMALL_STATE(8948)] = 396420, - [SMALL_STATE(8949)] = 396453, - [SMALL_STATE(8950)] = 396474, - [SMALL_STATE(8951)] = 396495, - [SMALL_STATE(8952)] = 396516, - [SMALL_STATE(8953)] = 396547, - [SMALL_STATE(8954)] = 396568, - [SMALL_STATE(8955)] = 396601, - [SMALL_STATE(8956)] = 396636, - [SMALL_STATE(8957)] = 396667, - [SMALL_STATE(8958)] = 396688, - [SMALL_STATE(8959)] = 396709, - [SMALL_STATE(8960)] = 396730, - [SMALL_STATE(8961)] = 396761, - [SMALL_STATE(8962)] = 396792, - [SMALL_STATE(8963)] = 396813, - [SMALL_STATE(8964)] = 396834, - [SMALL_STATE(8965)] = 396869, - [SMALL_STATE(8966)] = 396890, - [SMALL_STATE(8967)] = 396925, - [SMALL_STATE(8968)] = 396946, - [SMALL_STATE(8969)] = 396979, - [SMALL_STATE(8970)] = 397010, - [SMALL_STATE(8971)] = 397045, - [SMALL_STATE(8972)] = 397066, - [SMALL_STATE(8973)] = 397087, - [SMALL_STATE(8974)] = 397118, - [SMALL_STATE(8975)] = 397139, - [SMALL_STATE(8976)] = 397174, - [SMALL_STATE(8977)] = 397207, - [SMALL_STATE(8978)] = 397238, - [SMALL_STATE(8979)] = 397269, - [SMALL_STATE(8980)] = 397302, - [SMALL_STATE(8981)] = 397337, - [SMALL_STATE(8982)] = 397370, - [SMALL_STATE(8983)] = 397403, - [SMALL_STATE(8984)] = 397438, - [SMALL_STATE(8985)] = 397461, - [SMALL_STATE(8986)] = 397482, - [SMALL_STATE(8987)] = 397503, - [SMALL_STATE(8988)] = 397524, - [SMALL_STATE(8989)] = 397557, - [SMALL_STATE(8990)] = 397578, - [SMALL_STATE(8991)] = 397609, - [SMALL_STATE(8992)] = 397642, - [SMALL_STATE(8993)] = 397663, - [SMALL_STATE(8994)] = 397684, - [SMALL_STATE(8995)] = 397705, - [SMALL_STATE(8996)] = 397726, - [SMALL_STATE(8997)] = 397747, - [SMALL_STATE(8998)] = 397768, - [SMALL_STATE(8999)] = 397801, - [SMALL_STATE(9000)] = 397822, - [SMALL_STATE(9001)] = 397843, - [SMALL_STATE(9002)] = 397874, - [SMALL_STATE(9003)] = 397895, - [SMALL_STATE(9004)] = 397930, - [SMALL_STATE(9005)] = 397951, - [SMALL_STATE(9006)] = 397972, - [SMALL_STATE(9007)] = 397993, - [SMALL_STATE(9008)] = 398014, - [SMALL_STATE(9009)] = 398047, - [SMALL_STATE(9010)] = 398068, - [SMALL_STATE(9011)] = 398089, - [SMALL_STATE(9012)] = 398110, - [SMALL_STATE(9013)] = 398143, - [SMALL_STATE(9014)] = 398164, - [SMALL_STATE(9015)] = 398185, - [SMALL_STATE(9016)] = 398206, - [SMALL_STATE(9017)] = 398227, - [SMALL_STATE(9018)] = 398248, - [SMALL_STATE(9019)] = 398269, - [SMALL_STATE(9020)] = 398290, - [SMALL_STATE(9021)] = 398323, - [SMALL_STATE(9022)] = 398344, - [SMALL_STATE(9023)] = 398365, - [SMALL_STATE(9024)] = 398386, - [SMALL_STATE(9025)] = 398407, - [SMALL_STATE(9026)] = 398428, - [SMALL_STATE(9027)] = 398449, - [SMALL_STATE(9028)] = 398470, - [SMALL_STATE(9029)] = 398491, - [SMALL_STATE(9030)] = 398512, - [SMALL_STATE(9031)] = 398533, - [SMALL_STATE(9032)] = 398562, - [SMALL_STATE(9033)] = 398595, - [SMALL_STATE(9034)] = 398616, - [SMALL_STATE(9035)] = 398637, - [SMALL_STATE(9036)] = 398672, - [SMALL_STATE(9037)] = 398693, - [SMALL_STATE(9038)] = 398728, - [SMALL_STATE(9039)] = 398749, - [SMALL_STATE(9040)] = 398784, - [SMALL_STATE(9041)] = 398819, - [SMALL_STATE(9042)] = 398854, - [SMALL_STATE(9043)] = 398887, - [SMALL_STATE(9044)] = 398920, - [SMALL_STATE(9045)] = 398941, - [SMALL_STATE(9046)] = 398962, - [SMALL_STATE(9047)] = 398983, - [SMALL_STATE(9048)] = 399004, - [SMALL_STATE(9049)] = 399025, - [SMALL_STATE(9050)] = 399060, - [SMALL_STATE(9051)] = 399093, - [SMALL_STATE(9052)] = 399128, - [SMALL_STATE(9053)] = 399149, - [SMALL_STATE(9054)] = 399170, - [SMALL_STATE(9055)] = 399191, - [SMALL_STATE(9056)] = 399212, - [SMALL_STATE(9057)] = 399233, - [SMALL_STATE(9058)] = 399266, - [SMALL_STATE(9059)] = 399287, - [SMALL_STATE(9060)] = 399308, - [SMALL_STATE(9061)] = 399329, - [SMALL_STATE(9062)] = 399350, - [SMALL_STATE(9063)] = 399371, - [SMALL_STATE(9064)] = 399392, - [SMALL_STATE(9065)] = 399413, - [SMALL_STATE(9066)] = 399434, - [SMALL_STATE(9067)] = 399455, - [SMALL_STATE(9068)] = 399476, - [SMALL_STATE(9069)] = 399497, - [SMALL_STATE(9070)] = 399518, - [SMALL_STATE(9071)] = 399539, - [SMALL_STATE(9072)] = 399560, - [SMALL_STATE(9073)] = 399581, - [SMALL_STATE(9074)] = 399602, - [SMALL_STATE(9075)] = 399635, - [SMALL_STATE(9076)] = 399656, - [SMALL_STATE(9077)] = 399677, - [SMALL_STATE(9078)] = 399698, - [SMALL_STATE(9079)] = 399719, - [SMALL_STATE(9080)] = 399740, - [SMALL_STATE(9081)] = 399761, - [SMALL_STATE(9082)] = 399782, - [SMALL_STATE(9083)] = 399803, - [SMALL_STATE(9084)] = 399824, - [SMALL_STATE(9085)] = 399857, - [SMALL_STATE(9086)] = 399878, - [SMALL_STATE(9087)] = 399911, - [SMALL_STATE(9088)] = 399932, - [SMALL_STATE(9089)] = 399967, - [SMALL_STATE(9090)] = 400002, - [SMALL_STATE(9091)] = 400023, - [SMALL_STATE(9092)] = 400058, - [SMALL_STATE(9093)] = 400079, - [SMALL_STATE(9094)] = 400114, - [SMALL_STATE(9095)] = 400147, - [SMALL_STATE(9096)] = 400168, - [SMALL_STATE(9097)] = 400189, - [SMALL_STATE(9098)] = 400224, - [SMALL_STATE(9099)] = 400257, - [SMALL_STATE(9100)] = 400278, - [SMALL_STATE(9101)] = 400299, - [SMALL_STATE(9102)] = 400320, - [SMALL_STATE(9103)] = 400341, - [SMALL_STATE(9104)] = 400362, - [SMALL_STATE(9105)] = 400383, - [SMALL_STATE(9106)] = 400404, - [SMALL_STATE(9107)] = 400425, - [SMALL_STATE(9108)] = 400446, - [SMALL_STATE(9109)] = 400467, - [SMALL_STATE(9110)] = 400488, - [SMALL_STATE(9111)] = 400509, - [SMALL_STATE(9112)] = 400530, - [SMALL_STATE(9113)] = 400551, - [SMALL_STATE(9114)] = 400572, - [SMALL_STATE(9115)] = 400593, - [SMALL_STATE(9116)] = 400614, - [SMALL_STATE(9117)] = 400635, - [SMALL_STATE(9118)] = 400656, - [SMALL_STATE(9119)] = 400677, - [SMALL_STATE(9120)] = 400698, - [SMALL_STATE(9121)] = 400719, - [SMALL_STATE(9122)] = 400740, - [SMALL_STATE(9123)] = 400761, - [SMALL_STATE(9124)] = 400782, - [SMALL_STATE(9125)] = 400803, - [SMALL_STATE(9126)] = 400836, - [SMALL_STATE(9127)] = 400865, - [SMALL_STATE(9128)] = 400900, - [SMALL_STATE(9129)] = 400935, - [SMALL_STATE(9130)] = 400956, - [SMALL_STATE(9131)] = 400987, - [SMALL_STATE(9132)] = 401008, - [SMALL_STATE(9133)] = 401033, - [SMALL_STATE(9134)] = 401058, - [SMALL_STATE(9135)] = 401083, - [SMALL_STATE(9136)] = 401104, - [SMALL_STATE(9137)] = 401125, - [SMALL_STATE(9138)] = 401146, - [SMALL_STATE(9139)] = 401179, - [SMALL_STATE(9140)] = 401200, - [SMALL_STATE(9141)] = 401230, - [SMALL_STATE(9142)] = 401260, - [SMALL_STATE(9143)] = 401290, - [SMALL_STATE(9144)] = 401320, - [SMALL_STATE(9145)] = 401350, - [SMALL_STATE(9146)] = 401380, - [SMALL_STATE(9147)] = 401412, - [SMALL_STATE(9148)] = 401442, - [SMALL_STATE(9149)] = 401472, - [SMALL_STATE(9150)] = 401502, - [SMALL_STATE(9151)] = 401532, - [SMALL_STATE(9152)] = 401562, - [SMALL_STATE(9153)] = 401592, - [SMALL_STATE(9154)] = 401622, - [SMALL_STATE(9155)] = 401652, - [SMALL_STATE(9156)] = 401684, - [SMALL_STATE(9157)] = 401714, - [SMALL_STATE(9158)] = 401746, - [SMALL_STATE(9159)] = 401776, - [SMALL_STATE(9160)] = 401806, - [SMALL_STATE(9161)] = 401838, - [SMALL_STATE(9162)] = 401870, - [SMALL_STATE(9163)] = 401902, - [SMALL_STATE(9164)] = 401932, - [SMALL_STATE(9165)] = 401962, - [SMALL_STATE(9166)] = 401992, - [SMALL_STATE(9167)] = 402022, - [SMALL_STATE(9168)] = 402054, - [SMALL_STATE(9169)] = 402084, - [SMALL_STATE(9170)] = 402116, - [SMALL_STATE(9171)] = 402146, - [SMALL_STATE(9172)] = 402176, - [SMALL_STATE(9173)] = 402208, - [SMALL_STATE(9174)] = 402238, - [SMALL_STATE(9175)] = 402268, - [SMALL_STATE(9176)] = 402300, - [SMALL_STATE(9177)] = 402328, - [SMALL_STATE(9178)] = 402358, - [SMALL_STATE(9179)] = 402388, - [SMALL_STATE(9180)] = 402418, - [SMALL_STATE(9181)] = 402448, - [SMALL_STATE(9182)] = 402478, - [SMALL_STATE(9183)] = 402508, - [SMALL_STATE(9184)] = 402538, - [SMALL_STATE(9185)] = 402570, - [SMALL_STATE(9186)] = 402600, - [SMALL_STATE(9187)] = 402632, - [SMALL_STATE(9188)] = 402664, - [SMALL_STATE(9189)] = 402694, - [SMALL_STATE(9190)] = 402726, - [SMALL_STATE(9191)] = 402758, - [SMALL_STATE(9192)] = 402788, - [SMALL_STATE(9193)] = 402818, - [SMALL_STATE(9194)] = 402848, - [SMALL_STATE(9195)] = 402880, - [SMALL_STATE(9196)] = 402912, - [SMALL_STATE(9197)] = 402944, - [SMALL_STATE(9198)] = 402974, - [SMALL_STATE(9199)] = 403004, - [SMALL_STATE(9200)] = 403034, - [SMALL_STATE(9201)] = 403056, - [SMALL_STATE(9202)] = 403086, - [SMALL_STATE(9203)] = 403118, - [SMALL_STATE(9204)] = 403148, - [SMALL_STATE(9205)] = 403178, - [SMALL_STATE(9206)] = 403208, - [SMALL_STATE(9207)] = 403240, - [SMALL_STATE(9208)] = 403272, - [SMALL_STATE(9209)] = 403304, - [SMALL_STATE(9210)] = 403328, - [SMALL_STATE(9211)] = 403348, - [SMALL_STATE(9212)] = 403378, - [SMALL_STATE(9213)] = 403408, - [SMALL_STATE(9214)] = 403438, - [SMALL_STATE(9215)] = 403470, - [SMALL_STATE(9216)] = 403502, - [SMALL_STATE(9217)] = 403524, - [SMALL_STATE(9218)] = 403554, - [SMALL_STATE(9219)] = 403582, - [SMALL_STATE(9220)] = 403612, - [SMALL_STATE(9221)] = 403642, - [SMALL_STATE(9222)] = 403674, - [SMALL_STATE(9223)] = 403702, - [SMALL_STATE(9224)] = 403722, - [SMALL_STATE(9225)] = 403752, - [SMALL_STATE(9226)] = 403780, - [SMALL_STATE(9227)] = 403808, - [SMALL_STATE(9228)] = 403828, - [SMALL_STATE(9229)] = 403860, - [SMALL_STATE(9230)] = 403880, - [SMALL_STATE(9231)] = 403910, - [SMALL_STATE(9232)] = 403938, - [SMALL_STATE(9233)] = 403968, - [SMALL_STATE(9234)] = 403998, - [SMALL_STATE(9235)] = 404028, - [SMALL_STATE(9236)] = 404058, - [SMALL_STATE(9237)] = 404088, - [SMALL_STATE(9238)] = 404118, - [SMALL_STATE(9239)] = 404150, - [SMALL_STATE(9240)] = 404182, - [SMALL_STATE(9241)] = 404212, - [SMALL_STATE(9242)] = 404244, - [SMALL_STATE(9243)] = 404274, - [SMALL_STATE(9244)] = 404304, - [SMALL_STATE(9245)] = 404332, - [SMALL_STATE(9246)] = 404362, - [SMALL_STATE(9247)] = 404392, - [SMALL_STATE(9248)] = 404422, - [SMALL_STATE(9249)] = 404444, - [SMALL_STATE(9250)] = 404476, - [SMALL_STATE(9251)] = 404506, - [SMALL_STATE(9252)] = 404534, - [SMALL_STATE(9253)] = 404564, - [SMALL_STATE(9254)] = 404594, - [SMALL_STATE(9255)] = 404624, - [SMALL_STATE(9256)] = 404656, - [SMALL_STATE(9257)] = 404688, - [SMALL_STATE(9258)] = 404720, - [SMALL_STATE(9259)] = 404750, - [SMALL_STATE(9260)] = 404776, - [SMALL_STATE(9261)] = 404806, - [SMALL_STATE(9262)] = 404836, - [SMALL_STATE(9263)] = 404856, - [SMALL_STATE(9264)] = 404884, - [SMALL_STATE(9265)] = 404906, - [SMALL_STATE(9266)] = 404936, - [SMALL_STATE(9267)] = 404966, - [SMALL_STATE(9268)] = 404996, - [SMALL_STATE(9269)] = 405026, - [SMALL_STATE(9270)] = 405056, - [SMALL_STATE(9271)] = 405088, - [SMALL_STATE(9272)] = 405118, - [SMALL_STATE(9273)] = 405148, - [SMALL_STATE(9274)] = 405178, - [SMALL_STATE(9275)] = 405210, - [SMALL_STATE(9276)] = 405238, - [SMALL_STATE(9277)] = 405268, - [SMALL_STATE(9278)] = 405300, - [SMALL_STATE(9279)] = 405330, - [SMALL_STATE(9280)] = 405362, - [SMALL_STATE(9281)] = 405392, - [SMALL_STATE(9282)] = 405416, - [SMALL_STATE(9283)] = 405446, - [SMALL_STATE(9284)] = 405476, - [SMALL_STATE(9285)] = 405506, - [SMALL_STATE(9286)] = 405538, - [SMALL_STATE(9287)] = 405570, - [SMALL_STATE(9288)] = 405602, - [SMALL_STATE(9289)] = 405632, - [SMALL_STATE(9290)] = 405662, - [SMALL_STATE(9291)] = 405692, - [SMALL_STATE(9292)] = 405724, - [SMALL_STATE(9293)] = 405756, - [SMALL_STATE(9294)] = 405786, - [SMALL_STATE(9295)] = 405816, - [SMALL_STATE(9296)] = 405846, - [SMALL_STATE(9297)] = 405876, - [SMALL_STATE(9298)] = 405906, - [SMALL_STATE(9299)] = 405938, - [SMALL_STATE(9300)] = 405970, - [SMALL_STATE(9301)] = 405994, - [SMALL_STATE(9302)] = 406018, - [SMALL_STATE(9303)] = 406048, - [SMALL_STATE(9304)] = 406078, - [SMALL_STATE(9305)] = 406108, - [SMALL_STATE(9306)] = 406140, - [SMALL_STATE(9307)] = 406172, - [SMALL_STATE(9308)] = 406202, - [SMALL_STATE(9309)] = 406228, - [SMALL_STATE(9310)] = 406254, - [SMALL_STATE(9311)] = 406282, - [SMALL_STATE(9312)] = 406310, - [SMALL_STATE(9313)] = 406342, - [SMALL_STATE(9314)] = 406372, - [SMALL_STATE(9315)] = 406402, - [SMALL_STATE(9316)] = 406434, - [SMALL_STATE(9317)] = 406462, - [SMALL_STATE(9318)] = 406490, - [SMALL_STATE(9319)] = 406522, - [SMALL_STATE(9320)] = 406552, - [SMALL_STATE(9321)] = 406584, - [SMALL_STATE(9322)] = 406614, - [SMALL_STATE(9323)] = 406642, - [SMALL_STATE(9324)] = 406670, - [SMALL_STATE(9325)] = 406700, - [SMALL_STATE(9326)] = 406728, - [SMALL_STATE(9327)] = 406756, - [SMALL_STATE(9328)] = 406786, - [SMALL_STATE(9329)] = 406814, - [SMALL_STATE(9330)] = 406842, - [SMALL_STATE(9331)] = 406872, - [SMALL_STATE(9332)] = 406902, - [SMALL_STATE(9333)] = 406930, - [SMALL_STATE(9334)] = 406958, - [SMALL_STATE(9335)] = 406990, - [SMALL_STATE(9336)] = 407020, - [SMALL_STATE(9337)] = 407048, - [SMALL_STATE(9338)] = 407076, - [SMALL_STATE(9339)] = 407106, - [SMALL_STATE(9340)] = 407134, - [SMALL_STATE(9341)] = 407162, - [SMALL_STATE(9342)] = 407192, - [SMALL_STATE(9343)] = 407220, - [SMALL_STATE(9344)] = 407248, - [SMALL_STATE(9345)] = 407276, - [SMALL_STATE(9346)] = 407304, - [SMALL_STATE(9347)] = 407336, - [SMALL_STATE(9348)] = 407364, - [SMALL_STATE(9349)] = 407392, - [SMALL_STATE(9350)] = 407422, - [SMALL_STATE(9351)] = 407454, - [SMALL_STATE(9352)] = 407482, - [SMALL_STATE(9353)] = 407510, - [SMALL_STATE(9354)] = 407542, - [SMALL_STATE(9355)] = 407570, - [SMALL_STATE(9356)] = 407598, - [SMALL_STATE(9357)] = 407626, - [SMALL_STATE(9358)] = 407654, - [SMALL_STATE(9359)] = 407684, - [SMALL_STATE(9360)] = 407716, - [SMALL_STATE(9361)] = 407748, - [SMALL_STATE(9362)] = 407780, - [SMALL_STATE(9363)] = 407810, - [SMALL_STATE(9364)] = 407840, - [SMALL_STATE(9365)] = 407872, - [SMALL_STATE(9366)] = 407902, - [SMALL_STATE(9367)] = 407932, - [SMALL_STATE(9368)] = 407962, - [SMALL_STATE(9369)] = 407992, - [SMALL_STATE(9370)] = 408024, - [SMALL_STATE(9371)] = 408056, - [SMALL_STATE(9372)] = 408086, - [SMALL_STATE(9373)] = 408109, - [SMALL_STATE(9374)] = 408128, - [SMALL_STATE(9375)] = 408155, - [SMALL_STATE(9376)] = 408184, - [SMALL_STATE(9377)] = 408209, - [SMALL_STATE(9378)] = 408238, - [SMALL_STATE(9379)] = 408267, - [SMALL_STATE(9380)] = 408296, - [SMALL_STATE(9381)] = 408323, - [SMALL_STATE(9382)] = 408342, - [SMALL_STATE(9383)] = 408371, - [SMALL_STATE(9384)] = 408400, - [SMALL_STATE(9385)] = 408429, - [SMALL_STATE(9386)] = 408448, - [SMALL_STATE(9387)] = 408477, - [SMALL_STATE(9388)] = 408496, - [SMALL_STATE(9389)] = 408515, - [SMALL_STATE(9390)] = 408544, - [SMALL_STATE(9391)] = 408563, - [SMALL_STATE(9392)] = 408592, - [SMALL_STATE(9393)] = 408611, - [SMALL_STATE(9394)] = 408640, - [SMALL_STATE(9395)] = 408659, - [SMALL_STATE(9396)] = 408678, - [SMALL_STATE(9397)] = 408707, - [SMALL_STATE(9398)] = 408736, - [SMALL_STATE(9399)] = 408765, - [SMALL_STATE(9400)] = 408794, - [SMALL_STATE(9401)] = 408823, - [SMALL_STATE(9402)] = 408852, - [SMALL_STATE(9403)] = 408871, - [SMALL_STATE(9404)] = 408898, - [SMALL_STATE(9405)] = 408925, - [SMALL_STATE(9406)] = 408944, - [SMALL_STATE(9407)] = 408973, - [SMALL_STATE(9408)] = 408992, - [SMALL_STATE(9409)] = 409021, - [SMALL_STATE(9410)] = 409040, - [SMALL_STATE(9411)] = 409059, - [SMALL_STATE(9412)] = 409088, - [SMALL_STATE(9413)] = 409107, - [SMALL_STATE(9414)] = 409126, - [SMALL_STATE(9415)] = 409155, - [SMALL_STATE(9416)] = 409178, - [SMALL_STATE(9417)] = 409197, - [SMALL_STATE(9418)] = 409216, - [SMALL_STATE(9419)] = 409245, - [SMALL_STATE(9420)] = 409274, - [SMALL_STATE(9421)] = 409303, - [SMALL_STATE(9422)] = 409322, - [SMALL_STATE(9423)] = 409341, - [SMALL_STATE(9424)] = 409370, - [SMALL_STATE(9425)] = 409399, - [SMALL_STATE(9426)] = 409428, - [SMALL_STATE(9427)] = 409457, - [SMALL_STATE(9428)] = 409476, - [SMALL_STATE(9429)] = 409505, - [SMALL_STATE(9430)] = 409524, - [SMALL_STATE(9431)] = 409553, - [SMALL_STATE(9432)] = 409572, - [SMALL_STATE(9433)] = 409601, - [SMALL_STATE(9434)] = 409630, - [SMALL_STATE(9435)] = 409651, - [SMALL_STATE(9436)] = 409678, - [SMALL_STATE(9437)] = 409697, - [SMALL_STATE(9438)] = 409726, - [SMALL_STATE(9439)] = 409745, - [SMALL_STATE(9440)] = 409774, - [SMALL_STATE(9441)] = 409801, - [SMALL_STATE(9442)] = 409830, - [SMALL_STATE(9443)] = 409857, - [SMALL_STATE(9444)] = 409882, - [SMALL_STATE(9445)] = 409909, - [SMALL_STATE(9446)] = 409936, - [SMALL_STATE(9447)] = 409963, - [SMALL_STATE(9448)] = 409982, - [SMALL_STATE(9449)] = 410009, - [SMALL_STATE(9450)] = 410038, - [SMALL_STATE(9451)] = 410061, - [SMALL_STATE(9452)] = 410090, - [SMALL_STATE(9453)] = 410119, - [SMALL_STATE(9454)] = 410148, - [SMALL_STATE(9455)] = 410177, - [SMALL_STATE(9456)] = 410206, - [SMALL_STATE(9457)] = 410235, - [SMALL_STATE(9458)] = 410254, - [SMALL_STATE(9459)] = 410273, - [SMALL_STATE(9460)] = 410302, - [SMALL_STATE(9461)] = 410329, - [SMALL_STATE(9462)] = 410358, - [SMALL_STATE(9463)] = 410383, - [SMALL_STATE(9464)] = 410412, - [SMALL_STATE(9465)] = 410431, - [SMALL_STATE(9466)] = 410450, - [SMALL_STATE(9467)] = 410477, - [SMALL_STATE(9468)] = 410502, - [SMALL_STATE(9469)] = 410531, - [SMALL_STATE(9470)] = 410560, - [SMALL_STATE(9471)] = 410589, - [SMALL_STATE(9472)] = 410618, - [SMALL_STATE(9473)] = 410637, - [SMALL_STATE(9474)] = 410666, - [SMALL_STATE(9475)] = 410695, - [SMALL_STATE(9476)] = 410724, - [SMALL_STATE(9477)] = 410747, - [SMALL_STATE(9478)] = 410776, - [SMALL_STATE(9479)] = 410799, - [SMALL_STATE(9480)] = 410828, - [SMALL_STATE(9481)] = 410857, - [SMALL_STATE(9482)] = 410886, - [SMALL_STATE(9483)] = 410915, - [SMALL_STATE(9484)] = 410939, - [SMALL_STATE(9485)] = 410963, - [SMALL_STATE(9486)] = 410987, - [SMALL_STATE(9487)] = 411013, - [SMALL_STATE(9488)] = 411035, - [SMALL_STATE(9489)] = 411055, - [SMALL_STATE(9490)] = 411079, - [SMALL_STATE(9491)] = 411103, - [SMALL_STATE(9492)] = 411127, - [SMALL_STATE(9493)] = 411145, - [SMALL_STATE(9494)] = 411163, - [SMALL_STATE(9495)] = 411185, - [SMALL_STATE(9496)] = 411209, - [SMALL_STATE(9497)] = 411227, - [SMALL_STATE(9498)] = 411245, - [SMALL_STATE(9499)] = 411269, - [SMALL_STATE(9500)] = 411287, - [SMALL_STATE(9501)] = 411305, - [SMALL_STATE(9502)] = 411329, - [SMALL_STATE(9503)] = 411351, - [SMALL_STATE(9504)] = 411377, - [SMALL_STATE(9505)] = 411401, - [SMALL_STATE(9506)] = 411425, - [SMALL_STATE(9507)] = 411449, - [SMALL_STATE(9508)] = 411473, - [SMALL_STATE(9509)] = 411497, - [SMALL_STATE(9510)] = 411523, - [SMALL_STATE(9511)] = 411547, - [SMALL_STATE(9512)] = 411571, - [SMALL_STATE(9513)] = 411595, - [SMALL_STATE(9514)] = 411617, - [SMALL_STATE(9515)] = 411641, - [SMALL_STATE(9516)] = 411659, - [SMALL_STATE(9517)] = 411683, - [SMALL_STATE(9518)] = 411707, - [SMALL_STATE(9519)] = 411731, - [SMALL_STATE(9520)] = 411751, - [SMALL_STATE(9521)] = 411775, - [SMALL_STATE(9522)] = 411799, - [SMALL_STATE(9523)] = 411823, - [SMALL_STATE(9524)] = 411845, - [SMALL_STATE(9525)] = 411863, - [SMALL_STATE(9526)] = 411885, - [SMALL_STATE(9527)] = 411903, - [SMALL_STATE(9528)] = 411927, - [SMALL_STATE(9529)] = 411951, - [SMALL_STATE(9530)] = 411969, - [SMALL_STATE(9531)] = 411991, - [SMALL_STATE(9532)] = 412015, - [SMALL_STATE(9533)] = 412037, - [SMALL_STATE(9534)] = 412061, - [SMALL_STATE(9535)] = 412083, - [SMALL_STATE(9536)] = 412105, - [SMALL_STATE(9537)] = 412127, - [SMALL_STATE(9538)] = 412151, - [SMALL_STATE(9539)] = 412175, - [SMALL_STATE(9540)] = 412193, - [SMALL_STATE(9541)] = 412213, - [SMALL_STATE(9542)] = 412237, - [SMALL_STATE(9543)] = 412255, - [SMALL_STATE(9544)] = 412275, - [SMALL_STATE(9545)] = 412299, - [SMALL_STATE(9546)] = 412323, - [SMALL_STATE(9547)] = 412347, - [SMALL_STATE(9548)] = 412373, - [SMALL_STATE(9549)] = 412397, - [SMALL_STATE(9550)] = 412421, - [SMALL_STATE(9551)] = 412445, - [SMALL_STATE(9552)] = 412467, - [SMALL_STATE(9553)] = 412491, - [SMALL_STATE(9554)] = 412509, - [SMALL_STATE(9555)] = 412527, - [SMALL_STATE(9556)] = 412545, - [SMALL_STATE(9557)] = 412571, - [SMALL_STATE(9558)] = 412593, - [SMALL_STATE(9559)] = 412617, - [SMALL_STATE(9560)] = 412641, - [SMALL_STATE(9561)] = 412665, - [SMALL_STATE(9562)] = 412689, - [SMALL_STATE(9563)] = 412713, - [SMALL_STATE(9564)] = 412737, - [SMALL_STATE(9565)] = 412755, - [SMALL_STATE(9566)] = 412779, - [SMALL_STATE(9567)] = 412803, - [SMALL_STATE(9568)] = 412827, - [SMALL_STATE(9569)] = 412853, - [SMALL_STATE(9570)] = 412877, - [SMALL_STATE(9571)] = 412903, - [SMALL_STATE(9572)] = 412929, - [SMALL_STATE(9573)] = 412953, - [SMALL_STATE(9574)] = 412977, - [SMALL_STATE(9575)] = 413001, - [SMALL_STATE(9576)] = 413021, - [SMALL_STATE(9577)] = 413039, - [SMALL_STATE(9578)] = 413063, - [SMALL_STATE(9579)] = 413087, - [SMALL_STATE(9580)] = 413105, - [SMALL_STATE(9581)] = 413123, - [SMALL_STATE(9582)] = 413147, - [SMALL_STATE(9583)] = 413171, - [SMALL_STATE(9584)] = 413191, - [SMALL_STATE(9585)] = 413215, - [SMALL_STATE(9586)] = 413233, - [SMALL_STATE(9587)] = 413257, - [SMALL_STATE(9588)] = 413275, - [SMALL_STATE(9589)] = 413299, - [SMALL_STATE(9590)] = 413321, - [SMALL_STATE(9591)] = 413343, - [SMALL_STATE(9592)] = 413367, - [SMALL_STATE(9593)] = 413391, - [SMALL_STATE(9594)] = 413409, - [SMALL_STATE(9595)] = 413433, - [SMALL_STATE(9596)] = 413453, - [SMALL_STATE(9597)] = 413475, - [SMALL_STATE(9598)] = 413497, - [SMALL_STATE(9599)] = 413519, - [SMALL_STATE(9600)] = 413543, - [SMALL_STATE(9601)] = 413561, - [SMALL_STATE(9602)] = 413585, - [SMALL_STATE(9603)] = 413609, - [SMALL_STATE(9604)] = 413633, - [SMALL_STATE(9605)] = 413651, - [SMALL_STATE(9606)] = 413671, - [SMALL_STATE(9607)] = 413691, - [SMALL_STATE(9608)] = 413709, - [SMALL_STATE(9609)] = 413733, - [SMALL_STATE(9610)] = 413751, - [SMALL_STATE(9611)] = 413775, - [SMALL_STATE(9612)] = 413799, - [SMALL_STATE(9613)] = 413823, - [SMALL_STATE(9614)] = 413847, - [SMALL_STATE(9615)] = 413871, - [SMALL_STATE(9616)] = 413895, - [SMALL_STATE(9617)] = 413919, - [SMALL_STATE(9618)] = 413943, - [SMALL_STATE(9619)] = 413967, - [SMALL_STATE(9620)] = 413991, - [SMALL_STATE(9621)] = 414009, - [SMALL_STATE(9622)] = 414033, - [SMALL_STATE(9623)] = 414055, - [SMALL_STATE(9624)] = 414079, - [SMALL_STATE(9625)] = 414103, - [SMALL_STATE(9626)] = 414123, - [SMALL_STATE(9627)] = 414147, - [SMALL_STATE(9628)] = 414165, - [SMALL_STATE(9629)] = 414187, - [SMALL_STATE(9630)] = 414211, - [SMALL_STATE(9631)] = 414235, - [SMALL_STATE(9632)] = 414253, - [SMALL_STATE(9633)] = 414277, - [SMALL_STATE(9634)] = 414301, - [SMALL_STATE(9635)] = 414325, - [SMALL_STATE(9636)] = 414349, - [SMALL_STATE(9637)] = 414373, - [SMALL_STATE(9638)] = 414399, - [SMALL_STATE(9639)] = 414423, - [SMALL_STATE(9640)] = 414441, - [SMALL_STATE(9641)] = 414459, - [SMALL_STATE(9642)] = 414479, - [SMALL_STATE(9643)] = 414503, - [SMALL_STATE(9644)] = 414521, - [SMALL_STATE(9645)] = 414545, - [SMALL_STATE(9646)] = 414563, - [SMALL_STATE(9647)] = 414587, - [SMALL_STATE(9648)] = 414613, - [SMALL_STATE(9649)] = 414637, - [SMALL_STATE(9650)] = 414661, - [SMALL_STATE(9651)] = 414685, - [SMALL_STATE(9652)] = 414703, - [SMALL_STATE(9653)] = 414727, - [SMALL_STATE(9654)] = 414751, - [SMALL_STATE(9655)] = 414774, - [SMALL_STATE(9656)] = 414797, - [SMALL_STATE(9657)] = 414820, - [SMALL_STATE(9658)] = 414841, - [SMALL_STATE(9659)] = 414864, - [SMALL_STATE(9660)] = 414885, - [SMALL_STATE(9661)] = 414906, - [SMALL_STATE(9662)] = 414929, - [SMALL_STATE(9663)] = 414952, - [SMALL_STATE(9664)] = 414975, - [SMALL_STATE(9665)] = 414996, - [SMALL_STATE(9666)] = 415019, - [SMALL_STATE(9667)] = 415042, - [SMALL_STATE(9668)] = 415065, - [SMALL_STATE(9669)] = 415086, - [SMALL_STATE(9670)] = 415103, - [SMALL_STATE(9671)] = 415126, - [SMALL_STATE(9672)] = 415149, - [SMALL_STATE(9673)] = 415170, - [SMALL_STATE(9674)] = 415191, - [SMALL_STATE(9675)] = 415212, - [SMALL_STATE(9676)] = 415229, - [SMALL_STATE(9677)] = 415252, - [SMALL_STATE(9678)] = 415275, - [SMALL_STATE(9679)] = 415296, - [SMALL_STATE(9680)] = 415319, - [SMALL_STATE(9681)] = 415342, - [SMALL_STATE(9682)] = 415365, - [SMALL_STATE(9683)] = 415386, - [SMALL_STATE(9684)] = 415409, - [SMALL_STATE(9685)] = 415432, - [SMALL_STATE(9686)] = 415453, - [SMALL_STATE(9687)] = 415470, - [SMALL_STATE(9688)] = 415491, - [SMALL_STATE(9689)] = 415512, - [SMALL_STATE(9690)] = 415531, - [SMALL_STATE(9691)] = 415554, - [SMALL_STATE(9692)] = 415577, - [SMALL_STATE(9693)] = 415598, - [SMALL_STATE(9694)] = 415621, - [SMALL_STATE(9695)] = 415644, - [SMALL_STATE(9696)] = 415665, - [SMALL_STATE(9697)] = 415688, - [SMALL_STATE(9698)] = 415705, - [SMALL_STATE(9699)] = 415726, - [SMALL_STATE(9700)] = 415749, - [SMALL_STATE(9701)] = 415770, - [SMALL_STATE(9702)] = 415791, - [SMALL_STATE(9703)] = 415808, - [SMALL_STATE(9704)] = 415829, - [SMALL_STATE(9705)] = 415846, - [SMALL_STATE(9706)] = 415863, - [SMALL_STATE(9707)] = 415884, - [SMALL_STATE(9708)] = 415907, - [SMALL_STATE(9709)] = 415930, - [SMALL_STATE(9710)] = 415951, - [SMALL_STATE(9711)] = 415974, - [SMALL_STATE(9712)] = 415995, - [SMALL_STATE(9713)] = 416018, - [SMALL_STATE(9714)] = 416041, - [SMALL_STATE(9715)] = 416062, - [SMALL_STATE(9716)] = 416085, - [SMALL_STATE(9717)] = 416102, - [SMALL_STATE(9718)] = 416123, - [SMALL_STATE(9719)] = 416146, - [SMALL_STATE(9720)] = 416167, - [SMALL_STATE(9721)] = 416190, - [SMALL_STATE(9722)] = 416211, - [SMALL_STATE(9723)] = 416234, - [SMALL_STATE(9724)] = 416255, - [SMALL_STATE(9725)] = 416276, - [SMALL_STATE(9726)] = 416297, - [SMALL_STATE(9727)] = 416318, - [SMALL_STATE(9728)] = 416335, - [SMALL_STATE(9729)] = 416358, - [SMALL_STATE(9730)] = 416379, - [SMALL_STATE(9731)] = 416396, - [SMALL_STATE(9732)] = 416417, - [SMALL_STATE(9733)] = 416438, - [SMALL_STATE(9734)] = 416459, - [SMALL_STATE(9735)] = 416480, - [SMALL_STATE(9736)] = 416501, - [SMALL_STATE(9737)] = 416522, - [SMALL_STATE(9738)] = 416543, - [SMALL_STATE(9739)] = 416564, - [SMALL_STATE(9740)] = 416585, - [SMALL_STATE(9741)] = 416606, - [SMALL_STATE(9742)] = 416627, - [SMALL_STATE(9743)] = 416648, - [SMALL_STATE(9744)] = 416671, - [SMALL_STATE(9745)] = 416694, - [SMALL_STATE(9746)] = 416717, - [SMALL_STATE(9747)] = 416740, - [SMALL_STATE(9748)] = 416761, - [SMALL_STATE(9749)] = 416784, - [SMALL_STATE(9750)] = 416807, - [SMALL_STATE(9751)] = 416824, - [SMALL_STATE(9752)] = 416847, - [SMALL_STATE(9753)] = 416870, - [SMALL_STATE(9754)] = 416893, - [SMALL_STATE(9755)] = 416916, - [SMALL_STATE(9756)] = 416933, - [SMALL_STATE(9757)] = 416956, - [SMALL_STATE(9758)] = 416977, - [SMALL_STATE(9759)] = 416998, - [SMALL_STATE(9760)] = 417021, - [SMALL_STATE(9761)] = 417044, - [SMALL_STATE(9762)] = 417067, - [SMALL_STATE(9763)] = 417086, - [SMALL_STATE(9764)] = 417109, - [SMALL_STATE(9765)] = 417132, - [SMALL_STATE(9766)] = 417155, - [SMALL_STATE(9767)] = 417178, - [SMALL_STATE(9768)] = 417201, - [SMALL_STATE(9769)] = 417222, - [SMALL_STATE(9770)] = 417245, - [SMALL_STATE(9771)] = 417268, - [SMALL_STATE(9772)] = 417291, - [SMALL_STATE(9773)] = 417314, - [SMALL_STATE(9774)] = 417337, - [SMALL_STATE(9775)] = 417358, - [SMALL_STATE(9776)] = 417375, - [SMALL_STATE(9777)] = 417396, - [SMALL_STATE(9778)] = 417419, - [SMALL_STATE(9779)] = 417442, - [SMALL_STATE(9780)] = 417463, - [SMALL_STATE(9781)] = 417486, - [SMALL_STATE(9782)] = 417505, - [SMALL_STATE(9783)] = 417526, - [SMALL_STATE(9784)] = 417549, - [SMALL_STATE(9785)] = 417566, - [SMALL_STATE(9786)] = 417589, - [SMALL_STATE(9787)] = 417612, - [SMALL_STATE(9788)] = 417635, - [SMALL_STATE(9789)] = 417656, - [SMALL_STATE(9790)] = 417679, - [SMALL_STATE(9791)] = 417700, - [SMALL_STATE(9792)] = 417721, - [SMALL_STATE(9793)] = 417742, - [SMALL_STATE(9794)] = 417763, - [SMALL_STATE(9795)] = 417786, - [SMALL_STATE(9796)] = 417809, - [SMALL_STATE(9797)] = 417832, - [SMALL_STATE(9798)] = 417853, - [SMALL_STATE(9799)] = 417876, - [SMALL_STATE(9800)] = 417897, - [SMALL_STATE(9801)] = 417920, - [SMALL_STATE(9802)] = 417943, - [SMALL_STATE(9803)] = 417966, - [SMALL_STATE(9804)] = 417985, - [SMALL_STATE(9805)] = 418008, - [SMALL_STATE(9806)] = 418031, - [SMALL_STATE(9807)] = 418054, - [SMALL_STATE(9808)] = 418077, - [SMALL_STATE(9809)] = 418100, - [SMALL_STATE(9810)] = 418123, - [SMALL_STATE(9811)] = 418144, - [SMALL_STATE(9812)] = 418167, - [SMALL_STATE(9813)] = 418190, - [SMALL_STATE(9814)] = 418213, - [SMALL_STATE(9815)] = 418236, - [SMALL_STATE(9816)] = 418259, - [SMALL_STATE(9817)] = 418282, - [SMALL_STATE(9818)] = 418301, - [SMALL_STATE(9819)] = 418324, - [SMALL_STATE(9820)] = 418347, - [SMALL_STATE(9821)] = 418370, - [SMALL_STATE(9822)] = 418393, - [SMALL_STATE(9823)] = 418414, - [SMALL_STATE(9824)] = 418437, - [SMALL_STATE(9825)] = 418460, - [SMALL_STATE(9826)] = 418483, - [SMALL_STATE(9827)] = 418506, - [SMALL_STATE(9828)] = 418529, - [SMALL_STATE(9829)] = 418552, - [SMALL_STATE(9830)] = 418571, - [SMALL_STATE(9831)] = 418592, - [SMALL_STATE(9832)] = 418615, - [SMALL_STATE(9833)] = 418636, - [SMALL_STATE(9834)] = 418659, - [SMALL_STATE(9835)] = 418680, - [SMALL_STATE(9836)] = 418701, - [SMALL_STATE(9837)] = 418722, - [SMALL_STATE(9838)] = 418745, - [SMALL_STATE(9839)] = 418766, - [SMALL_STATE(9840)] = 418785, - [SMALL_STATE(9841)] = 418808, - [SMALL_STATE(9842)] = 418831, - [SMALL_STATE(9843)] = 418854, - [SMALL_STATE(9844)] = 418877, - [SMALL_STATE(9845)] = 418900, - [SMALL_STATE(9846)] = 418921, - [SMALL_STATE(9847)] = 418942, - [SMALL_STATE(9848)] = 418959, - [SMALL_STATE(9849)] = 418982, - [SMALL_STATE(9850)] = 418999, - [SMALL_STATE(9851)] = 419020, - [SMALL_STATE(9852)] = 419043, - [SMALL_STATE(9853)] = 419066, - [SMALL_STATE(9854)] = 419089, - [SMALL_STATE(9855)] = 419112, - [SMALL_STATE(9856)] = 419135, - [SMALL_STATE(9857)] = 419158, - [SMALL_STATE(9858)] = 419181, - [SMALL_STATE(9859)] = 419202, - [SMALL_STATE(9860)] = 419219, - [SMALL_STATE(9861)] = 419242, - [SMALL_STATE(9862)] = 419265, - [SMALL_STATE(9863)] = 419282, - [SMALL_STATE(9864)] = 419299, - [SMALL_STATE(9865)] = 419316, - [SMALL_STATE(9866)] = 419335, - [SMALL_STATE(9867)] = 419358, - [SMALL_STATE(9868)] = 419379, - [SMALL_STATE(9869)] = 419402, - [SMALL_STATE(9870)] = 419423, - [SMALL_STATE(9871)] = 419446, - [SMALL_STATE(9872)] = 419469, - [SMALL_STATE(9873)] = 419488, - [SMALL_STATE(9874)] = 419509, - [SMALL_STATE(9875)] = 419532, - [SMALL_STATE(9876)] = 419555, - [SMALL_STATE(9877)] = 419578, - [SMALL_STATE(9878)] = 419599, - [SMALL_STATE(9879)] = 419622, - [SMALL_STATE(9880)] = 419645, - [SMALL_STATE(9881)] = 419666, - [SMALL_STATE(9882)] = 419689, - [SMALL_STATE(9883)] = 419712, - [SMALL_STATE(9884)] = 419735, - [SMALL_STATE(9885)] = 419758, - [SMALL_STATE(9886)] = 419781, - [SMALL_STATE(9887)] = 419798, - [SMALL_STATE(9888)] = 419819, - [SMALL_STATE(9889)] = 419842, - [SMALL_STATE(9890)] = 419865, - [SMALL_STATE(9891)] = 419888, - [SMALL_STATE(9892)] = 419911, - [SMALL_STATE(9893)] = 419934, - [SMALL_STATE(9894)] = 419957, - [SMALL_STATE(9895)] = 419980, - [SMALL_STATE(9896)] = 420003, - [SMALL_STATE(9897)] = 420022, - [SMALL_STATE(9898)] = 420045, - [SMALL_STATE(9899)] = 420068, - [SMALL_STATE(9900)] = 420091, - [SMALL_STATE(9901)] = 420114, - [SMALL_STATE(9902)] = 420137, - [SMALL_STATE(9903)] = 420160, - [SMALL_STATE(9904)] = 420181, - [SMALL_STATE(9905)] = 420204, - [SMALL_STATE(9906)] = 420227, - [SMALL_STATE(9907)] = 420250, - [SMALL_STATE(9908)] = 420273, - [SMALL_STATE(9909)] = 420296, - [SMALL_STATE(9910)] = 420319, - [SMALL_STATE(9911)] = 420340, - [SMALL_STATE(9912)] = 420363, - [SMALL_STATE(9913)] = 420386, - [SMALL_STATE(9914)] = 420409, - [SMALL_STATE(9915)] = 420432, - [SMALL_STATE(9916)] = 420455, - [SMALL_STATE(9917)] = 420478, - [SMALL_STATE(9918)] = 420501, - [SMALL_STATE(9919)] = 420524, - [SMALL_STATE(9920)] = 420547, - [SMALL_STATE(9921)] = 420570, - [SMALL_STATE(9922)] = 420589, - [SMALL_STATE(9923)] = 420610, - [SMALL_STATE(9924)] = 420633, - [SMALL_STATE(9925)] = 420656, - [SMALL_STATE(9926)] = 420675, - [SMALL_STATE(9927)] = 420696, - [SMALL_STATE(9928)] = 420717, - [SMALL_STATE(9929)] = 420738, - [SMALL_STATE(9930)] = 420761, - [SMALL_STATE(9931)] = 420784, - [SMALL_STATE(9932)] = 420807, - [SMALL_STATE(9933)] = 420828, - [SMALL_STATE(9934)] = 420851, - [SMALL_STATE(9935)] = 420872, - [SMALL_STATE(9936)] = 420889, - [SMALL_STATE(9937)] = 420906, - [SMALL_STATE(9938)] = 420929, - [SMALL_STATE(9939)] = 420952, - [SMALL_STATE(9940)] = 420973, - [SMALL_STATE(9941)] = 420994, - [SMALL_STATE(9942)] = 421015, - [SMALL_STATE(9943)] = 421036, - [SMALL_STATE(9944)] = 421057, - [SMALL_STATE(9945)] = 421080, - [SMALL_STATE(9946)] = 421097, - [SMALL_STATE(9947)] = 421116, - [SMALL_STATE(9948)] = 421139, - [SMALL_STATE(9949)] = 421160, - [SMALL_STATE(9950)] = 421181, - [SMALL_STATE(9951)] = 421204, - [SMALL_STATE(9952)] = 421227, - [SMALL_STATE(9953)] = 421250, - [SMALL_STATE(9954)] = 421271, - [SMALL_STATE(9955)] = 421294, - [SMALL_STATE(9956)] = 421315, - [SMALL_STATE(9957)] = 421338, - [SMALL_STATE(9958)] = 421361, - [SMALL_STATE(9959)] = 421382, - [SMALL_STATE(9960)] = 421401, - [SMALL_STATE(9961)] = 421424, - [SMALL_STATE(9962)] = 421441, - [SMALL_STATE(9963)] = 421464, - [SMALL_STATE(9964)] = 421487, - [SMALL_STATE(9965)] = 421504, - [SMALL_STATE(9966)] = 421527, - [SMALL_STATE(9967)] = 421550, - [SMALL_STATE(9968)] = 421573, - [SMALL_STATE(9969)] = 421594, - [SMALL_STATE(9970)] = 421617, - [SMALL_STATE(9971)] = 421640, - [SMALL_STATE(9972)] = 421663, - [SMALL_STATE(9973)] = 421686, - [SMALL_STATE(9974)] = 421709, - [SMALL_STATE(9975)] = 421732, - [SMALL_STATE(9976)] = 421755, - [SMALL_STATE(9977)] = 421778, - [SMALL_STATE(9978)] = 421801, - [SMALL_STATE(9979)] = 421818, - [SMALL_STATE(9980)] = 421841, - [SMALL_STATE(9981)] = 421864, - [SMALL_STATE(9982)] = 421887, - [SMALL_STATE(9983)] = 421910, - [SMALL_STATE(9984)] = 421933, - [SMALL_STATE(9985)] = 421956, - [SMALL_STATE(9986)] = 421973, - [SMALL_STATE(9987)] = 421996, - [SMALL_STATE(9988)] = 422019, - [SMALL_STATE(9989)] = 422042, - [SMALL_STATE(9990)] = 422065, - [SMALL_STATE(9991)] = 422088, - [SMALL_STATE(9992)] = 422111, - [SMALL_STATE(9993)] = 422134, - [SMALL_STATE(9994)] = 422157, - [SMALL_STATE(9995)] = 422180, - [SMALL_STATE(9996)] = 422203, - [SMALL_STATE(9997)] = 422226, - [SMALL_STATE(9998)] = 422249, - [SMALL_STATE(9999)] = 422272, - [SMALL_STATE(10000)] = 422295, - [SMALL_STATE(10001)] = 422318, - [SMALL_STATE(10002)] = 422341, - [SMALL_STATE(10003)] = 422364, - [SMALL_STATE(10004)] = 422387, - [SMALL_STATE(10005)] = 422410, - [SMALL_STATE(10006)] = 422433, - [SMALL_STATE(10007)] = 422456, - [SMALL_STATE(10008)] = 422479, - [SMALL_STATE(10009)] = 422502, - [SMALL_STATE(10010)] = 422525, - [SMALL_STATE(10011)] = 422548, - [SMALL_STATE(10012)] = 422571, - [SMALL_STATE(10013)] = 422594, - [SMALL_STATE(10014)] = 422617, - [SMALL_STATE(10015)] = 422640, - [SMALL_STATE(10016)] = 422663, - [SMALL_STATE(10017)] = 422682, - [SMALL_STATE(10018)] = 422705, - [SMALL_STATE(10019)] = 422726, - [SMALL_STATE(10020)] = 422745, - [SMALL_STATE(10021)] = 422766, - [SMALL_STATE(10022)] = 422786, - [SMALL_STATE(10023)] = 422806, - [SMALL_STATE(10024)] = 422826, - [SMALL_STATE(10025)] = 422846, - [SMALL_STATE(10026)] = 422866, - [SMALL_STATE(10027)] = 422886, - [SMALL_STATE(10028)] = 422906, - [SMALL_STATE(10029)] = 422926, - [SMALL_STATE(10030)] = 422946, - [SMALL_STATE(10031)] = 422962, - [SMALL_STATE(10032)] = 422982, - [SMALL_STATE(10033)] = 423002, - [SMALL_STATE(10034)] = 423022, - [SMALL_STATE(10035)] = 423042, - [SMALL_STATE(10036)] = 423062, - [SMALL_STATE(10037)] = 423082, - [SMALL_STATE(10038)] = 423102, - [SMALL_STATE(10039)] = 423122, - [SMALL_STATE(10040)] = 423142, - [SMALL_STATE(10041)] = 423162, - [SMALL_STATE(10042)] = 423182, - [SMALL_STATE(10043)] = 423202, - [SMALL_STATE(10044)] = 423222, - [SMALL_STATE(10045)] = 423242, - [SMALL_STATE(10046)] = 423258, - [SMALL_STATE(10047)] = 423278, - [SMALL_STATE(10048)] = 423298, - [SMALL_STATE(10049)] = 423318, - [SMALL_STATE(10050)] = 423334, - [SMALL_STATE(10051)] = 423354, - [SMALL_STATE(10052)] = 423370, - [SMALL_STATE(10053)] = 423390, - [SMALL_STATE(10054)] = 423410, - [SMALL_STATE(10055)] = 423430, - [SMALL_STATE(10056)] = 423450, - [SMALL_STATE(10057)] = 423470, - [SMALL_STATE(10058)] = 423490, - [SMALL_STATE(10059)] = 423510, - [SMALL_STATE(10060)] = 423530, - [SMALL_STATE(10061)] = 423550, - [SMALL_STATE(10062)] = 423570, - [SMALL_STATE(10063)] = 423590, - [SMALL_STATE(10064)] = 423610, - [SMALL_STATE(10065)] = 423628, - [SMALL_STATE(10066)] = 423644, - [SMALL_STATE(10067)] = 423660, - [SMALL_STATE(10068)] = 423680, - [SMALL_STATE(10069)] = 423700, - [SMALL_STATE(10070)] = 423716, - [SMALL_STATE(10071)] = 423732, - [SMALL_STATE(10072)] = 423752, - [SMALL_STATE(10073)] = 423768, - [SMALL_STATE(10074)] = 423784, - [SMALL_STATE(10075)] = 423804, - [SMALL_STATE(10076)] = 423822, - [SMALL_STATE(10077)] = 423842, - [SMALL_STATE(10078)] = 423858, - [SMALL_STATE(10079)] = 423874, - [SMALL_STATE(10080)] = 423890, - [SMALL_STATE(10081)] = 423906, - [SMALL_STATE(10082)] = 423926, - [SMALL_STATE(10083)] = 423946, - [SMALL_STATE(10084)] = 423966, - [SMALL_STATE(10085)] = 423984, - [SMALL_STATE(10086)] = 424000, - [SMALL_STATE(10087)] = 424016, - [SMALL_STATE(10088)] = 424036, - [SMALL_STATE(10089)] = 424056, - [SMALL_STATE(10090)] = 424076, - [SMALL_STATE(10091)] = 424096, - [SMALL_STATE(10092)] = 424116, - [SMALL_STATE(10093)] = 424132, - [SMALL_STATE(10094)] = 424148, - [SMALL_STATE(10095)] = 424164, - [SMALL_STATE(10096)] = 424180, - [SMALL_STATE(10097)] = 424196, - [SMALL_STATE(10098)] = 424216, - [SMALL_STATE(10099)] = 424232, - [SMALL_STATE(10100)] = 424248, - [SMALL_STATE(10101)] = 424264, - [SMALL_STATE(10102)] = 424280, - [SMALL_STATE(10103)] = 424296, - [SMALL_STATE(10104)] = 424312, - [SMALL_STATE(10105)] = 424328, - [SMALL_STATE(10106)] = 424348, - [SMALL_STATE(10107)] = 424368, - [SMALL_STATE(10108)] = 424384, - [SMALL_STATE(10109)] = 424404, - [SMALL_STATE(10110)] = 424424, - [SMALL_STATE(10111)] = 424444, - [SMALL_STATE(10112)] = 424460, - [SMALL_STATE(10113)] = 424476, - [SMALL_STATE(10114)] = 424496, - [SMALL_STATE(10115)] = 424512, - [SMALL_STATE(10116)] = 424532, - [SMALL_STATE(10117)] = 424552, - [SMALL_STATE(10118)] = 424572, - [SMALL_STATE(10119)] = 424588, - [SMALL_STATE(10120)] = 424608, - [SMALL_STATE(10121)] = 424628, - [SMALL_STATE(10122)] = 424648, - [SMALL_STATE(10123)] = 424668, - [SMALL_STATE(10124)] = 424688, - [SMALL_STATE(10125)] = 424704, - [SMALL_STATE(10126)] = 424722, - [SMALL_STATE(10127)] = 424742, - [SMALL_STATE(10128)] = 424762, - [SMALL_STATE(10129)] = 424782, - [SMALL_STATE(10130)] = 424802, - [SMALL_STATE(10131)] = 424818, - [SMALL_STATE(10132)] = 424838, - [SMALL_STATE(10133)] = 424858, - [SMALL_STATE(10134)] = 424878, - [SMALL_STATE(10135)] = 424898, - [SMALL_STATE(10136)] = 424914, - [SMALL_STATE(10137)] = 424934, - [SMALL_STATE(10138)] = 424954, - [SMALL_STATE(10139)] = 424970, - [SMALL_STATE(10140)] = 424986, - [SMALL_STATE(10141)] = 425002, - [SMALL_STATE(10142)] = 425018, - [SMALL_STATE(10143)] = 425034, - [SMALL_STATE(10144)] = 425050, - [SMALL_STATE(10145)] = 425066, - [SMALL_STATE(10146)] = 425082, - [SMALL_STATE(10147)] = 425098, - [SMALL_STATE(10148)] = 425114, - [SMALL_STATE(10149)] = 425130, - [SMALL_STATE(10150)] = 425146, - [SMALL_STATE(10151)] = 425162, - [SMALL_STATE(10152)] = 425178, - [SMALL_STATE(10153)] = 425194, - [SMALL_STATE(10154)] = 425210, - [SMALL_STATE(10155)] = 425226, - [SMALL_STATE(10156)] = 425246, - [SMALL_STATE(10157)] = 425262, - [SMALL_STATE(10158)] = 425278, - [SMALL_STATE(10159)] = 425294, - [SMALL_STATE(10160)] = 425310, - [SMALL_STATE(10161)] = 425330, - [SMALL_STATE(10162)] = 425348, - [SMALL_STATE(10163)] = 425368, - [SMALL_STATE(10164)] = 425388, - [SMALL_STATE(10165)] = 425404, - [SMALL_STATE(10166)] = 425420, - [SMALL_STATE(10167)] = 425436, - [SMALL_STATE(10168)] = 425452, - [SMALL_STATE(10169)] = 425468, - [SMALL_STATE(10170)] = 425484, - [SMALL_STATE(10171)] = 425500, - [SMALL_STATE(10172)] = 425516, - [SMALL_STATE(10173)] = 425532, - [SMALL_STATE(10174)] = 425548, - [SMALL_STATE(10175)] = 425568, - [SMALL_STATE(10176)] = 425584, - [SMALL_STATE(10177)] = 425602, - [SMALL_STATE(10178)] = 425620, - [SMALL_STATE(10179)] = 425640, - [SMALL_STATE(10180)] = 425660, - [SMALL_STATE(10181)] = 425680, - [SMALL_STATE(10182)] = 425698, - [SMALL_STATE(10183)] = 425718, - [SMALL_STATE(10184)] = 425738, - [SMALL_STATE(10185)] = 425758, - [SMALL_STATE(10186)] = 425778, - [SMALL_STATE(10187)] = 425794, - [SMALL_STATE(10188)] = 425814, - [SMALL_STATE(10189)] = 425834, - [SMALL_STATE(10190)] = 425854, - [SMALL_STATE(10191)] = 425874, - [SMALL_STATE(10192)] = 425894, - [SMALL_STATE(10193)] = 425910, - [SMALL_STATE(10194)] = 425930, - [SMALL_STATE(10195)] = 425950, - [SMALL_STATE(10196)] = 425970, - [SMALL_STATE(10197)] = 425990, - [SMALL_STATE(10198)] = 426010, - [SMALL_STATE(10199)] = 426026, - [SMALL_STATE(10200)] = 426042, - [SMALL_STATE(10201)] = 426062, - [SMALL_STATE(10202)] = 426078, - [SMALL_STATE(10203)] = 426094, - [SMALL_STATE(10204)] = 426110, - [SMALL_STATE(10205)] = 426126, - [SMALL_STATE(10206)] = 426142, - [SMALL_STATE(10207)] = 426158, - [SMALL_STATE(10208)] = 426174, - [SMALL_STATE(10209)] = 426190, - [SMALL_STATE(10210)] = 426206, - [SMALL_STATE(10211)] = 426222, - [SMALL_STATE(10212)] = 426238, - [SMALL_STATE(10213)] = 426254, - [SMALL_STATE(10214)] = 426270, - [SMALL_STATE(10215)] = 426286, - [SMALL_STATE(10216)] = 426302, - [SMALL_STATE(10217)] = 426318, - [SMALL_STATE(10218)] = 426334, - [SMALL_STATE(10219)] = 426350, - [SMALL_STATE(10220)] = 426370, - [SMALL_STATE(10221)] = 426386, - [SMALL_STATE(10222)] = 426402, - [SMALL_STATE(10223)] = 426418, - [SMALL_STATE(10224)] = 426434, - [SMALL_STATE(10225)] = 426454, - [SMALL_STATE(10226)] = 426470, - [SMALL_STATE(10227)] = 426486, - [SMALL_STATE(10228)] = 426504, - [SMALL_STATE(10229)] = 426524, - [SMALL_STATE(10230)] = 426544, - [SMALL_STATE(10231)] = 426564, - [SMALL_STATE(10232)] = 426584, - [SMALL_STATE(10233)] = 426604, - [SMALL_STATE(10234)] = 426624, - [SMALL_STATE(10235)] = 426644, - [SMALL_STATE(10236)] = 426664, - [SMALL_STATE(10237)] = 426684, - [SMALL_STATE(10238)] = 426704, - [SMALL_STATE(10239)] = 426720, - [SMALL_STATE(10240)] = 426736, - [SMALL_STATE(10241)] = 426752, - [SMALL_STATE(10242)] = 426768, - [SMALL_STATE(10243)] = 426784, - [SMALL_STATE(10244)] = 426800, - [SMALL_STATE(10245)] = 426816, - [SMALL_STATE(10246)] = 426832, - [SMALL_STATE(10247)] = 426848, - [SMALL_STATE(10248)] = 426864, - [SMALL_STATE(10249)] = 426880, - [SMALL_STATE(10250)] = 426896, - [SMALL_STATE(10251)] = 426916, - [SMALL_STATE(10252)] = 426936, - [SMALL_STATE(10253)] = 426952, - [SMALL_STATE(10254)] = 426968, - [SMALL_STATE(10255)] = 426988, - [SMALL_STATE(10256)] = 427008, - [SMALL_STATE(10257)] = 427028, - [SMALL_STATE(10258)] = 427044, - [SMALL_STATE(10259)] = 427064, - [SMALL_STATE(10260)] = 427084, - [SMALL_STATE(10261)] = 427104, - [SMALL_STATE(10262)] = 427124, - [SMALL_STATE(10263)] = 427144, - [SMALL_STATE(10264)] = 427160, - [SMALL_STATE(10265)] = 427180, - [SMALL_STATE(10266)] = 427200, - [SMALL_STATE(10267)] = 427220, - [SMALL_STATE(10268)] = 427236, - [SMALL_STATE(10269)] = 427256, - [SMALL_STATE(10270)] = 427276, - [SMALL_STATE(10271)] = 427296, - [SMALL_STATE(10272)] = 427316, - [SMALL_STATE(10273)] = 427336, - [SMALL_STATE(10274)] = 427356, - [SMALL_STATE(10275)] = 427376, - [SMALL_STATE(10276)] = 427396, - [SMALL_STATE(10277)] = 427416, - [SMALL_STATE(10278)] = 427436, - [SMALL_STATE(10279)] = 427456, - [SMALL_STATE(10280)] = 427476, - [SMALL_STATE(10281)] = 427496, - [SMALL_STATE(10282)] = 427512, - [SMALL_STATE(10283)] = 427532, - [SMALL_STATE(10284)] = 427552, - [SMALL_STATE(10285)] = 427568, - [SMALL_STATE(10286)] = 427588, - [SMALL_STATE(10287)] = 427608, - [SMALL_STATE(10288)] = 427628, - [SMALL_STATE(10289)] = 427648, - [SMALL_STATE(10290)] = 427668, - [SMALL_STATE(10291)] = 427688, - [SMALL_STATE(10292)] = 427708, - [SMALL_STATE(10293)] = 427728, - [SMALL_STATE(10294)] = 427748, - [SMALL_STATE(10295)] = 427768, - [SMALL_STATE(10296)] = 427788, - [SMALL_STATE(10297)] = 427808, - [SMALL_STATE(10298)] = 427824, - [SMALL_STATE(10299)] = 427844, - [SMALL_STATE(10300)] = 427860, - [SMALL_STATE(10301)] = 427880, - [SMALL_STATE(10302)] = 427900, - [SMALL_STATE(10303)] = 427916, - [SMALL_STATE(10304)] = 427936, - [SMALL_STATE(10305)] = 427956, - [SMALL_STATE(10306)] = 427976, - [SMALL_STATE(10307)] = 427992, - [SMALL_STATE(10308)] = 428012, - [SMALL_STATE(10309)] = 428032, - [SMALL_STATE(10310)] = 428052, - [SMALL_STATE(10311)] = 428072, - [SMALL_STATE(10312)] = 428092, - [SMALL_STATE(10313)] = 428112, - [SMALL_STATE(10314)] = 428132, - [SMALL_STATE(10315)] = 428152, - [SMALL_STATE(10316)] = 428170, - [SMALL_STATE(10317)] = 428190, - [SMALL_STATE(10318)] = 428210, - [SMALL_STATE(10319)] = 428230, - [SMALL_STATE(10320)] = 428250, - [SMALL_STATE(10321)] = 428270, - [SMALL_STATE(10322)] = 428290, - [SMALL_STATE(10323)] = 428306, - [SMALL_STATE(10324)] = 428326, - [SMALL_STATE(10325)] = 428346, - [SMALL_STATE(10326)] = 428366, - [SMALL_STATE(10327)] = 428386, - [SMALL_STATE(10328)] = 428406, - [SMALL_STATE(10329)] = 428426, - [SMALL_STATE(10330)] = 428446, - [SMALL_STATE(10331)] = 428462, - [SMALL_STATE(10332)] = 428478, - [SMALL_STATE(10333)] = 428496, - [SMALL_STATE(10334)] = 428516, - [SMALL_STATE(10335)] = 428534, - [SMALL_STATE(10336)] = 428552, - [SMALL_STATE(10337)] = 428572, - [SMALL_STATE(10338)] = 428588, - [SMALL_STATE(10339)] = 428608, - [SMALL_STATE(10340)] = 428626, - [SMALL_STATE(10341)] = 428646, - [SMALL_STATE(10342)] = 428666, - [SMALL_STATE(10343)] = 428686, - [SMALL_STATE(10344)] = 428706, - [SMALL_STATE(10345)] = 428726, - [SMALL_STATE(10346)] = 428746, - [SMALL_STATE(10347)] = 428766, - [SMALL_STATE(10348)] = 428786, - [SMALL_STATE(10349)] = 428806, - [SMALL_STATE(10350)] = 428826, - [SMALL_STATE(10351)] = 428846, - [SMALL_STATE(10352)] = 428866, - [SMALL_STATE(10353)] = 428886, - [SMALL_STATE(10354)] = 428906, - [SMALL_STATE(10355)] = 428926, - [SMALL_STATE(10356)] = 428946, - [SMALL_STATE(10357)] = 428966, - [SMALL_STATE(10358)] = 428984, - [SMALL_STATE(10359)] = 429000, - [SMALL_STATE(10360)] = 429020, - [SMALL_STATE(10361)] = 429040, - [SMALL_STATE(10362)] = 429060, - [SMALL_STATE(10363)] = 429076, - [SMALL_STATE(10364)] = 429096, - [SMALL_STATE(10365)] = 429116, - [SMALL_STATE(10366)] = 429136, - [SMALL_STATE(10367)] = 429156, - [SMALL_STATE(10368)] = 429176, - [SMALL_STATE(10369)] = 429196, - [SMALL_STATE(10370)] = 429216, - [SMALL_STATE(10371)] = 429236, - [SMALL_STATE(10372)] = 429256, - [SMALL_STATE(10373)] = 429276, - [SMALL_STATE(10374)] = 429296, - [SMALL_STATE(10375)] = 429316, - [SMALL_STATE(10376)] = 429336, - [SMALL_STATE(10377)] = 429356, - [SMALL_STATE(10378)] = 429376, - [SMALL_STATE(10379)] = 429396, - [SMALL_STATE(10380)] = 429416, - [SMALL_STATE(10381)] = 429436, - [SMALL_STATE(10382)] = 429456, - [SMALL_STATE(10383)] = 429476, - [SMALL_STATE(10384)] = 429496, - [SMALL_STATE(10385)] = 429516, - [SMALL_STATE(10386)] = 429536, - [SMALL_STATE(10387)] = 429556, - [SMALL_STATE(10388)] = 429576, - [SMALL_STATE(10389)] = 429592, - [SMALL_STATE(10390)] = 429610, - [SMALL_STATE(10391)] = 429626, - [SMALL_STATE(10392)] = 429642, - [SMALL_STATE(10393)] = 429658, - [SMALL_STATE(10394)] = 429674, - [SMALL_STATE(10395)] = 429694, - [SMALL_STATE(10396)] = 429714, - [SMALL_STATE(10397)] = 429734, - [SMALL_STATE(10398)] = 429754, - [SMALL_STATE(10399)] = 429774, - [SMALL_STATE(10400)] = 429794, - [SMALL_STATE(10401)] = 429810, - [SMALL_STATE(10402)] = 429830, - [SMALL_STATE(10403)] = 429850, - [SMALL_STATE(10404)] = 429870, - [SMALL_STATE(10405)] = 429890, - [SMALL_STATE(10406)] = 429910, - [SMALL_STATE(10407)] = 429930, - [SMALL_STATE(10408)] = 429950, - [SMALL_STATE(10409)] = 429970, - [SMALL_STATE(10410)] = 429990, - [SMALL_STATE(10411)] = 430010, - [SMALL_STATE(10412)] = 430030, - [SMALL_STATE(10413)] = 430046, - [SMALL_STATE(10414)] = 430066, - [SMALL_STATE(10415)] = 430082, - [SMALL_STATE(10416)] = 430102, - [SMALL_STATE(10417)] = 430122, - [SMALL_STATE(10418)] = 430142, - [SMALL_STATE(10419)] = 430162, - [SMALL_STATE(10420)] = 430182, - [SMALL_STATE(10421)] = 430202, - [SMALL_STATE(10422)] = 430222, - [SMALL_STATE(10423)] = 430242, - [SMALL_STATE(10424)] = 430262, - [SMALL_STATE(10425)] = 430282, - [SMALL_STATE(10426)] = 430302, - [SMALL_STATE(10427)] = 430322, - [SMALL_STATE(10428)] = 430342, - [SMALL_STATE(10429)] = 430362, - [SMALL_STATE(10430)] = 430382, - [SMALL_STATE(10431)] = 430400, - [SMALL_STATE(10432)] = 430420, - [SMALL_STATE(10433)] = 430440, - [SMALL_STATE(10434)] = 430460, - [SMALL_STATE(10435)] = 430480, - [SMALL_STATE(10436)] = 430500, - [SMALL_STATE(10437)] = 430520, - [SMALL_STATE(10438)] = 430540, - [SMALL_STATE(10439)] = 430560, - [SMALL_STATE(10440)] = 430578, - [SMALL_STATE(10441)] = 430598, - [SMALL_STATE(10442)] = 430618, - [SMALL_STATE(10443)] = 430638, - [SMALL_STATE(10444)] = 430658, - [SMALL_STATE(10445)] = 430678, - [SMALL_STATE(10446)] = 430698, - [SMALL_STATE(10447)] = 430718, - [SMALL_STATE(10448)] = 430738, - [SMALL_STATE(10449)] = 430754, - [SMALL_STATE(10450)] = 430774, - [SMALL_STATE(10451)] = 430794, - [SMALL_STATE(10452)] = 430810, - [SMALL_STATE(10453)] = 430830, - [SMALL_STATE(10454)] = 430850, - [SMALL_STATE(10455)] = 430870, - [SMALL_STATE(10456)] = 430890, - [SMALL_STATE(10457)] = 430910, - [SMALL_STATE(10458)] = 430930, - [SMALL_STATE(10459)] = 430950, - [SMALL_STATE(10460)] = 430970, - [SMALL_STATE(10461)] = 430990, - [SMALL_STATE(10462)] = 431010, - [SMALL_STATE(10463)] = 431030, - [SMALL_STATE(10464)] = 431050, - [SMALL_STATE(10465)] = 431068, - [SMALL_STATE(10466)] = 431088, - [SMALL_STATE(10467)] = 431108, - [SMALL_STATE(10468)] = 431128, - [SMALL_STATE(10469)] = 431148, - [SMALL_STATE(10470)] = 431168, - [SMALL_STATE(10471)] = 431188, - [SMALL_STATE(10472)] = 431204, - [SMALL_STATE(10473)] = 431220, - [SMALL_STATE(10474)] = 431240, - [SMALL_STATE(10475)] = 431260, - [SMALL_STATE(10476)] = 431280, - [SMALL_STATE(10477)] = 431296, - [SMALL_STATE(10478)] = 431316, - [SMALL_STATE(10479)] = 431332, - [SMALL_STATE(10480)] = 431348, - [SMALL_STATE(10481)] = 431368, - [SMALL_STATE(10482)] = 431388, - [SMALL_STATE(10483)] = 431408, - [SMALL_STATE(10484)] = 431428, - [SMALL_STATE(10485)] = 431448, - [SMALL_STATE(10486)] = 431468, - [SMALL_STATE(10487)] = 431488, - [SMALL_STATE(10488)] = 431504, - [SMALL_STATE(10489)] = 431524, - [SMALL_STATE(10490)] = 431544, - [SMALL_STATE(10491)] = 431564, - [SMALL_STATE(10492)] = 431584, - [SMALL_STATE(10493)] = 431604, - [SMALL_STATE(10494)] = 431624, - [SMALL_STATE(10495)] = 431644, - [SMALL_STATE(10496)] = 431664, - [SMALL_STATE(10497)] = 431680, - [SMALL_STATE(10498)] = 431700, - [SMALL_STATE(10499)] = 431720, - [SMALL_STATE(10500)] = 431740, - [SMALL_STATE(10501)] = 431756, - [SMALL_STATE(10502)] = 431774, - [SMALL_STATE(10503)] = 431792, - [SMALL_STATE(10504)] = 431812, - [SMALL_STATE(10505)] = 431832, - [SMALL_STATE(10506)] = 431852, - [SMALL_STATE(10507)] = 431872, - [SMALL_STATE(10508)] = 431888, - [SMALL_STATE(10509)] = 431906, - [SMALL_STATE(10510)] = 431926, - [SMALL_STATE(10511)] = 431946, - [SMALL_STATE(10512)] = 431966, - [SMALL_STATE(10513)] = 431986, - [SMALL_STATE(10514)] = 432006, - [SMALL_STATE(10515)] = 432026, - [SMALL_STATE(10516)] = 432046, - [SMALL_STATE(10517)] = 432066, - [SMALL_STATE(10518)] = 432082, - [SMALL_STATE(10519)] = 432102, - [SMALL_STATE(10520)] = 432122, - [SMALL_STATE(10521)] = 432142, - [SMALL_STATE(10522)] = 432162, - [SMALL_STATE(10523)] = 432182, - [SMALL_STATE(10524)] = 432202, - [SMALL_STATE(10525)] = 432222, - [SMALL_STATE(10526)] = 432242, - [SMALL_STATE(10527)] = 432262, - [SMALL_STATE(10528)] = 432282, - [SMALL_STATE(10529)] = 432302, - [SMALL_STATE(10530)] = 432318, - [SMALL_STATE(10531)] = 432338, - [SMALL_STATE(10532)] = 432354, - [SMALL_STATE(10533)] = 432374, - [SMALL_STATE(10534)] = 432394, - [SMALL_STATE(10535)] = 432414, - [SMALL_STATE(10536)] = 432434, - [SMALL_STATE(10537)] = 432454, - [SMALL_STATE(10538)] = 432474, - [SMALL_STATE(10539)] = 432494, - [SMALL_STATE(10540)] = 432514, - [SMALL_STATE(10541)] = 432534, - [SMALL_STATE(10542)] = 432554, - [SMALL_STATE(10543)] = 432574, - [SMALL_STATE(10544)] = 432594, - [SMALL_STATE(10545)] = 432614, - [SMALL_STATE(10546)] = 432634, - [SMALL_STATE(10547)] = 432654, - [SMALL_STATE(10548)] = 432672, - [SMALL_STATE(10549)] = 432692, - [SMALL_STATE(10550)] = 432712, - [SMALL_STATE(10551)] = 432732, - [SMALL_STATE(10552)] = 432752, - [SMALL_STATE(10553)] = 432772, - [SMALL_STATE(10554)] = 432788, - [SMALL_STATE(10555)] = 432808, - [SMALL_STATE(10556)] = 432828, - [SMALL_STATE(10557)] = 432848, - [SMALL_STATE(10558)] = 432868, - [SMALL_STATE(10559)] = 432888, - [SMALL_STATE(10560)] = 432908, - [SMALL_STATE(10561)] = 432928, - [SMALL_STATE(10562)] = 432948, - [SMALL_STATE(10563)] = 432968, - [SMALL_STATE(10564)] = 432988, - [SMALL_STATE(10565)] = 433008, - [SMALL_STATE(10566)] = 433028, - [SMALL_STATE(10567)] = 433048, - [SMALL_STATE(10568)] = 433068, - [SMALL_STATE(10569)] = 433084, - [SMALL_STATE(10570)] = 433100, - [SMALL_STATE(10571)] = 433120, - [SMALL_STATE(10572)] = 433140, - [SMALL_STATE(10573)] = 433160, - [SMALL_STATE(10574)] = 433180, - [SMALL_STATE(10575)] = 433196, - [SMALL_STATE(10576)] = 433216, - [SMALL_STATE(10577)] = 433236, - [SMALL_STATE(10578)] = 433256, - [SMALL_STATE(10579)] = 433276, - [SMALL_STATE(10580)] = 433296, - [SMALL_STATE(10581)] = 433316, - [SMALL_STATE(10582)] = 433336, - [SMALL_STATE(10583)] = 433356, - [SMALL_STATE(10584)] = 433376, - [SMALL_STATE(10585)] = 433396, - [SMALL_STATE(10586)] = 433416, - [SMALL_STATE(10587)] = 433436, - [SMALL_STATE(10588)] = 433456, - [SMALL_STATE(10589)] = 433476, - [SMALL_STATE(10590)] = 433496, - [SMALL_STATE(10591)] = 433516, - [SMALL_STATE(10592)] = 433536, - [SMALL_STATE(10593)] = 433554, - [SMALL_STATE(10594)] = 433574, - [SMALL_STATE(10595)] = 433594, - [SMALL_STATE(10596)] = 433610, - [SMALL_STATE(10597)] = 433630, - [SMALL_STATE(10598)] = 433650, - [SMALL_STATE(10599)] = 433670, - [SMALL_STATE(10600)] = 433690, - [SMALL_STATE(10601)] = 433710, - [SMALL_STATE(10602)] = 433730, - [SMALL_STATE(10603)] = 433750, - [SMALL_STATE(10604)] = 433770, - [SMALL_STATE(10605)] = 433786, - [SMALL_STATE(10606)] = 433806, - [SMALL_STATE(10607)] = 433826, - [SMALL_STATE(10608)] = 433842, - [SMALL_STATE(10609)] = 433862, - [SMALL_STATE(10610)] = 433882, - [SMALL_STATE(10611)] = 433902, - [SMALL_STATE(10612)] = 433922, - [SMALL_STATE(10613)] = 433942, - [SMALL_STATE(10614)] = 433962, - [SMALL_STATE(10615)] = 433982, - [SMALL_STATE(10616)] = 434002, - [SMALL_STATE(10617)] = 434022, - [SMALL_STATE(10618)] = 434042, - [SMALL_STATE(10619)] = 434062, - [SMALL_STATE(10620)] = 434082, - [SMALL_STATE(10621)] = 434100, - [SMALL_STATE(10622)] = 434116, - [SMALL_STATE(10623)] = 434136, - [SMALL_STATE(10624)] = 434156, - [SMALL_STATE(10625)] = 434176, - [SMALL_STATE(10626)] = 434196, - [SMALL_STATE(10627)] = 434216, - [SMALL_STATE(10628)] = 434236, - [SMALL_STATE(10629)] = 434256, - [SMALL_STATE(10630)] = 434276, - [SMALL_STATE(10631)] = 434294, - [SMALL_STATE(10632)] = 434314, - [SMALL_STATE(10633)] = 434330, - [SMALL_STATE(10634)] = 434350, - [SMALL_STATE(10635)] = 434370, - [SMALL_STATE(10636)] = 434390, - [SMALL_STATE(10637)] = 434410, - [SMALL_STATE(10638)] = 434430, - [SMALL_STATE(10639)] = 434450, - [SMALL_STATE(10640)] = 434470, - [SMALL_STATE(10641)] = 434490, - [SMALL_STATE(10642)] = 434510, - [SMALL_STATE(10643)] = 434530, - [SMALL_STATE(10644)] = 434550, - [SMALL_STATE(10645)] = 434570, - [SMALL_STATE(10646)] = 434586, - [SMALL_STATE(10647)] = 434606, - [SMALL_STATE(10648)] = 434626, - [SMALL_STATE(10649)] = 434646, - [SMALL_STATE(10650)] = 434666, - [SMALL_STATE(10651)] = 434686, - [SMALL_STATE(10652)] = 434706, - [SMALL_STATE(10653)] = 434726, - [SMALL_STATE(10654)] = 434746, - [SMALL_STATE(10655)] = 434766, - [SMALL_STATE(10656)] = 434786, - [SMALL_STATE(10657)] = 434806, - [SMALL_STATE(10658)] = 434826, - [SMALL_STATE(10659)] = 434846, - [SMALL_STATE(10660)] = 434866, - [SMALL_STATE(10661)] = 434886, - [SMALL_STATE(10662)] = 434906, - [SMALL_STATE(10663)] = 434926, - [SMALL_STATE(10664)] = 434946, - [SMALL_STATE(10665)] = 434966, - [SMALL_STATE(10666)] = 434986, - [SMALL_STATE(10667)] = 435006, - [SMALL_STATE(10668)] = 435024, - [SMALL_STATE(10669)] = 435044, - [SMALL_STATE(10670)] = 435064, - [SMALL_STATE(10671)] = 435084, - [SMALL_STATE(10672)] = 435104, - [SMALL_STATE(10673)] = 435124, - [SMALL_STATE(10674)] = 435144, - [SMALL_STATE(10675)] = 435160, - [SMALL_STATE(10676)] = 435180, - [SMALL_STATE(10677)] = 435200, - [SMALL_STATE(10678)] = 435220, - [SMALL_STATE(10679)] = 435240, - [SMALL_STATE(10680)] = 435260, - [SMALL_STATE(10681)] = 435280, - [SMALL_STATE(10682)] = 435300, - [SMALL_STATE(10683)] = 435320, - [SMALL_STATE(10684)] = 435340, - [SMALL_STATE(10685)] = 435360, - [SMALL_STATE(10686)] = 435380, - [SMALL_STATE(10687)] = 435400, - [SMALL_STATE(10688)] = 435420, - [SMALL_STATE(10689)] = 435440, - [SMALL_STATE(10690)] = 435460, - [SMALL_STATE(10691)] = 435480, - [SMALL_STATE(10692)] = 435500, - [SMALL_STATE(10693)] = 435520, - [SMALL_STATE(10694)] = 435536, - [SMALL_STATE(10695)] = 435556, - [SMALL_STATE(10696)] = 435576, - [SMALL_STATE(10697)] = 435594, - [SMALL_STATE(10698)] = 435614, - [SMALL_STATE(10699)] = 435634, - [SMALL_STATE(10700)] = 435654, - [SMALL_STATE(10701)] = 435674, - [SMALL_STATE(10702)] = 435694, - [SMALL_STATE(10703)] = 435711, - [SMALL_STATE(10704)] = 435728, - [SMALL_STATE(10705)] = 435745, - [SMALL_STATE(10706)] = 435762, - [SMALL_STATE(10707)] = 435779, - [SMALL_STATE(10708)] = 435796, - [SMALL_STATE(10709)] = 435811, - [SMALL_STATE(10710)] = 435828, - [SMALL_STATE(10711)] = 435845, - [SMALL_STATE(10712)] = 435862, - [SMALL_STATE(10713)] = 435879, - [SMALL_STATE(10714)] = 435896, - [SMALL_STATE(10715)] = 435913, - [SMALL_STATE(10716)] = 435928, - [SMALL_STATE(10717)] = 435945, - [SMALL_STATE(10718)] = 435962, - [SMALL_STATE(10719)] = 435979, - [SMALL_STATE(10720)] = 435994, - [SMALL_STATE(10721)] = 436011, - [SMALL_STATE(10722)] = 436026, - [SMALL_STATE(10723)] = 436041, - [SMALL_STATE(10724)] = 436058, - [SMALL_STATE(10725)] = 436075, - [SMALL_STATE(10726)] = 436092, - [SMALL_STATE(10727)] = 436109, - [SMALL_STATE(10728)] = 436126, - [SMALL_STATE(10729)] = 436143, - [SMALL_STATE(10730)] = 436160, - [SMALL_STATE(10731)] = 436177, - [SMALL_STATE(10732)] = 436194, - [SMALL_STATE(10733)] = 436211, - [SMALL_STATE(10734)] = 436228, - [SMALL_STATE(10735)] = 436245, - [SMALL_STATE(10736)] = 436262, - [SMALL_STATE(10737)] = 436279, - [SMALL_STATE(10738)] = 436296, - [SMALL_STATE(10739)] = 436313, - [SMALL_STATE(10740)] = 436330, - [SMALL_STATE(10741)] = 436347, - [SMALL_STATE(10742)] = 436364, - [SMALL_STATE(10743)] = 436379, - [SMALL_STATE(10744)] = 436394, - [SMALL_STATE(10745)] = 436411, - [SMALL_STATE(10746)] = 436428, - [SMALL_STATE(10747)] = 436445, - [SMALL_STATE(10748)] = 436462, - [SMALL_STATE(10749)] = 436479, - [SMALL_STATE(10750)] = 436496, - [SMALL_STATE(10751)] = 436513, - [SMALL_STATE(10752)] = 436530, - [SMALL_STATE(10753)] = 436547, - [SMALL_STATE(10754)] = 436564, - [SMALL_STATE(10755)] = 436581, - [SMALL_STATE(10756)] = 436598, - [SMALL_STATE(10757)] = 436615, - [SMALL_STATE(10758)] = 436632, - [SMALL_STATE(10759)] = 436649, - [SMALL_STATE(10760)] = 436666, - [SMALL_STATE(10761)] = 436683, - [SMALL_STATE(10762)] = 436700, - [SMALL_STATE(10763)] = 436717, - [SMALL_STATE(10764)] = 436734, - [SMALL_STATE(10765)] = 436751, - [SMALL_STATE(10766)] = 436768, - [SMALL_STATE(10767)] = 436785, - [SMALL_STATE(10768)] = 436802, - [SMALL_STATE(10769)] = 436819, - [SMALL_STATE(10770)] = 436836, - [SMALL_STATE(10771)] = 436853, - [SMALL_STATE(10772)] = 436870, - [SMALL_STATE(10773)] = 436887, - [SMALL_STATE(10774)] = 436904, - [SMALL_STATE(10775)] = 436921, - [SMALL_STATE(10776)] = 436936, - [SMALL_STATE(10777)] = 436953, - [SMALL_STATE(10778)] = 436970, - [SMALL_STATE(10779)] = 436987, - [SMALL_STATE(10780)] = 437004, - [SMALL_STATE(10781)] = 437019, - [SMALL_STATE(10782)] = 437034, - [SMALL_STATE(10783)] = 437051, - [SMALL_STATE(10784)] = 437066, - [SMALL_STATE(10785)] = 437083, - [SMALL_STATE(10786)] = 437100, - [SMALL_STATE(10787)] = 437117, - [SMALL_STATE(10788)] = 437134, - [SMALL_STATE(10789)] = 437151, - [SMALL_STATE(10790)] = 437168, - [SMALL_STATE(10791)] = 437185, - [SMALL_STATE(10792)] = 437202, - [SMALL_STATE(10793)] = 437219, - [SMALL_STATE(10794)] = 437236, - [SMALL_STATE(10795)] = 437251, - [SMALL_STATE(10796)] = 437266, - [SMALL_STATE(10797)] = 437283, - [SMALL_STATE(10798)] = 437300, - [SMALL_STATE(10799)] = 437317, - [SMALL_STATE(10800)] = 437332, - [SMALL_STATE(10801)] = 437347, - [SMALL_STATE(10802)] = 437364, - [SMALL_STATE(10803)] = 437381, - [SMALL_STATE(10804)] = 437398, - [SMALL_STATE(10805)] = 437415, - [SMALL_STATE(10806)] = 437430, - [SMALL_STATE(10807)] = 437447, - [SMALL_STATE(10808)] = 437464, - [SMALL_STATE(10809)] = 437481, - [SMALL_STATE(10810)] = 437498, - [SMALL_STATE(10811)] = 437515, - [SMALL_STATE(10812)] = 437532, - [SMALL_STATE(10813)] = 437549, - [SMALL_STATE(10814)] = 437566, - [SMALL_STATE(10815)] = 437583, - [SMALL_STATE(10816)] = 437600, - [SMALL_STATE(10817)] = 437617, - [SMALL_STATE(10818)] = 437632, - [SMALL_STATE(10819)] = 437647, - [SMALL_STATE(10820)] = 437662, - [SMALL_STATE(10821)] = 437679, - [SMALL_STATE(10822)] = 437696, - [SMALL_STATE(10823)] = 437713, - [SMALL_STATE(10824)] = 437730, - [SMALL_STATE(10825)] = 437747, - [SMALL_STATE(10826)] = 437764, - [SMALL_STATE(10827)] = 437781, - [SMALL_STATE(10828)] = 437798, - [SMALL_STATE(10829)] = 437815, - [SMALL_STATE(10830)] = 437832, - [SMALL_STATE(10831)] = 437847, - [SMALL_STATE(10832)] = 437862, - [SMALL_STATE(10833)] = 437877, - [SMALL_STATE(10834)] = 437894, - [SMALL_STATE(10835)] = 437909, - [SMALL_STATE(10836)] = 437924, - [SMALL_STATE(10837)] = 437941, - [SMALL_STATE(10838)] = 437958, - [SMALL_STATE(10839)] = 437975, - [SMALL_STATE(10840)] = 437992, - [SMALL_STATE(10841)] = 438009, - [SMALL_STATE(10842)] = 438026, - [SMALL_STATE(10843)] = 438043, - [SMALL_STATE(10844)] = 438060, - [SMALL_STATE(10845)] = 438077, - [SMALL_STATE(10846)] = 438094, - [SMALL_STATE(10847)] = 438111, - [SMALL_STATE(10848)] = 438126, - [SMALL_STATE(10849)] = 438143, - [SMALL_STATE(10850)] = 438160, - [SMALL_STATE(10851)] = 438177, - [SMALL_STATE(10852)] = 438192, - [SMALL_STATE(10853)] = 438209, - [SMALL_STATE(10854)] = 438226, - [SMALL_STATE(10855)] = 438243, - [SMALL_STATE(10856)] = 438258, - [SMALL_STATE(10857)] = 438273, - [SMALL_STATE(10858)] = 438290, - [SMALL_STATE(10859)] = 438305, - [SMALL_STATE(10860)] = 438320, - [SMALL_STATE(10861)] = 438337, - [SMALL_STATE(10862)] = 438354, - [SMALL_STATE(10863)] = 438371, - [SMALL_STATE(10864)] = 438388, - [SMALL_STATE(10865)] = 438403, - [SMALL_STATE(10866)] = 438420, - [SMALL_STATE(10867)] = 438437, - [SMALL_STATE(10868)] = 438454, - [SMALL_STATE(10869)] = 438471, - [SMALL_STATE(10870)] = 438488, - [SMALL_STATE(10871)] = 438503, - [SMALL_STATE(10872)] = 438520, - [SMALL_STATE(10873)] = 438537, - [SMALL_STATE(10874)] = 438554, - [SMALL_STATE(10875)] = 438571, - [SMALL_STATE(10876)] = 438588, - [SMALL_STATE(10877)] = 438605, - [SMALL_STATE(10878)] = 438620, - [SMALL_STATE(10879)] = 438637, - [SMALL_STATE(10880)] = 438654, - [SMALL_STATE(10881)] = 438671, - [SMALL_STATE(10882)] = 438686, - [SMALL_STATE(10883)] = 438701, - [SMALL_STATE(10884)] = 438716, - [SMALL_STATE(10885)] = 438733, - [SMALL_STATE(10886)] = 438750, - [SMALL_STATE(10887)] = 438767, - [SMALL_STATE(10888)] = 438784, - [SMALL_STATE(10889)] = 438801, - [SMALL_STATE(10890)] = 438818, - [SMALL_STATE(10891)] = 438835, - [SMALL_STATE(10892)] = 438849, - [SMALL_STATE(10893)] = 438863, - [SMALL_STATE(10894)] = 438877, - [SMALL_STATE(10895)] = 438891, - [SMALL_STATE(10896)] = 438905, - [SMALL_STATE(10897)] = 438919, - [SMALL_STATE(10898)] = 438933, - [SMALL_STATE(10899)] = 438947, - [SMALL_STATE(10900)] = 438961, - [SMALL_STATE(10901)] = 438977, - [SMALL_STATE(10902)] = 438991, - [SMALL_STATE(10903)] = 439005, - [SMALL_STATE(10904)] = 439019, - [SMALL_STATE(10905)] = 439033, - [SMALL_STATE(10906)] = 439047, - [SMALL_STATE(10907)] = 439061, - [SMALL_STATE(10908)] = 439075, - [SMALL_STATE(10909)] = 439089, - [SMALL_STATE(10910)] = 439103, - [SMALL_STATE(10911)] = 439117, - [SMALL_STATE(10912)] = 439131, - [SMALL_STATE(10913)] = 439145, - [SMALL_STATE(10914)] = 439159, - [SMALL_STATE(10915)] = 439173, - [SMALL_STATE(10916)] = 439187, - [SMALL_STATE(10917)] = 439201, - [SMALL_STATE(10918)] = 439215, - [SMALL_STATE(10919)] = 439229, - [SMALL_STATE(10920)] = 439243, - [SMALL_STATE(10921)] = 439257, - [SMALL_STATE(10922)] = 439271, - [SMALL_STATE(10923)] = 439285, - [SMALL_STATE(10924)] = 439299, - [SMALL_STATE(10925)] = 439313, - [SMALL_STATE(10926)] = 439327, - [SMALL_STATE(10927)] = 439341, - [SMALL_STATE(10928)] = 439355, - [SMALL_STATE(10929)] = 439369, - [SMALL_STATE(10930)] = 439383, - [SMALL_STATE(10931)] = 439397, - [SMALL_STATE(10932)] = 439411, - [SMALL_STATE(10933)] = 439425, - [SMALL_STATE(10934)] = 439439, - [SMALL_STATE(10935)] = 439453, - [SMALL_STATE(10936)] = 439467, - [SMALL_STATE(10937)] = 439481, - [SMALL_STATE(10938)] = 439495, - [SMALL_STATE(10939)] = 439509, - [SMALL_STATE(10940)] = 439523, - [SMALL_STATE(10941)] = 439537, - [SMALL_STATE(10942)] = 439551, - [SMALL_STATE(10943)] = 439565, - [SMALL_STATE(10944)] = 439579, - [SMALL_STATE(10945)] = 439593, - [SMALL_STATE(10946)] = 439607, - [SMALL_STATE(10947)] = 439621, - [SMALL_STATE(10948)] = 439635, - [SMALL_STATE(10949)] = 439649, - [SMALL_STATE(10950)] = 439663, - [SMALL_STATE(10951)] = 439677, - [SMALL_STATE(10952)] = 439691, - [SMALL_STATE(10953)] = 439705, - [SMALL_STATE(10954)] = 439719, - [SMALL_STATE(10955)] = 439733, - [SMALL_STATE(10956)] = 439747, - [SMALL_STATE(10957)] = 439761, - [SMALL_STATE(10958)] = 439775, - [SMALL_STATE(10959)] = 439789, - [SMALL_STATE(10960)] = 439803, - [SMALL_STATE(10961)] = 439817, - [SMALL_STATE(10962)] = 439831, - [SMALL_STATE(10963)] = 439845, - [SMALL_STATE(10964)] = 439859, - [SMALL_STATE(10965)] = 439873, - [SMALL_STATE(10966)] = 439887, - [SMALL_STATE(10967)] = 439901, - [SMALL_STATE(10968)] = 439915, - [SMALL_STATE(10969)] = 439929, - [SMALL_STATE(10970)] = 439943, - [SMALL_STATE(10971)] = 439957, - [SMALL_STATE(10972)] = 439971, - [SMALL_STATE(10973)] = 439985, - [SMALL_STATE(10974)] = 439999, - [SMALL_STATE(10975)] = 440013, - [SMALL_STATE(10976)] = 440027, - [SMALL_STATE(10977)] = 440041, - [SMALL_STATE(10978)] = 440055, - [SMALL_STATE(10979)] = 440069, - [SMALL_STATE(10980)] = 440083, - [SMALL_STATE(10981)] = 440097, - [SMALL_STATE(10982)] = 440111, - [SMALL_STATE(10983)] = 440125, - [SMALL_STATE(10984)] = 440139, - [SMALL_STATE(10985)] = 440153, - [SMALL_STATE(10986)] = 440167, - [SMALL_STATE(10987)] = 440181, - [SMALL_STATE(10988)] = 440195, - [SMALL_STATE(10989)] = 440209, - [SMALL_STATE(10990)] = 440223, - [SMALL_STATE(10991)] = 440237, - [SMALL_STATE(10992)] = 440251, - [SMALL_STATE(10993)] = 440265, - [SMALL_STATE(10994)] = 440279, - [SMALL_STATE(10995)] = 440293, - [SMALL_STATE(10996)] = 440307, - [SMALL_STATE(10997)] = 440321, - [SMALL_STATE(10998)] = 440335, - [SMALL_STATE(10999)] = 440349, - [SMALL_STATE(11000)] = 440363, - [SMALL_STATE(11001)] = 440377, - [SMALL_STATE(11002)] = 440391, - [SMALL_STATE(11003)] = 440405, - [SMALL_STATE(11004)] = 440419, - [SMALL_STATE(11005)] = 440433, - [SMALL_STATE(11006)] = 440449, - [SMALL_STATE(11007)] = 440463, - [SMALL_STATE(11008)] = 440477, - [SMALL_STATE(11009)] = 440491, - [SMALL_STATE(11010)] = 440505, - [SMALL_STATE(11011)] = 440519, - [SMALL_STATE(11012)] = 440533, - [SMALL_STATE(11013)] = 440547, - [SMALL_STATE(11014)] = 440561, - [SMALL_STATE(11015)] = 440575, - [SMALL_STATE(11016)] = 440589, - [SMALL_STATE(11017)] = 440603, - [SMALL_STATE(11018)] = 440617, - [SMALL_STATE(11019)] = 440631, - [SMALL_STATE(11020)] = 440645, - [SMALL_STATE(11021)] = 440659, - [SMALL_STATE(11022)] = 440673, - [SMALL_STATE(11023)] = 440687, - [SMALL_STATE(11024)] = 440701, - [SMALL_STATE(11025)] = 440715, - [SMALL_STATE(11026)] = 440729, - [SMALL_STATE(11027)] = 440743, - [SMALL_STATE(11028)] = 440757, - [SMALL_STATE(11029)] = 440771, - [SMALL_STATE(11030)] = 440785, - [SMALL_STATE(11031)] = 440799, - [SMALL_STATE(11032)] = 440813, - [SMALL_STATE(11033)] = 440827, - [SMALL_STATE(11034)] = 440841, - [SMALL_STATE(11035)] = 440855, - [SMALL_STATE(11036)] = 440869, - [SMALL_STATE(11037)] = 440883, - [SMALL_STATE(11038)] = 440897, - [SMALL_STATE(11039)] = 440911, - [SMALL_STATE(11040)] = 440925, - [SMALL_STATE(11041)] = 440939, - [SMALL_STATE(11042)] = 440953, - [SMALL_STATE(11043)] = 440967, - [SMALL_STATE(11044)] = 440981, - [SMALL_STATE(11045)] = 440995, - [SMALL_STATE(11046)] = 441009, - [SMALL_STATE(11047)] = 441023, - [SMALL_STATE(11048)] = 441039, - [SMALL_STATE(11049)] = 441053, - [SMALL_STATE(11050)] = 441067, - [SMALL_STATE(11051)] = 441081, - [SMALL_STATE(11052)] = 441095, - [SMALL_STATE(11053)] = 441109, - [SMALL_STATE(11054)] = 441123, - [SMALL_STATE(11055)] = 441137, - [SMALL_STATE(11056)] = 441151, - [SMALL_STATE(11057)] = 441165, - [SMALL_STATE(11058)] = 441179, - [SMALL_STATE(11059)] = 441193, - [SMALL_STATE(11060)] = 441207, - [SMALL_STATE(11061)] = 441221, - [SMALL_STATE(11062)] = 441235, - [SMALL_STATE(11063)] = 441249, - [SMALL_STATE(11064)] = 441263, - [SMALL_STATE(11065)] = 441277, - [SMALL_STATE(11066)] = 441291, - [SMALL_STATE(11067)] = 441305, - [SMALL_STATE(11068)] = 441319, - [SMALL_STATE(11069)] = 441333, - [SMALL_STATE(11070)] = 441347, - [SMALL_STATE(11071)] = 441361, - [SMALL_STATE(11072)] = 441375, - [SMALL_STATE(11073)] = 441389, - [SMALL_STATE(11074)] = 441403, - [SMALL_STATE(11075)] = 441417, - [SMALL_STATE(11076)] = 441431, - [SMALL_STATE(11077)] = 441445, - [SMALL_STATE(11078)] = 441459, - [SMALL_STATE(11079)] = 441473, - [SMALL_STATE(11080)] = 441487, - [SMALL_STATE(11081)] = 441501, - [SMALL_STATE(11082)] = 441515, - [SMALL_STATE(11083)] = 441529, - [SMALL_STATE(11084)] = 441543, - [SMALL_STATE(11085)] = 441557, - [SMALL_STATE(11086)] = 441571, - [SMALL_STATE(11087)] = 441585, - [SMALL_STATE(11088)] = 441599, - [SMALL_STATE(11089)] = 441613, - [SMALL_STATE(11090)] = 441627, - [SMALL_STATE(11091)] = 441641, - [SMALL_STATE(11092)] = 441655, - [SMALL_STATE(11093)] = 441669, - [SMALL_STATE(11094)] = 441683, - [SMALL_STATE(11095)] = 441697, - [SMALL_STATE(11096)] = 441711, - [SMALL_STATE(11097)] = 441725, - [SMALL_STATE(11098)] = 441739, - [SMALL_STATE(11099)] = 441755, - [SMALL_STATE(11100)] = 441769, - [SMALL_STATE(11101)] = 441783, - [SMALL_STATE(11102)] = 441797, - [SMALL_STATE(11103)] = 441811, - [SMALL_STATE(11104)] = 441825, - [SMALL_STATE(11105)] = 441841, - [SMALL_STATE(11106)] = 441855, - [SMALL_STATE(11107)] = 441869, - [SMALL_STATE(11108)] = 441883, - [SMALL_STATE(11109)] = 441897, - [SMALL_STATE(11110)] = 441911, - [SMALL_STATE(11111)] = 441925, - [SMALL_STATE(11112)] = 441939, - [SMALL_STATE(11113)] = 441953, - [SMALL_STATE(11114)] = 441967, - [SMALL_STATE(11115)] = 441981, - [SMALL_STATE(11116)] = 441995, - [SMALL_STATE(11117)] = 442009, - [SMALL_STATE(11118)] = 442023, - [SMALL_STATE(11119)] = 442037, - [SMALL_STATE(11120)] = 442051, - [SMALL_STATE(11121)] = 442065, - [SMALL_STATE(11122)] = 442079, - [SMALL_STATE(11123)] = 442093, - [SMALL_STATE(11124)] = 442107, - [SMALL_STATE(11125)] = 442121, - [SMALL_STATE(11126)] = 442135, - [SMALL_STATE(11127)] = 442149, - [SMALL_STATE(11128)] = 442163, - [SMALL_STATE(11129)] = 442177, - [SMALL_STATE(11130)] = 442191, - [SMALL_STATE(11131)] = 442205, - [SMALL_STATE(11132)] = 442219, - [SMALL_STATE(11133)] = 442233, - [SMALL_STATE(11134)] = 442247, - [SMALL_STATE(11135)] = 442261, - [SMALL_STATE(11136)] = 442275, - [SMALL_STATE(11137)] = 442289, - [SMALL_STATE(11138)] = 442303, - [SMALL_STATE(11139)] = 442319, - [SMALL_STATE(11140)] = 442333, - [SMALL_STATE(11141)] = 442347, - [SMALL_STATE(11142)] = 442361, - [SMALL_STATE(11143)] = 442375, - [SMALL_STATE(11144)] = 442389, - [SMALL_STATE(11145)] = 442403, - [SMALL_STATE(11146)] = 442417, - [SMALL_STATE(11147)] = 442431, - [SMALL_STATE(11148)] = 442445, - [SMALL_STATE(11149)] = 442459, - [SMALL_STATE(11150)] = 442473, - [SMALL_STATE(11151)] = 442487, - [SMALL_STATE(11152)] = 442501, - [SMALL_STATE(11153)] = 442515, - [SMALL_STATE(11154)] = 442529, - [SMALL_STATE(11155)] = 442543, - [SMALL_STATE(11156)] = 442557, - [SMALL_STATE(11157)] = 442571, - [SMALL_STATE(11158)] = 442585, - [SMALL_STATE(11159)] = 442599, - [SMALL_STATE(11160)] = 442613, - [SMALL_STATE(11161)] = 442627, - [SMALL_STATE(11162)] = 442641, - [SMALL_STATE(11163)] = 442655, - [SMALL_STATE(11164)] = 442669, - [SMALL_STATE(11165)] = 442683, - [SMALL_STATE(11166)] = 442697, - [SMALL_STATE(11167)] = 442711, - [SMALL_STATE(11168)] = 442725, - [SMALL_STATE(11169)] = 442739, - [SMALL_STATE(11170)] = 442753, - [SMALL_STATE(11171)] = 442767, - [SMALL_STATE(11172)] = 442781, - [SMALL_STATE(11173)] = 442795, - [SMALL_STATE(11174)] = 442809, - [SMALL_STATE(11175)] = 442823, - [SMALL_STATE(11176)] = 442837, - [SMALL_STATE(11177)] = 442851, - [SMALL_STATE(11178)] = 442865, - [SMALL_STATE(11179)] = 442879, - [SMALL_STATE(11180)] = 442893, - [SMALL_STATE(11181)] = 442907, - [SMALL_STATE(11182)] = 442921, - [SMALL_STATE(11183)] = 442935, - [SMALL_STATE(11184)] = 442949, - [SMALL_STATE(11185)] = 442963, - [SMALL_STATE(11186)] = 442977, - [SMALL_STATE(11187)] = 442991, - [SMALL_STATE(11188)] = 443005, - [SMALL_STATE(11189)] = 443019, - [SMALL_STATE(11190)] = 443033, - [SMALL_STATE(11191)] = 443047, - [SMALL_STATE(11192)] = 443061, - [SMALL_STATE(11193)] = 443075, - [SMALL_STATE(11194)] = 443089, - [SMALL_STATE(11195)] = 443103, - [SMALL_STATE(11196)] = 443119, - [SMALL_STATE(11197)] = 443133, - [SMALL_STATE(11198)] = 443147, - [SMALL_STATE(11199)] = 443161, - [SMALL_STATE(11200)] = 443175, - [SMALL_STATE(11201)] = 443189, - [SMALL_STATE(11202)] = 443203, - [SMALL_STATE(11203)] = 443217, - [SMALL_STATE(11204)] = 443231, - [SMALL_STATE(11205)] = 443245, - [SMALL_STATE(11206)] = 443259, - [SMALL_STATE(11207)] = 443273, - [SMALL_STATE(11208)] = 443287, - [SMALL_STATE(11209)] = 443301, - [SMALL_STATE(11210)] = 443315, - [SMALL_STATE(11211)] = 443329, - [SMALL_STATE(11212)] = 443343, - [SMALL_STATE(11213)] = 443357, - [SMALL_STATE(11214)] = 443371, - [SMALL_STATE(11215)] = 443385, - [SMALL_STATE(11216)] = 443399, - [SMALL_STATE(11217)] = 443413, - [SMALL_STATE(11218)] = 443427, - [SMALL_STATE(11219)] = 443441, - [SMALL_STATE(11220)] = 443455, - [SMALL_STATE(11221)] = 443469, - [SMALL_STATE(11222)] = 443483, - [SMALL_STATE(11223)] = 443497, - [SMALL_STATE(11224)] = 443511, - [SMALL_STATE(11225)] = 443525, - [SMALL_STATE(11226)] = 443539, - [SMALL_STATE(11227)] = 443553, - [SMALL_STATE(11228)] = 443567, - [SMALL_STATE(11229)] = 443581, - [SMALL_STATE(11230)] = 443595, - [SMALL_STATE(11231)] = 443609, - [SMALL_STATE(11232)] = 443623, - [SMALL_STATE(11233)] = 443637, - [SMALL_STATE(11234)] = 443651, - [SMALL_STATE(11235)] = 443665, - [SMALL_STATE(11236)] = 443679, - [SMALL_STATE(11237)] = 443693, - [SMALL_STATE(11238)] = 443707, - [SMALL_STATE(11239)] = 443721, - [SMALL_STATE(11240)] = 443735, - [SMALL_STATE(11241)] = 443749, - [SMALL_STATE(11242)] = 443763, - [SMALL_STATE(11243)] = 443777, - [SMALL_STATE(11244)] = 443791, - [SMALL_STATE(11245)] = 443805, - [SMALL_STATE(11246)] = 443819, - [SMALL_STATE(11247)] = 443833, - [SMALL_STATE(11248)] = 443847, - [SMALL_STATE(11249)] = 443861, - [SMALL_STATE(11250)] = 443875, - [SMALL_STATE(11251)] = 443889, - [SMALL_STATE(11252)] = 443903, - [SMALL_STATE(11253)] = 443917, - [SMALL_STATE(11254)] = 443931, - [SMALL_STATE(11255)] = 443945, - [SMALL_STATE(11256)] = 443959, - [SMALL_STATE(11257)] = 443973, - [SMALL_STATE(11258)] = 443987, - [SMALL_STATE(11259)] = 444001, - [SMALL_STATE(11260)] = 444015, - [SMALL_STATE(11261)] = 444029, - [SMALL_STATE(11262)] = 444043, - [SMALL_STATE(11263)] = 444059, - [SMALL_STATE(11264)] = 444073, - [SMALL_STATE(11265)] = 444087, - [SMALL_STATE(11266)] = 444101, - [SMALL_STATE(11267)] = 444115, - [SMALL_STATE(11268)] = 444129, - [SMALL_STATE(11269)] = 444143, - [SMALL_STATE(11270)] = 444157, - [SMALL_STATE(11271)] = 444171, - [SMALL_STATE(11272)] = 444185, - [SMALL_STATE(11273)] = 444199, - [SMALL_STATE(11274)] = 444213, - [SMALL_STATE(11275)] = 444227, - [SMALL_STATE(11276)] = 444241, - [SMALL_STATE(11277)] = 444255, - [SMALL_STATE(11278)] = 444269, - [SMALL_STATE(11279)] = 444283, - [SMALL_STATE(11280)] = 444297, - [SMALL_STATE(11281)] = 444311, - [SMALL_STATE(11282)] = 444325, - [SMALL_STATE(11283)] = 444339, - [SMALL_STATE(11284)] = 444353, - [SMALL_STATE(11285)] = 444367, - [SMALL_STATE(11286)] = 444381, - [SMALL_STATE(11287)] = 444395, - [SMALL_STATE(11288)] = 444409, - [SMALL_STATE(11289)] = 444423, - [SMALL_STATE(11290)] = 444437, - [SMALL_STATE(11291)] = 444451, - [SMALL_STATE(11292)] = 444465, - [SMALL_STATE(11293)] = 444479, - [SMALL_STATE(11294)] = 444493, - [SMALL_STATE(11295)] = 444507, - [SMALL_STATE(11296)] = 444521, - [SMALL_STATE(11297)] = 444535, - [SMALL_STATE(11298)] = 444549, - [SMALL_STATE(11299)] = 444563, - [SMALL_STATE(11300)] = 444577, - [SMALL_STATE(11301)] = 444591, - [SMALL_STATE(11302)] = 444605, - [SMALL_STATE(11303)] = 444619, - [SMALL_STATE(11304)] = 444633, - [SMALL_STATE(11305)] = 444647, - [SMALL_STATE(11306)] = 444661, - [SMALL_STATE(11307)] = 444675, - [SMALL_STATE(11308)] = 444689, - [SMALL_STATE(11309)] = 444703, - [SMALL_STATE(11310)] = 444717, - [SMALL_STATE(11311)] = 444731, - [SMALL_STATE(11312)] = 444745, - [SMALL_STATE(11313)] = 444759, - [SMALL_STATE(11314)] = 444773, - [SMALL_STATE(11315)] = 444787, - [SMALL_STATE(11316)] = 444801, - [SMALL_STATE(11317)] = 444815, - [SMALL_STATE(11318)] = 444829, - [SMALL_STATE(11319)] = 444843, - [SMALL_STATE(11320)] = 444857, - [SMALL_STATE(11321)] = 444871, - [SMALL_STATE(11322)] = 444885, - [SMALL_STATE(11323)] = 444899, - [SMALL_STATE(11324)] = 444913, - [SMALL_STATE(11325)] = 444927, - [SMALL_STATE(11326)] = 444941, - [SMALL_STATE(11327)] = 444955, - [SMALL_STATE(11328)] = 444969, - [SMALL_STATE(11329)] = 444983, - [SMALL_STATE(11330)] = 444999, - [SMALL_STATE(11331)] = 445013, - [SMALL_STATE(11332)] = 445027, - [SMALL_STATE(11333)] = 445041, - [SMALL_STATE(11334)] = 445055, - [SMALL_STATE(11335)] = 445069, - [SMALL_STATE(11336)] = 445083, - [SMALL_STATE(11337)] = 445097, - [SMALL_STATE(11338)] = 445111, - [SMALL_STATE(11339)] = 445125, - [SMALL_STATE(11340)] = 445139, - [SMALL_STATE(11341)] = 445153, - [SMALL_STATE(11342)] = 445167, - [SMALL_STATE(11343)] = 445181, - [SMALL_STATE(11344)] = 445195, - [SMALL_STATE(11345)] = 445209, - [SMALL_STATE(11346)] = 445223, - [SMALL_STATE(11347)] = 445237, - [SMALL_STATE(11348)] = 445251, - [SMALL_STATE(11349)] = 445265, - [SMALL_STATE(11350)] = 445281, - [SMALL_STATE(11351)] = 445295, - [SMALL_STATE(11352)] = 445309, - [SMALL_STATE(11353)] = 445323, - [SMALL_STATE(11354)] = 445337, - [SMALL_STATE(11355)] = 445351, - [SMALL_STATE(11356)] = 445365, - [SMALL_STATE(11357)] = 445379, - [SMALL_STATE(11358)] = 445393, - [SMALL_STATE(11359)] = 445407, - [SMALL_STATE(11360)] = 445421, - [SMALL_STATE(11361)] = 445435, - [SMALL_STATE(11362)] = 445449, - [SMALL_STATE(11363)] = 445463, - [SMALL_STATE(11364)] = 445477, - [SMALL_STATE(11365)] = 445491, - [SMALL_STATE(11366)] = 445505, - [SMALL_STATE(11367)] = 445519, - [SMALL_STATE(11368)] = 445533, - [SMALL_STATE(11369)] = 445547, - [SMALL_STATE(11370)] = 445561, - [SMALL_STATE(11371)] = 445575, - [SMALL_STATE(11372)] = 445589, - [SMALL_STATE(11373)] = 445603, - [SMALL_STATE(11374)] = 445617, - [SMALL_STATE(11375)] = 445631, - [SMALL_STATE(11376)] = 445645, - [SMALL_STATE(11377)] = 445659, - [SMALL_STATE(11378)] = 445673, - [SMALL_STATE(11379)] = 445687, - [SMALL_STATE(11380)] = 445701, - [SMALL_STATE(11381)] = 445715, - [SMALL_STATE(11382)] = 445729, - [SMALL_STATE(11383)] = 445743, - [SMALL_STATE(11384)] = 445757, - [SMALL_STATE(11385)] = 445771, - [SMALL_STATE(11386)] = 445785, - [SMALL_STATE(11387)] = 445799, - [SMALL_STATE(11388)] = 445813, - [SMALL_STATE(11389)] = 445827, - [SMALL_STATE(11390)] = 445841, - [SMALL_STATE(11391)] = 445855, - [SMALL_STATE(11392)] = 445869, - [SMALL_STATE(11393)] = 445883, - [SMALL_STATE(11394)] = 445897, - [SMALL_STATE(11395)] = 445911, - [SMALL_STATE(11396)] = 445925, - [SMALL_STATE(11397)] = 445939, - [SMALL_STATE(11398)] = 445953, - [SMALL_STATE(11399)] = 445967, - [SMALL_STATE(11400)] = 445981, - [SMALL_STATE(11401)] = 445995, - [SMALL_STATE(11402)] = 446009, - [SMALL_STATE(11403)] = 446023, - [SMALL_STATE(11404)] = 446037, - [SMALL_STATE(11405)] = 446051, - [SMALL_STATE(11406)] = 446065, - [SMALL_STATE(11407)] = 446079, - [SMALL_STATE(11408)] = 446093, - [SMALL_STATE(11409)] = 446107, - [SMALL_STATE(11410)] = 446123, - [SMALL_STATE(11411)] = 446137, - [SMALL_STATE(11412)] = 446151, - [SMALL_STATE(11413)] = 446165, - [SMALL_STATE(11414)] = 446179, - [SMALL_STATE(11415)] = 446193, - [SMALL_STATE(11416)] = 446207, - [SMALL_STATE(11417)] = 446221, - [SMALL_STATE(11418)] = 446235, - [SMALL_STATE(11419)] = 446249, - [SMALL_STATE(11420)] = 446263, - [SMALL_STATE(11421)] = 446277, - [SMALL_STATE(11422)] = 446291, - [SMALL_STATE(11423)] = 446305, - [SMALL_STATE(11424)] = 446319, - [SMALL_STATE(11425)] = 446333, - [SMALL_STATE(11426)] = 446347, - [SMALL_STATE(11427)] = 446361, - [SMALL_STATE(11428)] = 446375, - [SMALL_STATE(11429)] = 446389, - [SMALL_STATE(11430)] = 446403, - [SMALL_STATE(11431)] = 446417, - [SMALL_STATE(11432)] = 446431, - [SMALL_STATE(11433)] = 446445, - [SMALL_STATE(11434)] = 446459, - [SMALL_STATE(11435)] = 446473, - [SMALL_STATE(11436)] = 446487, - [SMALL_STATE(11437)] = 446501, - [SMALL_STATE(11438)] = 446515, - [SMALL_STATE(11439)] = 446529, - [SMALL_STATE(11440)] = 446543, - [SMALL_STATE(11441)] = 446557, - [SMALL_STATE(11442)] = 446571, - [SMALL_STATE(11443)] = 446585, - [SMALL_STATE(11444)] = 446599, - [SMALL_STATE(11445)] = 446613, - [SMALL_STATE(11446)] = 446627, - [SMALL_STATE(11447)] = 446641, - [SMALL_STATE(11448)] = 446655, - [SMALL_STATE(11449)] = 446669, - [SMALL_STATE(11450)] = 446683, - [SMALL_STATE(11451)] = 446697, - [SMALL_STATE(11452)] = 446711, - [SMALL_STATE(11453)] = 446725, - [SMALL_STATE(11454)] = 446739, - [SMALL_STATE(11455)] = 446753, - [SMALL_STATE(11456)] = 446767, - [SMALL_STATE(11457)] = 446781, - [SMALL_STATE(11458)] = 446795, - [SMALL_STATE(11459)] = 446809, - [SMALL_STATE(11460)] = 446823, - [SMALL_STATE(11461)] = 446837, - [SMALL_STATE(11462)] = 446851, - [SMALL_STATE(11463)] = 446865, - [SMALL_STATE(11464)] = 446879, - [SMALL_STATE(11465)] = 446893, - [SMALL_STATE(11466)] = 446907, - [SMALL_STATE(11467)] = 446921, - [SMALL_STATE(11468)] = 446935, - [SMALL_STATE(11469)] = 446949, - [SMALL_STATE(11470)] = 446963, - [SMALL_STATE(11471)] = 446977, - [SMALL_STATE(11472)] = 446991, - [SMALL_STATE(11473)] = 447005, - [SMALL_STATE(11474)] = 447019, - [SMALL_STATE(11475)] = 447033, - [SMALL_STATE(11476)] = 447047, - [SMALL_STATE(11477)] = 447061, - [SMALL_STATE(11478)] = 447075, - [SMALL_STATE(11479)] = 447089, - [SMALL_STATE(11480)] = 447103, - [SMALL_STATE(11481)] = 447117, - [SMALL_STATE(11482)] = 447131, - [SMALL_STATE(11483)] = 447145, - [SMALL_STATE(11484)] = 447159, - [SMALL_STATE(11485)] = 447173, - [SMALL_STATE(11486)] = 447187, - [SMALL_STATE(11487)] = 447201, - [SMALL_STATE(11488)] = 447215, - [SMALL_STATE(11489)] = 447229, - [SMALL_STATE(11490)] = 447243, - [SMALL_STATE(11491)] = 447257, - [SMALL_STATE(11492)] = 447271, - [SMALL_STATE(11493)] = 447285, - [SMALL_STATE(11494)] = 447299, - [SMALL_STATE(11495)] = 447313, - [SMALL_STATE(11496)] = 447327, - [SMALL_STATE(11497)] = 447341, - [SMALL_STATE(11498)] = 447355, - [SMALL_STATE(11499)] = 447369, - [SMALL_STATE(11500)] = 447383, - [SMALL_STATE(11501)] = 447397, - [SMALL_STATE(11502)] = 447411, - [SMALL_STATE(11503)] = 447425, - [SMALL_STATE(11504)] = 447439, - [SMALL_STATE(11505)] = 447453, - [SMALL_STATE(11506)] = 447467, - [SMALL_STATE(11507)] = 447481, - [SMALL_STATE(11508)] = 447495, - [SMALL_STATE(11509)] = 447509, - [SMALL_STATE(11510)] = 447523, - [SMALL_STATE(11511)] = 447537, - [SMALL_STATE(11512)] = 447551, - [SMALL_STATE(11513)] = 447565, - [SMALL_STATE(11514)] = 447579, - [SMALL_STATE(11515)] = 447593, - [SMALL_STATE(11516)] = 447607, - [SMALL_STATE(11517)] = 447621, - [SMALL_STATE(11518)] = 447635, - [SMALL_STATE(11519)] = 447649, - [SMALL_STATE(11520)] = 447663, - [SMALL_STATE(11521)] = 447677, - [SMALL_STATE(11522)] = 447691, - [SMALL_STATE(11523)] = 447705, - [SMALL_STATE(11524)] = 447719, - [SMALL_STATE(11525)] = 447733, - [SMALL_STATE(11526)] = 447747, - [SMALL_STATE(11527)] = 447761, - [SMALL_STATE(11528)] = 447775, - [SMALL_STATE(11529)] = 447789, - [SMALL_STATE(11530)] = 447803, - [SMALL_STATE(11531)] = 447817, - [SMALL_STATE(11532)] = 447831, - [SMALL_STATE(11533)] = 447845, - [SMALL_STATE(11534)] = 447859, - [SMALL_STATE(11535)] = 447873, - [SMALL_STATE(11536)] = 447887, - [SMALL_STATE(11537)] = 447901, - [SMALL_STATE(11538)] = 447915, - [SMALL_STATE(11539)] = 447929, - [SMALL_STATE(11540)] = 447943, - [SMALL_STATE(11541)] = 447957, - [SMALL_STATE(11542)] = 447971, - [SMALL_STATE(11543)] = 447985, - [SMALL_STATE(11544)] = 447999, - [SMALL_STATE(11545)] = 448013, - [SMALL_STATE(11546)] = 448027, - [SMALL_STATE(11547)] = 448041, - [SMALL_STATE(11548)] = 448055, - [SMALL_STATE(11549)] = 448069, - [SMALL_STATE(11550)] = 448083, - [SMALL_STATE(11551)] = 448097, - [SMALL_STATE(11552)] = 448111, - [SMALL_STATE(11553)] = 448125, - [SMALL_STATE(11554)] = 448139, - [SMALL_STATE(11555)] = 448153, - [SMALL_STATE(11556)] = 448167, - [SMALL_STATE(11557)] = 448181, - [SMALL_STATE(11558)] = 448195, - [SMALL_STATE(11559)] = 448209, - [SMALL_STATE(11560)] = 448223, - [SMALL_STATE(11561)] = 448237, - [SMALL_STATE(11562)] = 448251, - [SMALL_STATE(11563)] = 448265, - [SMALL_STATE(11564)] = 448279, - [SMALL_STATE(11565)] = 448293, - [SMALL_STATE(11566)] = 448307, - [SMALL_STATE(11567)] = 448321, - [SMALL_STATE(11568)] = 448335, - [SMALL_STATE(11569)] = 448349, - [SMALL_STATE(11570)] = 448363, - [SMALL_STATE(11571)] = 448377, - [SMALL_STATE(11572)] = 448391, - [SMALL_STATE(11573)] = 448405, - [SMALL_STATE(11574)] = 448419, - [SMALL_STATE(11575)] = 448433, - [SMALL_STATE(11576)] = 448447, - [SMALL_STATE(11577)] = 448461, - [SMALL_STATE(11578)] = 448475, - [SMALL_STATE(11579)] = 448489, - [SMALL_STATE(11580)] = 448503, - [SMALL_STATE(11581)] = 448517, - [SMALL_STATE(11582)] = 448531, - [SMALL_STATE(11583)] = 448545, - [SMALL_STATE(11584)] = 448559, - [SMALL_STATE(11585)] = 448573, - [SMALL_STATE(11586)] = 448587, - [SMALL_STATE(11587)] = 448601, - [SMALL_STATE(11588)] = 448615, - [SMALL_STATE(11589)] = 448629, - [SMALL_STATE(11590)] = 448643, - [SMALL_STATE(11591)] = 448657, - [SMALL_STATE(11592)] = 448671, - [SMALL_STATE(11593)] = 448685, - [SMALL_STATE(11594)] = 448699, - [SMALL_STATE(11595)] = 448713, - [SMALL_STATE(11596)] = 448727, - [SMALL_STATE(11597)] = 448741, - [SMALL_STATE(11598)] = 448755, - [SMALL_STATE(11599)] = 448769, - [SMALL_STATE(11600)] = 448783, - [SMALL_STATE(11601)] = 448797, - [SMALL_STATE(11602)] = 448811, - [SMALL_STATE(11603)] = 448825, - [SMALL_STATE(11604)] = 448839, - [SMALL_STATE(11605)] = 448853, - [SMALL_STATE(11606)] = 448867, - [SMALL_STATE(11607)] = 448881, - [SMALL_STATE(11608)] = 448895, - [SMALL_STATE(11609)] = 448909, - [SMALL_STATE(11610)] = 448923, - [SMALL_STATE(11611)] = 448937, - [SMALL_STATE(11612)] = 448951, - [SMALL_STATE(11613)] = 448965, - [SMALL_STATE(11614)] = 448979, - [SMALL_STATE(11615)] = 448993, - [SMALL_STATE(11616)] = 449007, - [SMALL_STATE(11617)] = 449021, - [SMALL_STATE(11618)] = 449035, - [SMALL_STATE(11619)] = 449049, - [SMALL_STATE(11620)] = 449063, - [SMALL_STATE(11621)] = 449077, - [SMALL_STATE(11622)] = 449091, - [SMALL_STATE(11623)] = 449105, - [SMALL_STATE(11624)] = 449119, - [SMALL_STATE(11625)] = 449133, - [SMALL_STATE(11626)] = 449147, - [SMALL_STATE(11627)] = 449161, - [SMALL_STATE(11628)] = 449175, - [SMALL_STATE(11629)] = 449189, - [SMALL_STATE(11630)] = 449203, - [SMALL_STATE(11631)] = 449217, - [SMALL_STATE(11632)] = 449231, - [SMALL_STATE(11633)] = 449245, - [SMALL_STATE(11634)] = 449259, - [SMALL_STATE(11635)] = 449273, - [SMALL_STATE(11636)] = 449287, - [SMALL_STATE(11637)] = 449301, - [SMALL_STATE(11638)] = 449315, - [SMALL_STATE(11639)] = 449329, - [SMALL_STATE(11640)] = 449343, - [SMALL_STATE(11641)] = 449357, - [SMALL_STATE(11642)] = 449371, - [SMALL_STATE(11643)] = 449385, - [SMALL_STATE(11644)] = 449399, - [SMALL_STATE(11645)] = 449413, - [SMALL_STATE(11646)] = 449427, - [SMALL_STATE(11647)] = 449441, - [SMALL_STATE(11648)] = 449455, - [SMALL_STATE(11649)] = 449469, - [SMALL_STATE(11650)] = 449483, - [SMALL_STATE(11651)] = 449497, - [SMALL_STATE(11652)] = 449511, - [SMALL_STATE(11653)] = 449525, - [SMALL_STATE(11654)] = 449539, - [SMALL_STATE(11655)] = 449553, - [SMALL_STATE(11656)] = 449567, - [SMALL_STATE(11657)] = 449581, - [SMALL_STATE(11658)] = 449597, - [SMALL_STATE(11659)] = 449611, - [SMALL_STATE(11660)] = 449625, - [SMALL_STATE(11661)] = 449639, - [SMALL_STATE(11662)] = 449653, - [SMALL_STATE(11663)] = 449667, - [SMALL_STATE(11664)] = 449681, - [SMALL_STATE(11665)] = 449695, - [SMALL_STATE(11666)] = 449709, - [SMALL_STATE(11667)] = 449723, - [SMALL_STATE(11668)] = 449737, - [SMALL_STATE(11669)] = 449751, - [SMALL_STATE(11670)] = 449765, - [SMALL_STATE(11671)] = 449779, - [SMALL_STATE(11672)] = 449793, - [SMALL_STATE(11673)] = 449807, - [SMALL_STATE(11674)] = 449821, - [SMALL_STATE(11675)] = 449835, - [SMALL_STATE(11676)] = 449849, - [SMALL_STATE(11677)] = 449863, - [SMALL_STATE(11678)] = 449877, - [SMALL_STATE(11679)] = 449891, - [SMALL_STATE(11680)] = 449905, - [SMALL_STATE(11681)] = 449919, - [SMALL_STATE(11682)] = 449933, - [SMALL_STATE(11683)] = 449947, - [SMALL_STATE(11684)] = 449961, - [SMALL_STATE(11685)] = 449975, - [SMALL_STATE(11686)] = 449989, - [SMALL_STATE(11687)] = 450003, - [SMALL_STATE(11688)] = 450017, - [SMALL_STATE(11689)] = 450031, - [SMALL_STATE(11690)] = 450045, - [SMALL_STATE(11691)] = 450059, - [SMALL_STATE(11692)] = 450073, - [SMALL_STATE(11693)] = 450087, - [SMALL_STATE(11694)] = 450101, - [SMALL_STATE(11695)] = 450115, - [SMALL_STATE(11696)] = 450129, - [SMALL_STATE(11697)] = 450143, - [SMALL_STATE(11698)] = 450157, - [SMALL_STATE(11699)] = 450171, - [SMALL_STATE(11700)] = 450185, - [SMALL_STATE(11701)] = 450199, - [SMALL_STATE(11702)] = 450213, - [SMALL_STATE(11703)] = 450227, - [SMALL_STATE(11704)] = 450241, - [SMALL_STATE(11705)] = 450255, - [SMALL_STATE(11706)] = 450269, - [SMALL_STATE(11707)] = 450283, - [SMALL_STATE(11708)] = 450297, - [SMALL_STATE(11709)] = 450311, - [SMALL_STATE(11710)] = 450325, - [SMALL_STATE(11711)] = 450339, - [SMALL_STATE(11712)] = 450353, - [SMALL_STATE(11713)] = 450367, - [SMALL_STATE(11714)] = 450381, - [SMALL_STATE(11715)] = 450395, - [SMALL_STATE(11716)] = 450409, - [SMALL_STATE(11717)] = 450423, - [SMALL_STATE(11718)] = 450437, - [SMALL_STATE(11719)] = 450451, - [SMALL_STATE(11720)] = 450465, - [SMALL_STATE(11721)] = 450479, - [SMALL_STATE(11722)] = 450493, - [SMALL_STATE(11723)] = 450507, - [SMALL_STATE(11724)] = 450521, - [SMALL_STATE(11725)] = 450535, - [SMALL_STATE(11726)] = 450549, - [SMALL_STATE(11727)] = 450563, - [SMALL_STATE(11728)] = 450577, - [SMALL_STATE(11729)] = 450591, - [SMALL_STATE(11730)] = 450605, - [SMALL_STATE(11731)] = 450619, - [SMALL_STATE(11732)] = 450633, - [SMALL_STATE(11733)] = 450647, - [SMALL_STATE(11734)] = 450661, - [SMALL_STATE(11735)] = 450675, - [SMALL_STATE(11736)] = 450689, - [SMALL_STATE(11737)] = 450703, - [SMALL_STATE(11738)] = 450717, - [SMALL_STATE(11739)] = 450731, - [SMALL_STATE(11740)] = 450745, - [SMALL_STATE(11741)] = 450759, - [SMALL_STATE(11742)] = 450773, - [SMALL_STATE(11743)] = 450787, - [SMALL_STATE(11744)] = 450803, - [SMALL_STATE(11745)] = 450817, - [SMALL_STATE(11746)] = 450831, - [SMALL_STATE(11747)] = 450845, - [SMALL_STATE(11748)] = 450859, - [SMALL_STATE(11749)] = 450873, - [SMALL_STATE(11750)] = 450887, - [SMALL_STATE(11751)] = 450901, - [SMALL_STATE(11752)] = 450915, - [SMALL_STATE(11753)] = 450929, - [SMALL_STATE(11754)] = 450943, - [SMALL_STATE(11755)] = 450957, - [SMALL_STATE(11756)] = 450971, - [SMALL_STATE(11757)] = 450985, - [SMALL_STATE(11758)] = 450999, - [SMALL_STATE(11759)] = 451013, - [SMALL_STATE(11760)] = 451029, - [SMALL_STATE(11761)] = 451043, - [SMALL_STATE(11762)] = 451057, - [SMALL_STATE(11763)] = 451071, - [SMALL_STATE(11764)] = 451085, - [SMALL_STATE(11765)] = 451099, - [SMALL_STATE(11766)] = 451113, - [SMALL_STATE(11767)] = 451127, - [SMALL_STATE(11768)] = 451141, - [SMALL_STATE(11769)] = 451155, - [SMALL_STATE(11770)] = 451169, - [SMALL_STATE(11771)] = 451183, - [SMALL_STATE(11772)] = 451197, - [SMALL_STATE(11773)] = 451211, - [SMALL_STATE(11774)] = 451225, - [SMALL_STATE(11775)] = 451239, - [SMALL_STATE(11776)] = 451253, - [SMALL_STATE(11777)] = 451267, - [SMALL_STATE(11778)] = 451281, - [SMALL_STATE(11779)] = 451295, - [SMALL_STATE(11780)] = 451309, - [SMALL_STATE(11781)] = 451323, - [SMALL_STATE(11782)] = 451337, - [SMALL_STATE(11783)] = 451351, - [SMALL_STATE(11784)] = 451365, - [SMALL_STATE(11785)] = 451379, - [SMALL_STATE(11786)] = 451393, - [SMALL_STATE(11787)] = 451407, - [SMALL_STATE(11788)] = 451421, - [SMALL_STATE(11789)] = 451435, - [SMALL_STATE(11790)] = 451449, - [SMALL_STATE(11791)] = 451463, - [SMALL_STATE(11792)] = 451477, - [SMALL_STATE(11793)] = 451491, - [SMALL_STATE(11794)] = 451505, - [SMALL_STATE(11795)] = 451519, - [SMALL_STATE(11796)] = 451533, - [SMALL_STATE(11797)] = 451547, - [SMALL_STATE(11798)] = 451561, - [SMALL_STATE(11799)] = 451575, - [SMALL_STATE(11800)] = 451589, - [SMALL_STATE(11801)] = 451603, - [SMALL_STATE(11802)] = 451617, - [SMALL_STATE(11803)] = 451631, - [SMALL_STATE(11804)] = 451645, - [SMALL_STATE(11805)] = 451659, - [SMALL_STATE(11806)] = 451673, - [SMALL_STATE(11807)] = 451687, - [SMALL_STATE(11808)] = 451701, - [SMALL_STATE(11809)] = 451715, - [SMALL_STATE(11810)] = 451729, - [SMALL_STATE(11811)] = 451743, - [SMALL_STATE(11812)] = 451757, - [SMALL_STATE(11813)] = 451771, - [SMALL_STATE(11814)] = 451785, - [SMALL_STATE(11815)] = 451799, - [SMALL_STATE(11816)] = 451813, - [SMALL_STATE(11817)] = 451827, - [SMALL_STATE(11818)] = 451841, - [SMALL_STATE(11819)] = 451855, - [SMALL_STATE(11820)] = 451869, - [SMALL_STATE(11821)] = 451883, - [SMALL_STATE(11822)] = 451897, - [SMALL_STATE(11823)] = 451911, - [SMALL_STATE(11824)] = 451925, - [SMALL_STATE(11825)] = 451939, - [SMALL_STATE(11826)] = 451953, - [SMALL_STATE(11827)] = 451967, - [SMALL_STATE(11828)] = 451981, - [SMALL_STATE(11829)] = 451995, - [SMALL_STATE(11830)] = 452009, - [SMALL_STATE(11831)] = 452023, - [SMALL_STATE(11832)] = 452037, - [SMALL_STATE(11833)] = 452051, - [SMALL_STATE(11834)] = 452065, - [SMALL_STATE(11835)] = 452079, - [SMALL_STATE(11836)] = 452093, - [SMALL_STATE(11837)] = 452107, - [SMALL_STATE(11838)] = 452121, - [SMALL_STATE(11839)] = 452135, - [SMALL_STATE(11840)] = 452149, - [SMALL_STATE(11841)] = 452163, - [SMALL_STATE(11842)] = 452177, - [SMALL_STATE(11843)] = 452191, - [SMALL_STATE(11844)] = 452205, - [SMALL_STATE(11845)] = 452219, - [SMALL_STATE(11846)] = 452233, - [SMALL_STATE(11847)] = 452247, - [SMALL_STATE(11848)] = 452261, - [SMALL_STATE(11849)] = 452275, - [SMALL_STATE(11850)] = 452289, - [SMALL_STATE(11851)] = 452303, - [SMALL_STATE(11852)] = 452317, - [SMALL_STATE(11853)] = 452331, - [SMALL_STATE(11854)] = 452345, - [SMALL_STATE(11855)] = 452359, - [SMALL_STATE(11856)] = 452373, - [SMALL_STATE(11857)] = 452387, - [SMALL_STATE(11858)] = 452401, - [SMALL_STATE(11859)] = 452415, - [SMALL_STATE(11860)] = 452429, - [SMALL_STATE(11861)] = 452443, - [SMALL_STATE(11862)] = 452457, - [SMALL_STATE(11863)] = 452471, - [SMALL_STATE(11864)] = 452485, - [SMALL_STATE(11865)] = 452499, - [SMALL_STATE(11866)] = 452513, - [SMALL_STATE(11867)] = 452527, - [SMALL_STATE(11868)] = 452541, - [SMALL_STATE(11869)] = 452555, - [SMALL_STATE(11870)] = 452569, - [SMALL_STATE(11871)] = 452583, - [SMALL_STATE(11872)] = 452597, - [SMALL_STATE(11873)] = 452611, - [SMALL_STATE(11874)] = 452625, - [SMALL_STATE(11875)] = 452639, - [SMALL_STATE(11876)] = 452653, - [SMALL_STATE(11877)] = 452667, - [SMALL_STATE(11878)] = 452681, - [SMALL_STATE(11879)] = 452695, - [SMALL_STATE(11880)] = 452709, - [SMALL_STATE(11881)] = 452723, - [SMALL_STATE(11882)] = 452737, - [SMALL_STATE(11883)] = 452751, - [SMALL_STATE(11884)] = 452765, - [SMALL_STATE(11885)] = 452779, - [SMALL_STATE(11886)] = 452793, - [SMALL_STATE(11887)] = 452807, - [SMALL_STATE(11888)] = 452821, - [SMALL_STATE(11889)] = 452835, - [SMALL_STATE(11890)] = 452849, - [SMALL_STATE(11891)] = 452863, - [SMALL_STATE(11892)] = 452877, - [SMALL_STATE(11893)] = 452891, - [SMALL_STATE(11894)] = 452905, - [SMALL_STATE(11895)] = 452919, - [SMALL_STATE(11896)] = 452933, - [SMALL_STATE(11897)] = 452947, - [SMALL_STATE(11898)] = 452961, - [SMALL_STATE(11899)] = 452975, - [SMALL_STATE(11900)] = 452989, - [SMALL_STATE(11901)] = 453003, - [SMALL_STATE(11902)] = 453017, - [SMALL_STATE(11903)] = 453031, - [SMALL_STATE(11904)] = 453045, - [SMALL_STATE(11905)] = 453059, - [SMALL_STATE(11906)] = 453073, - [SMALL_STATE(11907)] = 453087, - [SMALL_STATE(11908)] = 453101, - [SMALL_STATE(11909)] = 453115, - [SMALL_STATE(11910)] = 453129, - [SMALL_STATE(11911)] = 453143, - [SMALL_STATE(11912)] = 453157, - [SMALL_STATE(11913)] = 453171, - [SMALL_STATE(11914)] = 453185, - [SMALL_STATE(11915)] = 453199, - [SMALL_STATE(11916)] = 453213, - [SMALL_STATE(11917)] = 453227, - [SMALL_STATE(11918)] = 453241, - [SMALL_STATE(11919)] = 453257, - [SMALL_STATE(11920)] = 453271, - [SMALL_STATE(11921)] = 453285, - [SMALL_STATE(11922)] = 453299, - [SMALL_STATE(11923)] = 453313, - [SMALL_STATE(11924)] = 453327, - [SMALL_STATE(11925)] = 453341, - [SMALL_STATE(11926)] = 453355, - [SMALL_STATE(11927)] = 453369, - [SMALL_STATE(11928)] = 453383, - [SMALL_STATE(11929)] = 453397, - [SMALL_STATE(11930)] = 453411, - [SMALL_STATE(11931)] = 453425, - [SMALL_STATE(11932)] = 453439, - [SMALL_STATE(11933)] = 453453, - [SMALL_STATE(11934)] = 453467, - [SMALL_STATE(11935)] = 453481, - [SMALL_STATE(11936)] = 453495, - [SMALL_STATE(11937)] = 453509, - [SMALL_STATE(11938)] = 453523, - [SMALL_STATE(11939)] = 453537, - [SMALL_STATE(11940)] = 453553, - [SMALL_STATE(11941)] = 453567, - [SMALL_STATE(11942)] = 453581, - [SMALL_STATE(11943)] = 453595, - [SMALL_STATE(11944)] = 453609, - [SMALL_STATE(11945)] = 453623, - [SMALL_STATE(11946)] = 453637, - [SMALL_STATE(11947)] = 453651, - [SMALL_STATE(11948)] = 453665, - [SMALL_STATE(11949)] = 453679, - [SMALL_STATE(11950)] = 453693, - [SMALL_STATE(11951)] = 453707, - [SMALL_STATE(11952)] = 453721, - [SMALL_STATE(11953)] = 453735, - [SMALL_STATE(11954)] = 453749, - [SMALL_STATE(11955)] = 453763, - [SMALL_STATE(11956)] = 453777, - [SMALL_STATE(11957)] = 453791, - [SMALL_STATE(11958)] = 453805, - [SMALL_STATE(11959)] = 453819, - [SMALL_STATE(11960)] = 453833, - [SMALL_STATE(11961)] = 453847, - [SMALL_STATE(11962)] = 453861, - [SMALL_STATE(11963)] = 453875, - [SMALL_STATE(11964)] = 453889, - [SMALL_STATE(11965)] = 453903, - [SMALL_STATE(11966)] = 453917, - [SMALL_STATE(11967)] = 453931, - [SMALL_STATE(11968)] = 453945, - [SMALL_STATE(11969)] = 453959, - [SMALL_STATE(11970)] = 453973, - [SMALL_STATE(11971)] = 453987, - [SMALL_STATE(11972)] = 454001, - [SMALL_STATE(11973)] = 454015, - [SMALL_STATE(11974)] = 454029, - [SMALL_STATE(11975)] = 454043, - [SMALL_STATE(11976)] = 454057, - [SMALL_STATE(11977)] = 454071, - [SMALL_STATE(11978)] = 454085, - [SMALL_STATE(11979)] = 454099, - [SMALL_STATE(11980)] = 454113, - [SMALL_STATE(11981)] = 454127, - [SMALL_STATE(11982)] = 454141, - [SMALL_STATE(11983)] = 454155, - [SMALL_STATE(11984)] = 454169, - [SMALL_STATE(11985)] = 454183, - [SMALL_STATE(11986)] = 454197, - [SMALL_STATE(11987)] = 454211, - [SMALL_STATE(11988)] = 454225, - [SMALL_STATE(11989)] = 454239, - [SMALL_STATE(11990)] = 454253, - [SMALL_STATE(11991)] = 454267, - [SMALL_STATE(11992)] = 454281, - [SMALL_STATE(11993)] = 454295, - [SMALL_STATE(11994)] = 454309, - [SMALL_STATE(11995)] = 454323, - [SMALL_STATE(11996)] = 454337, - [SMALL_STATE(11997)] = 454351, - [SMALL_STATE(11998)] = 454365, - [SMALL_STATE(11999)] = 454379, - [SMALL_STATE(12000)] = 454393, - [SMALL_STATE(12001)] = 454407, - [SMALL_STATE(12002)] = 454421, - [SMALL_STATE(12003)] = 454435, - [SMALL_STATE(12004)] = 454449, - [SMALL_STATE(12005)] = 454463, - [SMALL_STATE(12006)] = 454477, - [SMALL_STATE(12007)] = 454491, - [SMALL_STATE(12008)] = 454505, - [SMALL_STATE(12009)] = 454519, - [SMALL_STATE(12010)] = 454533, - [SMALL_STATE(12011)] = 454547, - [SMALL_STATE(12012)] = 454561, - [SMALL_STATE(12013)] = 454575, - [SMALL_STATE(12014)] = 454589, - [SMALL_STATE(12015)] = 454603, - [SMALL_STATE(12016)] = 454617, - [SMALL_STATE(12017)] = 454631, - [SMALL_STATE(12018)] = 454645, - [SMALL_STATE(12019)] = 454659, - [SMALL_STATE(12020)] = 454673, - [SMALL_STATE(12021)] = 454687, - [SMALL_STATE(12022)] = 454701, - [SMALL_STATE(12023)] = 454715, - [SMALL_STATE(12024)] = 454729, - [SMALL_STATE(12025)] = 454743, - [SMALL_STATE(12026)] = 454757, - [SMALL_STATE(12027)] = 454771, - [SMALL_STATE(12028)] = 454785, - [SMALL_STATE(12029)] = 454799, - [SMALL_STATE(12030)] = 454813, - [SMALL_STATE(12031)] = 454827, - [SMALL_STATE(12032)] = 454841, - [SMALL_STATE(12033)] = 454855, - [SMALL_STATE(12034)] = 454869, - [SMALL_STATE(12035)] = 454883, - [SMALL_STATE(12036)] = 454897, - [SMALL_STATE(12037)] = 454911, - [SMALL_STATE(12038)] = 454925, - [SMALL_STATE(12039)] = 454939, - [SMALL_STATE(12040)] = 454955, - [SMALL_STATE(12041)] = 454969, - [SMALL_STATE(12042)] = 454983, - [SMALL_STATE(12043)] = 454997, - [SMALL_STATE(12044)] = 455011, - [SMALL_STATE(12045)] = 455025, - [SMALL_STATE(12046)] = 455039, - [SMALL_STATE(12047)] = 455053, - [SMALL_STATE(12048)] = 455067, - [SMALL_STATE(12049)] = 455081, - [SMALL_STATE(12050)] = 455095, - [SMALL_STATE(12051)] = 455109, - [SMALL_STATE(12052)] = 455123, - [SMALL_STATE(12053)] = 455137, - [SMALL_STATE(12054)] = 455151, - [SMALL_STATE(12055)] = 455165, - [SMALL_STATE(12056)] = 455179, - [SMALL_STATE(12057)] = 455193, - [SMALL_STATE(12058)] = 455207, - [SMALL_STATE(12059)] = 455221, - [SMALL_STATE(12060)] = 455235, - [SMALL_STATE(12061)] = 455249, - [SMALL_STATE(12062)] = 455263, - [SMALL_STATE(12063)] = 455277, - [SMALL_STATE(12064)] = 455291, - [SMALL_STATE(12065)] = 455305, - [SMALL_STATE(12066)] = 455319, - [SMALL_STATE(12067)] = 455333, - [SMALL_STATE(12068)] = 455347, - [SMALL_STATE(12069)] = 455361, - [SMALL_STATE(12070)] = 455375, - [SMALL_STATE(12071)] = 455389, - [SMALL_STATE(12072)] = 455403, - [SMALL_STATE(12073)] = 455417, - [SMALL_STATE(12074)] = 455431, - [SMALL_STATE(12075)] = 455445, - [SMALL_STATE(12076)] = 455459, - [SMALL_STATE(12077)] = 455473, - [SMALL_STATE(12078)] = 455487, - [SMALL_STATE(12079)] = 455501, - [SMALL_STATE(12080)] = 455515, - [SMALL_STATE(12081)] = 455529, - [SMALL_STATE(12082)] = 455543, - [SMALL_STATE(12083)] = 455557, - [SMALL_STATE(12084)] = 455571, - [SMALL_STATE(12085)] = 455585, - [SMALL_STATE(12086)] = 455599, - [SMALL_STATE(12087)] = 455613, - [SMALL_STATE(12088)] = 455627, - [SMALL_STATE(12089)] = 455641, - [SMALL_STATE(12090)] = 455655, - [SMALL_STATE(12091)] = 455669, - [SMALL_STATE(12092)] = 455683, - [SMALL_STATE(12093)] = 455697, - [SMALL_STATE(12094)] = 455711, - [SMALL_STATE(12095)] = 455725, - [SMALL_STATE(12096)] = 455739, - [SMALL_STATE(12097)] = 455753, - [SMALL_STATE(12098)] = 455767, - [SMALL_STATE(12099)] = 455781, - [SMALL_STATE(12100)] = 455795, - [SMALL_STATE(12101)] = 455809, - [SMALL_STATE(12102)] = 455823, - [SMALL_STATE(12103)] = 455837, - [SMALL_STATE(12104)] = 455851, - [SMALL_STATE(12105)] = 455865, - [SMALL_STATE(12106)] = 455879, - [SMALL_STATE(12107)] = 455893, - [SMALL_STATE(12108)] = 455907, - [SMALL_STATE(12109)] = 455921, - [SMALL_STATE(12110)] = 455935, - [SMALL_STATE(12111)] = 455949, - [SMALL_STATE(12112)] = 455963, - [SMALL_STATE(12113)] = 455977, - [SMALL_STATE(12114)] = 455991, - [SMALL_STATE(12115)] = 456005, - [SMALL_STATE(12116)] = 456019, - [SMALL_STATE(12117)] = 456033, - [SMALL_STATE(12118)] = 456047, - [SMALL_STATE(12119)] = 456061, - [SMALL_STATE(12120)] = 456075, - [SMALL_STATE(12121)] = 456089, - [SMALL_STATE(12122)] = 456103, - [SMALL_STATE(12123)] = 456117, - [SMALL_STATE(12124)] = 456131, - [SMALL_STATE(12125)] = 456147, - [SMALL_STATE(12126)] = 456161, - [SMALL_STATE(12127)] = 456175, - [SMALL_STATE(12128)] = 456189, - [SMALL_STATE(12129)] = 456203, - [SMALL_STATE(12130)] = 456217, - [SMALL_STATE(12131)] = 456231, - [SMALL_STATE(12132)] = 456245, - [SMALL_STATE(12133)] = 456259, - [SMALL_STATE(12134)] = 456273, - [SMALL_STATE(12135)] = 456287, - [SMALL_STATE(12136)] = 456301, - [SMALL_STATE(12137)] = 456315, - [SMALL_STATE(12138)] = 456329, - [SMALL_STATE(12139)] = 456343, - [SMALL_STATE(12140)] = 456357, - [SMALL_STATE(12141)] = 456371, - [SMALL_STATE(12142)] = 456385, - [SMALL_STATE(12143)] = 456399, - [SMALL_STATE(12144)] = 456413, - [SMALL_STATE(12145)] = 456427, - [SMALL_STATE(12146)] = 456441, - [SMALL_STATE(12147)] = 456455, - [SMALL_STATE(12148)] = 456469, - [SMALL_STATE(12149)] = 456483, - [SMALL_STATE(12150)] = 456497, - [SMALL_STATE(12151)] = 456511, - [SMALL_STATE(12152)] = 456525, - [SMALL_STATE(12153)] = 456539, - [SMALL_STATE(12154)] = 456553, - [SMALL_STATE(12155)] = 456567, - [SMALL_STATE(12156)] = 456581, - [SMALL_STATE(12157)] = 456595, - [SMALL_STATE(12158)] = 456609, - [SMALL_STATE(12159)] = 456623, - [SMALL_STATE(12160)] = 456637, - [SMALL_STATE(12161)] = 456651, - [SMALL_STATE(12162)] = 456665, - [SMALL_STATE(12163)] = 456679, - [SMALL_STATE(12164)] = 456693, - [SMALL_STATE(12165)] = 456707, - [SMALL_STATE(12166)] = 456721, - [SMALL_STATE(12167)] = 456735, - [SMALL_STATE(12168)] = 456749, - [SMALL_STATE(12169)] = 456763, - [SMALL_STATE(12170)] = 456777, - [SMALL_STATE(12171)] = 456791, - [SMALL_STATE(12172)] = 456805, - [SMALL_STATE(12173)] = 456819, - [SMALL_STATE(12174)] = 456833, - [SMALL_STATE(12175)] = 456847, - [SMALL_STATE(12176)] = 456861, - [SMALL_STATE(12177)] = 456875, - [SMALL_STATE(12178)] = 456889, - [SMALL_STATE(12179)] = 456903, - [SMALL_STATE(12180)] = 456917, - [SMALL_STATE(12181)] = 456931, - [SMALL_STATE(12182)] = 456945, - [SMALL_STATE(12183)] = 456959, - [SMALL_STATE(12184)] = 456973, - [SMALL_STATE(12185)] = 456987, - [SMALL_STATE(12186)] = 457001, - [SMALL_STATE(12187)] = 457015, - [SMALL_STATE(12188)] = 457029, - [SMALL_STATE(12189)] = 457043, - [SMALL_STATE(12190)] = 457057, - [SMALL_STATE(12191)] = 457071, - [SMALL_STATE(12192)] = 457085, - [SMALL_STATE(12193)] = 457099, - [SMALL_STATE(12194)] = 457113, - [SMALL_STATE(12195)] = 457127, - [SMALL_STATE(12196)] = 457141, - [SMALL_STATE(12197)] = 457155, - [SMALL_STATE(12198)] = 457169, - [SMALL_STATE(12199)] = 457183, - [SMALL_STATE(12200)] = 457197, - [SMALL_STATE(12201)] = 457211, - [SMALL_STATE(12202)] = 457225, - [SMALL_STATE(12203)] = 457239, - [SMALL_STATE(12204)] = 457253, - [SMALL_STATE(12205)] = 457267, - [SMALL_STATE(12206)] = 457281, - [SMALL_STATE(12207)] = 457295, - [SMALL_STATE(12208)] = 457309, - [SMALL_STATE(12209)] = 457323, - [SMALL_STATE(12210)] = 457337, - [SMALL_STATE(12211)] = 457351, - [SMALL_STATE(12212)] = 457365, - [SMALL_STATE(12213)] = 457379, - [SMALL_STATE(12214)] = 457393, - [SMALL_STATE(12215)] = 457407, - [SMALL_STATE(12216)] = 457421, - [SMALL_STATE(12217)] = 457437, - [SMALL_STATE(12218)] = 457451, - [SMALL_STATE(12219)] = 457465, - [SMALL_STATE(12220)] = 457479, - [SMALL_STATE(12221)] = 457493, - [SMALL_STATE(12222)] = 457507, - [SMALL_STATE(12223)] = 457521, - [SMALL_STATE(12224)] = 457535, - [SMALL_STATE(12225)] = 457549, - [SMALL_STATE(12226)] = 457563, - [SMALL_STATE(12227)] = 457577, - [SMALL_STATE(12228)] = 457591, - [SMALL_STATE(12229)] = 457605, - [SMALL_STATE(12230)] = 457619, - [SMALL_STATE(12231)] = 457633, - [SMALL_STATE(12232)] = 457647, - [SMALL_STATE(12233)] = 457661, - [SMALL_STATE(12234)] = 457675, - [SMALL_STATE(12235)] = 457689, - [SMALL_STATE(12236)] = 457703, - [SMALL_STATE(12237)] = 457717, - [SMALL_STATE(12238)] = 457731, - [SMALL_STATE(12239)] = 457745, - [SMALL_STATE(12240)] = 457759, - [SMALL_STATE(12241)] = 457773, - [SMALL_STATE(12242)] = 457787, - [SMALL_STATE(12243)] = 457801, - [SMALL_STATE(12244)] = 457815, - [SMALL_STATE(12245)] = 457829, - [SMALL_STATE(12246)] = 457843, - [SMALL_STATE(12247)] = 457859, - [SMALL_STATE(12248)] = 457873, - [SMALL_STATE(12249)] = 457887, - [SMALL_STATE(12250)] = 457901, - [SMALL_STATE(12251)] = 457915, - [SMALL_STATE(12252)] = 457929, - [SMALL_STATE(12253)] = 457943, - [SMALL_STATE(12254)] = 457957, - [SMALL_STATE(12255)] = 457971, - [SMALL_STATE(12256)] = 457985, - [SMALL_STATE(12257)] = 457999, - [SMALL_STATE(12258)] = 458013, - [SMALL_STATE(12259)] = 458027, - [SMALL_STATE(12260)] = 458041, - [SMALL_STATE(12261)] = 458055, - [SMALL_STATE(12262)] = 458069, - [SMALL_STATE(12263)] = 458083, - [SMALL_STATE(12264)] = 458097, - [SMALL_STATE(12265)] = 458111, - [SMALL_STATE(12266)] = 458125, - [SMALL_STATE(12267)] = 458139, - [SMALL_STATE(12268)] = 458153, - [SMALL_STATE(12269)] = 458167, - [SMALL_STATE(12270)] = 458181, - [SMALL_STATE(12271)] = 458195, - [SMALL_STATE(12272)] = 458209, - [SMALL_STATE(12273)] = 458223, - [SMALL_STATE(12274)] = 458237, - [SMALL_STATE(12275)] = 458251, - [SMALL_STATE(12276)] = 458265, - [SMALL_STATE(12277)] = 458279, - [SMALL_STATE(12278)] = 458293, - [SMALL_STATE(12279)] = 458307, - [SMALL_STATE(12280)] = 458321, - [SMALL_STATE(12281)] = 458335, - [SMALL_STATE(12282)] = 458349, - [SMALL_STATE(12283)] = 458363, - [SMALL_STATE(12284)] = 458377, - [SMALL_STATE(12285)] = 458391, - [SMALL_STATE(12286)] = 458405, - [SMALL_STATE(12287)] = 458419, - [SMALL_STATE(12288)] = 458433, - [SMALL_STATE(12289)] = 458447, - [SMALL_STATE(12290)] = 458461, - [SMALL_STATE(12291)] = 458475, - [SMALL_STATE(12292)] = 458489, - [SMALL_STATE(12293)] = 458503, - [SMALL_STATE(12294)] = 458517, - [SMALL_STATE(12295)] = 458531, - [SMALL_STATE(12296)] = 458545, - [SMALL_STATE(12297)] = 458559, - [SMALL_STATE(12298)] = 458573, - [SMALL_STATE(12299)] = 458587, - [SMALL_STATE(12300)] = 458601, - [SMALL_STATE(12301)] = 458615, - [SMALL_STATE(12302)] = 458629, - [SMALL_STATE(12303)] = 458643, - [SMALL_STATE(12304)] = 458657, - [SMALL_STATE(12305)] = 458671, - [SMALL_STATE(12306)] = 458685, - [SMALL_STATE(12307)] = 458699, - [SMALL_STATE(12308)] = 458713, - [SMALL_STATE(12309)] = 458727, - [SMALL_STATE(12310)] = 458741, - [SMALL_STATE(12311)] = 458755, - [SMALL_STATE(12312)] = 458769, - [SMALL_STATE(12313)] = 458783, - [SMALL_STATE(12314)] = 458797, - [SMALL_STATE(12315)] = 458811, - [SMALL_STATE(12316)] = 458825, - [SMALL_STATE(12317)] = 458839, - [SMALL_STATE(12318)] = 458853, - [SMALL_STATE(12319)] = 458867, - [SMALL_STATE(12320)] = 458881, - [SMALL_STATE(12321)] = 458895, - [SMALL_STATE(12322)] = 458909, - [SMALL_STATE(12323)] = 458923, - [SMALL_STATE(12324)] = 458937, - [SMALL_STATE(12325)] = 458951, - [SMALL_STATE(12326)] = 458965, - [SMALL_STATE(12327)] = 458979, - [SMALL_STATE(12328)] = 458993, - [SMALL_STATE(12329)] = 459007, - [SMALL_STATE(12330)] = 459021, - [SMALL_STATE(12331)] = 459035, - [SMALL_STATE(12332)] = 459049, - [SMALL_STATE(12333)] = 459063, - [SMALL_STATE(12334)] = 459077, - [SMALL_STATE(12335)] = 459091, - [SMALL_STATE(12336)] = 459105, - [SMALL_STATE(12337)] = 459119, - [SMALL_STATE(12338)] = 459133, - [SMALL_STATE(12339)] = 459147, - [SMALL_STATE(12340)] = 459161, - [SMALL_STATE(12341)] = 459175, - [SMALL_STATE(12342)] = 459189, - [SMALL_STATE(12343)] = 459203, - [SMALL_STATE(12344)] = 459217, - [SMALL_STATE(12345)] = 459231, - [SMALL_STATE(12346)] = 459245, - [SMALL_STATE(12347)] = 459259, - [SMALL_STATE(12348)] = 459263, + [SMALL_STATE(2295)] = 0, + [SMALL_STATE(2296)] = 97, + [SMALL_STATE(2297)] = 176, + [SMALL_STATE(2298)] = 251, + [SMALL_STATE(2299)] = 348, + [SMALL_STATE(2300)] = 423, + [SMALL_STATE(2301)] = 504, + [SMALL_STATE(2302)] = 585, + [SMALL_STATE(2303)] = 660, + [SMALL_STATE(2304)] = 739, + [SMALL_STATE(2305)] = 835, + [SMALL_STATE(2306)] = 909, + [SMALL_STATE(2307)] = 989, + [SMALL_STATE(2308)] = 1067, + [SMALL_STATE(2309)] = 1163, + [SMALL_STATE(2310)] = 1240, + [SMALL_STATE(2311)] = 1319, + [SMALL_STATE(2312)] = 1395, + [SMALL_STATE(2313)] = 1473, + [SMALL_STATE(2314)] = 1545, + [SMALL_STATE(2315)] = 1619, + [SMALL_STATE(2316)] = 1695, + [SMALL_STATE(2317)] = 1771, + [SMALL_STATE(2318)] = 1847, + [SMALL_STATE(2319)] = 1923, + [SMALL_STATE(2320)] = 1995, + [SMALL_STATE(2321)] = 2066, + [SMALL_STATE(2322)] = 2141, + [SMALL_STATE(2323)] = 2218, + [SMALL_STATE(2324)] = 2289, + [SMALL_STATE(2325)] = 2360, + [SMALL_STATE(2326)] = 2435, + [SMALL_STATE(2327)] = 2510, + [SMALL_STATE(2328)] = 2587, + [SMALL_STATE(2329)] = 2662, + [SMALL_STATE(2330)] = 2735, + [SMALL_STATE(2331)] = 2810, + [SMALL_STATE(2332)] = 2882, + [SMALL_STATE(2333)] = 2964, + [SMALL_STATE(2334)] = 3038, + [SMALL_STATE(2335)] = 3120, + [SMALL_STATE(2336)] = 3194, + [SMALL_STATE(2337)] = 3268, + [SMALL_STATE(2338)] = 3338, + [SMALL_STATE(2339)] = 3414, + [SMALL_STATE(2340)] = 3496, + [SMALL_STATE(2341)] = 3566, + [SMALL_STATE(2342)] = 3640, + [SMALL_STATE(2343)] = 3712, + [SMALL_STATE(2344)] = 3782, + [SMALL_STATE(2345)] = 3856, + [SMALL_STATE(2346)] = 3938, + [SMALL_STATE(2347)] = 4008, + [SMALL_STATE(2348)] = 4080, + [SMALL_STATE(2349)] = 4150, + [SMALL_STATE(2350)] = 4232, + [SMALL_STATE(2351)] = 4301, + [SMALL_STATE(2352)] = 4376, + [SMALL_STATE(2353)] = 4449, + [SMALL_STATE(2354)] = 4520, + [SMALL_STATE(2355)] = 4601, + [SMALL_STATE(2356)] = 4670, + [SMALL_STATE(2357)] = 4739, + [SMALL_STATE(2358)] = 4808, + [SMALL_STATE(2359)] = 4885, + [SMALL_STATE(2360)] = 4954, + [SMALL_STATE(2361)] = 5023, + [SMALL_STATE(2362)] = 5104, + [SMALL_STATE(2363)] = 5177, + [SMALL_STATE(2364)] = 5246, + [SMALL_STATE(2365)] = 5315, + [SMALL_STATE(2366)] = 5384, + [SMALL_STATE(2367)] = 5453, + [SMALL_STATE(2368)] = 5534, + [SMALL_STATE(2369)] = 5609, + [SMALL_STATE(2370)] = 5678, + [SMALL_STATE(2371)] = 5753, + [SMALL_STATE(2372)] = 5822, + [SMALL_STATE(2373)] = 5891, + [SMALL_STATE(2374)] = 5960, + [SMALL_STATE(2375)] = 6041, + [SMALL_STATE(2376)] = 6110, + [SMALL_STATE(2377)] = 6179, + [SMALL_STATE(2378)] = 6248, + [SMALL_STATE(2379)] = 6317, + [SMALL_STATE(2380)] = 6398, + [SMALL_STATE(2381)] = 6469, + [SMALL_STATE(2382)] = 6538, + [SMALL_STATE(2383)] = 6610, + [SMALL_STATE(2384)] = 6682, + [SMALL_STATE(2385)] = 6758, + [SMALL_STATE(2386)] = 6838, + [SMALL_STATE(2387)] = 6908, + [SMALL_STATE(2388)] = 6980, + [SMALL_STATE(2389)] = 7054, + [SMALL_STATE(2390)] = 7124, + [SMALL_STATE(2391)] = 7196, + [SMALL_STATE(2392)] = 7268, + [SMALL_STATE(2393)] = 7340, + [SMALL_STATE(2394)] = 7410, + [SMALL_STATE(2395)] = 7482, + [SMALL_STATE(2396)] = 7558, + [SMALL_STATE(2397)] = 7630, + [SMALL_STATE(2398)] = 7706, + [SMALL_STATE(2399)] = 7786, + [SMALL_STATE(2400)] = 7862, + [SMALL_STATE(2401)] = 7934, + [SMALL_STATE(2402)] = 8008, + [SMALL_STATE(2403)] = 8088, + [SMALL_STATE(2404)] = 8168, + [SMALL_STATE(2405)] = 8236, + [SMALL_STATE(2406)] = 8312, + [SMALL_STATE(2407)] = 8388, + [SMALL_STATE(2408)] = 8458, + [SMALL_STATE(2409)] = 8534, + [SMALL_STATE(2410)] = 8610, + [SMALL_STATE(2411)] = 8686, + [SMALL_STATE(2412)] = 8762, + [SMALL_STATE(2413)] = 8836, + [SMALL_STATE(2414)] = 8910, + [SMALL_STATE(2415)] = 8982, + [SMALL_STATE(2416)] = 9058, + [SMALL_STATE(2417)] = 9138, + [SMALL_STATE(2418)] = 9206, + [SMALL_STATE(2419)] = 9273, + [SMALL_STATE(2420)] = 9346, + [SMALL_STATE(2421)] = 9421, + [SMALL_STATE(2422)] = 9496, + [SMALL_STATE(2423)] = 9569, + [SMALL_STATE(2424)] = 9636, + [SMALL_STATE(2425)] = 9707, + [SMALL_STATE(2426)] = 9774, + [SMALL_STATE(2427)] = 9841, + [SMALL_STATE(2428)] = 9908, + [SMALL_STATE(2429)] = 9981, + [SMALL_STATE(2430)] = 10056, + [SMALL_STATE(2431)] = 10123, + [SMALL_STATE(2432)] = 10190, + [SMALL_STATE(2433)] = 10269, + [SMALL_STATE(2434)] = 10336, + [SMALL_STATE(2435)] = 10403, + [SMALL_STATE(2436)] = 10470, + [SMALL_STATE(2437)] = 10549, + [SMALL_STATE(2438)] = 10616, + [SMALL_STATE(2439)] = 10683, + [SMALL_STATE(2440)] = 10750, + [SMALL_STATE(2441)] = 10821, + [SMALL_STATE(2442)] = 10890, + [SMALL_STATE(2443)] = 10965, + [SMALL_STATE(2444)] = 11036, + [SMALL_STATE(2445)] = 11115, + [SMALL_STATE(2446)] = 11182, + [SMALL_STATE(2447)] = 11255, + [SMALL_STATE(2448)] = 11328, + [SMALL_STATE(2449)] = 11401, + [SMALL_STATE(2450)] = 11474, + [SMALL_STATE(2451)] = 11547, + [SMALL_STATE(2452)] = 11620, + [SMALL_STATE(2453)] = 11693, + [SMALL_STATE(2454)] = 11766, + [SMALL_STATE(2455)] = 11841, + [SMALL_STATE(2456)] = 11908, + [SMALL_STATE(2457)] = 11981, + [SMALL_STATE(2458)] = 12048, + [SMALL_STATE(2459)] = 12119, + [SMALL_STATE(2460)] = 12194, + [SMALL_STATE(2461)] = 12265, + [SMALL_STATE(2462)] = 12336, + [SMALL_STATE(2463)] = 12407, + [SMALL_STATE(2464)] = 12474, + [SMALL_STATE(2465)] = 12549, + [SMALL_STATE(2466)] = 12616, + [SMALL_STATE(2467)] = 12683, + [SMALL_STATE(2468)] = 12752, + [SMALL_STATE(2469)] = 12823, + [SMALL_STATE(2470)] = 12898, + [SMALL_STATE(2471)] = 12977, + [SMALL_STATE(2472)] = 13046, + [SMALL_STATE(2473)] = 13121, + [SMALL_STATE(2474)] = 13194, + [SMALL_STATE(2475)] = 13267, + [SMALL_STATE(2476)] = 13340, + [SMALL_STATE(2477)] = 13407, + [SMALL_STATE(2478)] = 13474, + [SMALL_STATE(2479)] = 13553, + [SMALL_STATE(2480)] = 13621, + [SMALL_STATE(2481)] = 13727, + [SMALL_STATE(2482)] = 13833, + [SMALL_STATE(2483)] = 13903, + [SMALL_STATE(2484)] = 13969, + [SMALL_STATE(2485)] = 14039, + [SMALL_STATE(2486)] = 14105, + [SMALL_STATE(2487)] = 14171, + [SMALL_STATE(2488)] = 14237, + [SMALL_STATE(2489)] = 14303, + [SMALL_STATE(2490)] = 14373, + [SMALL_STATE(2491)] = 14439, + [SMALL_STATE(2492)] = 14505, + [SMALL_STATE(2493)] = 14577, + [SMALL_STATE(2494)] = 14647, + [SMALL_STATE(2495)] = 14715, + [SMALL_STATE(2496)] = 14783, + [SMALL_STATE(2497)] = 14851, + [SMALL_STATE(2498)] = 14919, + [SMALL_STATE(2499)] = 14985, + [SMALL_STATE(2500)] = 15055, + [SMALL_STATE(2501)] = 15127, + [SMALL_STATE(2502)] = 15233, + [SMALL_STATE(2503)] = 15303, + [SMALL_STATE(2504)] = 15369, + [SMALL_STATE(2505)] = 15475, + [SMALL_STATE(2506)] = 15541, + [SMALL_STATE(2507)] = 15611, + [SMALL_STATE(2508)] = 15679, + [SMALL_STATE(2509)] = 15747, + [SMALL_STATE(2510)] = 15817, + [SMALL_STATE(2511)] = 15887, + [SMALL_STATE(2512)] = 15953, + [SMALL_STATE(2513)] = 16023, + [SMALL_STATE(2514)] = 16093, + [SMALL_STATE(2515)] = 16163, + [SMALL_STATE(2516)] = 16233, + [SMALL_STATE(2517)] = 16299, + [SMALL_STATE(2518)] = 16367, + [SMALL_STATE(2519)] = 16435, + [SMALL_STATE(2520)] = 16505, + [SMALL_STATE(2521)] = 16571, + [SMALL_STATE(2522)] = 16639, + [SMALL_STATE(2523)] = 16705, + [SMALL_STATE(2524)] = 16771, + [SMALL_STATE(2525)] = 16837, + [SMALL_STATE(2526)] = 16907, + [SMALL_STATE(2527)] = 16977, + [SMALL_STATE(2528)] = 17043, + [SMALL_STATE(2529)] = 17149, + [SMALL_STATE(2530)] = 17219, + [SMALL_STATE(2531)] = 17287, + [SMALL_STATE(2532)] = 17393, + [SMALL_STATE(2533)] = 17463, + [SMALL_STATE(2534)] = 17533, + [SMALL_STATE(2535)] = 17603, + [SMALL_STATE(2536)] = 17673, + [SMALL_STATE(2537)] = 17741, + [SMALL_STATE(2538)] = 17807, + [SMALL_STATE(2539)] = 17873, + [SMALL_STATE(2540)] = 17939, + [SMALL_STATE(2541)] = 18005, + [SMALL_STATE(2542)] = 18075, + [SMALL_STATE(2543)] = 18143, + [SMALL_STATE(2544)] = 18209, + [SMALL_STATE(2545)] = 18277, + [SMALL_STATE(2546)] = 18345, + [SMALL_STATE(2547)] = 18411, + [SMALL_STATE(2548)] = 18477, + [SMALL_STATE(2549)] = 18545, + [SMALL_STATE(2550)] = 18615, + [SMALL_STATE(2551)] = 18681, + [SMALL_STATE(2552)] = 18749, + [SMALL_STATE(2553)] = 18815, + [SMALL_STATE(2554)] = 18881, + [SMALL_STATE(2555)] = 18947, + [SMALL_STATE(2556)] = 19015, + [SMALL_STATE(2557)] = 19083, + [SMALL_STATE(2558)] = 19161, + [SMALL_STATE(2559)] = 19239, + [SMALL_STATE(2560)] = 19305, + [SMALL_STATE(2561)] = 19371, + [SMALL_STATE(2562)] = 19437, + [SMALL_STATE(2563)] = 19503, + [SMALL_STATE(2564)] = 19569, + [SMALL_STATE(2565)] = 19635, + [SMALL_STATE(2566)] = 19701, + [SMALL_STATE(2567)] = 19769, + [SMALL_STATE(2568)] = 19835, + [SMALL_STATE(2569)] = 19901, + [SMALL_STATE(2570)] = 19971, + [SMALL_STATE(2571)] = 20037, + [SMALL_STATE(2572)] = 20103, + [SMALL_STATE(2573)] = 20171, + [SMALL_STATE(2574)] = 20237, + [SMALL_STATE(2575)] = 20343, + [SMALL_STATE(2576)] = 20411, + [SMALL_STATE(2577)] = 20479, + [SMALL_STATE(2578)] = 20585, + [SMALL_STATE(2579)] = 20655, + [SMALL_STATE(2580)] = 20727, + [SMALL_STATE(2581)] = 20797, + [SMALL_STATE(2582)] = 20875, + [SMALL_STATE(2583)] = 20945, + [SMALL_STATE(2584)] = 21017, + [SMALL_STATE(2585)] = 21095, + [SMALL_STATE(2586)] = 21173, + [SMALL_STATE(2587)] = 21239, + [SMALL_STATE(2588)] = 21308, + [SMALL_STATE(2589)] = 21373, + [SMALL_STATE(2590)] = 21438, + [SMALL_STATE(2591)] = 21503, + [SMALL_STATE(2592)] = 21568, + [SMALL_STATE(2593)] = 21633, + [SMALL_STATE(2594)] = 21698, + [SMALL_STATE(2595)] = 21799, + [SMALL_STATE(2596)] = 21900, + [SMALL_STATE(2597)] = 21965, + [SMALL_STATE(2598)] = 22042, + [SMALL_STATE(2599)] = 22107, + [SMALL_STATE(2600)] = 22208, + [SMALL_STATE(2601)] = 22273, + [SMALL_STATE(2602)] = 22338, + [SMALL_STATE(2603)] = 22403, + [SMALL_STATE(2604)] = 22468, + [SMALL_STATE(2605)] = 22533, + [SMALL_STATE(2606)] = 22598, + [SMALL_STATE(2607)] = 22663, + [SMALL_STATE(2608)] = 22728, + [SMALL_STATE(2609)] = 22803, + [SMALL_STATE(2610)] = 22874, + [SMALL_STATE(2611)] = 22945, + [SMALL_STATE(2612)] = 23024, + [SMALL_STATE(2613)] = 23121, + [SMALL_STATE(2614)] = 23210, + [SMALL_STATE(2615)] = 23291, + [SMALL_STATE(2616)] = 23368, + [SMALL_STATE(2617)] = 23445, + [SMALL_STATE(2618)] = 23530, + [SMALL_STATE(2619)] = 23623, + [SMALL_STATE(2620)] = 23718, + [SMALL_STATE(2621)] = 23783, + [SMALL_STATE(2622)] = 23848, + [SMALL_STATE(2623)] = 23913, + [SMALL_STATE(2624)] = 23978, + [SMALL_STATE(2625)] = 24043, + [SMALL_STATE(2626)] = 24108, + [SMALL_STATE(2627)] = 24173, + [SMALL_STATE(2628)] = 24238, + [SMALL_STATE(2629)] = 24303, + [SMALL_STATE(2630)] = 24368, + [SMALL_STATE(2631)] = 24433, + [SMALL_STATE(2632)] = 24498, + [SMALL_STATE(2633)] = 24563, + [SMALL_STATE(2634)] = 24628, + [SMALL_STATE(2635)] = 24693, + [SMALL_STATE(2636)] = 24770, + [SMALL_STATE(2637)] = 24835, + [SMALL_STATE(2638)] = 24900, + [SMALL_STATE(2639)] = 24965, + [SMALL_STATE(2640)] = 25042, + [SMALL_STATE(2641)] = 25107, + [SMALL_STATE(2642)] = 25172, + [SMALL_STATE(2643)] = 25273, + [SMALL_STATE(2644)] = 25338, + [SMALL_STATE(2645)] = 25403, + [SMALL_STATE(2646)] = 25468, + [SMALL_STATE(2647)] = 25533, + [SMALL_STATE(2648)] = 25602, + [SMALL_STATE(2649)] = 25667, + [SMALL_STATE(2650)] = 25764, + [SMALL_STATE(2651)] = 25829, + [SMALL_STATE(2652)] = 25930, + [SMALL_STATE(2653)] = 25995, + [SMALL_STATE(2654)] = 26072, + [SMALL_STATE(2655)] = 26137, + [SMALL_STATE(2656)] = 26202, + [SMALL_STATE(2657)] = 26269, + [SMALL_STATE(2658)] = 26334, + [SMALL_STATE(2659)] = 26411, + [SMALL_STATE(2660)] = 26476, + [SMALL_STATE(2661)] = 26541, + [SMALL_STATE(2662)] = 26606, + [SMALL_STATE(2663)] = 26671, + [SMALL_STATE(2664)] = 26736, + [SMALL_STATE(2665)] = 26813, + [SMALL_STATE(2666)] = 26878, + [SMALL_STATE(2667)] = 26943, + [SMALL_STATE(2668)] = 27016, + [SMALL_STATE(2669)] = 27081, + [SMALL_STATE(2670)] = 27150, + [SMALL_STATE(2671)] = 27219, + [SMALL_STATE(2672)] = 27284, + [SMALL_STATE(2673)] = 27349, + [SMALL_STATE(2674)] = 27414, + [SMALL_STATE(2675)] = 27479, + [SMALL_STATE(2676)] = 27544, + [SMALL_STATE(2677)] = 27613, + [SMALL_STATE(2678)] = 27678, + [SMALL_STATE(2679)] = 27743, + [SMALL_STATE(2680)] = 27808, + [SMALL_STATE(2681)] = 27873, + [SMALL_STATE(2682)] = 27942, + [SMALL_STATE(2683)] = 28007, + [SMALL_STATE(2684)] = 28072, + [SMALL_STATE(2685)] = 28137, + [SMALL_STATE(2686)] = 28202, + [SMALL_STATE(2687)] = 28267, + [SMALL_STATE(2688)] = 28332, + [SMALL_STATE(2689)] = 28397, + [SMALL_STATE(2690)] = 28462, + [SMALL_STATE(2691)] = 28527, + [SMALL_STATE(2692)] = 28592, + [SMALL_STATE(2693)] = 28689, + [SMALL_STATE(2694)] = 28754, + [SMALL_STATE(2695)] = 28819, + [SMALL_STATE(2696)] = 28884, + [SMALL_STATE(2697)] = 28949, + [SMALL_STATE(2698)] = 29014, + [SMALL_STATE(2699)] = 29079, + [SMALL_STATE(2700)] = 29180, + [SMALL_STATE(2701)] = 29245, + [SMALL_STATE(2702)] = 29312, + [SMALL_STATE(2703)] = 29377, + [SMALL_STATE(2704)] = 29442, + [SMALL_STATE(2705)] = 29507, + [SMALL_STATE(2706)] = 29572, + [SMALL_STATE(2707)] = 29637, + [SMALL_STATE(2708)] = 29702, + [SMALL_STATE(2709)] = 29767, + [SMALL_STATE(2710)] = 29832, + [SMALL_STATE(2711)] = 29897, + [SMALL_STATE(2712)] = 29962, + [SMALL_STATE(2713)] = 30027, + [SMALL_STATE(2714)] = 30092, + [SMALL_STATE(2715)] = 30157, + [SMALL_STATE(2716)] = 30222, + [SMALL_STATE(2717)] = 30293, + [SMALL_STATE(2718)] = 30362, + [SMALL_STATE(2719)] = 30439, + [SMALL_STATE(2720)] = 30504, + [SMALL_STATE(2721)] = 30569, + [SMALL_STATE(2722)] = 30634, + [SMALL_STATE(2723)] = 30699, + [SMALL_STATE(2724)] = 30764, + [SMALL_STATE(2725)] = 30841, + [SMALL_STATE(2726)] = 30908, + [SMALL_STATE(2727)] = 30973, + [SMALL_STATE(2728)] = 31038, + [SMALL_STATE(2729)] = 31103, + [SMALL_STATE(2730)] = 31168, + [SMALL_STATE(2731)] = 31233, + [SMALL_STATE(2732)] = 31298, + [SMALL_STATE(2733)] = 31363, + [SMALL_STATE(2734)] = 31428, + [SMALL_STATE(2735)] = 31501, + [SMALL_STATE(2736)] = 31602, + [SMALL_STATE(2737)] = 31667, + [SMALL_STATE(2738)] = 31732, + [SMALL_STATE(2739)] = 31797, + [SMALL_STATE(2740)] = 31862, + [SMALL_STATE(2741)] = 31927, + [SMALL_STATE(2742)] = 31992, + [SMALL_STATE(2743)] = 32057, + [SMALL_STATE(2744)] = 32122, + [SMALL_STATE(2745)] = 32187, + [SMALL_STATE(2746)] = 32288, + [SMALL_STATE(2747)] = 32389, + [SMALL_STATE(2748)] = 32454, + [SMALL_STATE(2749)] = 32519, + [SMALL_STATE(2750)] = 32584, + [SMALL_STATE(2751)] = 32649, + [SMALL_STATE(2752)] = 32750, + [SMALL_STATE(2753)] = 32817, + [SMALL_STATE(2754)] = 32882, + [SMALL_STATE(2755)] = 32947, + [SMALL_STATE(2756)] = 33044, + [SMALL_STATE(2757)] = 33109, + [SMALL_STATE(2758)] = 33174, + [SMALL_STATE(2759)] = 33239, + [SMALL_STATE(2760)] = 33306, + [SMALL_STATE(2761)] = 33371, + [SMALL_STATE(2762)] = 33436, + [SMALL_STATE(2763)] = 33537, + [SMALL_STATE(2764)] = 33602, + [SMALL_STATE(2765)] = 33667, + [SMALL_STATE(2766)] = 33732, + [SMALL_STATE(2767)] = 33797, + [SMALL_STATE(2768)] = 33862, + [SMALL_STATE(2769)] = 33927, + [SMALL_STATE(2770)] = 33992, + [SMALL_STATE(2771)] = 34057, + [SMALL_STATE(2772)] = 34122, + [SMALL_STATE(2773)] = 34187, + [SMALL_STATE(2774)] = 34256, + [SMALL_STATE(2775)] = 34323, + [SMALL_STATE(2776)] = 34400, + [SMALL_STATE(2777)] = 34465, + [SMALL_STATE(2778)] = 34530, + [SMALL_STATE(2779)] = 34595, + [SMALL_STATE(2780)] = 34664, + [SMALL_STATE(2781)] = 34728, + [SMALL_STATE(2782)] = 34832, + [SMALL_STATE(2783)] = 34898, + [SMALL_STATE(2784)] = 34962, + [SMALL_STATE(2785)] = 35034, + [SMALL_STATE(2786)] = 35102, + [SMALL_STATE(2787)] = 35168, + [SMALL_STATE(2788)] = 35234, + [SMALL_STATE(2789)] = 35300, + [SMALL_STATE(2790)] = 35364, + [SMALL_STATE(2791)] = 35428, + [SMALL_STATE(2792)] = 35492, + [SMALL_STATE(2793)] = 35556, + [SMALL_STATE(2794)] = 35620, + [SMALL_STATE(2795)] = 35684, + [SMALL_STATE(2796)] = 35760, + [SMALL_STATE(2797)] = 35830, + [SMALL_STATE(2798)] = 35894, + [SMALL_STATE(2799)] = 35958, + [SMALL_STATE(2800)] = 36024, + [SMALL_STATE(2801)] = 36088, + [SMALL_STATE(2802)] = 36164, + [SMALL_STATE(2803)] = 36240, + [SMALL_STATE(2804)] = 36316, + [SMALL_STATE(2805)] = 36380, + [SMALL_STATE(2806)] = 36446, + [SMALL_STATE(2807)] = 36510, + [SMALL_STATE(2808)] = 36576, + [SMALL_STATE(2809)] = 36640, + [SMALL_STATE(2810)] = 36704, + [SMALL_STATE(2811)] = 36770, + [SMALL_STATE(2812)] = 36846, + [SMALL_STATE(2813)] = 36910, + [SMALL_STATE(2814)] = 36976, + [SMALL_STATE(2815)] = 37040, + [SMALL_STATE(2816)] = 37108, + [SMALL_STATE(2817)] = 37178, + [SMALL_STATE(2818)] = 37242, + [SMALL_STATE(2819)] = 37346, + [SMALL_STATE(2820)] = 37414, + [SMALL_STATE(2821)] = 37478, + [SMALL_STATE(2822)] = 37542, + [SMALL_STATE(2823)] = 37618, + [SMALL_STATE(2824)] = 37682, + [SMALL_STATE(2825)] = 37746, + [SMALL_STATE(2826)] = 37810, + [SMALL_STATE(2827)] = 37876, + [SMALL_STATE(2828)] = 37952, + [SMALL_STATE(2829)] = 38016, + [SMALL_STATE(2830)] = 38084, + [SMALL_STATE(2831)] = 38148, + [SMALL_STATE(2832)] = 38212, + [SMALL_STATE(2833)] = 38278, + [SMALL_STATE(2834)] = 38346, + [SMALL_STATE(2835)] = 38412, + [SMALL_STATE(2836)] = 38488, + [SMALL_STATE(2837)] = 38564, + [SMALL_STATE(2838)] = 38628, + [SMALL_STATE(2839)] = 38696, + [SMALL_STATE(2840)] = 38762, + [SMALL_STATE(2841)] = 38826, + [SMALL_STATE(2842)] = 38890, + [SMALL_STATE(2843)] = 38966, + [SMALL_STATE(2844)] = 39038, + [SMALL_STATE(2845)] = 39102, + [SMALL_STATE(2846)] = 39166, + [SMALL_STATE(2847)] = 39230, + [SMALL_STATE(2848)] = 39294, + [SMALL_STATE(2849)] = 39358, + [SMALL_STATE(2850)] = 39422, + [SMALL_STATE(2851)] = 39488, + [SMALL_STATE(2852)] = 39592, + [SMALL_STATE(2853)] = 39656, + [SMALL_STATE(2854)] = 39720, + [SMALL_STATE(2855)] = 39786, + [SMALL_STATE(2856)] = 39890, + [SMALL_STATE(2857)] = 39960, + [SMALL_STATE(2858)] = 40026, + [SMALL_STATE(2859)] = 40092, + [SMALL_STATE(2860)] = 40158, + [SMALL_STATE(2861)] = 40222, + [SMALL_STATE(2862)] = 40286, + [SMALL_STATE(2863)] = 40354, + [SMALL_STATE(2864)] = 40418, + [SMALL_STATE(2865)] = 40482, + [SMALL_STATE(2866)] = 40550, + [SMALL_STATE(2867)] = 40616, + [SMALL_STATE(2868)] = 40682, + [SMALL_STATE(2869)] = 40748, + [SMALL_STATE(2870)] = 40824, + [SMALL_STATE(2871)] = 40900, + [SMALL_STATE(2872)] = 40964, + [SMALL_STATE(2873)] = 41028, + [SMALL_STATE(2874)] = 41092, + [SMALL_STATE(2875)] = 41156, + [SMALL_STATE(2876)] = 41224, + [SMALL_STATE(2877)] = 41292, + [SMALL_STATE(2878)] = 41364, + [SMALL_STATE(2879)] = 41428, + [SMALL_STATE(2880)] = 41504, + [SMALL_STATE(2881)] = 41570, + [SMALL_STATE(2882)] = 41634, + [SMALL_STATE(2883)] = 41702, + [SMALL_STATE(2884)] = 41766, + [SMALL_STATE(2885)] = 41830, + [SMALL_STATE(2886)] = 41896, + [SMALL_STATE(2887)] = 41960, + [SMALL_STATE(2888)] = 42028, + [SMALL_STATE(2889)] = 42092, + [SMALL_STATE(2890)] = 42156, + [SMALL_STATE(2891)] = 42220, + [SMALL_STATE(2892)] = 42286, + [SMALL_STATE(2893)] = 42362, + [SMALL_STATE(2894)] = 42428, + [SMALL_STATE(2895)] = 42494, + [SMALL_STATE(2896)] = 42560, + [SMALL_STATE(2897)] = 42628, + [SMALL_STATE(2898)] = 42696, + [SMALL_STATE(2899)] = 42760, + [SMALL_STATE(2900)] = 42836, + [SMALL_STATE(2901)] = 42937, + [SMALL_STATE(2902)] = 43000, + [SMALL_STATE(2903)] = 43071, + [SMALL_STATE(2904)] = 43134, + [SMALL_STATE(2905)] = 43197, + [SMALL_STATE(2906)] = 43260, + [SMALL_STATE(2907)] = 43323, + [SMALL_STATE(2908)] = 43392, + [SMALL_STATE(2909)] = 43461, + [SMALL_STATE(2910)] = 43524, + [SMALL_STATE(2911)] = 43593, + [SMALL_STATE(2912)] = 43656, + [SMALL_STATE(2913)] = 43719, + [SMALL_STATE(2914)] = 43790, + [SMALL_STATE(2915)] = 43853, + [SMALL_STATE(2916)] = 43916, + [SMALL_STATE(2917)] = 43979, + [SMALL_STATE(2918)] = 44048, + [SMALL_STATE(2919)] = 44111, + [SMALL_STATE(2920)] = 44180, + [SMALL_STATE(2921)] = 44243, + [SMALL_STATE(2922)] = 44318, + [SMALL_STATE(2923)] = 44417, + [SMALL_STATE(2924)] = 44480, + [SMALL_STATE(2925)] = 44579, + [SMALL_STATE(2926)] = 44642, + [SMALL_STATE(2927)] = 44705, + [SMALL_STATE(2928)] = 44806, + [SMALL_STATE(2929)] = 44869, + [SMALL_STATE(2930)] = 44932, + [SMALL_STATE(2931)] = 44995, + [SMALL_STATE(2932)] = 45058, + [SMALL_STATE(2933)] = 45121, + [SMALL_STATE(2934)] = 45184, + [SMALL_STATE(2935)] = 45247, + [SMALL_STATE(2936)] = 45310, + [SMALL_STATE(2937)] = 45373, + [SMALL_STATE(2938)] = 45436, + [SMALL_STATE(2939)] = 45499, + [SMALL_STATE(2940)] = 45562, + [SMALL_STATE(2941)] = 45625, + [SMALL_STATE(2942)] = 45688, + [SMALL_STATE(2943)] = 45751, + [SMALL_STATE(2944)] = 45814, + [SMALL_STATE(2945)] = 45881, + [SMALL_STATE(2946)] = 45976, + [SMALL_STATE(2947)] = 46043, + [SMALL_STATE(2948)] = 46110, + [SMALL_STATE(2949)] = 46173, + [SMALL_STATE(2950)] = 46236, + [SMALL_STATE(2951)] = 46299, + [SMALL_STATE(2952)] = 46362, + [SMALL_STATE(2953)] = 46463, + [SMALL_STATE(2954)] = 46526, + [SMALL_STATE(2955)] = 46589, + [SMALL_STATE(2956)] = 46652, + [SMALL_STATE(2957)] = 46715, + [SMALL_STATE(2958)] = 46790, + [SMALL_STATE(2959)] = 46853, + [SMALL_STATE(2960)] = 46928, + [SMALL_STATE(2961)] = 46991, + [SMALL_STATE(2962)] = 47054, + [SMALL_STATE(2963)] = 47117, + [SMALL_STATE(2964)] = 47180, + [SMALL_STATE(2965)] = 47243, + [SMALL_STATE(2966)] = 47306, + [SMALL_STATE(2967)] = 47371, + [SMALL_STATE(2968)] = 47434, + [SMALL_STATE(2969)] = 47509, + [SMALL_STATE(2970)] = 47572, + [SMALL_STATE(2971)] = 47635, + [SMALL_STATE(2972)] = 47698, + [SMALL_STATE(2973)] = 47761, + [SMALL_STATE(2974)] = 47824, + [SMALL_STATE(2975)] = 47887, + [SMALL_STATE(2976)] = 47950, + [SMALL_STATE(2977)] = 48013, + [SMALL_STATE(2978)] = 48080, + [SMALL_STATE(2979)] = 48143, + [SMALL_STATE(2980)] = 48206, + [SMALL_STATE(2981)] = 48269, + [SMALL_STATE(2982)] = 48332, + [SMALL_STATE(2983)] = 48395, + [SMALL_STATE(2984)] = 48458, + [SMALL_STATE(2985)] = 48521, + [SMALL_STATE(2986)] = 48584, + [SMALL_STATE(2987)] = 48647, + [SMALL_STATE(2988)] = 48710, + [SMALL_STATE(2989)] = 48773, + [SMALL_STATE(2990)] = 48836, + [SMALL_STATE(2991)] = 48899, + [SMALL_STATE(2992)] = 48968, + [SMALL_STATE(2993)] = 49039, + [SMALL_STATE(2994)] = 49106, + [SMALL_STATE(2995)] = 49171, + [SMALL_STATE(2996)] = 49236, + [SMALL_STATE(2997)] = 49337, + [SMALL_STATE(2998)] = 49412, + [SMALL_STATE(2999)] = 49475, + [SMALL_STATE(3000)] = 49550, + [SMALL_STATE(3001)] = 49651, + [SMALL_STATE(3002)] = 49722, + [SMALL_STATE(3003)] = 49787, + [SMALL_STATE(3004)] = 49888, + [SMALL_STATE(3005)] = 49953, + [SMALL_STATE(3006)] = 50016, + [SMALL_STATE(3007)] = 50079, + [SMALL_STATE(3008)] = 50144, + [SMALL_STATE(3009)] = 50245, + [SMALL_STATE(3010)] = 50316, + [SMALL_STATE(3011)] = 50379, + [SMALL_STATE(3012)] = 50442, + [SMALL_STATE(3013)] = 50505, + [SMALL_STATE(3014)] = 50580, + [SMALL_STATE(3015)] = 50643, + [SMALL_STATE(3016)] = 50706, + [SMALL_STATE(3017)] = 50771, + [SMALL_STATE(3018)] = 50834, + [SMALL_STATE(3019)] = 50897, + [SMALL_STATE(3020)] = 50960, + [SMALL_STATE(3021)] = 51023, + [SMALL_STATE(3022)] = 51086, + [SMALL_STATE(3023)] = 51149, + [SMALL_STATE(3024)] = 51212, + [SMALL_STATE(3025)] = 51275, + [SMALL_STATE(3026)] = 51342, + [SMALL_STATE(3027)] = 51407, + [SMALL_STATE(3028)] = 51470, + [SMALL_STATE(3029)] = 51545, + [SMALL_STATE(3030)] = 51620, + [SMALL_STATE(3031)] = 51683, + [SMALL_STATE(3032)] = 51758, + [SMALL_STATE(3033)] = 51821, + [SMALL_STATE(3034)] = 51884, + [SMALL_STATE(3035)] = 51947, + [SMALL_STATE(3036)] = 52010, + [SMALL_STATE(3037)] = 52073, + [SMALL_STATE(3038)] = 52148, + [SMALL_STATE(3039)] = 52211, + [SMALL_STATE(3040)] = 52274, + [SMALL_STATE(3041)] = 52337, + [SMALL_STATE(3042)] = 52400, + [SMALL_STATE(3043)] = 52463, + [SMALL_STATE(3044)] = 52526, + [SMALL_STATE(3045)] = 52589, + [SMALL_STATE(3046)] = 52652, + [SMALL_STATE(3047)] = 52715, + [SMALL_STATE(3048)] = 52778, + [SMALL_STATE(3049)] = 52877, + [SMALL_STATE(3050)] = 52952, + [SMALL_STATE(3051)] = 53053, + [SMALL_STATE(3052)] = 53154, + [SMALL_STATE(3053)] = 53217, + [SMALL_STATE(3054)] = 53280, + [SMALL_STATE(3055)] = 53375, + [SMALL_STATE(3056)] = 53450, + [SMALL_STATE(3057)] = 53513, + [SMALL_STATE(3058)] = 53576, + [SMALL_STATE(3059)] = 53639, + [SMALL_STATE(3060)] = 53702, + [SMALL_STATE(3061)] = 53801, + [SMALL_STATE(3062)] = 53900, + [SMALL_STATE(3063)] = 53999, + [SMALL_STATE(3064)] = 54062, + [SMALL_STATE(3065)] = 54125, + [SMALL_STATE(3066)] = 54188, + [SMALL_STATE(3067)] = 54251, + [SMALL_STATE(3068)] = 54352, + [SMALL_STATE(3069)] = 54415, + [SMALL_STATE(3070)] = 54488, + [SMALL_STATE(3071)] = 54557, + [SMALL_STATE(3072)] = 54620, + [SMALL_STATE(3073)] = 54685, + [SMALL_STATE(3074)] = 54748, + [SMALL_STATE(3075)] = 54817, + [SMALL_STATE(3076)] = 54894, + [SMALL_STATE(3077)] = 54989, + [SMALL_STATE(3078)] = 55076, + [SMALL_STATE(3079)] = 55155, + [SMALL_STATE(3080)] = 55230, + [SMALL_STATE(3081)] = 55313, + [SMALL_STATE(3082)] = 55404, + [SMALL_STATE(3083)] = 55497, + [SMALL_STATE(3084)] = 55560, + [SMALL_STATE(3085)] = 55623, + [SMALL_STATE(3086)] = 55686, + [SMALL_STATE(3087)] = 55781, + [SMALL_STATE(3088)] = 55844, + [SMALL_STATE(3089)] = 55909, + [SMALL_STATE(3090)] = 55972, + [SMALL_STATE(3091)] = 56037, + [SMALL_STATE(3092)] = 56136, + [SMALL_STATE(3093)] = 56199, + [SMALL_STATE(3094)] = 56298, + [SMALL_STATE(3095)] = 56361, + [SMALL_STATE(3096)] = 56460, + [SMALL_STATE(3097)] = 56561, + [SMALL_STATE(3098)] = 56624, + [SMALL_STATE(3099)] = 56687, + [SMALL_STATE(3100)] = 56750, + [SMALL_STATE(3101)] = 56819, + [SMALL_STATE(3102)] = 56920, + [SMALL_STATE(3103)] = 56991, + [SMALL_STATE(3104)] = 57054, + [SMALL_STATE(3105)] = 57117, + [SMALL_STATE(3106)] = 57218, + [SMALL_STATE(3107)] = 57281, + [SMALL_STATE(3108)] = 57352, + [SMALL_STATE(3109)] = 57415, + [SMALL_STATE(3110)] = 57478, + [SMALL_STATE(3111)] = 57543, + [SMALL_STATE(3112)] = 57606, + [SMALL_STATE(3113)] = 57707, + [SMALL_STATE(3114)] = 57770, + [SMALL_STATE(3115)] = 57833, + [SMALL_STATE(3116)] = 57904, + [SMALL_STATE(3117)] = 57975, + [SMALL_STATE(3118)] = 58074, + [SMALL_STATE(3119)] = 58145, + [SMALL_STATE(3120)] = 58208, + [SMALL_STATE(3121)] = 58273, + [SMALL_STATE(3122)] = 58344, + [SMALL_STATE(3123)] = 58407, + [SMALL_STATE(3124)] = 58470, + [SMALL_STATE(3125)] = 58541, + [SMALL_STATE(3126)] = 58604, + [SMALL_STATE(3127)] = 58667, + [SMALL_STATE(3128)] = 58742, + [SMALL_STATE(3129)] = 58807, + [SMALL_STATE(3130)] = 58870, + [SMALL_STATE(3131)] = 58939, + [SMALL_STATE(3132)] = 59002, + [SMALL_STATE(3133)] = 59077, + [SMALL_STATE(3134)] = 59142, + [SMALL_STATE(3135)] = 59205, + [SMALL_STATE(3136)] = 59268, + [SMALL_STATE(3137)] = 59331, + [SMALL_STATE(3138)] = 59400, + [SMALL_STATE(3139)] = 59463, + [SMALL_STATE(3140)] = 59526, + [SMALL_STATE(3141)] = 59589, + [SMALL_STATE(3142)] = 59652, + [SMALL_STATE(3143)] = 59753, + [SMALL_STATE(3144)] = 59854, + [SMALL_STATE(3145)] = 59925, + [SMALL_STATE(3146)] = 59988, + [SMALL_STATE(3147)] = 60051, + [SMALL_STATE(3148)] = 60114, + [SMALL_STATE(3149)] = 60177, + [SMALL_STATE(3150)] = 60240, + [SMALL_STATE(3151)] = 60303, + [SMALL_STATE(3152)] = 60366, + [SMALL_STATE(3153)] = 60429, + [SMALL_STATE(3154)] = 60492, + [SMALL_STATE(3155)] = 60555, + [SMALL_STATE(3156)] = 60618, + [SMALL_STATE(3157)] = 60681, + [SMALL_STATE(3158)] = 60780, + [SMALL_STATE(3159)] = 60843, + [SMALL_STATE(3160)] = 60905, + [SMALL_STATE(3161)] = 60967, + [SMALL_STATE(3162)] = 61029, + [SMALL_STATE(3163)] = 61091, + [SMALL_STATE(3164)] = 61153, + [SMALL_STATE(3165)] = 61215, + [SMALL_STATE(3166)] = 61277, + [SMALL_STATE(3167)] = 61339, + [SMALL_STATE(3168)] = 61401, + [SMALL_STATE(3169)] = 61463, + [SMALL_STATE(3170)] = 61565, + [SMALL_STATE(3171)] = 61627, + [SMALL_STATE(3172)] = 61695, + [SMALL_STATE(3173)] = 61757, + [SMALL_STATE(3174)] = 61819, + [SMALL_STATE(3175)] = 61881, + [SMALL_STATE(3176)] = 61949, + [SMALL_STATE(3177)] = 62017, + [SMALL_STATE(3178)] = 62085, + [SMALL_STATE(3179)] = 62159, + [SMALL_STATE(3180)] = 62233, + [SMALL_STATE(3181)] = 62295, + [SMALL_STATE(3182)] = 62359, + [SMALL_STATE(3183)] = 62423, + [SMALL_STATE(3184)] = 62505, + [SMALL_STATE(3185)] = 62567, + [SMALL_STATE(3186)] = 62633, + [SMALL_STATE(3187)] = 62697, + [SMALL_STATE(3188)] = 62759, + [SMALL_STATE(3189)] = 62825, + [SMALL_STATE(3190)] = 62923, + [SMALL_STATE(3191)] = 63021, + [SMALL_STATE(3192)] = 63085, + [SMALL_STATE(3193)] = 63153, + [SMALL_STATE(3194)] = 63251, + [SMALL_STATE(3195)] = 63319, + [SMALL_STATE(3196)] = 63385, + [SMALL_STATE(3197)] = 63447, + [SMALL_STATE(3198)] = 63521, + [SMALL_STATE(3199)] = 63585, + [SMALL_STATE(3200)] = 63649, + [SMALL_STATE(3201)] = 63723, + [SMALL_STATE(3202)] = 63785, + [SMALL_STATE(3203)] = 63847, + [SMALL_STATE(3204)] = 63913, + [SMALL_STATE(3205)] = 64015, + [SMALL_STATE(3206)] = 64081, + [SMALL_STATE(3207)] = 64183, + [SMALL_STATE(3208)] = 64249, + [SMALL_STATE(3209)] = 64315, + [SMALL_STATE(3210)] = 64381, + [SMALL_STATE(3211)] = 64443, + [SMALL_STATE(3212)] = 64507, + [SMALL_STATE(3213)] = 64581, + [SMALL_STATE(3214)] = 64645, + [SMALL_STATE(3215)] = 64707, + [SMALL_STATE(3216)] = 64771, + [SMALL_STATE(3217)] = 64833, + [SMALL_STATE(3218)] = 64897, + [SMALL_STATE(3219)] = 64959, + [SMALL_STATE(3220)] = 65021, + [SMALL_STATE(3221)] = 65119, + [SMALL_STATE(3222)] = 65181, + [SMALL_STATE(3223)] = 65245, + [SMALL_STATE(3224)] = 65307, + [SMALL_STATE(3225)] = 65377, + [SMALL_STATE(3226)] = 65479, + [SMALL_STATE(3227)] = 65545, + [SMALL_STATE(3228)] = 65613, + [SMALL_STATE(3229)] = 65683, + [SMALL_STATE(3230)] = 65773, + [SMALL_STATE(3231)] = 65835, + [SMALL_STATE(3232)] = 65897, + [SMALL_STATE(3233)] = 65963, + [SMALL_STATE(3234)] = 66037, + [SMALL_STATE(3235)] = 66099, + [SMALL_STATE(3236)] = 66163, + [SMALL_STATE(3237)] = 66229, + [SMALL_STATE(3238)] = 66297, + [SMALL_STATE(3239)] = 66361, + [SMALL_STATE(3240)] = 66425, + [SMALL_STATE(3241)] = 66489, + [SMALL_STATE(3242)] = 66551, + [SMALL_STATE(3243)] = 66653, + [SMALL_STATE(3244)] = 66727, + [SMALL_STATE(3245)] = 66821, + [SMALL_STATE(3246)] = 66915, + [SMALL_STATE(3247)] = 66987, + [SMALL_STATE(3248)] = 67049, + [SMALL_STATE(3249)] = 67123, + [SMALL_STATE(3250)] = 67191, + [SMALL_STATE(3251)] = 67259, + [SMALL_STATE(3252)] = 67321, + [SMALL_STATE(3253)] = 67383, + [SMALL_STATE(3254)] = 67447, + [SMALL_STATE(3255)] = 67511, + [SMALL_STATE(3256)] = 67609, + [SMALL_STATE(3257)] = 67679, + [SMALL_STATE(3258)] = 67745, + [SMALL_STATE(3259)] = 67815, + [SMALL_STATE(3260)] = 67913, + [SMALL_STATE(3261)] = 67981, + [SMALL_STATE(3262)] = 68083, + [SMALL_STATE(3263)] = 68149, + [SMALL_STATE(3264)] = 68251, + [SMALL_STATE(3265)] = 68317, + [SMALL_STATE(3266)] = 68379, + [SMALL_STATE(3267)] = 68445, + [SMALL_STATE(3268)] = 68511, + [SMALL_STATE(3269)] = 68581, + [SMALL_STATE(3270)] = 68643, + [SMALL_STATE(3271)] = 68705, + [SMALL_STATE(3272)] = 68779, + [SMALL_STATE(3273)] = 68843, + [SMALL_STATE(3274)] = 68913, + [SMALL_STATE(3275)] = 68983, + [SMALL_STATE(3276)] = 69045, + [SMALL_STATE(3277)] = 69139, + [SMALL_STATE(3278)] = 69201, + [SMALL_STATE(3279)] = 69263, + [SMALL_STATE(3280)] = 69339, + [SMALL_STATE(3281)] = 69401, + [SMALL_STATE(3282)] = 69467, + [SMALL_STATE(3283)] = 69561, + [SMALL_STATE(3284)] = 69623, + [SMALL_STATE(3285)] = 69685, + [SMALL_STATE(3286)] = 69783, + [SMALL_STATE(3287)] = 69845, + [SMALL_STATE(3288)] = 69907, + [SMALL_STATE(3289)] = 69977, + [SMALL_STATE(3290)] = 70045, + [SMALL_STATE(3291)] = 70107, + [SMALL_STATE(3292)] = 70173, + [SMALL_STATE(3293)] = 70275, + [SMALL_STATE(3294)] = 70341, + [SMALL_STATE(3295)] = 70409, + [SMALL_STATE(3296)] = 70471, + [SMALL_STATE(3297)] = 70569, + [SMALL_STATE(3298)] = 70631, + [SMALL_STATE(3299)] = 70697, + [SMALL_STATE(3300)] = 70759, + [SMALL_STATE(3301)] = 70821, + [SMALL_STATE(3302)] = 70887, + [SMALL_STATE(3303)] = 70949, + [SMALL_STATE(3304)] = 71015, + [SMALL_STATE(3305)] = 71081, + [SMALL_STATE(3306)] = 71179, + [SMALL_STATE(3307)] = 71249, + [SMALL_STATE(3308)] = 71323, + [SMALL_STATE(3309)] = 71397, + [SMALL_STATE(3310)] = 71459, + [SMALL_STATE(3311)] = 71545, + [SMALL_STATE(3312)] = 71607, + [SMALL_STATE(3313)] = 71669, + [SMALL_STATE(3314)] = 71737, + [SMALL_STATE(3315)] = 71801, + [SMALL_STATE(3316)] = 71863, + [SMALL_STATE(3317)] = 71927, + [SMALL_STATE(3318)] = 71991, + [SMALL_STATE(3319)] = 72057, + [SMALL_STATE(3320)] = 72119, + [SMALL_STATE(3321)] = 72181, + [SMALL_STATE(3322)] = 72247, + [SMALL_STATE(3323)] = 72315, + [SMALL_STATE(3324)] = 72413, + [SMALL_STATE(3325)] = 72481, + [SMALL_STATE(3326)] = 72545, + [SMALL_STATE(3327)] = 72607, + [SMALL_STATE(3328)] = 72669, + [SMALL_STATE(3329)] = 72761, + [SMALL_STATE(3330)] = 72859, + [SMALL_STATE(3331)] = 72937, + [SMALL_STATE(3332)] = 72999, + [SMALL_STATE(3333)] = 73063, + [SMALL_STATE(3334)] = 73124, + [SMALL_STATE(3335)] = 73185, + [SMALL_STATE(3336)] = 73246, + [SMALL_STATE(3337)] = 73343, + [SMALL_STATE(3338)] = 73440, + [SMALL_STATE(3339)] = 73501, + [SMALL_STATE(3340)] = 73562, + [SMALL_STATE(3341)] = 73623, + [SMALL_STATE(3342)] = 73684, + [SMALL_STATE(3343)] = 73745, + [SMALL_STATE(3344)] = 73806, + [SMALL_STATE(3345)] = 73867, + [SMALL_STATE(3346)] = 73928, + [SMALL_STATE(3347)] = 73989, + [SMALL_STATE(3348)] = 74082, + [SMALL_STATE(3349)] = 74151, + [SMALL_STATE(3350)] = 74212, + [SMALL_STATE(3351)] = 74277, + [SMALL_STATE(3352)] = 74338, + [SMALL_STATE(3353)] = 74399, + [SMALL_STATE(3354)] = 74460, + [SMALL_STATE(3355)] = 74521, + [SMALL_STATE(3356)] = 74582, + [SMALL_STATE(3357)] = 74645, + [SMALL_STATE(3358)] = 74706, + [SMALL_STATE(3359)] = 74767, + [SMALL_STATE(3360)] = 74828, + [SMALL_STATE(3361)] = 74893, + [SMALL_STATE(3362)] = 74954, + [SMALL_STATE(3363)] = 75015, + [SMALL_STATE(3364)] = 75076, + [SMALL_STATE(3365)] = 75139, + [SMALL_STATE(3366)] = 75212, + [SMALL_STATE(3367)] = 75273, + [SMALL_STATE(3368)] = 75334, + [SMALL_STATE(3369)] = 75395, + [SMALL_STATE(3370)] = 75456, + [SMALL_STATE(3371)] = 75517, + [SMALL_STATE(3372)] = 75578, + [SMALL_STATE(3373)] = 75675, + [SMALL_STATE(3374)] = 75736, + [SMALL_STATE(3375)] = 75797, + [SMALL_STATE(3376)] = 75858, + [SMALL_STATE(3377)] = 75923, + [SMALL_STATE(3378)] = 75984, + [SMALL_STATE(3379)] = 76045, + [SMALL_STATE(3380)] = 76106, + [SMALL_STATE(3381)] = 76167, + [SMALL_STATE(3382)] = 76228, + [SMALL_STATE(3383)] = 76289, + [SMALL_STATE(3384)] = 76350, + [SMALL_STATE(3385)] = 76411, + [SMALL_STATE(3386)] = 76472, + [SMALL_STATE(3387)] = 76565, + [SMALL_STATE(3388)] = 76626, + [SMALL_STATE(3389)] = 76687, + [SMALL_STATE(3390)] = 76748, + [SMALL_STATE(3391)] = 76809, + [SMALL_STATE(3392)] = 76870, + [SMALL_STATE(3393)] = 76931, + [SMALL_STATE(3394)] = 76992, + [SMALL_STATE(3395)] = 77053, + [SMALL_STATE(3396)] = 77114, + [SMALL_STATE(3397)] = 77175, + [SMALL_STATE(3398)] = 77236, + [SMALL_STATE(3399)] = 77297, + [SMALL_STATE(3400)] = 77358, + [SMALL_STATE(3401)] = 77419, + [SMALL_STATE(3402)] = 77480, + [SMALL_STATE(3403)] = 77541, + [SMALL_STATE(3404)] = 77610, + [SMALL_STATE(3405)] = 77679, + [SMALL_STATE(3406)] = 77740, + [SMALL_STATE(3407)] = 77803, + [SMALL_STATE(3408)] = 77864, + [SMALL_STATE(3409)] = 77925, + [SMALL_STATE(3410)] = 77988, + [SMALL_STATE(3411)] = 78049, + [SMALL_STATE(3412)] = 78110, + [SMALL_STATE(3413)] = 78173, + [SMALL_STATE(3414)] = 78234, + [SMALL_STATE(3415)] = 78295, + [SMALL_STATE(3416)] = 78388, + [SMALL_STATE(3417)] = 78449, + [SMALL_STATE(3418)] = 78510, + [SMALL_STATE(3419)] = 78577, + [SMALL_STATE(3420)] = 78640, + [SMALL_STATE(3421)] = 78701, + [SMALL_STATE(3422)] = 78762, + [SMALL_STATE(3423)] = 78823, + [SMALL_STATE(3424)] = 78884, + [SMALL_STATE(3425)] = 78945, + [SMALL_STATE(3426)] = 79014, + [SMALL_STATE(3427)] = 79075, + [SMALL_STATE(3428)] = 79138, + [SMALL_STATE(3429)] = 79199, + [SMALL_STATE(3430)] = 79260, + [SMALL_STATE(3431)] = 79321, + [SMALL_STATE(3432)] = 79382, + [SMALL_STATE(3433)] = 79443, + [SMALL_STATE(3434)] = 79506, + [SMALL_STATE(3435)] = 79567, + [SMALL_STATE(3436)] = 79628, + [SMALL_STATE(3437)] = 79689, + [SMALL_STATE(3438)] = 79750, + [SMALL_STATE(3439)] = 79811, + [SMALL_STATE(3440)] = 79872, + [SMALL_STATE(3441)] = 79941, + [SMALL_STATE(3442)] = 80010, + [SMALL_STATE(3443)] = 80079, + [SMALL_STATE(3444)] = 80148, + [SMALL_STATE(3445)] = 80209, + [SMALL_STATE(3446)] = 80270, + [SMALL_STATE(3447)] = 80331, + [SMALL_STATE(3448)] = 80392, + [SMALL_STATE(3449)] = 80453, + [SMALL_STATE(3450)] = 80522, + [SMALL_STATE(3451)] = 80583, + [SMALL_STATE(3452)] = 80644, + [SMALL_STATE(3453)] = 80705, + [SMALL_STATE(3454)] = 80802, + [SMALL_STATE(3455)] = 80863, + [SMALL_STATE(3456)] = 80960, + [SMALL_STATE(3457)] = 81023, + [SMALL_STATE(3458)] = 81084, + [SMALL_STATE(3459)] = 81145, + [SMALL_STATE(3460)] = 81206, + [SMALL_STATE(3461)] = 81267, + [SMALL_STATE(3462)] = 81328, + [SMALL_STATE(3463)] = 81389, + [SMALL_STATE(3464)] = 81486, + [SMALL_STATE(3465)] = 81547, + [SMALL_STATE(3466)] = 81644, + [SMALL_STATE(3467)] = 81705, + [SMALL_STATE(3468)] = 81766, + [SMALL_STATE(3469)] = 81863, + [SMALL_STATE(3470)] = 81924, + [SMALL_STATE(3471)] = 81985, + [SMALL_STATE(3472)] = 82046, + [SMALL_STATE(3473)] = 82107, + [SMALL_STATE(3474)] = 82168, + [SMALL_STATE(3475)] = 82265, + [SMALL_STATE(3476)] = 82326, + [SMALL_STATE(3477)] = 82387, + [SMALL_STATE(3478)] = 82448, + [SMALL_STATE(3479)] = 82513, + [SMALL_STATE(3480)] = 82574, + [SMALL_STATE(3481)] = 82637, + [SMALL_STATE(3482)] = 82702, + [SMALL_STATE(3483)] = 82775, + [SMALL_STATE(3484)] = 82842, + [SMALL_STATE(3485)] = 82903, + [SMALL_STATE(3486)] = 82964, + [SMALL_STATE(3487)] = 83025, + [SMALL_STATE(3488)] = 83086, + [SMALL_STATE(3489)] = 83147, + [SMALL_STATE(3490)] = 83208, + [SMALL_STATE(3491)] = 83269, + [SMALL_STATE(3492)] = 83330, + [SMALL_STATE(3493)] = 83391, + [SMALL_STATE(3494)] = 83452, + [SMALL_STATE(3495)] = 83513, + [SMALL_STATE(3496)] = 83574, + [SMALL_STATE(3497)] = 83635, + [SMALL_STATE(3498)] = 83696, + [SMALL_STATE(3499)] = 83757, + [SMALL_STATE(3500)] = 83818, + [SMALL_STATE(3501)] = 83879, + [SMALL_STATE(3502)] = 83940, + [SMALL_STATE(3503)] = 84001, + [SMALL_STATE(3504)] = 84070, + [SMALL_STATE(3505)] = 84167, + [SMALL_STATE(3506)] = 84228, + [SMALL_STATE(3507)] = 84297, + [SMALL_STATE(3508)] = 84358, + [SMALL_STATE(3509)] = 84421, + [SMALL_STATE(3510)] = 84482, + [SMALL_STATE(3511)] = 84547, + [SMALL_STATE(3512)] = 84610, + [SMALL_STATE(3513)] = 84671, + [SMALL_STATE(3514)] = 84744, + [SMALL_STATE(3515)] = 84805, + [SMALL_STATE(3516)] = 84866, + [SMALL_STATE(3517)] = 84927, + [SMALL_STATE(3518)] = 84988, + [SMALL_STATE(3519)] = 85049, + [SMALL_STATE(3520)] = 85122, + [SMALL_STATE(3521)] = 85185, + [SMALL_STATE(3522)] = 85246, + [SMALL_STATE(3523)] = 85319, + [SMALL_STATE(3524)] = 85380, + [SMALL_STATE(3525)] = 85441, + [SMALL_STATE(3526)] = 85502, + [SMALL_STATE(3527)] = 85573, + [SMALL_STATE(3528)] = 85634, + [SMALL_STATE(3529)] = 85701, + [SMALL_STATE(3530)] = 85768, + [SMALL_STATE(3531)] = 85829, + [SMALL_STATE(3532)] = 85904, + [SMALL_STATE(3533)] = 85997, + [SMALL_STATE(3534)] = 86058, + [SMALL_STATE(3535)] = 86119, + [SMALL_STATE(3536)] = 86184, + [SMALL_STATE(3537)] = 86269, + [SMALL_STATE(3538)] = 86332, + [SMALL_STATE(3539)] = 86399, + [SMALL_STATE(3540)] = 86462, + [SMALL_STATE(3541)] = 86523, + [SMALL_STATE(3542)] = 86592, + [SMALL_STATE(3543)] = 86669, + [SMALL_STATE(3544)] = 86730, + [SMALL_STATE(3545)] = 86795, + [SMALL_STATE(3546)] = 86860, + [SMALL_STATE(3547)] = 86933, + [SMALL_STATE(3548)] = 86994, + [SMALL_STATE(3549)] = 87075, + [SMALL_STATE(3550)] = 87172, + [SMALL_STATE(3551)] = 87235, + [SMALL_STATE(3552)] = 87302, + [SMALL_STATE(3553)] = 87363, + [SMALL_STATE(3554)] = 87424, + [SMALL_STATE(3555)] = 87513, + [SMALL_STATE(3556)] = 87574, + [SMALL_STATE(3557)] = 87635, + [SMALL_STATE(3558)] = 87696, + [SMALL_STATE(3559)] = 87787, + [SMALL_STATE(3560)] = 87848, + [SMALL_STATE(3561)] = 87909, + [SMALL_STATE(3562)] = 87972, + [SMALL_STATE(3563)] = 88033, + [SMALL_STATE(3564)] = 88094, + [SMALL_STATE(3565)] = 88161, + [SMALL_STATE(3566)] = 88228, + [SMALL_STATE(3567)] = 88295, + [SMALL_STATE(3568)] = 88362, + [SMALL_STATE(3569)] = 88423, + [SMALL_STATE(3570)] = 88484, + [SMALL_STATE(3571)] = 88545, + [SMALL_STATE(3572)] = 88606, + [SMALL_STATE(3573)] = 88667, + [SMALL_STATE(3574)] = 88728, + [SMALL_STATE(3575)] = 88789, + [SMALL_STATE(3576)] = 88850, + [SMALL_STATE(3577)] = 88911, + [SMALL_STATE(3578)] = 88972, + [SMALL_STATE(3579)] = 89033, + [SMALL_STATE(3580)] = 89094, + [SMALL_STATE(3581)] = 89155, + [SMALL_STATE(3582)] = 89216, + [SMALL_STATE(3583)] = 89277, + [SMALL_STATE(3584)] = 89338, + [SMALL_STATE(3585)] = 89399, + [SMALL_STATE(3586)] = 89460, + [SMALL_STATE(3587)] = 89521, + [SMALL_STATE(3588)] = 89582, + [SMALL_STATE(3589)] = 89643, + [SMALL_STATE(3590)] = 89704, + [SMALL_STATE(3591)] = 89764, + [SMALL_STATE(3592)] = 89826, + [SMALL_STATE(3593)] = 89888, + [SMALL_STATE(3594)] = 89950, + [SMALL_STATE(3595)] = 90010, + [SMALL_STATE(3596)] = 90070, + [SMALL_STATE(3597)] = 90130, + [SMALL_STATE(3598)] = 90190, + [SMALL_STATE(3599)] = 90250, + [SMALL_STATE(3600)] = 90350, + [SMALL_STATE(3601)] = 90414, + [SMALL_STATE(3602)] = 90474, + [SMALL_STATE(3603)] = 90574, + [SMALL_STATE(3604)] = 90638, + [SMALL_STATE(3605)] = 90738, + [SMALL_STATE(3606)] = 90802, + [SMALL_STATE(3607)] = 90866, + [SMALL_STATE(3608)] = 90930, + [SMALL_STATE(3609)] = 90996, + [SMALL_STATE(3610)] = 91058, + [SMALL_STATE(3611)] = 91120, + [SMALL_STATE(3612)] = 91180, + [SMALL_STATE(3613)] = 91280, + [SMALL_STATE(3614)] = 91380, + [SMALL_STATE(3615)] = 91444, + [SMALL_STATE(3616)] = 91544, + [SMALL_STATE(3617)] = 91644, + [SMALL_STATE(3618)] = 91708, + [SMALL_STATE(3619)] = 91772, + [SMALL_STATE(3620)] = 91836, + [SMALL_STATE(3621)] = 91896, + [SMALL_STATE(3622)] = 91958, + [SMALL_STATE(3623)] = 92018, + [SMALL_STATE(3624)] = 92078, + [SMALL_STATE(3625)] = 92138, + [SMALL_STATE(3626)] = 92198, + [SMALL_STATE(3627)] = 92258, + [SMALL_STATE(3628)] = 92318, + [SMALL_STATE(3629)] = 92378, + [SMALL_STATE(3630)] = 92438, + [SMALL_STATE(3631)] = 92498, + [SMALL_STATE(3632)] = 92558, + [SMALL_STATE(3633)] = 92618, + [SMALL_STATE(3634)] = 92678, + [SMALL_STATE(3635)] = 92738, + [SMALL_STATE(3636)] = 92798, + [SMALL_STATE(3637)] = 92860, + [SMALL_STATE(3638)] = 92960, + [SMALL_STATE(3639)] = 93024, + [SMALL_STATE(3640)] = 93088, + [SMALL_STATE(3641)] = 93150, + [SMALL_STATE(3642)] = 93214, + [SMALL_STATE(3643)] = 93276, + [SMALL_STATE(3644)] = 93336, + [SMALL_STATE(3645)] = 93396, + [SMALL_STATE(3646)] = 93456, + [SMALL_STATE(3647)] = 93516, + [SMALL_STATE(3648)] = 93576, + [SMALL_STATE(3649)] = 93636, + [SMALL_STATE(3650)] = 93696, + [SMALL_STATE(3651)] = 93756, + [SMALL_STATE(3652)] = 93816, + [SMALL_STATE(3653)] = 93876, + [SMALL_STATE(3654)] = 93976, + [SMALL_STATE(3655)] = 94040, + [SMALL_STATE(3656)] = 94100, + [SMALL_STATE(3657)] = 94168, + [SMALL_STATE(3658)] = 94228, + [SMALL_STATE(3659)] = 94288, + [SMALL_STATE(3660)] = 94348, + [SMALL_STATE(3661)] = 94408, + [SMALL_STATE(3662)] = 94468, + [SMALL_STATE(3663)] = 94528, + [SMALL_STATE(3664)] = 94588, + [SMALL_STATE(3665)] = 94648, + [SMALL_STATE(3666)] = 94708, + [SMALL_STATE(3667)] = 94768, + [SMALL_STATE(3668)] = 94828, + [SMALL_STATE(3669)] = 94888, + [SMALL_STATE(3670)] = 94948, + [SMALL_STATE(3671)] = 95008, + [SMALL_STATE(3672)] = 95068, + [SMALL_STATE(3673)] = 95128, + [SMALL_STATE(3674)] = 95188, + [SMALL_STATE(3675)] = 95250, + [SMALL_STATE(3676)] = 95310, + [SMALL_STATE(3677)] = 95370, + [SMALL_STATE(3678)] = 95430, + [SMALL_STATE(3679)] = 95490, + [SMALL_STATE(3680)] = 95550, + [SMALL_STATE(3681)] = 95610, + [SMALL_STATE(3682)] = 95670, + [SMALL_STATE(3683)] = 95730, + [SMALL_STATE(3684)] = 95790, + [SMALL_STATE(3685)] = 95850, + [SMALL_STATE(3686)] = 95910, + [SMALL_STATE(3687)] = 95970, + [SMALL_STATE(3688)] = 96030, + [SMALL_STATE(3689)] = 96090, + [SMALL_STATE(3690)] = 96150, + [SMALL_STATE(3691)] = 96210, + [SMALL_STATE(3692)] = 96270, + [SMALL_STATE(3693)] = 96330, + [SMALL_STATE(3694)] = 96390, + [SMALL_STATE(3695)] = 96450, + [SMALL_STATE(3696)] = 96514, + [SMALL_STATE(3697)] = 96576, + [SMALL_STATE(3698)] = 96636, + [SMALL_STATE(3699)] = 96696, + [SMALL_STATE(3700)] = 96756, + [SMALL_STATE(3701)] = 96816, + [SMALL_STATE(3702)] = 96878, + [SMALL_STATE(3703)] = 96940, + [SMALL_STATE(3704)] = 97002, + [SMALL_STATE(3705)] = 97062, + [SMALL_STATE(3706)] = 97122, + [SMALL_STATE(3707)] = 97182, + [SMALL_STATE(3708)] = 97242, + [SMALL_STATE(3709)] = 97302, + [SMALL_STATE(3710)] = 97362, + [SMALL_STATE(3711)] = 97422, + [SMALL_STATE(3712)] = 97482, + [SMALL_STATE(3713)] = 97542, + [SMALL_STATE(3714)] = 97602, + [SMALL_STATE(3715)] = 97662, + [SMALL_STATE(3716)] = 97722, + [SMALL_STATE(3717)] = 97782, + [SMALL_STATE(3718)] = 97842, + [SMALL_STATE(3719)] = 97902, + [SMALL_STATE(3720)] = 97962, + [SMALL_STATE(3721)] = 98022, + [SMALL_STATE(3722)] = 98082, + [SMALL_STATE(3723)] = 98142, + [SMALL_STATE(3724)] = 98202, + [SMALL_STATE(3725)] = 98262, + [SMALL_STATE(3726)] = 98322, + [SMALL_STATE(3727)] = 98382, + [SMALL_STATE(3728)] = 98442, + [SMALL_STATE(3729)] = 98506, + [SMALL_STATE(3730)] = 98566, + [SMALL_STATE(3731)] = 98626, + [SMALL_STATE(3732)] = 98726, + [SMALL_STATE(3733)] = 98786, + [SMALL_STATE(3734)] = 98846, + [SMALL_STATE(3735)] = 98908, + [SMALL_STATE(3736)] = 98968, + [SMALL_STATE(3737)] = 99028, + [SMALL_STATE(3738)] = 99088, + [SMALL_STATE(3739)] = 99148, + [SMALL_STATE(3740)] = 99208, + [SMALL_STATE(3741)] = 99268, + [SMALL_STATE(3742)] = 99328, + [SMALL_STATE(3743)] = 99388, + [SMALL_STATE(3744)] = 99448, + [SMALL_STATE(3745)] = 99508, + [SMALL_STATE(3746)] = 99568, + [SMALL_STATE(3747)] = 99628, + [SMALL_STATE(3748)] = 99688, + [SMALL_STATE(3749)] = 99748, + [SMALL_STATE(3750)] = 99808, + [SMALL_STATE(3751)] = 99868, + [SMALL_STATE(3752)] = 99928, + [SMALL_STATE(3753)] = 99988, + [SMALL_STATE(3754)] = 100048, + [SMALL_STATE(3755)] = 100108, + [SMALL_STATE(3756)] = 100168, + [SMALL_STATE(3757)] = 100228, + [SMALL_STATE(3758)] = 100288, + [SMALL_STATE(3759)] = 100350, + [SMALL_STATE(3760)] = 100410, + [SMALL_STATE(3761)] = 100470, + [SMALL_STATE(3762)] = 100530, + [SMALL_STATE(3763)] = 100590, + [SMALL_STATE(3764)] = 100650, + [SMALL_STATE(3765)] = 100750, + [SMALL_STATE(3766)] = 100814, + [SMALL_STATE(3767)] = 100874, + [SMALL_STATE(3768)] = 100936, + [SMALL_STATE(3769)] = 100996, + [SMALL_STATE(3770)] = 101056, + [SMALL_STATE(3771)] = 101118, + [SMALL_STATE(3772)] = 101178, + [SMALL_STATE(3773)] = 101238, + [SMALL_STATE(3774)] = 101302, + [SMALL_STATE(3775)] = 101366, + [SMALL_STATE(3776)] = 101426, + [SMALL_STATE(3777)] = 101486, + [SMALL_STATE(3778)] = 101546, + [SMALL_STATE(3779)] = 101608, + [SMALL_STATE(3780)] = 101668, + [SMALL_STATE(3781)] = 101728, + [SMALL_STATE(3782)] = 101792, + [SMALL_STATE(3783)] = 101852, + [SMALL_STATE(3784)] = 101912, + [SMALL_STATE(3785)] = 101972, + [SMALL_STATE(3786)] = 102032, + [SMALL_STATE(3787)] = 102092, + [SMALL_STATE(3788)] = 102152, + [SMALL_STATE(3789)] = 102212, + [SMALL_STATE(3790)] = 102274, + [SMALL_STATE(3791)] = 102336, + [SMALL_STATE(3792)] = 102398, + [SMALL_STATE(3793)] = 102458, + [SMALL_STATE(3794)] = 102518, + [SMALL_STATE(3795)] = 102578, + [SMALL_STATE(3796)] = 102642, + [SMALL_STATE(3797)] = 102702, + [SMALL_STATE(3798)] = 102762, + [SMALL_STATE(3799)] = 102826, + [SMALL_STATE(3800)] = 102890, + [SMALL_STATE(3801)] = 102950, + [SMALL_STATE(3802)] = 103010, + [SMALL_STATE(3803)] = 103070, + [SMALL_STATE(3804)] = 103130, + [SMALL_STATE(3805)] = 103194, + [SMALL_STATE(3806)] = 103256, + [SMALL_STATE(3807)] = 103316, + [SMALL_STATE(3808)] = 103382, + [SMALL_STATE(3809)] = 103442, + [SMALL_STATE(3810)] = 103502, + [SMALL_STATE(3811)] = 103562, + [SMALL_STATE(3812)] = 103622, + [SMALL_STATE(3813)] = 103682, + [SMALL_STATE(3814)] = 103742, + [SMALL_STATE(3815)] = 103802, + [SMALL_STATE(3816)] = 103868, + [SMALL_STATE(3817)] = 103928, + [SMALL_STATE(3818)] = 103988, + [SMALL_STATE(3819)] = 104048, + [SMALL_STATE(3820)] = 104108, + [SMALL_STATE(3821)] = 104168, + [SMALL_STATE(3822)] = 104268, + [SMALL_STATE(3823)] = 104328, + [SMALL_STATE(3824)] = 104390, + [SMALL_STATE(3825)] = 104454, + [SMALL_STATE(3826)] = 104514, + [SMALL_STATE(3827)] = 104580, + [SMALL_STATE(3828)] = 104642, + [SMALL_STATE(3829)] = 104704, + [SMALL_STATE(3830)] = 104804, + [SMALL_STATE(3831)] = 104868, + [SMALL_STATE(3832)] = 104930, + [SMALL_STATE(3833)] = 104990, + [SMALL_STATE(3834)] = 105050, + [SMALL_STATE(3835)] = 105112, + [SMALL_STATE(3836)] = 105172, + [SMALL_STATE(3837)] = 105238, + [SMALL_STATE(3838)] = 105298, + [SMALL_STATE(3839)] = 105362, + [SMALL_STATE(3840)] = 105426, + [SMALL_STATE(3841)] = 105490, + [SMALL_STATE(3842)] = 105554, + [SMALL_STATE(3843)] = 105616, + [SMALL_STATE(3844)] = 105680, + [SMALL_STATE(3845)] = 105746, + [SMALL_STATE(3846)] = 105808, + [SMALL_STATE(3847)] = 105872, + [SMALL_STATE(3848)] = 105932, + [SMALL_STATE(3849)] = 105994, + [SMALL_STATE(3850)] = 106056, + [SMALL_STATE(3851)] = 106118, + [SMALL_STATE(3852)] = 106180, + [SMALL_STATE(3853)] = 106242, + [SMALL_STATE(3854)] = 106302, + [SMALL_STATE(3855)] = 106362, + [SMALL_STATE(3856)] = 106422, + [SMALL_STATE(3857)] = 106482, + [SMALL_STATE(3858)] = 106582, + [SMALL_STATE(3859)] = 106642, + [SMALL_STATE(3860)] = 106702, + [SMALL_STATE(3861)] = 106762, + [SMALL_STATE(3862)] = 106826, + [SMALL_STATE(3863)] = 106886, + [SMALL_STATE(3864)] = 106948, + [SMALL_STATE(3865)] = 107012, + [SMALL_STATE(3866)] = 107076, + [SMALL_STATE(3867)] = 107140, + [SMALL_STATE(3868)] = 107202, + [SMALL_STATE(3869)] = 107266, + [SMALL_STATE(3870)] = 107328, + [SMALL_STATE(3871)] = 107390, + [SMALL_STATE(3872)] = 107454, + [SMALL_STATE(3873)] = 107516, + [SMALL_STATE(3874)] = 107578, + [SMALL_STATE(3875)] = 107642, + [SMALL_STATE(3876)] = 107702, + [SMALL_STATE(3877)] = 107802, + [SMALL_STATE(3878)] = 107902, + [SMALL_STATE(3879)] = 107962, + [SMALL_STATE(3880)] = 108026, + [SMALL_STATE(3881)] = 108092, + [SMALL_STATE(3882)] = 108156, + [SMALL_STATE(3883)] = 108216, + [SMALL_STATE(3884)] = 108276, + [SMALL_STATE(3885)] = 108336, + [SMALL_STATE(3886)] = 108396, + [SMALL_STATE(3887)] = 108456, + [SMALL_STATE(3888)] = 108516, + [SMALL_STATE(3889)] = 108576, + [SMALL_STATE(3890)] = 108636, + [SMALL_STATE(3891)] = 108696, + [SMALL_STATE(3892)] = 108756, + [SMALL_STATE(3893)] = 108856, + [SMALL_STATE(3894)] = 108920, + [SMALL_STATE(3895)] = 109020, + [SMALL_STATE(3896)] = 109084, + [SMALL_STATE(3897)] = 109148, + [SMALL_STATE(3898)] = 109212, + [SMALL_STATE(3899)] = 109272, + [SMALL_STATE(3900)] = 109331, + [SMALL_STATE(3901)] = 109390, + [SMALL_STATE(3902)] = 109485, + [SMALL_STATE(3903)] = 109544, + [SMALL_STATE(3904)] = 109641, + [SMALL_STATE(3905)] = 109700, + [SMALL_STATE(3906)] = 109759, + [SMALL_STATE(3907)] = 109856, + [SMALL_STATE(3908)] = 109951, + [SMALL_STATE(3909)] = 110048, + [SMALL_STATE(3910)] = 110107, + [SMALL_STATE(3911)] = 110166, + [SMALL_STATE(3912)] = 110263, + [SMALL_STATE(3913)] = 110322, + [SMALL_STATE(3914)] = 110419, + [SMALL_STATE(3915)] = 110478, + [SMALL_STATE(3916)] = 110575, + [SMALL_STATE(3917)] = 110634, + [SMALL_STATE(3918)] = 110731, + [SMALL_STATE(3919)] = 110790, + [SMALL_STATE(3920)] = 110849, + [SMALL_STATE(3921)] = 110910, + [SMALL_STATE(3922)] = 110971, + [SMALL_STATE(3923)] = 111030, + [SMALL_STATE(3924)] = 111089, + [SMALL_STATE(3925)] = 111148, + [SMALL_STATE(3926)] = 111207, + [SMALL_STATE(3927)] = 111266, + [SMALL_STATE(3928)] = 111345, + [SMALL_STATE(3929)] = 111404, + [SMALL_STATE(3930)] = 111483, + [SMALL_STATE(3931)] = 111542, + [SMALL_STATE(3932)] = 111601, + [SMALL_STATE(3933)] = 111660, + [SMALL_STATE(3934)] = 111757, + [SMALL_STATE(3935)] = 111854, + [SMALL_STATE(3936)] = 111913, + [SMALL_STATE(3937)] = 112010, + [SMALL_STATE(3938)] = 112107, + [SMALL_STATE(3939)] = 112204, + [SMALL_STATE(3940)] = 112301, + [SMALL_STATE(3941)] = 112398, + [SMALL_STATE(3942)] = 112457, + [SMALL_STATE(3943)] = 112516, + [SMALL_STATE(3944)] = 112575, + [SMALL_STATE(3945)] = 112634, + [SMALL_STATE(3946)] = 112693, + [SMALL_STATE(3947)] = 112752, + [SMALL_STATE(3948)] = 112821, + [SMALL_STATE(3949)] = 112886, + [SMALL_STATE(3950)] = 112951, + [SMALL_STATE(3951)] = 113024, + [SMALL_STATE(3952)] = 113083, + [SMALL_STATE(3953)] = 113142, + [SMALL_STATE(3954)] = 113201, + [SMALL_STATE(3955)] = 113260, + [SMALL_STATE(3956)] = 113319, + [SMALL_STATE(3957)] = 113378, + [SMALL_STATE(3958)] = 113469, + [SMALL_STATE(3959)] = 113528, + [SMALL_STATE(3960)] = 113587, + [SMALL_STATE(3961)] = 113646, + [SMALL_STATE(3962)] = 113729, + [SMALL_STATE(3963)] = 113804, + [SMALL_STATE(3964)] = 113863, + [SMALL_STATE(3965)] = 113934, + [SMALL_STATE(3966)] = 114013, + [SMALL_STATE(3967)] = 114100, + [SMALL_STATE(3968)] = 114163, + [SMALL_STATE(3969)] = 114252, + [SMALL_STATE(3970)] = 114311, + [SMALL_STATE(3971)] = 114370, + [SMALL_STATE(3972)] = 114431, + [SMALL_STATE(3973)] = 114490, + [SMALL_STATE(3974)] = 114549, + [SMALL_STATE(3975)] = 114608, + [SMALL_STATE(3976)] = 114703, + [SMALL_STATE(3977)] = 114798, + [SMALL_STATE(3978)] = 114857, + [SMALL_STATE(3979)] = 114916, + [SMALL_STATE(3980)] = 114975, + [SMALL_STATE(3981)] = 115034, + [SMALL_STATE(3982)] = 115093, + [SMALL_STATE(3983)] = 115152, + [SMALL_STATE(3984)] = 115211, + [SMALL_STATE(3985)] = 115270, + [SMALL_STATE(3986)] = 115329, + [SMALL_STATE(3987)] = 115424, + [SMALL_STATE(3988)] = 115519, + [SMALL_STATE(3989)] = 115578, + [SMALL_STATE(3990)] = 115637, + [SMALL_STATE(3991)] = 115700, + [SMALL_STATE(3992)] = 115763, + [SMALL_STATE(3993)] = 115822, + [SMALL_STATE(3994)] = 115881, + [SMALL_STATE(3995)] = 115940, + [SMALL_STATE(3996)] = 115999, + [SMALL_STATE(3997)] = 116058, + [SMALL_STATE(3998)] = 116117, + [SMALL_STATE(3999)] = 116176, + [SMALL_STATE(4000)] = 116235, + [SMALL_STATE(4001)] = 116294, + [SMALL_STATE(4002)] = 116355, + [SMALL_STATE(4003)] = 116416, + [SMALL_STATE(4004)] = 116479, + [SMALL_STATE(4005)] = 116538, + [SMALL_STATE(4006)] = 116597, + [SMALL_STATE(4007)] = 116656, + [SMALL_STATE(4008)] = 116747, + [SMALL_STATE(4009)] = 116806, + [SMALL_STATE(4010)] = 116865, + [SMALL_STATE(4011)] = 116924, + [SMALL_STATE(4012)] = 116983, + [SMALL_STATE(4013)] = 117042, + [SMALL_STATE(4014)] = 117101, + [SMALL_STATE(4015)] = 117160, + [SMALL_STATE(4016)] = 117219, + [SMALL_STATE(4017)] = 117282, + [SMALL_STATE(4018)] = 117345, + [SMALL_STATE(4019)] = 117440, + [SMALL_STATE(4020)] = 117499, + [SMALL_STATE(4021)] = 117558, + [SMALL_STATE(4022)] = 117617, + [SMALL_STATE(4023)] = 117676, + [SMALL_STATE(4024)] = 117735, + [SMALL_STATE(4025)] = 117794, + [SMALL_STATE(4026)] = 117853, + [SMALL_STATE(4027)] = 117912, + [SMALL_STATE(4028)] = 117973, + [SMALL_STATE(4029)] = 118032, + [SMALL_STATE(4030)] = 118091, + [SMALL_STATE(4031)] = 118150, + [SMALL_STATE(4032)] = 118209, + [SMALL_STATE(4033)] = 118268, + [SMALL_STATE(4034)] = 118327, + [SMALL_STATE(4035)] = 118386, + [SMALL_STATE(4036)] = 118445, + [SMALL_STATE(4037)] = 118536, + [SMALL_STATE(4038)] = 118595, + [SMALL_STATE(4039)] = 118654, + [SMALL_STATE(4040)] = 118713, + [SMALL_STATE(4041)] = 118808, + [SMALL_STATE(4042)] = 118867, + [SMALL_STATE(4043)] = 118928, + [SMALL_STATE(4044)] = 118991, + [SMALL_STATE(4045)] = 119086, + [SMALL_STATE(4046)] = 119181, + [SMALL_STATE(4047)] = 119240, + [SMALL_STATE(4048)] = 119335, + [SMALL_STATE(4049)] = 119404, + [SMALL_STATE(4050)] = 119469, + [SMALL_STATE(4051)] = 119534, + [SMALL_STATE(4052)] = 119607, + [SMALL_STATE(4053)] = 119698, + [SMALL_STATE(4054)] = 119781, + [SMALL_STATE(4055)] = 119856, + [SMALL_STATE(4056)] = 119927, + [SMALL_STATE(4057)] = 120006, + [SMALL_STATE(4058)] = 120093, + [SMALL_STATE(4059)] = 120182, + [SMALL_STATE(4060)] = 120243, + [SMALL_STATE(4061)] = 120338, + [SMALL_STATE(4062)] = 120397, + [SMALL_STATE(4063)] = 120456, + [SMALL_STATE(4064)] = 120547, + [SMALL_STATE(4065)] = 120606, + [SMALL_STATE(4066)] = 120667, + [SMALL_STATE(4067)] = 120730, + [SMALL_STATE(4068)] = 120791, + [SMALL_STATE(4069)] = 120850, + [SMALL_STATE(4070)] = 120909, + [SMALL_STATE(4071)] = 121004, + [SMALL_STATE(4072)] = 121099, + [SMALL_STATE(4073)] = 121158, + [SMALL_STATE(4074)] = 121219, + [SMALL_STATE(4075)] = 121310, + [SMALL_STATE(4076)] = 121371, + [SMALL_STATE(4077)] = 121430, + [SMALL_STATE(4078)] = 121525, + [SMALL_STATE(4079)] = 121620, + [SMALL_STATE(4080)] = 121715, + [SMALL_STATE(4081)] = 121774, + [SMALL_STATE(4082)] = 121833, + [SMALL_STATE(4083)] = 121892, + [SMALL_STATE(4084)] = 121987, + [SMALL_STATE(4085)] = 122046, + [SMALL_STATE(4086)] = 122107, + [SMALL_STATE(4087)] = 122166, + [SMALL_STATE(4088)] = 122225, + [SMALL_STATE(4089)] = 122284, + [SMALL_STATE(4090)] = 122379, + [SMALL_STATE(4091)] = 122438, + [SMALL_STATE(4092)] = 122497, + [SMALL_STATE(4093)] = 122556, + [SMALL_STATE(4094)] = 122651, + [SMALL_STATE(4095)] = 122710, + [SMALL_STATE(4096)] = 122769, + [SMALL_STATE(4097)] = 122828, + [SMALL_STATE(4098)] = 122887, + [SMALL_STATE(4099)] = 122946, + [SMALL_STATE(4100)] = 123041, + [SMALL_STATE(4101)] = 123100, + [SMALL_STATE(4102)] = 123159, + [SMALL_STATE(4103)] = 123218, + [SMALL_STATE(4104)] = 123279, + [SMALL_STATE(4105)] = 123338, + [SMALL_STATE(4106)] = 123397, + [SMALL_STATE(4107)] = 123456, + [SMALL_STATE(4108)] = 123515, + [SMALL_STATE(4109)] = 123574, + [SMALL_STATE(4110)] = 123633, + [SMALL_STATE(4111)] = 123694, + [SMALL_STATE(4112)] = 123753, + [SMALL_STATE(4113)] = 123812, + [SMALL_STATE(4114)] = 123871, + [SMALL_STATE(4115)] = 123930, + [SMALL_STATE(4116)] = 123991, + [SMALL_STATE(4117)] = 124050, + [SMALL_STATE(4118)] = 124109, + [SMALL_STATE(4119)] = 124168, + [SMALL_STATE(4120)] = 124227, + [SMALL_STATE(4121)] = 124286, + [SMALL_STATE(4122)] = 124345, + [SMALL_STATE(4123)] = 124404, + [SMALL_STATE(4124)] = 124463, + [SMALL_STATE(4125)] = 124522, + [SMALL_STATE(4126)] = 124583, + [SMALL_STATE(4127)] = 124642, + [SMALL_STATE(4128)] = 124701, + [SMALL_STATE(4129)] = 124760, + [SMALL_STATE(4130)] = 124821, + [SMALL_STATE(4131)] = 124880, + [SMALL_STATE(4132)] = 124951, + [SMALL_STATE(4133)] = 125010, + [SMALL_STATE(4134)] = 125069, + [SMALL_STATE(4135)] = 125128, + [SMALL_STATE(4136)] = 125199, + [SMALL_STATE(4137)] = 125270, + [SMALL_STATE(4138)] = 125329, + [SMALL_STATE(4139)] = 125388, + [SMALL_STATE(4140)] = 125447, + [SMALL_STATE(4141)] = 125506, + [SMALL_STATE(4142)] = 125565, + [SMALL_STATE(4143)] = 125624, + [SMALL_STATE(4144)] = 125683, + [SMALL_STATE(4145)] = 125742, + [SMALL_STATE(4146)] = 125801, + [SMALL_STATE(4147)] = 125862, + [SMALL_STATE(4148)] = 125921, + [SMALL_STATE(4149)] = 125980, + [SMALL_STATE(4150)] = 126039, + [SMALL_STATE(4151)] = 126098, + [SMALL_STATE(4152)] = 126157, + [SMALL_STATE(4153)] = 126216, + [SMALL_STATE(4154)] = 126275, + [SMALL_STATE(4155)] = 126334, + [SMALL_STATE(4156)] = 126393, + [SMALL_STATE(4157)] = 126452, + [SMALL_STATE(4158)] = 126511, + [SMALL_STATE(4159)] = 126578, + [SMALL_STATE(4160)] = 126637, + [SMALL_STATE(4161)] = 126696, + [SMALL_STATE(4162)] = 126755, + [SMALL_STATE(4163)] = 126814, + [SMALL_STATE(4164)] = 126873, + [SMALL_STATE(4165)] = 126932, + [SMALL_STATE(4166)] = 126991, + [SMALL_STATE(4167)] = 127050, + [SMALL_STATE(4168)] = 127109, + [SMALL_STATE(4169)] = 127172, + [SMALL_STATE(4170)] = 127233, + [SMALL_STATE(4171)] = 127324, + [SMALL_STATE(4172)] = 127387, + [SMALL_STATE(4173)] = 127450, + [SMALL_STATE(4174)] = 127509, + [SMALL_STATE(4175)] = 127600, + [SMALL_STATE(4176)] = 127695, + [SMALL_STATE(4177)] = 127790, + [SMALL_STATE(4178)] = 127885, + [SMALL_STATE(4179)] = 127954, + [SMALL_STATE(4180)] = 128019, + [SMALL_STATE(4181)] = 128084, + [SMALL_STATE(4182)] = 128157, + [SMALL_STATE(4183)] = 128248, + [SMALL_STATE(4184)] = 128331, + [SMALL_STATE(4185)] = 128406, + [SMALL_STATE(4186)] = 128477, + [SMALL_STATE(4187)] = 128556, + [SMALL_STATE(4188)] = 128643, + [SMALL_STATE(4189)] = 128732, + [SMALL_STATE(4190)] = 128791, + [SMALL_STATE(4191)] = 128882, + [SMALL_STATE(4192)] = 128977, + [SMALL_STATE(4193)] = 129072, + [SMALL_STATE(4194)] = 129167, + [SMALL_STATE(4195)] = 129226, + [SMALL_STATE(4196)] = 129285, + [SMALL_STATE(4197)] = 129344, + [SMALL_STATE(4198)] = 129403, + [SMALL_STATE(4199)] = 129462, + [SMALL_STATE(4200)] = 129521, + [SMALL_STATE(4201)] = 129580, + [SMALL_STATE(4202)] = 129639, + [SMALL_STATE(4203)] = 129698, + [SMALL_STATE(4204)] = 129757, + [SMALL_STATE(4205)] = 129816, + [SMALL_STATE(4206)] = 129875, + [SMALL_STATE(4207)] = 129938, + [SMALL_STATE(4208)] = 129997, + [SMALL_STATE(4209)] = 130056, + [SMALL_STATE(4210)] = 130115, + [SMALL_STATE(4211)] = 130174, + [SMALL_STATE(4212)] = 130235, + [SMALL_STATE(4213)] = 130294, + [SMALL_STATE(4214)] = 130353, + [SMALL_STATE(4215)] = 130412, + [SMALL_STATE(4216)] = 130471, + [SMALL_STATE(4217)] = 130530, + [SMALL_STATE(4218)] = 130593, + [SMALL_STATE(4219)] = 130654, + [SMALL_STATE(4220)] = 130725, + [SMALL_STATE(4221)] = 130796, + [SMALL_STATE(4222)] = 130855, + [SMALL_STATE(4223)] = 130914, + [SMALL_STATE(4224)] = 130973, + [SMALL_STATE(4225)] = 131032, + [SMALL_STATE(4226)] = 131091, + [SMALL_STATE(4227)] = 131188, + [SMALL_STATE(4228)] = 131247, + [SMALL_STATE(4229)] = 131306, + [SMALL_STATE(4230)] = 131365, + [SMALL_STATE(4231)] = 131424, + [SMALL_STATE(4232)] = 131523, + [SMALL_STATE(4233)] = 131586, + [SMALL_STATE(4234)] = 131685, + [SMALL_STATE(4235)] = 131748, + [SMALL_STATE(4236)] = 131811, + [SMALL_STATE(4237)] = 131874, + [SMALL_STATE(4238)] = 131933, + [SMALL_STATE(4239)] = 131994, + [SMALL_STATE(4240)] = 132053, + [SMALL_STATE(4241)] = 132112, + [SMALL_STATE(4242)] = 132203, + [SMALL_STATE(4243)] = 132262, + [SMALL_STATE(4244)] = 132321, + [SMALL_STATE(4245)] = 132382, + [SMALL_STATE(4246)] = 132441, + [SMALL_STATE(4247)] = 132502, + [SMALL_STATE(4248)] = 132561, + [SMALL_STATE(4249)] = 132620, + [SMALL_STATE(4250)] = 132687, + [SMALL_STATE(4251)] = 132746, + [SMALL_STATE(4252)] = 132805, + [SMALL_STATE(4253)] = 132864, + [SMALL_STATE(4254)] = 132923, + [SMALL_STATE(4255)] = 132982, + [SMALL_STATE(4256)] = 133041, + [SMALL_STATE(4257)] = 133100, + [SMALL_STATE(4258)] = 133159, + [SMALL_STATE(4259)] = 133238, + [SMALL_STATE(4260)] = 133297, + [SMALL_STATE(4261)] = 133356, + [SMALL_STATE(4262)] = 133415, + [SMALL_STATE(4263)] = 133510, + [SMALL_STATE(4264)] = 133605, + [SMALL_STATE(4265)] = 133666, + [SMALL_STATE(4266)] = 133725, + [SMALL_STATE(4267)] = 133784, + [SMALL_STATE(4268)] = 133843, + [SMALL_STATE(4269)] = 133902, + [SMALL_STATE(4270)] = 133961, + [SMALL_STATE(4271)] = 134024, + [SMALL_STATE(4272)] = 134083, + [SMALL_STATE(4273)] = 134174, + [SMALL_STATE(4274)] = 134233, + [SMALL_STATE(4275)] = 134292, + [SMALL_STATE(4276)] = 134351, + [SMALL_STATE(4277)] = 134410, + [SMALL_STATE(4278)] = 134469, + [SMALL_STATE(4279)] = 134528, + [SMALL_STATE(4280)] = 134587, + [SMALL_STATE(4281)] = 134646, + [SMALL_STATE(4282)] = 134705, + [SMALL_STATE(4283)] = 134764, + [SMALL_STATE(4284)] = 134823, + [SMALL_STATE(4285)] = 134886, + [SMALL_STATE(4286)] = 134949, + [SMALL_STATE(4287)] = 135008, + [SMALL_STATE(4288)] = 135067, + [SMALL_STATE(4289)] = 135126, + [SMALL_STATE(4290)] = 135221, + [SMALL_STATE(4291)] = 135280, + [SMALL_STATE(4292)] = 135339, + [SMALL_STATE(4293)] = 135398, + [SMALL_STATE(4294)] = 135493, + [SMALL_STATE(4295)] = 135588, + [SMALL_STATE(4296)] = 135647, + [SMALL_STATE(4297)] = 135742, + [SMALL_STATE(4298)] = 135801, + [SMALL_STATE(4299)] = 135860, + [SMALL_STATE(4300)] = 135919, + [SMALL_STATE(4301)] = 135978, + [SMALL_STATE(4302)] = 136037, + [SMALL_STATE(4303)] = 136096, + [SMALL_STATE(4304)] = 136155, + [SMALL_STATE(4305)] = 136214, + [SMALL_STATE(4306)] = 136273, + [SMALL_STATE(4307)] = 136332, + [SMALL_STATE(4308)] = 136391, + [SMALL_STATE(4309)] = 136450, + [SMALL_STATE(4310)] = 136509, + [SMALL_STATE(4311)] = 136568, + [SMALL_STATE(4312)] = 136627, + [SMALL_STATE(4313)] = 136686, + [SMALL_STATE(4314)] = 136745, + [SMALL_STATE(4315)] = 136804, + [SMALL_STATE(4316)] = 136863, + [SMALL_STATE(4317)] = 136922, + [SMALL_STATE(4318)] = 136981, + [SMALL_STATE(4319)] = 137040, + [SMALL_STATE(4320)] = 137099, + [SMALL_STATE(4321)] = 137158, + [SMALL_STATE(4322)] = 137217, + [SMALL_STATE(4323)] = 137276, + [SMALL_STATE(4324)] = 137335, + [SMALL_STATE(4325)] = 137432, + [SMALL_STATE(4326)] = 137491, + [SMALL_STATE(4327)] = 137550, + [SMALL_STATE(4328)] = 137611, + [SMALL_STATE(4329)] = 137670, + [SMALL_STATE(4330)] = 137730, + [SMALL_STATE(4331)] = 137788, + [SMALL_STATE(4332)] = 137846, + [SMALL_STATE(4333)] = 137916, + [SMALL_STATE(4334)] = 137974, + [SMALL_STATE(4335)] = 138032, + [SMALL_STATE(4336)] = 138090, + [SMALL_STATE(4337)] = 138148, + [SMALL_STATE(4338)] = 138206, + [SMALL_STATE(4339)] = 138276, + [SMALL_STATE(4340)] = 138334, + [SMALL_STATE(4341)] = 138392, + [SMALL_STATE(4342)] = 138450, + [SMALL_STATE(4343)] = 138544, + [SMALL_STATE(4344)] = 138604, + [SMALL_STATE(4345)] = 138666, + [SMALL_STATE(4346)] = 138724, + [SMALL_STATE(4347)] = 138782, + [SMALL_STATE(4348)] = 138846, + [SMALL_STATE(4349)] = 138904, + [SMALL_STATE(4350)] = 138962, + [SMALL_STATE(4351)] = 139020, + [SMALL_STATE(4352)] = 139078, + [SMALL_STATE(4353)] = 139136, + [SMALL_STATE(4354)] = 139194, + [SMALL_STATE(4355)] = 139252, + [SMALL_STATE(4356)] = 139324, + [SMALL_STATE(4357)] = 139382, + [SMALL_STATE(4358)] = 139442, + [SMALL_STATE(4359)] = 139500, + [SMALL_STATE(4360)] = 139558, + [SMALL_STATE(4361)] = 139620, + [SMALL_STATE(4362)] = 139710, + [SMALL_STATE(4363)] = 139768, + [SMALL_STATE(4364)] = 139828, + [SMALL_STATE(4365)] = 139890, + [SMALL_STATE(4366)] = 139950, + [SMALL_STATE(4367)] = 140008, + [SMALL_STATE(4368)] = 140066, + [SMALL_STATE(4369)] = 140124, + [SMALL_STATE(4370)] = 140182, + [SMALL_STATE(4371)] = 140240, + [SMALL_STATE(4372)] = 140302, + [SMALL_STATE(4373)] = 140360, + [SMALL_STATE(4374)] = 140418, + [SMALL_STATE(4375)] = 140476, + [SMALL_STATE(4376)] = 140534, + [SMALL_STATE(4377)] = 140592, + [SMALL_STATE(4378)] = 140650, + [SMALL_STATE(4379)] = 140708, + [SMALL_STATE(4380)] = 140766, + [SMALL_STATE(4381)] = 140824, + [SMALL_STATE(4382)] = 140886, + [SMALL_STATE(4383)] = 140944, + [SMALL_STATE(4384)] = 141004, + [SMALL_STATE(4385)] = 141062, + [SMALL_STATE(4386)] = 141140, + [SMALL_STATE(4387)] = 141200, + [SMALL_STATE(4388)] = 141258, + [SMALL_STATE(4389)] = 141316, + [SMALL_STATE(4390)] = 141414, + [SMALL_STATE(4391)] = 141474, + [SMALL_STATE(4392)] = 141534, + [SMALL_STATE(4393)] = 141594, + [SMALL_STATE(4394)] = 141652, + [SMALL_STATE(4395)] = 141750, + [SMALL_STATE(4396)] = 141808, + [SMALL_STATE(4397)] = 141902, + [SMALL_STATE(4398)] = 141960, + [SMALL_STATE(4399)] = 142018, + [SMALL_STATE(4400)] = 142076, + [SMALL_STATE(4401)] = 142134, + [SMALL_STATE(4402)] = 142192, + [SMALL_STATE(4403)] = 142250, + [SMALL_STATE(4404)] = 142344, + [SMALL_STATE(4405)] = 142402, + [SMALL_STATE(4406)] = 142496, + [SMALL_STATE(4407)] = 142590, + [SMALL_STATE(4408)] = 142684, + [SMALL_STATE(4409)] = 142742, + [SMALL_STATE(4410)] = 142800, + [SMALL_STATE(4411)] = 142862, + [SMALL_STATE(4412)] = 142952, + [SMALL_STATE(4413)] = 143010, + [SMALL_STATE(4414)] = 143070, + [SMALL_STATE(4415)] = 143128, + [SMALL_STATE(4416)] = 143186, + [SMALL_STATE(4417)] = 143246, + [SMALL_STATE(4418)] = 143304, + [SMALL_STATE(4419)] = 143362, + [SMALL_STATE(4420)] = 143422, + [SMALL_STATE(4421)] = 143480, + [SMALL_STATE(4422)] = 143538, + [SMALL_STATE(4423)] = 143620, + [SMALL_STATE(4424)] = 143678, + [SMALL_STATE(4425)] = 143736, + [SMALL_STATE(4426)] = 143834, + [SMALL_STATE(4427)] = 143892, + [SMALL_STATE(4428)] = 143950, + [SMALL_STATE(4429)] = 144008, + [SMALL_STATE(4430)] = 144070, + [SMALL_STATE(4431)] = 144128, + [SMALL_STATE(4432)] = 144186, + [SMALL_STATE(4433)] = 144250, + [SMALL_STATE(4434)] = 144308, + [SMALL_STATE(4435)] = 144366, + [SMALL_STATE(4436)] = 144424, + [SMALL_STATE(4437)] = 144486, + [SMALL_STATE(4438)] = 144544, + [SMALL_STATE(4439)] = 144602, + [SMALL_STATE(4440)] = 144660, + [SMALL_STATE(4441)] = 144718, + [SMALL_STATE(4442)] = 144776, + [SMALL_STATE(4443)] = 144834, + [SMALL_STATE(4444)] = 144892, + [SMALL_STATE(4445)] = 144950, + [SMALL_STATE(4446)] = 145010, + [SMALL_STATE(4447)] = 145068, + [SMALL_STATE(4448)] = 145126, + [SMALL_STATE(4449)] = 145212, + [SMALL_STATE(4450)] = 145270, + [SMALL_STATE(4451)] = 145328, + [SMALL_STATE(4452)] = 145386, + [SMALL_STATE(4453)] = 145444, + [SMALL_STATE(4454)] = 145502, + [SMALL_STATE(4455)] = 145564, + [SMALL_STATE(4456)] = 145622, + [SMALL_STATE(4457)] = 145684, + [SMALL_STATE(4458)] = 145746, + [SMALL_STATE(4459)] = 145804, + [SMALL_STATE(4460)] = 145864, + [SMALL_STATE(4461)] = 145934, + [SMALL_STATE(4462)] = 145994, + [SMALL_STATE(4463)] = 146056, + [SMALL_STATE(4464)] = 146126, + [SMALL_STATE(4465)] = 146196, + [SMALL_STATE(4466)] = 146256, + [SMALL_STATE(4467)] = 146322, + [SMALL_STATE(4468)] = 146380, + [SMALL_STATE(4469)] = 146454, + [SMALL_STATE(4470)] = 146532, + [SMALL_STATE(4471)] = 146610, + [SMALL_STATE(4472)] = 146688, + [SMALL_STATE(4473)] = 146746, + [SMALL_STATE(4474)] = 146804, + [SMALL_STATE(4475)] = 146862, + [SMALL_STATE(4476)] = 146932, + [SMALL_STATE(4477)] = 146990, + [SMALL_STATE(4478)] = 147048, + [SMALL_STATE(4479)] = 147106, + [SMALL_STATE(4480)] = 147164, + [SMALL_STATE(4481)] = 147222, + [SMALL_STATE(4482)] = 147280, + [SMALL_STATE(4483)] = 147338, + [SMALL_STATE(4484)] = 147396, + [SMALL_STATE(4485)] = 147454, + [SMALL_STATE(4486)] = 147512, + [SMALL_STATE(4487)] = 147570, + [SMALL_STATE(4488)] = 147658, + [SMALL_STATE(4489)] = 147716, + [SMALL_STATE(4490)] = 147810, + [SMALL_STATE(4491)] = 147868, + [SMALL_STATE(4492)] = 147962, + [SMALL_STATE(4493)] = 148030, + [SMALL_STATE(4494)] = 148088, + [SMALL_STATE(4495)] = 148146, + [SMALL_STATE(4496)] = 148204, + [SMALL_STATE(4497)] = 148262, + [SMALL_STATE(4498)] = 148320, + [SMALL_STATE(4499)] = 148378, + [SMALL_STATE(4500)] = 148436, + [SMALL_STATE(4501)] = 148500, + [SMALL_STATE(4502)] = 148558, + [SMALL_STATE(4503)] = 148616, + [SMALL_STATE(4504)] = 148674, + [SMALL_STATE(4505)] = 148732, + [SMALL_STATE(4506)] = 148794, + [SMALL_STATE(4507)] = 148852, + [SMALL_STATE(4508)] = 148912, + [SMALL_STATE(4509)] = 148972, + [SMALL_STATE(4510)] = 149030, + [SMALL_STATE(4511)] = 149090, + [SMALL_STATE(4512)] = 149148, + [SMALL_STATE(4513)] = 149246, + [SMALL_STATE(4514)] = 149308, + [SMALL_STATE(4515)] = 149368, + [SMALL_STATE(4516)] = 149438, + [SMALL_STATE(4517)] = 149508, + [SMALL_STATE(4518)] = 149566, + [SMALL_STATE(4519)] = 149664, + [SMALL_STATE(4520)] = 149722, + [SMALL_STATE(4521)] = 149780, + [SMALL_STATE(4522)] = 149838, + [SMALL_STATE(4523)] = 149900, + [SMALL_STATE(4524)] = 149960, + [SMALL_STATE(4525)] = 150018, + [SMALL_STATE(4526)] = 150088, + [SMALL_STATE(4527)] = 150146, + [SMALL_STATE(4528)] = 150216, + [SMALL_STATE(4529)] = 150310, + [SMALL_STATE(4530)] = 150368, + [SMALL_STATE(4531)] = 150426, + [SMALL_STATE(4532)] = 150484, + [SMALL_STATE(4533)] = 150542, + [SMALL_STATE(4534)] = 150600, + [SMALL_STATE(4535)] = 150658, + [SMALL_STATE(4536)] = 150748, + [SMALL_STATE(4537)] = 150806, + [SMALL_STATE(4538)] = 150864, + [SMALL_STATE(4539)] = 150922, + [SMALL_STATE(4540)] = 150980, + [SMALL_STATE(4541)] = 151042, + [SMALL_STATE(4542)] = 151104, + [SMALL_STATE(4543)] = 151162, + [SMALL_STATE(4544)] = 151220, + [SMALL_STATE(4545)] = 151278, + [SMALL_STATE(4546)] = 151336, + [SMALL_STATE(4547)] = 151394, + [SMALL_STATE(4548)] = 151456, + [SMALL_STATE(4549)] = 151520, + [SMALL_STATE(4550)] = 151582, + [SMALL_STATE(4551)] = 151640, + [SMALL_STATE(4552)] = 151698, + [SMALL_STATE(4553)] = 151756, + [SMALL_STATE(4554)] = 151814, + [SMALL_STATE(4555)] = 151872, + [SMALL_STATE(4556)] = 151930, + [SMALL_STATE(4557)] = 151988, + [SMALL_STATE(4558)] = 152046, + [SMALL_STATE(4559)] = 152106, + [SMALL_STATE(4560)] = 152164, + [SMALL_STATE(4561)] = 152222, + [SMALL_STATE(4562)] = 152280, + [SMALL_STATE(4563)] = 152338, + [SMALL_STATE(4564)] = 152398, + [SMALL_STATE(4565)] = 152456, + [SMALL_STATE(4566)] = 152546, + [SMALL_STATE(4567)] = 152604, + [SMALL_STATE(4568)] = 152670, + [SMALL_STATE(4569)] = 152732, + [SMALL_STATE(4570)] = 152790, + [SMALL_STATE(4571)] = 152848, + [SMALL_STATE(4572)] = 152918, + [SMALL_STATE(4573)] = 153012, + [SMALL_STATE(4574)] = 153072, + [SMALL_STATE(4575)] = 153130, + [SMALL_STATE(4576)] = 153188, + [SMALL_STATE(4577)] = 153282, + [SMALL_STATE(4578)] = 153340, + [SMALL_STATE(4579)] = 153398, + [SMALL_STATE(4580)] = 153456, + [SMALL_STATE(4581)] = 153514, + [SMALL_STATE(4582)] = 153572, + [SMALL_STATE(4583)] = 153630, + [SMALL_STATE(4584)] = 153688, + [SMALL_STATE(4585)] = 153746, + [SMALL_STATE(4586)] = 153804, + [SMALL_STATE(4587)] = 153864, + [SMALL_STATE(4588)] = 153922, + [SMALL_STATE(4589)] = 153980, + [SMALL_STATE(4590)] = 154042, + [SMALL_STATE(4591)] = 154100, + [SMALL_STATE(4592)] = 154158, + [SMALL_STATE(4593)] = 154216, + [SMALL_STATE(4594)] = 154274, + [SMALL_STATE(4595)] = 154332, + [SMALL_STATE(4596)] = 154390, + [SMALL_STATE(4597)] = 154452, + [SMALL_STATE(4598)] = 154510, + [SMALL_STATE(4599)] = 154608, + [SMALL_STATE(4600)] = 154668, + [SMALL_STATE(4601)] = 154726, + [SMALL_STATE(4602)] = 154786, + [SMALL_STATE(4603)] = 154844, + [SMALL_STATE(4604)] = 154902, + [SMALL_STATE(4605)] = 154961, + [SMALL_STATE(4606)] = 155048, + [SMALL_STATE(4607)] = 155143, + [SMALL_STATE(4608)] = 155232, + [SMALL_STATE(4609)] = 155289, + [SMALL_STATE(4610)] = 155382, + [SMALL_STATE(4611)] = 155475, + [SMALL_STATE(4612)] = 155568, + [SMALL_STATE(4613)] = 155625, + [SMALL_STATE(4614)] = 155718, + [SMALL_STATE(4615)] = 155777, + [SMALL_STATE(4616)] = 155834, + [SMALL_STATE(4617)] = 155891, + [SMALL_STATE(4618)] = 155948, + [SMALL_STATE(4619)] = 156005, + [SMALL_STATE(4620)] = 156062, + [SMALL_STATE(4621)] = 156131, + [SMALL_STATE(4622)] = 156200, + [SMALL_STATE(4623)] = 156257, + [SMALL_STATE(4624)] = 156314, + [SMALL_STATE(4625)] = 156371, + [SMALL_STATE(4626)] = 156432, + [SMALL_STATE(4627)] = 156489, + [SMALL_STATE(4628)] = 156546, + [SMALL_STATE(4629)] = 156603, + [SMALL_STATE(4630)] = 156660, + [SMALL_STATE(4631)] = 156717, + [SMALL_STATE(4632)] = 156786, + [SMALL_STATE(4633)] = 156843, + [SMALL_STATE(4634)] = 156900, + [SMALL_STATE(4635)] = 156957, + [SMALL_STATE(4636)] = 157016, + [SMALL_STATE(4637)] = 157073, + [SMALL_STATE(4638)] = 157130, + [SMALL_STATE(4639)] = 157187, + [SMALL_STATE(4640)] = 157256, + [SMALL_STATE(4641)] = 157313, + [SMALL_STATE(4642)] = 157370, + [SMALL_STATE(4643)] = 157427, + [SMALL_STATE(4644)] = 157484, + [SMALL_STATE(4645)] = 157541, + [SMALL_STATE(4646)] = 157610, + [SMALL_STATE(4647)] = 157667, + [SMALL_STATE(4648)] = 157724, + [SMALL_STATE(4649)] = 157793, + [SMALL_STATE(4650)] = 157850, + [SMALL_STATE(4651)] = 157943, + [SMALL_STATE(4652)] = 158038, + [SMALL_STATE(4653)] = 158095, + [SMALL_STATE(4654)] = 158152, + [SMALL_STATE(4655)] = 158209, + [SMALL_STATE(4656)] = 158302, + [SMALL_STATE(4657)] = 158397, + [SMALL_STATE(4658)] = 158454, + [SMALL_STATE(4659)] = 158511, + [SMALL_STATE(4660)] = 158568, + [SMALL_STATE(4661)] = 158625, + [SMALL_STATE(4662)] = 158682, + [SMALL_STATE(4663)] = 158739, + [SMALL_STATE(4664)] = 158796, + [SMALL_STATE(4665)] = 158853, + [SMALL_STATE(4666)] = 158910, + [SMALL_STATE(4667)] = 158967, + [SMALL_STATE(4668)] = 159026, + [SMALL_STATE(4669)] = 159083, + [SMALL_STATE(4670)] = 159140, + [SMALL_STATE(4671)] = 159199, + [SMALL_STATE(4672)] = 159264, + [SMALL_STATE(4673)] = 159321, + [SMALL_STATE(4674)] = 159378, + [SMALL_STATE(4675)] = 159435, + [SMALL_STATE(4676)] = 159494, + [SMALL_STATE(4677)] = 159551, + [SMALL_STATE(4678)] = 159610, + [SMALL_STATE(4679)] = 159719, + [SMALL_STATE(4680)] = 159778, + [SMALL_STATE(4681)] = 159835, + [SMALL_STATE(4682)] = 159892, + [SMALL_STATE(4683)] = 160001, + [SMALL_STATE(4684)] = 160068, + [SMALL_STATE(4685)] = 160125, + [SMALL_STATE(4686)] = 160182, + [SMALL_STATE(4687)] = 160239, + [SMALL_STATE(4688)] = 160296, + [SMALL_STATE(4689)] = 160353, + [SMALL_STATE(4690)] = 160412, + [SMALL_STATE(4691)] = 160475, + [SMALL_STATE(4692)] = 160532, + [SMALL_STATE(4693)] = 160641, + [SMALL_STATE(4694)] = 160704, + [SMALL_STATE(4695)] = 160761, + [SMALL_STATE(4696)] = 160818, + [SMALL_STATE(4697)] = 160889, + [SMALL_STATE(4698)] = 160946, + [SMALL_STATE(4699)] = 161003, + [SMALL_STATE(4700)] = 161062, + [SMALL_STATE(4701)] = 161119, + [SMALL_STATE(4702)] = 161208, + [SMALL_STATE(4703)] = 161317, + [SMALL_STATE(4704)] = 161374, + [SMALL_STATE(4705)] = 161467, + [SMALL_STATE(4706)] = 161536, + [SMALL_STATE(4707)] = 161593, + [SMALL_STATE(4708)] = 161652, + [SMALL_STATE(4709)] = 161709, + [SMALL_STATE(4710)] = 161766, + [SMALL_STATE(4711)] = 161823, + [SMALL_STATE(4712)] = 161932, + [SMALL_STATE(4713)] = 162027, + [SMALL_STATE(4714)] = 162084, + [SMALL_STATE(4715)] = 162141, + [SMALL_STATE(4716)] = 162198, + [SMALL_STATE(4717)] = 162255, + [SMALL_STATE(4718)] = 162312, + [SMALL_STATE(4719)] = 162369, + [SMALL_STATE(4720)] = 162426, + [SMALL_STATE(4721)] = 162483, + [SMALL_STATE(4722)] = 162540, + [SMALL_STATE(4723)] = 162597, + [SMALL_STATE(4724)] = 162654, + [SMALL_STATE(4725)] = 162735, + [SMALL_STATE(4726)] = 162792, + [SMALL_STATE(4727)] = 162865, + [SMALL_STATE(4728)] = 162922, + [SMALL_STATE(4729)] = 162979, + [SMALL_STATE(4730)] = 163036, + [SMALL_STATE(4731)] = 163145, + [SMALL_STATE(4732)] = 163202, + [SMALL_STATE(4733)] = 163259, + [SMALL_STATE(4734)] = 163316, + [SMALL_STATE(4735)] = 163373, + [SMALL_STATE(4736)] = 163430, + [SMALL_STATE(4737)] = 163499, + [SMALL_STATE(4738)] = 163556, + [SMALL_STATE(4739)] = 163615, + [SMALL_STATE(4740)] = 163672, + [SMALL_STATE(4741)] = 163729, + [SMALL_STATE(4742)] = 163824, + [SMALL_STATE(4743)] = 163881, + [SMALL_STATE(4744)] = 163990, + [SMALL_STATE(4745)] = 164083, + [SMALL_STATE(4746)] = 164192, + [SMALL_STATE(4747)] = 164269, + [SMALL_STATE(4748)] = 164326, + [SMALL_STATE(4749)] = 164383, + [SMALL_STATE(4750)] = 164440, + [SMALL_STATE(4751)] = 164497, + [SMALL_STATE(4752)] = 164554, + [SMALL_STATE(4753)] = 164611, + [SMALL_STATE(4754)] = 164680, + [SMALL_STATE(4755)] = 164737, + [SMALL_STATE(4756)] = 164794, + [SMALL_STATE(4757)] = 164853, + [SMALL_STATE(4758)] = 164910, + [SMALL_STATE(4759)] = 164967, + [SMALL_STATE(4760)] = 165024, + [SMALL_STATE(4761)] = 165081, + [SMALL_STATE(4762)] = 165150, + [SMALL_STATE(4763)] = 165209, + [SMALL_STATE(4764)] = 165274, + [SMALL_STATE(4765)] = 165335, + [SMALL_STATE(4766)] = 165392, + [SMALL_STATE(4767)] = 165477, + [SMALL_STATE(4768)] = 165564, + [SMALL_STATE(4769)] = 165623, + [SMALL_STATE(4770)] = 165716, + [SMALL_STATE(4771)] = 165773, + [SMALL_STATE(4772)] = 165866, + [SMALL_STATE(4773)] = 165935, + [SMALL_STATE(4774)] = 166028, + [SMALL_STATE(4775)] = 166121, + [SMALL_STATE(4776)] = 166214, + [SMALL_STATE(4777)] = 166273, + [SMALL_STATE(4778)] = 166342, + [SMALL_STATE(4779)] = 166431, + [SMALL_STATE(4780)] = 166492, + [SMALL_STATE(4781)] = 166549, + [SMALL_STATE(4782)] = 166642, + [SMALL_STATE(4783)] = 166699, + [SMALL_STATE(4784)] = 166756, + [SMALL_STATE(4785)] = 166815, + [SMALL_STATE(4786)] = 166872, + [SMALL_STATE(4787)] = 166929, + [SMALL_STATE(4788)] = 166992, + [SMALL_STATE(4789)] = 167053, + [SMALL_STATE(4790)] = 167112, + [SMALL_STATE(4791)] = 167169, + [SMALL_STATE(4792)] = 167238, + [SMALL_STATE(4793)] = 167295, + [SMALL_STATE(4794)] = 167364, + [SMALL_STATE(4795)] = 167421, + [SMALL_STATE(4796)] = 167478, + [SMALL_STATE(4797)] = 167535, + [SMALL_STATE(4798)] = 167630, + [SMALL_STATE(4799)] = 167687, + [SMALL_STATE(4800)] = 167744, + [SMALL_STATE(4801)] = 167807, + [SMALL_STATE(4802)] = 167902, + [SMALL_STATE(4803)] = 167963, + [SMALL_STATE(4804)] = 168020, + [SMALL_STATE(4805)] = 168085, + [SMALL_STATE(4806)] = 168180, + [SMALL_STATE(4807)] = 168241, + [SMALL_STATE(4808)] = 168336, + [SMALL_STATE(4809)] = 168393, + [SMALL_STATE(4810)] = 168488, + [SMALL_STATE(4811)] = 168551, + [SMALL_STATE(4812)] = 168660, + [SMALL_STATE(4813)] = 168721, + [SMALL_STATE(4814)] = 168810, + [SMALL_STATE(4815)] = 168867, + [SMALL_STATE(4816)] = 168962, + [SMALL_STATE(4817)] = 169057, + [SMALL_STATE(4818)] = 169152, + [SMALL_STATE(4819)] = 169221, + [SMALL_STATE(4820)] = 169290, + [SMALL_STATE(4821)] = 169351, + [SMALL_STATE(4822)] = 169460, + [SMALL_STATE(4823)] = 169569, + [SMALL_STATE(4824)] = 169626, + [SMALL_STATE(4825)] = 169687, + [SMALL_STATE(4826)] = 169796, + [SMALL_STATE(4827)] = 169853, + [SMALL_STATE(4828)] = 169942, + [SMALL_STATE(4829)] = 169999, + [SMALL_STATE(4830)] = 170064, + [SMALL_STATE(4831)] = 170125, + [SMALL_STATE(4832)] = 170182, + [SMALL_STATE(4833)] = 170239, + [SMALL_STATE(4834)] = 170296, + [SMALL_STATE(4835)] = 170353, + [SMALL_STATE(4836)] = 170446, + [SMALL_STATE(4837)] = 170539, + [SMALL_STATE(4838)] = 170648, + [SMALL_STATE(4839)] = 170705, + [SMALL_STATE(4840)] = 170768, + [SMALL_STATE(4841)] = 170827, + [SMALL_STATE(4842)] = 170920, + [SMALL_STATE(4843)] = 171013, + [SMALL_STATE(4844)] = 171070, + [SMALL_STATE(4845)] = 171127, + [SMALL_STATE(4846)] = 171184, + [SMALL_STATE(4847)] = 171241, + [SMALL_STATE(4848)] = 171298, + [SMALL_STATE(4849)] = 171407, + [SMALL_STATE(4850)] = 171464, + [SMALL_STATE(4851)] = 171521, + [SMALL_STATE(4852)] = 171580, + [SMALL_STATE(4853)] = 171673, + [SMALL_STATE(4854)] = 171732, + [SMALL_STATE(4855)] = 171789, + [SMALL_STATE(4856)] = 171882, + [SMALL_STATE(4857)] = 171939, + [SMALL_STATE(4858)] = 171996, + [SMALL_STATE(4859)] = 172063, + [SMALL_STATE(4860)] = 172126, + [SMALL_STATE(4861)] = 172189, + [SMALL_STATE(4862)] = 172248, + [SMALL_STATE(4863)] = 172309, + [SMALL_STATE(4864)] = 172380, + [SMALL_STATE(4865)] = 172469, + [SMALL_STATE(4866)] = 172550, + [SMALL_STATE(4867)] = 172639, + [SMALL_STATE(4868)] = 172732, + [SMALL_STATE(4869)] = 172805, + [SMALL_STATE(4870)] = 172864, + [SMALL_STATE(4871)] = 172957, + [SMALL_STATE(4872)] = 173026, + [SMALL_STATE(4873)] = 173121, + [SMALL_STATE(4874)] = 173216, + [SMALL_STATE(4875)] = 173293, + [SMALL_STATE(4876)] = 173388, + [SMALL_STATE(4877)] = 173473, + [SMALL_STATE(4878)] = 173530, + [SMALL_STATE(4879)] = 173619, + [SMALL_STATE(4880)] = 173676, + [SMALL_STATE(4881)] = 173733, + [SMALL_STATE(4882)] = 173791, + [SMALL_STATE(4883)] = 173883, + [SMALL_STATE(4884)] = 173939, + [SMALL_STATE(4885)] = 174013, + [SMALL_STATE(4886)] = 174077, + [SMALL_STATE(4887)] = 174141, + [SMALL_STATE(4888)] = 174205, + [SMALL_STATE(4889)] = 174261, + [SMALL_STATE(4890)] = 174325, + [SMALL_STATE(4891)] = 174389, + [SMALL_STATE(4892)] = 174445, + [SMALL_STATE(4893)] = 174505, + [SMALL_STATE(4894)] = 174593, + [SMALL_STATE(4895)] = 174649, + [SMALL_STATE(4896)] = 174709, + [SMALL_STATE(4897)] = 174769, + [SMALL_STATE(4898)] = 174861, + [SMALL_STATE(4899)] = 174953, + [SMALL_STATE(4900)] = 175045, + [SMALL_STATE(4901)] = 175137, + [SMALL_STATE(4902)] = 175193, + [SMALL_STATE(4903)] = 175281, + [SMALL_STATE(4904)] = 175337, + [SMALL_STATE(4905)] = 175429, + [SMALL_STATE(4906)] = 175521, + [SMALL_STATE(4907)] = 175613, + [SMALL_STATE(4908)] = 175679, + [SMALL_STATE(4909)] = 175741, + [SMALL_STATE(4910)] = 175803, + [SMALL_STATE(4911)] = 175873, + [SMALL_STATE(4912)] = 175961, + [SMALL_STATE(4913)] = 176041, + [SMALL_STATE(4914)] = 176113, + [SMALL_STATE(4915)] = 176181, + [SMALL_STATE(4916)] = 176257, + [SMALL_STATE(4917)] = 176341, + [SMALL_STATE(4918)] = 176427, + [SMALL_STATE(4919)] = 176483, + [SMALL_STATE(4920)] = 176539, + [SMALL_STATE(4921)] = 176613, + [SMALL_STATE(4922)] = 176687, + [SMALL_STATE(4923)] = 176775, + [SMALL_STATE(4924)] = 176831, + [SMALL_STATE(4925)] = 176887, + [SMALL_STATE(4926)] = 176979, + [SMALL_STATE(4927)] = 177071, + [SMALL_STATE(4928)] = 177163, + [SMALL_STATE(4929)] = 177219, + [SMALL_STATE(4930)] = 177275, + [SMALL_STATE(4931)] = 177349, + [SMALL_STATE(4932)] = 177423, + [SMALL_STATE(4933)] = 177485, + [SMALL_STATE(4934)] = 177547, + [SMALL_STATE(4935)] = 177607, + [SMALL_STATE(4936)] = 177681, + [SMALL_STATE(4937)] = 177755, + [SMALL_STATE(4938)] = 177819, + [SMALL_STATE(4939)] = 177875, + [SMALL_STATE(4940)] = 177949, + [SMALL_STATE(4941)] = 178005, + [SMALL_STATE(4942)] = 178061, + [SMALL_STATE(4943)] = 178117, + [SMALL_STATE(4944)] = 178191, + [SMALL_STATE(4945)] = 178247, + [SMALL_STATE(4946)] = 178303, + [SMALL_STATE(4947)] = 178359, + [SMALL_STATE(4948)] = 178427, + [SMALL_STATE(4949)] = 178483, + [SMALL_STATE(4950)] = 178539, + [SMALL_STATE(4951)] = 178595, + [SMALL_STATE(4952)] = 178663, + [SMALL_STATE(4953)] = 178719, + [SMALL_STATE(4954)] = 178775, + [SMALL_STATE(4955)] = 178831, + [SMALL_STATE(4956)] = 178905, + [SMALL_STATE(4957)] = 178979, + [SMALL_STATE(4958)] = 179041, + [SMALL_STATE(4959)] = 179105, + [SMALL_STATE(4960)] = 179163, + [SMALL_STATE(4961)] = 179231, + [SMALL_STATE(4962)] = 179299, + [SMALL_STATE(4963)] = 179367, + [SMALL_STATE(4964)] = 179425, + [SMALL_STATE(4965)] = 179499, + [SMALL_STATE(4966)] = 179559, + [SMALL_STATE(4967)] = 179617, + [SMALL_STATE(4968)] = 179685, + [SMALL_STATE(4969)] = 179753, + [SMALL_STATE(4970)] = 179815, + [SMALL_STATE(4971)] = 179875, + [SMALL_STATE(4972)] = 179943, + [SMALL_STATE(4973)] = 180011, + [SMALL_STATE(4974)] = 180067, + [SMALL_STATE(4975)] = 180127, + [SMALL_STATE(4976)] = 180185, + [SMALL_STATE(4977)] = 180253, + [SMALL_STATE(4978)] = 180321, + [SMALL_STATE(4979)] = 180395, + [SMALL_STATE(4980)] = 180459, + [SMALL_STATE(4981)] = 180527, + [SMALL_STATE(4982)] = 180585, + [SMALL_STATE(4983)] = 180649, + [SMALL_STATE(4984)] = 180717, + [SMALL_STATE(4985)] = 180775, + [SMALL_STATE(4986)] = 180849, + [SMALL_STATE(4987)] = 180923, + [SMALL_STATE(4988)] = 180997, + [SMALL_STATE(4989)] = 181071, + [SMALL_STATE(4990)] = 181145, + [SMALL_STATE(4991)] = 181219, + [SMALL_STATE(4992)] = 181293, + [SMALL_STATE(4993)] = 181367, + [SMALL_STATE(4994)] = 181441, + [SMALL_STATE(4995)] = 181515, + [SMALL_STATE(4996)] = 181589, + [SMALL_STATE(4997)] = 181663, + [SMALL_STATE(4998)] = 181737, + [SMALL_STATE(4999)] = 181811, + [SMALL_STATE(5000)] = 181885, + [SMALL_STATE(5001)] = 181959, + [SMALL_STATE(5002)] = 182033, + [SMALL_STATE(5003)] = 182107, + [SMALL_STATE(5004)] = 182181, + [SMALL_STATE(5005)] = 182255, + [SMALL_STATE(5006)] = 182317, + [SMALL_STATE(5007)] = 182381, + [SMALL_STATE(5008)] = 182443, + [SMALL_STATE(5009)] = 182517, + [SMALL_STATE(5010)] = 182579, + [SMALL_STATE(5011)] = 182641, + [SMALL_STATE(5012)] = 182703, + [SMALL_STATE(5013)] = 182765, + [SMALL_STATE(5014)] = 182821, + [SMALL_STATE(5015)] = 182895, + [SMALL_STATE(5016)] = 182957, + [SMALL_STATE(5017)] = 183021, + [SMALL_STATE(5018)] = 183095, + [SMALL_STATE(5019)] = 183169, + [SMALL_STATE(5020)] = 183243, + [SMALL_STATE(5021)] = 183317, + [SMALL_STATE(5022)] = 183391, + [SMALL_STATE(5023)] = 183465, + [SMALL_STATE(5024)] = 183539, + [SMALL_STATE(5025)] = 183613, + [SMALL_STATE(5026)] = 183669, + [SMALL_STATE(5027)] = 183743, + [SMALL_STATE(5028)] = 183801, + [SMALL_STATE(5029)] = 183865, + [SMALL_STATE(5030)] = 183923, + [SMALL_STATE(5031)] = 183997, + [SMALL_STATE(5032)] = 184053, + [SMALL_STATE(5033)] = 184109, + [SMALL_STATE(5034)] = 184183, + [SMALL_STATE(5035)] = 184257, + [SMALL_STATE(5036)] = 184331, + [SMALL_STATE(5037)] = 184387, + [SMALL_STATE(5038)] = 184443, + [SMALL_STATE(5039)] = 184499, + [SMALL_STATE(5040)] = 184567, + [SMALL_STATE(5041)] = 184623, + [SMALL_STATE(5042)] = 184697, + [SMALL_STATE(5043)] = 184771, + [SMALL_STATE(5044)] = 184845, + [SMALL_STATE(5045)] = 184909, + [SMALL_STATE(5046)] = 184965, + [SMALL_STATE(5047)] = 185021, + [SMALL_STATE(5048)] = 185089, + [SMALL_STATE(5049)] = 185145, + [SMALL_STATE(5050)] = 185201, + [SMALL_STATE(5051)] = 185275, + [SMALL_STATE(5052)] = 185334, + [SMALL_STATE(5053)] = 185397, + [SMALL_STATE(5054)] = 185460, + [SMALL_STATE(5055)] = 185523, + [SMALL_STATE(5056)] = 185586, + [SMALL_STATE(5057)] = 185645, + [SMALL_STATE(5058)] = 185700, + [SMALL_STATE(5059)] = 185757, + [SMALL_STATE(5060)] = 185824, + [SMALL_STATE(5061)] = 185891, + [SMALL_STATE(5062)] = 185946, + [SMALL_STATE(5063)] = 186001, + [SMALL_STATE(5064)] = 186062, + [SMALL_STATE(5065)] = 186123, + [SMALL_STATE(5066)] = 186184, + [SMALL_STATE(5067)] = 186245, + [SMALL_STATE(5068)] = 186306, + [SMALL_STATE(5069)] = 186361, + [SMALL_STATE(5070)] = 186416, + [SMALL_STATE(5071)] = 186475, + [SMALL_STATE(5072)] = 186530, + [SMALL_STATE(5073)] = 186593, + [SMALL_STATE(5074)] = 186654, + [SMALL_STATE(5075)] = 186709, + [SMALL_STATE(5076)] = 186764, + [SMALL_STATE(5077)] = 186819, + [SMALL_STATE(5078)] = 186874, + [SMALL_STATE(5079)] = 186949, + [SMALL_STATE(5080)] = 187024, + [SMALL_STATE(5081)] = 187099, + [SMALL_STATE(5082)] = 187160, + [SMALL_STATE(5083)] = 187215, + [SMALL_STATE(5084)] = 187270, + [SMALL_STATE(5085)] = 187325, + [SMALL_STATE(5086)] = 187392, + [SMALL_STATE(5087)] = 187459, + [SMALL_STATE(5088)] = 187514, + [SMALL_STATE(5089)] = 187575, + [SMALL_STATE(5090)] = 187630, + [SMALL_STATE(5091)] = 187691, + [SMALL_STATE(5092)] = 187746, + [SMALL_STATE(5093)] = 187801, + [SMALL_STATE(5094)] = 187856, + [SMALL_STATE(5095)] = 187911, + [SMALL_STATE(5096)] = 187966, + [SMALL_STATE(5097)] = 188021, + [SMALL_STATE(5098)] = 188076, + [SMALL_STATE(5099)] = 188131, + [SMALL_STATE(5100)] = 188194, + [SMALL_STATE(5101)] = 188249, + [SMALL_STATE(5102)] = 188304, + [SMALL_STATE(5103)] = 188359, + [SMALL_STATE(5104)] = 188414, + [SMALL_STATE(5105)] = 188469, + [SMALL_STATE(5106)] = 188524, + [SMALL_STATE(5107)] = 188579, + [SMALL_STATE(5108)] = 188634, + [SMALL_STATE(5109)] = 188689, + [SMALL_STATE(5110)] = 188744, + [SMALL_STATE(5111)] = 188803, + [SMALL_STATE(5112)] = 188870, + [SMALL_STATE(5113)] = 188937, + [SMALL_STATE(5114)] = 188996, + [SMALL_STATE(5115)] = 189053, + [SMALL_STATE(5116)] = 189120, + [SMALL_STATE(5117)] = 189187, + [SMALL_STATE(5118)] = 189250, + [SMALL_STATE(5119)] = 189307, + [SMALL_STATE(5120)] = 189402, + [SMALL_STATE(5121)] = 189461, + [SMALL_STATE(5122)] = 189556, + [SMALL_STATE(5123)] = 189615, + [SMALL_STATE(5124)] = 189674, + [SMALL_STATE(5125)] = 189733, + [SMALL_STATE(5126)] = 189796, + [SMALL_STATE(5127)] = 189859, + [SMALL_STATE(5128)] = 189914, + [SMALL_STATE(5129)] = 189969, + [SMALL_STATE(5130)] = 190036, + [SMALL_STATE(5131)] = 190093, + [SMALL_STATE(5132)] = 190148, + [SMALL_STATE(5133)] = 190203, + [SMALL_STATE(5134)] = 190298, + [SMALL_STATE(5135)] = 190393, + [SMALL_STATE(5136)] = 190448, + [SMALL_STATE(5137)] = 190505, + [SMALL_STATE(5138)] = 190562, + [SMALL_STATE(5139)] = 190617, + [SMALL_STATE(5140)] = 190678, + [SMALL_STATE(5141)] = 190733, + [SMALL_STATE(5142)] = 190790, + [SMALL_STATE(5143)] = 190845, + [SMALL_STATE(5144)] = 190908, + [SMALL_STATE(5145)] = 190965, + [SMALL_STATE(5146)] = 191022, + [SMALL_STATE(5147)] = 191079, + [SMALL_STATE(5148)] = 191138, + [SMALL_STATE(5149)] = 191195, + [SMALL_STATE(5150)] = 191252, + [SMALL_STATE(5151)] = 191347, + [SMALL_STATE(5152)] = 191404, + [SMALL_STATE(5153)] = 191459, + [SMALL_STATE(5154)] = 191516, + [SMALL_STATE(5155)] = 191573, + [SMALL_STATE(5156)] = 191660, + [SMALL_STATE(5157)] = 191751, + [SMALL_STATE(5158)] = 191842, + [SMALL_STATE(5159)] = 191933, + [SMALL_STATE(5160)] = 191998, + [SMALL_STATE(5161)] = 192059, + [SMALL_STATE(5162)] = 192120, + [SMALL_STATE(5163)] = 192189, + [SMALL_STATE(5164)] = 192246, + [SMALL_STATE(5165)] = 192333, + [SMALL_STATE(5166)] = 192412, + [SMALL_STATE(5167)] = 192483, + [SMALL_STATE(5168)] = 192550, + [SMALL_STATE(5169)] = 192625, + [SMALL_STATE(5170)] = 192708, + [SMALL_STATE(5171)] = 192793, + [SMALL_STATE(5172)] = 192880, + [SMALL_STATE(5173)] = 192971, + [SMALL_STATE(5174)] = 193028, + [SMALL_STATE(5175)] = 193083, + [SMALL_STATE(5176)] = 193174, + [SMALL_STATE(5177)] = 193265, + [SMALL_STATE(5178)] = 193320, + [SMALL_STATE(5179)] = 193415, + [SMALL_STATE(5180)] = 193482, + [SMALL_STATE(5181)] = 193539, + [SMALL_STATE(5182)] = 193596, + [SMALL_STATE(5183)] = 193651, + [SMALL_STATE(5184)] = 193708, + [SMALL_STATE(5185)] = 193763, + [SMALL_STATE(5186)] = 193818, + [SMALL_STATE(5187)] = 193879, + [SMALL_STATE(5188)] = 193938, + [SMALL_STATE(5189)] = 193999, + [SMALL_STATE(5190)] = 194054, + [SMALL_STATE(5191)] = 194111, + [SMALL_STATE(5192)] = 194168, + [SMALL_STATE(5193)] = 194225, + [SMALL_STATE(5194)] = 194280, + [SMALL_STATE(5195)] = 194339, + [SMALL_STATE(5196)] = 194394, + [SMALL_STATE(5197)] = 194449, + [SMALL_STATE(5198)] = 194504, + [SMALL_STATE(5199)] = 194559, + [SMALL_STATE(5200)] = 194614, + [SMALL_STATE(5201)] = 194669, + [SMALL_STATE(5202)] = 194724, + [SMALL_STATE(5203)] = 194779, + [SMALL_STATE(5204)] = 194834, + [SMALL_STATE(5205)] = 194895, + [SMALL_STATE(5206)] = 194956, + [SMALL_STATE(5207)] = 195011, + [SMALL_STATE(5208)] = 195066, + [SMALL_STATE(5209)] = 195153, + [SMALL_STATE(5210)] = 195248, + [SMALL_STATE(5211)] = 195307, + [SMALL_STATE(5212)] = 195402, + [SMALL_STATE(5213)] = 195461, + [SMALL_STATE(5214)] = 195520, + [SMALL_STATE(5215)] = 195579, + [SMALL_STATE(5216)] = 195638, + [SMALL_STATE(5217)] = 195693, + [SMALL_STATE(5218)] = 195756, + [SMALL_STATE(5219)] = 195815, + [SMALL_STATE(5220)] = 195870, + [SMALL_STATE(5221)] = 195930, + [SMALL_STATE(5222)] = 195984, + [SMALL_STATE(5223)] = 196040, + [SMALL_STATE(5224)] = 196098, + [SMALL_STATE(5225)] = 196152, + [SMALL_STATE(5226)] = 196206, + [SMALL_STATE(5227)] = 196268, + [SMALL_STATE(5228)] = 196322, + [SMALL_STATE(5229)] = 196412, + [SMALL_STATE(5230)] = 196502, + [SMALL_STATE(5231)] = 196598, + [SMALL_STATE(5232)] = 196694, + [SMALL_STATE(5233)] = 196752, + [SMALL_STATE(5234)] = 196810, + [SMALL_STATE(5235)] = 196868, + [SMALL_STATE(5236)] = 196926, + [SMALL_STATE(5237)] = 196980, + [SMALL_STATE(5238)] = 197034, + [SMALL_STATE(5239)] = 197100, + [SMALL_STATE(5240)] = 197156, + [SMALL_STATE(5241)] = 197254, + [SMALL_STATE(5242)] = 197316, + [SMALL_STATE(5243)] = 197370, + [SMALL_STATE(5244)] = 197424, + [SMALL_STATE(5245)] = 197478, + [SMALL_STATE(5246)] = 197532, + [SMALL_STATE(5247)] = 197622, + [SMALL_STATE(5248)] = 197712, + [SMALL_STATE(5249)] = 197766, + [SMALL_STATE(5250)] = 197856, + [SMALL_STATE(5251)] = 197910, + [SMALL_STATE(5252)] = 197964, + [SMALL_STATE(5253)] = 198018, + [SMALL_STATE(5254)] = 198072, + [SMALL_STATE(5255)] = 198126, + [SMALL_STATE(5256)] = 198180, + [SMALL_STATE(5257)] = 198274, + [SMALL_STATE(5258)] = 198334, + [SMALL_STATE(5259)] = 198396, + [SMALL_STATE(5260)] = 198492, + [SMALL_STATE(5261)] = 198550, + [SMALL_STATE(5262)] = 198604, + [SMALL_STATE(5263)] = 198658, + [SMALL_STATE(5264)] = 198754, + [SMALL_STATE(5265)] = 198808, + [SMALL_STATE(5266)] = 198862, + [SMALL_STATE(5267)] = 198916, + [SMALL_STATE(5268)] = 198970, + [SMALL_STATE(5269)] = 199024, + [SMALL_STATE(5270)] = 199078, + [SMALL_STATE(5271)] = 199136, + [SMALL_STATE(5272)] = 199198, + [SMALL_STATE(5273)] = 199252, + [SMALL_STATE(5274)] = 199306, + [SMALL_STATE(5275)] = 199360, + [SMALL_STATE(5276)] = 199414, + [SMALL_STATE(5277)] = 199468, + [SMALL_STATE(5278)] = 199522, + [SMALL_STATE(5279)] = 199576, + [SMALL_STATE(5280)] = 199630, + [SMALL_STATE(5281)] = 199684, + [SMALL_STATE(5282)] = 199742, + [SMALL_STATE(5283)] = 199828, + [SMALL_STATE(5284)] = 199882, + [SMALL_STATE(5285)] = 199936, + [SMALL_STATE(5286)] = 199990, + [SMALL_STATE(5287)] = 200044, + [SMALL_STATE(5288)] = 200098, + [SMALL_STATE(5289)] = 200152, + [SMALL_STATE(5290)] = 200206, + [SMALL_STATE(5291)] = 200260, + [SMALL_STATE(5292)] = 200314, + [SMALL_STATE(5293)] = 200368, + [SMALL_STATE(5294)] = 200424, + [SMALL_STATE(5295)] = 200478, + [SMALL_STATE(5296)] = 200536, + [SMALL_STATE(5297)] = 200594, + [SMALL_STATE(5298)] = 200660, + [SMALL_STATE(5299)] = 200714, + [SMALL_STATE(5300)] = 200768, + [SMALL_STATE(5301)] = 200822, + [SMALL_STATE(5302)] = 200878, + [SMALL_STATE(5303)] = 200932, + [SMALL_STATE(5304)] = 200986, + [SMALL_STATE(5305)] = 201040, + [SMALL_STATE(5306)] = 201094, + [SMALL_STATE(5307)] = 201148, + [SMALL_STATE(5308)] = 201202, + [SMALL_STATE(5309)] = 201256, + [SMALL_STATE(5310)] = 201310, + [SMALL_STATE(5311)] = 201364, + [SMALL_STATE(5312)] = 201418, + [SMALL_STATE(5313)] = 201472, + [SMALL_STATE(5314)] = 201526, + [SMALL_STATE(5315)] = 201580, + [SMALL_STATE(5316)] = 201634, + [SMALL_STATE(5317)] = 201688, + [SMALL_STATE(5318)] = 201742, + [SMALL_STATE(5319)] = 201796, + [SMALL_STATE(5320)] = 201850, + [SMALL_STATE(5321)] = 201908, + [SMALL_STATE(5322)] = 201962, + [SMALL_STATE(5323)] = 202048, + [SMALL_STATE(5324)] = 202102, + [SMALL_STATE(5325)] = 202158, + [SMALL_STATE(5326)] = 202212, + [SMALL_STATE(5327)] = 202266, + [SMALL_STATE(5328)] = 202324, + [SMALL_STATE(5329)] = 202378, + [SMALL_STATE(5330)] = 202436, + [SMALL_STATE(5331)] = 202494, + [SMALL_STATE(5332)] = 202550, + [SMALL_STATE(5333)] = 202604, + [SMALL_STATE(5334)] = 202698, + [SMALL_STATE(5335)] = 202754, + [SMALL_STATE(5336)] = 202812, + [SMALL_STATE(5337)] = 202866, + [SMALL_STATE(5338)] = 202920, + [SMALL_STATE(5339)] = 202974, + [SMALL_STATE(5340)] = 203028, + [SMALL_STATE(5341)] = 203082, + [SMALL_STATE(5342)] = 203138, + [SMALL_STATE(5343)] = 203194, + [SMALL_STATE(5344)] = 203250, + [SMALL_STATE(5345)] = 203304, + [SMALL_STATE(5346)] = 203358, + [SMALL_STATE(5347)] = 203412, + [SMALL_STATE(5348)] = 203466, + [SMALL_STATE(5349)] = 203524, + [SMALL_STATE(5350)] = 203578, + [SMALL_STATE(5351)] = 203632, + [SMALL_STATE(5352)] = 203688, + [SMALL_STATE(5353)] = 203744, + [SMALL_STATE(5354)] = 203800, + [SMALL_STATE(5355)] = 203858, + [SMALL_STATE(5356)] = 203912, + [SMALL_STATE(5357)] = 203968, + [SMALL_STATE(5358)] = 204024, + [SMALL_STATE(5359)] = 204114, + [SMALL_STATE(5360)] = 204204, + [SMALL_STATE(5361)] = 204264, + [SMALL_STATE(5362)] = 204318, + [SMALL_STATE(5363)] = 204408, + [SMALL_STATE(5364)] = 204464, + [SMALL_STATE(5365)] = 204518, + [SMALL_STATE(5366)] = 204572, + [SMALL_STATE(5367)] = 204626, + [SMALL_STATE(5368)] = 204680, + [SMALL_STATE(5369)] = 204734, + [SMALL_STATE(5370)] = 204788, + [SMALL_STATE(5371)] = 204842, + [SMALL_STATE(5372)] = 204896, + [SMALL_STATE(5373)] = 204960, + [SMALL_STATE(5374)] = 205020, + [SMALL_STATE(5375)] = 205080, + [SMALL_STATE(5376)] = 205148, + [SMALL_STATE(5377)] = 205234, + [SMALL_STATE(5378)] = 205312, + [SMALL_STATE(5379)] = 205382, + [SMALL_STATE(5380)] = 205448, + [SMALL_STATE(5381)] = 205508, + [SMALL_STATE(5382)] = 205590, + [SMALL_STATE(5383)] = 205674, + [SMALL_STATE(5384)] = 205728, + [SMALL_STATE(5385)] = 205782, + [SMALL_STATE(5386)] = 205836, + [SMALL_STATE(5387)] = 205890, + [SMALL_STATE(5388)] = 205944, + [SMALL_STATE(5389)] = 205998, + [SMALL_STATE(5390)] = 206052, + [SMALL_STATE(5391)] = 206106, + [SMALL_STATE(5392)] = 206160, + [SMALL_STATE(5393)] = 206216, + [SMALL_STATE(5394)] = 206270, + [SMALL_STATE(5395)] = 206324, + [SMALL_STATE(5396)] = 206378, + [SMALL_STATE(5397)] = 206432, + [SMALL_STATE(5398)] = 206486, + [SMALL_STATE(5399)] = 206540, + [SMALL_STATE(5400)] = 206594, + [SMALL_STATE(5401)] = 206650, + [SMALL_STATE(5402)] = 206706, + [SMALL_STATE(5403)] = 206760, + [SMALL_STATE(5404)] = 206814, + [SMALL_STATE(5405)] = 206868, + [SMALL_STATE(5406)] = 206922, + [SMALL_STATE(5407)] = 206982, + [SMALL_STATE(5408)] = 207036, + [SMALL_STATE(5409)] = 207090, + [SMALL_STATE(5410)] = 207144, + [SMALL_STATE(5411)] = 207240, + [SMALL_STATE(5412)] = 207336, + [SMALL_STATE(5413)] = 207390, + [SMALL_STATE(5414)] = 207444, + [SMALL_STATE(5415)] = 207498, + [SMALL_STATE(5416)] = 207552, + [SMALL_STATE(5417)] = 207606, + [SMALL_STATE(5418)] = 207660, + [SMALL_STATE(5419)] = 207714, + [SMALL_STATE(5420)] = 207768, + [SMALL_STATE(5421)] = 207822, + [SMALL_STATE(5422)] = 207876, + [SMALL_STATE(5423)] = 207930, + [SMALL_STATE(5424)] = 207984, + [SMALL_STATE(5425)] = 208038, + [SMALL_STATE(5426)] = 208124, + [SMALL_STATE(5427)] = 208178, + [SMALL_STATE(5428)] = 208232, + [SMALL_STATE(5429)] = 208286, + [SMALL_STATE(5430)] = 208340, + [SMALL_STATE(5431)] = 208394, + [SMALL_STATE(5432)] = 208448, + [SMALL_STATE(5433)] = 208502, + [SMALL_STATE(5434)] = 208556, + [SMALL_STATE(5435)] = 208610, + [SMALL_STATE(5436)] = 208664, + [SMALL_STATE(5437)] = 208718, + [SMALL_STATE(5438)] = 208784, + [SMALL_STATE(5439)] = 208838, + [SMALL_STATE(5440)] = 208892, + [SMALL_STATE(5441)] = 208946, + [SMALL_STATE(5442)] = 209036, + [SMALL_STATE(5443)] = 209090, + [SMALL_STATE(5444)] = 209144, + [SMALL_STATE(5445)] = 209198, + [SMALL_STATE(5446)] = 209252, + [SMALL_STATE(5447)] = 209306, + [SMALL_STATE(5448)] = 209360, + [SMALL_STATE(5449)] = 209414, + [SMALL_STATE(5450)] = 209504, + [SMALL_STATE(5451)] = 209558, + [SMALL_STATE(5452)] = 209612, + [SMALL_STATE(5453)] = 209666, + [SMALL_STATE(5454)] = 209720, + [SMALL_STATE(5455)] = 209774, + [SMALL_STATE(5456)] = 209828, + [SMALL_STATE(5457)] = 209882, + [SMALL_STATE(5458)] = 209936, + [SMALL_STATE(5459)] = 209990, + [SMALL_STATE(5460)] = 210044, + [SMALL_STATE(5461)] = 210134, + [SMALL_STATE(5462)] = 210188, + [SMALL_STATE(5463)] = 210242, + [SMALL_STATE(5464)] = 210296, + [SMALL_STATE(5465)] = 210350, + [SMALL_STATE(5466)] = 210404, + [SMALL_STATE(5467)] = 210464, + [SMALL_STATE(5468)] = 210518, + [SMALL_STATE(5469)] = 210580, + [SMALL_STATE(5470)] = 210634, + [SMALL_STATE(5471)] = 210688, + [SMALL_STATE(5472)] = 210742, + [SMALL_STATE(5473)] = 210800, + [SMALL_STATE(5474)] = 210858, + [SMALL_STATE(5475)] = 210918, + [SMALL_STATE(5476)] = 210974, + [SMALL_STATE(5477)] = 211034, + [SMALL_STATE(5478)] = 211094, + [SMALL_STATE(5479)] = 211160, + [SMALL_STATE(5480)] = 211220, + [SMALL_STATE(5481)] = 211286, + [SMALL_STATE(5482)] = 211340, + [SMALL_STATE(5483)] = 211414, + [SMALL_STATE(5484)] = 211468, + [SMALL_STATE(5485)] = 211522, + [SMALL_STATE(5486)] = 211580, + [SMALL_STATE(5487)] = 211654, + [SMALL_STATE(5488)] = 211712, + [SMALL_STATE(5489)] = 211786, + [SMALL_STATE(5490)] = 211840, + [SMALL_STATE(5491)] = 211902, + [SMALL_STATE(5492)] = 211956, + [SMALL_STATE(5493)] = 212010, + [SMALL_STATE(5494)] = 212064, + [SMALL_STATE(5495)] = 212118, + [SMALL_STATE(5496)] = 212180, + [SMALL_STATE(5497)] = 212238, + [SMALL_STATE(5498)] = 212292, + [SMALL_STATE(5499)] = 212346, + [SMALL_STATE(5500)] = 212400, + [SMALL_STATE(5501)] = 212462, + [SMALL_STATE(5502)] = 212522, + [SMALL_STATE(5503)] = 212584, + [SMALL_STATE(5504)] = 212646, + [SMALL_STATE(5505)] = 212708, + [SMALL_STATE(5506)] = 212770, + [SMALL_STATE(5507)] = 212824, + [SMALL_STATE(5508)] = 212878, + [SMALL_STATE(5509)] = 212932, + [SMALL_STATE(5510)] = 213006, + [SMALL_STATE(5511)] = 213059, + [SMALL_STATE(5512)] = 213112, + [SMALL_STATE(5513)] = 213169, + [SMALL_STATE(5514)] = 213262, + [SMALL_STATE(5515)] = 213315, + [SMALL_STATE(5516)] = 213368, + [SMALL_STATE(5517)] = 213421, + [SMALL_STATE(5518)] = 213474, + [SMALL_STATE(5519)] = 213535, + [SMALL_STATE(5520)] = 213588, + [SMALL_STATE(5521)] = 213641, + [SMALL_STATE(5522)] = 213694, + [SMALL_STATE(5523)] = 213747, + [SMALL_STATE(5524)] = 213802, + [SMALL_STATE(5525)] = 213855, + [SMALL_STATE(5526)] = 213908, + [SMALL_STATE(5527)] = 213961, + [SMALL_STATE(5528)] = 214014, + [SMALL_STATE(5529)] = 214067, + [SMALL_STATE(5530)] = 214120, + [SMALL_STATE(5531)] = 214173, + [SMALL_STATE(5532)] = 214226, + [SMALL_STATE(5533)] = 214279, + [SMALL_STATE(5534)] = 214332, + [SMALL_STATE(5535)] = 214387, + [SMALL_STATE(5536)] = 214440, + [SMALL_STATE(5537)] = 214493, + [SMALL_STATE(5538)] = 214546, + [SMALL_STATE(5539)] = 214603, + [SMALL_STATE(5540)] = 214656, + [SMALL_STATE(5541)] = 214709, + [SMALL_STATE(5542)] = 214762, + [SMALL_STATE(5543)] = 214817, + [SMALL_STATE(5544)] = 214870, + [SMALL_STATE(5545)] = 214923, + [SMALL_STATE(5546)] = 214976, + [SMALL_STATE(5547)] = 215029, + [SMALL_STATE(5548)] = 215084, + [SMALL_STATE(5549)] = 215137, + [SMALL_STATE(5550)] = 215190, + [SMALL_STATE(5551)] = 215243, + [SMALL_STATE(5552)] = 215296, + [SMALL_STATE(5553)] = 215349, + [SMALL_STATE(5554)] = 215402, + [SMALL_STATE(5555)] = 215455, + [SMALL_STATE(5556)] = 215508, + [SMALL_STATE(5557)] = 215561, + [SMALL_STATE(5558)] = 215614, + [SMALL_STATE(5559)] = 215667, + [SMALL_STATE(5560)] = 215720, + [SMALL_STATE(5561)] = 215773, + [SMALL_STATE(5562)] = 215826, + [SMALL_STATE(5563)] = 215879, + [SMALL_STATE(5564)] = 215932, + [SMALL_STATE(5565)] = 215991, + [SMALL_STATE(5566)] = 216044, + [SMALL_STATE(5567)] = 216135, + [SMALL_STATE(5568)] = 216226, + [SMALL_STATE(5569)] = 216279, + [SMALL_STATE(5570)] = 216332, + [SMALL_STATE(5571)] = 216385, + [SMALL_STATE(5572)] = 216438, + [SMALL_STATE(5573)] = 216491, + [SMALL_STATE(5574)] = 216544, + [SMALL_STATE(5575)] = 216637, + [SMALL_STATE(5576)] = 216690, + [SMALL_STATE(5577)] = 216743, + [SMALL_STATE(5578)] = 216796, + [SMALL_STATE(5579)] = 216849, + [SMALL_STATE(5580)] = 216902, + [SMALL_STATE(5581)] = 216955, + [SMALL_STATE(5582)] = 217008, + [SMALL_STATE(5583)] = 217067, + [SMALL_STATE(5584)] = 217120, + [SMALL_STATE(5585)] = 217173, + [SMALL_STATE(5586)] = 217226, + [SMALL_STATE(5587)] = 217279, + [SMALL_STATE(5588)] = 217332, + [SMALL_STATE(5589)] = 217385, + [SMALL_STATE(5590)] = 217438, + [SMALL_STATE(5591)] = 217491, + [SMALL_STATE(5592)] = 217544, + [SMALL_STATE(5593)] = 217597, + [SMALL_STATE(5594)] = 217652, + [SMALL_STATE(5595)] = 217743, + [SMALL_STATE(5596)] = 217834, + [SMALL_STATE(5597)] = 217891, + [SMALL_STATE(5598)] = 217944, + [SMALL_STATE(5599)] = 217997, + [SMALL_STATE(5600)] = 218052, + [SMALL_STATE(5601)] = 218109, + [SMALL_STATE(5602)] = 218166, + [SMALL_STATE(5603)] = 218219, + [SMALL_STATE(5604)] = 218276, + [SMALL_STATE(5605)] = 218333, + [SMALL_STATE(5606)] = 218386, + [SMALL_STATE(5607)] = 218439, + [SMALL_STATE(5608)] = 218492, + [SMALL_STATE(5609)] = 218545, + [SMALL_STATE(5610)] = 218598, + [SMALL_STATE(5611)] = 218657, + [SMALL_STATE(5612)] = 218710, + [SMALL_STATE(5613)] = 218763, + [SMALL_STATE(5614)] = 218816, + [SMALL_STATE(5615)] = 218869, + [SMALL_STATE(5616)] = 218922, + [SMALL_STATE(5617)] = 218977, + [SMALL_STATE(5618)] = 219030, + [SMALL_STATE(5619)] = 219085, + [SMALL_STATE(5620)] = 219142, + [SMALL_STATE(5621)] = 219195, + [SMALL_STATE(5622)] = 219250, + [SMALL_STATE(5623)] = 219307, + [SMALL_STATE(5624)] = 219362, + [SMALL_STATE(5625)] = 219419, + [SMALL_STATE(5626)] = 219472, + [SMALL_STATE(5627)] = 219527, + [SMALL_STATE(5628)] = 219582, + [SMALL_STATE(5629)] = 219635, + [SMALL_STATE(5630)] = 219688, + [SMALL_STATE(5631)] = 219741, + [SMALL_STATE(5632)] = 219794, + [SMALL_STATE(5633)] = 219851, + [SMALL_STATE(5634)] = 219904, + [SMALL_STATE(5635)] = 219997, + [SMALL_STATE(5636)] = 220054, + [SMALL_STATE(5637)] = 220107, + [SMALL_STATE(5638)] = 220160, + [SMALL_STATE(5639)] = 220213, + [SMALL_STATE(5640)] = 220266, + [SMALL_STATE(5641)] = 220319, + [SMALL_STATE(5642)] = 220372, + [SMALL_STATE(5643)] = 220425, + [SMALL_STATE(5644)] = 220478, + [SMALL_STATE(5645)] = 220531, + [SMALL_STATE(5646)] = 220584, + [SMALL_STATE(5647)] = 220637, + [SMALL_STATE(5648)] = 220690, + [SMALL_STATE(5649)] = 220743, + [SMALL_STATE(5650)] = 220800, + [SMALL_STATE(5651)] = 220853, + [SMALL_STATE(5652)] = 220906, + [SMALL_STATE(5653)] = 220963, + [SMALL_STATE(5654)] = 221016, + [SMALL_STATE(5655)] = 221069, + [SMALL_STATE(5656)] = 221142, + [SMALL_STATE(5657)] = 221215, + [SMALL_STATE(5658)] = 221288, + [SMALL_STATE(5659)] = 221341, + [SMALL_STATE(5660)] = 221398, + [SMALL_STATE(5661)] = 221453, + [SMALL_STATE(5662)] = 221506, + [SMALL_STATE(5663)] = 221561, + [SMALL_STATE(5664)] = 221654, + [SMALL_STATE(5665)] = 221707, + [SMALL_STATE(5666)] = 221760, + [SMALL_STATE(5667)] = 221813, + [SMALL_STATE(5668)] = 221866, + [SMALL_STATE(5669)] = 221919, + [SMALL_STATE(5670)] = 221992, + [SMALL_STATE(5671)] = 222045, + [SMALL_STATE(5672)] = 222098, + [SMALL_STATE(5673)] = 222151, + [SMALL_STATE(5674)] = 222204, + [SMALL_STATE(5675)] = 222257, + [SMALL_STATE(5676)] = 222310, + [SMALL_STATE(5677)] = 222363, + [SMALL_STATE(5678)] = 222416, + [SMALL_STATE(5679)] = 222469, + [SMALL_STATE(5680)] = 222522, + [SMALL_STATE(5681)] = 222579, + [SMALL_STATE(5682)] = 222636, + [SMALL_STATE(5683)] = 222691, + [SMALL_STATE(5684)] = 222744, + [SMALL_STATE(5685)] = 222797, + [SMALL_STATE(5686)] = 222850, + [SMALL_STATE(5687)] = 222903, + [SMALL_STATE(5688)] = 222956, + [SMALL_STATE(5689)] = 223009, + [SMALL_STATE(5690)] = 223076, + [SMALL_STATE(5691)] = 223129, + [SMALL_STATE(5692)] = 223182, + [SMALL_STATE(5693)] = 223235, + [SMALL_STATE(5694)] = 223288, + [SMALL_STATE(5695)] = 223341, + [SMALL_STATE(5696)] = 223394, + [SMALL_STATE(5697)] = 223447, + [SMALL_STATE(5698)] = 223504, + [SMALL_STATE(5699)] = 223557, + [SMALL_STATE(5700)] = 223610, + [SMALL_STATE(5701)] = 223703, + [SMALL_STATE(5702)] = 223760, + [SMALL_STATE(5703)] = 223853, + [SMALL_STATE(5704)] = 223910, + [SMALL_STATE(5705)] = 223983, + [SMALL_STATE(5706)] = 224040, + [SMALL_STATE(5707)] = 224097, + [SMALL_STATE(5708)] = 224150, + [SMALL_STATE(5709)] = 224205, + [SMALL_STATE(5710)] = 224258, + [SMALL_STATE(5711)] = 224343, + [SMALL_STATE(5712)] = 224396, + [SMALL_STATE(5713)] = 224449, + [SMALL_STATE(5714)] = 224504, + [SMALL_STATE(5715)] = 224597, + [SMALL_STATE(5716)] = 224650, + [SMALL_STATE(5717)] = 224703, + [SMALL_STATE(5718)] = 224758, + [SMALL_STATE(5719)] = 224811, + [SMALL_STATE(5720)] = 224864, + [SMALL_STATE(5721)] = 224957, + [SMALL_STATE(5722)] = 225050, + [SMALL_STATE(5723)] = 225103, + [SMALL_STATE(5724)] = 225156, + [SMALL_STATE(5725)] = 225247, + [SMALL_STATE(5726)] = 225300, + [SMALL_STATE(5727)] = 225391, + [SMALL_STATE(5728)] = 225444, + [SMALL_STATE(5729)] = 225497, + [SMALL_STATE(5730)] = 225588, + [SMALL_STATE(5731)] = 225651, + [SMALL_STATE(5732)] = 225710, + [SMALL_STATE(5733)] = 225769, + [SMALL_STATE(5734)] = 225836, + [SMALL_STATE(5735)] = 225889, + [SMALL_STATE(5736)] = 225974, + [SMALL_STATE(5737)] = 226051, + [SMALL_STATE(5738)] = 226118, + [SMALL_STATE(5739)] = 226187, + [SMALL_STATE(5740)] = 226252, + [SMALL_STATE(5741)] = 226325, + [SMALL_STATE(5742)] = 226406, + [SMALL_STATE(5743)] = 226461, + [SMALL_STATE(5744)] = 226544, + [SMALL_STATE(5745)] = 226599, + [SMALL_STATE(5746)] = 226654, + [SMALL_STATE(5747)] = 226747, + [SMALL_STATE(5748)] = 226802, + [SMALL_STATE(5749)] = 226859, + [SMALL_STATE(5750)] = 226914, + [SMALL_STATE(5751)] = 226969, + [SMALL_STATE(5752)] = 227062, + [SMALL_STATE(5753)] = 227119, + [SMALL_STATE(5754)] = 227212, + [SMALL_STATE(5755)] = 227265, + [SMALL_STATE(5756)] = 227322, + [SMALL_STATE(5757)] = 227379, + [SMALL_STATE(5758)] = 227436, + [SMALL_STATE(5759)] = 227489, + [SMALL_STATE(5760)] = 227580, + [SMALL_STATE(5761)] = 227635, + [SMALL_STATE(5762)] = 227690, + [SMALL_STATE(5763)] = 227757, + [SMALL_STATE(5764)] = 227812, + [SMALL_STATE(5765)] = 227867, + [SMALL_STATE(5766)] = 227920, + [SMALL_STATE(5767)] = 227973, + [SMALL_STATE(5768)] = 228026, + [SMALL_STATE(5769)] = 228079, + [SMALL_STATE(5770)] = 228132, + [SMALL_STATE(5771)] = 228225, + [SMALL_STATE(5772)] = 228278, + [SMALL_STATE(5773)] = 228331, + [SMALL_STATE(5774)] = 228424, + [SMALL_STATE(5775)] = 228481, + [SMALL_STATE(5776)] = 228574, + [SMALL_STATE(5777)] = 228631, + [SMALL_STATE(5778)] = 228688, + [SMALL_STATE(5779)] = 228745, + [SMALL_STATE(5780)] = 228798, + [SMALL_STATE(5781)] = 228853, + [SMALL_STATE(5782)] = 228906, + [SMALL_STATE(5783)] = 228999, + [SMALL_STATE(5784)] = 229054, + [SMALL_STATE(5785)] = 229147, + [SMALL_STATE(5786)] = 229200, + [SMALL_STATE(5787)] = 229285, + [SMALL_STATE(5788)] = 229376, + [SMALL_STATE(5789)] = 229431, + [SMALL_STATE(5790)] = 229522, + [SMALL_STATE(5791)] = 229577, + [SMALL_STATE(5792)] = 229632, + [SMALL_STATE(5793)] = 229725, + [SMALL_STATE(5794)] = 229782, + [SMALL_STATE(5795)] = 229875, + [SMALL_STATE(5796)] = 229932, + [SMALL_STATE(5797)] = 229989, + [SMALL_STATE(5798)] = 230046, + [SMALL_STATE(5799)] = 230099, + [SMALL_STATE(5800)] = 230154, + [SMALL_STATE(5801)] = 230207, + [SMALL_STATE(5802)] = 230262, + [SMALL_STATE(5803)] = 230315, + [SMALL_STATE(5804)] = 230368, + [SMALL_STATE(5805)] = 230421, + [SMALL_STATE(5806)] = 230476, + [SMALL_STATE(5807)] = 230529, + [SMALL_STATE(5808)] = 230582, + [SMALL_STATE(5809)] = 230635, + [SMALL_STATE(5810)] = 230690, + [SMALL_STATE(5811)] = 230743, + [SMALL_STATE(5812)] = 230834, + [SMALL_STATE(5813)] = 230887, + [SMALL_STATE(5814)] = 230942, + [SMALL_STATE(5815)] = 230995, + [SMALL_STATE(5816)] = 231050, + [SMALL_STATE(5817)] = 231117, + [SMALL_STATE(5818)] = 231172, + [SMALL_STATE(5819)] = 231231, + [SMALL_STATE(5820)] = 231284, + [SMALL_STATE(5821)] = 231337, + [SMALL_STATE(5822)] = 231430, + [SMALL_STATE(5823)] = 231487, + [SMALL_STATE(5824)] = 231580, + [SMALL_STATE(5825)] = 231637, + [SMALL_STATE(5826)] = 231694, + [SMALL_STATE(5827)] = 231751, + [SMALL_STATE(5828)] = 231808, + [SMALL_STATE(5829)] = 231901, + [SMALL_STATE(5830)] = 231958, + [SMALL_STATE(5831)] = 232011, + [SMALL_STATE(5832)] = 232064, + [SMALL_STATE(5833)] = 232121, + [SMALL_STATE(5834)] = 232174, + [SMALL_STATE(5835)] = 232227, + [SMALL_STATE(5836)] = 232286, + [SMALL_STATE(5837)] = 232339, + [SMALL_STATE(5838)] = 232424, + [SMALL_STATE(5839)] = 232477, + [SMALL_STATE(5840)] = 232536, + [SMALL_STATE(5841)] = 232589, + [SMALL_STATE(5842)] = 232642, + [SMALL_STATE(5843)] = 232695, + [SMALL_STATE(5844)] = 232748, + [SMALL_STATE(5845)] = 232801, + [SMALL_STATE(5846)] = 232854, + [SMALL_STATE(5847)] = 232911, + [SMALL_STATE(5848)] = 232964, + [SMALL_STATE(5849)] = 233017, + [SMALL_STATE(5850)] = 233070, + [SMALL_STATE(5851)] = 233123, + [SMALL_STATE(5852)] = 233176, + [SMALL_STATE(5853)] = 233229, + [SMALL_STATE(5854)] = 233281, + [SMALL_STATE(5855)] = 233333, + [SMALL_STATE(5856)] = 233389, + [SMALL_STATE(5857)] = 233441, + [SMALL_STATE(5858)] = 233493, + [SMALL_STATE(5859)] = 233545, + [SMALL_STATE(5860)] = 233597, + [SMALL_STATE(5861)] = 233649, + [SMALL_STATE(5862)] = 233701, + [SMALL_STATE(5863)] = 233753, + [SMALL_STATE(5864)] = 233809, + [SMALL_STATE(5865)] = 233865, + [SMALL_STATE(5866)] = 233917, + [SMALL_STATE(5867)] = 233969, + [SMALL_STATE(5868)] = 234021, + [SMALL_STATE(5869)] = 234073, + [SMALL_STATE(5870)] = 234125, + [SMALL_STATE(5871)] = 234177, + [SMALL_STATE(5872)] = 234229, + [SMALL_STATE(5873)] = 234281, + [SMALL_STATE(5874)] = 234333, + [SMALL_STATE(5875)] = 234385, + [SMALL_STATE(5876)] = 234437, + [SMALL_STATE(5877)] = 234489, + [SMALL_STATE(5878)] = 234541, + [SMALL_STATE(5879)] = 234597, + [SMALL_STATE(5880)] = 234649, + [SMALL_STATE(5881)] = 234701, + [SMALL_STATE(5882)] = 234753, + [SMALL_STATE(5883)] = 234805, + [SMALL_STATE(5884)] = 234857, + [SMALL_STATE(5885)] = 234909, + [SMALL_STATE(5886)] = 234961, + [SMALL_STATE(5887)] = 235013, + [SMALL_STATE(5888)] = 235065, + [SMALL_STATE(5889)] = 235117, + [SMALL_STATE(5890)] = 235169, + [SMALL_STATE(5891)] = 235221, + [SMALL_STATE(5892)] = 235273, + [SMALL_STATE(5893)] = 235325, + [SMALL_STATE(5894)] = 235377, + [SMALL_STATE(5895)] = 235429, + [SMALL_STATE(5896)] = 235481, + [SMALL_STATE(5897)] = 235533, + [SMALL_STATE(5898)] = 235585, + [SMALL_STATE(5899)] = 235637, + [SMALL_STATE(5900)] = 235689, + [SMALL_STATE(5901)] = 235741, + [SMALL_STATE(5902)] = 235793, + [SMALL_STATE(5903)] = 235845, + [SMALL_STATE(5904)] = 235897, + [SMALL_STATE(5905)] = 235949, + [SMALL_STATE(5906)] = 236001, + [SMALL_STATE(5907)] = 236053, + [SMALL_STATE(5908)] = 236105, + [SMALL_STATE(5909)] = 236157, + [SMALL_STATE(5910)] = 236209, + [SMALL_STATE(5911)] = 236261, + [SMALL_STATE(5912)] = 236345, + [SMALL_STATE(5913)] = 236439, + [SMALL_STATE(5914)] = 236491, + [SMALL_STATE(5915)] = 236543, + [SMALL_STATE(5916)] = 236595, + [SMALL_STATE(5917)] = 236683, + [SMALL_STATE(5918)] = 236771, + [SMALL_STATE(5919)] = 236823, + [SMALL_STATE(5920)] = 236911, + [SMALL_STATE(5921)] = 236973, + [SMALL_STATE(5922)] = 237031, + [SMALL_STATE(5923)] = 237089, + [SMALL_STATE(5924)] = 237155, + [SMALL_STATE(5925)] = 237239, + [SMALL_STATE(5926)] = 237315, + [SMALL_STATE(5927)] = 237383, + [SMALL_STATE(5928)] = 237447, + [SMALL_STATE(5929)] = 237519, + [SMALL_STATE(5930)] = 237599, + [SMALL_STATE(5931)] = 237681, + [SMALL_STATE(5932)] = 237735, + [SMALL_STATE(5933)] = 237787, + [SMALL_STATE(5934)] = 237839, + [SMALL_STATE(5935)] = 237923, + [SMALL_STATE(5936)] = 237979, + [SMALL_STATE(5937)] = 238031, + [SMALL_STATE(5938)] = 238083, + [SMALL_STATE(5939)] = 238171, + [SMALL_STATE(5940)] = 238259, + [SMALL_STATE(5941)] = 238311, + [SMALL_STATE(5942)] = 238363, + [SMALL_STATE(5943)] = 238415, + [SMALL_STATE(5944)] = 238503, + [SMALL_STATE(5945)] = 238555, + [SMALL_STATE(5946)] = 238611, + [SMALL_STATE(5947)] = 238663, + [SMALL_STATE(5948)] = 238715, + [SMALL_STATE(5949)] = 238803, + [SMALL_STATE(5950)] = 238855, + [SMALL_STATE(5951)] = 238907, + [SMALL_STATE(5952)] = 238961, + [SMALL_STATE(5953)] = 239013, + [SMALL_STATE(5954)] = 239067, + [SMALL_STATE(5955)] = 239119, + [SMALL_STATE(5956)] = 239173, + [SMALL_STATE(5957)] = 239225, + [SMALL_STATE(5958)] = 239279, + [SMALL_STATE(5959)] = 239335, + [SMALL_STATE(5960)] = 239387, + [SMALL_STATE(5961)] = 239441, + [SMALL_STATE(5962)] = 239495, + [SMALL_STATE(5963)] = 239583, + [SMALL_STATE(5964)] = 239671, + [SMALL_STATE(5965)] = 239723, + [SMALL_STATE(5966)] = 239775, + [SMALL_STATE(5967)] = 239869, + [SMALL_STATE(5968)] = 239957, + [SMALL_STATE(5969)] = 240045, + [SMALL_STATE(5970)] = 240133, + [SMALL_STATE(5971)] = 240205, + [SMALL_STATE(5972)] = 240277, + [SMALL_STATE(5973)] = 240349, + [SMALL_STATE(5974)] = 240401, + [SMALL_STATE(5975)] = 240495, + [SMALL_STATE(5976)] = 240591, + [SMALL_STATE(5977)] = 240679, + [SMALL_STATE(5978)] = 240767, + [SMALL_STATE(5979)] = 240821, + [SMALL_STATE(5980)] = 240909, + [SMALL_STATE(5981)] = 240997, + [SMALL_STATE(5982)] = 241085, + [SMALL_STATE(5983)] = 241139, + [SMALL_STATE(5984)] = 241191, + [SMALL_STATE(5985)] = 241275, + [SMALL_STATE(5986)] = 241329, + [SMALL_STATE(5987)] = 241383, + [SMALL_STATE(5988)] = 241477, + [SMALL_STATE(5989)] = 241573, + [SMALL_STATE(5990)] = 241625, + [SMALL_STATE(5991)] = 241677, + [SMALL_STATE(5992)] = 241771, + [SMALL_STATE(5993)] = 241865, + [SMALL_STATE(5994)] = 241917, + [SMALL_STATE(5995)] = 242013, + [SMALL_STATE(5996)] = 242065, + [SMALL_STATE(5997)] = 242159, + [SMALL_STATE(5998)] = 242255, + [SMALL_STATE(5999)] = 242343, + [SMALL_STATE(6000)] = 242437, + [SMALL_STATE(6001)] = 242533, + [SMALL_STATE(6002)] = 242629, + [SMALL_STATE(6003)] = 242723, + [SMALL_STATE(6004)] = 242819, + [SMALL_STATE(6005)] = 242913, + [SMALL_STATE(6006)] = 243009, + [SMALL_STATE(6007)] = 243103, + [SMALL_STATE(6008)] = 243199, + [SMALL_STATE(6009)] = 243253, + [SMALL_STATE(6010)] = 243347, + [SMALL_STATE(6011)] = 243443, + [SMALL_STATE(6012)] = 243537, + [SMALL_STATE(6013)] = 243633, + [SMALL_STATE(6014)] = 243727, + [SMALL_STATE(6015)] = 243823, + [SMALL_STATE(6016)] = 243917, + [SMALL_STATE(6017)] = 244013, + [SMALL_STATE(6018)] = 244067, + [SMALL_STATE(6019)] = 244161, + [SMALL_STATE(6020)] = 244257, + [SMALL_STATE(6021)] = 244351, + [SMALL_STATE(6022)] = 244447, + [SMALL_STATE(6023)] = 244499, + [SMALL_STATE(6024)] = 244595, + [SMALL_STATE(6025)] = 244649, + [SMALL_STATE(6026)] = 244745, + [SMALL_STATE(6027)] = 244841, + [SMALL_STATE(6028)] = 244895, + [SMALL_STATE(6029)] = 244991, + [SMALL_STATE(6030)] = 245087, + [SMALL_STATE(6031)] = 245183, + [SMALL_STATE(6032)] = 245279, + [SMALL_STATE(6033)] = 245333, + [SMALL_STATE(6034)] = 245387, + [SMALL_STATE(6035)] = 245439, + [SMALL_STATE(6036)] = 245499, + [SMALL_STATE(6037)] = 245551, + [SMALL_STATE(6038)] = 245603, + [SMALL_STATE(6039)] = 245655, + [SMALL_STATE(6040)] = 245707, + [SMALL_STATE(6041)] = 245795, + [SMALL_STATE(6042)] = 245883, + [SMALL_STATE(6043)] = 245967, + [SMALL_STATE(6044)] = 246055, + [SMALL_STATE(6045)] = 246143, + [SMALL_STATE(6046)] = 246231, + [SMALL_STATE(6047)] = 246293, + [SMALL_STATE(6048)] = 246351, + [SMALL_STATE(6049)] = 246409, + [SMALL_STATE(6050)] = 246475, + [SMALL_STATE(6051)] = 246559, + [SMALL_STATE(6052)] = 246611, + [SMALL_STATE(6053)] = 246679, + [SMALL_STATE(6054)] = 246743, + [SMALL_STATE(6055)] = 246815, + [SMALL_STATE(6056)] = 246895, + [SMALL_STATE(6057)] = 246977, + [SMALL_STATE(6058)] = 247061, + [SMALL_STATE(6059)] = 247149, + [SMALL_STATE(6060)] = 247203, + [SMALL_STATE(6061)] = 247291, + [SMALL_STATE(6062)] = 247379, + [SMALL_STATE(6063)] = 247431, + [SMALL_STATE(6064)] = 247483, + [SMALL_STATE(6065)] = 247535, + [SMALL_STATE(6066)] = 247587, + [SMALL_STATE(6067)] = 247639, + [SMALL_STATE(6068)] = 247691, + [SMALL_STATE(6069)] = 247743, + [SMALL_STATE(6070)] = 247795, + [SMALL_STATE(6071)] = 247847, + [SMALL_STATE(6072)] = 247935, + [SMALL_STATE(6073)] = 248023, + [SMALL_STATE(6074)] = 248075, + [SMALL_STATE(6075)] = 248127, + [SMALL_STATE(6076)] = 248215, + [SMALL_STATE(6077)] = 248267, + [SMALL_STATE(6078)] = 248319, + [SMALL_STATE(6079)] = 248371, + [SMALL_STATE(6080)] = 248423, + [SMALL_STATE(6081)] = 248475, + [SMALL_STATE(6082)] = 248527, + [SMALL_STATE(6083)] = 248579, + [SMALL_STATE(6084)] = 248631, + [SMALL_STATE(6085)] = 248683, + [SMALL_STATE(6086)] = 248735, + [SMALL_STATE(6087)] = 248787, + [SMALL_STATE(6088)] = 248839, + [SMALL_STATE(6089)] = 248891, + [SMALL_STATE(6090)] = 248943, + [SMALL_STATE(6091)] = 248995, + [SMALL_STATE(6092)] = 249047, + [SMALL_STATE(6093)] = 249099, + [SMALL_STATE(6094)] = 249151, + [SMALL_STATE(6095)] = 249203, + [SMALL_STATE(6096)] = 249255, + [SMALL_STATE(6097)] = 249307, + [SMALL_STATE(6098)] = 249359, + [SMALL_STATE(6099)] = 249411, + [SMALL_STATE(6100)] = 249463, + [SMALL_STATE(6101)] = 249515, + [SMALL_STATE(6102)] = 249567, + [SMALL_STATE(6103)] = 249619, + [SMALL_STATE(6104)] = 249671, + [SMALL_STATE(6105)] = 249723, + [SMALL_STATE(6106)] = 249775, + [SMALL_STATE(6107)] = 249827, + [SMALL_STATE(6108)] = 249879, + [SMALL_STATE(6109)] = 249931, + [SMALL_STATE(6110)] = 249987, + [SMALL_STATE(6111)] = 250071, + [SMALL_STATE(6112)] = 250123, + [SMALL_STATE(6113)] = 250175, + [SMALL_STATE(6114)] = 250227, + [SMALL_STATE(6115)] = 250279, + [SMALL_STATE(6116)] = 250331, + [SMALL_STATE(6117)] = 250383, + [SMALL_STATE(6118)] = 250435, + [SMALL_STATE(6119)] = 250487, + [SMALL_STATE(6120)] = 250539, + [SMALL_STATE(6121)] = 250595, + [SMALL_STATE(6122)] = 250651, + [SMALL_STATE(6123)] = 250703, + [SMALL_STATE(6124)] = 250755, + [SMALL_STATE(6125)] = 250807, + [SMALL_STATE(6126)] = 250859, + [SMALL_STATE(6127)] = 250911, + [SMALL_STATE(6128)] = 250963, + [SMALL_STATE(6129)] = 251015, + [SMALL_STATE(6130)] = 251067, + [SMALL_STATE(6131)] = 251119, + [SMALL_STATE(6132)] = 251171, + [SMALL_STATE(6133)] = 251223, + [SMALL_STATE(6134)] = 251275, + [SMALL_STATE(6135)] = 251327, + [SMALL_STATE(6136)] = 251379, + [SMALL_STATE(6137)] = 251431, + [SMALL_STATE(6138)] = 251483, + [SMALL_STATE(6139)] = 251535, + [SMALL_STATE(6140)] = 251587, + [SMALL_STATE(6141)] = 251639, + [SMALL_STATE(6142)] = 251691, + [SMALL_STATE(6143)] = 251743, + [SMALL_STATE(6144)] = 251795, + [SMALL_STATE(6145)] = 251879, + [SMALL_STATE(6146)] = 251931, + [SMALL_STATE(6147)] = 251983, + [SMALL_STATE(6148)] = 252035, + [SMALL_STATE(6149)] = 252087, + [SMALL_STATE(6150)] = 252139, + [SMALL_STATE(6151)] = 252191, + [SMALL_STATE(6152)] = 252243, + [SMALL_STATE(6153)] = 252295, + [SMALL_STATE(6154)] = 252347, + [SMALL_STATE(6155)] = 252399, + [SMALL_STATE(6156)] = 252451, + [SMALL_STATE(6157)] = 252503, + [SMALL_STATE(6158)] = 252597, + [SMALL_STATE(6159)] = 252685, + [SMALL_STATE(6160)] = 252773, + [SMALL_STATE(6161)] = 252825, + [SMALL_STATE(6162)] = 252877, + [SMALL_STATE(6163)] = 252929, + [SMALL_STATE(6164)] = 252981, + [SMALL_STATE(6165)] = 253069, + [SMALL_STATE(6166)] = 253121, + [SMALL_STATE(6167)] = 253173, + [SMALL_STATE(6168)] = 253225, + [SMALL_STATE(6169)] = 253277, + [SMALL_STATE(6170)] = 253329, + [SMALL_STATE(6171)] = 253381, + [SMALL_STATE(6172)] = 253433, + [SMALL_STATE(6173)] = 253485, + [SMALL_STATE(6174)] = 253537, + [SMALL_STATE(6175)] = 253589, + [SMALL_STATE(6176)] = 253651, + [SMALL_STATE(6177)] = 253703, + [SMALL_STATE(6178)] = 253761, + [SMALL_STATE(6179)] = 253819, + [SMALL_STATE(6180)] = 253885, + [SMALL_STATE(6181)] = 253969, + [SMALL_STATE(6182)] = 254021, + [SMALL_STATE(6183)] = 254073, + [SMALL_STATE(6184)] = 254125, + [SMALL_STATE(6185)] = 254177, + [SMALL_STATE(6186)] = 254229, + [SMALL_STATE(6187)] = 254281, + [SMALL_STATE(6188)] = 254333, + [SMALL_STATE(6189)] = 254389, + [SMALL_STATE(6190)] = 254473, + [SMALL_STATE(6191)] = 254549, + [SMALL_STATE(6192)] = 254617, + [SMALL_STATE(6193)] = 254681, + [SMALL_STATE(6194)] = 254753, + [SMALL_STATE(6195)] = 254833, + [SMALL_STATE(6196)] = 254893, + [SMALL_STATE(6197)] = 254945, + [SMALL_STATE(6198)] = 254997, + [SMALL_STATE(6199)] = 255049, + [SMALL_STATE(6200)] = 255131, + [SMALL_STATE(6201)] = 255183, + [SMALL_STATE(6202)] = 255235, + [SMALL_STATE(6203)] = 255287, + [SMALL_STATE(6204)] = 255339, + [SMALL_STATE(6205)] = 255391, + [SMALL_STATE(6206)] = 255443, + [SMALL_STATE(6207)] = 255495, + [SMALL_STATE(6208)] = 255547, + [SMALL_STATE(6209)] = 255599, + [SMALL_STATE(6210)] = 255651, + [SMALL_STATE(6211)] = 255703, + [SMALL_STATE(6212)] = 255755, + [SMALL_STATE(6213)] = 255807, + [SMALL_STATE(6214)] = 255859, + [SMALL_STATE(6215)] = 255911, + [SMALL_STATE(6216)] = 255963, + [SMALL_STATE(6217)] = 256015, + [SMALL_STATE(6218)] = 256067, + [SMALL_STATE(6219)] = 256119, + [SMALL_STATE(6220)] = 256171, + [SMALL_STATE(6221)] = 256223, + [SMALL_STATE(6222)] = 256275, + [SMALL_STATE(6223)] = 256327, + [SMALL_STATE(6224)] = 256379, + [SMALL_STATE(6225)] = 256431, + [SMALL_STATE(6226)] = 256483, + [SMALL_STATE(6227)] = 256535, + [SMALL_STATE(6228)] = 256587, + [SMALL_STATE(6229)] = 256639, + [SMALL_STATE(6230)] = 256691, + [SMALL_STATE(6231)] = 256743, + [SMALL_STATE(6232)] = 256795, + [SMALL_STATE(6233)] = 256847, + [SMALL_STATE(6234)] = 256899, + [SMALL_STATE(6235)] = 256951, + [SMALL_STATE(6236)] = 257003, + [SMALL_STATE(6237)] = 257055, + [SMALL_STATE(6238)] = 257107, + [SMALL_STATE(6239)] = 257191, + [SMALL_STATE(6240)] = 257243, + [SMALL_STATE(6241)] = 257295, + [SMALL_STATE(6242)] = 257347, + [SMALL_STATE(6243)] = 257399, + [SMALL_STATE(6244)] = 257451, + [SMALL_STATE(6245)] = 257503, + [SMALL_STATE(6246)] = 257555, + [SMALL_STATE(6247)] = 257607, + [SMALL_STATE(6248)] = 257659, + [SMALL_STATE(6249)] = 257711, + [SMALL_STATE(6250)] = 257771, + [SMALL_STATE(6251)] = 257823, + [SMALL_STATE(6252)] = 257875, + [SMALL_STATE(6253)] = 257927, + [SMALL_STATE(6254)] = 257979, + [SMALL_STATE(6255)] = 258031, + [SMALL_STATE(6256)] = 258083, + [SMALL_STATE(6257)] = 258135, + [SMALL_STATE(6258)] = 258187, + [SMALL_STATE(6259)] = 258239, + [SMALL_STATE(6260)] = 258291, + [SMALL_STATE(6261)] = 258343, + [SMALL_STATE(6262)] = 258431, + [SMALL_STATE(6263)] = 258483, + [SMALL_STATE(6264)] = 258535, + [SMALL_STATE(6265)] = 258587, + [SMALL_STATE(6266)] = 258639, + [SMALL_STATE(6267)] = 258691, + [SMALL_STATE(6268)] = 258779, + [SMALL_STATE(6269)] = 258831, + [SMALL_STATE(6270)] = 258883, + [SMALL_STATE(6271)] = 258935, + [SMALL_STATE(6272)] = 258987, + [SMALL_STATE(6273)] = 259039, + [SMALL_STATE(6274)] = 259091, + [SMALL_STATE(6275)] = 259143, + [SMALL_STATE(6276)] = 259195, + [SMALL_STATE(6277)] = 259283, + [SMALL_STATE(6278)] = 259335, + [SMALL_STATE(6279)] = 259387, + [SMALL_STATE(6280)] = 259439, + [SMALL_STATE(6281)] = 259491, + [SMALL_STATE(6282)] = 259543, + [SMALL_STATE(6283)] = 259595, + [SMALL_STATE(6284)] = 259671, + [SMALL_STATE(6285)] = 259764, + [SMALL_STATE(6286)] = 259815, + [SMALL_STATE(6287)] = 259866, + [SMALL_STATE(6288)] = 259917, + [SMALL_STATE(6289)] = 260006, + [SMALL_STATE(6290)] = 260095, + [SMALL_STATE(6291)] = 260146, + [SMALL_STATE(6292)] = 260197, + [SMALL_STATE(6293)] = 260248, + [SMALL_STATE(6294)] = 260299, + [SMALL_STATE(6295)] = 260388, + [SMALL_STATE(6296)] = 260477, + [SMALL_STATE(6297)] = 260528, + [SMALL_STATE(6298)] = 260579, + [SMALL_STATE(6299)] = 260630, + [SMALL_STATE(6300)] = 260681, + [SMALL_STATE(6301)] = 260774, + [SMALL_STATE(6302)] = 260867, + [SMALL_STATE(6303)] = 260960, + [SMALL_STATE(6304)] = 261011, + [SMALL_STATE(6305)] = 261062, + [SMALL_STATE(6306)] = 261113, + [SMALL_STATE(6307)] = 261204, + [SMALL_STATE(6308)] = 261271, + [SMALL_STATE(6309)] = 261322, + [SMALL_STATE(6310)] = 261373, + [SMALL_STATE(6311)] = 261424, + [SMALL_STATE(6312)] = 261475, + [SMALL_STATE(6313)] = 261526, + [SMALL_STATE(6314)] = 261585, + [SMALL_STATE(6315)] = 261636, + [SMALL_STATE(6316)] = 261687, + [SMALL_STATE(6317)] = 261738, + [SMALL_STATE(6318)] = 261789, + [SMALL_STATE(6319)] = 261840, + [SMALL_STATE(6320)] = 261895, + [SMALL_STATE(6321)] = 261946, + [SMALL_STATE(6322)] = 261997, + [SMALL_STATE(6323)] = 262048, + [SMALL_STATE(6324)] = 262099, + [SMALL_STATE(6325)] = 262150, + [SMALL_STATE(6326)] = 262201, + [SMALL_STATE(6327)] = 262290, + [SMALL_STATE(6328)] = 262379, + [SMALL_STATE(6329)] = 262430, + [SMALL_STATE(6330)] = 262481, + [SMALL_STATE(6331)] = 262570, + [SMALL_STATE(6332)] = 262633, + [SMALL_STATE(6333)] = 262704, + [SMALL_STATE(6334)] = 262759, + [SMALL_STATE(6335)] = 262814, + [SMALL_STATE(6336)] = 262869, + [SMALL_STATE(6337)] = 262960, + [SMALL_STATE(6338)] = 263015, + [SMALL_STATE(6339)] = 263094, + [SMALL_STATE(6340)] = 263145, + [SMALL_STATE(6341)] = 263226, + [SMALL_STATE(6342)] = 263277, + [SMALL_STATE(6343)] = 263328, + [SMALL_STATE(6344)] = 263381, + [SMALL_STATE(6345)] = 263432, + [SMALL_STATE(6346)] = 263483, + [SMALL_STATE(6347)] = 263534, + [SMALL_STATE(6348)] = 263627, + [SMALL_STATE(6349)] = 263678, + [SMALL_STATE(6350)] = 263729, + [SMALL_STATE(6351)] = 263780, + [SMALL_STATE(6352)] = 263831, + [SMALL_STATE(6353)] = 263882, + [SMALL_STATE(6354)] = 263933, + [SMALL_STATE(6355)] = 263988, + [SMALL_STATE(6356)] = 264043, + [SMALL_STATE(6357)] = 264094, + [SMALL_STATE(6358)] = 264145, + [SMALL_STATE(6359)] = 264196, + [SMALL_STATE(6360)] = 264247, + [SMALL_STATE(6361)] = 264298, + [SMALL_STATE(6362)] = 264349, + [SMALL_STATE(6363)] = 264404, + [SMALL_STATE(6364)] = 264457, + [SMALL_STATE(6365)] = 264510, + [SMALL_STATE(6366)] = 264563, + [SMALL_STATE(6367)] = 264616, + [SMALL_STATE(6368)] = 264667, + [SMALL_STATE(6369)] = 264750, + [SMALL_STATE(6370)] = 264803, + [SMALL_STATE(6371)] = 264854, + [SMALL_STATE(6372)] = 264905, + [SMALL_STATE(6373)] = 264958, + [SMALL_STATE(6374)] = 265009, + [SMALL_STATE(6375)] = 265060, + [SMALL_STATE(6376)] = 265151, + [SMALL_STATE(6377)] = 265202, + [SMALL_STATE(6378)] = 265253, + [SMALL_STATE(6379)] = 265304, + [SMALL_STATE(6380)] = 265355, + [SMALL_STATE(6381)] = 265406, + [SMALL_STATE(6382)] = 265459, + [SMALL_STATE(6383)] = 265518, + [SMALL_STATE(6384)] = 265601, + [SMALL_STATE(6385)] = 265652, + [SMALL_STATE(6386)] = 265703, + [SMALL_STATE(6387)] = 265754, + [SMALL_STATE(6388)] = 265805, + [SMALL_STATE(6389)] = 265896, + [SMALL_STATE(6390)] = 265949, + [SMALL_STATE(6391)] = 266040, + [SMALL_STATE(6392)] = 266091, + [SMALL_STATE(6393)] = 266182, + [SMALL_STATE(6394)] = 266271, + [SMALL_STATE(6395)] = 266360, + [SMALL_STATE(6396)] = 266449, + [SMALL_STATE(6397)] = 266540, + [SMALL_STATE(6398)] = 266631, + [SMALL_STATE(6399)] = 266690, + [SMALL_STATE(6400)] = 266781, + [SMALL_STATE(6401)] = 266832, + [SMALL_STATE(6402)] = 266923, + [SMALL_STATE(6403)] = 266974, + [SMALL_STATE(6404)] = 267033, + [SMALL_STATE(6405)] = 267084, + [SMALL_STATE(6406)] = 267135, + [SMALL_STATE(6407)] = 267226, + [SMALL_STATE(6408)] = 267277, + [SMALL_STATE(6409)] = 267328, + [SMALL_STATE(6410)] = 267379, + [SMALL_STATE(6411)] = 267432, + [SMALL_STATE(6412)] = 267523, + [SMALL_STATE(6413)] = 267616, + [SMALL_STATE(6414)] = 267705, + [SMALL_STATE(6415)] = 267794, + [SMALL_STATE(6416)] = 267847, + [SMALL_STATE(6417)] = 267936, + [SMALL_STATE(6418)] = 268025, + [SMALL_STATE(6419)] = 268076, + [SMALL_STATE(6420)] = 268127, + [SMALL_STATE(6421)] = 268220, + [SMALL_STATE(6422)] = 268313, + [SMALL_STATE(6423)] = 268406, + [SMALL_STATE(6424)] = 268465, + [SMALL_STATE(6425)] = 268554, + [SMALL_STATE(6426)] = 268607, + [SMALL_STATE(6427)] = 268696, + [SMALL_STATE(6428)] = 268785, + [SMALL_STATE(6429)] = 268874, + [SMALL_STATE(6430)] = 268963, + [SMALL_STATE(6431)] = 269056, + [SMALL_STATE(6432)] = 269149, + [SMALL_STATE(6433)] = 269242, + [SMALL_STATE(6434)] = 269295, + [SMALL_STATE(6435)] = 269346, + [SMALL_STATE(6436)] = 269397, + [SMALL_STATE(6437)] = 269486, + [SMALL_STATE(6438)] = 269575, + [SMALL_STATE(6439)] = 269664, + [SMALL_STATE(6440)] = 269753, + [SMALL_STATE(6441)] = 269846, + [SMALL_STATE(6442)] = 269939, + [SMALL_STATE(6443)] = 270000, + [SMALL_STATE(6444)] = 270093, + [SMALL_STATE(6445)] = 270182, + [SMALL_STATE(6446)] = 270271, + [SMALL_STATE(6447)] = 270360, + [SMALL_STATE(6448)] = 270449, + [SMALL_STATE(6449)] = 270542, + [SMALL_STATE(6450)] = 270635, + [SMALL_STATE(6451)] = 270692, + [SMALL_STATE(6452)] = 270785, + [SMALL_STATE(6453)] = 270842, + [SMALL_STATE(6454)] = 270895, + [SMALL_STATE(6455)] = 270984, + [SMALL_STATE(6456)] = 271073, + [SMALL_STATE(6457)] = 271162, + [SMALL_STATE(6458)] = 271251, + [SMALL_STATE(6459)] = 271302, + [SMALL_STATE(6460)] = 271395, + [SMALL_STATE(6461)] = 271488, + [SMALL_STATE(6462)] = 271559, + [SMALL_STATE(6463)] = 271652, + [SMALL_STATE(6464)] = 271703, + [SMALL_STATE(6465)] = 271758, + [SMALL_STATE(6466)] = 271847, + [SMALL_STATE(6467)] = 271936, + [SMALL_STATE(6468)] = 272025, + [SMALL_STATE(6469)] = 272114, + [SMALL_STATE(6470)] = 272165, + [SMALL_STATE(6471)] = 272254, + [SMALL_STATE(6472)] = 272347, + [SMALL_STATE(6473)] = 272440, + [SMALL_STATE(6474)] = 272491, + [SMALL_STATE(6475)] = 272544, + [SMALL_STATE(6476)] = 272637, + [SMALL_STATE(6477)] = 272688, + [SMALL_STATE(6478)] = 272739, + [SMALL_STATE(6479)] = 272828, + [SMALL_STATE(6480)] = 272917, + [SMALL_STATE(6481)] = 272968, + [SMALL_STATE(6482)] = 273057, + [SMALL_STATE(6483)] = 273146, + [SMALL_STATE(6484)] = 273197, + [SMALL_STATE(6485)] = 273290, + [SMALL_STATE(6486)] = 273383, + [SMALL_STATE(6487)] = 273476, + [SMALL_STATE(6488)] = 273527, + [SMALL_STATE(6489)] = 273616, + [SMALL_STATE(6490)] = 273705, + [SMALL_STATE(6491)] = 273794, + [SMALL_STATE(6492)] = 273883, + [SMALL_STATE(6493)] = 273976, + [SMALL_STATE(6494)] = 274069, + [SMALL_STATE(6495)] = 274120, + [SMALL_STATE(6496)] = 274213, + [SMALL_STATE(6497)] = 274264, + [SMALL_STATE(6498)] = 274353, + [SMALL_STATE(6499)] = 274442, + [SMALL_STATE(6500)] = 274531, + [SMALL_STATE(6501)] = 274620, + [SMALL_STATE(6502)] = 274713, + [SMALL_STATE(6503)] = 274806, + [SMALL_STATE(6504)] = 274899, + [SMALL_STATE(6505)] = 274950, + [SMALL_STATE(6506)] = 275001, + [SMALL_STATE(6507)] = 275090, + [SMALL_STATE(6508)] = 275179, + [SMALL_STATE(6509)] = 275232, + [SMALL_STATE(6510)] = 275321, + [SMALL_STATE(6511)] = 275410, + [SMALL_STATE(6512)] = 275463, + [SMALL_STATE(6513)] = 275554, + [SMALL_STATE(6514)] = 275647, + [SMALL_STATE(6515)] = 275740, + [SMALL_STATE(6516)] = 275791, + [SMALL_STATE(6517)] = 275882, + [SMALL_STATE(6518)] = 275941, + [SMALL_STATE(6519)] = 276034, + [SMALL_STATE(6520)] = 276123, + [SMALL_STATE(6521)] = 276212, + [SMALL_STATE(6522)] = 276301, + [SMALL_STATE(6523)] = 276390, + [SMALL_STATE(6524)] = 276443, + [SMALL_STATE(6525)] = 276494, + [SMALL_STATE(6526)] = 276587, + [SMALL_STATE(6527)] = 276676, + [SMALL_STATE(6528)] = 276765, + [SMALL_STATE(6529)] = 276854, + [SMALL_STATE(6530)] = 276943, + [SMALL_STATE(6531)] = 276996, + [SMALL_STATE(6532)] = 277089, + [SMALL_STATE(6533)] = 277182, + [SMALL_STATE(6534)] = 277233, + [SMALL_STATE(6535)] = 277324, + [SMALL_STATE(6536)] = 277417, + [SMALL_STATE(6537)] = 277508, + [SMALL_STATE(6538)] = 277599, + [SMALL_STATE(6539)] = 277650, + [SMALL_STATE(6540)] = 277703, + [SMALL_STATE(6541)] = 277754, + [SMALL_STATE(6542)] = 277843, + [SMALL_STATE(6543)] = 277932, + [SMALL_STATE(6544)] = 277983, + [SMALL_STATE(6545)] = 278034, + [SMALL_STATE(6546)] = 278085, + [SMALL_STATE(6547)] = 278136, + [SMALL_STATE(6548)] = 278187, + [SMALL_STATE(6549)] = 278238, + [SMALL_STATE(6550)] = 278289, + [SMALL_STATE(6551)] = 278340, + [SMALL_STATE(6552)] = 278429, + [SMALL_STATE(6553)] = 278520, + [SMALL_STATE(6554)] = 278571, + [SMALL_STATE(6555)] = 278630, + [SMALL_STATE(6556)] = 278721, + [SMALL_STATE(6557)] = 278812, + [SMALL_STATE(6558)] = 278903, + [SMALL_STATE(6559)] = 278994, + [SMALL_STATE(6560)] = 279045, + [SMALL_STATE(6561)] = 279096, + [SMALL_STATE(6562)] = 279187, + [SMALL_STATE(6563)] = 279246, + [SMALL_STATE(6564)] = 279297, + [SMALL_STATE(6565)] = 279388, + [SMALL_STATE(6566)] = 279447, + [SMALL_STATE(6567)] = 279498, + [SMALL_STATE(6568)] = 279589, + [SMALL_STATE(6569)] = 279648, + [SMALL_STATE(6570)] = 279699, + [SMALL_STATE(6571)] = 279790, + [SMALL_STATE(6572)] = 279861, + [SMALL_STATE(6573)] = 279952, + [SMALL_STATE(6574)] = 280043, + [SMALL_STATE(6575)] = 280134, + [SMALL_STATE(6576)] = 280205, + [SMALL_STATE(6577)] = 280256, + [SMALL_STATE(6578)] = 280307, + [SMALL_STATE(6579)] = 280398, + [SMALL_STATE(6580)] = 280449, + [SMALL_STATE(6581)] = 280508, + [SMALL_STATE(6582)] = 280559, + [SMALL_STATE(6583)] = 280650, + [SMALL_STATE(6584)] = 280741, + [SMALL_STATE(6585)] = 280792, + [SMALL_STATE(6586)] = 280883, + [SMALL_STATE(6587)] = 280934, + [SMALL_STATE(6588)] = 280985, + [SMALL_STATE(6589)] = 281038, + [SMALL_STATE(6590)] = 281089, + [SMALL_STATE(6591)] = 281180, + [SMALL_STATE(6592)] = 281231, + [SMALL_STATE(6593)] = 281290, + [SMALL_STATE(6594)] = 281379, + [SMALL_STATE(6595)] = 281470, + [SMALL_STATE(6596)] = 281561, + [SMALL_STATE(6597)] = 281654, + [SMALL_STATE(6598)] = 281705, + [SMALL_STATE(6599)] = 281796, + [SMALL_STATE(6600)] = 281849, + [SMALL_STATE(6601)] = 281904, + [SMALL_STATE(6602)] = 281995, + [SMALL_STATE(6603)] = 282046, + [SMALL_STATE(6604)] = 282105, + [SMALL_STATE(6605)] = 282158, + [SMALL_STATE(6606)] = 282209, + [SMALL_STATE(6607)] = 282300, + [SMALL_STATE(6608)] = 282353, + [SMALL_STATE(6609)] = 282444, + [SMALL_STATE(6610)] = 282497, + [SMALL_STATE(6611)] = 282548, + [SMALL_STATE(6612)] = 282601, + [SMALL_STATE(6613)] = 282654, + [SMALL_STATE(6614)] = 282745, + [SMALL_STATE(6615)] = 282800, + [SMALL_STATE(6616)] = 282891, + [SMALL_STATE(6617)] = 282942, + [SMALL_STATE(6618)] = 283001, + [SMALL_STATE(6619)] = 283052, + [SMALL_STATE(6620)] = 283143, + [SMALL_STATE(6621)] = 283234, + [SMALL_STATE(6622)] = 283285, + [SMALL_STATE(6623)] = 283376, + [SMALL_STATE(6624)] = 283467, + [SMALL_STATE(6625)] = 283558, + [SMALL_STATE(6626)] = 283649, + [SMALL_STATE(6627)] = 283740, + [SMALL_STATE(6628)] = 283799, + [SMALL_STATE(6629)] = 283850, + [SMALL_STATE(6630)] = 283941, + [SMALL_STATE(6631)] = 284032, + [SMALL_STATE(6632)] = 284121, + [SMALL_STATE(6633)] = 284172, + [SMALL_STATE(6634)] = 284263, + [SMALL_STATE(6635)] = 284322, + [SMALL_STATE(6636)] = 284373, + [SMALL_STATE(6637)] = 284424, + [SMALL_STATE(6638)] = 284513, + [SMALL_STATE(6639)] = 284604, + [SMALL_STATE(6640)] = 284695, + [SMALL_STATE(6641)] = 284746, + [SMALL_STATE(6642)] = 284797, + [SMALL_STATE(6643)] = 284848, + [SMALL_STATE(6644)] = 284899, + [SMALL_STATE(6645)] = 284950, + [SMALL_STATE(6646)] = 285041, + [SMALL_STATE(6647)] = 285092, + [SMALL_STATE(6648)] = 285183, + [SMALL_STATE(6649)] = 285274, + [SMALL_STATE(6650)] = 285325, + [SMALL_STATE(6651)] = 285376, + [SMALL_STATE(6652)] = 285467, + [SMALL_STATE(6653)] = 285518, + [SMALL_STATE(6654)] = 285569, + [SMALL_STATE(6655)] = 285660, + [SMALL_STATE(6656)] = 285751, + [SMALL_STATE(6657)] = 285802, + [SMALL_STATE(6658)] = 285853, + [SMALL_STATE(6659)] = 285904, + [SMALL_STATE(6660)] = 285963, + [SMALL_STATE(6661)] = 286054, + [SMALL_STATE(6662)] = 286145, + [SMALL_STATE(6663)] = 286196, + [SMALL_STATE(6664)] = 286249, + [SMALL_STATE(6665)] = 286304, + [SMALL_STATE(6666)] = 286395, + [SMALL_STATE(6667)] = 286486, + [SMALL_STATE(6668)] = 286575, + [SMALL_STATE(6669)] = 286628, + [SMALL_STATE(6670)] = 286711, + [SMALL_STATE(6671)] = 286770, + [SMALL_STATE(6672)] = 286861, + [SMALL_STATE(6673)] = 286952, + [SMALL_STATE(6674)] = 287043, + [SMALL_STATE(6675)] = 287096, + [SMALL_STATE(6676)] = 287147, + [SMALL_STATE(6677)] = 287198, + [SMALL_STATE(6678)] = 287289, + [SMALL_STATE(6679)] = 287380, + [SMALL_STATE(6680)] = 287439, + [SMALL_STATE(6681)] = 287530, + [SMALL_STATE(6682)] = 287589, + [SMALL_STATE(6683)] = 287680, + [SMALL_STATE(6684)] = 287739, + [SMALL_STATE(6685)] = 287798, + [SMALL_STATE(6686)] = 287857, + [SMALL_STATE(6687)] = 287946, + [SMALL_STATE(6688)] = 288005, + [SMALL_STATE(6689)] = 288070, + [SMALL_STATE(6690)] = 288121, + [SMALL_STATE(6691)] = 288212, + [SMALL_STATE(6692)] = 288303, + [SMALL_STATE(6693)] = 288354, + [SMALL_STATE(6694)] = 288443, + [SMALL_STATE(6695)] = 288494, + [SMALL_STATE(6696)] = 288585, + [SMALL_STATE(6697)] = 288644, + [SMALL_STATE(6698)] = 288703, + [SMALL_STATE(6699)] = 288762, + [SMALL_STATE(6700)] = 288821, + [SMALL_STATE(6701)] = 288880, + [SMALL_STATE(6702)] = 288971, + [SMALL_STATE(6703)] = 289022, + [SMALL_STATE(6704)] = 289113, + [SMALL_STATE(6705)] = 289164, + [SMALL_STATE(6706)] = 289247, + [SMALL_STATE(6707)] = 289298, + [SMALL_STATE(6708)] = 289349, + [SMALL_STATE(6709)] = 289440, + [SMALL_STATE(6710)] = 289491, + [SMALL_STATE(6711)] = 289582, + [SMALL_STATE(6712)] = 289633, + [SMALL_STATE(6713)] = 289684, + [SMALL_STATE(6714)] = 289735, + [SMALL_STATE(6715)] = 289826, + [SMALL_STATE(6716)] = 289877, + [SMALL_STATE(6717)] = 289928, + [SMALL_STATE(6718)] = 290003, + [SMALL_STATE(6719)] = 290094, + [SMALL_STATE(6720)] = 290145, + [SMALL_STATE(6721)] = 290196, + [SMALL_STATE(6722)] = 290247, + [SMALL_STATE(6723)] = 290340, + [SMALL_STATE(6724)] = 290390, + [SMALL_STATE(6725)] = 290440, + [SMALL_STATE(6726)] = 290490, + [SMALL_STATE(6727)] = 290546, + [SMALL_STATE(6728)] = 290598, + [SMALL_STATE(6729)] = 290648, + [SMALL_STATE(6730)] = 290704, + [SMALL_STATE(6731)] = 290790, + [SMALL_STATE(6732)] = 290846, + [SMALL_STATE(6733)] = 290896, + [SMALL_STATE(6734)] = 290946, + [SMALL_STATE(6735)] = 291002, + [SMALL_STATE(6736)] = 291058, + [SMALL_STATE(6737)] = 291108, + [SMALL_STATE(6738)] = 291194, + [SMALL_STATE(6739)] = 291280, + [SMALL_STATE(6740)] = 291336, + [SMALL_STATE(6741)] = 291386, + [SMALL_STATE(6742)] = 291436, + [SMALL_STATE(6743)] = 291486, + [SMALL_STATE(6744)] = 291542, + [SMALL_STATE(6745)] = 291628, + [SMALL_STATE(6746)] = 291714, + [SMALL_STATE(6747)] = 291764, + [SMALL_STATE(6748)] = 291850, + [SMALL_STATE(6749)] = 291906, + [SMALL_STATE(6750)] = 291956, + [SMALL_STATE(6751)] = 292026, + [SMALL_STATE(6752)] = 292082, + [SMALL_STATE(6753)] = 292168, + [SMALL_STATE(6754)] = 292218, + [SMALL_STATE(6755)] = 292268, + [SMALL_STATE(6756)] = 292324, + [SMALL_STATE(6757)] = 292374, + [SMALL_STATE(6758)] = 292424, + [SMALL_STATE(6759)] = 292474, + [SMALL_STATE(6760)] = 292530, + [SMALL_STATE(6761)] = 292580, + [SMALL_STATE(6762)] = 292666, + [SMALL_STATE(6763)] = 292736, + [SMALL_STATE(6764)] = 292806, + [SMALL_STATE(6765)] = 292892, + [SMALL_STATE(6766)] = 292974, + [SMALL_STATE(6767)] = 293024, + [SMALL_STATE(6768)] = 293074, + [SMALL_STATE(6769)] = 293124, + [SMALL_STATE(6770)] = 293174, + [SMALL_STATE(6771)] = 293224, + [SMALL_STATE(6772)] = 293274, + [SMALL_STATE(6773)] = 293360, + [SMALL_STATE(6774)] = 293410, + [SMALL_STATE(6775)] = 293496, + [SMALL_STATE(6776)] = 293582, + [SMALL_STATE(6777)] = 293668, + [SMALL_STATE(6778)] = 293718, + [SMALL_STATE(6779)] = 293768, + [SMALL_STATE(6780)] = 293818, + [SMALL_STATE(6781)] = 293904, + [SMALL_STATE(6782)] = 293954, + [SMALL_STATE(6783)] = 294004, + [SMALL_STATE(6784)] = 294054, + [SMALL_STATE(6785)] = 294104, + [SMALL_STATE(6786)] = 294154, + [SMALL_STATE(6787)] = 294240, + [SMALL_STATE(6788)] = 294290, + [SMALL_STATE(6789)] = 294340, + [SMALL_STATE(6790)] = 294390, + [SMALL_STATE(6791)] = 294440, + [SMALL_STATE(6792)] = 294490, + [SMALL_STATE(6793)] = 294540, + [SMALL_STATE(6794)] = 294590, + [SMALL_STATE(6795)] = 294640, + [SMALL_STATE(6796)] = 294690, + [SMALL_STATE(6797)] = 294740, + [SMALL_STATE(6798)] = 294790, + [SMALL_STATE(6799)] = 294840, + [SMALL_STATE(6800)] = 294892, + [SMALL_STATE(6801)] = 294942, + [SMALL_STATE(6802)] = 294992, + [SMALL_STATE(6803)] = 295048, + [SMALL_STATE(6804)] = 295108, + [SMALL_STATE(6805)] = 295190, + [SMALL_STATE(6806)] = 295276, + [SMALL_STATE(6807)] = 295362, + [SMALL_STATE(6808)] = 295448, + [SMALL_STATE(6809)] = 295504, + [SMALL_STATE(6810)] = 295564, + [SMALL_STATE(6811)] = 295620, + [SMALL_STATE(6812)] = 295676, + [SMALL_STATE(6813)] = 295740, + [SMALL_STATE(6814)] = 295796, + [SMALL_STATE(6815)] = 295878, + [SMALL_STATE(6816)] = 295952, + [SMALL_STATE(6817)] = 296018, + [SMALL_STATE(6818)] = 296080, + [SMALL_STATE(6819)] = 296150, + [SMALL_STATE(6820)] = 296228, + [SMALL_STATE(6821)] = 296308, + [SMALL_STATE(6822)] = 296372, + [SMALL_STATE(6823)] = 296454, + [SMALL_STATE(6824)] = 296504, + [SMALL_STATE(6825)] = 296590, + [SMALL_STATE(6826)] = 296676, + [SMALL_STATE(6827)] = 296762, + [SMALL_STATE(6828)] = 296844, + [SMALL_STATE(6829)] = 296918, + [SMALL_STATE(6830)] = 296968, + [SMALL_STATE(6831)] = 297034, + [SMALL_STATE(6832)] = 297096, + [SMALL_STATE(6833)] = 297166, + [SMALL_STATE(6834)] = 297244, + [SMALL_STATE(6835)] = 297324, + [SMALL_STATE(6836)] = 297374, + [SMALL_STATE(6837)] = 297424, + [SMALL_STATE(6838)] = 297474, + [SMALL_STATE(6839)] = 297524, + [SMALL_STATE(6840)] = 297574, + [SMALL_STATE(6841)] = 297628, + [SMALL_STATE(6842)] = 297678, + [SMALL_STATE(6843)] = 297728, + [SMALL_STATE(6844)] = 297778, + [SMALL_STATE(6845)] = 297828, + [SMALL_STATE(6846)] = 297880, + [SMALL_STATE(6847)] = 297930, + [SMALL_STATE(6848)] = 297980, + [SMALL_STATE(6849)] = 298030, + [SMALL_STATE(6850)] = 298084, + [SMALL_STATE(6851)] = 298134, + [SMALL_STATE(6852)] = 298184, + [SMALL_STATE(6853)] = 298270, + [SMALL_STATE(6854)] = 298320, + [SMALL_STATE(6855)] = 298370, + [SMALL_STATE(6856)] = 298420, + [SMALL_STATE(6857)] = 298470, + [SMALL_STATE(6858)] = 298522, + [SMALL_STATE(6859)] = 298572, + [SMALL_STATE(6860)] = 298622, + [SMALL_STATE(6861)] = 298672, + [SMALL_STATE(6862)] = 298722, + [SMALL_STATE(6863)] = 298772, + [SMALL_STATE(6864)] = 298822, + [SMALL_STATE(6865)] = 298872, + [SMALL_STATE(6866)] = 298922, + [SMALL_STATE(6867)] = 298974, + [SMALL_STATE(6868)] = 299024, + [SMALL_STATE(6869)] = 299074, + [SMALL_STATE(6870)] = 299124, + [SMALL_STATE(6871)] = 299174, + [SMALL_STATE(6872)] = 299224, + [SMALL_STATE(6873)] = 299274, + [SMALL_STATE(6874)] = 299324, + [SMALL_STATE(6875)] = 299374, + [SMALL_STATE(6876)] = 299424, + [SMALL_STATE(6877)] = 299474, + [SMALL_STATE(6878)] = 299524, + [SMALL_STATE(6879)] = 299574, + [SMALL_STATE(6880)] = 299624, + [SMALL_STATE(6881)] = 299678, + [SMALL_STATE(6882)] = 299728, + [SMALL_STATE(6883)] = 299778, + [SMALL_STATE(6884)] = 299834, + [SMALL_STATE(6885)] = 299884, + [SMALL_STATE(6886)] = 299934, + [SMALL_STATE(6887)] = 300020, + [SMALL_STATE(6888)] = 300106, + [SMALL_STATE(6889)] = 300192, + [SMALL_STATE(6890)] = 300242, + [SMALL_STATE(6891)] = 300328, + [SMALL_STATE(6892)] = 300414, + [SMALL_STATE(6893)] = 300466, + [SMALL_STATE(6894)] = 300518, + [SMALL_STATE(6895)] = 300604, + [SMALL_STATE(6896)] = 300654, + [SMALL_STATE(6897)] = 300708, + [SMALL_STATE(6898)] = 300758, + [SMALL_STATE(6899)] = 300808, + [SMALL_STATE(6900)] = 300858, + [SMALL_STATE(6901)] = 300912, + [SMALL_STATE(6902)] = 300994, + [SMALL_STATE(6903)] = 301044, + [SMALL_STATE(6904)] = 301126, + [SMALL_STATE(6905)] = 301176, + [SMALL_STATE(6906)] = 301226, + [SMALL_STATE(6907)] = 301308, + [SMALL_STATE(6908)] = 301360, + [SMALL_STATE(6909)] = 301410, + [SMALL_STATE(6910)] = 301496, + [SMALL_STATE(6911)] = 301582, + [SMALL_STATE(6912)] = 301632, + [SMALL_STATE(6913)] = 301682, + [SMALL_STATE(6914)] = 301732, + [SMALL_STATE(6915)] = 301782, + [SMALL_STATE(6916)] = 301832, + [SMALL_STATE(6917)] = 301918, + [SMALL_STATE(6918)] = 302000, + [SMALL_STATE(6919)] = 302086, + [SMALL_STATE(6920)] = 302172, + [SMALL_STATE(6921)] = 302258, + [SMALL_STATE(6922)] = 302344, + [SMALL_STATE(6923)] = 302404, + [SMALL_STATE(6924)] = 302460, + [SMALL_STATE(6925)] = 302516, + [SMALL_STATE(6926)] = 302580, + [SMALL_STATE(6927)] = 302662, + [SMALL_STATE(6928)] = 302736, + [SMALL_STATE(6929)] = 302802, + [SMALL_STATE(6930)] = 302864, + [SMALL_STATE(6931)] = 302934, + [SMALL_STATE(6932)] = 303012, + [SMALL_STATE(6933)] = 303092, + [SMALL_STATE(6934)] = 303142, + [SMALL_STATE(6935)] = 303224, + [SMALL_STATE(6936)] = 303310, + [SMALL_STATE(6937)] = 303360, + [SMALL_STATE(6938)] = 303446, + [SMALL_STATE(6939)] = 303532, + [SMALL_STATE(6940)] = 303586, + [SMALL_STATE(6941)] = 303636, + [SMALL_STATE(6942)] = 303718, + [SMALL_STATE(6943)] = 303768, + [SMALL_STATE(6944)] = 303818, + [SMALL_STATE(6945)] = 303868, + [SMALL_STATE(6946)] = 303924, + [SMALL_STATE(6947)] = 303974, + [SMALL_STATE(6948)] = 304024, + [SMALL_STATE(6949)] = 304074, + [SMALL_STATE(6950)] = 304124, + [SMALL_STATE(6951)] = 304210, + [SMALL_STATE(6952)] = 304260, + [SMALL_STATE(6953)] = 304312, + [SMALL_STATE(6954)] = 304362, + [SMALL_STATE(6955)] = 304412, + [SMALL_STATE(6956)] = 304462, + [SMALL_STATE(6957)] = 304512, + [SMALL_STATE(6958)] = 304562, + [SMALL_STATE(6959)] = 304612, + [SMALL_STATE(6960)] = 304664, + [SMALL_STATE(6961)] = 304714, + [SMALL_STATE(6962)] = 304769, + [SMALL_STATE(6963)] = 304850, + [SMALL_STATE(6964)] = 304935, + [SMALL_STATE(6965)] = 304990, + [SMALL_STATE(6966)] = 305075, + [SMALL_STATE(6967)] = 305160, + [SMALL_STATE(6968)] = 305245, + [SMALL_STATE(6969)] = 305308, + [SMALL_STATE(6970)] = 305393, + [SMALL_STATE(6971)] = 305478, + [SMALL_STATE(6972)] = 305559, + [SMALL_STATE(6973)] = 305644, + [SMALL_STATE(6974)] = 305713, + [SMALL_STATE(6975)] = 305798, + [SMALL_STATE(6976)] = 305883, + [SMALL_STATE(6977)] = 305968, + [SMALL_STATE(6978)] = 306053, + [SMALL_STATE(6979)] = 306138, + [SMALL_STATE(6980)] = 306223, + [SMALL_STATE(6981)] = 306308, + [SMALL_STATE(6982)] = 306393, + [SMALL_STATE(6983)] = 306478, + [SMALL_STATE(6984)] = 306563, + [SMALL_STATE(6985)] = 306636, + [SMALL_STATE(6986)] = 306701, + [SMALL_STATE(6987)] = 306786, + [SMALL_STATE(6988)] = 306871, + [SMALL_STATE(6989)] = 306956, + [SMALL_STATE(6990)] = 307037, + [SMALL_STATE(6991)] = 307122, + [SMALL_STATE(6992)] = 307207, + [SMALL_STATE(6993)] = 307292, + [SMALL_STATE(6994)] = 307353, + [SMALL_STATE(6995)] = 307422, + [SMALL_STATE(6996)] = 307491, + [SMALL_STATE(6997)] = 307568, + [SMALL_STATE(6998)] = 307623, + [SMALL_STATE(6999)] = 307700, + [SMALL_STATE(7000)] = 307779, + [SMALL_STATE(7001)] = 307864, + [SMALL_STATE(7002)] = 307949, + [SMALL_STATE(7003)] = 308028, + [SMALL_STATE(7004)] = 308109, + [SMALL_STATE(7005)] = 308194, + [SMALL_STATE(7006)] = 308279, + [SMALL_STATE(7007)] = 308364, + [SMALL_STATE(7008)] = 308449, + [SMALL_STATE(7009)] = 308534, + [SMALL_STATE(7010)] = 308619, + [SMALL_STATE(7011)] = 308704, + [SMALL_STATE(7012)] = 308789, + [SMALL_STATE(7013)] = 308874, + [SMALL_STATE(7014)] = 308959, + [SMALL_STATE(7015)] = 309044, + [SMALL_STATE(7016)] = 309125, + [SMALL_STATE(7017)] = 309180, + [SMALL_STATE(7018)] = 309265, + [SMALL_STATE(7019)] = 309328, + [SMALL_STATE(7020)] = 309413, + [SMALL_STATE(7021)] = 309498, + [SMALL_STATE(7022)] = 309579, + [SMALL_STATE(7023)] = 309664, + [SMALL_STATE(7024)] = 309749, + [SMALL_STATE(7025)] = 309808, + [SMALL_STATE(7026)] = 309893, + [SMALL_STATE(7027)] = 309978, + [SMALL_STATE(7028)] = 310059, + [SMALL_STATE(7029)] = 310144, + [SMALL_STATE(7030)] = 310229, + [SMALL_STATE(7031)] = 310314, + [SMALL_STATE(7032)] = 310399, + [SMALL_STATE(7033)] = 310484, + [SMALL_STATE(7034)] = 310543, + [SMALL_STATE(7035)] = 310598, + [SMALL_STATE(7036)] = 310683, + [SMALL_STATE(7037)] = 310768, + [SMALL_STATE(7038)] = 310823, + [SMALL_STATE(7039)] = 310896, + [SMALL_STATE(7040)] = 310961, + [SMALL_STATE(7041)] = 311046, + [SMALL_STATE(7042)] = 311107, + [SMALL_STATE(7043)] = 311192, + [SMALL_STATE(7044)] = 311277, + [SMALL_STATE(7045)] = 311332, + [SMALL_STATE(7046)] = 311417, + [SMALL_STATE(7047)] = 311498, + [SMALL_STATE(7048)] = 311583, + [SMALL_STATE(7049)] = 311668, + [SMALL_STATE(7050)] = 311753, + [SMALL_STATE(7051)] = 311838, + [SMALL_STATE(7052)] = 311923, + [SMALL_STATE(7053)] = 311978, + [SMALL_STATE(7054)] = 312063, + [SMALL_STATE(7055)] = 312132, + [SMALL_STATE(7056)] = 312214, + [SMALL_STATE(7057)] = 312296, + [SMALL_STATE(7058)] = 312378, + [SMALL_STATE(7059)] = 312448, + [SMALL_STATE(7060)] = 312530, + [SMALL_STATE(7061)] = 312600, + [SMALL_STATE(7062)] = 312670, + [SMALL_STATE(7063)] = 312752, + [SMALL_STATE(7064)] = 312834, + [SMALL_STATE(7065)] = 312904, + [SMALL_STATE(7066)] = 312974, + [SMALL_STATE(7067)] = 313056, + [SMALL_STATE(7068)] = 313138, + [SMALL_STATE(7069)] = 313220, + [SMALL_STATE(7070)] = 313302, + [SMALL_STATE(7071)] = 313372, + [SMALL_STATE(7072)] = 313454, + [SMALL_STATE(7073)] = 313521, + [SMALL_STATE(7074)] = 313588, + [SMALL_STATE(7075)] = 313655, + [SMALL_STATE(7076)] = 313722, + [SMALL_STATE(7077)] = 313789, + [SMALL_STATE(7078)] = 313870, + [SMALL_STATE(7079)] = 313936, + [SMALL_STATE(7080)] = 314002, + [SMALL_STATE(7081)] = 314068, + [SMALL_STATE(7082)] = 314134, + [SMALL_STATE(7083)] = 314200, + [SMALL_STATE(7084)] = 314266, + [SMALL_STATE(7085)] = 314331, + [SMALL_STATE(7086)] = 314396, + [SMALL_STATE(7087)] = 314461, + [SMALL_STATE(7088)] = 314526, + [SMALL_STATE(7089)] = 314591, + [SMALL_STATE(7090)] = 314662, + [SMALL_STATE(7091)] = 314733, + [SMALL_STATE(7092)] = 314804, + [SMALL_STATE(7093)] = 314875, + [SMALL_STATE(7094)] = 314946, + [SMALL_STATE(7095)] = 315017, + [SMALL_STATE(7096)] = 315088, + [SMALL_STATE(7097)] = 315159, + [SMALL_STATE(7098)] = 315230, + [SMALL_STATE(7099)] = 315301, + [SMALL_STATE(7100)] = 315372, + [SMALL_STATE(7101)] = 315443, + [SMALL_STATE(7102)] = 315514, + [SMALL_STATE(7103)] = 315585, + [SMALL_STATE(7104)] = 315656, + [SMALL_STATE(7105)] = 315727, + [SMALL_STATE(7106)] = 315798, + [SMALL_STATE(7107)] = 315869, + [SMALL_STATE(7108)] = 315940, + [SMALL_STATE(7109)] = 316011, + [SMALL_STATE(7110)] = 316082, + [SMALL_STATE(7111)] = 316153, + [SMALL_STATE(7112)] = 316224, + [SMALL_STATE(7113)] = 316295, + [SMALL_STATE(7114)] = 316366, + [SMALL_STATE(7115)] = 316437, + [SMALL_STATE(7116)] = 316508, + [SMALL_STATE(7117)] = 316579, + [SMALL_STATE(7118)] = 316650, + [SMALL_STATE(7119)] = 316721, + [SMALL_STATE(7120)] = 316792, + [SMALL_STATE(7121)] = 316863, + [SMALL_STATE(7122)] = 316934, + [SMALL_STATE(7123)] = 317005, + [SMALL_STATE(7124)] = 317076, + [SMALL_STATE(7125)] = 317147, + [SMALL_STATE(7126)] = 317218, + [SMALL_STATE(7127)] = 317289, + [SMALL_STATE(7128)] = 317360, + [SMALL_STATE(7129)] = 317431, + [SMALL_STATE(7130)] = 317502, + [SMALL_STATE(7131)] = 317573, + [SMALL_STATE(7132)] = 317644, + [SMALL_STATE(7133)] = 317715, + [SMALL_STATE(7134)] = 317786, + [SMALL_STATE(7135)] = 317857, + [SMALL_STATE(7136)] = 317928, + [SMALL_STATE(7137)] = 317999, + [SMALL_STATE(7138)] = 318070, + [SMALL_STATE(7139)] = 318141, + [SMALL_STATE(7140)] = 318212, + [SMALL_STATE(7141)] = 318283, + [SMALL_STATE(7142)] = 318354, + [SMALL_STATE(7143)] = 318425, + [SMALL_STATE(7144)] = 318496, + [SMALL_STATE(7145)] = 318567, + [SMALL_STATE(7146)] = 318638, + [SMALL_STATE(7147)] = 318709, + [SMALL_STATE(7148)] = 318780, + [SMALL_STATE(7149)] = 318851, + [SMALL_STATE(7150)] = 318922, + [SMALL_STATE(7151)] = 318993, + [SMALL_STATE(7152)] = 319064, + [SMALL_STATE(7153)] = 319135, + [SMALL_STATE(7154)] = 319206, + [SMALL_STATE(7155)] = 319271, + [SMALL_STATE(7156)] = 319342, + [SMALL_STATE(7157)] = 319413, + [SMALL_STATE(7158)] = 319484, + [SMALL_STATE(7159)] = 319555, + [SMALL_STATE(7160)] = 319626, + [SMALL_STATE(7161)] = 319697, + [SMALL_STATE(7162)] = 319768, + [SMALL_STATE(7163)] = 319839, + [SMALL_STATE(7164)] = 319910, + [SMALL_STATE(7165)] = 319981, + [SMALL_STATE(7166)] = 320052, + [SMALL_STATE(7167)] = 320117, + [SMALL_STATE(7168)] = 320188, + [SMALL_STATE(7169)] = 320259, + [SMALL_STATE(7170)] = 320330, + [SMALL_STATE(7171)] = 320401, + [SMALL_STATE(7172)] = 320472, + [SMALL_STATE(7173)] = 320543, + [SMALL_STATE(7174)] = 320614, + [SMALL_STATE(7175)] = 320685, + [SMALL_STATE(7176)] = 320756, + [SMALL_STATE(7177)] = 320827, + [SMALL_STATE(7178)] = 320898, + [SMALL_STATE(7179)] = 320969, + [SMALL_STATE(7180)] = 321040, + [SMALL_STATE(7181)] = 321111, + [SMALL_STATE(7182)] = 321182, + [SMALL_STATE(7183)] = 321253, + [SMALL_STATE(7184)] = 321324, + [SMALL_STATE(7185)] = 321395, + [SMALL_STATE(7186)] = 321466, + [SMALL_STATE(7187)] = 321537, + [SMALL_STATE(7188)] = 321608, + [SMALL_STATE(7189)] = 321679, + [SMALL_STATE(7190)] = 321750, + [SMALL_STATE(7191)] = 321821, + [SMALL_STATE(7192)] = 321892, + [SMALL_STATE(7193)] = 321963, + [SMALL_STATE(7194)] = 322034, + [SMALL_STATE(7195)] = 322105, + [SMALL_STATE(7196)] = 322176, + [SMALL_STATE(7197)] = 322247, + [SMALL_STATE(7198)] = 322318, + [SMALL_STATE(7199)] = 322389, + [SMALL_STATE(7200)] = 322460, + [SMALL_STATE(7201)] = 322531, + [SMALL_STATE(7202)] = 322602, + [SMALL_STATE(7203)] = 322673, + [SMALL_STATE(7204)] = 322744, + [SMALL_STATE(7205)] = 322815, + [SMALL_STATE(7206)] = 322886, + [SMALL_STATE(7207)] = 322957, + [SMALL_STATE(7208)] = 323028, + [SMALL_STATE(7209)] = 323099, + [SMALL_STATE(7210)] = 323170, + [SMALL_STATE(7211)] = 323241, + [SMALL_STATE(7212)] = 323312, + [SMALL_STATE(7213)] = 323383, + [SMALL_STATE(7214)] = 323454, + [SMALL_STATE(7215)] = 323525, + [SMALL_STATE(7216)] = 323596, + [SMALL_STATE(7217)] = 323667, + [SMALL_STATE(7218)] = 323738, + [SMALL_STATE(7219)] = 323809, + [SMALL_STATE(7220)] = 323880, + [SMALL_STATE(7221)] = 323951, + [SMALL_STATE(7222)] = 324022, + [SMALL_STATE(7223)] = 324093, + [SMALL_STATE(7224)] = 324164, + [SMALL_STATE(7225)] = 324235, + [SMALL_STATE(7226)] = 324306, + [SMALL_STATE(7227)] = 324377, + [SMALL_STATE(7228)] = 324448, + [SMALL_STATE(7229)] = 324519, + [SMALL_STATE(7230)] = 324590, + [SMALL_STATE(7231)] = 324661, + [SMALL_STATE(7232)] = 324732, + [SMALL_STATE(7233)] = 324803, + [SMALL_STATE(7234)] = 324874, + [SMALL_STATE(7235)] = 324945, + [SMALL_STATE(7236)] = 325016, + [SMALL_STATE(7237)] = 325087, + [SMALL_STATE(7238)] = 325158, + [SMALL_STATE(7239)] = 325229, + [SMALL_STATE(7240)] = 325300, + [SMALL_STATE(7241)] = 325371, + [SMALL_STATE(7242)] = 325442, + [SMALL_STATE(7243)] = 325513, + [SMALL_STATE(7244)] = 325584, + [SMALL_STATE(7245)] = 325655, + [SMALL_STATE(7246)] = 325726, + [SMALL_STATE(7247)] = 325797, + [SMALL_STATE(7248)] = 325868, + [SMALL_STATE(7249)] = 325939, + [SMALL_STATE(7250)] = 326010, + [SMALL_STATE(7251)] = 326081, + [SMALL_STATE(7252)] = 326152, + [SMALL_STATE(7253)] = 326223, + [SMALL_STATE(7254)] = 326294, + [SMALL_STATE(7255)] = 326365, + [SMALL_STATE(7256)] = 326436, + [SMALL_STATE(7257)] = 326507, + [SMALL_STATE(7258)] = 326578, + [SMALL_STATE(7259)] = 326649, + [SMALL_STATE(7260)] = 326720, + [SMALL_STATE(7261)] = 326791, + [SMALL_STATE(7262)] = 326862, + [SMALL_STATE(7263)] = 326933, + [SMALL_STATE(7264)] = 327004, + [SMALL_STATE(7265)] = 327075, + [SMALL_STATE(7266)] = 327146, + [SMALL_STATE(7267)] = 327217, + [SMALL_STATE(7268)] = 327288, + [SMALL_STATE(7269)] = 327359, + [SMALL_STATE(7270)] = 327430, + [SMALL_STATE(7271)] = 327501, + [SMALL_STATE(7272)] = 327572, + [SMALL_STATE(7273)] = 327643, + [SMALL_STATE(7274)] = 327714, + [SMALL_STATE(7275)] = 327785, + [SMALL_STATE(7276)] = 327856, + [SMALL_STATE(7277)] = 327927, + [SMALL_STATE(7278)] = 327998, + [SMALL_STATE(7279)] = 328069, + [SMALL_STATE(7280)] = 328140, + [SMALL_STATE(7281)] = 328211, + [SMALL_STATE(7282)] = 328282, + [SMALL_STATE(7283)] = 328353, + [SMALL_STATE(7284)] = 328424, + [SMALL_STATE(7285)] = 328495, + [SMALL_STATE(7286)] = 328566, + [SMALL_STATE(7287)] = 328637, + [SMALL_STATE(7288)] = 328708, + [SMALL_STATE(7289)] = 328779, + [SMALL_STATE(7290)] = 328850, + [SMALL_STATE(7291)] = 328921, + [SMALL_STATE(7292)] = 328992, + [SMALL_STATE(7293)] = 329063, + [SMALL_STATE(7294)] = 329134, + [SMALL_STATE(7295)] = 329205, + [SMALL_STATE(7296)] = 329276, + [SMALL_STATE(7297)] = 329347, + [SMALL_STATE(7298)] = 329418, + [SMALL_STATE(7299)] = 329489, + [SMALL_STATE(7300)] = 329560, + [SMALL_STATE(7301)] = 329631, + [SMALL_STATE(7302)] = 329702, + [SMALL_STATE(7303)] = 329773, + [SMALL_STATE(7304)] = 329844, + [SMALL_STATE(7305)] = 329915, + [SMALL_STATE(7306)] = 329986, + [SMALL_STATE(7307)] = 330057, + [SMALL_STATE(7308)] = 330128, + [SMALL_STATE(7309)] = 330199, + [SMALL_STATE(7310)] = 330270, + [SMALL_STATE(7311)] = 330341, + [SMALL_STATE(7312)] = 330412, + [SMALL_STATE(7313)] = 330483, + [SMALL_STATE(7314)] = 330554, + [SMALL_STATE(7315)] = 330625, + [SMALL_STATE(7316)] = 330696, + [SMALL_STATE(7317)] = 330767, + [SMALL_STATE(7318)] = 330838, + [SMALL_STATE(7319)] = 330909, + [SMALL_STATE(7320)] = 330980, + [SMALL_STATE(7321)] = 331051, + [SMALL_STATE(7322)] = 331122, + [SMALL_STATE(7323)] = 331193, + [SMALL_STATE(7324)] = 331264, + [SMALL_STATE(7325)] = 331335, + [SMALL_STATE(7326)] = 331406, + [SMALL_STATE(7327)] = 331477, + [SMALL_STATE(7328)] = 331548, + [SMALL_STATE(7329)] = 331619, + [SMALL_STATE(7330)] = 331690, + [SMALL_STATE(7331)] = 331761, + [SMALL_STATE(7332)] = 331832, + [SMALL_STATE(7333)] = 331903, + [SMALL_STATE(7334)] = 331974, + [SMALL_STATE(7335)] = 332045, + [SMALL_STATE(7336)] = 332116, + [SMALL_STATE(7337)] = 332187, + [SMALL_STATE(7338)] = 332258, + [SMALL_STATE(7339)] = 332329, + [SMALL_STATE(7340)] = 332400, + [SMALL_STATE(7341)] = 332471, + [SMALL_STATE(7342)] = 332542, + [SMALL_STATE(7343)] = 332613, + [SMALL_STATE(7344)] = 332684, + [SMALL_STATE(7345)] = 332755, + [SMALL_STATE(7346)] = 332826, + [SMALL_STATE(7347)] = 332897, + [SMALL_STATE(7348)] = 332968, + [SMALL_STATE(7349)] = 333039, + [SMALL_STATE(7350)] = 333110, + [SMALL_STATE(7351)] = 333181, + [SMALL_STATE(7352)] = 333252, + [SMALL_STATE(7353)] = 333323, + [SMALL_STATE(7354)] = 333394, + [SMALL_STATE(7355)] = 333465, + [SMALL_STATE(7356)] = 333536, + [SMALL_STATE(7357)] = 333607, + [SMALL_STATE(7358)] = 333678, + [SMALL_STATE(7359)] = 333749, + [SMALL_STATE(7360)] = 333820, + [SMALL_STATE(7361)] = 333891, + [SMALL_STATE(7362)] = 333962, + [SMALL_STATE(7363)] = 334033, + [SMALL_STATE(7364)] = 334104, + [SMALL_STATE(7365)] = 334173, + [SMALL_STATE(7366)] = 334244, + [SMALL_STATE(7367)] = 334315, + [SMALL_STATE(7368)] = 334386, + [SMALL_STATE(7369)] = 334457, + [SMALL_STATE(7370)] = 334528, + [SMALL_STATE(7371)] = 334599, + [SMALL_STATE(7372)] = 334670, + [SMALL_STATE(7373)] = 334741, + [SMALL_STATE(7374)] = 334812, + [SMALL_STATE(7375)] = 334883, + [SMALL_STATE(7376)] = 334954, + [SMALL_STATE(7377)] = 335025, + [SMALL_STATE(7378)] = 335096, + [SMALL_STATE(7379)] = 335167, + [SMALL_STATE(7380)] = 335238, + [SMALL_STATE(7381)] = 335309, + [SMALL_STATE(7382)] = 335380, + [SMALL_STATE(7383)] = 335451, + [SMALL_STATE(7384)] = 335522, + [SMALL_STATE(7385)] = 335593, + [SMALL_STATE(7386)] = 335664, + [SMALL_STATE(7387)] = 335735, + [SMALL_STATE(7388)] = 335806, + [SMALL_STATE(7389)] = 335877, + [SMALL_STATE(7390)] = 335948, + [SMALL_STATE(7391)] = 336019, + [SMALL_STATE(7392)] = 336090, + [SMALL_STATE(7393)] = 336161, + [SMALL_STATE(7394)] = 336232, + [SMALL_STATE(7395)] = 336303, + [SMALL_STATE(7396)] = 336374, + [SMALL_STATE(7397)] = 336445, + [SMALL_STATE(7398)] = 336516, + [SMALL_STATE(7399)] = 336587, + [SMALL_STATE(7400)] = 336658, + [SMALL_STATE(7401)] = 336729, + [SMALL_STATE(7402)] = 336800, + [SMALL_STATE(7403)] = 336871, + [SMALL_STATE(7404)] = 336942, + [SMALL_STATE(7405)] = 337013, + [SMALL_STATE(7406)] = 337084, + [SMALL_STATE(7407)] = 337155, + [SMALL_STATE(7408)] = 337226, + [SMALL_STATE(7409)] = 337297, + [SMALL_STATE(7410)] = 337368, + [SMALL_STATE(7411)] = 337439, + [SMALL_STATE(7412)] = 337510, + [SMALL_STATE(7413)] = 337581, + [SMALL_STATE(7414)] = 337652, + [SMALL_STATE(7415)] = 337723, + [SMALL_STATE(7416)] = 337794, + [SMALL_STATE(7417)] = 337865, + [SMALL_STATE(7418)] = 337936, + [SMALL_STATE(7419)] = 338007, + [SMALL_STATE(7420)] = 338078, + [SMALL_STATE(7421)] = 338149, + [SMALL_STATE(7422)] = 338220, + [SMALL_STATE(7423)] = 338291, + [SMALL_STATE(7424)] = 338362, + [SMALL_STATE(7425)] = 338433, + [SMALL_STATE(7426)] = 338504, + [SMALL_STATE(7427)] = 338575, + [SMALL_STATE(7428)] = 338646, + [SMALL_STATE(7429)] = 338717, + [SMALL_STATE(7430)] = 338788, + [SMALL_STATE(7431)] = 338859, + [SMALL_STATE(7432)] = 338930, + [SMALL_STATE(7433)] = 339001, + [SMALL_STATE(7434)] = 339072, + [SMALL_STATE(7435)] = 339143, + [SMALL_STATE(7436)] = 339214, + [SMALL_STATE(7437)] = 339285, + [SMALL_STATE(7438)] = 339356, + [SMALL_STATE(7439)] = 339427, + [SMALL_STATE(7440)] = 339498, + [SMALL_STATE(7441)] = 339569, + [SMALL_STATE(7442)] = 339640, + [SMALL_STATE(7443)] = 339711, + [SMALL_STATE(7444)] = 339782, + [SMALL_STATE(7445)] = 339853, + [SMALL_STATE(7446)] = 339924, + [SMALL_STATE(7447)] = 339995, + [SMALL_STATE(7448)] = 340066, + [SMALL_STATE(7449)] = 340137, + [SMALL_STATE(7450)] = 340208, + [SMALL_STATE(7451)] = 340279, + [SMALL_STATE(7452)] = 340350, + [SMALL_STATE(7453)] = 340421, + [SMALL_STATE(7454)] = 340492, + [SMALL_STATE(7455)] = 340563, + [SMALL_STATE(7456)] = 340634, + [SMALL_STATE(7457)] = 340705, + [SMALL_STATE(7458)] = 340776, + [SMALL_STATE(7459)] = 340847, + [SMALL_STATE(7460)] = 340918, + [SMALL_STATE(7461)] = 340989, + [SMALL_STATE(7462)] = 341060, + [SMALL_STATE(7463)] = 341131, + [SMALL_STATE(7464)] = 341202, + [SMALL_STATE(7465)] = 341273, + [SMALL_STATE(7466)] = 341344, + [SMALL_STATE(7467)] = 341415, + [SMALL_STATE(7468)] = 341486, + [SMALL_STATE(7469)] = 341557, + [SMALL_STATE(7470)] = 341628, + [SMALL_STATE(7471)] = 341699, + [SMALL_STATE(7472)] = 341770, + [SMALL_STATE(7473)] = 341841, + [SMALL_STATE(7474)] = 341912, + [SMALL_STATE(7475)] = 341983, + [SMALL_STATE(7476)] = 342054, + [SMALL_STATE(7477)] = 342125, + [SMALL_STATE(7478)] = 342196, + [SMALL_STATE(7479)] = 342267, + [SMALL_STATE(7480)] = 342338, + [SMALL_STATE(7481)] = 342409, + [SMALL_STATE(7482)] = 342480, + [SMALL_STATE(7483)] = 342551, + [SMALL_STATE(7484)] = 342622, + [SMALL_STATE(7485)] = 342693, + [SMALL_STATE(7486)] = 342764, + [SMALL_STATE(7487)] = 342835, + [SMALL_STATE(7488)] = 342906, + [SMALL_STATE(7489)] = 342977, + [SMALL_STATE(7490)] = 343048, + [SMALL_STATE(7491)] = 343119, + [SMALL_STATE(7492)] = 343190, + [SMALL_STATE(7493)] = 343261, + [SMALL_STATE(7494)] = 343332, + [SMALL_STATE(7495)] = 343403, + [SMALL_STATE(7496)] = 343474, + [SMALL_STATE(7497)] = 343545, + [SMALL_STATE(7498)] = 343614, + [SMALL_STATE(7499)] = 343685, + [SMALL_STATE(7500)] = 343756, + [SMALL_STATE(7501)] = 343827, + [SMALL_STATE(7502)] = 343898, + [SMALL_STATE(7503)] = 343969, + [SMALL_STATE(7504)] = 344040, + [SMALL_STATE(7505)] = 344111, + [SMALL_STATE(7506)] = 344182, + [SMALL_STATE(7507)] = 344253, + [SMALL_STATE(7508)] = 344324, + [SMALL_STATE(7509)] = 344395, + [SMALL_STATE(7510)] = 344466, + [SMALL_STATE(7511)] = 344537, + [SMALL_STATE(7512)] = 344608, + [SMALL_STATE(7513)] = 344679, + [SMALL_STATE(7514)] = 344750, + [SMALL_STATE(7515)] = 344821, + [SMALL_STATE(7516)] = 344892, + [SMALL_STATE(7517)] = 344963, + [SMALL_STATE(7518)] = 345034, + [SMALL_STATE(7519)] = 345105, + [SMALL_STATE(7520)] = 345176, + [SMALL_STATE(7521)] = 345247, + [SMALL_STATE(7522)] = 345318, + [SMALL_STATE(7523)] = 345389, + [SMALL_STATE(7524)] = 345460, + [SMALL_STATE(7525)] = 345531, + [SMALL_STATE(7526)] = 345602, + [SMALL_STATE(7527)] = 345673, + [SMALL_STATE(7528)] = 345744, + [SMALL_STATE(7529)] = 345815, + [SMALL_STATE(7530)] = 345886, + [SMALL_STATE(7531)] = 345957, + [SMALL_STATE(7532)] = 346028, + [SMALL_STATE(7533)] = 346099, + [SMALL_STATE(7534)] = 346170, + [SMALL_STATE(7535)] = 346241, + [SMALL_STATE(7536)] = 346312, + [SMALL_STATE(7537)] = 346383, + [SMALL_STATE(7538)] = 346454, + [SMALL_STATE(7539)] = 346525, + [SMALL_STATE(7540)] = 346596, + [SMALL_STATE(7541)] = 346667, + [SMALL_STATE(7542)] = 346738, + [SMALL_STATE(7543)] = 346809, + [SMALL_STATE(7544)] = 346880, + [SMALL_STATE(7545)] = 346951, + [SMALL_STATE(7546)] = 347022, + [SMALL_STATE(7547)] = 347093, + [SMALL_STATE(7548)] = 347164, + [SMALL_STATE(7549)] = 347235, + [SMALL_STATE(7550)] = 347306, + [SMALL_STATE(7551)] = 347377, + [SMALL_STATE(7552)] = 347448, + [SMALL_STATE(7553)] = 347519, + [SMALL_STATE(7554)] = 347590, + [SMALL_STATE(7555)] = 347661, + [SMALL_STATE(7556)] = 347732, + [SMALL_STATE(7557)] = 347803, + [SMALL_STATE(7558)] = 347874, + [SMALL_STATE(7559)] = 347945, + [SMALL_STATE(7560)] = 348016, + [SMALL_STATE(7561)] = 348087, + [SMALL_STATE(7562)] = 348158, + [SMALL_STATE(7563)] = 348229, + [SMALL_STATE(7564)] = 348300, + [SMALL_STATE(7565)] = 348371, + [SMALL_STATE(7566)] = 348442, + [SMALL_STATE(7567)] = 348513, + [SMALL_STATE(7568)] = 348584, + [SMALL_STATE(7569)] = 348655, + [SMALL_STATE(7570)] = 348726, + [SMALL_STATE(7571)] = 348797, + [SMALL_STATE(7572)] = 348868, + [SMALL_STATE(7573)] = 348939, + [SMALL_STATE(7574)] = 349010, + [SMALL_STATE(7575)] = 349081, + [SMALL_STATE(7576)] = 349152, + [SMALL_STATE(7577)] = 349220, + [SMALL_STATE(7578)] = 349288, + [SMALL_STATE(7579)] = 349356, + [SMALL_STATE(7580)] = 349424, + [SMALL_STATE(7581)] = 349492, + [SMALL_STATE(7582)] = 349560, + [SMALL_STATE(7583)] = 349628, + [SMALL_STATE(7584)] = 349696, + [SMALL_STATE(7585)] = 349764, + [SMALL_STATE(7586)] = 349832, + [SMALL_STATE(7587)] = 349900, + [SMALL_STATE(7588)] = 349968, + [SMALL_STATE(7589)] = 350036, + [SMALL_STATE(7590)] = 350104, + [SMALL_STATE(7591)] = 350172, + [SMALL_STATE(7592)] = 350240, + [SMALL_STATE(7593)] = 350308, + [SMALL_STATE(7594)] = 350376, + [SMALL_STATE(7595)] = 350444, + [SMALL_STATE(7596)] = 350512, + [SMALL_STATE(7597)] = 350580, + [SMALL_STATE(7598)] = 350648, + [SMALL_STATE(7599)] = 350716, + [SMALL_STATE(7600)] = 350784, + [SMALL_STATE(7601)] = 350852, + [SMALL_STATE(7602)] = 350920, + [SMALL_STATE(7603)] = 350988, + [SMALL_STATE(7604)] = 351056, + [SMALL_STATE(7605)] = 351124, + [SMALL_STATE(7606)] = 351192, + [SMALL_STATE(7607)] = 351260, + [SMALL_STATE(7608)] = 351328, + [SMALL_STATE(7609)] = 351396, + [SMALL_STATE(7610)] = 351464, + [SMALL_STATE(7611)] = 351532, + [SMALL_STATE(7612)] = 351600, + [SMALL_STATE(7613)] = 351668, + [SMALL_STATE(7614)] = 351736, + [SMALL_STATE(7615)] = 351804, + [SMALL_STATE(7616)] = 351872, + [SMALL_STATE(7617)] = 351940, + [SMALL_STATE(7618)] = 352008, + [SMALL_STATE(7619)] = 352076, + [SMALL_STATE(7620)] = 352144, + [SMALL_STATE(7621)] = 352212, + [SMALL_STATE(7622)] = 352280, + [SMALL_STATE(7623)] = 352348, + [SMALL_STATE(7624)] = 352416, + [SMALL_STATE(7625)] = 352484, + [SMALL_STATE(7626)] = 352552, + [SMALL_STATE(7627)] = 352620, + [SMALL_STATE(7628)] = 352688, + [SMALL_STATE(7629)] = 352756, + [SMALL_STATE(7630)] = 352824, + [SMALL_STATE(7631)] = 352892, + [SMALL_STATE(7632)] = 352960, + [SMALL_STATE(7633)] = 353028, + [SMALL_STATE(7634)] = 353096, + [SMALL_STATE(7635)] = 353164, + [SMALL_STATE(7636)] = 353232, + [SMALL_STATE(7637)] = 353300, + [SMALL_STATE(7638)] = 353368, + [SMALL_STATE(7639)] = 353436, + [SMALL_STATE(7640)] = 353504, + [SMALL_STATE(7641)] = 353572, + [SMALL_STATE(7642)] = 353640, + [SMALL_STATE(7643)] = 353708, + [SMALL_STATE(7644)] = 353776, + [SMALL_STATE(7645)] = 353844, + [SMALL_STATE(7646)] = 353912, + [SMALL_STATE(7647)] = 353980, + [SMALL_STATE(7648)] = 354048, + [SMALL_STATE(7649)] = 354116, + [SMALL_STATE(7650)] = 354184, + [SMALL_STATE(7651)] = 354252, + [SMALL_STATE(7652)] = 354320, + [SMALL_STATE(7653)] = 354388, + [SMALL_STATE(7654)] = 354456, + [SMALL_STATE(7655)] = 354524, + [SMALL_STATE(7656)] = 354592, + [SMALL_STATE(7657)] = 354660, + [SMALL_STATE(7658)] = 354728, + [SMALL_STATE(7659)] = 354796, + [SMALL_STATE(7660)] = 354864, + [SMALL_STATE(7661)] = 354932, + [SMALL_STATE(7662)] = 355000, + [SMALL_STATE(7663)] = 355068, + [SMALL_STATE(7664)] = 355136, + [SMALL_STATE(7665)] = 355204, + [SMALL_STATE(7666)] = 355269, + [SMALL_STATE(7667)] = 355334, + [SMALL_STATE(7668)] = 355407, + [SMALL_STATE(7669)] = 355480, + [SMALL_STATE(7670)] = 355545, + [SMALL_STATE(7671)] = 355606, + [SMALL_STATE(7672)] = 355667, + [SMALL_STATE(7673)] = 355740, + [SMALL_STATE(7674)] = 355805, + [SMALL_STATE(7675)] = 355870, + [SMALL_STATE(7676)] = 355935, + [SMALL_STATE(7677)] = 356000, + [SMALL_STATE(7678)] = 356065, + [SMALL_STATE(7679)] = 356138, + [SMALL_STATE(7680)] = 356203, + [SMALL_STATE(7681)] = 356268, + [SMALL_STATE(7682)] = 356333, + [SMALL_STATE(7683)] = 356398, + [SMALL_STATE(7684)] = 356463, + [SMALL_STATE(7685)] = 356528, + [SMALL_STATE(7686)] = 356593, + [SMALL_STATE(7687)] = 356658, + [SMALL_STATE(7688)] = 356731, + [SMALL_STATE(7689)] = 356796, + [SMALL_STATE(7690)] = 356861, + [SMALL_STATE(7691)] = 356926, + [SMALL_STATE(7692)] = 356991, + [SMALL_STATE(7693)] = 357056, + [SMALL_STATE(7694)] = 357121, + [SMALL_STATE(7695)] = 357186, + [SMALL_STATE(7696)] = 357259, + [SMALL_STATE(7697)] = 357324, + [SMALL_STATE(7698)] = 357394, + [SMALL_STATE(7699)] = 357434, + [SMALL_STATE(7700)] = 357476, + [SMALL_STATE(7701)] = 357538, + [SMALL_STATE(7702)] = 357606, + [SMALL_STATE(7703)] = 357648, + [SMALL_STATE(7704)] = 357708, + [SMALL_STATE(7705)] = 357750, + [SMALL_STATE(7706)] = 357812, + [SMALL_STATE(7707)] = 357854, + [SMALL_STATE(7708)] = 357914, + [SMALL_STATE(7709)] = 357951, + [SMALL_STATE(7710)] = 358007, + [SMALL_STATE(7711)] = 358063, + [SMALL_STATE(7712)] = 358105, + [SMALL_STATE(7713)] = 358161, + [SMALL_STATE(7714)] = 358217, + [SMALL_STATE(7715)] = 358273, + [SMALL_STATE(7716)] = 358315, + [SMALL_STATE(7717)] = 358371, + [SMALL_STATE(7718)] = 358427, + [SMALL_STATE(7719)] = 358469, + [SMALL_STATE(7720)] = 358525, + [SMALL_STATE(7721)] = 358581, + [SMALL_STATE(7722)] = 358637, + [SMALL_STATE(7723)] = 358693, + [SMALL_STATE(7724)] = 358749, + [SMALL_STATE(7725)] = 358805, + [SMALL_STATE(7726)] = 358861, + [SMALL_STATE(7727)] = 358917, + [SMALL_STATE(7728)] = 358973, + [SMALL_STATE(7729)] = 359029, + [SMALL_STATE(7730)] = 359067, + [SMALL_STATE(7731)] = 359123, + [SMALL_STATE(7732)] = 359179, + [SMALL_STATE(7733)] = 359235, + [SMALL_STATE(7734)] = 359291, + [SMALL_STATE(7735)] = 359329, + [SMALL_STATE(7736)] = 359385, + [SMALL_STATE(7737)] = 359441, + [SMALL_STATE(7738)] = 359489, + [SMALL_STATE(7739)] = 359545, + [SMALL_STATE(7740)] = 359601, + [SMALL_STATE(7741)] = 359657, + [SMALL_STATE(7742)] = 359713, + [SMALL_STATE(7743)] = 359769, + [SMALL_STATE(7744)] = 359825, + [SMALL_STATE(7745)] = 359881, + [SMALL_STATE(7746)] = 359937, + [SMALL_STATE(7747)] = 359993, + [SMALL_STATE(7748)] = 360049, + [SMALL_STATE(7749)] = 360105, + [SMALL_STATE(7750)] = 360161, + [SMALL_STATE(7751)] = 360217, + [SMALL_STATE(7752)] = 360273, + [SMALL_STATE(7753)] = 360329, + [SMALL_STATE(7754)] = 360385, + [SMALL_STATE(7755)] = 360441, + [SMALL_STATE(7756)] = 360497, + [SMALL_STATE(7757)] = 360553, + [SMALL_STATE(7758)] = 360609, + [SMALL_STATE(7759)] = 360665, + [SMALL_STATE(7760)] = 360721, + [SMALL_STATE(7761)] = 360777, + [SMALL_STATE(7762)] = 360833, + [SMALL_STATE(7763)] = 360889, + [SMALL_STATE(7764)] = 360945, + [SMALL_STATE(7765)] = 361001, + [SMALL_STATE(7766)] = 361057, + [SMALL_STATE(7767)] = 361113, + [SMALL_STATE(7768)] = 361169, + [SMALL_STATE(7769)] = 361225, + [SMALL_STATE(7770)] = 361281, + [SMALL_STATE(7771)] = 361321, + [SMALL_STATE(7772)] = 361377, + [SMALL_STATE(7773)] = 361419, + [SMALL_STATE(7774)] = 361461, + [SMALL_STATE(7775)] = 361503, + [SMALL_STATE(7776)] = 361559, + [SMALL_STATE(7777)] = 361599, + [SMALL_STATE(7778)] = 361641, + [SMALL_STATE(7779)] = 361697, + [SMALL_STATE(7780)] = 361753, + [SMALL_STATE(7781)] = 361809, + [SMALL_STATE(7782)] = 361847, + [SMALL_STATE(7783)] = 361895, + [SMALL_STATE(7784)] = 361943, + [SMALL_STATE(7785)] = 361999, + [SMALL_STATE(7786)] = 362055, + [SMALL_STATE(7787)] = 362111, + [SMALL_STATE(7788)] = 362167, + [SMALL_STATE(7789)] = 362223, + [SMALL_STATE(7790)] = 362263, + [SMALL_STATE(7791)] = 362305, + [SMALL_STATE(7792)] = 362361, + [SMALL_STATE(7793)] = 362409, + [SMALL_STATE(7794)] = 362457, + [SMALL_STATE(7795)] = 362513, + [SMALL_STATE(7796)] = 362569, + [SMALL_STATE(7797)] = 362625, + [SMALL_STATE(7798)] = 362662, + [SMALL_STATE(7799)] = 362697, + [SMALL_STATE(7800)] = 362732, + [SMALL_STATE(7801)] = 362767, + [SMALL_STATE(7802)] = 362802, + [SMALL_STATE(7803)] = 362837, + [SMALL_STATE(7804)] = 362872, + [SMALL_STATE(7805)] = 362907, + [SMALL_STATE(7806)] = 362942, + [SMALL_STATE(7807)] = 362977, + [SMALL_STATE(7808)] = 363012, + [SMALL_STATE(7809)] = 363047, + [SMALL_STATE(7810)] = 363082, + [SMALL_STATE(7811)] = 363117, + [SMALL_STATE(7812)] = 363154, + [SMALL_STATE(7813)] = 363189, + [SMALL_STATE(7814)] = 363224, + [SMALL_STATE(7815)] = 363259, + [SMALL_STATE(7816)] = 363294, + [SMALL_STATE(7817)] = 363332, + [SMALL_STATE(7818)] = 363370, + [SMALL_STATE(7819)] = 363408, + [SMALL_STATE(7820)] = 363446, + [SMALL_STATE(7821)] = 363484, + [SMALL_STATE(7822)] = 363530, + [SMALL_STATE(7823)] = 363566, + [SMALL_STATE(7824)] = 363612, + [SMALL_STATE(7825)] = 363650, + [SMALL_STATE(7826)] = 363696, + [SMALL_STATE(7827)] = 363732, + [SMALL_STATE(7828)] = 363768, + [SMALL_STATE(7829)] = 363814, + [SMALL_STATE(7830)] = 363860, + [SMALL_STATE(7831)] = 363893, + [SMALL_STATE(7832)] = 363928, + [SMALL_STATE(7833)] = 363963, + [SMALL_STATE(7834)] = 363998, + [SMALL_STATE(7835)] = 364033, + [SMALL_STATE(7836)] = 364068, + [SMALL_STATE(7837)] = 364103, + [SMALL_STATE(7838)] = 364138, + [SMALL_STATE(7839)] = 364173, + [SMALL_STATE(7840)] = 364208, + [SMALL_STATE(7841)] = 364243, + [SMALL_STATE(7842)] = 364278, + [SMALL_STATE(7843)] = 364313, + [SMALL_STATE(7844)] = 364348, + [SMALL_STATE(7845)] = 364383, + [SMALL_STATE(7846)] = 364418, + [SMALL_STATE(7847)] = 364453, + [SMALL_STATE(7848)] = 364488, + [SMALL_STATE(7849)] = 364524, + [SMALL_STATE(7850)] = 364558, + [SMALL_STATE(7851)] = 364602, + [SMALL_STATE(7852)] = 364638, + [SMALL_STATE(7853)] = 364672, + [SMALL_STATE(7854)] = 364708, + [SMALL_STATE(7855)] = 364744, + [SMALL_STATE(7856)] = 364780, + [SMALL_STATE(7857)] = 364816, + [SMALL_STATE(7858)] = 364860, + [SMALL_STATE(7859)] = 364896, + [SMALL_STATE(7860)] = 364932, + [SMALL_STATE(7861)] = 364968, + [SMALL_STATE(7862)] = 365012, + [SMALL_STATE(7863)] = 365048, + [SMALL_STATE(7864)] = 365082, + [SMALL_STATE(7865)] = 365116, + [SMALL_STATE(7866)] = 365150, + [SMALL_STATE(7867)] = 365186, + [SMALL_STATE(7868)] = 365230, + [SMALL_STATE(7869)] = 365274, + [SMALL_STATE(7870)] = 365310, + [SMALL_STATE(7871)] = 365346, + [SMALL_STATE(7872)] = 365377, + [SMALL_STATE(7873)] = 365416, + [SMALL_STATE(7874)] = 365447, + [SMALL_STATE(7875)] = 365480, + [SMALL_STATE(7876)] = 365511, + [SMALL_STATE(7877)] = 365542, + [SMALL_STATE(7878)] = 365573, + [SMALL_STATE(7879)] = 365604, + [SMALL_STATE(7880)] = 365637, + [SMALL_STATE(7881)] = 365670, + [SMALL_STATE(7882)] = 365701, + [SMALL_STATE(7883)] = 365762, + [SMALL_STATE(7884)] = 365793, + [SMALL_STATE(7885)] = 365826, + [SMALL_STATE(7886)] = 365857, + [SMALL_STATE(7887)] = 365918, + [SMALL_STATE(7888)] = 365949, + [SMALL_STATE(7889)] = 365982, + [SMALL_STATE(7890)] = 366013, + [SMALL_STATE(7891)] = 366046, + [SMALL_STATE(7892)] = 366107, + [SMALL_STATE(7893)] = 366140, + [SMALL_STATE(7894)] = 366201, + [SMALL_STATE(7895)] = 366234, + [SMALL_STATE(7896)] = 366267, + [SMALL_STATE(7897)] = 366300, + [SMALL_STATE(7898)] = 366333, + [SMALL_STATE(7899)] = 366366, + [SMALL_STATE(7900)] = 366397, + [SMALL_STATE(7901)] = 366430, + [SMALL_STATE(7902)] = 366461, + [SMALL_STATE(7903)] = 366492, + [SMALL_STATE(7904)] = 366523, + [SMALL_STATE(7905)] = 366584, + [SMALL_STATE(7906)] = 366617, + [SMALL_STATE(7907)] = 366678, + [SMALL_STATE(7908)] = 366709, + [SMALL_STATE(7909)] = 366742, + [SMALL_STATE(7910)] = 366773, + [SMALL_STATE(7911)] = 366834, + [SMALL_STATE(7912)] = 366871, + [SMALL_STATE(7913)] = 366932, + [SMALL_STATE(7914)] = 366965, + [SMALL_STATE(7915)] = 366998, + [SMALL_STATE(7916)] = 367031, + [SMALL_STATE(7917)] = 367064, + [SMALL_STATE(7918)] = 367097, + [SMALL_STATE(7919)] = 367130, + [SMALL_STATE(7920)] = 367169, + [SMALL_STATE(7921)] = 367202, + [SMALL_STATE(7922)] = 367235, + [SMALL_STATE(7923)] = 367268, + [SMALL_STATE(7924)] = 367299, + [SMALL_STATE(7925)] = 367341, + [SMALL_STATE(7926)] = 367375, + [SMALL_STATE(7927)] = 367405, + [SMALL_STATE(7928)] = 367437, + [SMALL_STATE(7929)] = 367479, + [SMALL_STATE(7930)] = 367521, + [SMALL_STATE(7931)] = 367557, + [SMALL_STATE(7932)] = 367599, + [SMALL_STATE(7933)] = 367641, + [SMALL_STATE(7934)] = 367673, + [SMALL_STATE(7935)] = 367731, + [SMALL_STATE(7936)] = 367767, + [SMALL_STATE(7937)] = 367803, + [SMALL_STATE(7938)] = 367845, + [SMALL_STATE(7939)] = 367879, + [SMALL_STATE(7940)] = 367921, + [SMALL_STATE(7941)] = 367963, + [SMALL_STATE(7942)] = 367993, + [SMALL_STATE(7943)] = 368025, + [SMALL_STATE(7944)] = 368057, + [SMALL_STATE(7945)] = 368091, + [SMALL_STATE(7946)] = 368149, + [SMALL_STATE(7947)] = 368207, + [SMALL_STATE(7948)] = 368239, + [SMALL_STATE(7949)] = 368275, + [SMALL_STATE(7950)] = 368317, + [SMALL_STATE(7951)] = 368359, + [SMALL_STATE(7952)] = 368391, + [SMALL_STATE(7953)] = 368449, + [SMALL_STATE(7954)] = 368507, + [SMALL_STATE(7955)] = 368565, + [SMALL_STATE(7956)] = 368607, + [SMALL_STATE(7957)] = 368665, + [SMALL_STATE(7958)] = 368723, + [SMALL_STATE(7959)] = 368765, + [SMALL_STATE(7960)] = 368807, + [SMALL_STATE(7961)] = 368839, + [SMALL_STATE(7962)] = 368881, + [SMALL_STATE(7963)] = 368923, + [SMALL_STATE(7964)] = 368952, + [SMALL_STATE(7965)] = 368981, + [SMALL_STATE(7966)] = 369034, + [SMALL_STATE(7967)] = 369063, + [SMALL_STATE(7968)] = 369092, + [SMALL_STATE(7969)] = 369145, + [SMALL_STATE(7970)] = 369174, + [SMALL_STATE(7971)] = 369203, + [SMALL_STATE(7972)] = 369232, + [SMALL_STATE(7973)] = 369263, + [SMALL_STATE(7974)] = 369316, + [SMALL_STATE(7975)] = 369345, + [SMALL_STATE(7976)] = 369398, + [SMALL_STATE(7977)] = 369451, + [SMALL_STATE(7978)] = 369504, + [SMALL_STATE(7979)] = 369533, + [SMALL_STATE(7980)] = 369562, + [SMALL_STATE(7981)] = 369595, + [SMALL_STATE(7982)] = 369628, + [SMALL_STATE(7983)] = 369681, + [SMALL_STATE(7984)] = 369714, + [SMALL_STATE(7985)] = 369747, + [SMALL_STATE(7986)] = 369780, + [SMALL_STATE(7987)] = 369833, + [SMALL_STATE(7988)] = 369864, + [SMALL_STATE(7989)] = 369897, + [SMALL_STATE(7990)] = 369950, + [SMALL_STATE(7991)] = 369983, + [SMALL_STATE(7992)] = 370016, + [SMALL_STATE(7993)] = 370069, + [SMALL_STATE(7994)] = 370098, + [SMALL_STATE(7995)] = 370151, + [SMALL_STATE(7996)] = 370180, + [SMALL_STATE(7997)] = 370213, + [SMALL_STATE(7998)] = 370242, + [SMALL_STATE(7999)] = 370295, + [SMALL_STATE(8000)] = 370328, + [SMALL_STATE(8001)] = 370357, + [SMALL_STATE(8002)] = 370390, + [SMALL_STATE(8003)] = 370445, + [SMALL_STATE(8004)] = 370498, + [SMALL_STATE(8005)] = 370551, + [SMALL_STATE(8006)] = 370580, + [SMALL_STATE(8007)] = 370613, + [SMALL_STATE(8008)] = 370666, + [SMALL_STATE(8009)] = 370695, + [SMALL_STATE(8010)] = 370724, + [SMALL_STATE(8011)] = 370764, + [SMALL_STATE(8012)] = 370814, + [SMALL_STATE(8013)] = 370844, + [SMALL_STATE(8014)] = 370874, + [SMALL_STATE(8015)] = 370904, + [SMALL_STATE(8016)] = 370944, + [SMALL_STATE(8017)] = 370976, + [SMALL_STATE(8018)] = 371008, + [SMALL_STATE(8019)] = 371048, + [SMALL_STATE(8020)] = 371076, + [SMALL_STATE(8021)] = 371126, + [SMALL_STATE(8022)] = 371156, + [SMALL_STATE(8023)] = 371186, + [SMALL_STATE(8024)] = 371236, + [SMALL_STATE(8025)] = 371266, + [SMALL_STATE(8026)] = 371316, + [SMALL_STATE(8027)] = 371356, + [SMALL_STATE(8028)] = 371386, + [SMALL_STATE(8029)] = 371426, + [SMALL_STATE(8030)] = 371458, + [SMALL_STATE(8031)] = 371498, + [SMALL_STATE(8032)] = 371530, + [SMALL_STATE(8033)] = 371560, + [SMALL_STATE(8034)] = 371600, + [SMALL_STATE(8035)] = 371630, + [SMALL_STATE(8036)] = 371662, + [SMALL_STATE(8037)] = 371690, + [SMALL_STATE(8038)] = 371718, + [SMALL_STATE(8039)] = 371768, + [SMALL_STATE(8040)] = 371808, + [SMALL_STATE(8041)] = 371848, + [SMALL_STATE(8042)] = 371898, + [SMALL_STATE(8043)] = 371938, + [SMALL_STATE(8044)] = 371968, + [SMALL_STATE(8045)] = 372000, + [SMALL_STATE(8046)] = 372050, + [SMALL_STATE(8047)] = 372090, + [SMALL_STATE(8048)] = 372120, + [SMALL_STATE(8049)] = 372170, + [SMALL_STATE(8050)] = 372197, + [SMALL_STATE(8051)] = 372224, + [SMALL_STATE(8052)] = 372259, + [SMALL_STATE(8053)] = 372286, + [SMALL_STATE(8054)] = 372313, + [SMALL_STATE(8055)] = 372340, + [SMALL_STATE(8056)] = 372367, + [SMALL_STATE(8057)] = 372410, + [SMALL_STATE(8058)] = 372437, + [SMALL_STATE(8059)] = 372464, + [SMALL_STATE(8060)] = 372491, + [SMALL_STATE(8061)] = 372518, + [SMALL_STATE(8062)] = 372545, + [SMALL_STATE(8063)] = 372588, + [SMALL_STATE(8064)] = 372615, + [SMALL_STATE(8065)] = 372642, + [SMALL_STATE(8066)] = 372669, + [SMALL_STATE(8067)] = 372696, + [SMALL_STATE(8068)] = 372723, + [SMALL_STATE(8069)] = 372750, + [SMALL_STATE(8070)] = 372777, + [SMALL_STATE(8071)] = 372820, + [SMALL_STATE(8072)] = 372847, + [SMALL_STATE(8073)] = 372874, + [SMALL_STATE(8074)] = 372901, + [SMALL_STATE(8075)] = 372928, + [SMALL_STATE(8076)] = 372955, + [SMALL_STATE(8077)] = 372982, + [SMALL_STATE(8078)] = 373009, + [SMALL_STATE(8079)] = 373036, + [SMALL_STATE(8080)] = 373063, + [SMALL_STATE(8081)] = 373090, + [SMALL_STATE(8082)] = 373117, + [SMALL_STATE(8083)] = 373160, + [SMALL_STATE(8084)] = 373187, + [SMALL_STATE(8085)] = 373214, + [SMALL_STATE(8086)] = 373241, + [SMALL_STATE(8087)] = 373288, + [SMALL_STATE(8088)] = 373315, + [SMALL_STATE(8089)] = 373342, + [SMALL_STATE(8090)] = 373369, + [SMALL_STATE(8091)] = 373412, + [SMALL_STATE(8092)] = 373439, + [SMALL_STATE(8093)] = 373466, + [SMALL_STATE(8094)] = 373493, + [SMALL_STATE(8095)] = 373520, + [SMALL_STATE(8096)] = 373547, + [SMALL_STATE(8097)] = 373574, + [SMALL_STATE(8098)] = 373617, + [SMALL_STATE(8099)] = 373644, + [SMALL_STATE(8100)] = 373671, + [SMALL_STATE(8101)] = 373714, + [SMALL_STATE(8102)] = 373741, + [SMALL_STATE(8103)] = 373768, + [SMALL_STATE(8104)] = 373795, + [SMALL_STATE(8105)] = 373822, + [SMALL_STATE(8106)] = 373849, + [SMALL_STATE(8107)] = 373876, + [SMALL_STATE(8108)] = 373903, + [SMALL_STATE(8109)] = 373930, + [SMALL_STATE(8110)] = 373973, + [SMALL_STATE(8111)] = 374000, + [SMALL_STATE(8112)] = 374027, + [SMALL_STATE(8113)] = 374054, + [SMALL_STATE(8114)] = 374081, + [SMALL_STATE(8115)] = 374108, + [SMALL_STATE(8116)] = 374135, + [SMALL_STATE(8117)] = 374162, + [SMALL_STATE(8118)] = 374189, + [SMALL_STATE(8119)] = 374216, + [SMALL_STATE(8120)] = 374259, + [SMALL_STATE(8121)] = 374286, + [SMALL_STATE(8122)] = 374313, + [SMALL_STATE(8123)] = 374340, + [SMALL_STATE(8124)] = 374383, + [SMALL_STATE(8125)] = 374410, + [SMALL_STATE(8126)] = 374437, + [SMALL_STATE(8127)] = 374464, + [SMALL_STATE(8128)] = 374491, + [SMALL_STATE(8129)] = 374534, + [SMALL_STATE(8130)] = 374561, + [SMALL_STATE(8131)] = 374588, + [SMALL_STATE(8132)] = 374615, + [SMALL_STATE(8133)] = 374642, + [SMALL_STATE(8134)] = 374669, + [SMALL_STATE(8135)] = 374712, + [SMALL_STATE(8136)] = 374739, + [SMALL_STATE(8137)] = 374782, + [SMALL_STATE(8138)] = 374809, + [SMALL_STATE(8139)] = 374836, + [SMALL_STATE(8140)] = 374863, + [SMALL_STATE(8141)] = 374890, + [SMALL_STATE(8142)] = 374917, + [SMALL_STATE(8143)] = 374944, + [SMALL_STATE(8144)] = 374971, + [SMALL_STATE(8145)] = 375004, + [SMALL_STATE(8146)] = 375043, + [SMALL_STATE(8147)] = 375070, + [SMALL_STATE(8148)] = 375097, + [SMALL_STATE(8149)] = 375124, + [SMALL_STATE(8150)] = 375151, + [SMALL_STATE(8151)] = 375178, + [SMALL_STATE(8152)] = 375205, + [SMALL_STATE(8153)] = 375232, + [SMALL_STATE(8154)] = 375259, + [SMALL_STATE(8155)] = 375286, + [SMALL_STATE(8156)] = 375313, + [SMALL_STATE(8157)] = 375340, + [SMALL_STATE(8158)] = 375367, + [SMALL_STATE(8159)] = 375394, + [SMALL_STATE(8160)] = 375421, + [SMALL_STATE(8161)] = 375456, + [SMALL_STATE(8162)] = 375483, + [SMALL_STATE(8163)] = 375510, + [SMALL_STATE(8164)] = 375537, + [SMALL_STATE(8165)] = 375580, + [SMALL_STATE(8166)] = 375607, + [SMALL_STATE(8167)] = 375634, + [SMALL_STATE(8168)] = 375661, + [SMALL_STATE(8169)] = 375688, + [SMALL_STATE(8170)] = 375715, + [SMALL_STATE(8171)] = 375742, + [SMALL_STATE(8172)] = 375769, + [SMALL_STATE(8173)] = 375796, + [SMALL_STATE(8174)] = 375823, + [SMALL_STATE(8175)] = 375850, + [SMALL_STATE(8176)] = 375877, + [SMALL_STATE(8177)] = 375904, + [SMALL_STATE(8178)] = 375931, + [SMALL_STATE(8179)] = 375958, + [SMALL_STATE(8180)] = 376001, + [SMALL_STATE(8181)] = 376028, + [SMALL_STATE(8182)] = 376055, + [SMALL_STATE(8183)] = 376082, + [SMALL_STATE(8184)] = 376109, + [SMALL_STATE(8185)] = 376136, + [SMALL_STATE(8186)] = 376163, + [SMALL_STATE(8187)] = 376190, + [SMALL_STATE(8188)] = 376225, + [SMALL_STATE(8189)] = 376252, + [SMALL_STATE(8190)] = 376279, + [SMALL_STATE(8191)] = 376306, + [SMALL_STATE(8192)] = 376333, + [SMALL_STATE(8193)] = 376376, + [SMALL_STATE(8194)] = 376403, + [SMALL_STATE(8195)] = 376446, + [SMALL_STATE(8196)] = 376473, + [SMALL_STATE(8197)] = 376500, + [SMALL_STATE(8198)] = 376527, + [SMALL_STATE(8199)] = 376554, + [SMALL_STATE(8200)] = 376597, + [SMALL_STATE(8201)] = 376624, + [SMALL_STATE(8202)] = 376653, + [SMALL_STATE(8203)] = 376680, + [SMALL_STATE(8204)] = 376707, + [SMALL_STATE(8205)] = 376734, + [SMALL_STATE(8206)] = 376761, + [SMALL_STATE(8207)] = 376788, + [SMALL_STATE(8208)] = 376815, + [SMALL_STATE(8209)] = 376842, + [SMALL_STATE(8210)] = 376869, + [SMALL_STATE(8211)] = 376896, + [SMALL_STATE(8212)] = 376923, + [SMALL_STATE(8213)] = 376950, + [SMALL_STATE(8214)] = 376977, + [SMALL_STATE(8215)] = 377024, + [SMALL_STATE(8216)] = 377051, + [SMALL_STATE(8217)] = 377078, + [SMALL_STATE(8218)] = 377105, + [SMALL_STATE(8219)] = 377132, + [SMALL_STATE(8220)] = 377175, + [SMALL_STATE(8221)] = 377202, + [SMALL_STATE(8222)] = 377229, + [SMALL_STATE(8223)] = 377256, + [SMALL_STATE(8224)] = 377299, + [SMALL_STATE(8225)] = 377326, + [SMALL_STATE(8226)] = 377353, + [SMALL_STATE(8227)] = 377380, + [SMALL_STATE(8228)] = 377407, + [SMALL_STATE(8229)] = 377434, + [SMALL_STATE(8230)] = 377461, + [SMALL_STATE(8231)] = 377488, + [SMALL_STATE(8232)] = 377515, + [SMALL_STATE(8233)] = 377542, + [SMALL_STATE(8234)] = 377569, + [SMALL_STATE(8235)] = 377596, + [SMALL_STATE(8236)] = 377623, + [SMALL_STATE(8237)] = 377650, + [SMALL_STATE(8238)] = 377677, + [SMALL_STATE(8239)] = 377704, + [SMALL_STATE(8240)] = 377731, + [SMALL_STATE(8241)] = 377758, + [SMALL_STATE(8242)] = 377785, + [SMALL_STATE(8243)] = 377812, + [SMALL_STATE(8244)] = 377839, + [SMALL_STATE(8245)] = 377866, + [SMALL_STATE(8246)] = 377893, + [SMALL_STATE(8247)] = 377920, + [SMALL_STATE(8248)] = 377947, + [SMALL_STATE(8249)] = 377974, + [SMALL_STATE(8250)] = 378001, + [SMALL_STATE(8251)] = 378028, + [SMALL_STATE(8252)] = 378055, + [SMALL_STATE(8253)] = 378082, + [SMALL_STATE(8254)] = 378109, + [SMALL_STATE(8255)] = 378136, + [SMALL_STATE(8256)] = 378163, + [SMALL_STATE(8257)] = 378190, + [SMALL_STATE(8258)] = 378217, + [SMALL_STATE(8259)] = 378244, + [SMALL_STATE(8260)] = 378271, + [SMALL_STATE(8261)] = 378298, + [SMALL_STATE(8262)] = 378325, + [SMALL_STATE(8263)] = 378360, + [SMALL_STATE(8264)] = 378387, + [SMALL_STATE(8265)] = 378430, + [SMALL_STATE(8266)] = 378457, + [SMALL_STATE(8267)] = 378500, + [SMALL_STATE(8268)] = 378527, + [SMALL_STATE(8269)] = 378554, + [SMALL_STATE(8270)] = 378581, + [SMALL_STATE(8271)] = 378608, + [SMALL_STATE(8272)] = 378635, + [SMALL_STATE(8273)] = 378662, + [SMALL_STATE(8274)] = 378689, + [SMALL_STATE(8275)] = 378716, + [SMALL_STATE(8276)] = 378743, + [SMALL_STATE(8277)] = 378770, + [SMALL_STATE(8278)] = 378797, + [SMALL_STATE(8279)] = 378824, + [SMALL_STATE(8280)] = 378851, + [SMALL_STATE(8281)] = 378878, + [SMALL_STATE(8282)] = 378905, + [SMALL_STATE(8283)] = 378932, + [SMALL_STATE(8284)] = 378959, + [SMALL_STATE(8285)] = 378991, + [SMALL_STATE(8286)] = 379023, + [SMALL_STATE(8287)] = 379055, + [SMALL_STATE(8288)] = 379081, + [SMALL_STATE(8289)] = 379113, + [SMALL_STATE(8290)] = 379139, + [SMALL_STATE(8291)] = 379165, + [SMALL_STATE(8292)] = 379191, + [SMALL_STATE(8293)] = 379230, + [SMALL_STATE(8294)] = 379259, + [SMALL_STATE(8295)] = 379288, + [SMALL_STATE(8296)] = 379317, + [SMALL_STATE(8297)] = 379346, + [SMALL_STATE(8298)] = 379377, + [SMALL_STATE(8299)] = 379404, + [SMALL_STATE(8300)] = 379433, + [SMALL_STATE(8301)] = 379462, + [SMALL_STATE(8302)] = 379501, + [SMALL_STATE(8303)] = 379530, + [SMALL_STATE(8304)] = 379559, + [SMALL_STATE(8305)] = 379592, + [SMALL_STATE(8306)] = 379625, + [SMALL_STATE(8307)] = 379654, + [SMALL_STATE(8308)] = 379693, + [SMALL_STATE(8309)] = 379724, + [SMALL_STATE(8310)] = 379763, + [SMALL_STATE(8311)] = 379794, + [SMALL_STATE(8312)] = 379823, + [SMALL_STATE(8313)] = 379852, + [SMALL_STATE(8314)] = 379891, + [SMALL_STATE(8315)] = 379920, + [SMALL_STATE(8316)] = 379947, + [SMALL_STATE(8317)] = 379976, + [SMALL_STATE(8318)] = 380005, + [SMALL_STATE(8319)] = 380034, + [SMALL_STATE(8320)] = 380065, + [SMALL_STATE(8321)] = 380094, + [SMALL_STATE(8322)] = 380121, + [SMALL_STATE(8323)] = 380150, + [SMALL_STATE(8324)] = 380179, + [SMALL_STATE(8325)] = 380203, + [SMALL_STATE(8326)] = 380233, + [SMALL_STATE(8327)] = 380259, + [SMALL_STATE(8328)] = 380287, + [SMALL_STATE(8329)] = 380313, + [SMALL_STATE(8330)] = 380339, + [SMALL_STATE(8331)] = 380369, + [SMALL_STATE(8332)] = 380395, + [SMALL_STATE(8333)] = 380421, + [SMALL_STATE(8334)] = 380445, + [SMALL_STATE(8335)] = 380471, + [SMALL_STATE(8336)] = 380495, + [SMALL_STATE(8337)] = 380533, + [SMALL_STATE(8338)] = 380559, + [SMALL_STATE(8339)] = 380597, + [SMALL_STATE(8340)] = 380635, + [SMALL_STATE(8341)] = 380671, + [SMALL_STATE(8342)] = 380697, + [SMALL_STATE(8343)] = 380733, + [SMALL_STATE(8344)] = 380765, + [SMALL_STATE(8345)] = 380789, + [SMALL_STATE(8346)] = 380825, + [SMALL_STATE(8347)] = 380863, + [SMALL_STATE(8348)] = 380891, + [SMALL_STATE(8349)] = 380929, + [SMALL_STATE(8350)] = 380959, + [SMALL_STATE(8351)] = 380983, + [SMALL_STATE(8352)] = 381019, + [SMALL_STATE(8353)] = 381047, + [SMALL_STATE(8354)] = 381071, + [SMALL_STATE(8355)] = 381095, + [SMALL_STATE(8356)] = 381131, + [SMALL_STATE(8357)] = 381169, + [SMALL_STATE(8358)] = 381207, + [SMALL_STATE(8359)] = 381231, + [SMALL_STATE(8360)] = 381267, + [SMALL_STATE(8361)] = 381297, + [SMALL_STATE(8362)] = 381333, + [SMALL_STATE(8363)] = 381363, + [SMALL_STATE(8364)] = 381401, + [SMALL_STATE(8365)] = 381424, + [SMALL_STATE(8366)] = 381449, + [SMALL_STATE(8367)] = 381476, + [SMALL_STATE(8368)] = 381511, + [SMALL_STATE(8369)] = 381546, + [SMALL_STATE(8370)] = 381569, + [SMALL_STATE(8371)] = 381592, + [SMALL_STATE(8372)] = 381615, + [SMALL_STATE(8373)] = 381642, + [SMALL_STATE(8374)] = 381665, + [SMALL_STATE(8375)] = 381688, + [SMALL_STATE(8376)] = 381719, + [SMALL_STATE(8377)] = 381742, + [SMALL_STATE(8378)] = 381765, + [SMALL_STATE(8379)] = 381788, + [SMALL_STATE(8380)] = 381811, + [SMALL_STATE(8381)] = 381834, + [SMALL_STATE(8382)] = 381857, + [SMALL_STATE(8383)] = 381880, + [SMALL_STATE(8384)] = 381903, + [SMALL_STATE(8385)] = 381926, + [SMALL_STATE(8386)] = 381949, + [SMALL_STATE(8387)] = 381972, + [SMALL_STATE(8388)] = 381995, + [SMALL_STATE(8389)] = 382018, + [SMALL_STATE(8390)] = 382041, + [SMALL_STATE(8391)] = 382064, + [SMALL_STATE(8392)] = 382087, + [SMALL_STATE(8393)] = 382110, + [SMALL_STATE(8394)] = 382133, + [SMALL_STATE(8395)] = 382156, + [SMALL_STATE(8396)] = 382179, + [SMALL_STATE(8397)] = 382206, + [SMALL_STATE(8398)] = 382233, + [SMALL_STATE(8399)] = 382256, + [SMALL_STATE(8400)] = 382279, + [SMALL_STATE(8401)] = 382302, + [SMALL_STATE(8402)] = 382325, + [SMALL_STATE(8403)] = 382348, + [SMALL_STATE(8404)] = 382371, + [SMALL_STATE(8405)] = 382394, + [SMALL_STATE(8406)] = 382425, + [SMALL_STATE(8407)] = 382448, + [SMALL_STATE(8408)] = 382471, + [SMALL_STATE(8409)] = 382494, + [SMALL_STATE(8410)] = 382517, + [SMALL_STATE(8411)] = 382540, + [SMALL_STATE(8412)] = 382563, + [SMALL_STATE(8413)] = 382586, + [SMALL_STATE(8414)] = 382609, + [SMALL_STATE(8415)] = 382632, + [SMALL_STATE(8416)] = 382655, + [SMALL_STATE(8417)] = 382678, + [SMALL_STATE(8418)] = 382701, + [SMALL_STATE(8419)] = 382724, + [SMALL_STATE(8420)] = 382747, + [SMALL_STATE(8421)] = 382770, + [SMALL_STATE(8422)] = 382793, + [SMALL_STATE(8423)] = 382816, + [SMALL_STATE(8424)] = 382841, + [SMALL_STATE(8425)] = 382868, + [SMALL_STATE(8426)] = 382893, + [SMALL_STATE(8427)] = 382916, + [SMALL_STATE(8428)] = 382939, + [SMALL_STATE(8429)] = 382962, + [SMALL_STATE(8430)] = 382985, + [SMALL_STATE(8431)] = 383008, + [SMALL_STATE(8432)] = 383031, + [SMALL_STATE(8433)] = 383054, + [SMALL_STATE(8434)] = 383077, + [SMALL_STATE(8435)] = 383100, + [SMALL_STATE(8436)] = 383123, + [SMALL_STATE(8437)] = 383146, + [SMALL_STATE(8438)] = 383169, + [SMALL_STATE(8439)] = 383192, + [SMALL_STATE(8440)] = 383215, + [SMALL_STATE(8441)] = 383238, + [SMALL_STATE(8442)] = 383261, + [SMALL_STATE(8443)] = 383292, + [SMALL_STATE(8444)] = 383315, + [SMALL_STATE(8445)] = 383338, + [SMALL_STATE(8446)] = 383361, + [SMALL_STATE(8447)] = 383384, + [SMALL_STATE(8448)] = 383407, + [SMALL_STATE(8449)] = 383430, + [SMALL_STATE(8450)] = 383453, + [SMALL_STATE(8451)] = 383476, + [SMALL_STATE(8452)] = 383499, + [SMALL_STATE(8453)] = 383522, + [SMALL_STATE(8454)] = 383545, + [SMALL_STATE(8455)] = 383568, + [SMALL_STATE(8456)] = 383591, + [SMALL_STATE(8457)] = 383614, + [SMALL_STATE(8458)] = 383637, + [SMALL_STATE(8459)] = 383660, + [SMALL_STATE(8460)] = 383683, + [SMALL_STATE(8461)] = 383710, + [SMALL_STATE(8462)] = 383733, + [SMALL_STATE(8463)] = 383756, + [SMALL_STATE(8464)] = 383779, + [SMALL_STATE(8465)] = 383802, + [SMALL_STATE(8466)] = 383825, + [SMALL_STATE(8467)] = 383848, + [SMALL_STATE(8468)] = 383871, + [SMALL_STATE(8469)] = 383894, + [SMALL_STATE(8470)] = 383917, + [SMALL_STATE(8471)] = 383940, + [SMALL_STATE(8472)] = 383963, + [SMALL_STATE(8473)] = 383986, + [SMALL_STATE(8474)] = 384009, + [SMALL_STATE(8475)] = 384032, + [SMALL_STATE(8476)] = 384055, + [SMALL_STATE(8477)] = 384078, + [SMALL_STATE(8478)] = 384101, + [SMALL_STATE(8479)] = 384124, + [SMALL_STATE(8480)] = 384147, + [SMALL_STATE(8481)] = 384170, + [SMALL_STATE(8482)] = 384197, + [SMALL_STATE(8483)] = 384224, + [SMALL_STATE(8484)] = 384247, + [SMALL_STATE(8485)] = 384270, + [SMALL_STATE(8486)] = 384293, + [SMALL_STATE(8487)] = 384316, + [SMALL_STATE(8488)] = 384339, + [SMALL_STATE(8489)] = 384362, + [SMALL_STATE(8490)] = 384385, + [SMALL_STATE(8491)] = 384408, + [SMALL_STATE(8492)] = 384431, + [SMALL_STATE(8493)] = 384454, + [SMALL_STATE(8494)] = 384477, + [SMALL_STATE(8495)] = 384500, + [SMALL_STATE(8496)] = 384523, + [SMALL_STATE(8497)] = 384546, + [SMALL_STATE(8498)] = 384569, + [SMALL_STATE(8499)] = 384592, + [SMALL_STATE(8500)] = 384615, + [SMALL_STATE(8501)] = 384638, + [SMALL_STATE(8502)] = 384661, + [SMALL_STATE(8503)] = 384684, + [SMALL_STATE(8504)] = 384707, + [SMALL_STATE(8505)] = 384730, + [SMALL_STATE(8506)] = 384753, + [SMALL_STATE(8507)] = 384776, + [SMALL_STATE(8508)] = 384799, + [SMALL_STATE(8509)] = 384822, + [SMALL_STATE(8510)] = 384845, + [SMALL_STATE(8511)] = 384868, + [SMALL_STATE(8512)] = 384891, + [SMALL_STATE(8513)] = 384914, + [SMALL_STATE(8514)] = 384937, + [SMALL_STATE(8515)] = 384960, + [SMALL_STATE(8516)] = 384983, + [SMALL_STATE(8517)] = 385006, + [SMALL_STATE(8518)] = 385029, + [SMALL_STATE(8519)] = 385052, + [SMALL_STATE(8520)] = 385075, + [SMALL_STATE(8521)] = 385098, + [SMALL_STATE(8522)] = 385125, + [SMALL_STATE(8523)] = 385148, + [SMALL_STATE(8524)] = 385171, + [SMALL_STATE(8525)] = 385196, + [SMALL_STATE(8526)] = 385219, + [SMALL_STATE(8527)] = 385242, + [SMALL_STATE(8528)] = 385265, + [SMALL_STATE(8529)] = 385288, + [SMALL_STATE(8530)] = 385311, + [SMALL_STATE(8531)] = 385338, + [SMALL_STATE(8532)] = 385361, + [SMALL_STATE(8533)] = 385386, + [SMALL_STATE(8534)] = 385413, + [SMALL_STATE(8535)] = 385436, + [SMALL_STATE(8536)] = 385459, + [SMALL_STATE(8537)] = 385482, + [SMALL_STATE(8538)] = 385505, + [SMALL_STATE(8539)] = 385532, + [SMALL_STATE(8540)] = 385555, + [SMALL_STATE(8541)] = 385578, + [SMALL_STATE(8542)] = 385601, + [SMALL_STATE(8543)] = 385624, + [SMALL_STATE(8544)] = 385647, + [SMALL_STATE(8545)] = 385670, + [SMALL_STATE(8546)] = 385693, + [SMALL_STATE(8547)] = 385716, + [SMALL_STATE(8548)] = 385739, + [SMALL_STATE(8549)] = 385774, + [SMALL_STATE(8550)] = 385797, + [SMALL_STATE(8551)] = 385820, + [SMALL_STATE(8552)] = 385843, + [SMALL_STATE(8553)] = 385866, + [SMALL_STATE(8554)] = 385889, + [SMALL_STATE(8555)] = 385912, + [SMALL_STATE(8556)] = 385935, + [SMALL_STATE(8557)] = 385958, + [SMALL_STATE(8558)] = 385981, + [SMALL_STATE(8559)] = 386004, + [SMALL_STATE(8560)] = 386039, + [SMALL_STATE(8561)] = 386062, + [SMALL_STATE(8562)] = 386085, + [SMALL_STATE(8563)] = 386108, + [SMALL_STATE(8564)] = 386131, + [SMALL_STATE(8565)] = 386154, + [SMALL_STATE(8566)] = 386177, + [SMALL_STATE(8567)] = 386200, + [SMALL_STATE(8568)] = 386223, + [SMALL_STATE(8569)] = 386246, + [SMALL_STATE(8570)] = 386269, + [SMALL_STATE(8571)] = 386292, + [SMALL_STATE(8572)] = 386327, + [SMALL_STATE(8573)] = 386350, + [SMALL_STATE(8574)] = 386373, + [SMALL_STATE(8575)] = 386396, + [SMALL_STATE(8576)] = 386419, + [SMALL_STATE(8577)] = 386442, + [SMALL_STATE(8578)] = 386465, + [SMALL_STATE(8579)] = 386488, + [SMALL_STATE(8580)] = 386511, + [SMALL_STATE(8581)] = 386534, + [SMALL_STATE(8582)] = 386557, + [SMALL_STATE(8583)] = 386580, + [SMALL_STATE(8584)] = 386603, + [SMALL_STATE(8585)] = 386626, + [SMALL_STATE(8586)] = 386649, + [SMALL_STATE(8587)] = 386672, + [SMALL_STATE(8588)] = 386695, + [SMALL_STATE(8589)] = 386718, + [SMALL_STATE(8590)] = 386741, + [SMALL_STATE(8591)] = 386764, + [SMALL_STATE(8592)] = 386787, + [SMALL_STATE(8593)] = 386810, + [SMALL_STATE(8594)] = 386833, + [SMALL_STATE(8595)] = 386856, + [SMALL_STATE(8596)] = 386879, + [SMALL_STATE(8597)] = 386902, + [SMALL_STATE(8598)] = 386925, + [SMALL_STATE(8599)] = 386948, + [SMALL_STATE(8600)] = 386971, + [SMALL_STATE(8601)] = 386994, + [SMALL_STATE(8602)] = 387017, + [SMALL_STATE(8603)] = 387040, + [SMALL_STATE(8604)] = 387063, + [SMALL_STATE(8605)] = 387086, + [SMALL_STATE(8606)] = 387109, + [SMALL_STATE(8607)] = 387136, + [SMALL_STATE(8608)] = 387159, + [SMALL_STATE(8609)] = 387197, + [SMALL_STATE(8610)] = 387219, + [SMALL_STATE(8611)] = 387253, + [SMALL_STATE(8612)] = 387287, + [SMALL_STATE(8613)] = 387321, + [SMALL_STATE(8614)] = 387343, + [SMALL_STATE(8615)] = 387381, + [SMALL_STATE(8616)] = 387419, + [SMALL_STATE(8617)] = 387445, + [SMALL_STATE(8618)] = 387483, + [SMALL_STATE(8619)] = 387521, + [SMALL_STATE(8620)] = 387555, + [SMALL_STATE(8621)] = 387589, + [SMALL_STATE(8622)] = 387623, + [SMALL_STATE(8623)] = 387661, + [SMALL_STATE(8624)] = 387699, + [SMALL_STATE(8625)] = 387733, + [SMALL_STATE(8626)] = 387767, + [SMALL_STATE(8627)] = 387801, + [SMALL_STATE(8628)] = 387839, + [SMALL_STATE(8629)] = 387873, + [SMALL_STATE(8630)] = 387911, + [SMALL_STATE(8631)] = 387945, + [SMALL_STATE(8632)] = 387979, + [SMALL_STATE(8633)] = 388015, + [SMALL_STATE(8634)] = 388049, + [SMALL_STATE(8635)] = 388071, + [SMALL_STATE(8636)] = 388107, + [SMALL_STATE(8637)] = 388143, + [SMALL_STATE(8638)] = 388177, + [SMALL_STATE(8639)] = 388215, + [SMALL_STATE(8640)] = 388253, + [SMALL_STATE(8641)] = 388287, + [SMALL_STATE(8642)] = 388325, + [SMALL_STATE(8643)] = 388363, + [SMALL_STATE(8644)] = 388385, + [SMALL_STATE(8645)] = 388421, + [SMALL_STATE(8646)] = 388443, + [SMALL_STATE(8647)] = 388467, + [SMALL_STATE(8648)] = 388501, + [SMALL_STATE(8649)] = 388535, + [SMALL_STATE(8650)] = 388561, + [SMALL_STATE(8651)] = 388595, + [SMALL_STATE(8652)] = 388633, + [SMALL_STATE(8653)] = 388671, + [SMALL_STATE(8654)] = 388707, + [SMALL_STATE(8655)] = 388745, + [SMALL_STATE(8656)] = 388779, + [SMALL_STATE(8657)] = 388815, + [SMALL_STATE(8658)] = 388849, + [SMALL_STATE(8659)] = 388871, + [SMALL_STATE(8660)] = 388909, + [SMALL_STATE(8661)] = 388945, + [SMALL_STATE(8662)] = 388983, + [SMALL_STATE(8663)] = 389005, + [SMALL_STATE(8664)] = 389043, + [SMALL_STATE(8665)] = 389077, + [SMALL_STATE(8666)] = 389111, + [SMALL_STATE(8667)] = 389149, + [SMALL_STATE(8668)] = 389183, + [SMALL_STATE(8669)] = 389217, + [SMALL_STATE(8670)] = 389251, + [SMALL_STATE(8671)] = 389287, + [SMALL_STATE(8672)] = 389321, + [SMALL_STATE(8673)] = 389355, + [SMALL_STATE(8674)] = 389389, + [SMALL_STATE(8675)] = 389423, + [SMALL_STATE(8676)] = 389461, + [SMALL_STATE(8677)] = 389485, + [SMALL_STATE(8678)] = 389519, + [SMALL_STATE(8679)] = 389557, + [SMALL_STATE(8680)] = 389595, + [SMALL_STATE(8681)] = 389633, + [SMALL_STATE(8682)] = 389661, + [SMALL_STATE(8683)] = 389683, + [SMALL_STATE(8684)] = 389721, + [SMALL_STATE(8685)] = 389755, + [SMALL_STATE(8686)] = 389791, + [SMALL_STATE(8687)] = 389829, + [SMALL_STATE(8688)] = 389853, + [SMALL_STATE(8689)] = 389875, + [SMALL_STATE(8690)] = 389909, + [SMALL_STATE(8691)] = 389947, + [SMALL_STATE(8692)] = 389981, + [SMALL_STATE(8693)] = 390003, + [SMALL_STATE(8694)] = 390037, + [SMALL_STATE(8695)] = 390071, + [SMALL_STATE(8696)] = 390105, + [SMALL_STATE(8697)] = 390139, + [SMALL_STATE(8698)] = 390173, + [SMALL_STATE(8699)] = 390197, + [SMALL_STATE(8700)] = 390233, + [SMALL_STATE(8701)] = 390257, + [SMALL_STATE(8702)] = 390291, + [SMALL_STATE(8703)] = 390325, + [SMALL_STATE(8704)] = 390359, + [SMALL_STATE(8705)] = 390393, + [SMALL_STATE(8706)] = 390415, + [SMALL_STATE(8707)] = 390449, + [SMALL_STATE(8708)] = 390483, + [SMALL_STATE(8709)] = 390521, + [SMALL_STATE(8710)] = 390555, + [SMALL_STATE(8711)] = 390589, + [SMALL_STATE(8712)] = 390625, + [SMALL_STATE(8713)] = 390659, + [SMALL_STATE(8714)] = 390693, + [SMALL_STATE(8715)] = 390715, + [SMALL_STATE(8716)] = 390753, + [SMALL_STATE(8717)] = 390791, + [SMALL_STATE(8718)] = 390825, + [SMALL_STATE(8719)] = 390859, + [SMALL_STATE(8720)] = 390895, + [SMALL_STATE(8721)] = 390929, + [SMALL_STATE(8722)] = 390951, + [SMALL_STATE(8723)] = 390989, + [SMALL_STATE(8724)] = 391023, + [SMALL_STATE(8725)] = 391061, + [SMALL_STATE(8726)] = 391095, + [SMALL_STATE(8727)] = 391129, + [SMALL_STATE(8728)] = 391167, + [SMALL_STATE(8729)] = 391201, + [SMALL_STATE(8730)] = 391225, + [SMALL_STATE(8731)] = 391261, + [SMALL_STATE(8732)] = 391285, + [SMALL_STATE(8733)] = 391323, + [SMALL_STATE(8734)] = 391357, + [SMALL_STATE(8735)] = 391395, + [SMALL_STATE(8736)] = 391429, + [SMALL_STATE(8737)] = 391451, + [SMALL_STATE(8738)] = 391489, + [SMALL_STATE(8739)] = 391523, + [SMALL_STATE(8740)] = 391557, + [SMALL_STATE(8741)] = 391591, + [SMALL_STATE(8742)] = 391613, + [SMALL_STATE(8743)] = 391635, + [SMALL_STATE(8744)] = 391673, + [SMALL_STATE(8745)] = 391709, + [SMALL_STATE(8746)] = 391747, + [SMALL_STATE(8747)] = 391785, + [SMALL_STATE(8748)] = 391823, + [SMALL_STATE(8749)] = 391845, + [SMALL_STATE(8750)] = 391883, + [SMALL_STATE(8751)] = 391921, + [SMALL_STATE(8752)] = 391955, + [SMALL_STATE(8753)] = 391977, + [SMALL_STATE(8754)] = 392011, + [SMALL_STATE(8755)] = 392033, + [SMALL_STATE(8756)] = 392067, + [SMALL_STATE(8757)] = 392105, + [SMALL_STATE(8758)] = 392139, + [SMALL_STATE(8759)] = 392161, + [SMALL_STATE(8760)] = 392195, + [SMALL_STATE(8761)] = 392229, + [SMALL_STATE(8762)] = 392251, + [SMALL_STATE(8763)] = 392289, + [SMALL_STATE(8764)] = 392327, + [SMALL_STATE(8765)] = 392365, + [SMALL_STATE(8766)] = 392401, + [SMALL_STATE(8767)] = 392435, + [SMALL_STATE(8768)] = 392473, + [SMALL_STATE(8769)] = 392511, + [SMALL_STATE(8770)] = 392545, + [SMALL_STATE(8771)] = 392583, + [SMALL_STATE(8772)] = 392621, + [SMALL_STATE(8773)] = 392655, + [SMALL_STATE(8774)] = 392693, + [SMALL_STATE(8775)] = 392727, + [SMALL_STATE(8776)] = 392761, + [SMALL_STATE(8777)] = 392783, + [SMALL_STATE(8778)] = 392817, + [SMALL_STATE(8779)] = 392855, + [SMALL_STATE(8780)] = 392893, + [SMALL_STATE(8781)] = 392915, + [SMALL_STATE(8782)] = 392949, + [SMALL_STATE(8783)] = 392983, + [SMALL_STATE(8784)] = 393005, + [SMALL_STATE(8785)] = 393027, + [SMALL_STATE(8786)] = 393065, + [SMALL_STATE(8787)] = 393103, + [SMALL_STATE(8788)] = 393141, + [SMALL_STATE(8789)] = 393175, + [SMALL_STATE(8790)] = 393213, + [SMALL_STATE(8791)] = 393247, + [SMALL_STATE(8792)] = 393285, + [SMALL_STATE(8793)] = 393319, + [SMALL_STATE(8794)] = 393353, + [SMALL_STATE(8795)] = 393387, + [SMALL_STATE(8796)] = 393425, + [SMALL_STATE(8797)] = 393463, + [SMALL_STATE(8798)] = 393501, + [SMALL_STATE(8799)] = 393535, + [SMALL_STATE(8800)] = 393557, + [SMALL_STATE(8801)] = 393591, + [SMALL_STATE(8802)] = 393612, + [SMALL_STATE(8803)] = 393645, + [SMALL_STATE(8804)] = 393678, + [SMALL_STATE(8805)] = 393711, + [SMALL_STATE(8806)] = 393744, + [SMALL_STATE(8807)] = 393779, + [SMALL_STATE(8808)] = 393804, + [SMALL_STATE(8809)] = 393829, + [SMALL_STATE(8810)] = 393854, + [SMALL_STATE(8811)] = 393875, + [SMALL_STATE(8812)] = 393910, + [SMALL_STATE(8813)] = 393943, + [SMALL_STATE(8814)] = 393966, + [SMALL_STATE(8815)] = 393991, + [SMALL_STATE(8816)] = 394022, + [SMALL_STATE(8817)] = 394053, + [SMALL_STATE(8818)] = 394086, + [SMALL_STATE(8819)] = 394107, + [SMALL_STATE(8820)] = 394128, + [SMALL_STATE(8821)] = 394161, + [SMALL_STATE(8822)] = 394182, + [SMALL_STATE(8823)] = 394217, + [SMALL_STATE(8824)] = 394250, + [SMALL_STATE(8825)] = 394283, + [SMALL_STATE(8826)] = 394316, + [SMALL_STATE(8827)] = 394337, + [SMALL_STATE(8828)] = 394358, + [SMALL_STATE(8829)] = 394379, + [SMALL_STATE(8830)] = 394400, + [SMALL_STATE(8831)] = 394435, + [SMALL_STATE(8832)] = 394470, + [SMALL_STATE(8833)] = 394491, + [SMALL_STATE(8834)] = 394526, + [SMALL_STATE(8835)] = 394547, + [SMALL_STATE(8836)] = 394568, + [SMALL_STATE(8837)] = 394589, + [SMALL_STATE(8838)] = 394624, + [SMALL_STATE(8839)] = 394659, + [SMALL_STATE(8840)] = 394680, + [SMALL_STATE(8841)] = 394701, + [SMALL_STATE(8842)] = 394722, + [SMALL_STATE(8843)] = 394743, + [SMALL_STATE(8844)] = 394764, + [SMALL_STATE(8845)] = 394785, + [SMALL_STATE(8846)] = 394806, + [SMALL_STATE(8847)] = 394841, + [SMALL_STATE(8848)] = 394874, + [SMALL_STATE(8849)] = 394895, + [SMALL_STATE(8850)] = 394916, + [SMALL_STATE(8851)] = 394949, + [SMALL_STATE(8852)] = 394982, + [SMALL_STATE(8853)] = 395003, + [SMALL_STATE(8854)] = 395024, + [SMALL_STATE(8855)] = 395045, + [SMALL_STATE(8856)] = 395080, + [SMALL_STATE(8857)] = 395111, + [SMALL_STATE(8858)] = 395132, + [SMALL_STATE(8859)] = 395153, + [SMALL_STATE(8860)] = 395174, + [SMALL_STATE(8861)] = 395209, + [SMALL_STATE(8862)] = 395244, + [SMALL_STATE(8863)] = 395265, + [SMALL_STATE(8864)] = 395286, + [SMALL_STATE(8865)] = 395307, + [SMALL_STATE(8866)] = 395328, + [SMALL_STATE(8867)] = 395349, + [SMALL_STATE(8868)] = 395380, + [SMALL_STATE(8869)] = 395401, + [SMALL_STATE(8870)] = 395422, + [SMALL_STATE(8871)] = 395443, + [SMALL_STATE(8872)] = 395464, + [SMALL_STATE(8873)] = 395485, + [SMALL_STATE(8874)] = 395518, + [SMALL_STATE(8875)] = 395539, + [SMALL_STATE(8876)] = 395560, + [SMALL_STATE(8877)] = 395581, + [SMALL_STATE(8878)] = 395602, + [SMALL_STATE(8879)] = 395635, + [SMALL_STATE(8880)] = 395656, + [SMALL_STATE(8881)] = 395677, + [SMALL_STATE(8882)] = 395710, + [SMALL_STATE(8883)] = 395731, + [SMALL_STATE(8884)] = 395752, + [SMALL_STATE(8885)] = 395773, + [SMALL_STATE(8886)] = 395794, + [SMALL_STATE(8887)] = 395827, + [SMALL_STATE(8888)] = 395848, + [SMALL_STATE(8889)] = 395869, + [SMALL_STATE(8890)] = 395890, + [SMALL_STATE(8891)] = 395911, + [SMALL_STATE(8892)] = 395932, + [SMALL_STATE(8893)] = 395953, + [SMALL_STATE(8894)] = 395986, + [SMALL_STATE(8895)] = 396007, + [SMALL_STATE(8896)] = 396028, + [SMALL_STATE(8897)] = 396049, + [SMALL_STATE(8898)] = 396084, + [SMALL_STATE(8899)] = 396119, + [SMALL_STATE(8900)] = 396150, + [SMALL_STATE(8901)] = 396181, + [SMALL_STATE(8902)] = 396216, + [SMALL_STATE(8903)] = 396251, + [SMALL_STATE(8904)] = 396286, + [SMALL_STATE(8905)] = 396321, + [SMALL_STATE(8906)] = 396356, + [SMALL_STATE(8907)] = 396377, + [SMALL_STATE(8908)] = 396398, + [SMALL_STATE(8909)] = 396431, + [SMALL_STATE(8910)] = 396452, + [SMALL_STATE(8911)] = 396473, + [SMALL_STATE(8912)] = 396504, + [SMALL_STATE(8913)] = 396539, + [SMALL_STATE(8914)] = 396572, + [SMALL_STATE(8915)] = 396607, + [SMALL_STATE(8916)] = 396640, + [SMALL_STATE(8917)] = 396675, + [SMALL_STATE(8918)] = 396710, + [SMALL_STATE(8919)] = 396743, + [SMALL_STATE(8920)] = 396764, + [SMALL_STATE(8921)] = 396785, + [SMALL_STATE(8922)] = 396806, + [SMALL_STATE(8923)] = 396839, + [SMALL_STATE(8924)] = 396872, + [SMALL_STATE(8925)] = 396893, + [SMALL_STATE(8926)] = 396914, + [SMALL_STATE(8927)] = 396935, + [SMALL_STATE(8928)] = 396956, + [SMALL_STATE(8929)] = 396991, + [SMALL_STATE(8930)] = 397012, + [SMALL_STATE(8931)] = 397033, + [SMALL_STATE(8932)] = 397054, + [SMALL_STATE(8933)] = 397075, + [SMALL_STATE(8934)] = 397108, + [SMALL_STATE(8935)] = 397129, + [SMALL_STATE(8936)] = 397164, + [SMALL_STATE(8937)] = 397199, + [SMALL_STATE(8938)] = 397232, + [SMALL_STATE(8939)] = 397265, + [SMALL_STATE(8940)] = 397286, + [SMALL_STATE(8941)] = 397307, + [SMALL_STATE(8942)] = 397328, + [SMALL_STATE(8943)] = 397363, + [SMALL_STATE(8944)] = 397398, + [SMALL_STATE(8945)] = 397419, + [SMALL_STATE(8946)] = 397440, + [SMALL_STATE(8947)] = 397463, + [SMALL_STATE(8948)] = 397484, + [SMALL_STATE(8949)] = 397505, + [SMALL_STATE(8950)] = 397526, + [SMALL_STATE(8951)] = 397547, + [SMALL_STATE(8952)] = 397568, + [SMALL_STATE(8953)] = 397603, + [SMALL_STATE(8954)] = 397638, + [SMALL_STATE(8955)] = 397659, + [SMALL_STATE(8956)] = 397694, + [SMALL_STATE(8957)] = 397729, + [SMALL_STATE(8958)] = 397750, + [SMALL_STATE(8959)] = 397771, + [SMALL_STATE(8960)] = 397792, + [SMALL_STATE(8961)] = 397813, + [SMALL_STATE(8962)] = 397848, + [SMALL_STATE(8963)] = 397883, + [SMALL_STATE(8964)] = 397918, + [SMALL_STATE(8965)] = 397953, + [SMALL_STATE(8966)] = 397988, + [SMALL_STATE(8967)] = 398023, + [SMALL_STATE(8968)] = 398044, + [SMALL_STATE(8969)] = 398065, + [SMALL_STATE(8970)] = 398100, + [SMALL_STATE(8971)] = 398133, + [SMALL_STATE(8972)] = 398154, + [SMALL_STATE(8973)] = 398189, + [SMALL_STATE(8974)] = 398210, + [SMALL_STATE(8975)] = 398231, + [SMALL_STATE(8976)] = 398252, + [SMALL_STATE(8977)] = 398273, + [SMALL_STATE(8978)] = 398294, + [SMALL_STATE(8979)] = 398315, + [SMALL_STATE(8980)] = 398336, + [SMALL_STATE(8981)] = 398357, + [SMALL_STATE(8982)] = 398390, + [SMALL_STATE(8983)] = 398425, + [SMALL_STATE(8984)] = 398460, + [SMALL_STATE(8985)] = 398495, + [SMALL_STATE(8986)] = 398530, + [SMALL_STATE(8987)] = 398565, + [SMALL_STATE(8988)] = 398600, + [SMALL_STATE(8989)] = 398635, + [SMALL_STATE(8990)] = 398664, + [SMALL_STATE(8991)] = 398695, + [SMALL_STATE(8992)] = 398718, + [SMALL_STATE(8993)] = 398739, + [SMALL_STATE(8994)] = 398770, + [SMALL_STATE(8995)] = 398801, + [SMALL_STATE(8996)] = 398822, + [SMALL_STATE(8997)] = 398843, + [SMALL_STATE(8998)] = 398874, + [SMALL_STATE(8999)] = 398895, + [SMALL_STATE(9000)] = 398916, + [SMALL_STATE(9001)] = 398937, + [SMALL_STATE(9002)] = 398972, + [SMALL_STATE(9003)] = 399003, + [SMALL_STATE(9004)] = 399038, + [SMALL_STATE(9005)] = 399069, + [SMALL_STATE(9006)] = 399090, + [SMALL_STATE(9007)] = 399111, + [SMALL_STATE(9008)] = 399132, + [SMALL_STATE(9009)] = 399153, + [SMALL_STATE(9010)] = 399184, + [SMALL_STATE(9011)] = 399213, + [SMALL_STATE(9012)] = 399234, + [SMALL_STATE(9013)] = 399255, + [SMALL_STATE(9014)] = 399288, + [SMALL_STATE(9015)] = 399319, + [SMALL_STATE(9016)] = 399350, + [SMALL_STATE(9017)] = 399383, + [SMALL_STATE(9018)] = 399416, + [SMALL_STATE(9019)] = 399447, + [SMALL_STATE(9020)] = 399468, + [SMALL_STATE(9021)] = 399489, + [SMALL_STATE(9022)] = 399520, + [SMALL_STATE(9023)] = 399551, + [SMALL_STATE(9024)] = 399584, + [SMALL_STATE(9025)] = 399605, + [SMALL_STATE(9026)] = 399626, + [SMALL_STATE(9027)] = 399659, + [SMALL_STATE(9028)] = 399690, + [SMALL_STATE(9029)] = 399723, + [SMALL_STATE(9030)] = 399754, + [SMALL_STATE(9031)] = 399787, + [SMALL_STATE(9032)] = 399818, + [SMALL_STATE(9033)] = 399839, + [SMALL_STATE(9034)] = 399860, + [SMALL_STATE(9035)] = 399889, + [SMALL_STATE(9036)] = 399920, + [SMALL_STATE(9037)] = 399941, + [SMALL_STATE(9038)] = 399962, + [SMALL_STATE(9039)] = 399983, + [SMALL_STATE(9040)] = 400004, + [SMALL_STATE(9041)] = 400025, + [SMALL_STATE(9042)] = 400046, + [SMALL_STATE(9043)] = 400067, + [SMALL_STATE(9044)] = 400088, + [SMALL_STATE(9045)] = 400109, + [SMALL_STATE(9046)] = 400140, + [SMALL_STATE(9047)] = 400173, + [SMALL_STATE(9048)] = 400194, + [SMALL_STATE(9049)] = 400215, + [SMALL_STATE(9050)] = 400248, + [SMALL_STATE(9051)] = 400279, + [SMALL_STATE(9052)] = 400300, + [SMALL_STATE(9053)] = 400321, + [SMALL_STATE(9054)] = 400342, + [SMALL_STATE(9055)] = 400363, + [SMALL_STATE(9056)] = 400384, + [SMALL_STATE(9057)] = 400415, + [SMALL_STATE(9058)] = 400436, + [SMALL_STATE(9059)] = 400457, + [SMALL_STATE(9060)] = 400478, + [SMALL_STATE(9061)] = 400499, + [SMALL_STATE(9062)] = 400520, + [SMALL_STATE(9063)] = 400541, + [SMALL_STATE(9064)] = 400562, + [SMALL_STATE(9065)] = 400593, + [SMALL_STATE(9066)] = 400626, + [SMALL_STATE(9067)] = 400647, + [SMALL_STATE(9068)] = 400668, + [SMALL_STATE(9069)] = 400689, + [SMALL_STATE(9070)] = 400710, + [SMALL_STATE(9071)] = 400741, + [SMALL_STATE(9072)] = 400762, + [SMALL_STATE(9073)] = 400783, + [SMALL_STATE(9074)] = 400804, + [SMALL_STATE(9075)] = 400825, + [SMALL_STATE(9076)] = 400846, + [SMALL_STATE(9077)] = 400867, + [SMALL_STATE(9078)] = 400888, + [SMALL_STATE(9079)] = 400909, + [SMALL_STATE(9080)] = 400930, + [SMALL_STATE(9081)] = 400963, + [SMALL_STATE(9082)] = 400994, + [SMALL_STATE(9083)] = 401015, + [SMALL_STATE(9084)] = 401048, + [SMALL_STATE(9085)] = 401069, + [SMALL_STATE(9086)] = 401100, + [SMALL_STATE(9087)] = 401121, + [SMALL_STATE(9088)] = 401152, + [SMALL_STATE(9089)] = 401187, + [SMALL_STATE(9090)] = 401208, + [SMALL_STATE(9091)] = 401229, + [SMALL_STATE(9092)] = 401250, + [SMALL_STATE(9093)] = 401271, + [SMALL_STATE(9094)] = 401302, + [SMALL_STATE(9095)] = 401335, + [SMALL_STATE(9096)] = 401356, + [SMALL_STATE(9097)] = 401389, + [SMALL_STATE(9098)] = 401420, + [SMALL_STATE(9099)] = 401455, + [SMALL_STATE(9100)] = 401476, + [SMALL_STATE(9101)] = 401497, + [SMALL_STATE(9102)] = 401518, + [SMALL_STATE(9103)] = 401549, + [SMALL_STATE(9104)] = 401584, + [SMALL_STATE(9105)] = 401617, + [SMALL_STATE(9106)] = 401650, + [SMALL_STATE(9107)] = 401681, + [SMALL_STATE(9108)] = 401702, + [SMALL_STATE(9109)] = 401723, + [SMALL_STATE(9110)] = 401754, + [SMALL_STATE(9111)] = 401787, + [SMALL_STATE(9112)] = 401808, + [SMALL_STATE(9113)] = 401829, + [SMALL_STATE(9114)] = 401860, + [SMALL_STATE(9115)] = 401881, + [SMALL_STATE(9116)] = 401902, + [SMALL_STATE(9117)] = 401933, + [SMALL_STATE(9118)] = 401964, + [SMALL_STATE(9119)] = 401999, + [SMALL_STATE(9120)] = 402030, + [SMALL_STATE(9121)] = 402065, + [SMALL_STATE(9122)] = 402086, + [SMALL_STATE(9123)] = 402107, + [SMALL_STATE(9124)] = 402128, + [SMALL_STATE(9125)] = 402159, + [SMALL_STATE(9126)] = 402180, + [SMALL_STATE(9127)] = 402213, + [SMALL_STATE(9128)] = 402234, + [SMALL_STATE(9129)] = 402255, + [SMALL_STATE(9130)] = 402276, + [SMALL_STATE(9131)] = 402309, + [SMALL_STATE(9132)] = 402330, + [SMALL_STATE(9133)] = 402351, + [SMALL_STATE(9134)] = 402372, + [SMALL_STATE(9135)] = 402407, + [SMALL_STATE(9136)] = 402442, + [SMALL_STATE(9137)] = 402463, + [SMALL_STATE(9138)] = 402498, + [SMALL_STATE(9139)] = 402533, + [SMALL_STATE(9140)] = 402554, + [SMALL_STATE(9141)] = 402589, + [SMALL_STATE(9142)] = 402624, + [SMALL_STATE(9143)] = 402659, + [SMALL_STATE(9144)] = 402692, + [SMALL_STATE(9145)] = 402713, + [SMALL_STATE(9146)] = 402748, + [SMALL_STATE(9147)] = 402781, + [SMALL_STATE(9148)] = 402816, + [SMALL_STATE(9149)] = 402837, + [SMALL_STATE(9150)] = 402872, + [SMALL_STATE(9151)] = 402907, + [SMALL_STATE(9152)] = 402936, + [SMALL_STATE(9153)] = 402971, + [SMALL_STATE(9154)] = 403006, + [SMALL_STATE(9155)] = 403041, + [SMALL_STATE(9156)] = 403076, + [SMALL_STATE(9157)] = 403111, + [SMALL_STATE(9158)] = 403132, + [SMALL_STATE(9159)] = 403167, + [SMALL_STATE(9160)] = 403188, + [SMALL_STATE(9161)] = 403223, + [SMALL_STATE(9162)] = 403258, + [SMALL_STATE(9163)] = 403291, + [SMALL_STATE(9164)] = 403312, + [SMALL_STATE(9165)] = 403333, + [SMALL_STATE(9166)] = 403354, + [SMALL_STATE(9167)] = 403375, + [SMALL_STATE(9168)] = 403408, + [SMALL_STATE(9169)] = 403441, + [SMALL_STATE(9170)] = 403462, + [SMALL_STATE(9171)] = 403483, + [SMALL_STATE(9172)] = 403508, + [SMALL_STATE(9173)] = 403529, + [SMALL_STATE(9174)] = 403550, + [SMALL_STATE(9175)] = 403571, + [SMALL_STATE(9176)] = 403592, + [SMALL_STATE(9177)] = 403625, + [SMALL_STATE(9178)] = 403646, + [SMALL_STATE(9179)] = 403667, + [SMALL_STATE(9180)] = 403688, + [SMALL_STATE(9181)] = 403721, + [SMALL_STATE(9182)] = 403742, + [SMALL_STATE(9183)] = 403763, + [SMALL_STATE(9184)] = 403796, + [SMALL_STATE(9185)] = 403817, + [SMALL_STATE(9186)] = 403838, + [SMALL_STATE(9187)] = 403859, + [SMALL_STATE(9188)] = 403880, + [SMALL_STATE(9189)] = 403901, + [SMALL_STATE(9190)] = 403922, + [SMALL_STATE(9191)] = 403955, + [SMALL_STATE(9192)] = 403983, + [SMALL_STATE(9193)] = 404013, + [SMALL_STATE(9194)] = 404043, + [SMALL_STATE(9195)] = 404073, + [SMALL_STATE(9196)] = 404105, + [SMALL_STATE(9197)] = 404135, + [SMALL_STATE(9198)] = 404165, + [SMALL_STATE(9199)] = 404197, + [SMALL_STATE(9200)] = 404229, + [SMALL_STATE(9201)] = 404261, + [SMALL_STATE(9202)] = 404291, + [SMALL_STATE(9203)] = 404323, + [SMALL_STATE(9204)] = 404353, + [SMALL_STATE(9205)] = 404383, + [SMALL_STATE(9206)] = 404415, + [SMALL_STATE(9207)] = 404447, + [SMALL_STATE(9208)] = 404477, + [SMALL_STATE(9209)] = 404505, + [SMALL_STATE(9210)] = 404537, + [SMALL_STATE(9211)] = 404567, + [SMALL_STATE(9212)] = 404597, + [SMALL_STATE(9213)] = 404627, + [SMALL_STATE(9214)] = 404659, + [SMALL_STATE(9215)] = 404679, + [SMALL_STATE(9216)] = 404709, + [SMALL_STATE(9217)] = 404739, + [SMALL_STATE(9218)] = 404759, + [SMALL_STATE(9219)] = 404789, + [SMALL_STATE(9220)] = 404819, + [SMALL_STATE(9221)] = 404839, + [SMALL_STATE(9222)] = 404869, + [SMALL_STATE(9223)] = 404901, + [SMALL_STATE(9224)] = 404921, + [SMALL_STATE(9225)] = 404941, + [SMALL_STATE(9226)] = 404971, + [SMALL_STATE(9227)] = 405001, + [SMALL_STATE(9228)] = 405021, + [SMALL_STATE(9229)] = 405041, + [SMALL_STATE(9230)] = 405061, + [SMALL_STATE(9231)] = 405091, + [SMALL_STATE(9232)] = 405123, + [SMALL_STATE(9233)] = 405153, + [SMALL_STATE(9234)] = 405173, + [SMALL_STATE(9235)] = 405203, + [SMALL_STATE(9236)] = 405223, + [SMALL_STATE(9237)] = 405255, + [SMALL_STATE(9238)] = 405285, + [SMALL_STATE(9239)] = 405305, + [SMALL_STATE(9240)] = 405335, + [SMALL_STATE(9241)] = 405365, + [SMALL_STATE(9242)] = 405395, + [SMALL_STATE(9243)] = 405427, + [SMALL_STATE(9244)] = 405457, + [SMALL_STATE(9245)] = 405487, + [SMALL_STATE(9246)] = 405517, + [SMALL_STATE(9247)] = 405547, + [SMALL_STATE(9248)] = 405579, + [SMALL_STATE(9249)] = 405609, + [SMALL_STATE(9250)] = 405639, + [SMALL_STATE(9251)] = 405669, + [SMALL_STATE(9252)] = 405701, + [SMALL_STATE(9253)] = 405733, + [SMALL_STATE(9254)] = 405765, + [SMALL_STATE(9255)] = 405795, + [SMALL_STATE(9256)] = 405825, + [SMALL_STATE(9257)] = 405855, + [SMALL_STATE(9258)] = 405887, + [SMALL_STATE(9259)] = 405915, + [SMALL_STATE(9260)] = 405945, + [SMALL_STATE(9261)] = 405973, + [SMALL_STATE(9262)] = 406003, + [SMALL_STATE(9263)] = 406035, + [SMALL_STATE(9264)] = 406065, + [SMALL_STATE(9265)] = 406095, + [SMALL_STATE(9266)] = 406125, + [SMALL_STATE(9267)] = 406155, + [SMALL_STATE(9268)] = 406175, + [SMALL_STATE(9269)] = 406205, + [SMALL_STATE(9270)] = 406237, + [SMALL_STATE(9271)] = 406267, + [SMALL_STATE(9272)] = 406297, + [SMALL_STATE(9273)] = 406329, + [SMALL_STATE(9274)] = 406359, + [SMALL_STATE(9275)] = 406389, + [SMALL_STATE(9276)] = 406419, + [SMALL_STATE(9277)] = 406439, + [SMALL_STATE(9278)] = 406471, + [SMALL_STATE(9279)] = 406503, + [SMALL_STATE(9280)] = 406533, + [SMALL_STATE(9281)] = 406563, + [SMALL_STATE(9282)] = 406595, + [SMALL_STATE(9283)] = 406625, + [SMALL_STATE(9284)] = 406655, + [SMALL_STATE(9285)] = 406685, + [SMALL_STATE(9286)] = 406717, + [SMALL_STATE(9287)] = 406745, + [SMALL_STATE(9288)] = 406769, + [SMALL_STATE(9289)] = 406801, + [SMALL_STATE(9290)] = 406833, + [SMALL_STATE(9291)] = 406853, + [SMALL_STATE(9292)] = 406883, + [SMALL_STATE(9293)] = 406913, + [SMALL_STATE(9294)] = 406937, + [SMALL_STATE(9295)] = 406959, + [SMALL_STATE(9296)] = 406991, + [SMALL_STATE(9297)] = 407023, + [SMALL_STATE(9298)] = 407055, + [SMALL_STATE(9299)] = 407083, + [SMALL_STATE(9300)] = 407113, + [SMALL_STATE(9301)] = 407143, + [SMALL_STATE(9302)] = 407173, + [SMALL_STATE(9303)] = 407205, + [SMALL_STATE(9304)] = 407225, + [SMALL_STATE(9305)] = 407247, + [SMALL_STATE(9306)] = 407277, + [SMALL_STATE(9307)] = 407307, + [SMALL_STATE(9308)] = 407337, + [SMALL_STATE(9309)] = 407367, + [SMALL_STATE(9310)] = 407397, + [SMALL_STATE(9311)] = 407429, + [SMALL_STATE(9312)] = 407461, + [SMALL_STATE(9313)] = 407491, + [SMALL_STATE(9314)] = 407521, + [SMALL_STATE(9315)] = 407545, + [SMALL_STATE(9316)] = 407575, + [SMALL_STATE(9317)] = 407605, + [SMALL_STATE(9318)] = 407635, + [SMALL_STATE(9319)] = 407665, + [SMALL_STATE(9320)] = 407695, + [SMALL_STATE(9321)] = 407727, + [SMALL_STATE(9322)] = 407759, + [SMALL_STATE(9323)] = 407779, + [SMALL_STATE(9324)] = 407811, + [SMALL_STATE(9325)] = 407841, + [SMALL_STATE(9326)] = 407863, + [SMALL_STATE(9327)] = 407893, + [SMALL_STATE(9328)] = 407923, + [SMALL_STATE(9329)] = 407949, + [SMALL_STATE(9330)] = 407979, + [SMALL_STATE(9331)] = 408009, + [SMALL_STATE(9332)] = 408039, + [SMALL_STATE(9333)] = 408069, + [SMALL_STATE(9334)] = 408101, + [SMALL_STATE(9335)] = 408133, + [SMALL_STATE(9336)] = 408163, + [SMALL_STATE(9337)] = 408189, + [SMALL_STATE(9338)] = 408219, + [SMALL_STATE(9339)] = 408249, + [SMALL_STATE(9340)] = 408279, + [SMALL_STATE(9341)] = 408309, + [SMALL_STATE(9342)] = 408341, + [SMALL_STATE(9343)] = 408371, + [SMALL_STATE(9344)] = 408403, + [SMALL_STATE(9345)] = 408433, + [SMALL_STATE(9346)] = 408463, + [SMALL_STATE(9347)] = 408493, + [SMALL_STATE(9348)] = 408523, + [SMALL_STATE(9349)] = 408555, + [SMALL_STATE(9350)] = 408587, + [SMALL_STATE(9351)] = 408617, + [SMALL_STATE(9352)] = 408647, + [SMALL_STATE(9353)] = 408679, + [SMALL_STATE(9354)] = 408707, + [SMALL_STATE(9355)] = 408735, + [SMALL_STATE(9356)] = 408765, + [SMALL_STATE(9357)] = 408785, + [SMALL_STATE(9358)] = 408805, + [SMALL_STATE(9359)] = 408837, + [SMALL_STATE(9360)] = 408867, + [SMALL_STATE(9361)] = 408897, + [SMALL_STATE(9362)] = 408927, + [SMALL_STATE(9363)] = 408957, + [SMALL_STATE(9364)] = 408989, + [SMALL_STATE(9365)] = 409019, + [SMALL_STATE(9366)] = 409051, + [SMALL_STATE(9367)] = 409081, + [SMALL_STATE(9368)] = 409113, + [SMALL_STATE(9369)] = 409133, + [SMALL_STATE(9370)] = 409157, + [SMALL_STATE(9371)] = 409187, + [SMALL_STATE(9372)] = 409217, + [SMALL_STATE(9373)] = 409247, + [SMALL_STATE(9374)] = 409279, + [SMALL_STATE(9375)] = 409309, + [SMALL_STATE(9376)] = 409337, + [SMALL_STATE(9377)] = 409367, + [SMALL_STATE(9378)] = 409397, + [SMALL_STATE(9379)] = 409427, + [SMALL_STATE(9380)] = 409459, + [SMALL_STATE(9381)] = 409479, + [SMALL_STATE(9382)] = 409499, + [SMALL_STATE(9383)] = 409519, + [SMALL_STATE(9384)] = 409539, + [SMALL_STATE(9385)] = 409559, + [SMALL_STATE(9386)] = 409589, + [SMALL_STATE(9387)] = 409619, + [SMALL_STATE(9388)] = 409651, + [SMALL_STATE(9389)] = 409679, + [SMALL_STATE(9390)] = 409711, + [SMALL_STATE(9391)] = 409741, + [SMALL_STATE(9392)] = 409773, + [SMALL_STATE(9393)] = 409793, + [SMALL_STATE(9394)] = 409821, + [SMALL_STATE(9395)] = 409849, + [SMALL_STATE(9396)] = 409869, + [SMALL_STATE(9397)] = 409897, + [SMALL_STATE(9398)] = 409925, + [SMALL_STATE(9399)] = 409945, + [SMALL_STATE(9400)] = 409973, + [SMALL_STATE(9401)] = 410001, + [SMALL_STATE(9402)] = 410031, + [SMALL_STATE(9403)] = 410059, + [SMALL_STATE(9404)] = 410087, + [SMALL_STATE(9405)] = 410119, + [SMALL_STATE(9406)] = 410147, + [SMALL_STATE(9407)] = 410175, + [SMALL_STATE(9408)] = 410195, + [SMALL_STATE(9409)] = 410223, + [SMALL_STATE(9410)] = 410251, + [SMALL_STATE(9411)] = 410271, + [SMALL_STATE(9412)] = 410299, + [SMALL_STATE(9413)] = 410327, + [SMALL_STATE(9414)] = 410355, + [SMALL_STATE(9415)] = 410383, + [SMALL_STATE(9416)] = 410415, + [SMALL_STATE(9417)] = 410445, + [SMALL_STATE(9418)] = 410473, + [SMALL_STATE(9419)] = 410501, + [SMALL_STATE(9420)] = 410531, + [SMALL_STATE(9421)] = 410561, + [SMALL_STATE(9422)] = 410591, + [SMALL_STATE(9423)] = 410623, + [SMALL_STATE(9424)] = 410653, + [SMALL_STATE(9425)] = 410681, + [SMALL_STATE(9426)] = 410711, + [SMALL_STATE(9427)] = 410743, + [SMALL_STATE(9428)] = 410773, + [SMALL_STATE(9429)] = 410801, + [SMALL_STATE(9430)] = 410829, + [SMALL_STATE(9431)] = 410857, + [SMALL_STATE(9432)] = 410885, + [SMALL_STATE(9433)] = 410913, + [SMALL_STATE(9434)] = 410945, + [SMALL_STATE(9435)] = 410973, + [SMALL_STATE(9436)] = 411001, + [SMALL_STATE(9437)] = 411031, + [SMALL_STATE(9438)] = 411059, + [SMALL_STATE(9439)] = 411087, + [SMALL_STATE(9440)] = 411117, + [SMALL_STATE(9441)] = 411139, + [SMALL_STATE(9442)] = 411171, + [SMALL_STATE(9443)] = 411191, + [SMALL_STATE(9444)] = 411221, + [SMALL_STATE(9445)] = 411253, + [SMALL_STATE(9446)] = 411283, + [SMALL_STATE(9447)] = 411315, + [SMALL_STATE(9448)] = 411335, + [SMALL_STATE(9449)] = 411361, + [SMALL_STATE(9450)] = 411380, + [SMALL_STATE(9451)] = 411401, + [SMALL_STATE(9452)] = 411430, + [SMALL_STATE(9453)] = 411459, + [SMALL_STATE(9454)] = 411488, + [SMALL_STATE(9455)] = 411507, + [SMALL_STATE(9456)] = 411534, + [SMALL_STATE(9457)] = 411563, + [SMALL_STATE(9458)] = 411592, + [SMALL_STATE(9459)] = 411621, + [SMALL_STATE(9460)] = 411650, + [SMALL_STATE(9461)] = 411679, + [SMALL_STATE(9462)] = 411698, + [SMALL_STATE(9463)] = 411725, + [SMALL_STATE(9464)] = 411748, + [SMALL_STATE(9465)] = 411767, + [SMALL_STATE(9466)] = 411796, + [SMALL_STATE(9467)] = 411815, + [SMALL_STATE(9468)] = 411842, + [SMALL_STATE(9469)] = 411871, + [SMALL_STATE(9470)] = 411900, + [SMALL_STATE(9471)] = 411929, + [SMALL_STATE(9472)] = 411958, + [SMALL_STATE(9473)] = 411987, + [SMALL_STATE(9474)] = 412006, + [SMALL_STATE(9475)] = 412033, + [SMALL_STATE(9476)] = 412062, + [SMALL_STATE(9477)] = 412081, + [SMALL_STATE(9478)] = 412110, + [SMALL_STATE(9479)] = 412129, + [SMALL_STATE(9480)] = 412158, + [SMALL_STATE(9481)] = 412185, + [SMALL_STATE(9482)] = 412204, + [SMALL_STATE(9483)] = 412233, + [SMALL_STATE(9484)] = 412262, + [SMALL_STATE(9485)] = 412291, + [SMALL_STATE(9486)] = 412320, + [SMALL_STATE(9487)] = 412347, + [SMALL_STATE(9488)] = 412376, + [SMALL_STATE(9489)] = 412405, + [SMALL_STATE(9490)] = 412434, + [SMALL_STATE(9491)] = 412463, + [SMALL_STATE(9492)] = 412482, + [SMALL_STATE(9493)] = 412511, + [SMALL_STATE(9494)] = 412540, + [SMALL_STATE(9495)] = 412567, + [SMALL_STATE(9496)] = 412590, + [SMALL_STATE(9497)] = 412615, + [SMALL_STATE(9498)] = 412642, + [SMALL_STATE(9499)] = 412671, + [SMALL_STATE(9500)] = 412690, + [SMALL_STATE(9501)] = 412717, + [SMALL_STATE(9502)] = 412736, + [SMALL_STATE(9503)] = 412765, + [SMALL_STATE(9504)] = 412794, + [SMALL_STATE(9505)] = 412819, + [SMALL_STATE(9506)] = 412838, + [SMALL_STATE(9507)] = 412857, + [SMALL_STATE(9508)] = 412876, + [SMALL_STATE(9509)] = 412903, + [SMALL_STATE(9510)] = 412922, + [SMALL_STATE(9511)] = 412941, + [SMALL_STATE(9512)] = 412964, + [SMALL_STATE(9513)] = 412983, + [SMALL_STATE(9514)] = 413012, + [SMALL_STATE(9515)] = 413041, + [SMALL_STATE(9516)] = 413070, + [SMALL_STATE(9517)] = 413089, + [SMALL_STATE(9518)] = 413118, + [SMALL_STATE(9519)] = 413143, + [SMALL_STATE(9520)] = 413168, + [SMALL_STATE(9521)] = 413197, + [SMALL_STATE(9522)] = 413226, + [SMALL_STATE(9523)] = 413255, + [SMALL_STATE(9524)] = 413284, + [SMALL_STATE(9525)] = 413313, + [SMALL_STATE(9526)] = 413332, + [SMALL_STATE(9527)] = 413351, + [SMALL_STATE(9528)] = 413380, + [SMALL_STATE(9529)] = 413399, + [SMALL_STATE(9530)] = 413426, + [SMALL_STATE(9531)] = 413455, + [SMALL_STATE(9532)] = 413484, + [SMALL_STATE(9533)] = 413513, + [SMALL_STATE(9534)] = 413542, + [SMALL_STATE(9535)] = 413571, + [SMALL_STATE(9536)] = 413590, + [SMALL_STATE(9537)] = 413619, + [SMALL_STATE(9538)] = 413648, + [SMALL_STATE(9539)] = 413667, + [SMALL_STATE(9540)] = 413696, + [SMALL_STATE(9541)] = 413725, + [SMALL_STATE(9542)] = 413754, + [SMALL_STATE(9543)] = 413783, + [SMALL_STATE(9544)] = 413802, + [SMALL_STATE(9545)] = 413821, + [SMALL_STATE(9546)] = 413848, + [SMALL_STATE(9547)] = 413877, + [SMALL_STATE(9548)] = 413904, + [SMALL_STATE(9549)] = 413923, + [SMALL_STATE(9550)] = 413950, + [SMALL_STATE(9551)] = 413973, + [SMALL_STATE(9552)] = 414002, + [SMALL_STATE(9553)] = 414031, + [SMALL_STATE(9554)] = 414060, + [SMALL_STATE(9555)] = 414089, + [SMALL_STATE(9556)] = 414108, + [SMALL_STATE(9557)] = 414131, + [SMALL_STATE(9558)] = 414150, + [SMALL_STATE(9559)] = 414169, + [SMALL_STATE(9560)] = 414188, + [SMALL_STATE(9561)] = 414217, + [SMALL_STATE(9562)] = 414241, + [SMALL_STATE(9563)] = 414265, + [SMALL_STATE(9564)] = 414289, + [SMALL_STATE(9565)] = 414309, + [SMALL_STATE(9566)] = 414333, + [SMALL_STATE(9567)] = 414357, + [SMALL_STATE(9568)] = 414381, + [SMALL_STATE(9569)] = 414403, + [SMALL_STATE(9570)] = 414425, + [SMALL_STATE(9571)] = 414447, + [SMALL_STATE(9572)] = 414469, + [SMALL_STATE(9573)] = 414495, + [SMALL_STATE(9574)] = 414519, + [SMALL_STATE(9575)] = 414543, + [SMALL_STATE(9576)] = 414561, + [SMALL_STATE(9577)] = 414585, + [SMALL_STATE(9578)] = 414609, + [SMALL_STATE(9579)] = 414631, + [SMALL_STATE(9580)] = 414655, + [SMALL_STATE(9581)] = 414679, + [SMALL_STATE(9582)] = 414703, + [SMALL_STATE(9583)] = 414727, + [SMALL_STATE(9584)] = 414751, + [SMALL_STATE(9585)] = 414769, + [SMALL_STATE(9586)] = 414791, + [SMALL_STATE(9587)] = 414811, + [SMALL_STATE(9588)] = 414835, + [SMALL_STATE(9589)] = 414859, + [SMALL_STATE(9590)] = 414883, + [SMALL_STATE(9591)] = 414907, + [SMALL_STATE(9592)] = 414931, + [SMALL_STATE(9593)] = 414955, + [SMALL_STATE(9594)] = 414979, + [SMALL_STATE(9595)] = 415003, + [SMALL_STATE(9596)] = 415027, + [SMALL_STATE(9597)] = 415049, + [SMALL_STATE(9598)] = 415069, + [SMALL_STATE(9599)] = 415089, + [SMALL_STATE(9600)] = 415113, + [SMALL_STATE(9601)] = 415137, + [SMALL_STATE(9602)] = 415161, + [SMALL_STATE(9603)] = 415185, + [SMALL_STATE(9604)] = 415209, + [SMALL_STATE(9605)] = 415229, + [SMALL_STATE(9606)] = 415253, + [SMALL_STATE(9607)] = 415277, + [SMALL_STATE(9608)] = 415301, + [SMALL_STATE(9609)] = 415325, + [SMALL_STATE(9610)] = 415347, + [SMALL_STATE(9611)] = 415367, + [SMALL_STATE(9612)] = 415393, + [SMALL_STATE(9613)] = 415417, + [SMALL_STATE(9614)] = 415443, + [SMALL_STATE(9615)] = 415469, + [SMALL_STATE(9616)] = 415493, + [SMALL_STATE(9617)] = 415517, + [SMALL_STATE(9618)] = 415543, + [SMALL_STATE(9619)] = 415567, + [SMALL_STATE(9620)] = 415591, + [SMALL_STATE(9621)] = 415613, + [SMALL_STATE(9622)] = 415637, + [SMALL_STATE(9623)] = 415661, + [SMALL_STATE(9624)] = 415685, + [SMALL_STATE(9625)] = 415709, + [SMALL_STATE(9626)] = 415733, + [SMALL_STATE(9627)] = 415757, + [SMALL_STATE(9628)] = 415781, + [SMALL_STATE(9629)] = 415805, + [SMALL_STATE(9630)] = 415829, + [SMALL_STATE(9631)] = 415849, + [SMALL_STATE(9632)] = 415873, + [SMALL_STATE(9633)] = 415897, + [SMALL_STATE(9634)] = 415921, + [SMALL_STATE(9635)] = 415945, + [SMALL_STATE(9636)] = 415969, + [SMALL_STATE(9637)] = 415993, + [SMALL_STATE(9638)] = 416015, + [SMALL_STATE(9639)] = 416041, + [SMALL_STATE(9640)] = 416065, + [SMALL_STATE(9641)] = 416089, + [SMALL_STATE(9642)] = 416113, + [SMALL_STATE(9643)] = 416137, + [SMALL_STATE(9644)] = 416161, + [SMALL_STATE(9645)] = 416185, + [SMALL_STATE(9646)] = 416209, + [SMALL_STATE(9647)] = 416229, + [SMALL_STATE(9648)] = 416253, + [SMALL_STATE(9649)] = 416277, + [SMALL_STATE(9650)] = 416299, + [SMALL_STATE(9651)] = 416323, + [SMALL_STATE(9652)] = 416347, + [SMALL_STATE(9653)] = 416369, + [SMALL_STATE(9654)] = 416395, + [SMALL_STATE(9655)] = 416419, + [SMALL_STATE(9656)] = 416437, + [SMALL_STATE(9657)] = 416459, + [SMALL_STATE(9658)] = 416483, + [SMALL_STATE(9659)] = 416509, + [SMALL_STATE(9660)] = 416535, + [SMALL_STATE(9661)] = 416559, + [SMALL_STATE(9662)] = 416583, + [SMALL_STATE(9663)] = 416607, + [SMALL_STATE(9664)] = 416631, + [SMALL_STATE(9665)] = 416655, + [SMALL_STATE(9666)] = 416675, + [SMALL_STATE(9667)] = 416697, + [SMALL_STATE(9668)] = 416723, + [SMALL_STATE(9669)] = 416747, + [SMALL_STATE(9670)] = 416771, + [SMALL_STATE(9671)] = 416791, + [SMALL_STATE(9672)] = 416813, + [SMALL_STATE(9673)] = 416837, + [SMALL_STATE(9674)] = 416863, + [SMALL_STATE(9675)] = 416887, + [SMALL_STATE(9676)] = 416911, + [SMALL_STATE(9677)] = 416935, + [SMALL_STATE(9678)] = 416959, + [SMALL_STATE(9679)] = 416983, + [SMALL_STATE(9680)] = 417007, + [SMALL_STATE(9681)] = 417029, + [SMALL_STATE(9682)] = 417053, + [SMALL_STATE(9683)] = 417077, + [SMALL_STATE(9684)] = 417095, + [SMALL_STATE(9685)] = 417115, + [SMALL_STATE(9686)] = 417139, + [SMALL_STATE(9687)] = 417163, + [SMALL_STATE(9688)] = 417187, + [SMALL_STATE(9689)] = 417211, + [SMALL_STATE(9690)] = 417235, + [SMALL_STATE(9691)] = 417259, + [SMALL_STATE(9692)] = 417283, + [SMALL_STATE(9693)] = 417305, + [SMALL_STATE(9694)] = 417329, + [SMALL_STATE(9695)] = 417353, + [SMALL_STATE(9696)] = 417375, + [SMALL_STATE(9697)] = 417399, + [SMALL_STATE(9698)] = 417423, + [SMALL_STATE(9699)] = 417445, + [SMALL_STATE(9700)] = 417467, + [SMALL_STATE(9701)] = 417491, + [SMALL_STATE(9702)] = 417515, + [SMALL_STATE(9703)] = 417539, + [SMALL_STATE(9704)] = 417562, + [SMALL_STATE(9705)] = 417583, + [SMALL_STATE(9706)] = 417604, + [SMALL_STATE(9707)] = 417625, + [SMALL_STATE(9708)] = 417648, + [SMALL_STATE(9709)] = 417671, + [SMALL_STATE(9710)] = 417692, + [SMALL_STATE(9711)] = 417715, + [SMALL_STATE(9712)] = 417738, + [SMALL_STATE(9713)] = 417759, + [SMALL_STATE(9714)] = 417780, + [SMALL_STATE(9715)] = 417801, + [SMALL_STATE(9716)] = 417822, + [SMALL_STATE(9717)] = 417843, + [SMALL_STATE(9718)] = 417866, + [SMALL_STATE(9719)] = 417889, + [SMALL_STATE(9720)] = 417910, + [SMALL_STATE(9721)] = 417931, + [SMALL_STATE(9722)] = 417954, + [SMALL_STATE(9723)] = 417977, + [SMALL_STATE(9724)] = 418000, + [SMALL_STATE(9725)] = 418023, + [SMALL_STATE(9726)] = 418046, + [SMALL_STATE(9727)] = 418067, + [SMALL_STATE(9728)] = 418090, + [SMALL_STATE(9729)] = 418113, + [SMALL_STATE(9730)] = 418134, + [SMALL_STATE(9731)] = 418157, + [SMALL_STATE(9732)] = 418178, + [SMALL_STATE(9733)] = 418199, + [SMALL_STATE(9734)] = 418220, + [SMALL_STATE(9735)] = 418239, + [SMALL_STATE(9736)] = 418262, + [SMALL_STATE(9737)] = 418279, + [SMALL_STATE(9738)] = 418300, + [SMALL_STATE(9739)] = 418323, + [SMALL_STATE(9740)] = 418344, + [SMALL_STATE(9741)] = 418367, + [SMALL_STATE(9742)] = 418390, + [SMALL_STATE(9743)] = 418413, + [SMALL_STATE(9744)] = 418436, + [SMALL_STATE(9745)] = 418457, + [SMALL_STATE(9746)] = 418478, + [SMALL_STATE(9747)] = 418497, + [SMALL_STATE(9748)] = 418520, + [SMALL_STATE(9749)] = 418543, + [SMALL_STATE(9750)] = 418564, + [SMALL_STATE(9751)] = 418587, + [SMALL_STATE(9752)] = 418610, + [SMALL_STATE(9753)] = 418631, + [SMALL_STATE(9754)] = 418654, + [SMALL_STATE(9755)] = 418673, + [SMALL_STATE(9756)] = 418696, + [SMALL_STATE(9757)] = 418713, + [SMALL_STATE(9758)] = 418736, + [SMALL_STATE(9759)] = 418757, + [SMALL_STATE(9760)] = 418780, + [SMALL_STATE(9761)] = 418801, + [SMALL_STATE(9762)] = 418822, + [SMALL_STATE(9763)] = 418843, + [SMALL_STATE(9764)] = 418864, + [SMALL_STATE(9765)] = 418883, + [SMALL_STATE(9766)] = 418904, + [SMALL_STATE(9767)] = 418921, + [SMALL_STATE(9768)] = 418942, + [SMALL_STATE(9769)] = 418963, + [SMALL_STATE(9770)] = 418984, + [SMALL_STATE(9771)] = 419007, + [SMALL_STATE(9772)] = 419024, + [SMALL_STATE(9773)] = 419047, + [SMALL_STATE(9774)] = 419066, + [SMALL_STATE(9775)] = 419089, + [SMALL_STATE(9776)] = 419110, + [SMALL_STATE(9777)] = 419131, + [SMALL_STATE(9778)] = 419152, + [SMALL_STATE(9779)] = 419173, + [SMALL_STATE(9780)] = 419194, + [SMALL_STATE(9781)] = 419215, + [SMALL_STATE(9782)] = 419236, + [SMALL_STATE(9783)] = 419257, + [SMALL_STATE(9784)] = 419274, + [SMALL_STATE(9785)] = 419295, + [SMALL_STATE(9786)] = 419316, + [SMALL_STATE(9787)] = 419333, + [SMALL_STATE(9788)] = 419354, + [SMALL_STATE(9789)] = 419375, + [SMALL_STATE(9790)] = 419396, + [SMALL_STATE(9791)] = 419417, + [SMALL_STATE(9792)] = 419438, + [SMALL_STATE(9793)] = 419459, + [SMALL_STATE(9794)] = 419480, + [SMALL_STATE(9795)] = 419501, + [SMALL_STATE(9796)] = 419522, + [SMALL_STATE(9797)] = 419543, + [SMALL_STATE(9798)] = 419564, + [SMALL_STATE(9799)] = 419585, + [SMALL_STATE(9800)] = 419606, + [SMALL_STATE(9801)] = 419629, + [SMALL_STATE(9802)] = 419652, + [SMALL_STATE(9803)] = 419675, + [SMALL_STATE(9804)] = 419698, + [SMALL_STATE(9805)] = 419721, + [SMALL_STATE(9806)] = 419744, + [SMALL_STATE(9807)] = 419767, + [SMALL_STATE(9808)] = 419790, + [SMALL_STATE(9809)] = 419811, + [SMALL_STATE(9810)] = 419834, + [SMALL_STATE(9811)] = 419851, + [SMALL_STATE(9812)] = 419874, + [SMALL_STATE(9813)] = 419897, + [SMALL_STATE(9814)] = 419920, + [SMALL_STATE(9815)] = 419943, + [SMALL_STATE(9816)] = 419966, + [SMALL_STATE(9817)] = 419989, + [SMALL_STATE(9818)] = 420012, + [SMALL_STATE(9819)] = 420033, + [SMALL_STATE(9820)] = 420054, + [SMALL_STATE(9821)] = 420077, + [SMALL_STATE(9822)] = 420100, + [SMALL_STATE(9823)] = 420123, + [SMALL_STATE(9824)] = 420146, + [SMALL_STATE(9825)] = 420169, + [SMALL_STATE(9826)] = 420192, + [SMALL_STATE(9827)] = 420215, + [SMALL_STATE(9828)] = 420238, + [SMALL_STATE(9829)] = 420261, + [SMALL_STATE(9830)] = 420284, + [SMALL_STATE(9831)] = 420307, + [SMALL_STATE(9832)] = 420330, + [SMALL_STATE(9833)] = 420353, + [SMALL_STATE(9834)] = 420376, + [SMALL_STATE(9835)] = 420399, + [SMALL_STATE(9836)] = 420422, + [SMALL_STATE(9837)] = 420445, + [SMALL_STATE(9838)] = 420468, + [SMALL_STATE(9839)] = 420491, + [SMALL_STATE(9840)] = 420512, + [SMALL_STATE(9841)] = 420535, + [SMALL_STATE(9842)] = 420558, + [SMALL_STATE(9843)] = 420579, + [SMALL_STATE(9844)] = 420602, + [SMALL_STATE(9845)] = 420625, + [SMALL_STATE(9846)] = 420648, + [SMALL_STATE(9847)] = 420665, + [SMALL_STATE(9848)] = 420688, + [SMALL_STATE(9849)] = 420711, + [SMALL_STATE(9850)] = 420734, + [SMALL_STATE(9851)] = 420755, + [SMALL_STATE(9852)] = 420778, + [SMALL_STATE(9853)] = 420801, + [SMALL_STATE(9854)] = 420822, + [SMALL_STATE(9855)] = 420845, + [SMALL_STATE(9856)] = 420868, + [SMALL_STATE(9857)] = 420885, + [SMALL_STATE(9858)] = 420908, + [SMALL_STATE(9859)] = 420925, + [SMALL_STATE(9860)] = 420942, + [SMALL_STATE(9861)] = 420963, + [SMALL_STATE(9862)] = 420984, + [SMALL_STATE(9863)] = 421007, + [SMALL_STATE(9864)] = 421028, + [SMALL_STATE(9865)] = 421047, + [SMALL_STATE(9866)] = 421068, + [SMALL_STATE(9867)] = 421089, + [SMALL_STATE(9868)] = 421106, + [SMALL_STATE(9869)] = 421123, + [SMALL_STATE(9870)] = 421146, + [SMALL_STATE(9871)] = 421169, + [SMALL_STATE(9872)] = 421192, + [SMALL_STATE(9873)] = 421215, + [SMALL_STATE(9874)] = 421238, + [SMALL_STATE(9875)] = 421259, + [SMALL_STATE(9876)] = 421282, + [SMALL_STATE(9877)] = 421305, + [SMALL_STATE(9878)] = 421328, + [SMALL_STATE(9879)] = 421349, + [SMALL_STATE(9880)] = 421372, + [SMALL_STATE(9881)] = 421395, + [SMALL_STATE(9882)] = 421418, + [SMALL_STATE(9883)] = 421441, + [SMALL_STATE(9884)] = 421464, + [SMALL_STATE(9885)] = 421487, + [SMALL_STATE(9886)] = 421510, + [SMALL_STATE(9887)] = 421533, + [SMALL_STATE(9888)] = 421556, + [SMALL_STATE(9889)] = 421577, + [SMALL_STATE(9890)] = 421600, + [SMALL_STATE(9891)] = 421623, + [SMALL_STATE(9892)] = 421646, + [SMALL_STATE(9893)] = 421669, + [SMALL_STATE(9894)] = 421692, + [SMALL_STATE(9895)] = 421715, + [SMALL_STATE(9896)] = 421736, + [SMALL_STATE(9897)] = 421757, + [SMALL_STATE(9898)] = 421776, + [SMALL_STATE(9899)] = 421793, + [SMALL_STATE(9900)] = 421814, + [SMALL_STATE(9901)] = 421837, + [SMALL_STATE(9902)] = 421854, + [SMALL_STATE(9903)] = 421877, + [SMALL_STATE(9904)] = 421900, + [SMALL_STATE(9905)] = 421921, + [SMALL_STATE(9906)] = 421944, + [SMALL_STATE(9907)] = 421967, + [SMALL_STATE(9908)] = 421990, + [SMALL_STATE(9909)] = 422013, + [SMALL_STATE(9910)] = 422036, + [SMALL_STATE(9911)] = 422055, + [SMALL_STATE(9912)] = 422076, + [SMALL_STATE(9913)] = 422099, + [SMALL_STATE(9914)] = 422122, + [SMALL_STATE(9915)] = 422145, + [SMALL_STATE(9916)] = 422168, + [SMALL_STATE(9917)] = 422191, + [SMALL_STATE(9918)] = 422210, + [SMALL_STATE(9919)] = 422227, + [SMALL_STATE(9920)] = 422250, + [SMALL_STATE(9921)] = 422271, + [SMALL_STATE(9922)] = 422288, + [SMALL_STATE(9923)] = 422309, + [SMALL_STATE(9924)] = 422332, + [SMALL_STATE(9925)] = 422353, + [SMALL_STATE(9926)] = 422370, + [SMALL_STATE(9927)] = 422387, + [SMALL_STATE(9928)] = 422410, + [SMALL_STATE(9929)] = 422433, + [SMALL_STATE(9930)] = 422456, + [SMALL_STATE(9931)] = 422473, + [SMALL_STATE(9932)] = 422496, + [SMALL_STATE(9933)] = 422519, + [SMALL_STATE(9934)] = 422540, + [SMALL_STATE(9935)] = 422559, + [SMALL_STATE(9936)] = 422576, + [SMALL_STATE(9937)] = 422599, + [SMALL_STATE(9938)] = 422622, + [SMALL_STATE(9939)] = 422645, + [SMALL_STATE(9940)] = 422666, + [SMALL_STATE(9941)] = 422687, + [SMALL_STATE(9942)] = 422708, + [SMALL_STATE(9943)] = 422727, + [SMALL_STATE(9944)] = 422746, + [SMALL_STATE(9945)] = 422769, + [SMALL_STATE(9946)] = 422792, + [SMALL_STATE(9947)] = 422815, + [SMALL_STATE(9948)] = 422838, + [SMALL_STATE(9949)] = 422859, + [SMALL_STATE(9950)] = 422882, + [SMALL_STATE(9951)] = 422901, + [SMALL_STATE(9952)] = 422924, + [SMALL_STATE(9953)] = 422947, + [SMALL_STATE(9954)] = 422970, + [SMALL_STATE(9955)] = 422991, + [SMALL_STATE(9956)] = 423014, + [SMALL_STATE(9957)] = 423033, + [SMALL_STATE(9958)] = 423056, + [SMALL_STATE(9959)] = 423073, + [SMALL_STATE(9960)] = 423096, + [SMALL_STATE(9961)] = 423119, + [SMALL_STATE(9962)] = 423140, + [SMALL_STATE(9963)] = 423163, + [SMALL_STATE(9964)] = 423184, + [SMALL_STATE(9965)] = 423207, + [SMALL_STATE(9966)] = 423230, + [SMALL_STATE(9967)] = 423253, + [SMALL_STATE(9968)] = 423276, + [SMALL_STATE(9969)] = 423299, + [SMALL_STATE(9970)] = 423322, + [SMALL_STATE(9971)] = 423345, + [SMALL_STATE(9972)] = 423368, + [SMALL_STATE(9973)] = 423391, + [SMALL_STATE(9974)] = 423414, + [SMALL_STATE(9975)] = 423437, + [SMALL_STATE(9976)] = 423460, + [SMALL_STATE(9977)] = 423483, + [SMALL_STATE(9978)] = 423506, + [SMALL_STATE(9979)] = 423529, + [SMALL_STATE(9980)] = 423552, + [SMALL_STATE(9981)] = 423575, + [SMALL_STATE(9982)] = 423598, + [SMALL_STATE(9983)] = 423621, + [SMALL_STATE(9984)] = 423644, + [SMALL_STATE(9985)] = 423667, + [SMALL_STATE(9986)] = 423690, + [SMALL_STATE(9987)] = 423713, + [SMALL_STATE(9988)] = 423736, + [SMALL_STATE(9989)] = 423759, + [SMALL_STATE(9990)] = 423780, + [SMALL_STATE(9991)] = 423803, + [SMALL_STATE(9992)] = 423820, + [SMALL_STATE(9993)] = 423841, + [SMALL_STATE(9994)] = 423864, + [SMALL_STATE(9995)] = 423887, + [SMALL_STATE(9996)] = 423906, + [SMALL_STATE(9997)] = 423923, + [SMALL_STATE(9998)] = 423944, + [SMALL_STATE(9999)] = 423963, + [SMALL_STATE(10000)] = 423984, + [SMALL_STATE(10001)] = 424005, + [SMALL_STATE(10002)] = 424026, + [SMALL_STATE(10003)] = 424047, + [SMALL_STATE(10004)] = 424064, + [SMALL_STATE(10005)] = 424081, + [SMALL_STATE(10006)] = 424104, + [SMALL_STATE(10007)] = 424125, + [SMALL_STATE(10008)] = 424148, + [SMALL_STATE(10009)] = 424171, + [SMALL_STATE(10010)] = 424192, + [SMALL_STATE(10011)] = 424215, + [SMALL_STATE(10012)] = 424238, + [SMALL_STATE(10013)] = 424261, + [SMALL_STATE(10014)] = 424284, + [SMALL_STATE(10015)] = 424307, + [SMALL_STATE(10016)] = 424330, + [SMALL_STATE(10017)] = 424353, + [SMALL_STATE(10018)] = 424376, + [SMALL_STATE(10019)] = 424399, + [SMALL_STATE(10020)] = 424422, + [SMALL_STATE(10021)] = 424445, + [SMALL_STATE(10022)] = 424462, + [SMALL_STATE(10023)] = 424483, + [SMALL_STATE(10024)] = 424504, + [SMALL_STATE(10025)] = 424527, + [SMALL_STATE(10026)] = 424550, + [SMALL_STATE(10027)] = 424573, + [SMALL_STATE(10028)] = 424596, + [SMALL_STATE(10029)] = 424613, + [SMALL_STATE(10030)] = 424636, + [SMALL_STATE(10031)] = 424659, + [SMALL_STATE(10032)] = 424682, + [SMALL_STATE(10033)] = 424705, + [SMALL_STATE(10034)] = 424728, + [SMALL_STATE(10035)] = 424751, + [SMALL_STATE(10036)] = 424774, + [SMALL_STATE(10037)] = 424795, + [SMALL_STATE(10038)] = 424818, + [SMALL_STATE(10039)] = 424841, + [SMALL_STATE(10040)] = 424864, + [SMALL_STATE(10041)] = 424887, + [SMALL_STATE(10042)] = 424910, + [SMALL_STATE(10043)] = 424933, + [SMALL_STATE(10044)] = 424956, + [SMALL_STATE(10045)] = 424979, + [SMALL_STATE(10046)] = 425002, + [SMALL_STATE(10047)] = 425025, + [SMALL_STATE(10048)] = 425048, + [SMALL_STATE(10049)] = 425071, + [SMALL_STATE(10050)] = 425094, + [SMALL_STATE(10051)] = 425117, + [SMALL_STATE(10052)] = 425140, + [SMALL_STATE(10053)] = 425163, + [SMALL_STATE(10054)] = 425186, + [SMALL_STATE(10055)] = 425209, + [SMALL_STATE(10056)] = 425232, + [SMALL_STATE(10057)] = 425255, + [SMALL_STATE(10058)] = 425278, + [SMALL_STATE(10059)] = 425301, + [SMALL_STATE(10060)] = 425324, + [SMALL_STATE(10061)] = 425347, + [SMALL_STATE(10062)] = 425370, + [SMALL_STATE(10063)] = 425393, + [SMALL_STATE(10064)] = 425416, + [SMALL_STATE(10065)] = 425439, + [SMALL_STATE(10066)] = 425462, + [SMALL_STATE(10067)] = 425485, + [SMALL_STATE(10068)] = 425508, + [SMALL_STATE(10069)] = 425531, + [SMALL_STATE(10070)] = 425551, + [SMALL_STATE(10071)] = 425571, + [SMALL_STATE(10072)] = 425591, + [SMALL_STATE(10073)] = 425611, + [SMALL_STATE(10074)] = 425629, + [SMALL_STATE(10075)] = 425649, + [SMALL_STATE(10076)] = 425669, + [SMALL_STATE(10077)] = 425689, + [SMALL_STATE(10078)] = 425709, + [SMALL_STATE(10079)] = 425729, + [SMALL_STATE(10080)] = 425749, + [SMALL_STATE(10081)] = 425769, + [SMALL_STATE(10082)] = 425789, + [SMALL_STATE(10083)] = 425805, + [SMALL_STATE(10084)] = 425823, + [SMALL_STATE(10085)] = 425843, + [SMALL_STATE(10086)] = 425863, + [SMALL_STATE(10087)] = 425883, + [SMALL_STATE(10088)] = 425899, + [SMALL_STATE(10089)] = 425919, + [SMALL_STATE(10090)] = 425937, + [SMALL_STATE(10091)] = 425953, + [SMALL_STATE(10092)] = 425973, + [SMALL_STATE(10093)] = 425993, + [SMALL_STATE(10094)] = 426013, + [SMALL_STATE(10095)] = 426029, + [SMALL_STATE(10096)] = 426045, + [SMALL_STATE(10097)] = 426061, + [SMALL_STATE(10098)] = 426077, + [SMALL_STATE(10099)] = 426097, + [SMALL_STATE(10100)] = 426115, + [SMALL_STATE(10101)] = 426131, + [SMALL_STATE(10102)] = 426151, + [SMALL_STATE(10103)] = 426167, + [SMALL_STATE(10104)] = 426187, + [SMALL_STATE(10105)] = 426207, + [SMALL_STATE(10106)] = 426227, + [SMALL_STATE(10107)] = 426247, + [SMALL_STATE(10108)] = 426267, + [SMALL_STATE(10109)] = 426287, + [SMALL_STATE(10110)] = 426307, + [SMALL_STATE(10111)] = 426327, + [SMALL_STATE(10112)] = 426347, + [SMALL_STATE(10113)] = 426367, + [SMALL_STATE(10114)] = 426387, + [SMALL_STATE(10115)] = 426407, + [SMALL_STATE(10116)] = 426427, + [SMALL_STATE(10117)] = 426447, + [SMALL_STATE(10118)] = 426467, + [SMALL_STATE(10119)] = 426483, + [SMALL_STATE(10120)] = 426503, + [SMALL_STATE(10121)] = 426523, + [SMALL_STATE(10122)] = 426541, + [SMALL_STATE(10123)] = 426561, + [SMALL_STATE(10124)] = 426581, + [SMALL_STATE(10125)] = 426601, + [SMALL_STATE(10126)] = 426621, + [SMALL_STATE(10127)] = 426641, + [SMALL_STATE(10128)] = 426661, + [SMALL_STATE(10129)] = 426681, + [SMALL_STATE(10130)] = 426697, + [SMALL_STATE(10131)] = 426717, + [SMALL_STATE(10132)] = 426737, + [SMALL_STATE(10133)] = 426757, + [SMALL_STATE(10134)] = 426773, + [SMALL_STATE(10135)] = 426793, + [SMALL_STATE(10136)] = 426809, + [SMALL_STATE(10137)] = 426829, + [SMALL_STATE(10138)] = 426849, + [SMALL_STATE(10139)] = 426865, + [SMALL_STATE(10140)] = 426881, + [SMALL_STATE(10141)] = 426901, + [SMALL_STATE(10142)] = 426921, + [SMALL_STATE(10143)] = 426941, + [SMALL_STATE(10144)] = 426959, + [SMALL_STATE(10145)] = 426979, + [SMALL_STATE(10146)] = 426999, + [SMALL_STATE(10147)] = 427019, + [SMALL_STATE(10148)] = 427039, + [SMALL_STATE(10149)] = 427059, + [SMALL_STATE(10150)] = 427075, + [SMALL_STATE(10151)] = 427095, + [SMALL_STATE(10152)] = 427115, + [SMALL_STATE(10153)] = 427131, + [SMALL_STATE(10154)] = 427151, + [SMALL_STATE(10155)] = 427171, + [SMALL_STATE(10156)] = 427191, + [SMALL_STATE(10157)] = 427207, + [SMALL_STATE(10158)] = 427227, + [SMALL_STATE(10159)] = 427247, + [SMALL_STATE(10160)] = 427263, + [SMALL_STATE(10161)] = 427283, + [SMALL_STATE(10162)] = 427303, + [SMALL_STATE(10163)] = 427323, + [SMALL_STATE(10164)] = 427343, + [SMALL_STATE(10165)] = 427363, + [SMALL_STATE(10166)] = 427383, + [SMALL_STATE(10167)] = 427403, + [SMALL_STATE(10168)] = 427423, + [SMALL_STATE(10169)] = 427443, + [SMALL_STATE(10170)] = 427463, + [SMALL_STATE(10171)] = 427483, + [SMALL_STATE(10172)] = 427501, + [SMALL_STATE(10173)] = 427521, + [SMALL_STATE(10174)] = 427541, + [SMALL_STATE(10175)] = 427561, + [SMALL_STATE(10176)] = 427581, + [SMALL_STATE(10177)] = 427601, + [SMALL_STATE(10178)] = 427621, + [SMALL_STATE(10179)] = 427641, + [SMALL_STATE(10180)] = 427657, + [SMALL_STATE(10181)] = 427673, + [SMALL_STATE(10182)] = 427693, + [SMALL_STATE(10183)] = 427713, + [SMALL_STATE(10184)] = 427733, + [SMALL_STATE(10185)] = 427753, + [SMALL_STATE(10186)] = 427773, + [SMALL_STATE(10187)] = 427793, + [SMALL_STATE(10188)] = 427813, + [SMALL_STATE(10189)] = 427833, + [SMALL_STATE(10190)] = 427853, + [SMALL_STATE(10191)] = 427873, + [SMALL_STATE(10192)] = 427893, + [SMALL_STATE(10193)] = 427913, + [SMALL_STATE(10194)] = 427933, + [SMALL_STATE(10195)] = 427953, + [SMALL_STATE(10196)] = 427973, + [SMALL_STATE(10197)] = 427993, + [SMALL_STATE(10198)] = 428013, + [SMALL_STATE(10199)] = 428033, + [SMALL_STATE(10200)] = 428053, + [SMALL_STATE(10201)] = 428073, + [SMALL_STATE(10202)] = 428093, + [SMALL_STATE(10203)] = 428113, + [SMALL_STATE(10204)] = 428133, + [SMALL_STATE(10205)] = 428153, + [SMALL_STATE(10206)] = 428173, + [SMALL_STATE(10207)] = 428191, + [SMALL_STATE(10208)] = 428207, + [SMALL_STATE(10209)] = 428223, + [SMALL_STATE(10210)] = 428239, + [SMALL_STATE(10211)] = 428255, + [SMALL_STATE(10212)] = 428275, + [SMALL_STATE(10213)] = 428295, + [SMALL_STATE(10214)] = 428311, + [SMALL_STATE(10215)] = 428331, + [SMALL_STATE(10216)] = 428347, + [SMALL_STATE(10217)] = 428367, + [SMALL_STATE(10218)] = 428387, + [SMALL_STATE(10219)] = 428407, + [SMALL_STATE(10220)] = 428427, + [SMALL_STATE(10221)] = 428447, + [SMALL_STATE(10222)] = 428463, + [SMALL_STATE(10223)] = 428483, + [SMALL_STATE(10224)] = 428503, + [SMALL_STATE(10225)] = 428523, + [SMALL_STATE(10226)] = 428543, + [SMALL_STATE(10227)] = 428563, + [SMALL_STATE(10228)] = 428583, + [SMALL_STATE(10229)] = 428603, + [SMALL_STATE(10230)] = 428623, + [SMALL_STATE(10231)] = 428643, + [SMALL_STATE(10232)] = 428663, + [SMALL_STATE(10233)] = 428683, + [SMALL_STATE(10234)] = 428703, + [SMALL_STATE(10235)] = 428723, + [SMALL_STATE(10236)] = 428743, + [SMALL_STATE(10237)] = 428759, + [SMALL_STATE(10238)] = 428779, + [SMALL_STATE(10239)] = 428799, + [SMALL_STATE(10240)] = 428819, + [SMALL_STATE(10241)] = 428835, + [SMALL_STATE(10242)] = 428855, + [SMALL_STATE(10243)] = 428871, + [SMALL_STATE(10244)] = 428891, + [SMALL_STATE(10245)] = 428907, + [SMALL_STATE(10246)] = 428923, + [SMALL_STATE(10247)] = 428939, + [SMALL_STATE(10248)] = 428959, + [SMALL_STATE(10249)] = 428979, + [SMALL_STATE(10250)] = 428995, + [SMALL_STATE(10251)] = 429015, + [SMALL_STATE(10252)] = 429035, + [SMALL_STATE(10253)] = 429055, + [SMALL_STATE(10254)] = 429075, + [SMALL_STATE(10255)] = 429091, + [SMALL_STATE(10256)] = 429111, + [SMALL_STATE(10257)] = 429131, + [SMALL_STATE(10258)] = 429151, + [SMALL_STATE(10259)] = 429171, + [SMALL_STATE(10260)] = 429191, + [SMALL_STATE(10261)] = 429211, + [SMALL_STATE(10262)] = 429231, + [SMALL_STATE(10263)] = 429251, + [SMALL_STATE(10264)] = 429271, + [SMALL_STATE(10265)] = 429291, + [SMALL_STATE(10266)] = 429311, + [SMALL_STATE(10267)] = 429331, + [SMALL_STATE(10268)] = 429351, + [SMALL_STATE(10269)] = 429371, + [SMALL_STATE(10270)] = 429391, + [SMALL_STATE(10271)] = 429411, + [SMALL_STATE(10272)] = 429427, + [SMALL_STATE(10273)] = 429447, + [SMALL_STATE(10274)] = 429467, + [SMALL_STATE(10275)] = 429483, + [SMALL_STATE(10276)] = 429499, + [SMALL_STATE(10277)] = 429515, + [SMALL_STATE(10278)] = 429535, + [SMALL_STATE(10279)] = 429551, + [SMALL_STATE(10280)] = 429571, + [SMALL_STATE(10281)] = 429591, + [SMALL_STATE(10282)] = 429607, + [SMALL_STATE(10283)] = 429627, + [SMALL_STATE(10284)] = 429647, + [SMALL_STATE(10285)] = 429667, + [SMALL_STATE(10286)] = 429687, + [SMALL_STATE(10287)] = 429705, + [SMALL_STATE(10288)] = 429725, + [SMALL_STATE(10289)] = 429745, + [SMALL_STATE(10290)] = 429761, + [SMALL_STATE(10291)] = 429781, + [SMALL_STATE(10292)] = 429797, + [SMALL_STATE(10293)] = 429817, + [SMALL_STATE(10294)] = 429833, + [SMALL_STATE(10295)] = 429853, + [SMALL_STATE(10296)] = 429869, + [SMALL_STATE(10297)] = 429889, + [SMALL_STATE(10298)] = 429905, + [SMALL_STATE(10299)] = 429925, + [SMALL_STATE(10300)] = 429941, + [SMALL_STATE(10301)] = 429961, + [SMALL_STATE(10302)] = 429981, + [SMALL_STATE(10303)] = 429999, + [SMALL_STATE(10304)] = 430019, + [SMALL_STATE(10305)] = 430035, + [SMALL_STATE(10306)] = 430055, + [SMALL_STATE(10307)] = 430075, + [SMALL_STATE(10308)] = 430091, + [SMALL_STATE(10309)] = 430107, + [SMALL_STATE(10310)] = 430123, + [SMALL_STATE(10311)] = 430143, + [SMALL_STATE(10312)] = 430163, + [SMALL_STATE(10313)] = 430183, + [SMALL_STATE(10314)] = 430203, + [SMALL_STATE(10315)] = 430223, + [SMALL_STATE(10316)] = 430241, + [SMALL_STATE(10317)] = 430261, + [SMALL_STATE(10318)] = 430281, + [SMALL_STATE(10319)] = 430301, + [SMALL_STATE(10320)] = 430321, + [SMALL_STATE(10321)] = 430341, + [SMALL_STATE(10322)] = 430361, + [SMALL_STATE(10323)] = 430381, + [SMALL_STATE(10324)] = 430401, + [SMALL_STATE(10325)] = 430421, + [SMALL_STATE(10326)] = 430441, + [SMALL_STATE(10327)] = 430461, + [SMALL_STATE(10328)] = 430481, + [SMALL_STATE(10329)] = 430501, + [SMALL_STATE(10330)] = 430517, + [SMALL_STATE(10331)] = 430537, + [SMALL_STATE(10332)] = 430557, + [SMALL_STATE(10333)] = 430577, + [SMALL_STATE(10334)] = 430595, + [SMALL_STATE(10335)] = 430615, + [SMALL_STATE(10336)] = 430631, + [SMALL_STATE(10337)] = 430651, + [SMALL_STATE(10338)] = 430671, + [SMALL_STATE(10339)] = 430691, + [SMALL_STATE(10340)] = 430711, + [SMALL_STATE(10341)] = 430731, + [SMALL_STATE(10342)] = 430749, + [SMALL_STATE(10343)] = 430765, + [SMALL_STATE(10344)] = 430781, + [SMALL_STATE(10345)] = 430801, + [SMALL_STATE(10346)] = 430821, + [SMALL_STATE(10347)] = 430841, + [SMALL_STATE(10348)] = 430857, + [SMALL_STATE(10349)] = 430877, + [SMALL_STATE(10350)] = 430897, + [SMALL_STATE(10351)] = 430917, + [SMALL_STATE(10352)] = 430933, + [SMALL_STATE(10353)] = 430953, + [SMALL_STATE(10354)] = 430971, + [SMALL_STATE(10355)] = 430991, + [SMALL_STATE(10356)] = 431011, + [SMALL_STATE(10357)] = 431031, + [SMALL_STATE(10358)] = 431047, + [SMALL_STATE(10359)] = 431063, + [SMALL_STATE(10360)] = 431083, + [SMALL_STATE(10361)] = 431099, + [SMALL_STATE(10362)] = 431115, + [SMALL_STATE(10363)] = 431131, + [SMALL_STATE(10364)] = 431151, + [SMALL_STATE(10365)] = 431167, + [SMALL_STATE(10366)] = 431183, + [SMALL_STATE(10367)] = 431199, + [SMALL_STATE(10368)] = 431217, + [SMALL_STATE(10369)] = 431235, + [SMALL_STATE(10370)] = 431251, + [SMALL_STATE(10371)] = 431267, + [SMALL_STATE(10372)] = 431287, + [SMALL_STATE(10373)] = 431303, + [SMALL_STATE(10374)] = 431319, + [SMALL_STATE(10375)] = 431335, + [SMALL_STATE(10376)] = 431351, + [SMALL_STATE(10377)] = 431367, + [SMALL_STATE(10378)] = 431385, + [SMALL_STATE(10379)] = 431401, + [SMALL_STATE(10380)] = 431417, + [SMALL_STATE(10381)] = 431433, + [SMALL_STATE(10382)] = 431449, + [SMALL_STATE(10383)] = 431465, + [SMALL_STATE(10384)] = 431485, + [SMALL_STATE(10385)] = 431501, + [SMALL_STATE(10386)] = 431521, + [SMALL_STATE(10387)] = 431541, + [SMALL_STATE(10388)] = 431557, + [SMALL_STATE(10389)] = 431573, + [SMALL_STATE(10390)] = 431589, + [SMALL_STATE(10391)] = 431605, + [SMALL_STATE(10392)] = 431625, + [SMALL_STATE(10393)] = 431641, + [SMALL_STATE(10394)] = 431661, + [SMALL_STATE(10395)] = 431677, + [SMALL_STATE(10396)] = 431693, + [SMALL_STATE(10397)] = 431709, + [SMALL_STATE(10398)] = 431725, + [SMALL_STATE(10399)] = 431745, + [SMALL_STATE(10400)] = 431761, + [SMALL_STATE(10401)] = 431781, + [SMALL_STATE(10402)] = 431797, + [SMALL_STATE(10403)] = 431813, + [SMALL_STATE(10404)] = 431833, + [SMALL_STATE(10405)] = 431853, + [SMALL_STATE(10406)] = 431873, + [SMALL_STATE(10407)] = 431893, + [SMALL_STATE(10408)] = 431913, + [SMALL_STATE(10409)] = 431933, + [SMALL_STATE(10410)] = 431953, + [SMALL_STATE(10411)] = 431973, + [SMALL_STATE(10412)] = 431993, + [SMALL_STATE(10413)] = 432013, + [SMALL_STATE(10414)] = 432033, + [SMALL_STATE(10415)] = 432053, + [SMALL_STATE(10416)] = 432073, + [SMALL_STATE(10417)] = 432093, + [SMALL_STATE(10418)] = 432109, + [SMALL_STATE(10419)] = 432129, + [SMALL_STATE(10420)] = 432149, + [SMALL_STATE(10421)] = 432165, + [SMALL_STATE(10422)] = 432185, + [SMALL_STATE(10423)] = 432205, + [SMALL_STATE(10424)] = 432225, + [SMALL_STATE(10425)] = 432241, + [SMALL_STATE(10426)] = 432261, + [SMALL_STATE(10427)] = 432277, + [SMALL_STATE(10428)] = 432297, + [SMALL_STATE(10429)] = 432317, + [SMALL_STATE(10430)] = 432337, + [SMALL_STATE(10431)] = 432353, + [SMALL_STATE(10432)] = 432373, + [SMALL_STATE(10433)] = 432393, + [SMALL_STATE(10434)] = 432413, + [SMALL_STATE(10435)] = 432429, + [SMALL_STATE(10436)] = 432449, + [SMALL_STATE(10437)] = 432465, + [SMALL_STATE(10438)] = 432485, + [SMALL_STATE(10439)] = 432505, + [SMALL_STATE(10440)] = 432521, + [SMALL_STATE(10441)] = 432537, + [SMALL_STATE(10442)] = 432557, + [SMALL_STATE(10443)] = 432573, + [SMALL_STATE(10444)] = 432593, + [SMALL_STATE(10445)] = 432609, + [SMALL_STATE(10446)] = 432627, + [SMALL_STATE(10447)] = 432647, + [SMALL_STATE(10448)] = 432667, + [SMALL_STATE(10449)] = 432687, + [SMALL_STATE(10450)] = 432707, + [SMALL_STATE(10451)] = 432727, + [SMALL_STATE(10452)] = 432747, + [SMALL_STATE(10453)] = 432767, + [SMALL_STATE(10454)] = 432787, + [SMALL_STATE(10455)] = 432803, + [SMALL_STATE(10456)] = 432819, + [SMALL_STATE(10457)] = 432839, + [SMALL_STATE(10458)] = 432859, + [SMALL_STATE(10459)] = 432875, + [SMALL_STATE(10460)] = 432895, + [SMALL_STATE(10461)] = 432911, + [SMALL_STATE(10462)] = 432927, + [SMALL_STATE(10463)] = 432945, + [SMALL_STATE(10464)] = 432961, + [SMALL_STATE(10465)] = 432981, + [SMALL_STATE(10466)] = 432999, + [SMALL_STATE(10467)] = 433019, + [SMALL_STATE(10468)] = 433035, + [SMALL_STATE(10469)] = 433055, + [SMALL_STATE(10470)] = 433075, + [SMALL_STATE(10471)] = 433095, + [SMALL_STATE(10472)] = 433115, + [SMALL_STATE(10473)] = 433135, + [SMALL_STATE(10474)] = 433155, + [SMALL_STATE(10475)] = 433175, + [SMALL_STATE(10476)] = 433195, + [SMALL_STATE(10477)] = 433211, + [SMALL_STATE(10478)] = 433227, + [SMALL_STATE(10479)] = 433247, + [SMALL_STATE(10480)] = 433263, + [SMALL_STATE(10481)] = 433283, + [SMALL_STATE(10482)] = 433303, + [SMALL_STATE(10483)] = 433323, + [SMALL_STATE(10484)] = 433343, + [SMALL_STATE(10485)] = 433363, + [SMALL_STATE(10486)] = 433383, + [SMALL_STATE(10487)] = 433403, + [SMALL_STATE(10488)] = 433423, + [SMALL_STATE(10489)] = 433443, + [SMALL_STATE(10490)] = 433463, + [SMALL_STATE(10491)] = 433483, + [SMALL_STATE(10492)] = 433499, + [SMALL_STATE(10493)] = 433515, + [SMALL_STATE(10494)] = 433535, + [SMALL_STATE(10495)] = 433551, + [SMALL_STATE(10496)] = 433571, + [SMALL_STATE(10497)] = 433589, + [SMALL_STATE(10498)] = 433609, + [SMALL_STATE(10499)] = 433629, + [SMALL_STATE(10500)] = 433649, + [SMALL_STATE(10501)] = 433665, + [SMALL_STATE(10502)] = 433681, + [SMALL_STATE(10503)] = 433697, + [SMALL_STATE(10504)] = 433717, + [SMALL_STATE(10505)] = 433737, + [SMALL_STATE(10506)] = 433753, + [SMALL_STATE(10507)] = 433769, + [SMALL_STATE(10508)] = 433789, + [SMALL_STATE(10509)] = 433809, + [SMALL_STATE(10510)] = 433825, + [SMALL_STATE(10511)] = 433841, + [SMALL_STATE(10512)] = 433861, + [SMALL_STATE(10513)] = 433881, + [SMALL_STATE(10514)] = 433897, + [SMALL_STATE(10515)] = 433917, + [SMALL_STATE(10516)] = 433937, + [SMALL_STATE(10517)] = 433957, + [SMALL_STATE(10518)] = 433977, + [SMALL_STATE(10519)] = 433993, + [SMALL_STATE(10520)] = 434013, + [SMALL_STATE(10521)] = 434029, + [SMALL_STATE(10522)] = 434049, + [SMALL_STATE(10523)] = 434069, + [SMALL_STATE(10524)] = 434089, + [SMALL_STATE(10525)] = 434109, + [SMALL_STATE(10526)] = 434129, + [SMALL_STATE(10527)] = 434149, + [SMALL_STATE(10528)] = 434169, + [SMALL_STATE(10529)] = 434189, + [SMALL_STATE(10530)] = 434209, + [SMALL_STATE(10531)] = 434229, + [SMALL_STATE(10532)] = 434249, + [SMALL_STATE(10533)] = 434269, + [SMALL_STATE(10534)] = 434289, + [SMALL_STATE(10535)] = 434309, + [SMALL_STATE(10536)] = 434329, + [SMALL_STATE(10537)] = 434349, + [SMALL_STATE(10538)] = 434365, + [SMALL_STATE(10539)] = 434385, + [SMALL_STATE(10540)] = 434405, + [SMALL_STATE(10541)] = 434425, + [SMALL_STATE(10542)] = 434445, + [SMALL_STATE(10543)] = 434465, + [SMALL_STATE(10544)] = 434485, + [SMALL_STATE(10545)] = 434505, + [SMALL_STATE(10546)] = 434521, + [SMALL_STATE(10547)] = 434541, + [SMALL_STATE(10548)] = 434561, + [SMALL_STATE(10549)] = 434581, + [SMALL_STATE(10550)] = 434601, + [SMALL_STATE(10551)] = 434617, + [SMALL_STATE(10552)] = 434633, + [SMALL_STATE(10553)] = 434653, + [SMALL_STATE(10554)] = 434673, + [SMALL_STATE(10555)] = 434689, + [SMALL_STATE(10556)] = 434705, + [SMALL_STATE(10557)] = 434721, + [SMALL_STATE(10558)] = 434737, + [SMALL_STATE(10559)] = 434753, + [SMALL_STATE(10560)] = 434773, + [SMALL_STATE(10561)] = 434793, + [SMALL_STATE(10562)] = 434813, + [SMALL_STATE(10563)] = 434833, + [SMALL_STATE(10564)] = 434849, + [SMALL_STATE(10565)] = 434869, + [SMALL_STATE(10566)] = 434885, + [SMALL_STATE(10567)] = 434903, + [SMALL_STATE(10568)] = 434919, + [SMALL_STATE(10569)] = 434939, + [SMALL_STATE(10570)] = 434959, + [SMALL_STATE(10571)] = 434979, + [SMALL_STATE(10572)] = 434999, + [SMALL_STATE(10573)] = 435019, + [SMALL_STATE(10574)] = 435035, + [SMALL_STATE(10575)] = 435055, + [SMALL_STATE(10576)] = 435075, + [SMALL_STATE(10577)] = 435095, + [SMALL_STATE(10578)] = 435115, + [SMALL_STATE(10579)] = 435135, + [SMALL_STATE(10580)] = 435155, + [SMALL_STATE(10581)] = 435175, + [SMALL_STATE(10582)] = 435195, + [SMALL_STATE(10583)] = 435211, + [SMALL_STATE(10584)] = 435231, + [SMALL_STATE(10585)] = 435251, + [SMALL_STATE(10586)] = 435267, + [SMALL_STATE(10587)] = 435283, + [SMALL_STATE(10588)] = 435299, + [SMALL_STATE(10589)] = 435319, + [SMALL_STATE(10590)] = 435339, + [SMALL_STATE(10591)] = 435359, + [SMALL_STATE(10592)] = 435379, + [SMALL_STATE(10593)] = 435399, + [SMALL_STATE(10594)] = 435419, + [SMALL_STATE(10595)] = 435435, + [SMALL_STATE(10596)] = 435455, + [SMALL_STATE(10597)] = 435471, + [SMALL_STATE(10598)] = 435491, + [SMALL_STATE(10599)] = 435511, + [SMALL_STATE(10600)] = 435531, + [SMALL_STATE(10601)] = 435551, + [SMALL_STATE(10602)] = 435571, + [SMALL_STATE(10603)] = 435591, + [SMALL_STATE(10604)] = 435611, + [SMALL_STATE(10605)] = 435631, + [SMALL_STATE(10606)] = 435651, + [SMALL_STATE(10607)] = 435671, + [SMALL_STATE(10608)] = 435691, + [SMALL_STATE(10609)] = 435711, + [SMALL_STATE(10610)] = 435731, + [SMALL_STATE(10611)] = 435751, + [SMALL_STATE(10612)] = 435771, + [SMALL_STATE(10613)] = 435787, + [SMALL_STATE(10614)] = 435807, + [SMALL_STATE(10615)] = 435827, + [SMALL_STATE(10616)] = 435847, + [SMALL_STATE(10617)] = 435867, + [SMALL_STATE(10618)] = 435887, + [SMALL_STATE(10619)] = 435903, + [SMALL_STATE(10620)] = 435923, + [SMALL_STATE(10621)] = 435943, + [SMALL_STATE(10622)] = 435963, + [SMALL_STATE(10623)] = 435983, + [SMALL_STATE(10624)] = 436003, + [SMALL_STATE(10625)] = 436023, + [SMALL_STATE(10626)] = 436039, + [SMALL_STATE(10627)] = 436055, + [SMALL_STATE(10628)] = 436075, + [SMALL_STATE(10629)] = 436091, + [SMALL_STATE(10630)] = 436111, + [SMALL_STATE(10631)] = 436131, + [SMALL_STATE(10632)] = 436147, + [SMALL_STATE(10633)] = 436167, + [SMALL_STATE(10634)] = 436187, + [SMALL_STATE(10635)] = 436207, + [SMALL_STATE(10636)] = 436227, + [SMALL_STATE(10637)] = 436247, + [SMALL_STATE(10638)] = 436267, + [SMALL_STATE(10639)] = 436287, + [SMALL_STATE(10640)] = 436307, + [SMALL_STATE(10641)] = 436325, + [SMALL_STATE(10642)] = 436345, + [SMALL_STATE(10643)] = 436365, + [SMALL_STATE(10644)] = 436385, + [SMALL_STATE(10645)] = 436405, + [SMALL_STATE(10646)] = 436425, + [SMALL_STATE(10647)] = 436445, + [SMALL_STATE(10648)] = 436465, + [SMALL_STATE(10649)] = 436485, + [SMALL_STATE(10650)] = 436505, + [SMALL_STATE(10651)] = 436525, + [SMALL_STATE(10652)] = 436545, + [SMALL_STATE(10653)] = 436565, + [SMALL_STATE(10654)] = 436585, + [SMALL_STATE(10655)] = 436605, + [SMALL_STATE(10656)] = 436625, + [SMALL_STATE(10657)] = 436645, + [SMALL_STATE(10658)] = 436661, + [SMALL_STATE(10659)] = 436681, + [SMALL_STATE(10660)] = 436697, + [SMALL_STATE(10661)] = 436717, + [SMALL_STATE(10662)] = 436737, + [SMALL_STATE(10663)] = 436757, + [SMALL_STATE(10664)] = 436773, + [SMALL_STATE(10665)] = 436793, + [SMALL_STATE(10666)] = 436813, + [SMALL_STATE(10667)] = 436833, + [SMALL_STATE(10668)] = 436853, + [SMALL_STATE(10669)] = 436873, + [SMALL_STATE(10670)] = 436893, + [SMALL_STATE(10671)] = 436913, + [SMALL_STATE(10672)] = 436933, + [SMALL_STATE(10673)] = 436953, + [SMALL_STATE(10674)] = 436973, + [SMALL_STATE(10675)] = 436993, + [SMALL_STATE(10676)] = 437013, + [SMALL_STATE(10677)] = 437033, + [SMALL_STATE(10678)] = 437053, + [SMALL_STATE(10679)] = 437073, + [SMALL_STATE(10680)] = 437093, + [SMALL_STATE(10681)] = 437113, + [SMALL_STATE(10682)] = 437133, + [SMALL_STATE(10683)] = 437151, + [SMALL_STATE(10684)] = 437171, + [SMALL_STATE(10685)] = 437191, + [SMALL_STATE(10686)] = 437211, + [SMALL_STATE(10687)] = 437231, + [SMALL_STATE(10688)] = 437251, + [SMALL_STATE(10689)] = 437271, + [SMALL_STATE(10690)] = 437291, + [SMALL_STATE(10691)] = 437311, + [SMALL_STATE(10692)] = 437331, + [SMALL_STATE(10693)] = 437351, + [SMALL_STATE(10694)] = 437371, + [SMALL_STATE(10695)] = 437391, + [SMALL_STATE(10696)] = 437407, + [SMALL_STATE(10697)] = 437427, + [SMALL_STATE(10698)] = 437443, + [SMALL_STATE(10699)] = 437463, + [SMALL_STATE(10700)] = 437483, + [SMALL_STATE(10701)] = 437503, + [SMALL_STATE(10702)] = 437523, + [SMALL_STATE(10703)] = 437539, + [SMALL_STATE(10704)] = 437559, + [SMALL_STATE(10705)] = 437579, + [SMALL_STATE(10706)] = 437599, + [SMALL_STATE(10707)] = 437619, + [SMALL_STATE(10708)] = 437639, + [SMALL_STATE(10709)] = 437659, + [SMALL_STATE(10710)] = 437677, + [SMALL_STATE(10711)] = 437697, + [SMALL_STATE(10712)] = 437717, + [SMALL_STATE(10713)] = 437737, + [SMALL_STATE(10714)] = 437757, + [SMALL_STATE(10715)] = 437773, + [SMALL_STATE(10716)] = 437793, + [SMALL_STATE(10717)] = 437813, + [SMALL_STATE(10718)] = 437833, + [SMALL_STATE(10719)] = 437853, + [SMALL_STATE(10720)] = 437873, + [SMALL_STATE(10721)] = 437893, + [SMALL_STATE(10722)] = 437913, + [SMALL_STATE(10723)] = 437931, + [SMALL_STATE(10724)] = 437951, + [SMALL_STATE(10725)] = 437971, + [SMALL_STATE(10726)] = 437991, + [SMALL_STATE(10727)] = 438011, + [SMALL_STATE(10728)] = 438031, + [SMALL_STATE(10729)] = 438051, + [SMALL_STATE(10730)] = 438071, + [SMALL_STATE(10731)] = 438091, + [SMALL_STATE(10732)] = 438109, + [SMALL_STATE(10733)] = 438129, + [SMALL_STATE(10734)] = 438149, + [SMALL_STATE(10735)] = 438169, + [SMALL_STATE(10736)] = 438189, + [SMALL_STATE(10737)] = 438207, + [SMALL_STATE(10738)] = 438227, + [SMALL_STATE(10739)] = 438247, + [SMALL_STATE(10740)] = 438267, + [SMALL_STATE(10741)] = 438283, + [SMALL_STATE(10742)] = 438303, + [SMALL_STATE(10743)] = 438319, + [SMALL_STATE(10744)] = 438339, + [SMALL_STATE(10745)] = 438359, + [SMALL_STATE(10746)] = 438379, + [SMALL_STATE(10747)] = 438399, + [SMALL_STATE(10748)] = 438419, + [SMALL_STATE(10749)] = 438439, + [SMALL_STATE(10750)] = 438459, + [SMALL_STATE(10751)] = 438474, + [SMALL_STATE(10752)] = 438489, + [SMALL_STATE(10753)] = 438506, + [SMALL_STATE(10754)] = 438523, + [SMALL_STATE(10755)] = 438540, + [SMALL_STATE(10756)] = 438557, + [SMALL_STATE(10757)] = 438574, + [SMALL_STATE(10758)] = 438591, + [SMALL_STATE(10759)] = 438608, + [SMALL_STATE(10760)] = 438625, + [SMALL_STATE(10761)] = 438642, + [SMALL_STATE(10762)] = 438659, + [SMALL_STATE(10763)] = 438676, + [SMALL_STATE(10764)] = 438693, + [SMALL_STATE(10765)] = 438710, + [SMALL_STATE(10766)] = 438725, + [SMALL_STATE(10767)] = 438742, + [SMALL_STATE(10768)] = 438757, + [SMALL_STATE(10769)] = 438772, + [SMALL_STATE(10770)] = 438789, + [SMALL_STATE(10771)] = 438806, + [SMALL_STATE(10772)] = 438823, + [SMALL_STATE(10773)] = 438840, + [SMALL_STATE(10774)] = 438857, + [SMALL_STATE(10775)] = 438874, + [SMALL_STATE(10776)] = 438891, + [SMALL_STATE(10777)] = 438906, + [SMALL_STATE(10778)] = 438923, + [SMALL_STATE(10779)] = 438940, + [SMALL_STATE(10780)] = 438957, + [SMALL_STATE(10781)] = 438974, + [SMALL_STATE(10782)] = 438991, + [SMALL_STATE(10783)] = 439008, + [SMALL_STATE(10784)] = 439025, + [SMALL_STATE(10785)] = 439040, + [SMALL_STATE(10786)] = 439057, + [SMALL_STATE(10787)] = 439074, + [SMALL_STATE(10788)] = 439089, + [SMALL_STATE(10789)] = 439106, + [SMALL_STATE(10790)] = 439123, + [SMALL_STATE(10791)] = 439140, + [SMALL_STATE(10792)] = 439157, + [SMALL_STATE(10793)] = 439174, + [SMALL_STATE(10794)] = 439191, + [SMALL_STATE(10795)] = 439208, + [SMALL_STATE(10796)] = 439225, + [SMALL_STATE(10797)] = 439242, + [SMALL_STATE(10798)] = 439259, + [SMALL_STATE(10799)] = 439276, + [SMALL_STATE(10800)] = 439293, + [SMALL_STATE(10801)] = 439310, + [SMALL_STATE(10802)] = 439327, + [SMALL_STATE(10803)] = 439344, + [SMALL_STATE(10804)] = 439361, + [SMALL_STATE(10805)] = 439378, + [SMALL_STATE(10806)] = 439393, + [SMALL_STATE(10807)] = 439410, + [SMALL_STATE(10808)] = 439427, + [SMALL_STATE(10809)] = 439444, + [SMALL_STATE(10810)] = 439461, + [SMALL_STATE(10811)] = 439478, + [SMALL_STATE(10812)] = 439495, + [SMALL_STATE(10813)] = 439512, + [SMALL_STATE(10814)] = 439529, + [SMALL_STATE(10815)] = 439546, + [SMALL_STATE(10816)] = 439563, + [SMALL_STATE(10817)] = 439580, + [SMALL_STATE(10818)] = 439597, + [SMALL_STATE(10819)] = 439614, + [SMALL_STATE(10820)] = 439631, + [SMALL_STATE(10821)] = 439648, + [SMALL_STATE(10822)] = 439665, + [SMALL_STATE(10823)] = 439680, + [SMALL_STATE(10824)] = 439697, + [SMALL_STATE(10825)] = 439714, + [SMALL_STATE(10826)] = 439729, + [SMALL_STATE(10827)] = 439746, + [SMALL_STATE(10828)] = 439763, + [SMALL_STATE(10829)] = 439780, + [SMALL_STATE(10830)] = 439797, + [SMALL_STATE(10831)] = 439814, + [SMALL_STATE(10832)] = 439831, + [SMALL_STATE(10833)] = 439848, + [SMALL_STATE(10834)] = 439863, + [SMALL_STATE(10835)] = 439880, + [SMALL_STATE(10836)] = 439897, + [SMALL_STATE(10837)] = 439914, + [SMALL_STATE(10838)] = 439931, + [SMALL_STATE(10839)] = 439946, + [SMALL_STATE(10840)] = 439961, + [SMALL_STATE(10841)] = 439978, + [SMALL_STATE(10842)] = 439995, + [SMALL_STATE(10843)] = 440012, + [SMALL_STATE(10844)] = 440029, + [SMALL_STATE(10845)] = 440046, + [SMALL_STATE(10846)] = 440061, + [SMALL_STATE(10847)] = 440078, + [SMALL_STATE(10848)] = 440095, + [SMALL_STATE(10849)] = 440112, + [SMALL_STATE(10850)] = 440129, + [SMALL_STATE(10851)] = 440146, + [SMALL_STATE(10852)] = 440161, + [SMALL_STATE(10853)] = 440178, + [SMALL_STATE(10854)] = 440195, + [SMALL_STATE(10855)] = 440210, + [SMALL_STATE(10856)] = 440227, + [SMALL_STATE(10857)] = 440244, + [SMALL_STATE(10858)] = 440259, + [SMALL_STATE(10859)] = 440276, + [SMALL_STATE(10860)] = 440291, + [SMALL_STATE(10861)] = 440306, + [SMALL_STATE(10862)] = 440323, + [SMALL_STATE(10863)] = 440340, + [SMALL_STATE(10864)] = 440357, + [SMALL_STATE(10865)] = 440374, + [SMALL_STATE(10866)] = 440391, + [SMALL_STATE(10867)] = 440408, + [SMALL_STATE(10868)] = 440423, + [SMALL_STATE(10869)] = 440440, + [SMALL_STATE(10870)] = 440457, + [SMALL_STATE(10871)] = 440472, + [SMALL_STATE(10872)] = 440487, + [SMALL_STATE(10873)] = 440504, + [SMALL_STATE(10874)] = 440521, + [SMALL_STATE(10875)] = 440536, + [SMALL_STATE(10876)] = 440553, + [SMALL_STATE(10877)] = 440568, + [SMALL_STATE(10878)] = 440585, + [SMALL_STATE(10879)] = 440602, + [SMALL_STATE(10880)] = 440619, + [SMALL_STATE(10881)] = 440634, + [SMALL_STATE(10882)] = 440649, + [SMALL_STATE(10883)] = 440666, + [SMALL_STATE(10884)] = 440681, + [SMALL_STATE(10885)] = 440696, + [SMALL_STATE(10886)] = 440713, + [SMALL_STATE(10887)] = 440730, + [SMALL_STATE(10888)] = 440747, + [SMALL_STATE(10889)] = 440764, + [SMALL_STATE(10890)] = 440781, + [SMALL_STATE(10891)] = 440798, + [SMALL_STATE(10892)] = 440813, + [SMALL_STATE(10893)] = 440828, + [SMALL_STATE(10894)] = 440845, + [SMALL_STATE(10895)] = 440860, + [SMALL_STATE(10896)] = 440877, + [SMALL_STATE(10897)] = 440894, + [SMALL_STATE(10898)] = 440911, + [SMALL_STATE(10899)] = 440926, + [SMALL_STATE(10900)] = 440943, + [SMALL_STATE(10901)] = 440960, + [SMALL_STATE(10902)] = 440977, + [SMALL_STATE(10903)] = 440994, + [SMALL_STATE(10904)] = 441011, + [SMALL_STATE(10905)] = 441028, + [SMALL_STATE(10906)] = 441045, + [SMALL_STATE(10907)] = 441062, + [SMALL_STATE(10908)] = 441079, + [SMALL_STATE(10909)] = 441096, + [SMALL_STATE(10910)] = 441113, + [SMALL_STATE(10911)] = 441130, + [SMALL_STATE(10912)] = 441147, + [SMALL_STATE(10913)] = 441164, + [SMALL_STATE(10914)] = 441181, + [SMALL_STATE(10915)] = 441198, + [SMALL_STATE(10916)] = 441215, + [SMALL_STATE(10917)] = 441230, + [SMALL_STATE(10918)] = 441247, + [SMALL_STATE(10919)] = 441264, + [SMALL_STATE(10920)] = 441281, + [SMALL_STATE(10921)] = 441298, + [SMALL_STATE(10922)] = 441315, + [SMALL_STATE(10923)] = 441332, + [SMALL_STATE(10924)] = 441349, + [SMALL_STATE(10925)] = 441366, + [SMALL_STATE(10926)] = 441383, + [SMALL_STATE(10927)] = 441400, + [SMALL_STATE(10928)] = 441417, + [SMALL_STATE(10929)] = 441434, + [SMALL_STATE(10930)] = 441451, + [SMALL_STATE(10931)] = 441468, + [SMALL_STATE(10932)] = 441485, + [SMALL_STATE(10933)] = 441502, + [SMALL_STATE(10934)] = 441519, + [SMALL_STATE(10935)] = 441536, + [SMALL_STATE(10936)] = 441551, + [SMALL_STATE(10937)] = 441566, + [SMALL_STATE(10938)] = 441583, + [SMALL_STATE(10939)] = 441600, + [SMALL_STATE(10940)] = 441614, + [SMALL_STATE(10941)] = 441628, + [SMALL_STATE(10942)] = 441642, + [SMALL_STATE(10943)] = 441656, + [SMALL_STATE(10944)] = 441670, + [SMALL_STATE(10945)] = 441684, + [SMALL_STATE(10946)] = 441698, + [SMALL_STATE(10947)] = 441714, + [SMALL_STATE(10948)] = 441728, + [SMALL_STATE(10949)] = 441742, + [SMALL_STATE(10950)] = 441756, + [SMALL_STATE(10951)] = 441770, + [SMALL_STATE(10952)] = 441784, + [SMALL_STATE(10953)] = 441798, + [SMALL_STATE(10954)] = 441812, + [SMALL_STATE(10955)] = 441826, + [SMALL_STATE(10956)] = 441840, + [SMALL_STATE(10957)] = 441854, + [SMALL_STATE(10958)] = 441868, + [SMALL_STATE(10959)] = 441884, + [SMALL_STATE(10960)] = 441898, + [SMALL_STATE(10961)] = 441912, + [SMALL_STATE(10962)] = 441926, + [SMALL_STATE(10963)] = 441940, + [SMALL_STATE(10964)] = 441954, + [SMALL_STATE(10965)] = 441968, + [SMALL_STATE(10966)] = 441982, + [SMALL_STATE(10967)] = 441996, + [SMALL_STATE(10968)] = 442010, + [SMALL_STATE(10969)] = 442024, + [SMALL_STATE(10970)] = 442040, + [SMALL_STATE(10971)] = 442054, + [SMALL_STATE(10972)] = 442068, + [SMALL_STATE(10973)] = 442082, + [SMALL_STATE(10974)] = 442096, + [SMALL_STATE(10975)] = 442110, + [SMALL_STATE(10976)] = 442124, + [SMALL_STATE(10977)] = 442138, + [SMALL_STATE(10978)] = 442152, + [SMALL_STATE(10979)] = 442166, + [SMALL_STATE(10980)] = 442180, + [SMALL_STATE(10981)] = 442194, + [SMALL_STATE(10982)] = 442208, + [SMALL_STATE(10983)] = 442222, + [SMALL_STATE(10984)] = 442236, + [SMALL_STATE(10985)] = 442250, + [SMALL_STATE(10986)] = 442264, + [SMALL_STATE(10987)] = 442278, + [SMALL_STATE(10988)] = 442292, + [SMALL_STATE(10989)] = 442306, + [SMALL_STATE(10990)] = 442320, + [SMALL_STATE(10991)] = 442334, + [SMALL_STATE(10992)] = 442348, + [SMALL_STATE(10993)] = 442362, + [SMALL_STATE(10994)] = 442376, + [SMALL_STATE(10995)] = 442390, + [SMALL_STATE(10996)] = 442404, + [SMALL_STATE(10997)] = 442418, + [SMALL_STATE(10998)] = 442432, + [SMALL_STATE(10999)] = 442446, + [SMALL_STATE(11000)] = 442460, + [SMALL_STATE(11001)] = 442474, + [SMALL_STATE(11002)] = 442488, + [SMALL_STATE(11003)] = 442502, + [SMALL_STATE(11004)] = 442516, + [SMALL_STATE(11005)] = 442530, + [SMALL_STATE(11006)] = 442544, + [SMALL_STATE(11007)] = 442558, + [SMALL_STATE(11008)] = 442572, + [SMALL_STATE(11009)] = 442586, + [SMALL_STATE(11010)] = 442600, + [SMALL_STATE(11011)] = 442614, + [SMALL_STATE(11012)] = 442628, + [SMALL_STATE(11013)] = 442642, + [SMALL_STATE(11014)] = 442656, + [SMALL_STATE(11015)] = 442670, + [SMALL_STATE(11016)] = 442684, + [SMALL_STATE(11017)] = 442698, + [SMALL_STATE(11018)] = 442712, + [SMALL_STATE(11019)] = 442726, + [SMALL_STATE(11020)] = 442740, + [SMALL_STATE(11021)] = 442754, + [SMALL_STATE(11022)] = 442768, + [SMALL_STATE(11023)] = 442782, + [SMALL_STATE(11024)] = 442796, + [SMALL_STATE(11025)] = 442810, + [SMALL_STATE(11026)] = 442824, + [SMALL_STATE(11027)] = 442838, + [SMALL_STATE(11028)] = 442852, + [SMALL_STATE(11029)] = 442866, + [SMALL_STATE(11030)] = 442880, + [SMALL_STATE(11031)] = 442894, + [SMALL_STATE(11032)] = 442908, + [SMALL_STATE(11033)] = 442922, + [SMALL_STATE(11034)] = 442936, + [SMALL_STATE(11035)] = 442950, + [SMALL_STATE(11036)] = 442964, + [SMALL_STATE(11037)] = 442978, + [SMALL_STATE(11038)] = 442992, + [SMALL_STATE(11039)] = 443006, + [SMALL_STATE(11040)] = 443020, + [SMALL_STATE(11041)] = 443034, + [SMALL_STATE(11042)] = 443048, + [SMALL_STATE(11043)] = 443062, + [SMALL_STATE(11044)] = 443078, + [SMALL_STATE(11045)] = 443092, + [SMALL_STATE(11046)] = 443106, + [SMALL_STATE(11047)] = 443120, + [SMALL_STATE(11048)] = 443134, + [SMALL_STATE(11049)] = 443148, + [SMALL_STATE(11050)] = 443162, + [SMALL_STATE(11051)] = 443176, + [SMALL_STATE(11052)] = 443190, + [SMALL_STATE(11053)] = 443204, + [SMALL_STATE(11054)] = 443218, + [SMALL_STATE(11055)] = 443232, + [SMALL_STATE(11056)] = 443246, + [SMALL_STATE(11057)] = 443260, + [SMALL_STATE(11058)] = 443274, + [SMALL_STATE(11059)] = 443288, + [SMALL_STATE(11060)] = 443302, + [SMALL_STATE(11061)] = 443316, + [SMALL_STATE(11062)] = 443330, + [SMALL_STATE(11063)] = 443344, + [SMALL_STATE(11064)] = 443358, + [SMALL_STATE(11065)] = 443372, + [SMALL_STATE(11066)] = 443386, + [SMALL_STATE(11067)] = 443400, + [SMALL_STATE(11068)] = 443414, + [SMALL_STATE(11069)] = 443428, + [SMALL_STATE(11070)] = 443442, + [SMALL_STATE(11071)] = 443456, + [SMALL_STATE(11072)] = 443470, + [SMALL_STATE(11073)] = 443484, + [SMALL_STATE(11074)] = 443498, + [SMALL_STATE(11075)] = 443512, + [SMALL_STATE(11076)] = 443526, + [SMALL_STATE(11077)] = 443540, + [SMALL_STATE(11078)] = 443554, + [SMALL_STATE(11079)] = 443568, + [SMALL_STATE(11080)] = 443582, + [SMALL_STATE(11081)] = 443596, + [SMALL_STATE(11082)] = 443610, + [SMALL_STATE(11083)] = 443624, + [SMALL_STATE(11084)] = 443638, + [SMALL_STATE(11085)] = 443652, + [SMALL_STATE(11086)] = 443666, + [SMALL_STATE(11087)] = 443680, + [SMALL_STATE(11088)] = 443694, + [SMALL_STATE(11089)] = 443708, + [SMALL_STATE(11090)] = 443722, + [SMALL_STATE(11091)] = 443736, + [SMALL_STATE(11092)] = 443752, + [SMALL_STATE(11093)] = 443766, + [SMALL_STATE(11094)] = 443780, + [SMALL_STATE(11095)] = 443794, + [SMALL_STATE(11096)] = 443808, + [SMALL_STATE(11097)] = 443822, + [SMALL_STATE(11098)] = 443836, + [SMALL_STATE(11099)] = 443850, + [SMALL_STATE(11100)] = 443864, + [SMALL_STATE(11101)] = 443878, + [SMALL_STATE(11102)] = 443892, + [SMALL_STATE(11103)] = 443906, + [SMALL_STATE(11104)] = 443920, + [SMALL_STATE(11105)] = 443934, + [SMALL_STATE(11106)] = 443948, + [SMALL_STATE(11107)] = 443962, + [SMALL_STATE(11108)] = 443976, + [SMALL_STATE(11109)] = 443990, + [SMALL_STATE(11110)] = 444004, + [SMALL_STATE(11111)] = 444018, + [SMALL_STATE(11112)] = 444032, + [SMALL_STATE(11113)] = 444046, + [SMALL_STATE(11114)] = 444060, + [SMALL_STATE(11115)] = 444074, + [SMALL_STATE(11116)] = 444088, + [SMALL_STATE(11117)] = 444102, + [SMALL_STATE(11118)] = 444116, + [SMALL_STATE(11119)] = 444130, + [SMALL_STATE(11120)] = 444144, + [SMALL_STATE(11121)] = 444158, + [SMALL_STATE(11122)] = 444172, + [SMALL_STATE(11123)] = 444186, + [SMALL_STATE(11124)] = 444200, + [SMALL_STATE(11125)] = 444214, + [SMALL_STATE(11126)] = 444228, + [SMALL_STATE(11127)] = 444242, + [SMALL_STATE(11128)] = 444256, + [SMALL_STATE(11129)] = 444270, + [SMALL_STATE(11130)] = 444284, + [SMALL_STATE(11131)] = 444298, + [SMALL_STATE(11132)] = 444312, + [SMALL_STATE(11133)] = 444326, + [SMALL_STATE(11134)] = 444340, + [SMALL_STATE(11135)] = 444354, + [SMALL_STATE(11136)] = 444368, + [SMALL_STATE(11137)] = 444382, + [SMALL_STATE(11138)] = 444396, + [SMALL_STATE(11139)] = 444410, + [SMALL_STATE(11140)] = 444424, + [SMALL_STATE(11141)] = 444438, + [SMALL_STATE(11142)] = 444452, + [SMALL_STATE(11143)] = 444466, + [SMALL_STATE(11144)] = 444480, + [SMALL_STATE(11145)] = 444494, + [SMALL_STATE(11146)] = 444508, + [SMALL_STATE(11147)] = 444522, + [SMALL_STATE(11148)] = 444536, + [SMALL_STATE(11149)] = 444550, + [SMALL_STATE(11150)] = 444564, + [SMALL_STATE(11151)] = 444578, + [SMALL_STATE(11152)] = 444592, + [SMALL_STATE(11153)] = 444606, + [SMALL_STATE(11154)] = 444620, + [SMALL_STATE(11155)] = 444634, + [SMALL_STATE(11156)] = 444648, + [SMALL_STATE(11157)] = 444662, + [SMALL_STATE(11158)] = 444676, + [SMALL_STATE(11159)] = 444690, + [SMALL_STATE(11160)] = 444704, + [SMALL_STATE(11161)] = 444718, + [SMALL_STATE(11162)] = 444732, + [SMALL_STATE(11163)] = 444746, + [SMALL_STATE(11164)] = 444760, + [SMALL_STATE(11165)] = 444774, + [SMALL_STATE(11166)] = 444788, + [SMALL_STATE(11167)] = 444802, + [SMALL_STATE(11168)] = 444816, + [SMALL_STATE(11169)] = 444830, + [SMALL_STATE(11170)] = 444844, + [SMALL_STATE(11171)] = 444858, + [SMALL_STATE(11172)] = 444872, + [SMALL_STATE(11173)] = 444886, + [SMALL_STATE(11174)] = 444900, + [SMALL_STATE(11175)] = 444914, + [SMALL_STATE(11176)] = 444928, + [SMALL_STATE(11177)] = 444942, + [SMALL_STATE(11178)] = 444956, + [SMALL_STATE(11179)] = 444970, + [SMALL_STATE(11180)] = 444984, + [SMALL_STATE(11181)] = 444998, + [SMALL_STATE(11182)] = 445012, + [SMALL_STATE(11183)] = 445026, + [SMALL_STATE(11184)] = 445040, + [SMALL_STATE(11185)] = 445054, + [SMALL_STATE(11186)] = 445068, + [SMALL_STATE(11187)] = 445082, + [SMALL_STATE(11188)] = 445096, + [SMALL_STATE(11189)] = 445110, + [SMALL_STATE(11190)] = 445124, + [SMALL_STATE(11191)] = 445138, + [SMALL_STATE(11192)] = 445152, + [SMALL_STATE(11193)] = 445166, + [SMALL_STATE(11194)] = 445180, + [SMALL_STATE(11195)] = 445194, + [SMALL_STATE(11196)] = 445208, + [SMALL_STATE(11197)] = 445222, + [SMALL_STATE(11198)] = 445236, + [SMALL_STATE(11199)] = 445250, + [SMALL_STATE(11200)] = 445264, + [SMALL_STATE(11201)] = 445278, + [SMALL_STATE(11202)] = 445292, + [SMALL_STATE(11203)] = 445306, + [SMALL_STATE(11204)] = 445320, + [SMALL_STATE(11205)] = 445334, + [SMALL_STATE(11206)] = 445348, + [SMALL_STATE(11207)] = 445362, + [SMALL_STATE(11208)] = 445376, + [SMALL_STATE(11209)] = 445390, + [SMALL_STATE(11210)] = 445404, + [SMALL_STATE(11211)] = 445418, + [SMALL_STATE(11212)] = 445432, + [SMALL_STATE(11213)] = 445446, + [SMALL_STATE(11214)] = 445460, + [SMALL_STATE(11215)] = 445474, + [SMALL_STATE(11216)] = 445488, + [SMALL_STATE(11217)] = 445502, + [SMALL_STATE(11218)] = 445516, + [SMALL_STATE(11219)] = 445530, + [SMALL_STATE(11220)] = 445544, + [SMALL_STATE(11221)] = 445558, + [SMALL_STATE(11222)] = 445572, + [SMALL_STATE(11223)] = 445586, + [SMALL_STATE(11224)] = 445600, + [SMALL_STATE(11225)] = 445614, + [SMALL_STATE(11226)] = 445628, + [SMALL_STATE(11227)] = 445642, + [SMALL_STATE(11228)] = 445656, + [SMALL_STATE(11229)] = 445670, + [SMALL_STATE(11230)] = 445684, + [SMALL_STATE(11231)] = 445698, + [SMALL_STATE(11232)] = 445712, + [SMALL_STATE(11233)] = 445726, + [SMALL_STATE(11234)] = 445740, + [SMALL_STATE(11235)] = 445754, + [SMALL_STATE(11236)] = 445768, + [SMALL_STATE(11237)] = 445782, + [SMALL_STATE(11238)] = 445796, + [SMALL_STATE(11239)] = 445810, + [SMALL_STATE(11240)] = 445824, + [SMALL_STATE(11241)] = 445838, + [SMALL_STATE(11242)] = 445852, + [SMALL_STATE(11243)] = 445866, + [SMALL_STATE(11244)] = 445880, + [SMALL_STATE(11245)] = 445894, + [SMALL_STATE(11246)] = 445910, + [SMALL_STATE(11247)] = 445924, + [SMALL_STATE(11248)] = 445938, + [SMALL_STATE(11249)] = 445952, + [SMALL_STATE(11250)] = 445966, + [SMALL_STATE(11251)] = 445980, + [SMALL_STATE(11252)] = 445994, + [SMALL_STATE(11253)] = 446008, + [SMALL_STATE(11254)] = 446022, + [SMALL_STATE(11255)] = 446036, + [SMALL_STATE(11256)] = 446050, + [SMALL_STATE(11257)] = 446064, + [SMALL_STATE(11258)] = 446078, + [SMALL_STATE(11259)] = 446092, + [SMALL_STATE(11260)] = 446106, + [SMALL_STATE(11261)] = 446120, + [SMALL_STATE(11262)] = 446134, + [SMALL_STATE(11263)] = 446148, + [SMALL_STATE(11264)] = 446162, + [SMALL_STATE(11265)] = 446176, + [SMALL_STATE(11266)] = 446190, + [SMALL_STATE(11267)] = 446204, + [SMALL_STATE(11268)] = 446218, + [SMALL_STATE(11269)] = 446232, + [SMALL_STATE(11270)] = 446246, + [SMALL_STATE(11271)] = 446260, + [SMALL_STATE(11272)] = 446274, + [SMALL_STATE(11273)] = 446288, + [SMALL_STATE(11274)] = 446302, + [SMALL_STATE(11275)] = 446316, + [SMALL_STATE(11276)] = 446330, + [SMALL_STATE(11277)] = 446344, + [SMALL_STATE(11278)] = 446358, + [SMALL_STATE(11279)] = 446372, + [SMALL_STATE(11280)] = 446386, + [SMALL_STATE(11281)] = 446400, + [SMALL_STATE(11282)] = 446414, + [SMALL_STATE(11283)] = 446428, + [SMALL_STATE(11284)] = 446442, + [SMALL_STATE(11285)] = 446456, + [SMALL_STATE(11286)] = 446470, + [SMALL_STATE(11287)] = 446484, + [SMALL_STATE(11288)] = 446498, + [SMALL_STATE(11289)] = 446512, + [SMALL_STATE(11290)] = 446526, + [SMALL_STATE(11291)] = 446540, + [SMALL_STATE(11292)] = 446556, + [SMALL_STATE(11293)] = 446570, + [SMALL_STATE(11294)] = 446584, + [SMALL_STATE(11295)] = 446598, + [SMALL_STATE(11296)] = 446612, + [SMALL_STATE(11297)] = 446626, + [SMALL_STATE(11298)] = 446640, + [SMALL_STATE(11299)] = 446654, + [SMALL_STATE(11300)] = 446668, + [SMALL_STATE(11301)] = 446682, + [SMALL_STATE(11302)] = 446696, + [SMALL_STATE(11303)] = 446710, + [SMALL_STATE(11304)] = 446724, + [SMALL_STATE(11305)] = 446738, + [SMALL_STATE(11306)] = 446752, + [SMALL_STATE(11307)] = 446766, + [SMALL_STATE(11308)] = 446780, + [SMALL_STATE(11309)] = 446794, + [SMALL_STATE(11310)] = 446808, + [SMALL_STATE(11311)] = 446822, + [SMALL_STATE(11312)] = 446836, + [SMALL_STATE(11313)] = 446850, + [SMALL_STATE(11314)] = 446864, + [SMALL_STATE(11315)] = 446878, + [SMALL_STATE(11316)] = 446892, + [SMALL_STATE(11317)] = 446906, + [SMALL_STATE(11318)] = 446920, + [SMALL_STATE(11319)] = 446934, + [SMALL_STATE(11320)] = 446948, + [SMALL_STATE(11321)] = 446962, + [SMALL_STATE(11322)] = 446976, + [SMALL_STATE(11323)] = 446990, + [SMALL_STATE(11324)] = 447004, + [SMALL_STATE(11325)] = 447018, + [SMALL_STATE(11326)] = 447032, + [SMALL_STATE(11327)] = 447046, + [SMALL_STATE(11328)] = 447060, + [SMALL_STATE(11329)] = 447074, + [SMALL_STATE(11330)] = 447088, + [SMALL_STATE(11331)] = 447102, + [SMALL_STATE(11332)] = 447116, + [SMALL_STATE(11333)] = 447130, + [SMALL_STATE(11334)] = 447144, + [SMALL_STATE(11335)] = 447158, + [SMALL_STATE(11336)] = 447172, + [SMALL_STATE(11337)] = 447186, + [SMALL_STATE(11338)] = 447200, + [SMALL_STATE(11339)] = 447214, + [SMALL_STATE(11340)] = 447228, + [SMALL_STATE(11341)] = 447242, + [SMALL_STATE(11342)] = 447256, + [SMALL_STATE(11343)] = 447270, + [SMALL_STATE(11344)] = 447284, + [SMALL_STATE(11345)] = 447298, + [SMALL_STATE(11346)] = 447312, + [SMALL_STATE(11347)] = 447326, + [SMALL_STATE(11348)] = 447340, + [SMALL_STATE(11349)] = 447354, + [SMALL_STATE(11350)] = 447368, + [SMALL_STATE(11351)] = 447382, + [SMALL_STATE(11352)] = 447398, + [SMALL_STATE(11353)] = 447412, + [SMALL_STATE(11354)] = 447426, + [SMALL_STATE(11355)] = 447440, + [SMALL_STATE(11356)] = 447454, + [SMALL_STATE(11357)] = 447468, + [SMALL_STATE(11358)] = 447482, + [SMALL_STATE(11359)] = 447496, + [SMALL_STATE(11360)] = 447510, + [SMALL_STATE(11361)] = 447524, + [SMALL_STATE(11362)] = 447538, + [SMALL_STATE(11363)] = 447552, + [SMALL_STATE(11364)] = 447566, + [SMALL_STATE(11365)] = 447580, + [SMALL_STATE(11366)] = 447594, + [SMALL_STATE(11367)] = 447608, + [SMALL_STATE(11368)] = 447622, + [SMALL_STATE(11369)] = 447636, + [SMALL_STATE(11370)] = 447650, + [SMALL_STATE(11371)] = 447664, + [SMALL_STATE(11372)] = 447678, + [SMALL_STATE(11373)] = 447692, + [SMALL_STATE(11374)] = 447706, + [SMALL_STATE(11375)] = 447720, + [SMALL_STATE(11376)] = 447734, + [SMALL_STATE(11377)] = 447748, + [SMALL_STATE(11378)] = 447762, + [SMALL_STATE(11379)] = 447776, + [SMALL_STATE(11380)] = 447790, + [SMALL_STATE(11381)] = 447804, + [SMALL_STATE(11382)] = 447818, + [SMALL_STATE(11383)] = 447832, + [SMALL_STATE(11384)] = 447846, + [SMALL_STATE(11385)] = 447860, + [SMALL_STATE(11386)] = 447874, + [SMALL_STATE(11387)] = 447888, + [SMALL_STATE(11388)] = 447902, + [SMALL_STATE(11389)] = 447916, + [SMALL_STATE(11390)] = 447930, + [SMALL_STATE(11391)] = 447944, + [SMALL_STATE(11392)] = 447958, + [SMALL_STATE(11393)] = 447972, + [SMALL_STATE(11394)] = 447986, + [SMALL_STATE(11395)] = 448000, + [SMALL_STATE(11396)] = 448014, + [SMALL_STATE(11397)] = 448028, + [SMALL_STATE(11398)] = 448042, + [SMALL_STATE(11399)] = 448056, + [SMALL_STATE(11400)] = 448070, + [SMALL_STATE(11401)] = 448084, + [SMALL_STATE(11402)] = 448098, + [SMALL_STATE(11403)] = 448112, + [SMALL_STATE(11404)] = 448126, + [SMALL_STATE(11405)] = 448140, + [SMALL_STATE(11406)] = 448154, + [SMALL_STATE(11407)] = 448168, + [SMALL_STATE(11408)] = 448182, + [SMALL_STATE(11409)] = 448196, + [SMALL_STATE(11410)] = 448210, + [SMALL_STATE(11411)] = 448224, + [SMALL_STATE(11412)] = 448238, + [SMALL_STATE(11413)] = 448252, + [SMALL_STATE(11414)] = 448266, + [SMALL_STATE(11415)] = 448280, + [SMALL_STATE(11416)] = 448296, + [SMALL_STATE(11417)] = 448310, + [SMALL_STATE(11418)] = 448324, + [SMALL_STATE(11419)] = 448338, + [SMALL_STATE(11420)] = 448352, + [SMALL_STATE(11421)] = 448366, + [SMALL_STATE(11422)] = 448380, + [SMALL_STATE(11423)] = 448394, + [SMALL_STATE(11424)] = 448408, + [SMALL_STATE(11425)] = 448422, + [SMALL_STATE(11426)] = 448436, + [SMALL_STATE(11427)] = 448450, + [SMALL_STATE(11428)] = 448464, + [SMALL_STATE(11429)] = 448478, + [SMALL_STATE(11430)] = 448492, + [SMALL_STATE(11431)] = 448506, + [SMALL_STATE(11432)] = 448520, + [SMALL_STATE(11433)] = 448534, + [SMALL_STATE(11434)] = 448548, + [SMALL_STATE(11435)] = 448562, + [SMALL_STATE(11436)] = 448576, + [SMALL_STATE(11437)] = 448590, + [SMALL_STATE(11438)] = 448604, + [SMALL_STATE(11439)] = 448618, + [SMALL_STATE(11440)] = 448632, + [SMALL_STATE(11441)] = 448646, + [SMALL_STATE(11442)] = 448660, + [SMALL_STATE(11443)] = 448674, + [SMALL_STATE(11444)] = 448688, + [SMALL_STATE(11445)] = 448702, + [SMALL_STATE(11446)] = 448716, + [SMALL_STATE(11447)] = 448730, + [SMALL_STATE(11448)] = 448744, + [SMALL_STATE(11449)] = 448758, + [SMALL_STATE(11450)] = 448772, + [SMALL_STATE(11451)] = 448786, + [SMALL_STATE(11452)] = 448800, + [SMALL_STATE(11453)] = 448814, + [SMALL_STATE(11454)] = 448828, + [SMALL_STATE(11455)] = 448842, + [SMALL_STATE(11456)] = 448856, + [SMALL_STATE(11457)] = 448870, + [SMALL_STATE(11458)] = 448884, + [SMALL_STATE(11459)] = 448898, + [SMALL_STATE(11460)] = 448912, + [SMALL_STATE(11461)] = 448926, + [SMALL_STATE(11462)] = 448940, + [SMALL_STATE(11463)] = 448954, + [SMALL_STATE(11464)] = 448968, + [SMALL_STATE(11465)] = 448982, + [SMALL_STATE(11466)] = 448996, + [SMALL_STATE(11467)] = 449010, + [SMALL_STATE(11468)] = 449024, + [SMALL_STATE(11469)] = 449038, + [SMALL_STATE(11470)] = 449052, + [SMALL_STATE(11471)] = 449066, + [SMALL_STATE(11472)] = 449080, + [SMALL_STATE(11473)] = 449094, + [SMALL_STATE(11474)] = 449108, + [SMALL_STATE(11475)] = 449122, + [SMALL_STATE(11476)] = 449136, + [SMALL_STATE(11477)] = 449150, + [SMALL_STATE(11478)] = 449164, + [SMALL_STATE(11479)] = 449178, + [SMALL_STATE(11480)] = 449192, + [SMALL_STATE(11481)] = 449206, + [SMALL_STATE(11482)] = 449220, + [SMALL_STATE(11483)] = 449234, + [SMALL_STATE(11484)] = 449248, + [SMALL_STATE(11485)] = 449262, + [SMALL_STATE(11486)] = 449276, + [SMALL_STATE(11487)] = 449290, + [SMALL_STATE(11488)] = 449304, + [SMALL_STATE(11489)] = 449318, + [SMALL_STATE(11490)] = 449332, + [SMALL_STATE(11491)] = 449346, + [SMALL_STATE(11492)] = 449360, + [SMALL_STATE(11493)] = 449374, + [SMALL_STATE(11494)] = 449388, + [SMALL_STATE(11495)] = 449402, + [SMALL_STATE(11496)] = 449416, + [SMALL_STATE(11497)] = 449430, + [SMALL_STATE(11498)] = 449444, + [SMALL_STATE(11499)] = 449458, + [SMALL_STATE(11500)] = 449472, + [SMALL_STATE(11501)] = 449486, + [SMALL_STATE(11502)] = 449500, + [SMALL_STATE(11503)] = 449514, + [SMALL_STATE(11504)] = 449528, + [SMALL_STATE(11505)] = 449542, + [SMALL_STATE(11506)] = 449556, + [SMALL_STATE(11507)] = 449570, + [SMALL_STATE(11508)] = 449584, + [SMALL_STATE(11509)] = 449598, + [SMALL_STATE(11510)] = 449612, + [SMALL_STATE(11511)] = 449626, + [SMALL_STATE(11512)] = 449640, + [SMALL_STATE(11513)] = 449654, + [SMALL_STATE(11514)] = 449668, + [SMALL_STATE(11515)] = 449682, + [SMALL_STATE(11516)] = 449696, + [SMALL_STATE(11517)] = 449710, + [SMALL_STATE(11518)] = 449724, + [SMALL_STATE(11519)] = 449738, + [SMALL_STATE(11520)] = 449752, + [SMALL_STATE(11521)] = 449766, + [SMALL_STATE(11522)] = 449780, + [SMALL_STATE(11523)] = 449794, + [SMALL_STATE(11524)] = 449808, + [SMALL_STATE(11525)] = 449822, + [SMALL_STATE(11526)] = 449836, + [SMALL_STATE(11527)] = 449850, + [SMALL_STATE(11528)] = 449864, + [SMALL_STATE(11529)] = 449878, + [SMALL_STATE(11530)] = 449892, + [SMALL_STATE(11531)] = 449906, + [SMALL_STATE(11532)] = 449920, + [SMALL_STATE(11533)] = 449934, + [SMALL_STATE(11534)] = 449948, + [SMALL_STATE(11535)] = 449962, + [SMALL_STATE(11536)] = 449976, + [SMALL_STATE(11537)] = 449990, + [SMALL_STATE(11538)] = 450004, + [SMALL_STATE(11539)] = 450018, + [SMALL_STATE(11540)] = 450032, + [SMALL_STATE(11541)] = 450046, + [SMALL_STATE(11542)] = 450060, + [SMALL_STATE(11543)] = 450074, + [SMALL_STATE(11544)] = 450088, + [SMALL_STATE(11545)] = 450102, + [SMALL_STATE(11546)] = 450116, + [SMALL_STATE(11547)] = 450130, + [SMALL_STATE(11548)] = 450144, + [SMALL_STATE(11549)] = 450158, + [SMALL_STATE(11550)] = 450172, + [SMALL_STATE(11551)] = 450186, + [SMALL_STATE(11552)] = 450200, + [SMALL_STATE(11553)] = 450214, + [SMALL_STATE(11554)] = 450228, + [SMALL_STATE(11555)] = 450242, + [SMALL_STATE(11556)] = 450256, + [SMALL_STATE(11557)] = 450270, + [SMALL_STATE(11558)] = 450284, + [SMALL_STATE(11559)] = 450298, + [SMALL_STATE(11560)] = 450312, + [SMALL_STATE(11561)] = 450326, + [SMALL_STATE(11562)] = 450340, + [SMALL_STATE(11563)] = 450354, + [SMALL_STATE(11564)] = 450368, + [SMALL_STATE(11565)] = 450382, + [SMALL_STATE(11566)] = 450396, + [SMALL_STATE(11567)] = 450410, + [SMALL_STATE(11568)] = 450424, + [SMALL_STATE(11569)] = 450438, + [SMALL_STATE(11570)] = 450452, + [SMALL_STATE(11571)] = 450466, + [SMALL_STATE(11572)] = 450480, + [SMALL_STATE(11573)] = 450494, + [SMALL_STATE(11574)] = 450508, + [SMALL_STATE(11575)] = 450522, + [SMALL_STATE(11576)] = 450536, + [SMALL_STATE(11577)] = 450550, + [SMALL_STATE(11578)] = 450564, + [SMALL_STATE(11579)] = 450578, + [SMALL_STATE(11580)] = 450592, + [SMALL_STATE(11581)] = 450606, + [SMALL_STATE(11582)] = 450620, + [SMALL_STATE(11583)] = 450634, + [SMALL_STATE(11584)] = 450648, + [SMALL_STATE(11585)] = 450662, + [SMALL_STATE(11586)] = 450676, + [SMALL_STATE(11587)] = 450690, + [SMALL_STATE(11588)] = 450704, + [SMALL_STATE(11589)] = 450718, + [SMALL_STATE(11590)] = 450732, + [SMALL_STATE(11591)] = 450746, + [SMALL_STATE(11592)] = 450760, + [SMALL_STATE(11593)] = 450774, + [SMALL_STATE(11594)] = 450788, + [SMALL_STATE(11595)] = 450802, + [SMALL_STATE(11596)] = 450816, + [SMALL_STATE(11597)] = 450830, + [SMALL_STATE(11598)] = 450844, + [SMALL_STATE(11599)] = 450858, + [SMALL_STATE(11600)] = 450872, + [SMALL_STATE(11601)] = 450886, + [SMALL_STATE(11602)] = 450900, + [SMALL_STATE(11603)] = 450914, + [SMALL_STATE(11604)] = 450928, + [SMALL_STATE(11605)] = 450942, + [SMALL_STATE(11606)] = 450956, + [SMALL_STATE(11607)] = 450970, + [SMALL_STATE(11608)] = 450984, + [SMALL_STATE(11609)] = 450998, + [SMALL_STATE(11610)] = 451012, + [SMALL_STATE(11611)] = 451026, + [SMALL_STATE(11612)] = 451040, + [SMALL_STATE(11613)] = 451054, + [SMALL_STATE(11614)] = 451068, + [SMALL_STATE(11615)] = 451082, + [SMALL_STATE(11616)] = 451096, + [SMALL_STATE(11617)] = 451110, + [SMALL_STATE(11618)] = 451124, + [SMALL_STATE(11619)] = 451138, + [SMALL_STATE(11620)] = 451152, + [SMALL_STATE(11621)] = 451166, + [SMALL_STATE(11622)] = 451182, + [SMALL_STATE(11623)] = 451196, + [SMALL_STATE(11624)] = 451210, + [SMALL_STATE(11625)] = 451224, + [SMALL_STATE(11626)] = 451238, + [SMALL_STATE(11627)] = 451252, + [SMALL_STATE(11628)] = 451266, + [SMALL_STATE(11629)] = 451280, + [SMALL_STATE(11630)] = 451294, + [SMALL_STATE(11631)] = 451308, + [SMALL_STATE(11632)] = 451322, + [SMALL_STATE(11633)] = 451336, + [SMALL_STATE(11634)] = 451350, + [SMALL_STATE(11635)] = 451364, + [SMALL_STATE(11636)] = 451378, + [SMALL_STATE(11637)] = 451392, + [SMALL_STATE(11638)] = 451406, + [SMALL_STATE(11639)] = 451420, + [SMALL_STATE(11640)] = 451434, + [SMALL_STATE(11641)] = 451448, + [SMALL_STATE(11642)] = 451462, + [SMALL_STATE(11643)] = 451476, + [SMALL_STATE(11644)] = 451490, + [SMALL_STATE(11645)] = 451504, + [SMALL_STATE(11646)] = 451518, + [SMALL_STATE(11647)] = 451532, + [SMALL_STATE(11648)] = 451546, + [SMALL_STATE(11649)] = 451560, + [SMALL_STATE(11650)] = 451574, + [SMALL_STATE(11651)] = 451588, + [SMALL_STATE(11652)] = 451602, + [SMALL_STATE(11653)] = 451616, + [SMALL_STATE(11654)] = 451630, + [SMALL_STATE(11655)] = 451644, + [SMALL_STATE(11656)] = 451658, + [SMALL_STATE(11657)] = 451672, + [SMALL_STATE(11658)] = 451686, + [SMALL_STATE(11659)] = 451700, + [SMALL_STATE(11660)] = 451714, + [SMALL_STATE(11661)] = 451728, + [SMALL_STATE(11662)] = 451742, + [SMALL_STATE(11663)] = 451756, + [SMALL_STATE(11664)] = 451770, + [SMALL_STATE(11665)] = 451784, + [SMALL_STATE(11666)] = 451798, + [SMALL_STATE(11667)] = 451812, + [SMALL_STATE(11668)] = 451826, + [SMALL_STATE(11669)] = 451840, + [SMALL_STATE(11670)] = 451854, + [SMALL_STATE(11671)] = 451868, + [SMALL_STATE(11672)] = 451882, + [SMALL_STATE(11673)] = 451896, + [SMALL_STATE(11674)] = 451910, + [SMALL_STATE(11675)] = 451924, + [SMALL_STATE(11676)] = 451938, + [SMALL_STATE(11677)] = 451952, + [SMALL_STATE(11678)] = 451966, + [SMALL_STATE(11679)] = 451980, + [SMALL_STATE(11680)] = 451994, + [SMALL_STATE(11681)] = 452008, + [SMALL_STATE(11682)] = 452022, + [SMALL_STATE(11683)] = 452036, + [SMALL_STATE(11684)] = 452050, + [SMALL_STATE(11685)] = 452064, + [SMALL_STATE(11686)] = 452078, + [SMALL_STATE(11687)] = 452092, + [SMALL_STATE(11688)] = 452106, + [SMALL_STATE(11689)] = 452120, + [SMALL_STATE(11690)] = 452134, + [SMALL_STATE(11691)] = 452148, + [SMALL_STATE(11692)] = 452162, + [SMALL_STATE(11693)] = 452176, + [SMALL_STATE(11694)] = 452192, + [SMALL_STATE(11695)] = 452206, + [SMALL_STATE(11696)] = 452220, + [SMALL_STATE(11697)] = 452234, + [SMALL_STATE(11698)] = 452248, + [SMALL_STATE(11699)] = 452262, + [SMALL_STATE(11700)] = 452276, + [SMALL_STATE(11701)] = 452290, + [SMALL_STATE(11702)] = 452304, + [SMALL_STATE(11703)] = 452318, + [SMALL_STATE(11704)] = 452332, + [SMALL_STATE(11705)] = 452346, + [SMALL_STATE(11706)] = 452360, + [SMALL_STATE(11707)] = 452374, + [SMALL_STATE(11708)] = 452388, + [SMALL_STATE(11709)] = 452402, + [SMALL_STATE(11710)] = 452416, + [SMALL_STATE(11711)] = 452430, + [SMALL_STATE(11712)] = 452444, + [SMALL_STATE(11713)] = 452458, + [SMALL_STATE(11714)] = 452472, + [SMALL_STATE(11715)] = 452486, + [SMALL_STATE(11716)] = 452500, + [SMALL_STATE(11717)] = 452514, + [SMALL_STATE(11718)] = 452528, + [SMALL_STATE(11719)] = 452542, + [SMALL_STATE(11720)] = 452556, + [SMALL_STATE(11721)] = 452570, + [SMALL_STATE(11722)] = 452584, + [SMALL_STATE(11723)] = 452598, + [SMALL_STATE(11724)] = 452612, + [SMALL_STATE(11725)] = 452626, + [SMALL_STATE(11726)] = 452640, + [SMALL_STATE(11727)] = 452654, + [SMALL_STATE(11728)] = 452668, + [SMALL_STATE(11729)] = 452682, + [SMALL_STATE(11730)] = 452696, + [SMALL_STATE(11731)] = 452710, + [SMALL_STATE(11732)] = 452724, + [SMALL_STATE(11733)] = 452738, + [SMALL_STATE(11734)] = 452752, + [SMALL_STATE(11735)] = 452766, + [SMALL_STATE(11736)] = 452780, + [SMALL_STATE(11737)] = 452794, + [SMALL_STATE(11738)] = 452808, + [SMALL_STATE(11739)] = 452822, + [SMALL_STATE(11740)] = 452836, + [SMALL_STATE(11741)] = 452850, + [SMALL_STATE(11742)] = 452864, + [SMALL_STATE(11743)] = 452878, + [SMALL_STATE(11744)] = 452892, + [SMALL_STATE(11745)] = 452906, + [SMALL_STATE(11746)] = 452920, + [SMALL_STATE(11747)] = 452934, + [SMALL_STATE(11748)] = 452948, + [SMALL_STATE(11749)] = 452962, + [SMALL_STATE(11750)] = 452976, + [SMALL_STATE(11751)] = 452990, + [SMALL_STATE(11752)] = 453004, + [SMALL_STATE(11753)] = 453018, + [SMALL_STATE(11754)] = 453032, + [SMALL_STATE(11755)] = 453046, + [SMALL_STATE(11756)] = 453060, + [SMALL_STATE(11757)] = 453074, + [SMALL_STATE(11758)] = 453088, + [SMALL_STATE(11759)] = 453102, + [SMALL_STATE(11760)] = 453116, + [SMALL_STATE(11761)] = 453130, + [SMALL_STATE(11762)] = 453144, + [SMALL_STATE(11763)] = 453158, + [SMALL_STATE(11764)] = 453172, + [SMALL_STATE(11765)] = 453186, + [SMALL_STATE(11766)] = 453200, + [SMALL_STATE(11767)] = 453214, + [SMALL_STATE(11768)] = 453230, + [SMALL_STATE(11769)] = 453244, + [SMALL_STATE(11770)] = 453258, + [SMALL_STATE(11771)] = 453272, + [SMALL_STATE(11772)] = 453286, + [SMALL_STATE(11773)] = 453300, + [SMALL_STATE(11774)] = 453314, + [SMALL_STATE(11775)] = 453328, + [SMALL_STATE(11776)] = 453342, + [SMALL_STATE(11777)] = 453356, + [SMALL_STATE(11778)] = 453370, + [SMALL_STATE(11779)] = 453384, + [SMALL_STATE(11780)] = 453398, + [SMALL_STATE(11781)] = 453412, + [SMALL_STATE(11782)] = 453426, + [SMALL_STATE(11783)] = 453440, + [SMALL_STATE(11784)] = 453454, + [SMALL_STATE(11785)] = 453468, + [SMALL_STATE(11786)] = 453482, + [SMALL_STATE(11787)] = 453496, + [SMALL_STATE(11788)] = 453510, + [SMALL_STATE(11789)] = 453524, + [SMALL_STATE(11790)] = 453540, + [SMALL_STATE(11791)] = 453554, + [SMALL_STATE(11792)] = 453568, + [SMALL_STATE(11793)] = 453582, + [SMALL_STATE(11794)] = 453596, + [SMALL_STATE(11795)] = 453610, + [SMALL_STATE(11796)] = 453624, + [SMALL_STATE(11797)] = 453638, + [SMALL_STATE(11798)] = 453652, + [SMALL_STATE(11799)] = 453666, + [SMALL_STATE(11800)] = 453680, + [SMALL_STATE(11801)] = 453694, + [SMALL_STATE(11802)] = 453708, + [SMALL_STATE(11803)] = 453722, + [SMALL_STATE(11804)] = 453736, + [SMALL_STATE(11805)] = 453750, + [SMALL_STATE(11806)] = 453764, + [SMALL_STATE(11807)] = 453778, + [SMALL_STATE(11808)] = 453792, + [SMALL_STATE(11809)] = 453806, + [SMALL_STATE(11810)] = 453820, + [SMALL_STATE(11811)] = 453834, + [SMALL_STATE(11812)] = 453848, + [SMALL_STATE(11813)] = 453862, + [SMALL_STATE(11814)] = 453876, + [SMALL_STATE(11815)] = 453890, + [SMALL_STATE(11816)] = 453906, + [SMALL_STATE(11817)] = 453920, + [SMALL_STATE(11818)] = 453934, + [SMALL_STATE(11819)] = 453948, + [SMALL_STATE(11820)] = 453962, + [SMALL_STATE(11821)] = 453976, + [SMALL_STATE(11822)] = 453990, + [SMALL_STATE(11823)] = 454004, + [SMALL_STATE(11824)] = 454018, + [SMALL_STATE(11825)] = 454032, + [SMALL_STATE(11826)] = 454046, + [SMALL_STATE(11827)] = 454060, + [SMALL_STATE(11828)] = 454074, + [SMALL_STATE(11829)] = 454088, + [SMALL_STATE(11830)] = 454102, + [SMALL_STATE(11831)] = 454116, + [SMALL_STATE(11832)] = 454130, + [SMALL_STATE(11833)] = 454144, + [SMALL_STATE(11834)] = 454158, + [SMALL_STATE(11835)] = 454172, + [SMALL_STATE(11836)] = 454186, + [SMALL_STATE(11837)] = 454200, + [SMALL_STATE(11838)] = 454214, + [SMALL_STATE(11839)] = 454228, + [SMALL_STATE(11840)] = 454242, + [SMALL_STATE(11841)] = 454256, + [SMALL_STATE(11842)] = 454270, + [SMALL_STATE(11843)] = 454284, + [SMALL_STATE(11844)] = 454298, + [SMALL_STATE(11845)] = 454312, + [SMALL_STATE(11846)] = 454326, + [SMALL_STATE(11847)] = 454340, + [SMALL_STATE(11848)] = 454354, + [SMALL_STATE(11849)] = 454368, + [SMALL_STATE(11850)] = 454382, + [SMALL_STATE(11851)] = 454396, + [SMALL_STATE(11852)] = 454410, + [SMALL_STATE(11853)] = 454424, + [SMALL_STATE(11854)] = 454438, + [SMALL_STATE(11855)] = 454452, + [SMALL_STATE(11856)] = 454466, + [SMALL_STATE(11857)] = 454480, + [SMALL_STATE(11858)] = 454494, + [SMALL_STATE(11859)] = 454508, + [SMALL_STATE(11860)] = 454522, + [SMALL_STATE(11861)] = 454536, + [SMALL_STATE(11862)] = 454550, + [SMALL_STATE(11863)] = 454564, + [SMALL_STATE(11864)] = 454578, + [SMALL_STATE(11865)] = 454592, + [SMALL_STATE(11866)] = 454606, + [SMALL_STATE(11867)] = 454620, + [SMALL_STATE(11868)] = 454634, + [SMALL_STATE(11869)] = 454648, + [SMALL_STATE(11870)] = 454662, + [SMALL_STATE(11871)] = 454676, + [SMALL_STATE(11872)] = 454690, + [SMALL_STATE(11873)] = 454704, + [SMALL_STATE(11874)] = 454718, + [SMALL_STATE(11875)] = 454732, + [SMALL_STATE(11876)] = 454746, + [SMALL_STATE(11877)] = 454760, + [SMALL_STATE(11878)] = 454774, + [SMALL_STATE(11879)] = 454788, + [SMALL_STATE(11880)] = 454802, + [SMALL_STATE(11881)] = 454816, + [SMALL_STATE(11882)] = 454830, + [SMALL_STATE(11883)] = 454844, + [SMALL_STATE(11884)] = 454858, + [SMALL_STATE(11885)] = 454872, + [SMALL_STATE(11886)] = 454886, + [SMALL_STATE(11887)] = 454900, + [SMALL_STATE(11888)] = 454916, + [SMALL_STATE(11889)] = 454930, + [SMALL_STATE(11890)] = 454944, + [SMALL_STATE(11891)] = 454958, + [SMALL_STATE(11892)] = 454972, + [SMALL_STATE(11893)] = 454986, + [SMALL_STATE(11894)] = 455000, + [SMALL_STATE(11895)] = 455014, + [SMALL_STATE(11896)] = 455028, + [SMALL_STATE(11897)] = 455042, + [SMALL_STATE(11898)] = 455056, + [SMALL_STATE(11899)] = 455070, + [SMALL_STATE(11900)] = 455084, + [SMALL_STATE(11901)] = 455098, + [SMALL_STATE(11902)] = 455112, + [SMALL_STATE(11903)] = 455126, + [SMALL_STATE(11904)] = 455140, + [SMALL_STATE(11905)] = 455154, + [SMALL_STATE(11906)] = 455168, + [SMALL_STATE(11907)] = 455182, + [SMALL_STATE(11908)] = 455196, + [SMALL_STATE(11909)] = 455210, + [SMALL_STATE(11910)] = 455224, + [SMALL_STATE(11911)] = 455238, + [SMALL_STATE(11912)] = 455252, + [SMALL_STATE(11913)] = 455266, + [SMALL_STATE(11914)] = 455280, + [SMALL_STATE(11915)] = 455294, + [SMALL_STATE(11916)] = 455308, + [SMALL_STATE(11917)] = 455322, + [SMALL_STATE(11918)] = 455336, + [SMALL_STATE(11919)] = 455350, + [SMALL_STATE(11920)] = 455364, + [SMALL_STATE(11921)] = 455378, + [SMALL_STATE(11922)] = 455392, + [SMALL_STATE(11923)] = 455406, + [SMALL_STATE(11924)] = 455420, + [SMALL_STATE(11925)] = 455434, + [SMALL_STATE(11926)] = 455448, + [SMALL_STATE(11927)] = 455462, + [SMALL_STATE(11928)] = 455476, + [SMALL_STATE(11929)] = 455490, + [SMALL_STATE(11930)] = 455504, + [SMALL_STATE(11931)] = 455518, + [SMALL_STATE(11932)] = 455532, + [SMALL_STATE(11933)] = 455546, + [SMALL_STATE(11934)] = 455560, + [SMALL_STATE(11935)] = 455574, + [SMALL_STATE(11936)] = 455588, + [SMALL_STATE(11937)] = 455602, + [SMALL_STATE(11938)] = 455616, + [SMALL_STATE(11939)] = 455630, + [SMALL_STATE(11940)] = 455644, + [SMALL_STATE(11941)] = 455658, + [SMALL_STATE(11942)] = 455672, + [SMALL_STATE(11943)] = 455686, + [SMALL_STATE(11944)] = 455700, + [SMALL_STATE(11945)] = 455714, + [SMALL_STATE(11946)] = 455728, + [SMALL_STATE(11947)] = 455742, + [SMALL_STATE(11948)] = 455756, + [SMALL_STATE(11949)] = 455770, + [SMALL_STATE(11950)] = 455784, + [SMALL_STATE(11951)] = 455798, + [SMALL_STATE(11952)] = 455812, + [SMALL_STATE(11953)] = 455826, + [SMALL_STATE(11954)] = 455840, + [SMALL_STATE(11955)] = 455854, + [SMALL_STATE(11956)] = 455868, + [SMALL_STATE(11957)] = 455882, + [SMALL_STATE(11958)] = 455896, + [SMALL_STATE(11959)] = 455910, + [SMALL_STATE(11960)] = 455924, + [SMALL_STATE(11961)] = 455938, + [SMALL_STATE(11962)] = 455952, + [SMALL_STATE(11963)] = 455966, + [SMALL_STATE(11964)] = 455980, + [SMALL_STATE(11965)] = 455994, + [SMALL_STATE(11966)] = 456008, + [SMALL_STATE(11967)] = 456022, + [SMALL_STATE(11968)] = 456036, + [SMALL_STATE(11969)] = 456050, + [SMALL_STATE(11970)] = 456064, + [SMALL_STATE(11971)] = 456078, + [SMALL_STATE(11972)] = 456092, + [SMALL_STATE(11973)] = 456106, + [SMALL_STATE(11974)] = 456120, + [SMALL_STATE(11975)] = 456134, + [SMALL_STATE(11976)] = 456148, + [SMALL_STATE(11977)] = 456162, + [SMALL_STATE(11978)] = 456176, + [SMALL_STATE(11979)] = 456190, + [SMALL_STATE(11980)] = 456204, + [SMALL_STATE(11981)] = 456218, + [SMALL_STATE(11982)] = 456232, + [SMALL_STATE(11983)] = 456246, + [SMALL_STATE(11984)] = 456260, + [SMALL_STATE(11985)] = 456274, + [SMALL_STATE(11986)] = 456288, + [SMALL_STATE(11987)] = 456302, + [SMALL_STATE(11988)] = 456316, + [SMALL_STATE(11989)] = 456330, + [SMALL_STATE(11990)] = 456344, + [SMALL_STATE(11991)] = 456358, + [SMALL_STATE(11992)] = 456372, + [SMALL_STATE(11993)] = 456388, + [SMALL_STATE(11994)] = 456402, + [SMALL_STATE(11995)] = 456416, + [SMALL_STATE(11996)] = 456430, + [SMALL_STATE(11997)] = 456444, + [SMALL_STATE(11998)] = 456458, + [SMALL_STATE(11999)] = 456472, + [SMALL_STATE(12000)] = 456486, + [SMALL_STATE(12001)] = 456500, + [SMALL_STATE(12002)] = 456514, + [SMALL_STATE(12003)] = 456528, + [SMALL_STATE(12004)] = 456542, + [SMALL_STATE(12005)] = 456556, + [SMALL_STATE(12006)] = 456570, + [SMALL_STATE(12007)] = 456584, + [SMALL_STATE(12008)] = 456598, + [SMALL_STATE(12009)] = 456612, + [SMALL_STATE(12010)] = 456626, + [SMALL_STATE(12011)] = 456640, + [SMALL_STATE(12012)] = 456654, + [SMALL_STATE(12013)] = 456668, + [SMALL_STATE(12014)] = 456682, + [SMALL_STATE(12015)] = 456696, + [SMALL_STATE(12016)] = 456710, + [SMALL_STATE(12017)] = 456724, + [SMALL_STATE(12018)] = 456738, + [SMALL_STATE(12019)] = 456752, + [SMALL_STATE(12020)] = 456766, + [SMALL_STATE(12021)] = 456780, + [SMALL_STATE(12022)] = 456794, + [SMALL_STATE(12023)] = 456808, + [SMALL_STATE(12024)] = 456822, + [SMALL_STATE(12025)] = 456836, + [SMALL_STATE(12026)] = 456850, + [SMALL_STATE(12027)] = 456864, + [SMALL_STATE(12028)] = 456878, + [SMALL_STATE(12029)] = 456892, + [SMALL_STATE(12030)] = 456906, + [SMALL_STATE(12031)] = 456920, + [SMALL_STATE(12032)] = 456934, + [SMALL_STATE(12033)] = 456948, + [SMALL_STATE(12034)] = 456962, + [SMALL_STATE(12035)] = 456976, + [SMALL_STATE(12036)] = 456990, + [SMALL_STATE(12037)] = 457004, + [SMALL_STATE(12038)] = 457018, + [SMALL_STATE(12039)] = 457032, + [SMALL_STATE(12040)] = 457046, + [SMALL_STATE(12041)] = 457060, + [SMALL_STATE(12042)] = 457074, + [SMALL_STATE(12043)] = 457088, + [SMALL_STATE(12044)] = 457104, + [SMALL_STATE(12045)] = 457118, + [SMALL_STATE(12046)] = 457132, + [SMALL_STATE(12047)] = 457146, + [SMALL_STATE(12048)] = 457160, + [SMALL_STATE(12049)] = 457174, + [SMALL_STATE(12050)] = 457188, + [SMALL_STATE(12051)] = 457202, + [SMALL_STATE(12052)] = 457216, + [SMALL_STATE(12053)] = 457230, + [SMALL_STATE(12054)] = 457244, + [SMALL_STATE(12055)] = 457258, + [SMALL_STATE(12056)] = 457272, + [SMALL_STATE(12057)] = 457286, + [SMALL_STATE(12058)] = 457300, + [SMALL_STATE(12059)] = 457314, + [SMALL_STATE(12060)] = 457328, + [SMALL_STATE(12061)] = 457342, + [SMALL_STATE(12062)] = 457356, + [SMALL_STATE(12063)] = 457370, + [SMALL_STATE(12064)] = 457384, + [SMALL_STATE(12065)] = 457398, + [SMALL_STATE(12066)] = 457412, + [SMALL_STATE(12067)] = 457426, + [SMALL_STATE(12068)] = 457440, + [SMALL_STATE(12069)] = 457454, + [SMALL_STATE(12070)] = 457468, + [SMALL_STATE(12071)] = 457482, + [SMALL_STATE(12072)] = 457496, + [SMALL_STATE(12073)] = 457510, + [SMALL_STATE(12074)] = 457524, + [SMALL_STATE(12075)] = 457538, + [SMALL_STATE(12076)] = 457552, + [SMALL_STATE(12077)] = 457566, + [SMALL_STATE(12078)] = 457580, + [SMALL_STATE(12079)] = 457594, + [SMALL_STATE(12080)] = 457608, + [SMALL_STATE(12081)] = 457622, + [SMALL_STATE(12082)] = 457636, + [SMALL_STATE(12083)] = 457650, + [SMALL_STATE(12084)] = 457664, + [SMALL_STATE(12085)] = 457678, + [SMALL_STATE(12086)] = 457692, + [SMALL_STATE(12087)] = 457706, + [SMALL_STATE(12088)] = 457720, + [SMALL_STATE(12089)] = 457734, + [SMALL_STATE(12090)] = 457748, + [SMALL_STATE(12091)] = 457762, + [SMALL_STATE(12092)] = 457776, + [SMALL_STATE(12093)] = 457790, + [SMALL_STATE(12094)] = 457804, + [SMALL_STATE(12095)] = 457818, + [SMALL_STATE(12096)] = 457832, + [SMALL_STATE(12097)] = 457846, + [SMALL_STATE(12098)] = 457860, + [SMALL_STATE(12099)] = 457874, + [SMALL_STATE(12100)] = 457888, + [SMALL_STATE(12101)] = 457902, + [SMALL_STATE(12102)] = 457916, + [SMALL_STATE(12103)] = 457930, + [SMALL_STATE(12104)] = 457944, + [SMALL_STATE(12105)] = 457958, + [SMALL_STATE(12106)] = 457972, + [SMALL_STATE(12107)] = 457986, + [SMALL_STATE(12108)] = 458000, + [SMALL_STATE(12109)] = 458014, + [SMALL_STATE(12110)] = 458028, + [SMALL_STATE(12111)] = 458042, + [SMALL_STATE(12112)] = 458056, + [SMALL_STATE(12113)] = 458070, + [SMALL_STATE(12114)] = 458084, + [SMALL_STATE(12115)] = 458098, + [SMALL_STATE(12116)] = 458112, + [SMALL_STATE(12117)] = 458126, + [SMALL_STATE(12118)] = 458140, + [SMALL_STATE(12119)] = 458154, + [SMALL_STATE(12120)] = 458168, + [SMALL_STATE(12121)] = 458182, + [SMALL_STATE(12122)] = 458196, + [SMALL_STATE(12123)] = 458210, + [SMALL_STATE(12124)] = 458224, + [SMALL_STATE(12125)] = 458238, + [SMALL_STATE(12126)] = 458252, + [SMALL_STATE(12127)] = 458266, + [SMALL_STATE(12128)] = 458280, + [SMALL_STATE(12129)] = 458294, + [SMALL_STATE(12130)] = 458308, + [SMALL_STATE(12131)] = 458322, + [SMALL_STATE(12132)] = 458336, + [SMALL_STATE(12133)] = 458350, + [SMALL_STATE(12134)] = 458364, + [SMALL_STATE(12135)] = 458378, + [SMALL_STATE(12136)] = 458392, + [SMALL_STATE(12137)] = 458406, + [SMALL_STATE(12138)] = 458420, + [SMALL_STATE(12139)] = 458434, + [SMALL_STATE(12140)] = 458448, + [SMALL_STATE(12141)] = 458462, + [SMALL_STATE(12142)] = 458476, + [SMALL_STATE(12143)] = 458490, + [SMALL_STATE(12144)] = 458504, + [SMALL_STATE(12145)] = 458518, + [SMALL_STATE(12146)] = 458532, + [SMALL_STATE(12147)] = 458546, + [SMALL_STATE(12148)] = 458560, + [SMALL_STATE(12149)] = 458574, + [SMALL_STATE(12150)] = 458588, + [SMALL_STATE(12151)] = 458602, + [SMALL_STATE(12152)] = 458616, + [SMALL_STATE(12153)] = 458630, + [SMALL_STATE(12154)] = 458644, + [SMALL_STATE(12155)] = 458658, + [SMALL_STATE(12156)] = 458672, + [SMALL_STATE(12157)] = 458686, + [SMALL_STATE(12158)] = 458700, + [SMALL_STATE(12159)] = 458714, + [SMALL_STATE(12160)] = 458728, + [SMALL_STATE(12161)] = 458742, + [SMALL_STATE(12162)] = 458756, + [SMALL_STATE(12163)] = 458770, + [SMALL_STATE(12164)] = 458784, + [SMALL_STATE(12165)] = 458798, + [SMALL_STATE(12166)] = 458812, + [SMALL_STATE(12167)] = 458826, + [SMALL_STATE(12168)] = 458840, + [SMALL_STATE(12169)] = 458854, + [SMALL_STATE(12170)] = 458870, + [SMALL_STATE(12171)] = 458884, + [SMALL_STATE(12172)] = 458898, + [SMALL_STATE(12173)] = 458912, + [SMALL_STATE(12174)] = 458926, + [SMALL_STATE(12175)] = 458940, + [SMALL_STATE(12176)] = 458954, + [SMALL_STATE(12177)] = 458968, + [SMALL_STATE(12178)] = 458982, + [SMALL_STATE(12179)] = 458996, + [SMALL_STATE(12180)] = 459010, + [SMALL_STATE(12181)] = 459024, + [SMALL_STATE(12182)] = 459038, + [SMALL_STATE(12183)] = 459052, + [SMALL_STATE(12184)] = 459066, + [SMALL_STATE(12185)] = 459080, + [SMALL_STATE(12186)] = 459094, + [SMALL_STATE(12187)] = 459108, + [SMALL_STATE(12188)] = 459122, + [SMALL_STATE(12189)] = 459136, + [SMALL_STATE(12190)] = 459150, + [SMALL_STATE(12191)] = 459164, + [SMALL_STATE(12192)] = 459178, + [SMALL_STATE(12193)] = 459192, + [SMALL_STATE(12194)] = 459206, + [SMALL_STATE(12195)] = 459220, + [SMALL_STATE(12196)] = 459234, + [SMALL_STATE(12197)] = 459248, + [SMALL_STATE(12198)] = 459262, + [SMALL_STATE(12199)] = 459276, + [SMALL_STATE(12200)] = 459290, + [SMALL_STATE(12201)] = 459304, + [SMALL_STATE(12202)] = 459318, + [SMALL_STATE(12203)] = 459332, + [SMALL_STATE(12204)] = 459346, + [SMALL_STATE(12205)] = 459360, + [SMALL_STATE(12206)] = 459374, + [SMALL_STATE(12207)] = 459388, + [SMALL_STATE(12208)] = 459402, + [SMALL_STATE(12209)] = 459416, + [SMALL_STATE(12210)] = 459430, + [SMALL_STATE(12211)] = 459444, + [SMALL_STATE(12212)] = 459458, + [SMALL_STATE(12213)] = 459472, + [SMALL_STATE(12214)] = 459486, + [SMALL_STATE(12215)] = 459500, + [SMALL_STATE(12216)] = 459514, + [SMALL_STATE(12217)] = 459528, + [SMALL_STATE(12218)] = 459542, + [SMALL_STATE(12219)] = 459556, + [SMALL_STATE(12220)] = 459570, + [SMALL_STATE(12221)] = 459584, + [SMALL_STATE(12222)] = 459598, + [SMALL_STATE(12223)] = 459612, + [SMALL_STATE(12224)] = 459626, + [SMALL_STATE(12225)] = 459640, + [SMALL_STATE(12226)] = 459654, + [SMALL_STATE(12227)] = 459668, + [SMALL_STATE(12228)] = 459682, + [SMALL_STATE(12229)] = 459696, + [SMALL_STATE(12230)] = 459710, + [SMALL_STATE(12231)] = 459724, + [SMALL_STATE(12232)] = 459738, + [SMALL_STATE(12233)] = 459752, + [SMALL_STATE(12234)] = 459766, + [SMALL_STATE(12235)] = 459780, + [SMALL_STATE(12236)] = 459794, + [SMALL_STATE(12237)] = 459808, + [SMALL_STATE(12238)] = 459822, + [SMALL_STATE(12239)] = 459836, + [SMALL_STATE(12240)] = 459852, + [SMALL_STATE(12241)] = 459866, + [SMALL_STATE(12242)] = 459880, + [SMALL_STATE(12243)] = 459894, + [SMALL_STATE(12244)] = 459908, + [SMALL_STATE(12245)] = 459922, + [SMALL_STATE(12246)] = 459936, + [SMALL_STATE(12247)] = 459950, + [SMALL_STATE(12248)] = 459964, + [SMALL_STATE(12249)] = 459978, + [SMALL_STATE(12250)] = 459992, + [SMALL_STATE(12251)] = 460006, + [SMALL_STATE(12252)] = 460020, + [SMALL_STATE(12253)] = 460034, + [SMALL_STATE(12254)] = 460048, + [SMALL_STATE(12255)] = 460062, + [SMALL_STATE(12256)] = 460076, + [SMALL_STATE(12257)] = 460090, + [SMALL_STATE(12258)] = 460104, + [SMALL_STATE(12259)] = 460118, + [SMALL_STATE(12260)] = 460132, + [SMALL_STATE(12261)] = 460146, + [SMALL_STATE(12262)] = 460160, + [SMALL_STATE(12263)] = 460174, + [SMALL_STATE(12264)] = 460188, + [SMALL_STATE(12265)] = 460202, + [SMALL_STATE(12266)] = 460216, + [SMALL_STATE(12267)] = 460230, + [SMALL_STATE(12268)] = 460244, + [SMALL_STATE(12269)] = 460258, + [SMALL_STATE(12270)] = 460272, + [SMALL_STATE(12271)] = 460286, + [SMALL_STATE(12272)] = 460300, + [SMALL_STATE(12273)] = 460314, + [SMALL_STATE(12274)] = 460330, + [SMALL_STATE(12275)] = 460344, + [SMALL_STATE(12276)] = 460358, + [SMALL_STATE(12277)] = 460372, + [SMALL_STATE(12278)] = 460386, + [SMALL_STATE(12279)] = 460400, + [SMALL_STATE(12280)] = 460414, + [SMALL_STATE(12281)] = 460428, + [SMALL_STATE(12282)] = 460442, + [SMALL_STATE(12283)] = 460456, + [SMALL_STATE(12284)] = 460470, + [SMALL_STATE(12285)] = 460484, + [SMALL_STATE(12286)] = 460498, + [SMALL_STATE(12287)] = 460512, + [SMALL_STATE(12288)] = 460526, + [SMALL_STATE(12289)] = 460540, + [SMALL_STATE(12290)] = 460554, + [SMALL_STATE(12291)] = 460568, + [SMALL_STATE(12292)] = 460582, + [SMALL_STATE(12293)] = 460596, + [SMALL_STATE(12294)] = 460610, + [SMALL_STATE(12295)] = 460624, + [SMALL_STATE(12296)] = 460638, + [SMALL_STATE(12297)] = 460652, + [SMALL_STATE(12298)] = 460666, + [SMALL_STATE(12299)] = 460680, + [SMALL_STATE(12300)] = 460694, + [SMALL_STATE(12301)] = 460708, + [SMALL_STATE(12302)] = 460722, + [SMALL_STATE(12303)] = 460736, + [SMALL_STATE(12304)] = 460750, + [SMALL_STATE(12305)] = 460764, + [SMALL_STATE(12306)] = 460778, + [SMALL_STATE(12307)] = 460792, + [SMALL_STATE(12308)] = 460806, + [SMALL_STATE(12309)] = 460820, + [SMALL_STATE(12310)] = 460834, + [SMALL_STATE(12311)] = 460848, + [SMALL_STATE(12312)] = 460862, + [SMALL_STATE(12313)] = 460876, + [SMALL_STATE(12314)] = 460890, + [SMALL_STATE(12315)] = 460904, + [SMALL_STATE(12316)] = 460918, + [SMALL_STATE(12317)] = 460932, + [SMALL_STATE(12318)] = 460946, + [SMALL_STATE(12319)] = 460960, + [SMALL_STATE(12320)] = 460974, + [SMALL_STATE(12321)] = 460988, + [SMALL_STATE(12322)] = 461002, + [SMALL_STATE(12323)] = 461016, + [SMALL_STATE(12324)] = 461030, + [SMALL_STATE(12325)] = 461044, + [SMALL_STATE(12326)] = 461058, + [SMALL_STATE(12327)] = 461072, + [SMALL_STATE(12328)] = 461086, + [SMALL_STATE(12329)] = 461100, + [SMALL_STATE(12330)] = 461114, + [SMALL_STATE(12331)] = 461128, + [SMALL_STATE(12332)] = 461142, + [SMALL_STATE(12333)] = 461156, + [SMALL_STATE(12334)] = 461170, + [SMALL_STATE(12335)] = 461184, + [SMALL_STATE(12336)] = 461198, + [SMALL_STATE(12337)] = 461212, + [SMALL_STATE(12338)] = 461226, + [SMALL_STATE(12339)] = 461240, + [SMALL_STATE(12340)] = 461254, + [SMALL_STATE(12341)] = 461268, + [SMALL_STATE(12342)] = 461282, + [SMALL_STATE(12343)] = 461296, + [SMALL_STATE(12344)] = 461310, + [SMALL_STATE(12345)] = 461324, + [SMALL_STATE(12346)] = 461338, + [SMALL_STATE(12347)] = 461352, + [SMALL_STATE(12348)] = 461366, + [SMALL_STATE(12349)] = 461380, + [SMALL_STATE(12350)] = 461394, + [SMALL_STATE(12351)] = 461408, + [SMALL_STATE(12352)] = 461422, + [SMALL_STATE(12353)] = 461436, + [SMALL_STATE(12354)] = 461450, + [SMALL_STATE(12355)] = 461464, + [SMALL_STATE(12356)] = 461478, + [SMALL_STATE(12357)] = 461492, + [SMALL_STATE(12358)] = 461506, + [SMALL_STATE(12359)] = 461520, + [SMALL_STATE(12360)] = 461534, + [SMALL_STATE(12361)] = 461548, + [SMALL_STATE(12362)] = 461562, + [SMALL_STATE(12363)] = 461576, + [SMALL_STATE(12364)] = 461590, + [SMALL_STATE(12365)] = 461604, + [SMALL_STATE(12366)] = 461618, + [SMALL_STATE(12367)] = 461632, + [SMALL_STATE(12368)] = 461646, + [SMALL_STATE(12369)] = 461660, + [SMALL_STATE(12370)] = 461674, + [SMALL_STATE(12371)] = 461688, + [SMALL_STATE(12372)] = 461702, + [SMALL_STATE(12373)] = 461716, + [SMALL_STATE(12374)] = 461730, + [SMALL_STATE(12375)] = 461744, + [SMALL_STATE(12376)] = 461758, + [SMALL_STATE(12377)] = 461772, + [SMALL_STATE(12378)] = 461786, + [SMALL_STATE(12379)] = 461800, + [SMALL_STATE(12380)] = 461814, + [SMALL_STATE(12381)] = 461828, + [SMALL_STATE(12382)] = 461842, + [SMALL_STATE(12383)] = 461856, + [SMALL_STATE(12384)] = 461870, + [SMALL_STATE(12385)] = 461884, + [SMALL_STATE(12386)] = 461898, + [SMALL_STATE(12387)] = 461912, + [SMALL_STATE(12388)] = 461926, + [SMALL_STATE(12389)] = 461940, + [SMALL_STATE(12390)] = 461954, + [SMALL_STATE(12391)] = 461968, + [SMALL_STATE(12392)] = 461982, + [SMALL_STATE(12393)] = 461996, + [SMALL_STATE(12394)] = 462010, + [SMALL_STATE(12395)] = 462024, + [SMALL_STATE(12396)] = 462028, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -742726,8571 +748192,8599 @@ 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(9242), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10791), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10269), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10555), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9743), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9789), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9710), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9715), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11983), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10686), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11248), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9556), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9486), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11064), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12201), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11968), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12172), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9674), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10552), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10869), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10733), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9001), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9269), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9843), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9855), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10933), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10113), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10011), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9879), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9843), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11342), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10076), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11394), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9653), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11005), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11912), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12277), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12244), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9704), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10260), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10773), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10899), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9757), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_parens, 2, 0, 0), [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_parens, 2, 0, 0), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8003), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8108), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8510), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8753), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8806), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8453), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8930), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8497), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8940), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8208), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10938), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9688), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9231), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12113), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12114), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12115), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12335), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9782), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12162), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12163), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12164), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12383), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11759), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10846), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9265), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9161), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12124), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11329), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10879), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9299), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12217), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12179), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12180), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12340), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9721), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11767), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9542), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10856), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9335), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9824), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10969), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11789), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12266), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12228), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12229), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12388), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11104), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9386), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10880), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9050), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9182), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9930), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9931), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11939), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11138), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12139), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12140), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12141), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12337), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11743), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11815), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10911), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9931), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11043), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11887), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10849), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12188), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12189), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12190), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12385), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9933), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12043), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9459), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10768), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8924), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9154), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9813), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9814), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11409), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9457), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10757), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11992), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10790), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9194), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12261), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12218), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12219), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12343), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11195), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9470), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10793), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9147), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9234), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9188), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9190), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11262), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10900), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12246), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10813), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12310), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12267), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12268), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12391), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9793), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11291), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9456), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10827), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9234), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9724), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9725), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11351), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10958), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12273), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10806), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12152), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12153), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12154), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12338), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11657), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9449), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9851), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11918), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10826), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9594), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12264), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12231), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12232), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12344), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11349), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9398), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10827), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9295), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9151), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11005), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10837), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12178), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12166), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12167), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12339), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12216), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9428), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10840), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9884), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9238), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11047), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10791), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9379), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12201), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12202), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12203), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12386), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11245), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10800), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9022), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9385), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11621), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10864), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12313), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12280), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12281), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12392), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9796), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11415), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9483), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9087), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9305), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9443), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9743), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9444), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11091), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10861), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9644), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12227), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12215), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12216), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12387), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9765), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12169), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9537), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10872), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9374), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9881), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12239), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12039), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11098), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lhs_splat, 2, 0, 0), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lhs_splat, 2, 0, 0), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11693), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10946), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lhs_splat, 2, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lhs_splat, 2, 0, 0), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 2), [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 2), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_chainable, 1, 0, 2), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_chainable, 1, 0, 2), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 4), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 4), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 3), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 3), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4, 0, 66), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4, 0, 66), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 1, 0, 0), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9274), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10023), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9744), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9882), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9745), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9746), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11692), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10026), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11695), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9570), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9547), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12126), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12127), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12128), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12336), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10020), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_chainable, 1, 0, 2), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_chainable, 1, 0, 2), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 3), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 3), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 4), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 4), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 1, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4, 0, 66), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4, 0, 66), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9213), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10085), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10086), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9801), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9835), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9802), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9803), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11705), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10088), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11712), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9614), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9617), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12175), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12176), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12177), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12384), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9819), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10505), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10705), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9469), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10714), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8882), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9153), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9777), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9778), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9270), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8455), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9226), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8362), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10574), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10118), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10267), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8883), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9317), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8929), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8931), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9323), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9329), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9345), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9402), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9553), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9499), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8946), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8402), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9007), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9014), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10077), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10448), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10066), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10539), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10841), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9488), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10889), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9210), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9358), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9406), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9435), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9559), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8393), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8395), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9403), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10156), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9424), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9394), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10094), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10097), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8826), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6704), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9397), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9174), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9184), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9429), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9357), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9543), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10695), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8398), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8827), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8840), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8849), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8434), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10378), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10454), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), - [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3034), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10791), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9617), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9172), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7923), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10269), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2056), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(527), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2978), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2962), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10933), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2978), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9650), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9367), + [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7976), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10113), [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10555), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9743), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9789), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9710), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9715), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11983), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10686), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11248), - [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1624), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5680), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9556), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9486), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(673), - [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(672), - [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(671), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11064), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(12201), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11968), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(12172), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9674), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3003), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10552), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10869), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(865), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9391), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10733), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9001), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8912), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), - [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9143), - [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9156), - [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9269), - [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9843), - [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9855), - [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9360), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif, 3, 0, 39), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10204), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10011), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9879), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9906), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9843), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11342), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10076), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11394), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1625), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5816), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9638), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9653), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(674), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11005), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11912), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(12277), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(12244), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9704), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2982), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3120), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10260), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1626), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10773), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9493), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10899), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), + [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8816), + [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), + [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1369), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8803), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9350), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9207), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9377), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9755), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9757), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9352), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif, 3, 0, 39), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10884), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9364), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11754), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11755), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11756), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12328), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9397), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8897), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9313), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9798), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9809), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 79), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 79), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 78), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 78), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2, 0, 0), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 2, 0, 0), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10725), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12230), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12192), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12193), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12341), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9726), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9481), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10727), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9258), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9965), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5, 0, 171), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 5, 0, 171), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8042), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9000), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9821), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10847), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11799), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11800), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11801), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12376), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9487), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10900), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9345), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9347), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9828), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9830), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 78), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 78), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10755), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9634), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12279), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12241), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12242), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12389), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9784), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9532), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10756), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9050), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9376), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9401), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10005), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10007), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 79), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 79), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 2, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5, 0, 171), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 5, 0, 171), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when, 4, 0, 128), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9062), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9890), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9299), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9772), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8517), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8867), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9812), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8518), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9770), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when, 4, 0, 128), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8885), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9760), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9787), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8762), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9824), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9683), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8763), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8995), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9820), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9681), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9766), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 1, 0, 1), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 1, 0, 1), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when, 3, 0, 39), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8449), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, 0, 20), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 2, 0, 20), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8866), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9811), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9767), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8963), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9818), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9819), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9794), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8183), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9947), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9950), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9661), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in, 4, 0, 128), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8096), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9225), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), - [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8496), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8556), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8375), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8417), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8418), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8457), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8458), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8863), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8992), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8752), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8754), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8769), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8770), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8774), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8788), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8789), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8809), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8810), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8818), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9316), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 2, 0, 1), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 2, 0, 1), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 20), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 20), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9325), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 1, 0, 0), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10314), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9800), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9722), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9801), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9802), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11106), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10262), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11026), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10616), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10833), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 1, 0, 0), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9275), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9347), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8009), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8097), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8232), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in, 3, 0, 39), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9137), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8320), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8450), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8475), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8487), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8492), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2103), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8755), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8807), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8816), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8826), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8831), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ensure, 1, 0, 0), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9645), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8116), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9927), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9054), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9882), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8501), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8502), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9820), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8383), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9821), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9829), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9770), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2116), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9814), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9834), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, 0, 20), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 2, 0, 20), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9928), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8278), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8950), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9893), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9057), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9883), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9855), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 1, 0, 1), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 1, 0, 1), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8415), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9826), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9486), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9886), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8430), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9831), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8957), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8416), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9827), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8431), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8386), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when, 3, 0, 39), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9353), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8273), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 2, 0, 1), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 2, 0, 1), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8494), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8495), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8088), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8560), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8578), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8579), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8523), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8529), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8410), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 20), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 20), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9393), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9051), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9059), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8927), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8929), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8931), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in, 3, 0, 39), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9071), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9077), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9111), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9112), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8977), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8979), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8818), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in, 4, 0, 128), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9405), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8161), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8091), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8253), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10264), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 1, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10332), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9869), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9870), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9871), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11153), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10269), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11073), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9611), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9613), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10671), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10902), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 1, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8934), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8932), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8945), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8485), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9182), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8435), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8866), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8872), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8408), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8487), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8232), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ensure, 1, 0, 0), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10728), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9279), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12074), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12075), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12076), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12333), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9724), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9396), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10761), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9273), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9718), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9720), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10767), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12241), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12205), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12206), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12342), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9729), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9432), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10769), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9662), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9287), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12096), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12097), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12098), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12334), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9377), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10747), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8839), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9951), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9954), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10925), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9594), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9334), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12123), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12124), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12125), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12381), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9948), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9465), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10761), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8990), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9096), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9946), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10780), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12290), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12254), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12255), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12390), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9787), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9513), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10782), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9243), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9232), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10779), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12145), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12146), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12147), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12382), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9842), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9546), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10788), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9364), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9774), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9721), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break, 1, 0, 0), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break, 1, 0, 0), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next, 1, 0, 0), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_next, 1, 0, 0), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 1, 0, 0), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 1, 0, 0), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9806), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9780), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9807), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9808), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11119), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10271), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10617), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9983), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9986), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10017), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11294), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10443), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9822), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10450), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9751), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9696), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9752), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9753), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11768), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10046), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9725), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10509), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8934), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9229), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9210), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8917), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 3, 0, 47), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 3, 0, 47), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 1, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 1, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next, 1, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_next, 1, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break, 1, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break, 1, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9811), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9847), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9812), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9813), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11776), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10108), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9781), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10542), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9875), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9959), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9876), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9877), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11166), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10283), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9794), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10673), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10008), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10010), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10033), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9722), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11080), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10595), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9744), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10688), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8843), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 3, 0, 47), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 3, 0, 47), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_call, 3, 0, 47), [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_call, 3, 0, 47), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_call, 3, 0, 47), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 2, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 2, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 3, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 3, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9090), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12170), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12162), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11628), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9936), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9859), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9964), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10822), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10809), - [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(54), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(489), - [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4476), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4534), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4355), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(10884), - [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4476), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9611), - [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9364), - [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1308), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(7938), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1491), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1614), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1615), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1814), - [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(274), - [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(11754), - [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(11755), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(11756), - [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(12328), - [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(2726), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9940), - [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4524), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4890), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(207), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(2380), - [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1818), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(130), - [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1815), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1816), - [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(881), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9397), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(10854), - [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1128), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(8960), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1135), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1703), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(622), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(8897), - [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1810), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1811), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9313), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9338), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9341), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9798), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9809), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9346), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10748), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12118), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12262), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11764), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12131), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12144), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12157), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12183), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12209), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12235), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12244), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12080), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12251), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12145), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12102), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12196), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12222), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12256), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12259), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12292), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11127), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12254), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(28), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(489), - [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4476), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4534), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4355), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(10884), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4476), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9611), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9364), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1294), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(7938), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1361), - [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1362), - [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1814), - [4344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(274), - [4347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(11754), - [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(11755), - [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(11756), - [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(12328), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(2726), - [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9940), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4524), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4533), - [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(128), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(2260), - [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1759), - [4380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(130), - [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1815), - [4386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1816), - [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(881), - [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9397), - [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(10854), - [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1064), - [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(8960), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1061), - [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1488), - [4410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(612), - [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(8897), - [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1810), - [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1811), - [4422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9313), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9338), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9341), - [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9798), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9809), - [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9346), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11726), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11961), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12194), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11045), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12107), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11394), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11647), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11908), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12203), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10996), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11063), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11912), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12306), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11105), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11188), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11256), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11716), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9711), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 3, 0, 0), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 3, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 2, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 2, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12076), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11314), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12219), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9935), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10004), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10852), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10832), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10764), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(55), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(506), + [3825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4555), + [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4556), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4557), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(10847), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4555), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9612), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9349), + [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1178), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(8004), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1553), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1727), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1728), + [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1859), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(288), + [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(11799), + [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(11800), + [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(11801), + [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(12376), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(2779), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9839), + [3885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(4562), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(5027), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(208), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(2411), + [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1862), + [3900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(134), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1860), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1861), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(874), + [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9487), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(10900), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1134), + [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(8899), + [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1075), + [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1792), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(624), + [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(8915), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1855), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(1856), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9345), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9346), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9347), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9828), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9830), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 26), SHIFT_REPEAT(9348), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11809), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12129), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12167), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12180), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12193), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12206), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12232), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12258), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12284), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12293), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12300), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12308), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12311), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12083), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12151), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12245), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12271), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12305), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12341), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11666), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12048), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12224), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12128), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12366), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11839), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11960), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11222), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11602), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12220), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12029), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11009), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10943), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11178), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11287), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11348), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11731), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12005), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(28), + [4357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(506), + [4360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4555), + [4363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4556), + [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4557), + [4369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(10847), + [4372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4555), + [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9612), + [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9349), + [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1266), + [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(8004), + [4387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1555), + [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1556), + [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1859), + [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(288), + [4399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(11799), + [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(11800), + [4405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(11801), + [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(12376), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(2779), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9839), + [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4562), + [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(4563), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(129), + [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(2287), + [4429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1389), + [4432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(134), + [4435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1860), + [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1861), + [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(874), + [4444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9487), + [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(10900), + [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1059), + [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(8899), + [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1099), + [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1552), + [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(610), + [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(8915), + [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1855), + [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(1856), + [4474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9345), + [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9346), + [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9347), + [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9828), + [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9830), + [4489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 97), SHIFT_REPEAT(9348), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11770), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9726), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9797), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_method, 2, 0, 8), - [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_method, 2, 0, 8), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operator_token, 1, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__operator_token, 1, 0, 0), - [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), - [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7350), - [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1969), - [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(12255), - [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1992), - [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(12211), - [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2017), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8857), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), - [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7350), - [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1969), - [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(12255), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1992), - [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(12211), - [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2017), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7350), - [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1969), - [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(12255), - [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1992), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(12211), - [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2017), - [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7350), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1969), - [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(12255), - [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1992), - [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(12211), - [4717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2017), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), - [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7350), - [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1969), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(12255), - [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1992), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(12211), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2017), - [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7335), - [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1985), - [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(12250), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2028), - [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(11988), - [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2084), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), - [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7335), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1985), - [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(12250), - [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2028), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(11988), - [4781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2084), - [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7335), - [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1985), - [4790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(12250), - [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2028), - [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(11988), - [4799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2084), - [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7335), - [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1985), - [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(12250), - [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2028), - [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(11988), - [4817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2084), - [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7335), - [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1985), - [4826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(12250), - [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2028), - [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(11988), - [4835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2084), - [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 2, 0, 0), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 2, 0, 0), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11452), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), - [4848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11452), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operator_token, 1, 0, 0), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__operator_token, 1, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_method, 2, 0, 8), + [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_method, 2, 0, 8), + [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7242), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1993), + [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(12304), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2014), + [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(12234), + [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2038), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), + [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), + [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7242), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1993), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(12304), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2014), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(12234), + [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2038), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7242), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1993), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(12304), + [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2014), + [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(12234), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2038), + [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), + [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7242), + [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1993), + [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(12304), + [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2014), + [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(12234), + [4717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2038), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), + [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7242), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1993), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(12304), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2014), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(12234), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2038), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7230), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2008), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(12299), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2050), + [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(11672), + [4757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2099), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7230), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2008), + [4772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(12299), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2050), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(11672), + [4781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2099), + [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7230), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2008), + [4790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(12299), + [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2050), + [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(11672), + [4799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2099), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7230), + [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2008), + [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(12299), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2050), + [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(11672), + [4817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2099), + [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7230), + [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2008), + [4826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(12299), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2050), + [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(11672), + [4835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2099), + [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), + [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11532), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 2, 0, 0), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 2, 0, 0), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3, 0, 0), [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3, 0, 0), [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1, 0, 0), [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, 0, 0), [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splattable_type, 1, 0, 0), [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splattable_type, 1, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10950), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12049), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), - [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7750), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_args_proc_type, 2, 10, 57), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_args_proc_type, 2, 10, 57), + [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7740), [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 10, 207), [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 10, 207), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 7, 10, 222), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 7, 10, 222), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 7, 10, 222), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 7, 10, 222), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_args_proc_type, 2, 10, 57), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_args_proc_type, 2, 10, 57), [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 3, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 3, 0, 0), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 5, 0, 0), - [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 5, 0, 0), - [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), - [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nilable_type, 2, 0, 0), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nilable_type, 2, 0, 0), - [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instance_type, 3, 0, 0), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instance_type, 3, 0, 0), - [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_type, 3, 0, 0), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_type, 3, 0, 0), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 3, 10, 106), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 3, 10, 106), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type, 3, 0, 0), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type, 3, 0, 0), - [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 4, 0, 0), - [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 4, 0, 0), - [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 4, 0, 0), - [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 4, 0, 0), - [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instance_type, 4, 0, 94), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instance_type, 4, 0, 94), - [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 5, 0, 0), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 5, 0, 0), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 6, 0, 0), - [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 6, 0, 0), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 4, 10, 150), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 4, 10, 150), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_array_type, 4, 0, 0), - [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_array_type, 4, 0, 0), - [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 113), - [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 113), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11588), - [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 12), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 12), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 65), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 65), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 1, 0, 0), - [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 1, 0, 0), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_type, 1, 0, 0), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(1981), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12122), - [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12122), - [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 65), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 65), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 2, 0, 12), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 2, 0, 12), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 193), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 193), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 227), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 227), - [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 2, 0, 64), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 2, 0, 64), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12214), - [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 157), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 157), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nilable_type, 2, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nilable_type, 2, 0, 0), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 6, 0, 0), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 6, 0, 0), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type, 3, 0, 0), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type, 3, 0, 0), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 4, 0, 0), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 4, 0, 0), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 4, 10, 150), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 4, 10, 150), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_array_type, 4, 0, 0), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_array_type, 4, 0, 0), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 5, 0, 0), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 5, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instance_type, 3, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instance_type, 3, 0, 0), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instance_type, 4, 0, 94), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instance_type, 4, 0, 94), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 4, 0, 0), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 4, 0, 0), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 5, 0, 0), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 5, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 3, 0, 0), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 3, 0, 0), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_type, 3, 0, 0), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_type, 3, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 3, 10, 106), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 3, 10, 106), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12367), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 65), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 65), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11361), + [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 113), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 113), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 2, 0, 12), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 2, 0, 12), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 65), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 65), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 193), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 193), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_type, 1, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(2002), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 1, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 1, 0, 0), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12367), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 12), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 12), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 2, 0, 64), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 2, 0, 64), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 191), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 191), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 217), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 217), [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 3, 0, 64), [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 3, 0, 64), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 159), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 159), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(12214), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 63), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 63), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 217), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 217), - [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 191), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 191), - [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7696), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11719), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 64), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 64), + [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 157), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 157), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 159), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 159), + [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 227), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 227), + [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 63), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 63), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), + [5080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11461), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 64), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 64), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11527), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7785), [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 10, 0, 230), [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 10, 0, 230), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 115), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 115), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 226), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 226), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 218), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 218), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 158), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 158), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 190), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 190), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 3, 0, 30), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 3, 0, 30), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 112), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 112), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 215), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 215), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 192), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 192), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 194), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 194), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 114), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 114), - [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(1986), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), - [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11403), + [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 158), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 158), + [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 190), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 190), + [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 192), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 192), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 194), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 194), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 215), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 215), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 218), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 218), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 3, 0, 30), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 3, 0, 30), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 112), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 112), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 114), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 114), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 115), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 115), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 226), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 226), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11472), + [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(2009), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11472), [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 3, 0, 0), [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 3, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 4, 0, 94), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 4, 0, 94), + [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 4, 0, 94), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 4, 0, 94), + [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12113), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10998), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2126), - [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2126), - [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2126), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2131), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11064), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11404), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2131), - [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2131), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12217), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2141), - [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2141), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2141), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2153), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12139), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11191), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2153), - [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2153), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2168), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12261), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11527), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8977), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2157), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12126), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11107), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2168), - [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2157), - [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2157), - [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2168), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12124), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11754), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11076), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2177), - [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2177), - [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2177), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12230), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11451), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8961), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2151), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12162), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11088), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2151), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2151), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2155), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11005), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11970), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), + [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2155), + [5243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2155), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [5252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2165), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12266), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11471), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2165), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2165), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12188), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11288), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2173), + [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2173), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2173), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2183), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12310), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11581), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12175), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), + [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2183), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2187), + [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2183), + [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2187), + [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2187), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [5352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2193), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11799), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11026), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9027), + [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2193), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2193), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10969), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12279), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11528), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_operator, 4, 0, 86), [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_operator, 4, 0, 86), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), - [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2183), - [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2183), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2209), + [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2209), [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_call, 5, 0, 133), [5405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_call, 5, 0, 133), - [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2183), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11759), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11329), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [5416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2206), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12152), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), - [5429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2206), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11939), - [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2206), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12264), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11540), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2214), - [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2214), - [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2214), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12074), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11921), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [5482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2233), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2230), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12178), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11343), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11262), - [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2230), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11104), - [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2230), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11409), - [5516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2233), - [5519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2233), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2240), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12241), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11513), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2240), - [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2240), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11195), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11743), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2265), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12096), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12331), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), - [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2265), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10900), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2265), + [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2209), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11789), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11767), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12201), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11349), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2227), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11815), + [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2227), + [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2227), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [5443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2241), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12313), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11590), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2241), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2241), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [5468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2242), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12227), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11411), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9102), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2242), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11887), + [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2242), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12123), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11803), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9031), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11351), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11992), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11043), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [5515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2260), + [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2260), + [5521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2260), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12290), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11573), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2265), + [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2265), + [5546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2265), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12145), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10951), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [5565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2285), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12043), + [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2285), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10958), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11291), + [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2285), [5580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 13), [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 13), [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 95), [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 95), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12246), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11918), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11655), - [5594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11655), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11349), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11047), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12092), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12092), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11657), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12133), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [5620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7703), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11005), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12039), - [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7687), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12216), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_string, 2, 0, 0), - [5638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_string, 2, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11109), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [5646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7716), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), - [5653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), - [5655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9265), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10892), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [5672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(7620), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11109), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_unchainable, 2, 0, 14), - [5688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_unchainable, 2, 0, 14), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12215), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 14), - [5704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 14), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 22), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 22), - [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_chainable, 2, 0, 14), - [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_chainable, 2, 0, 14), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12215), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 24), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 24), - [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7729), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [5734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11917), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 1, 0, 0), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11917), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 1, 0, 0), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_string_repeat1, 1, 0, 0), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 3, 0, 0), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [5789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 3, 0, 0), - [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 0), - [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 0), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 3, 0, 0), - [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 3, 0, 0), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 2, 0, 0), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 4, 0, 0), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 4, 0, 0), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 4, 0, 59), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [5829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 4, 0, 59), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 70), - [5833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 70), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 5, 0, 0), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 5, 0, 0), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9143), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 2, 0, 9), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 2, 0, 9), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 1, 0, 0), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_percent_literal, 2, 0, 0), - [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_percent_literal, 2, 0, 0), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 3, 0, 0), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 3, 0, 0), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_percent_literal, 3, 0, 0), - [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_percent_literal, 3, 0, 0), - [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 2, 0, 0), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_object_call, 1, 0, 0), - [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_object_call, 1, 0, 0), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 2, 0, 8), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 2, 0, 8), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11144), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11528), - [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11528), - [5907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7674), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2, 0, 0), - [5918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2, 0, 0), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 2, 0, 0), - [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 2, 0, 0), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), - [5936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 6, 0, 146), - [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 6, 0, 146), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 46), - [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 46), - [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 2, 0, 0), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 2, 0, 0), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 3, 0, 45), - [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 3, 0, 45), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_or_operator, 3, 0, 45), - [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_or_operator, 3, 0, 45), - [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_operator, 3, 0, 45), - [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_operator, 3, 0, 45), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_operator, 3, 0, 45), - [5973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_operator, 3, 0, 45), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and, 3, 0, 0), - [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and, 3, 0, 0), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 3, 0, 0), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 3, 0, 0), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 51), - [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 51), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 52), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 52), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4, 0, 0), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 4, 0, 0), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 4, 0, 0), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 0), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 0), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 4, 0, 39), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 4, 0, 39), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 4, 0, 39), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 4, 0, 39), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 4, 0, 0), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 4, 0, 0), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_statement, 4, 0, 0), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_statement, 4, 0, 0), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 54), - [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 54), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 2, 0, 0), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 3, 0, 0), - [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 3, 0, 0), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 4, 0, 55), - [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 4, 0, 55), - [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 4, 0, 58), - [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 4, 0, 58), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complement_operator, 2, 0, 5), - [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complement_operator, 2, 0, 5), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 0), - [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 0), - [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 35), - [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 35), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof, 4, 0, 0), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof, 4, 0, 0), - [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_sizeof, 4, 0, 0), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_sizeof, 4, 0, 0), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 3, 0, 0), - [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 3, 0, 0), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 3, 0, 0), - [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 3, 0, 0), - [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 0), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 0), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 80), - [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 80), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 4, 0, 82), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 4, 0, 82), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until, 4, 0, 82), - [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until, 4, 0, 82), - [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, 0, 39), - [6085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, 0, 39), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exhaustive_case, 4, 0, 39), - [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exhaustive_case, 4, 0, 39), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, 0, 0), - [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, 0, 0), - [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4, 0, 0), - [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4, 0, 0), - [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm, 4, 0, 85), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm, 4, 0, 85), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), - [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 87), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 87), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5, 0, 0), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5, 0, 0), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), - [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 5, 0, 0), - [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 5, 0, 0), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 99), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 99), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 100), - [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 100), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 5, 0, 99), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 5, 0, 99), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 5, 0, 100), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 5, 0, 100), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 101), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 101), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 5, 0, 104), - [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 5, 0, 104), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_constant, 1, 0, 0), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_constant, 1, 0, 0), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 5, 0, 107), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 5, 0, 107), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 80), - [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 80), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 5, 0, 108), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 5, 0, 108), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5, 0, 66), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5, 0, 66), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 4, 0, 0), - [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 4, 0, 0), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 23), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 23), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12149), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 127), - [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 127), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5, 0, 82), - [6195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5, 0, 82), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until, 5, 0, 82), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until, 5, 0, 82), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, 0, 39), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, 0, 39), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5, 0, 134), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 6, 0, 143), - [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 6, 0, 143), - [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 6, 0, 144), - [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 6, 0, 144), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 6, 0, 144), - [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 6, 0, 144), - [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 6, 0, 145), - [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 6, 0, 145), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 5, 0, 94), - [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 5, 0, 94), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 94), - [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 94), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11187), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof, 6, 0, 0), - [6237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof, 6, 0, 0), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 5, 0, 0), - [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 5, 0, 0), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 5, 0, 0), - [6245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 5, 0, 0), - [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, 0, 161), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 7, 0, 179), - [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 7, 0, 179), - [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 7, 0, 180), - [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 7, 0, 180), - [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 6, 0, 94), - [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 6, 0, 94), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 7, 0, 182), - [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 7, 0, 182), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 7, 0, 185), - [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 7, 0, 185), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 94), - [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 94), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 186), - [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 186), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 6, 0, 0), - [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 6, 0, 0), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 8, 0, 204), - [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 8, 0, 204), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 208), - [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 208), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 9, 0, 220), - [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 9, 0, 220), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), - [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 25), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 25), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control_expressions, 1, 0, 0), - [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control_expressions, 1, 0, 0), - [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 2, 0, 0), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat, 2, 0, 0), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 2, 0, 0), - [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 2, 0, 0), - [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11187), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 2, 0, 10), - [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 2, 0, 10), - [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 3, 0, 0), - [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 3, 0, 0), - [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, 0, 0), - [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, 0, 0), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 3, 0, 27), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 3, 0, 27), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 15), - [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 15), - [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_percent_literal, 3, 0, 0), - [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_percent_literal, 3, 0, 0), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array_percent_literal, 3, 0, 0), - [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_array_percent_literal, 3, 0, 0), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_array_percent_literal, 3, 0, 0), - [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_array_percent_literal, 3, 0, 0), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_ivar_call, 1, 0, 2), - [6354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_ivar_call, 1, 0, 2), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 2, 0, 67), - [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 2, 0, 67), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_unchainable, 2, 0, 68), - [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_unchainable, 2, 0, 68), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 2, 0, 9), - [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 2, 0, 9), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 2, 0, 68), - [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 2, 0, 68), - [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 2, 0, 69), - [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 2, 0, 69), - [6376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7720), - [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_additive_operator, 2, 0, 5), - [6381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_additive_operator, 2, 0, 5), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_chainable, 2, 0, 15), - [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_chainable, 2, 0, 15), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 3, 0, 116), - [6389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 3, 0, 116), - [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_unchainable, 3, 0, 117), - [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_unchainable, 3, 0, 117), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 3, 0, 118), - [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 3, 0, 118), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 3, 0, 117), - [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 3, 0, 117), - [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 2, 0, 6), - [6405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 2, 0, 6), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 3, 0, 0), - [6409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expressions, 3, 0, 0), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_statement, 3, 0, 0), - [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_statement, 3, 0, 0), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 3, 0, 0), - [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 3, 0, 0), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_symbol, 3, 0, 0), - [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_symbol, 3, 0, 0), - [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 0), - [6425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 0), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_index_call, 3, 0, 160), - [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_index_call, 3, 0, 160), - [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_chainable, 3, 0, 32), - [6433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_chainable, 3, 0, 32), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_index_operator, 3, 0, 14), - [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_index_operator, 3, 0, 14), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 1, 0, 0), - [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 1, 0, 0), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 2, 0, 0), - [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 2, 0, 0), - [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_with_visibility, 2, 0, 16), - [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_with_visibility, 2, 0, 16), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 2, 0, 0), - [6453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 2, 0, 0), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 2, 0, 0), - [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 2, 0, 0), - [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign, 3, 0, 31), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_argument, 2, 0, 0), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_argument, 2, 0, 0), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 2, 0, 0), - [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 2, 0, 0), - [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_assign, 3, 0, 31), - [6471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7675), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 32), - [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 32), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_percent_literal, 2, 0, 0), - [6480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_percent_literal, 2, 0, 0), - [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 0), - [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 0), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 35), - [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 35), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array_percent_literal, 2, 0, 0), - [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_array_percent_literal, 2, 0, 0), - [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 2, 0, 0), - [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 2, 0, 0), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_array_percent_literal, 2, 0, 0), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_array_percent_literal, 2, 0, 0), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 3, 0, 39), - [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 3, 0, 39), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expr, 3, 0, 53), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expr, 3, 0, 28), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 3, 0, 0), - [6512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 3, 0, 0), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 3, 0, 0), - [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 3, 0, 0), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 3, 0, 0), - [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 3, 0, 0), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm, 3, 0, 40), - [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm, 3, 0, 40), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_operator, 3, 0, 44), - [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_operator, 3, 0, 44), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 2, 0, 0), - [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 2, 0, 0), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 4, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 4, 0, 0), - [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 5, 0, 0), - [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 5, 0, 0), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_operator, 3, 0, 45), - [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_operator, 3, 0, 45), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_symbol, 2, 0, 0), - [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_symbol, 2, 0, 0), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 0), - [6552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 0), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponential_operator, 3, 0, 45), - [6556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponential_operator, 3, 0, 45), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_and_operator, 3, 0, 44), - [6560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_and_operator, 3, 0, 44), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11421), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), - [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7735), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11964), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11193), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11193), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [6614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7663), - [6617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7736), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [6622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9182), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(995), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 5, 0, 142), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7748), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11514), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 3, 0, 31), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 4, 0, 96), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 4, 0, 98), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [6739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7690), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [6744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7704), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_ensure, 3, 0, 43), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [6853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9282), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [6860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9152), - [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_if, 3, 0, 41), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [6869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), - [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_unless, 3, 0, 41), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_rescue, 3, 0, 42), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), - [6892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7678), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11212), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7711), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [6918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9147), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11033), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11033), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), - [6958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7676), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1014), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1006), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11541), - [7129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11541), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [7170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1007), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9313), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9142), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10931), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11936), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [7259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7725), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [7264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12029), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12029), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [7275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(4157), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12258), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12220), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), - [7290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11936), - [7293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(4157), - [7296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(4157), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11479), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [7373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11261), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11261), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [7429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7737), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), - [7434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7712), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [7509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11037), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7740), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), - [7544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7740), - [7547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7664), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11406), - [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9366), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11796), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [7650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7717), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [7707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7719), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), - [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), - [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11368), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [7862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7693), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9191), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [7932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7677), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [8013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9250), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [8018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(5041), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12266), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11132), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(5041), - [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(5041), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [8045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9173), - [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), - [8050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7699), - [8053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7669), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12033), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [8064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(987), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [8111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9294), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), - [8166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7685), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [8233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1001), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), - [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(5741), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12268), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8969), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [8325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_splat, 2, 0, 0), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [8333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1020), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [8348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [8351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5, 0, 134), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [8407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expr, 3, 0, 53), - [8409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expr, 3, 0, 28), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), - [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8303), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12163), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12233), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [8431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9150), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6686), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(5741), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9321), - [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, 0, 161), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign, 3, 0, 31), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [8480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_assign, 3, 0, 31), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [8486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(991), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [8493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 2, 0, 0), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11916), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), - [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12026), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), - [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10929), - [8553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(5741), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11984), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12191), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12116), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12014), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8990), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9271), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9272), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [8652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 39), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [8725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 1, 0, 0), - [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 1, 0, 0), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), - [8823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [9130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(6481), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12191), - [9135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7741), - [9138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(12116), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(6481), - [9150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7741), - [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(12116), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11558), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [9194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(985), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [9285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(6481), - [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7741), - [9291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(12116), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8483), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [9346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 102), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 6, 0, 205), - [9352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 6, 0, 206), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 7, 0, 221), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [9414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 183), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 147), - [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 149), - [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_object_tuple_repeat1, 2, 0, 0), - [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 181), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_entry, 3, 0, 0), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11995), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12013), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12295), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9502), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11728), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11000), - [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11944), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11970), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9583), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10553), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11360), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12301), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12312), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), - [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8264), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10917), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7013), - [9671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7013), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6492), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [9690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7013), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9790), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12204), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11412), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8354), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), - [9717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7028), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12204), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [9724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7028), - [9727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7028), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [9736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7037), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12165), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11065), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), - [9751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7037), - [9754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7037), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [9761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7741), - [9764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(12116), - [9767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7741), - [9770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(12116), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12250), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11988), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12255), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12211), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11079), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9817), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12273), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11621), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11242), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), + [5596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11242), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12169), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12134), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11245), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12134), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12221), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11091), + [5622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7745), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7722), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12239), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11486), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [5650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(7690), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7759), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), + [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), + [5664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9335), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_chainable, 2, 0, 14), + [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_chainable, 2, 0, 14), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11189), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_string, 2, 0, 0), + [5688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_string, 2, 0, 0), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10946), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 22), + [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 22), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 14), + [5700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 14), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7750), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 24), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 24), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_object_call, 1, 0, 0), + [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_object_call, 1, 0, 0), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_unchainable, 2, 0, 14), + [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_unchainable, 2, 0, 14), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12238), + [5735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12238), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 1, 0, 0), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 1, 0, 0), + [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 94), + [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 94), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11583), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 4, 0, 0), + [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 4, 0, 0), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 5, 0, 0), + [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 5, 0, 0), + [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 6, 0, 0), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 6, 0, 0), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 1, 0, 0), + [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_string_repeat1, 1, 0, 0), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_chainable, 2, 0, 15), + [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_chainable, 2, 0, 15), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 3, 0, 116), + [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 3, 0, 116), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 3, 0, 0), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 3, 0, 0), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 0), + [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 0), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 3, 0, 0), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 3, 0, 0), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 2, 0, 0), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 2, 0, 0), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 2, 0, 0), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 2, 0, 0), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 2, 0, 0), + [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 2, 0, 0), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 5, 0, 0), + [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 5, 0, 0), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11583), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 4, 0, 0), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [5877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 4, 0, 0), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 3, 0, 0), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 3, 0, 0), + [5885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9350), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 3, 0, 0), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 3, 0, 0), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 6, 0, 94), + [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 6, 0, 94), + [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11620), + [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 4, 0, 59), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 4, 0, 59), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11620), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_percent_literal, 2, 0, 0), + [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_percent_literal, 2, 0, 0), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 0), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 0), + [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 35), + [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 35), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 2, 0, 0), + [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 2, 0, 0), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 2, 0, 68), + [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 2, 0, 68), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 70), + [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 70), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 3, 0, 117), + [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 3, 0, 117), + [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 186), + [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 186), + [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 2, 0, 9), + [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 2, 0, 9), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7788), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 5, 0, 0), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 5, 0, 0), + [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 3, 0, 0), + [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 3, 0, 0), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), + [5972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), + [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), + [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_index_call, 3, 0, 160), + [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_index_call, 3, 0, 160), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), + [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_method_call_chainable, 3, 0, 32), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_method_call_chainable, 3, 0, 32), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_index_operator, 3, 0, 14), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_index_operator, 3, 0, 14), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2, 0, 0), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2, 0, 0), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11219), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 3, 0, 118), + [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 3, 0, 118), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 94), + [6015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 94), + [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 80), + [6019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 80), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 2, 0, 69), + [6023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 2, 0, 69), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 208), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 208), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 2, 0, 0), + [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 2, 0, 0), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_percent_literal, 3, 0, 0), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_percent_literal, 3, 0, 0), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 2, 0, 8), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 2, 0, 8), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implicit_ivar_call, 1, 0, 2), + [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implicit_ivar_call, 1, 0, 2), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_chainable, 2, 0, 67), + [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_chainable, 2, 0, 67), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 5, 0, 94), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 5, 0, 94), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 2, 0, 9), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 2, 0, 9), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 3, 0, 0), + [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 3, 0, 0), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12041), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), + [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign, 3, 0, 31), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_argument, 2, 0, 0), + [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_argument, 2, 0, 0), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 2, 0, 0), + [6093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 2, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_assign, 3, 0, 31), + [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 32), + [6099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 32), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 0), + [6103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 0), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 35), + [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 35), + [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 3, 0, 39), + [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 3, 0, 39), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 3, 0, 0), + [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 3, 0, 0), + [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 3, 0, 0), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 3, 0, 0), + [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm, 3, 0, 40), + [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm, 3, 0, 40), + [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_operator, 3, 0, 44), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_operator, 3, 0, 44), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_operator, 3, 0, 45), + [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_operator, 3, 0, 45), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponential_operator, 3, 0, 45), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponential_operator, 3, 0, 45), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_and_operator, 3, 0, 44), + [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_and_operator, 3, 0, 44), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 46), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 46), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 3, 0, 45), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 3, 0, 45), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_or_operator, 3, 0, 45), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_or_operator, 3, 0, 45), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12060), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_operator, 3, 0, 45), + [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_operator, 3, 0, 45), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_operator, 3, 0, 45), + [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_operator, 3, 0, 45), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and, 3, 0, 0), + [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and, 3, 0, 0), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 3, 0, 0), + [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 3, 0, 0), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_constant, 1, 0, 0), + [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_constant, 1, 0, 0), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 51), + [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 51), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 52), + [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 52), + [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4, 0, 0), + [6193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4, 0, 0), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 4, 0, 0), + [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 4, 0, 0), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 0), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 0), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 4, 0, 39), + [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 4, 0, 39), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 4, 0, 39), + [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 4, 0, 39), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 4, 0, 0), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 4, 0, 0), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_statement, 4, 0, 0), + [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_statement, 4, 0, 0), + [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 54), + [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 54), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 4, 0, 55), + [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 4, 0, 55), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expr, 3, 0, 53), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof, 6, 0, 0), + [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof, 6, 0, 0), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 4, 0, 58), + [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 4, 0, 58), + [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, 0, 0), + [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, 0, 0), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_additive_operator, 2, 0, 5), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_additive_operator, 2, 0, 5), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 7, 0, 185), + [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 7, 0, 185), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 2, 0, 6), + [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 2, 0, 6), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 7, 0, 179), + [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 7, 0, 179), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expr, 3, 0, 28), + [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_percent_literal, 2, 0, 0), + [6265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_percent_literal, 2, 0, 0), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 5, 0, 0), + [6269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 5, 0, 0), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array_percent_literal, 2, 0, 0), + [6273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_array_percent_literal, 2, 0, 0), + [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_array_percent_literal, 2, 0, 0), + [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_array_percent_literal, 2, 0, 0), + [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_symbol, 2, 0, 0), + [6281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_symbol, 2, 0, 0), + [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 0), + [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 0), + [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 9, 0, 220), + [6289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 9, 0, 220), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 2, 0, 10), + [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 2, 0, 10), + [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 2, 0, 0), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 2, 0, 0), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complement_operator, 2, 0, 5), + [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complement_operator, 2, 0, 5), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof, 4, 0, 0), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof, 4, 0, 0), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_sizeof, 4, 0, 0), + [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_sizeof, 4, 0, 0), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 3, 0, 0), + [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 3, 0, 0), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 0), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 0), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 80), + [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 80), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 4, 0, 82), + [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 4, 0, 82), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until, 4, 0, 82), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until, 4, 0, 82), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, 0, 39), + [6339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, 0, 39), + [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exhaustive_case, 4, 0, 39), + [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exhaustive_case, 4, 0, 39), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, 0, 0), + [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, 0, 0), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4, 0, 0), + [6351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4, 0, 0), + [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [6355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 2, 0, 0), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm, 4, 0, 85), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm, 4, 0, 85), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 87), + [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 87), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 7, 0, 180), + [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 7, 0, 180), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_unchainable, 3, 0, 117), + [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_unchainable, 3, 0, 117), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, 0, 161), + [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5, 0, 0), + [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5, 0, 0), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 5, 0, 0), + [6383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 5, 0, 0), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 99), + [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 99), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 15), + [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 15), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 100), + [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 100), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 1, 0, 0), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 1, 0, 0), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 5, 0, 99), + [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 5, 0, 99), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 5, 0, 100), + [6407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 5, 0, 100), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 101), + [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 101), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_with_visibility, 2, 0, 16), + [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_with_visibility, 2, 0, 16), + [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 2, 0, 0), + [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 2, 0, 0), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 2, 0, 0), + [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 2, 0, 0), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 2, 0, 0), + [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 2, 0, 0), + [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 5, 0, 104), + [6431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 5, 0, 104), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control_expressions, 1, 0, 0), + [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control_expressions, 1, 0, 0), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 23), + [6439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 23), + [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 5, 0, 107), + [6443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 5, 0, 107), + [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 8, 0, 204), + [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 8, 0, 204), + [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_proc, 5, 0, 108), + [6451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_proc, 5, 0, 108), + [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5, 0, 66), + [6455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5, 0, 66), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_assign, 3, 0, 31), + [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 4, 0, 0), + [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 4, 0, 0), + [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 127), + [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 127), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 25), + [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 25), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5, 0, 82), + [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5, 0, 82), + [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until, 5, 0, 82), + [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until, 5, 0, 82), + [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, 0, 39), + [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, 0, 39), + [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 2, 0, 0), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5, 0, 134), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 6, 0, 143), + [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 6, 0, 143), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 6, 0, 144), + [6499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 6, 0, 144), + [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 6, 0, 144), + [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 6, 0, 144), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 6, 0, 145), + [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 6, 0, 145), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat, 2, 0, 0), + [6511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12041), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 3, 0, 0), + [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 3, 0, 0), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 3, 0, 27), + [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 3, 0, 27), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_call_unchainable, 2, 0, 68), + [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_call_unchainable, 2, 0, 68), + [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7767), + [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_percent_literal, 3, 0, 0), + [6531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_percent_literal, 3, 0, 0), + [6533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array_percent_literal, 3, 0, 0), + [6535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_array_percent_literal, 3, 0, 0), + [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_array_percent_literal, 3, 0, 0), + [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_array_percent_literal, 3, 0, 0), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 3, 0, 0), + [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expressions, 3, 0, 0), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_statement, 3, 0, 0), + [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_statement, 3, 0, 0), + [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 3, 0, 0), + [6551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 3, 0, 0), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_symbol, 3, 0, 0), + [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_symbol, 3, 0, 0), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 7, 0, 182), + [6559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 7, 0, 182), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 0), + [6563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 0), + [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 6, 0, 146), + [6567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 6, 0, 146), + [6569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7743), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11600), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11494), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9230), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7730), + [6669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7739), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [6680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7747), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11289), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [6702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 5, 0, 142), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [6710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 3, 0, 31), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 4, 0, 98), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), + [6720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7723), + [6723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7712), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12297), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [6744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7757), + [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 4, 0, 96), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11321), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_if, 3, 0, 41), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_unless, 3, 0, 41), + [6865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7795), + [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_rescue, 3, 0, 42), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1013), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_ensure, 3, 0, 43), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [6907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7717), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [6924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9307), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9237), + [6932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9291), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12159), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12159), + [6992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7746), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [7153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9345), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [7186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [7199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9436), + [7202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11593), + [7216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [7253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(4258), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12307), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11711), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), + [7268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(4258), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11690), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11690), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11806), + [7282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11806), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11001), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [7327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [7348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(4258), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1023), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11350), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11546), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [7517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11350), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [7534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7736), + [7537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7741), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11116), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), + [7564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7766), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7738), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11433), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [7652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11981), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11981), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [7665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7761), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9385), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [7697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7719), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9312), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11432), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7713), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [7875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7713), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), + [7882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7742), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9214), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), + [7989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7749), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11821), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(5078), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12315), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11871), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(5078), + [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(5078), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9445), + [8042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [8097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [8136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9374), + [8139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9243), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [8264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1012), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7721), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [8358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 2, 0, 0), + [8360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_splat, 2, 0, 0), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expr, 3, 0, 53), + [8366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expr, 3, 0, 28), + [8368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9261), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [8425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(5655), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12317), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12142), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), + [8440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(5655), + [8443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(5655), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7919), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12018), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12034), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [8474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(998), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [8483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign, 3, 0, 31), + [8485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_assign, 3, 0, 31), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11688), + [8497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11023), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [8546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_assign, 3, 0, 31), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [8550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5, 0, 134), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [8568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [8571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, 0, 161), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10945), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [8597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9211), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1017), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 39), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11221), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12240), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12373), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11188), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 1, 0, 0), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 1, 0, 0), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [8925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(996), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [8954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), + [8956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [9030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(6461), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12240), + [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7772), + [9038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(12373), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1030), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(6461), + [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7772), + [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(12373), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [9137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(6461), + [9140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7772), + [9143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(12373), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12139), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_entry, 3, 0, 0), + [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 147), + [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 149), + [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 102), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [9506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_object_tuple_repeat1, 2, 0, 0), + [9508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 181), + [9510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 183), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [9516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 6, 0, 205), + [9518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 6, 0, 206), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 7, 0, 221), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11225), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12236), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11018), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9684), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12085), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11359), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11679), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10461), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12343), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11196), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12173), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11918), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10970), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11102), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9597), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12249), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11832), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11777), + [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7058), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), + [9731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7058), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), + [9742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7058), + [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [9749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7073), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12253), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11588), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), + [9764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7073), + [9767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7073), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9896), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12253), + [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [9782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7083), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12214), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12231), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [9797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7083), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [9804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7083), + [9807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7772), + [9810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(12373), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7772), + [9820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(12373), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12299), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11672), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9946), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11619), - [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 3, 0, 0), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11606), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11877), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12044), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11945), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11016), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11320), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11581), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11849), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12101), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11251), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12277), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11707), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12270), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10982), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11093), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11245), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11335), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11444), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11507), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11524), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11534), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11545), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11551), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11554), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11565), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11571), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11590), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11601), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11609), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11613), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11621), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11629), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11632), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11637), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11640), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11651), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11661), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11669), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11671), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11674), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11024), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9796), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10309), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10310), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11161), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9637), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10610), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9002), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [10095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lib_statements, 1, 0, 0), - [10097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8242), - [10100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), - [10102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10298), - [10105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10194), - [10108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11024), - [10111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9796), - [10114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10309), - [10117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10310), - [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11161), - [10123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7681), - [10126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(12163), - [10129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9637), - [10132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10610), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11135), - [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_type_param_list, 2, 0, 0), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11967), - [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_type_param_list, 3, 0, 0), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12119), - [10145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11135), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [10150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12237), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12237), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7670), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10896), - [10170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11002), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [10179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7747), - [10182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11002), - [10185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11520), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [10212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7713), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11520), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10771), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10451), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11927), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11418), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10124), - [10331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7749), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11284), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10198), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [10354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7715), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [10365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7667), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9968), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11035), - [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11113), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11113), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11331), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11331), - [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9958), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11250), - [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11250), - [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9717), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11162), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11162), - [10438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(981), - [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9738), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11457), - [10455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8608), - [10458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), - [10460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10298), - [10463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5680), - [10466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7991), - [10469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11412), - [10472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10388), - [10475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9571), - [10478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10771), - [10481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_statements, 1, 0, 0), - [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11539), - [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11539), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12073), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11725), - [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11725), - [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11373), - [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11373), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9732), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11289), - [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11205), - [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11205), - [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9731), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11247), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11247), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11498), - [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11498), - [10583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(12073), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9735), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), - [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11415), - [10600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 3, 0, 33), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), - [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9450), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10412), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [10618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11083), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [10625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7732), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [10634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7689), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), - [10639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 2, 0, 0), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11083), - [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extend, 2, 0, 0), - [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), - [10659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 2, 0, 11), - [10661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 5, 0, 12), - [10663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 10, 0, 228), - [10665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 21), - [10667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 6, 0, 153), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10783), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12242), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12243), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12345), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11435), - [10679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 6, 0, 113), - [10681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 121), - [10683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 2, 0, 21), - [10685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 122), - [10687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 10, 0, 229), - [10689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 74), - [10691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 88), - [10693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 89), - [10695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 5, 0, 71), - [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 73), - [10699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_def, 4, 0, 12), - [10701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 6, 0, 155), - [10703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 6, 0, 156), - [10705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 4, 0, 60), - [10707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 11, 0, 231), - [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 123), - [10711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 75), - [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 71), - [10715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2, 0, 0), - [10717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 4, 0, 33), - [10719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 34), - [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 135), - [10723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 3, 0, 11), - [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 3, 0, 12), - [10727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 4, 0, 12), - [10729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 3, 0, 12), - [10731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 136), - [10733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 137), - [10735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 3, 0, 0), - [10737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 3, 0, 12), - [10739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 151), - [10741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 61), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10980), - [10749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 138), - [10751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 139), - [10753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 140), - [10755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 61), - [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 151), - [10759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 124), - [10761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 119), - [10763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 34), - [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 141), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12304), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12234), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12069), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9754), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11319), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 3, 0, 0), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11163), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11276), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11283), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11507), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11340), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11922), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11254), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11465), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11521), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11567), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11579), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11587), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11599), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11603), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11610), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11614), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11618), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11625), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11634), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11638), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11651), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11653), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11657), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11659), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11665), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11669), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11674), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11677), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11683), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11716), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11849), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11542), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11953), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12318), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12165), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11083), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11011), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11876), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11066), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10313), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10300), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11071), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10350), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11301), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lib_statements, 1, 0, 0), + [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11881), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11881), + [10152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_type_param_list, 2, 0, 0), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11676), + [10156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8287), + [10159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), + [10161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10313), + [10164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10300), + [10167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11071), + [10170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9892), + [10173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10349), + [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10350), + [10179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11301), + [10182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7718), + [10185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(12018), + [10188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9667), + [10191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10666), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_type_param_list, 3, 0, 0), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11924), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11154), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11248), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10956), + [10214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10956), + [10217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7769), + [10220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11154), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11090), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11090), + [10232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7778), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11574), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11370), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [10259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7735), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [10264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11574), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12226), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10442), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10444), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8834), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10976), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [10373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7727), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11372), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [10394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7710), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10159), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10505), + [10415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7780), + [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10009), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11082), + [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11082), + [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9799), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11586), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11586), + [10446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8699), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9795), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11504), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11504), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9789), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11336), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9878), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11543), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11543), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9798), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11545), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11545), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11135), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9788), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11294), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11294), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9792), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11462), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11462), + [10535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11135), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9745), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11160), + [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11160), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9790), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11378), + [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11378), + [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9775), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11209), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9777), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11252), + [10594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_statements, 1, 0, 0), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9791), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11420), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11420), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11738), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11738), + [10624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8658), + [10627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), + [10629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10313), + [10632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5816), + [10635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8031), + [10638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11588), + [10641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10135), + [10644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9658), + [10647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10752), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10265), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9556), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10096), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9778), + [10666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7731), + [10669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 3, 0, 33), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [10675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 2, 0, 0), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), + [10681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12323), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12323), + [10686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [10696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 2, 0, 11), + [10698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7709), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [10705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extend, 2, 0, 0), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [10711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 197), + [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break, 2, 0, 0), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11827), + [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 12), + [10723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 109), + [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 7, 0, 163), + [10727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 196), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10898), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12291), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12292), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12393), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), + [10739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 198), + [10741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 48), + [10743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 126), + [10745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 199), + [10747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 121), + [10749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_def, 3, 0, 12), + [10751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 122), + [10753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 74), + [10755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 71), + [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_def, 4, 0, 12), + [10759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 2, 0, 21), + [10761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 89), + [10763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 123), + [10765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 124), [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 125), - [10769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 90), - [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 126), - [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 34), - [10775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 12), - [10777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 119), - [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2, 0, 0), - [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 12), - [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 119), - [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 119), - [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 162), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [10791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 9, 0, 223), - [10793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 4, 0, 71), - [10795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 162), - [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 6, 0, 163), - [10799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 3, 0, 29), - [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 7, 0, 157), - [10803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 7, 0, 188), - [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 164), - [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 5, 0, 72), - [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 4, 0, 29), - [10811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 7, 0, 111), - [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 61), - [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 165), - [10817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lib_def, 4, 0, 12), - [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 166), - [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 9, 0, 224), - [10823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 7, 0, 189), - [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 167), - [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 61), - [10829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 109), - [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 109), - [10833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 5, 0, 110), - [10835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 21), - [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 195), - [10839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 168), - [10841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 169), - [10843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 195), - [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 162), - [10847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 162), - [10849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 7, 0, 163), - [10851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 196), - [10853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 197), - [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 198), - [10857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 199), - [10859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lib_def, 5, 0, 71), - [10861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 170), - [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 5, 0, 120), - [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 151), - [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 151), - [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 109), - [10871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 109), - [10873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 4, 0, 62), - [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 6, 0, 110), - [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 203), - [10879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 48), - [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 4, 0, 77), - [10883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break, 2, 0, 0), - [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 9, 0, 225), - [10887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 71), - [10889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 71), - [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 4, 0, 72), - [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lib_def, 4, 0, 71), - [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 211), - [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 71), - [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 191), - [10901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lib_def, 3, 0, 12), - [10903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 49), - [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 212), - [10907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 213), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 214), - [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 50), - [10917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require, 2, 0, 0), - [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 8, 0, 195), - [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 8, 0, 195), - [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 8, 0, 219), - [10925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_def, 3, 0, 12), - [10927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 175), - [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 176), - [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_assign, 4, 0, 76), - [10933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 177), - [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next, 2, 0, 0), - [10937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 178), - [10939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 91), - [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 92), - [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_assign, 3, 0, 31), - [10945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0), - [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 5, 0, 111), - [10949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 3, 0, 12), - [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 5, 0, 63), - [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 93), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 1, 0, 0), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [10969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(998), - [10972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11596), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11102), - [10977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7682), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11596), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11946), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [10990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11102), - [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11244), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9864), - [11023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7686), - [11026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7668), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11873), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [11053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7698), - [11056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1000), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11686), - [11061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11686), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), - [11074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), SHIFT_REPEAT(10259), - [11077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11795), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11211), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9634), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [11155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 1, 0, 0), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [11205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7734), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [11218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_type_param_list, 1, 0, 0), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9636), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [11270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 2, 0, 0), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9394), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9487), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10645), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9714), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9372), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9024), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9027), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10139), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10142), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10149), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10152), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9058), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9061), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10167), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9102), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9112), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [11472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(10468), - [11475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(9896), - [11478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), - [11480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(9647), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [11487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(10525), - [11490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(9925), - [11493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), - [11495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(9647), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10202), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10212), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [11526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 2, 0, 0), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7707), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11344), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10073), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10078), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10085), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10468), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9896), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9647), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10525), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9925), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [11603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 3, 0, 0), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [11621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 1, 0, 19), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [11627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11344), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [11644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_struct_expressions, 1, 0, 0), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10098), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10101), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), - [11664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__union_expressions, 1, 0, 0), - [11666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fun_type_param_list_repeat1, 2, 0, 0), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9018), - [11690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1581), - [11693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(9372), - [11696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), - [11698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(9372), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12347), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), - [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [11731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9523), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [11751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9513), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10054), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11079), - [11799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param_list, 3, 0, 0), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11788), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10281), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10729), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11989), - [11809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 2, 0, 0), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), - [11857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 4, 0, 60), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [11885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 3, 0, 0), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [11903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9641), - [11906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), - [11909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10253), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12348), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), - [11935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9519), - [11938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [11941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [11947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1011), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [11954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9606), - [11957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), - [11960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10337), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9850), - [11978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 2, 0, 12), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [11988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 1, 0, 0), - [11990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_param_repeat1, 1, 0, 0), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [11994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9513), - [11997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), - [12000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9513), - [12003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11411), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9700), - [12081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 1, 0, 28), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [12091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_outputs, 1, 0, 0), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [12101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param_list, 2, 0, 0), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11148), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9978), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12208), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [12137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_inputs, 1, 0, 0), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [12151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(9523), - [12154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1743), - [12157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(9523), - [12160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [12174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 1, 0, 0), - [12176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 1, 0, 0), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11915), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [12222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 3, 0, 0), - [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [12234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 0), - [12236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [12260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11653), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [12285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 2, 0, 0), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10620), - [12293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 1, 0, 0), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [12299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_clobbers, 1, 0, 0), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9868), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9235), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [12319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 2, 0, 12), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9435), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [12343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 2, 0, 0), - [12345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 2, 0, 0), SHIFT_REPEAT(7026), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10335), - [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 0), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10496), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9689), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10734), - [12378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 0), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [12382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 2, 0, 0), SHIFT_REPEAT(9716), - [12385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 2, 0, 0), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11833), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11296), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [12393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 2, 0, 0), - [12395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 2, 0, 0), SHIFT_REPEAT(978), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11854), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10991), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8987), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12190), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12155), - [12426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 1, 0, 0), - [12428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 1, 0, 0), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [12438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [12446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [12448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10797), - [12452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 1, 0, 0), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [12460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 2, 0, 0), SHIFT_REPEAT(10496), - [12463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 2, 0, 0), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [12475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 129), - [12477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 129), SHIFT_REPEAT(984), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11611), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12071), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [12498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 4, 0, 111), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12228), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11603), - [12532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11561), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11837), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11713), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [12557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 39), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10847), - [12563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 2, 0, 0), SHIFT_REPEAT(9689), - [12566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 2, 0, 0), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12291), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [12576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 1, 0, 0), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [12604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 129), - [12606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 129), SHIFT_REPEAT(8289), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10719), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11046), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10611), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), - [12635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1, 0, 0), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10331), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [12647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 4, 0, 99), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [12669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [12685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [12691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 1, 0, 0), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [12705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 1, 0, 0), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [12711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9764), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9765), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [12729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 2, 0, 56), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [12735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 0), - [12737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [12753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 1, 0, 0), - [12755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [12761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [12767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9805), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [12781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [12787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 4, 0, 78), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [12791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [12797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 4, 0, 79), - [12799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [12803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [12807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [12811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [12821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [12827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [12831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [12835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 3, 0, 0), - [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [12841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_statement, 1, 0, 0), - [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11228), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [12851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_operands, 2, 0, 0), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10088), - [12855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 2, 0, 0), - [12857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 2, 0, 0), SHIFT_REPEAT(8299), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [12864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_operands, 1, 0, 0), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), - [12870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_type_repeat1, 2, 0, 0), - [12872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8928), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [12883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(997), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9876), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9878), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [12900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [12904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_struct_expressions, 2, 0, 0), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [12910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 4, 0, 12), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11776), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [12924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), - [12926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__union_expressions, 2, 0, 0), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11935), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11923), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11009), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11310), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11574), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [12954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 105), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11843), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [12976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 2, 0, 0), - [12978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9628), - [12981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 4, 0, 0), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12090), - [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12293), - [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [12991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), - [12993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11183), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [13000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_options, 1, 0, 0), - [13002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_clobbers, 1, 0, 0), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12249), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [13012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_operands_repeat1, 2, 0, 0), - [13014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_operands_repeat1, 2, 0, 0), SHIFT_REPEAT(10088), - [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11689), - [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12257), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9748), - [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), - [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11082), - [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), - [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [13041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11178), - [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11242), - [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11328), - [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11389), - [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11440), - [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [13071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 1, 0, 0), - [13073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 1, 0, 0), - [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11504), - [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11522), - [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), - [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11544), - [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11548), - [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11553), - [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [13099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_struct_expressions, 1, 0, 0), - [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11563), - [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11570), - [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11587), - [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11600), - [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11607), - [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11612), - [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11620), - [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11623), - [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11630), - [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11633), - [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11639), - [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11648), - [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), - [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11667), - [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11670), - [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11673), - [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [13165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 5, 0, 113), - [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [13171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__union_expressions_repeat1, 1, 0, 0), - [13173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__union_expressions_repeat1, 1, 0, 0), - [13175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__union_expressions, 1, 0, 0), - [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [13183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11122), - [13191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 6, 0, 171), - [13193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 5, 0, 0), - [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [13199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_clobbers, 2, 0, 0), - [13201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_statements, 2, 0, 0), - [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [13205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 6, 0, 111), - [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [13209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lib_statements, 2, 0, 0), - [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [13215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 2, 0, 0), - [13217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9628), - [13220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [13224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 7, 0, 213), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [13228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 8, 0, 0), - [13230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 7, 0, 0), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [13236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [13254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 6, 0, 0), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9754), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), - [13260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_clobbers_repeat1, 2, 0, 0), - [13262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_clobbers_repeat1, 2, 0, 0), SHIFT_REPEAT(10866), - [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), - [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), - [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), - [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), - [13319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 4, 0, 39), - [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [13323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 1, 0, 0), - [13325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 1, 0, 18), - [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9060), - [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), - [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), - [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), - [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), - [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [13351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), - [13353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), - [13368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7632), - [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), - [13379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 1, 0, 0), - [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), - [13383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_clobbers_repeat1, 2, 0, 0), SHIFT_REPEAT(10860), - [13386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_inputs, 2, 0, 131), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), - [13396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 1, 0, 0), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), - [13404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 8, 0, 224), - [13406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_outputs, 2, 0, 84), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [13414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 3, 0, 53), - [13416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 3, 0, 28), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9083), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [13436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), - [13438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(8901), - [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10476), - [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10830), - [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), - [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [13463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9467), - [13466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [13474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 148), - [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [10769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 119), + [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 3, 0, 0), + [10773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 6, 0, 110), + [10775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 6, 0, 113), + [10777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 151), + [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 3, 0, 12), + [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 90), + [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lib_def, 3, 0, 12), + [10785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 151), + [10787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 138), + [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 12), + [10791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 3, 0, 11), + [10793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 170), + [10795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 178), + [10797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 88), + [10799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 34), + [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 4, 0, 29), + [10803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 135), + [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 203), + [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2, 0, 0), + [10809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 4, 0, 33), + [10811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 136), + [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 167), + [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 71), + [10817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 168), + [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 75), + [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 119), + [10823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lib_def, 4, 0, 12), + [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 91), + [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 5, 0, 110), + [10829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 5, 0, 72), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 169), + [10833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 61), + [10835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 73), + [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 175), + [10839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 4, 0, 60), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [10843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 176), + [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 119), + [10847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 119), + [10849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 49), + [10851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 177), + [10853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 211), + [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 191), + [10857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 3, 0, 29), + [10859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 139), + [10861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 212), + [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_assign, 4, 0, 76), + [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 213), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 93), + [10869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next, 2, 0, 0), + [10871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 140), + [10873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 8, 0, 214), + [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 34), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 162), + [10879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 4, 0, 12), + [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 162), + [10883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 61), + [10885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 166), + [10887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 109), + [10889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 21), + [10891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 5, 0, 111), + [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 8, 0, 195), + [10895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 4, 0, 77), + [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 8, 0, 195), + [10899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 6, 0, 163), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 8, 0, 219), + [10907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 61), + [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 141), + [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 7, 0, 157), + [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 164), + [10915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 7, 0, 188), + [10917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 71), + [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 165), + [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 34), + [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 4, 0, 72), + [10925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 4, 0, 71), + [10927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lib_def, 4, 0, 71), + [10929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 137), + [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 7, 0, 111), + [10933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 5, 0, 120), + [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2, 0, 0), + [10937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 71), + [10939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 5, 0, 63), + [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 4, 0, 62), + [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0), + [10945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 9, 0, 223), + [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 9, 0, 224), + [10949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 7, 0, 189), + [10951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 9, 0, 225), + [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 5, 0, 71), + [10955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 92), + [10957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 6, 0, 155), + [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 6, 0, 156), + [10961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 61), + [10963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 10, 0, 228), + [10965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 10, 0, 229), + [10967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 3, 0, 12), + [10969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 6, 0, 153), + [10971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 109), + [10973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 11, 0, 231), + [10975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 195), + [10977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 21), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 50), + [10981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_assign, 3, 0, 31), + [10983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require, 2, 0, 0), + [10985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lib_def, 5, 0, 71), + [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 195), + [10989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 3, 0, 12), + [10991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 109), + [10993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 151), + [10995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 162), + [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 3, 0, 12), + [10999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_top_level_fun_def, 5, 0, 12), + [11001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 151), + [11003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 162), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [11011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lib_statements_repeat1, 1, 0, 0), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), + [11021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(999), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12017), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [11038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11040), + [11041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7733), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [11046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(12017), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [11051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7725), + [11054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7748), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9859), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11903), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11845), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11749), + [11107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7716), + [11110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [11113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11749), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11053), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12265), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9627), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9276), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [11188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7752), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9381), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9669), + [11203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_type_param_list, 1, 0, 0), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9642), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [11213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_statements_repeat1, 1, 0, 0), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [11247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), + [11249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), SHIFT_REPEAT(10265), + [11252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9674), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [11344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 2, 0, 0), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9700), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), + [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9463), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9666), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10090), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9782), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9550), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11413), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [11476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11413), + [11479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [11482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(9550), + [11485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), + [11487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(9550), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8845), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8857), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), + [11522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(10449), + [11525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(9934), + [11528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), + [11530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(9572), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [11537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(10711), + [11540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(9773), + [11543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), + [11545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), SHIFT_REPEAT(9572), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10449), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), + [11560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_struct_expressions, 1, 0, 0), + [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9572), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8995), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9007), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), + [11578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 2, 0, 0), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), + [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10711), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), + [11586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__union_expressions, 1, 0, 0), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [11618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7764), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), + [11691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 3, 0, 0), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [11703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fun_type_param_list_repeat1, 2, 0, 0), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10380), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10384), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10476), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10565), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10702), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10133), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10249), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10342), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10242), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10275), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10291), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10358), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10362), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10369), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10390), + [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 1, 0, 19), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10510), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10557), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10467), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10843), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12322), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9610), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), + [11781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9620), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9698), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9698), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9564), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12396), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [11859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9698), + [11862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1818), + [11865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9698), + [11868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10357), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10492), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [11904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), + [11907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), + [11910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12395), + [11914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 2, 0, 0), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12069), + [11938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param_list, 3, 0, 0), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11356), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [11974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [11978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param_list, 2, 0, 0), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11150), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [11984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9610), + [11987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1815), + [11990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10415), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [12002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 1, 0, 0), + [12004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_param_repeat1, 1, 0, 0), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9584), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [12040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(9620), + [12043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [12046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(9620), + [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), + [12051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(1014), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), + [12058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 1, 0, 28), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9846), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12038), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), + [12080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 2, 0, 12), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9771), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11785), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [12150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9564), + [12153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1370), + [12156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [12172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_outputs, 1, 0, 0), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [12178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_inputs, 1, 0, 0), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [12206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 3, 0, 0), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [12214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 4, 0, 60), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [12226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(983), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10073), + [12247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 0), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [12267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_clobbers, 1, 0, 0), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11616), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [12287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 2, 0, 0), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [12313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 0), + [12315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), + [12317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 2, 0, 12), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [12335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 2, 0, 0), + [12337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 2, 0, 0), SHIFT_REPEAT(7077), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [12388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 3, 0, 0), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9699), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11236), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9315), + [12402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 1, 0, 0), + [12404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 1, 0, 0), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10083), + [12416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 1, 0, 0), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9897), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [12430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1, 0, 0), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10379), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [12466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), + [12484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 2, 0, 0), + [12486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 2, 0, 0), SHIFT_REPEAT(1026), + [12489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 129), + [12491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 129), SHIFT_REPEAT(1034), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11911), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [12504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 129), + [12506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 129), SHIFT_REPEAT(8336), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11145), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10880), + [12519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 1, 0, 0), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [12539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [12541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11647), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11039), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11488), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11140), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8976), + [12559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 2, 0, 0), SHIFT_REPEAT(9736), + [12562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 2, 0, 0), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11455), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [12576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 2, 0, 0), SHIFT_REPEAT(9897), + [12579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 2, 0, 0), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [12597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), + [12606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 1, 0, 0), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11804), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10966), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [12630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 39), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10901), + [12634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 0), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11093), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10668), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [12646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 2, 0, 0), SHIFT_REPEAT(10440), + [12649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 2, 0, 0), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12025), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11967), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [12677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 4, 0, 99), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12197), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [12697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 1, 0, 0), + [12699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 1, 0, 0), + [12701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 4, 0, 111), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), + [12713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9578), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [12725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [12751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), + [12753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7690), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [12758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 1, 0, 0), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [12770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [12776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 2, 0, 0), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [12788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_struct_expressions, 2, 0, 0), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [12792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 4, 0, 12), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [12798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 3, 0, 0), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [12804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 2, 0, 0), + [12806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9578), + [12809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 2, 0, 0), + [12811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9578), + [12814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__union_expressions_repeat1, 2, 0, 0), + [12816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [12822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__union_expressions, 2, 0, 0), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [12826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__union_expressions_repeat1, 1, 0, 0), + [12828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__union_expressions_repeat1, 1, 0, 0), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [12832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [12836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 2, 0, 56), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [12842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [12846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [12852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [12864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [12868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [12872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [12876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [12880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [12886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [12892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [12896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [12904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__union_expressions, 1, 0, 0), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10968), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9805), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9806), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [12938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9822), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9823), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [12962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 4, 0, 0), + [12964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_options, 1, 0, 0), + [12966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_clobbers, 1, 0, 0), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10875), + [12970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_operands_repeat1, 2, 0, 0), + [12972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_operands_repeat1, 2, 0, 0), SHIFT_REPEAT(10230), + [12975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_operands, 2, 0, 0), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), + [12979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 105), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9730), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [12999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12101), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), + [13009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1005), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [13014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 1, 0, 0), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [13018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 0), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11759), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12003), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11191), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11548), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [13040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 5, 0, 113), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11500), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11943), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [13062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 1, 0, 0), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11692), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11891), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [13072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 6, 0, 171), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [13080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 1, 0, 0), + [13082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__c_struct_expressions_repeat1, 1, 0, 0), + [13084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 5, 0, 0), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11524), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [13094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_clobbers, 2, 0, 0), + [13096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_struct_expressions, 1, 0, 0), + [13098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_statement, 1, 0, 0), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12278), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9872), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9873), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [13122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_type_repeat1, 2, 0, 0), + [13124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8994), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11152), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [13139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 6, 0, 111), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11338), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9884), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11396), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [13159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_statements, 2, 0, 0), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11520), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11565), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11576), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11585), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11595), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11601), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11609), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11612), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11617), + [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11622), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11633), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11637), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11640), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11645), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11649), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11652), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11655), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11658), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11661), + [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11667), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11670), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11675), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11678), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11681), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [13259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 6, 0, 0), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [13265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_clobbers_repeat1, 2, 0, 0), + [13267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_clobbers_repeat1, 2, 0, 0), SHIFT_REPEAT(10875), + [13270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 7, 0, 213), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [13274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 2, 0, 0), + [13276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 2, 0, 0), SHIFT_REPEAT(8356), + [13279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lib_statements, 2, 0, 0), + [13281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 7, 0, 0), + [13283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 8, 0, 0), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [13289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9809), + [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9703), + [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [13305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 4, 0, 78), + [13307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_operands, 1, 0, 0), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [13313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 4, 0, 79), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11820), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), + [13329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 61), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10839), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [13355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 12), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [13361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_then, 1, 0, 0), + [13363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 3, 0, 61), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8752), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [13377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 4, 0, 39), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10302), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [13383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_param_list_repeat1, 2, 0, 0), + [13385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9628), + [13388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__union_expression, 1, 0, 0), + [13390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 1, 0, 0), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), + [13394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 1, 0, 0), + [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), + [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [13430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), + [13432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [13461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1, 0, 0), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [13471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_clobbers_repeat1, 2, 0, 0), SHIFT_REPEAT(10855), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), - [13484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 63), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [13524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_param_list_repeat1, 2, 0, 0), - [13526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9533), - [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), - [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), - [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10977), - [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [13555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_def, 4, 0, 12), - [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), - [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), - [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), - [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), - [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [13591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_param, 1, 0, 28), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), - [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10080), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9111), - [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), - [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), - [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), - [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), - [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), - [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), - [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), - [13627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 1, 0, 0), - [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [13633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 4, 0, 63), - [13635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_def, 4, 0, 0), - [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), - [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [13641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_def, 4, 0, 12), - [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), - [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [13651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var, 4, 0, 152), - [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10096), - [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10100), - [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10104), - [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [13663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fun_param_list_repeat1, 2, 0, 0), - [13665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9568), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [13694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lib_statement, 1, 0, 0), - [13696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 103), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [13700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), - [13702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8309), - [13705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 61), - [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [13711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 3, 0, 61), - [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [13715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 2, 0, 38), - [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), - [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), - [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), - [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), - [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), - [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), - [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), - [13757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), - [13759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9246), - [13762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 7, 0, 191), - [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), - [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10141), - [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10144), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), - [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10148), - [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10151), - [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), - [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), - [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10154), - [13830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_object_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [13833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 5, 0, 128), - [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10159), - [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), - [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), - [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), - [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10165), - [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10170), - [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10173), - [13863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_clobbers, 2, 0, 173), - [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), - [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [13869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1, 0, 0), - [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), - [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), - [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10883), - [13903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), - [13905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), SHIFT_REPEAT(10885), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), - [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), - [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), - [13922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 184), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9403), - [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8699), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10201), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10205), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10208), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10211), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10215), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), - [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), - [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9023), - [13998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_struct_expression, 1, 0, 0), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), - [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), - [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10223), - [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [14034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_fields, 3, 0, 187), - [14036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_struct_fields_repeat1, 2, 0, 0), SHIFT_REPEAT(10977), - [14039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_struct_fields_repeat1, 2, 0, 0), - [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), - [14047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_fields, 3, 0, 187), - [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), - [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), - [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), - [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), - [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), - [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10241), - [14087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__union_expression, 1, 0, 0), - [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10246), - [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), - [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8727), - [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), - [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [14121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 1, 0, 0), - [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), - [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), - [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [14131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_options, 1, 0, 0), - [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), - [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [14137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_operand, 4, 0, 202), - [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), - [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), - [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [14163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_fields, 4, 0, 209), - [14165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 6, 0, 157), - [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), - [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [14201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_type_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7709), - [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [14212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 6, 0, 189), - [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), - [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [14236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_fields, 4, 0, 209), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [14242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var, 6, 0, 210), - [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), - [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), - [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8725), - [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [14260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 12), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [14264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_then, 1, 0, 0), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [14278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param_list, 1, 0, 0), - [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9318), - [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), - [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), - [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), - [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), - [14292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 2, 0, 12), - [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [14300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 9, 0, 229), - [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), - [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), - [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [14324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 1, 0, 0), - [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), - [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), - [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), - [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), - [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), - [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10400), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), - [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), - [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), - [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), - [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), - [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), - [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), - [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), - [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), - [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [14430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_options, 2, 0, 0), - [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), - [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), - [14444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), - [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), - [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11484), - [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), - [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11622), - [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9233), - [14473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [14477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12099), - [14483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11317), - [14491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), - [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11589), - [14499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9933), - [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [14507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [14511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 2, 0, 0), - [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11660), - [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12197), - [14519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12198), - [14525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11929), - [14531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11566), - [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11679), - [14543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 61), - [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11694), - [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11697), - [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11700), - [14559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12184), - [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11275), - [14569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [14573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 4, 0, 39), - [14575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 3, 0, 0), - [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11703), - [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), - [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11525), - [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11086), - [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11709), - [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11718), - [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11721), - [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11724), - [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11727), - [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11730), - [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11733), - [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11736), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11739), - [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11742), - [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11118), - [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11676), - [14631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [14635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11685), - [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10985), - [14643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [14647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [14651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [14655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [14659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [14663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11233), - [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11359), - [14671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 1, 0, 0), - [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), - [14677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11668), - [14683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [14687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [14691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), - [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11605), - [14699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [14703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2, 0, 0), - [14705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 5, 0, 216), - [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [14709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 12), - [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [14713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [14717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 5, 0, 216), - [14719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param, 3, 0, 154), - [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), - [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [14725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11688), - [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11390), - [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11443), - [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11401), - [14737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), - [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [14741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9413), - [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), - [14745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [14749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), - [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9385), - [14753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11608), - [14759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 63), - [14761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 4, 0, 63), - [14763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 152), - [14765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9526), - [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), - [14769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9620), - [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), - [14773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [14777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11691), - [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11901), - [14785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [14789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [14793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 4, 0, 0), - [14795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 1, 0, 7), - [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), - [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11644), - [14803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11682), - [14809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [14813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11712), - [14819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [14827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 3, 0, 0), - [14829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11636), - [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [14837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_splat, 2, 0, 0), - [14839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [14843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [14847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 5, 0, 128), - [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12346), - [14851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 154), - [14853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [14857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [14861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [14865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [14869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11650), - [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), - [14877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_splat_param, 2, 0, 12), - [14879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [14883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [14887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [14893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [14897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [14901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11905), - [14907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 1, 0, 0), - [14909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 5, 0, 0), - [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11388), - [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11934), - [14915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [14919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [14923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [14927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), - [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), - [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [14957] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [14965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), - [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), - [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), - [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11032), - [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11059), - [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), - [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), - [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), - [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), - [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), - [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), - [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), - [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11950), - [15041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [15043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 1, 0, 17), - [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [15053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), - [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10030), - [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8972), - [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), - [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), - [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [15091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 3, 0, 81), - [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10715), - [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), - [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), - [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), - [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), - [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [15155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9564), - [15159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [15161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [15163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9627), - [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9062), - [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), - [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), - [15191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), - [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), - [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), - [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), - [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), - [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), - [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), - [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), - [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), - [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), - [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), - [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), - [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10070), - [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), - [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9068), - [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), - [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), - [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), - [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10079), - [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), - [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), - [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9921), - [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), - [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), - [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), - [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), - [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), - [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), - [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), - [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), - [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10095), - [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), - [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10099), - [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10102), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10103), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10717), - [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), - [15435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [15445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 2, 0, 36), - [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), - [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [15451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 154), - [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), - [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [15487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 2, 0, 37), - [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), - [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), - [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), - [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), - [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), - [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), - [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), - [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), - [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), - [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9578), - [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), - [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), - [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), - [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), - [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), - [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), - [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), - [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), - [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9262), - [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), - [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), - [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), - [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8767), - [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), - [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10140), - [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), - [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9022), - [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), - [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), - [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10143), - [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), - [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), - [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10147), - [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), - [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), - [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10150), - [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10157), - [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), - [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10158), - [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), - [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), - [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10882), - [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [15945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__numeric_type, 1, 0, 0), - [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), - [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), - [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10164), - [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), - [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10168), - [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10169), - [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), - [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10171), - [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10172), - [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [16017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_clobbers, 2, 0, 172), - [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [16027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_inputs, 3, 0, 174), - [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), - [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), - [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), - [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), - [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [16121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 4, 0, 100), - [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), - [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), - [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), - [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), - [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [16163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), - [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), - [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10192), - [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), - [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), - [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9028), - [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), - [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), - [16295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 5, 0, 0), - [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10199), - [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10203), - [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), - [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), - [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10207), - [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10209), - [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10210), - [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), - [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), - [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), - [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10213), - [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10214), - [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), - [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), - [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10216), - [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), - [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10252), - [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), - [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), - [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10217), - [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10220), - [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), - [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), - [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), - [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), - [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10225), - [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), - [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10226), - [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), - [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), - [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), - [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), - [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), - [16551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param_list, 4, 0, 0), - [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), - [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9110), - [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), - [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), - [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), - [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9644), - [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), - [16605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 4, 0, 63), - [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), - [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [16611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 4, 0, 0), - [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), - [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), - [16619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 4, 0, 152), - [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), - [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), - [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), - [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), - [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10517), - [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), - [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), - [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), - [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10302), - [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), - [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), - [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), - [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), - [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10238), - [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10239), - [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10240), - [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10242), - [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10243), - [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10244), - [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10245), - [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), - [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10247), - [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10248), - [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), - [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10249), - [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), - [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), - [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), - [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), - [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), - [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), - [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), - [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), - [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10257), - [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10263), - [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8825), - [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), - [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), - [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), - [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8830), - [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), - [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), - [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [16819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_options, 2, 0, 200), - [16821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), - [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [16829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_clobbers, 3, 0, 201), - [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), - [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [16859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 5, 0, 144), - [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [16869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [16893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), - [16895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [16897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_inputs, 2, 0, 130), - [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [16907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_outputs, 3, 0, 132), - [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [16913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [16917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), - [16923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [16925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [16929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10870), - [16933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), - [16935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [16937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), - [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [16941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), - [16943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [16945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), - [16947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [16949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [16951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), - [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), - [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [16961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), - [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [16965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), - [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), - [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), - [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), - [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), - [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9959), - [16993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), - [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), - [17001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_outputs, 2, 0, 83), - [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [17005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [17007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [17009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), - [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), - [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), - [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [17021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), - [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [17033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), - [17037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), - [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [17049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), - [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [17065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), - [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), - [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [17089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [17093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), - [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), - [17099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [17105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [17115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), - [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), - [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [17121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9129), - [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), - [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [17137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [17139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [17141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [17143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [17145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [17147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [17149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [17151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [17153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [17155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [17157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10472), - [17159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9591), - [17161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [17163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [17165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), - [17167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [17169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [17171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [17173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [17175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [17177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), - [17179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [17181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [17183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [17185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_type_param_list, 4, 0, 0), - [17187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [17189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), - [17191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [17193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [17195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [17197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), - [17199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [17201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [17203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [17205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [17207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [17209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [17211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [17213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [17215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), - [17217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [17219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 5, 0, 216), - [17221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [17223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [17225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [17227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [17229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [17231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [17233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [17235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [17237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [17239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), - [17241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [17243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [17245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [17247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), - [17249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [17251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [17253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [17255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [17257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [17259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), - [17261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [17263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), - [17265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [17267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), - [17269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [17271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [17273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [17275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [17277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [17281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [17283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [17285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [17287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), - [17289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [17291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [17293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [17297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [17301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [17305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [17309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), - [17311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [17313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), - [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [17317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [17319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [17321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [17323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [17325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [17327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [17329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [17331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [17333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [17335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [17337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9599), - [17339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [17341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [17345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [17349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [17351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [17353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [17357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [17359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [17361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), - [17363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [17365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [17367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [17369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [17373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [17377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [17381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [17385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [17387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), - [17389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [17391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [17393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [17397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [17401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [17403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [17405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [17407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [17409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), - [17411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), - [17413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [17415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [17417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [17419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [17421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [17423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), - [17425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [17427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), - [17429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [17431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [17433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [17435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [17437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [17439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [17441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [17443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [17445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [17447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [17449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [17451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [17453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [17455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [17457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [17459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9584), - [17461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [17463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), - [17465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [17467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), - [17469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [17471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [17473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9458), - [17477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [17481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [17485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [17489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), - [17491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [17493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ensure, 2, 0, 0), - [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [17497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [17499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [17501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9010), - [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [17509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), - [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), - [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), - [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), - [17521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [17525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [17527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [17529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [17531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), - [17533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [17535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [17537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), - [17539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [17541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [17543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [17545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [17547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [17549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [17551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [17553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [17555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [17557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [17559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [17561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [17563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [17565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [17567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [17569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [17571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [17573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [17575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [17577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [17579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [17581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [17583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [17585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [17587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [17589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [17591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [17593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [17595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [17597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [17599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [17601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [17603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [17605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [17607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [17609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [17611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3, 0, 0), - [17613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [13532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 148), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), + [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [13542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_inputs, 2, 0, 131), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [13598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_object_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), + [13601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 5, 0, 128), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), + [13639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_clobbers, 2, 0, 173), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8769), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9129), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), + [13703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_struct_expression, 1, 0, 0), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [13713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7693), + [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11702), + [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [13722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_def, 4, 0, 12), + [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8788), + [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), + [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [13740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 2, 0, 12), + [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10884), + [13758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), + [13760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), SHIFT_REPEAT(10885), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [13805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 184), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), + [13831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_fields, 3, 0, 187), + [13833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_struct_fields_repeat1, 2, 0, 0), SHIFT_REPEAT(11702), + [13836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_struct_fields_repeat1, 2, 0, 0), + [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [13840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_fields, 3, 0, 187), + [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8725), + [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [13872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 2, 0, 38), + [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [13890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 1, 0, 0), + [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), + [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [13904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 3, 0, 53), + [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9272), + [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [13918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 3, 0, 28), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), + [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [13936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 1, 0, 0), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [13946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 4, 0, 63), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), + [13952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_options, 1, 0, 0), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10855), + [13956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_def, 4, 0, 0), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [13960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_def, 4, 0, 12), + [13962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_operand, 4, 0, 202), + [13964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 63), + [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [13972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), + [13974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9344), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [13979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_param, 1, 0, 28), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), + [13989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 1, 0, 0), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [13999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_fields, 4, 0, 209), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [14029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 6, 0, 157), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), + [14033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_type_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7786), + [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [14040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 6, 0, 189), + [14042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_fields, 4, 0, 209), + [14044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var, 6, 0, 210), + [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10382), + [14056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var, 4, 0, 152), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10563), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10740), + [14140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fun_param_list_repeat1, 2, 0, 0), + [14142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fun_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9659), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10244), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10335), + [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [14175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_options, 2, 0, 0), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [14181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 1, 0, 18), + [14183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 7, 0, 191), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10271), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10278), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10351), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10424), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10361), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10366), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10376), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10389), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10395), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10401), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [14241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lib_statement, 1, 0, 0), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [14255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 8, 0, 224), + [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10509), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10537), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10551), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10556), + [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8992), + [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10573), + [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10594), + [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10628), + [14307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param_list, 1, 0, 0), + [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), + [14311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_def, 9, 0, 229), + [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10213), + [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10343), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10765), + [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), + [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), + [14353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [14364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_outputs, 2, 0, 84), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10314), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), + [14408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9504), + [14411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), + [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [14435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), + [14437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(8900), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [14462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 103), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9040), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [14476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), + [14478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8348), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [14493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 1, 0, 0), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9033), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [14515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_splat, 2, 0, 0), + [14517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 1, 0, 0), + [14519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12207), + [14529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [14533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11243), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [14543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9392), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), + [14547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 4, 0, 0), + [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11237), + [14553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [14557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [14561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [14565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), + [14571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11636), + [14579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [14583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11788), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11975), + [14591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9407), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), + [14599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param, 3, 0, 154), + [14601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [14605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [14609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 12), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [14613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11934), + [14619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11722), + [14629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11725), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11322), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11739), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11742), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11745), + [14651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [14655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [14659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11748), + [14667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11751), + [14675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [14679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11754), + [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11763), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10996), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11766), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11769), + [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11772), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11775), + [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11778), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11781), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11784), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11787), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11550), + [14725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [14729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 5, 0, 216), + [14731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [14735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [14739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11654), + [14745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [14749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 5, 0, 216), + [14751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11280), + [14761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 1, 0, 0), + [14763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 3, 0, 0), + [14765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11572), + [14773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [14777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_splat_param, 2, 0, 12), + [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11714), + [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12000), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11730), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11816), + [14787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [14791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 1, 0, 7), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11531), + [14795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 5, 0, 128), + [14797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), + [14803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [14807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11762), + [14813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11733), + [14819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [14823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 154), + [14825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [14829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 63), + [14831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 4, 0, 63), + [14833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [14839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [14843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 3, 0, 0), + [14845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 4, 0, 39), + [14847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [14851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2, 0, 0), + [14853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 5, 0, 0), + [14855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [14859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12353), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9817), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [14869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 152), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11613), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), + [14875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11736), + [14881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 61), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), + [14887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [14891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), + [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), + [14895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [14899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9506), + [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [14903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [14907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11598), + [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11757), + [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11728), + [14919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [14923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [14927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [14931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [14935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [14939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11364), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11668), + [14949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11760), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11662), + [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11490), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11914), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11448), + [14963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [14967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [14971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11682), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12026), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11696), + [14981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 2, 0, 0), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11193), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12086), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), + [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [15041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [15043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [15053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), + [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11459), + [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [15085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_clobbers, 2, 0, 172), + [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [15099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_inputs, 3, 0, 174), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), + [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [15155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [15159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [15161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [15163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), + [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11868), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [15191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), + [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), + [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), + [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [15341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), + [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [15371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 4, 0, 100), + [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), + [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), + [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9654), + [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [15549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ensure, 2, 0, 0), + [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), + [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), + [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), + [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), + [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10936), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [15695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 5, 0, 0), + [15697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [15773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_param_list, 4, 0, 0), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), + [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [15807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 2, 0, 36), + [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [15815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 4, 0, 63), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [15819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 2, 0, 37), + [15821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 4, 0, 0), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), + [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [15869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 4, 0, 152), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9694), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [15931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 154), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), + [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), + [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9089), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9090), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), + [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9590), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [16151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 1, 0, 17), + [16153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rescue_else_ensure, 3, 0, 81), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), + [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9101), + [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10289), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [16203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_options, 2, 0, 200), + [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [16211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_clobbers, 3, 0, 201), + [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), + [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), + [16235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 5, 0, 144), + [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9681), + [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), + [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10776), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10381), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10460), + [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), + [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), + [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [16511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 5, 0, 216), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), + [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), + [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), + [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), + [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), + [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), + [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), + [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10494), + [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10714), + [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10215), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10329), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), + [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10417), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8926), + [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [16773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_type_param_list, 4, 0, 0), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), + [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), + [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10245), + [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [16821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10276), + [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), + [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10304), + [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10307), + [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10360), + [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10365), + [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10370), + [16859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), + [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [16869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10387), + [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), + [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10392), + [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10394), + [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10396), + [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10397), + [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10402), + [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [16893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [16895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [16913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [16917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), + [16923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [16925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [16929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), + [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), + [16933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [16935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [16937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10434), + [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), + [16941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [16943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [16945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [16947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [16949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [16951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), + [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [16961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [16965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), + [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), + [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [16993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), + [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10506), + [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [17005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [17007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [17009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10518), + [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10520), + [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8882), + [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [17021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10545), + [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10550), + [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), + [17033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10554), + [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10555), + [17037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10558), + [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10567), + [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [17049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10585), + [17051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), + [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), + [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8832), + [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), + [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10612), + [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10625), + [17065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10631), + [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), + [17089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [17093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_inputs, 2, 0, 130), + [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [17099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [17105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [17107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), + [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), + [17115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), + [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), + [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [17121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [17137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [17139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_outputs, 2, 0, 83), + [17141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8980), + [17143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [17145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [17147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [17149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), + [17151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), + [17153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [17155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [17157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [17159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [17161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), + [17163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [17165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10149), + [17167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10152), + [17169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10179), + [17171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), + [17173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10246), + [17175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10254), + [17177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [17179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10297), + [17181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10299), + [17183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [17185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [17187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [17189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [17191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [17193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10375), + [17195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [17197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [17199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [17201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), + [17203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9595), + [17205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [17207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [17209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10420), + [17211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [17213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10463), + [17215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [17217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [17219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [17221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [17223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [17225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [17227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [17229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [17231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [17233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [17235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [17237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), + [17239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [17241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), + [17243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [17245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [17247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [17249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [17251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8821), + [17253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [17255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), + [17257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [17259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), + [17261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [17263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), + [17265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), + [17267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [17269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [17271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [17273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [17275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10139), + [17277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [17281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [17283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [17285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9631), + [17287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [17289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10180), + [17291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [17293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [17297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [17301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [17305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [17309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [17311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), + [17313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), + [17317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), + [17319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), + [17321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [17323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [17325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [17327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [17329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), + [17331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [17333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [17335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [17337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [17339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__asm_outputs, 3, 0, 132), + [17341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), + [17345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [17349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [17351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [17353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), + [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [17357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [17359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [17361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9599), + [17363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [17365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), + [17367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [17369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [17373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [17377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [17381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [17385] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [17387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [17389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [17391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), + [17393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [17397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [17401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [17403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [17405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [17407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [17409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9662), + [17411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [17413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), + [17415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [17417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [17419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [17421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [17423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [17425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [17427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [17429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [17431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), + [17433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [17435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9625), + [17437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [17439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9024), + [17441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [17443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [17445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [17447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [17449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [17451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [17453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [17455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [17457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [17459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), + [17461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [17463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [17465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [17467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [17469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [17471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [17473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9382), + [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9384), + [17477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), + [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [17481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [17485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [17489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [17491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [17493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [17497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [17499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [17501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [17509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [17521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [17525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [17527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), + [17529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10845), + [17531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [17533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [17535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [17537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [17539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [17541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [17543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [17545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [17547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [17549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [17551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [17553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__numeric_type, 1, 0, 0), + [17555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [17557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [17559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [17561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [17563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [17565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [17567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8783), + [17569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [17571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [17573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [17575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [17577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [17579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [17581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [17583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [17585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [17587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [17589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [17591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [17593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [17595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [17597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [17599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [17601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [17603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [17605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [17607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [17609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [17611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [17613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [17615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), + [17617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [17619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [17621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [17623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [17625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [17627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [17629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [17631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [17633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [17635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [17637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [17639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [17641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [17643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [17645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [17647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [17649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [17651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [17653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [17655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [17657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [17659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [17661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [17663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [17665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [17667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [17669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -751567,262 +757061,40 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [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__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, - }, - [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__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, - }, - [8] = { - [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, - }, - [9] = { - [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__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, - }, - [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, - [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_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, - }, - [11] = { + [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__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, @@ -751831,10 +757103,49 @@ static const bool ts_external_scanner_states[133][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, }, - [12] = { + [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, @@ -751850,6 +757161,7 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [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, @@ -751860,6 +757172,7 @@ static const bool ts_external_scanner_states[133][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, @@ -751872,7 +757185,125 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__start_of_parenless_args] = true, }, - [13] = { + [8] = { + [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, + }, + [9] = { + [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__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, + }, + [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, + [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_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, + }, + [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, @@ -751895,6 +757326,69 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, }, + [12] = { + [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, + }, + [13] = { + [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__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_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, + }, [14] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, @@ -752345,12 +757839,12 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__start_of_parenless_args] = true, }, [26] = { + [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__end_of_with_expression] = true, [ts_external_token_unary_plus] = true, [ts_external_token_unary_minus] = true, [ts_external_token_binary_plus] = true, @@ -752359,9 +757853,7 @@ static const bool ts_external_scanner_states[133][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_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, @@ -752369,7 +757861,13 @@ static const bool ts_external_scanner_states[133][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, @@ -752379,15 +757877,15 @@ static const bool ts_external_scanner_states[133][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, }, [27] = { - [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__end_of_with_expression] = true, [ts_external_token_unary_plus] = true, [ts_external_token_unary_minus] = true, [ts_external_token_binary_plus] = true, @@ -752396,7 +757894,9 @@ static const bool ts_external_scanner_states[133][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_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, @@ -752404,13 +757904,7 @@ static const bool ts_external_scanner_states[133][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, @@ -752420,7 +757914,7 @@ static const bool ts_external_scanner_states[133][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, + [ts_external_token__start_of_parenless_args] = true, }, [28] = { [ts_external_token__line_break] = true, @@ -752464,10 +757958,10 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { }, [29] = { [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, @@ -752476,9 +757970,7 @@ static const bool ts_external_scanner_states[133][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_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, @@ -752496,14 +757988,14 @@ static const bool ts_external_scanner_states[133][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, }, [30] = { - [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, @@ -752512,7 +758004,9 @@ static const bool ts_external_scanner_states[133][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_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, @@ -752520,13 +758014,7 @@ static const bool ts_external_scanner_states[133][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, @@ -752536,12 +758024,11 @@ static const bool ts_external_scanner_states[133][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, + [ts_external_token__start_of_parenless_args] = true, }, [31] = { [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, @@ -752564,6 +758051,7 @@ static const bool ts_external_scanner_states[133][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, @@ -752579,6 +758067,7 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__end_of_range] = true, }, [32] = { + [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, @@ -752600,7 +758089,12 @@ static const bool ts_external_scanner_states[133][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, @@ -753140,22 +758634,21 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [48] = { [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_unary_wrapping_plus] = true, [ts_external_token_unary_wrapping_minus] = true, [ts_external_token__unary_star] = true, [ts_external_token__unary_double_star] = true, + [ts_external_token__block_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = 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__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, [ts_external_token__command_percent_literal_start] = true, @@ -753169,21 +758662,22 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [49] = { [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_unary_wrapping_plus] = true, [ts_external_token_unary_wrapping_minus] = true, [ts_external_token__unary_star] = true, [ts_external_token__unary_double_star] = true, - [ts_external_token__block_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = 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__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, [ts_external_token__command_percent_literal_start] = true, @@ -753515,9 +759009,9 @@ static const bool ts_external_scanner_states[133][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_binary_plus] = true, [ts_external_token_binary_minus] = true, @@ -753528,17 +759022,13 @@ static const bool ts_external_scanner_states[133][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__modifier_rescue_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [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_tuple_type] = true, - [ts_external_token__start_of_named_tuple_type] = 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, @@ -753549,6 +759039,10 @@ static const bool ts_external_scanner_states[133][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__modifier_rescue_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__heredoc_body_start] = true, }, @@ -753638,11 +759132,12 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [69] = { - [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, @@ -753656,12 +759151,9 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [70] = { + [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, @@ -753671,11 +759163,16 @@ static const bool ts_external_scanner_states[133][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, }, [71] = { - [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, @@ -753688,17 +759185,14 @@ static const bool ts_external_scanner_states[133][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__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, }, [72] = { [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, @@ -753709,16 +759203,11 @@ static const bool ts_external_scanner_states[133][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, }, [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, @@ -753731,6 +759220,11 @@ static const bool ts_external_scanner_states[133][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__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, }, @@ -753750,9 +759244,11 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [75] = { - [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__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -753762,20 +759258,13 @@ static const bool ts_external_scanner_states[133][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__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, }, [76] = { + [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__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -753785,6 +759274,11 @@ static const bool ts_external_scanner_states[133][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__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, }, @@ -753839,9 +759333,10 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [80] = { + [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, @@ -753851,14 +759346,18 @@ static const bool ts_external_scanner_states[133][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__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__heredoc_body_start] = true, }, [81] = { - [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, @@ -753868,12 +759367,7 @@ static const bool ts_external_scanner_states[133][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__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__heredoc_body_start] = true, }, [82] = { @@ -753965,8 +759459,8 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_regex_modifier] = true, }, [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, @@ -753977,12 +759471,6 @@ static const bool ts_external_scanner_states[133][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, @@ -754011,8 +759499,8 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [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, @@ -754023,6 +759511,12 @@ static const bool ts_external_scanner_states[133][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, @@ -754153,6 +759647,17 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_regex_modifier] = true, }, [95] = { + [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, + }, + [96] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_index_operator] = true, [ts_external_token_binary_plus] = true, @@ -754168,21 +759673,9 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token_regex_modifier] = true, }, - [96] = { - [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, - }, [97] = { [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, @@ -754193,13 +759686,19 @@ static const bool ts_external_scanner_states[133][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__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, }, [98] = { [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, @@ -754210,14 +759709,9 @@ static const bool ts_external_scanner_states[133][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__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, }, [99] = { [ts_external_token__line_continuation] = true, @@ -754259,6 +759753,19 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [102] = { + [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__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__heredoc_body_start] = true, + }, + [103] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_brace_block] = true, @@ -754276,19 +759783,6 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token_regex_modifier] = true, }, - [103] = { - [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__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__heredoc_body_start] = true, - }, [104] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_index_operator] = true, @@ -754307,18 +759801,6 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [105] = { - [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, - }, - [106] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_index_operator] = true, @@ -754335,6 +759817,18 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token_regex_modifier] = true, }, + [106] = { + [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, + }, [107] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_brace_block] = true, @@ -754453,20 +759947,20 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { }, [120] = { [ts_external_token__line_continuation] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__start_of_brace_block] = true, + [ts_external_token__start_of_index_operator] = true, [ts_external_token__heredoc_body_start] = true, }, [121] = { [ts_external_token__line_continuation] = true, - [ts_external_token__string_literal_start] = true, - [ts_external_token__string_percent_literal_start] = true, + [ts_external_token__regular_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__heredoc_body_start] = true, }, [122] = { [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__string_literal_start] = true, + [ts_external_token__string_percent_literal_start] = true, [ts_external_token__heredoc_body_start] = true, }, [123] = { @@ -754476,28 +759970,28 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [124] = { + [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__delimited_string_contents] = true, - [ts_external_token__percent_literal_end] = true, + [ts_external_token__start_of_index_operator] = true, [ts_external_token__heredoc_body_start] = true, }, [125] = { [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, }, [126] = { [ts_external_token__line_continuation] = true, + [ts_external_token__delimited_string_contents] = true, + [ts_external_token__string_literal_end] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token_heredoc_content] = true, - [ts_external_token_heredoc_end] = true, }, [127] = { - [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_index_operator] = true, [ts_external_token__heredoc_body_start] = true, + [ts_external_token_heredoc_content] = true, + [ts_external_token_heredoc_end] = true, }, [128] = { [ts_external_token__line_continuation] = true, @@ -754506,13 +760000,13 @@ static const bool ts_external_scanner_states[133][EXTERNAL_TOKEN_COUNT] = { }, [129] = { [ts_external_token__line_continuation] = true, - [ts_external_token__delimited_string_contents] = true, - [ts_external_token__delimited_array_element_end] = true, + [ts_external_token__start_of_index_operator] = true, [ts_external_token__heredoc_body_start] = true, }, [130] = { [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_index_operator] = true, + [ts_external_token__delimited_string_contents] = true, + [ts_external_token__delimited_array_element_end] = true, [ts_external_token__heredoc_body_start] = true, }, [131] = { diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 605a89c..cd97560 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -2720,6 +2720,52 @@ method(&.a [1]) (array (integer)))))))) +================================================================================ +&. syntax with assignment +================================================================================ +foo.each(&.bar=(1)) +foo.each(&.bar = 1) +a(&.@b.c[0] = d = e = f) +-------------------------------------------------------------------------------- + +(source_file + (call + receiver: (identifier) + method: (identifier) + arguments: (argument_list + (block_argument + (implicit_object_call + method: (identifier) + arguments: (argument_list + (integer)))))) + (call + receiver: (identifier) + method: (identifier) + arguments: (argument_list + (block_argument + (implicit_object_assign + lhs: (implicit_object_call + method: (identifier)) + rhs: (integer))))) + (call + method: (identifier) + arguments: (argument_list + (block_argument + (implicit_object_assign + lhs: (implicit_object_call + receiver: (implicit_object_call + receiver: (implicit_object_call + method: (instance_var)) + method: (identifier)) + method: (operator) + arguments: (argument_list + (integer))) + rhs: (assign + lhs: (identifier) + rhs: (assign + lhs: (identifier) + rhs: (identifier)))))))) + ================================================================================ ampersand disambiguation ================================================================================